paraslash.git
12 years agoconfigure: Add --with-id3tag-headers/libs.
Andre Noll [Wed, 7 Mar 2012 17:16:52 +0000 (18:16 +0100)]
configure: Add --with-id3tag-headers/libs.

If libid3tag was intalled at a non-standard location, the configure
script would not find it. Currently there is no way to tell configure
to look for libid3tag elsewhere.

This adds two new options, --with-id3tag-headers and --with-id3tag-libs,
to overcome this shortcoming.

12 years agoMerge branch 't/t0004_fix'
Andre Noll [Sun, 18 Mar 2012 20:02:33 +0000 (21:02 +0100)]
Merge branch 't/t0004_fix'

This topic has been cooking for some weeks now and was tested
successfully on all supported operating systems.

12 years agomanual: Explain how to compile from git.
Andre Noll [Thu, 15 Mar 2012 12:01:03 +0000 (13:01 +0100)]
manual: Explain how to compile from git.

Mention that autogen.sh should be executed first when compiling from git or
gitweb snapshots.

12 years agodoc: Avoid \0 in comments.
Andre Noll [Wed, 14 Mar 2012 13:41:50 +0000 (14:41 +0100)]
doc: Avoid \0 in comments.

Doxygen treats \0 as a command, spits out a warning and produces
no output.

12 years agoMerge branch 't/audioc_cleanups'
Andre Noll [Sun, 4 Mar 2012 21:40:27 +0000 (22:40 +0100)]
Merge branch 't/audioc_cleanups'

Has been cooking for long enough.

12 years agoFix t0004-server.
Andre Noll [Sun, 5 Feb 2012 13:39:37 +0000 (14:39 +0100)]
Fix t0004-server.

Currently we try to generate an ssh key and start para_server
even if the ssh-keygen executable was not found or para_server
was not built.

Fix this by starting para_server only of both executables exist.

12 years agoconfigure.ac: Do not include server-only objects unconditionally.
Andre Noll [Sun, 5 Feb 2012 13:18:11 +0000 (14:18 +0100)]
configure.ac: Do not include server-only objects unconditionally.

We included the list of server-only objects in $all_errlist_objs
even if para_server is not going to be built (because libosl was
not found). This confuses t0004-server which bases the decision
whether it should skip its tests on whether server.o is contained
in $all_errlist_objs.

So add these objects to $all_errlist_objs only if libosl is detected.

12 years agoconfigure.ac: Remove fec from objects for para_recv.
Andre Noll [Sun, 5 Feb 2012 13:10:05 +0000 (14:10 +0100)]
configure.ac: Remove fec from objects for para_recv.

para_recv does not need this object.

12 years agoconfigure.ac: Kill $gui_other_objs.
Andre Noll [Sun, 5 Feb 2012 12:36:49 +0000 (13:36 +0100)]
configure.ac: Kill $gui_other_objs.

Just treat these two objects as ordinary objects which do
not define own error codes.

12 years agoconfigure.ac: Try to link against libogg and lm if necessary.
Andre Noll [Mon, 27 Feb 2012 12:44:26 +0000 (13:44 +0100)]
configure.ac: Try to link against libogg and lm if necessary.

This seems to be necessary on FreeBSD, and does hopefully not hurt
on other systems.

12 years agoMerge branch 't/mmap_sanity'
Andre Noll [Sun, 26 Feb 2012 13:23:59 +0000 (14:23 +0100)]
Merge branch 't/mmap_sanity'

Conflicts:
error.h

12 years agoMerge branch 't/write_consolidation'
Andre Noll [Sat, 18 Feb 2012 12:21:38 +0000 (13:21 +0100)]
Merge branch 't/write_consolidation'

This topic branch has been cooking in next for two weeks with no
problems.

12 years agoaudioc: Improve documentation of main().
Andre Noll [Fri, 13 Jan 2012 22:59:12 +0000 (23:59 +0100)]
audioc: Improve documentation of main().

12 years agoMerge branch 't/deprecate_no_default_filters'
Andre Noll [Sun, 12 Feb 2012 03:14:57 +0000 (04:14 +0100)]
Merge branch 't/deprecate_no_default_filters'

12 years agoaudioc: Fix memory leak in configfile_exists().
Andre Noll [Fri, 13 Jan 2012 22:54:08 +0000 (23:54 +0100)]
audioc: Fix memory leak in configfile_exists().

In case the config file does not exist, the function returns NULL
without freeing the config_file buffer.

This patch also makes config_file non-static. As configfile_exists()
is called at most once, it is pointless to have a static variable
there. The condition "if (!config_file)" is always true, so we can
get rid of the conditional alltogether.

12 years agoaudioc: Do not leak command buffer.
Andre Noll [Fri, 13 Jan 2012 22:43:05 +0000 (23:43 +0100)]
audioc: Do not leak command buffer.

This buffer contains the command to be sent to para_audiod. It is
allocated but never freed.

12 years agoaudioc.c: Always free IO buffer.
Andre Noll [Fri, 13 Jan 2012 22:39:56 +0000 (23:39 +0100)]
audioc.c: Always free IO buffer.

This 8K buffer is allocated but never freed.

12 years agoFix memory leak in audioc.c.
Andre Noll [Fri, 13 Jan 2012 22:38:14 +0000 (23:38 +0100)]
Fix memory leak in audioc.c.

We leak cf which is allocated and returned by configfile_exists().

12 years agoImprove error diagnostics of mmap_full_file().
Andre Noll [Thu, 8 Dec 2011 20:01:01 +0000 (21:01 +0100)]
Improve error diagnostics of mmap_full_file().

On mmap errors, this function used to return the error code it got
from mmap(). Unfortunately, in at least two cases, this results in
rather obscure error messages:

$ para_afh -i .
main: No such device
$ touch foo; para_afh -i foo
main: Invalid argument

This simple patch specifically checks whether the given fd refers
to a directory or an empty file so that the error messages become
more readable:

$ para_afh -i .
main: failed to mmap "."
main: Is a directory
$ touch foo; para_afh -i foo
main: failed to mmap "foo"
main: file is empty

12 years agograb_client.c: Fix another documentation bug
Andre Noll [Mon, 30 Jan 2012 16:26:23 +0000 (17:26 +0100)]
grab_client.c: Fix another documentation bug

In gc_activate(), the pointer to the scheduler struct is called "s"
rather than "sched".

12 years agoMerge commit '1678ee'
Andre Noll [Mon, 30 Jan 2012 07:30:40 +0000 (08:30 +0100)]
Merge commit '1678ee'

12 years agoaudiod: Deprecate the --no_default_filters option.
Andre Noll [Thu, 1 Dec 2011 18:25:47 +0000 (19:25 +0100)]
audiod: Deprecate the --no_default_filters option.

This option does not make much sense anymore these days as we have
sane defaults in case no filter was given. We prefer deprecation over
removal because this allows to switch between old and new versions
without having to edit the config file.

The option will be removed after the next release.

12 years agopara_client: Fix a memory leak.
Andre Noll [Sun, 22 Jan 2012 21:45:21 +0000 (22:45 +0100)]
para_client: Fix a memory leak.

The main function of para_client first calls client_parse_config()
to decide whether to start an interactive session, run in completion
mode or execute the given command. In the third case case we call
client_open() which calls client_parse_config() again, thereby
leaking the client_task structure which was returned by the first
call to client_parse_config().

Fix this leak by calling client_connect() instead of client_open().

12 years agoFix a typo in the manual.
Andre Noll [Sat, 21 Jan 2012 13:53:32 +0000 (14:53 +0100)]
Fix a typo in the manual.

12 years agoReplace PARA_VSNPRINTF by xvasprintf().
Andre Noll [Fri, 6 Jan 2012 03:15:34 +0000 (04:15 +0100)]
Replace PARA_VSNPRINTF by xvasprintf().

The PARA_VSNPRINTF macro is rather clumsy, and too large to be inlined.
Moreover, it does not return the length of the formated string, so
users have to call strlen() after the call to PARA_VSNPRINTF(). This
is extra work which can easily be avoided since the number of bytes
written is returned by the underlying call to vsnprintf().

This patch replaces the macro by the public function xvasprintf(),
which is similar to the non-standard vasprintf() on GNU systems. It
also adds xasprintf(), a similar variant which takes a variable number
of arguments.

Unlike PARA_VSNPRINTF, xasprintf() and xvasprintf() return the number
of bytes written. This relies on vsnprintf() conforming to the C99
standard and breaks in particular on glibc 2.0 systems. Since glibc
2.0 is about 15 years old, this is unlikely to cause problems on
real systems.

All users which called strlen() right after xvasprintf() are changed
to use the return value of xvasprintf() instead.

12 years agocommand: Introduce struct command_context.
Andre Noll [Sat, 24 Dec 2011 00:22:58 +0000 (01:22 +0100)]
command: Introduce struct command_context.

This exposes a couple of variables which were previously local to
handle_connect() to the command handlers, allowing them to make use
of the full command context.

All newly exposed variables are stored in an instance of the new
structure, and the command handlers now take a pointer to such
a structure.

The patch is large but also straight forward.

12 years agoIntroduce xwritev().
Andre Noll [Fri, 23 Dec 2011 17:28:45 +0000 (18:28 +0100)]
Introduce xwritev().

For the sideband API we will need to write two buffers one after
another. This patch adds the new public function xwritev() to fd.c
which takes an arbitrary number of buffers and calls writev() to
perform the write.

With this function in place, xwrite() becomes a trivial wrapper
for xwritev().

12 years agoRename write_nonblock() to xwrite().
Andre Noll [Tue, 20 Dec 2011 16:37:28 +0000 (17:37 +0100)]
Rename write_nonblock() to xwrite().

This function is not only useful for non-blocking file descriptors,
so the name was misleading. Rename it to xwrite() for the lack of
a better name.

12 years agosc_send_buffer(): Return an error on short writes.
Andre Noll [Sun, 11 Dec 2011 19:28:31 +0000 (20:28 +0100)]
sc_send_buffer(): Return an error on short writes.

This allows all callers to just check for negative return values.

12 years agosc_send_bin_buffer: Use write_nonblock() rather than write_all().
Andre Noll [Sun, 11 Dec 2011 19:27:27 +0000 (20:27 +0100)]
sc_send_bin_buffer: Use write_nonblock() rather than write_all().

The write_nonblock() variant is safer here as it allows to let the
callers deal with short writes.

Despite the name, write_nonblock() can be used for both blocking and
non-blocking fds. It will be renamed in a subsequent patch.

12 years agosc_send_result(): Error out on short writes.
Andre Noll [Sun, 11 Dec 2011 19:23:14 +0000 (20:23 +0100)]
sc_send_result(): Error out on short writes.

This affects only afs command handlers, where short writes should
never happen as the socket fd is set to blocking mode. But still.

12 years agoafh: Use write_all rather than plain write().
Andre Noll [Sun, 11 Dec 2011 19:21:53 +0000 (20:21 +0100)]
afh: Use write_all rather than plain write().

We are currently using plain write() to write out the audio
file header. If this results in a short write, or if the write
is interrupted, we should just try again. So it's safer to call
write_all() here.

12 years agofd: Let write_all() return an error on short writes.
Andre Noll [Sun, 11 Dec 2011 20:12:13 +0000 (21:12 +0100)]
fd: Let write_all() return an error on short writes.

Short writes are often ignored because most callers of write_all()
do not check the return value. Rather than fixing all callers, this
patch teaches write_all() to detect short writes and return the new
E_SHORT_WRITE error code in this case.

Currently write_all() is a wrapper for write(), similar to
write_nonblock() but lacking the safety checks of the latter. To get
these safety checks, write_all() is changed to call write_nonblock().

Unfortunately, this involves some code movement.

12 years agoFix two minor documentation issues.
Andre Noll [Thu, 19 Jan 2012 21:37:24 +0000 (22:37 +0100)]
Fix two minor documentation issues.

12 years agofd: Improve error handling of write_nonblock().
Andre Noll [Sun, 11 Dec 2011 18:48:56 +0000 (19:48 +0100)]
fd: Improve error handling of write_nonblock().

This function had two shortcomings: First, a call to write might
fail with errno set to EINTR in case the write call was interrupted
before any data was written. This is not fatal and one should just
retry the write in this case.

Secondly, POSIX allows to return either EAGAIN or EWOULDBLOCK if the
write would block but we only check for EAGAIN. This is no problem on
Linux since both constants refer to the same value on Linux. However,
POSIX does not require them to be equal, so we have to check for both.

This patch corrects both issues.

12 years agoMove send_buffer() and send_va_buffer() from net.c to fd.c.
Andre Noll [Tue, 6 Dec 2011 20:07:56 +0000 (21:07 +0100)]
Move send_buffer() and send_va_buffer() from net.c to fd.c.

These functions end up calling plain write(), hence they work on
arbitrary file descriptors, not just network sockets. So they really
belong to fd.c rather than to net.c. Rename the two functions to
write_buffer() and write_va_buffer().

12 years agoRemove send_bin_buffer().
Andre Noll [Tue, 6 Dec 2011 19:50:29 +0000 (20:50 +0100)]
Remove send_bin_buffer().

It is just a trivial wrapper for write_all(). This patch changes all
callers to use write_all() directly and removes the wrapper.

12 years agofd: Make write_all() receive the length by value.
Andre Noll [Tue, 6 Dec 2011 19:46:17 +0000 (20:46 +0100)]
fd: Make write_all() receive the length by value.

Not a single caller actually checked the value of the passed
len pointer after the call, which is a sure sign for a bad API.
Just return the number of bytes written.

12 years agolsatt: Do not print "no matches" message unconditionally.
Andre Noll [Fri, 20 Jan 2012 21:42:39 +0000 (22:42 +0100)]
lsatt: Do not print "no matches" message unconditionally.

com_lsatt() needs to know if output has been sent to the client in
order to decide whether it should print the "no matches" error message.
Currently this message is printed if at least one argument was given
and send_callback_request() returned zero.

However, send_callback_request() returns zero on success and negative
on errors. Hence, if at least one argument was given, the error
message is printed regardless of whether there was a match.

Fix this bug by changing send_callback_request() to return the number
of received shared memory areas on success.

12 years agocommand.c: Fix typo in comment.
Andre Noll [Sun, 15 Jan 2012 16:13:33 +0000 (17:13 +0100)]
command.c: Fix typo in comment.

12 years agoFix typo in audiod man page.
Andre Noll [Tue, 10 Jan 2012 18:56:39 +0000 (19:56 +0100)]
Fix typo in audiod man page.

12 years agoMerge branch 't/web_fix'
Andre Noll [Tue, 10 Jan 2012 18:43:25 +0000 (19:43 +0100)]
Merge branch 't/web_fix'

12 years agoChange year in copyright message to 2012.
Andre Noll [Sat, 7 Jan 2012 01:34:18 +0000 (02:34 +0100)]
Change year in copyright message to 2012.

12 years agoMake web pages conform to the HTML standard again.
Andre Noll [Fri, 6 Jan 2012 06:56:56 +0000 (07:56 +0100)]
Make web pages conform to the HTML standard again.

Without this fix, the w3c validator complains about end tags for
element <p> which is not open. Removing both start and end tags makes
it happy again and causes no visible change, at least in one browser.

12 years agoafh/audioc: Explicitly mark STDOUT as blocking.
Andre Noll [Tue, 6 Dec 2011 17:17:57 +0000 (18:17 +0100)]
afh/audioc: Explicitly mark STDOUT as blocking.

STDOUT_FILENO is usually set to blocking mode, but as we rely on this,
it is safer to clear the nonblock flag explicitly.

12 years agocom_init(): Return proper error code.
Andre Noll [Sun, 11 Dec 2011 19:24:53 +0000 (20:24 +0100)]
com_init(): Return proper error code.

If an error occurred during database initialization, we send an error
message to the client.  However, it this fails, we currently log
the send error rather than the error that caused that initialization
to fail. Fix this by logging the root cause of the problem instead.

12 years agoaudiod: Fix bug in status_pre_select().
Andre Noll [Fri, 23 Dec 2011 20:51:00 +0000 (21:51 +0100)]
audiod: Fix bug in status_pre_select().

We have to take the minimum input size into account when deciding
whether a minimal delay should be requested from the scheduler.
Without this, a busy loop is possible.

12 years agoMerge remote-tracking branch 's/master'
Andre Noll [Sat, 24 Dec 2011 17:30:07 +0000 (18:30 +0100)]
Merge remote-tracking branch 's/master'

12 years agosend: Make ->send_fec() return void.
Andre Noll [Mon, 5 Dec 2011 20:04:02 +0000 (21:04 +0100)]
send: Make ->send_fec() return void.

There is only one caller, vss_send(), which ignores the return value.
So there is no point in returning an error code from this method.

12 years agoAlways include stdbool.h.
Andre Noll [Sat, 3 Dec 2011 16:38:11 +0000 (17:38 +0100)]
Always include stdbool.h.

This adds the #include statement for stdbool.h to para.h. This allows
to get rid of the individual includes in *.c.

More importantly, since all *.c files include para.h, booleans will
now be available everywhere so that we won't need to touch dozens of
files anymore whenever a boolean is added to a public structure.

12 years agoweb: Fix year in release announcement.
Andre Noll [Tue, 6 Dec 2011 18:55:13 +0000 (19:55 +0100)]
web: Fix year in release announcement.

12 years agonew codename, reset version to git
Andre Noll [Tue, 6 Dec 2011 16:37:35 +0000 (17:37 +0100)]
new codename, reset version to git

12 years agothe paraslash-0.4.9 release tarball
Andre Noll [Tue, 6 Dec 2011 16:33:10 +0000 (17:33 +0100)]
the paraslash-0.4.9 release tarball

12 years agoparaslash 0.4.9 v0.4.9
Andre Noll [Tue, 6 Dec 2011 16:29:16 +0000 (17:29 +0100)]
paraslash 0.4.9

12 years agoMerge branch 't/interactive'
Andre Noll [Sun, 4 Dec 2011 23:13:32 +0000 (00:13 +0100)]
Merge branch 't/interactive'

Conflicts:
string.h

12 years agoMerge branch 't/flac'
Andre Noll [Tue, 29 Nov 2011 07:36:49 +0000 (08:36 +0100)]
Merge branch 't/flac'

12 years agoMerge branch 't/generic_match_count'
Andre Noll [Fri, 25 Nov 2011 12:13:35 +0000 (13:13 +0100)]
Merge branch 't/generic_match_count'

12 years agoDocument interactive sessions and add link to libreadline.
Andre Noll [Fri, 9 Sep 2011 16:29:25 +0000 (18:29 +0200)]
Document interactive sessions and add link to libreadline.

12 years agoRewrite bash completion.
Andre Noll [Thu, 8 Sep 2011 23:58:35 +0000 (01:58 +0200)]
Rewrite bash completion.

Now that para_client and para_audioc gained the --completion option for
completing a partially entered command line, we can use this feature
in the bash completion script. This allows to avoid duplicating the
available commands in the completion script.

12 years agoInteractive mode for para_audioc.
Andre Noll [Mon, 5 Sep 2011 18:46:06 +0000 (20:46 +0200)]
Interactive mode for para_audioc.

This is in the same spirit as the previous commit which added
interactive session support for para_client. It implements command
completion and command line history for para_audioc.

Just as for para_client the new completion code in audioc.c is
compiled in only if libreadline was found by configure. In this case
para_audioc starts an interactive session if no command was given at
the command line.

12 years agoclient: Implement interactive mode.
Andre Noll [Mon, 5 Sep 2011 13:47:34 +0000 (15:47 +0200)]
client: Implement interactive mode.

This makes para_client enter an interactive session when started with no
command. Command line history and command completion are available in
interactive sessions.

This populates the previously empty files interactive.h and interactive.c which
contain the readline/interactive specific part. Everything in these files is
independent of para_client.  Conversely, client.c and client_common.c are
independent of readline.

The public API defined in interactive.h was designed to be reused from other
applications. In fact, a subsequent commit changes para_audioc to offer
interactive sessions as well.

12 years agostring: Introduce compute_word_num().
Andre Noll [Sun, 28 Aug 2011 21:36:17 +0000 (23:36 +0200)]
string: Introduce compute_word_num().

The completion code needs to determine the word the curser is
currently on.  Libreadline only provides the start and end position
of the current word in the line buffer, but not the word number.

This patch adds compute_word_num() to string.c which uses the same
algorithm as create_argv() to determine the word boundaries.

12 years agoconfigure: Introduce checks for libreadline.
Andre Noll [Thu, 25 Aug 2011 19:53:42 +0000 (21:53 +0200)]
configure: Introduce checks for libreadline.

This adds interactive.o to the object list of para_client if readline
was found and links para_client against libreadline in this case.

The new source files interactive.c and interactive.h are empty for now.

12 years agoclient: Split client_open() and client_close().
Andre Noll [Sun, 4 Sep 2011 16:41:40 +0000 (18:41 +0200)]
client: Split client_open() and client_close().

For interactive para_client sessions, we set up the client
configuration from the values given at the command line and in the
config file just as we do for non-interactive mode. However, in
interactive mode we must be able to execute arbitrary many client
commands using the same configuration. client_open() sets up the
configuration from the command line arguments and client_close()
destroys the configuration, so both functions do more than what is
needed in interactive mode.

This patch splits client_open() into two functions
client_parse_config() and client_connect(). The old client_open()
remains with the same semantics as before, it just calls both of the
new functions().

In the same spirit, client_close() is split into client_disconnect(),
which closes the file descriptor and deallocates the ressources of
the current command but does not free the configuration.

This allows to re-use the client configuration multiple times for
interactive sessions.

12 years agosched: Allow more than one running scheduler instance.
Andre Noll [Fri, 2 Sep 2011 16:27:29 +0000 (18:27 +0200)]
sched: Allow more than one running scheduler instance.

The interactive completion code must be able to run a second,
independent scheduler instance for generating the possible completions.
This is currently not possible because the pre_select and post_select
list heads of the scheduler are defined globally in sched.c.

This patch moves these list heads from sched.c to struct sched. This
leaves only the global "now" variable in sched.c, but it is OK to
update this from all scheduler instances, so it can stay.

Moving the two list heads to struct sched requires that several
public functions, among them register_task(), grow an additional
parameter. The (mostly trivial) changes that update all callers to
provide the new argument make the patch rather invasive, unfortunately.

12 years agoTeach command_util to print also completions.
Andre Noll [Sun, 28 Aug 2011 04:34:55 +0000 (06:34 +0200)]
Teach command_util to print also completions.

This adds completion mode to command_util.sh. When exectuted in this
mode, it prints array initializers for all supported commands. This
will be used to generate the array of completers for para_client and
para_audiod.

12 years agoAllow switching between different log methods at runtime.
Andre Noll [Mon, 29 Aug 2011 17:17:38 +0000 (19:17 +0200)]
Allow switching between different log methods at runtime.

Currently, para_client defines its para_log function via the
INIT_STDERR_LOGGING() macro which generates a log function that
writes to stderr. However, we will need to switch to a different,
curses-aware logging function when operating in interactive mode.

To support more than one log method the type of para_log is changed
from a function to a (public) pointer variable. This variable is
supposed to point to the log function currently in use so that the
application can simply set para_log differently in order to switch
between log functions.

The patch also changes the INIT_STDERR_LOGGING() macro to receive the
name of the log function to be defined and to let para_log point to
the newly defined function.

12 years agocommand_util: Fix quoting in template_loop().
Andre Noll [Sun, 30 Oct 2011 11:54:32 +0000 (12:54 +0100)]
command_util: Fix quoting in template_loop().

Without this additional quoting, the command usage string is incorrect
in case the template contains square brackets. For example, the usage
of the lsblob commands was printed as

Usage: lspl [-i] [-l] [-r] t

rather than the desired

Usage: lspl [-i] [-l] [-r] [pattern]

because the command "echo [pattern]" prints "t" since there is a
subdirectory called "t" in the source tree.

12 years agoMerge branch 't/recv_improvements'
Andre Noll [Sun, 20 Nov 2011 14:05:15 +0000 (15:05 +0100)]
Merge branch 't/recv_improvements'

12 years agoCompilation fix for FreeBSD.
Andre Noll [Thu, 17 Nov 2011 09:27:30 +0000 (10:27 +0100)]
Compilation fix for FreeBSD.

Commit 25ca796b (daemon: Introduce parent_waits flag for
daemonize().) broke the compilation on FreeBSD due to signal.h not
being included. This patch adds the missing include.

12 years agoMerge branch 't/makefile_cleanups'
Andre Noll [Wed, 16 Nov 2011 10:28:33 +0000 (11:28 +0100)]
Merge branch 't/makefile_cleanups'

12 years agodoc: Add flac documentation to manual and FEATURES.
Andre Noll [Sat, 6 Aug 2011 15:10:20 +0000 (17:10 +0200)]
doc: Add flac documentation to manual and FEATURES.

12 years agoImplement the flac decoding filter.
Andre Noll [Wed, 3 Aug 2011 22:52:48 +0000 (00:52 +0200)]
Implement the flac decoding filter.

This replaces the dummy functions in flacdec_filter.c by a working
implementation. Although it contains an ugly workaround for a
shortcoming in the flac library, see the comment in read_cb() for
details, it seems to work fine.

12 years agoImplement the flac audio format handler.
Andre Noll [Wed, 28 Sep 2011 20:55:07 +0000 (22:55 +0200)]
Implement the flac audio format handler.

This adds another audio format to para_server and para_afh. Since
meta data tags flac are essentially vorbis comments, they are fully
supported. However, the audio format handler accepts only flac
files with fixed block size, and ogg/flac is not supported either at
this point.

12 years agoInitial support for FLAC (the free lossless audio codec).
Andre Noll [Sun, 31 Jul 2011 22:39:54 +0000 (00:39 +0200)]
Initial support for FLAC (the free lossless audio codec).

This adds tests for flac headers and libraries to configure.ac and
adds configure options to override the default location of these files.

Moreover, a (non-working) implementation of the flac audio format
handler and the flac decoder are introduced. All new functions are
defined as empty dummies to be filled with content in subsequent
commits.

12 years agobtr: Introduce btr_next_buffer_omit().
Andre Noll [Tue, 9 Aug 2011 18:00:12 +0000 (20:00 +0200)]
btr: Introduce btr_next_buffer_omit().

This function is useful for the flac decoder.

12 years agoMake vorbis comment helper functions generic.
Andre Noll [Sun, 31 Jul 2011 23:08:20 +0000 (01:08 +0200)]
Make vorbis comment helper functions generic.

copy_comment() and copy_if_tag_type() are useful also to the new flac
audio format handler, so move these functions to string.c and make
them public.

Rename them to safe_strdup() and key_value_copy() respectively,
as this is more to the point.

12 years agoCalculate width of audio formats in ls output.
Andre Noll [Mon, 1 Aug 2011 22:22:58 +0000 (00:22 +0200)]
Calculate width of audio formats in ls output.

Currently the field width for the audio format is hard-coded as three
as the name of each supported audio format (mp3, ogg, aac, wma, spx)
consists of three characters.

However, with the forthcoming flac support, this is no longer true
since "flac" consists of four characters. So the ls command must
calculate the maximal field width of the audio formats of all listed
files.

This is achieved by introducing the new audio_format_width member of
struct ls_widths.

12 years agostdin: Increase input buffer.
Andre Noll [Mon, 3 Oct 2011 18:45:09 +0000 (20:45 +0200)]
stdin: Increase input buffer.

Some flac files may contain the contain arbitrary large metadata
at the beginning and libflac wants to see this data in one go.
128K should be enough for most cases.

12 years agodaemon: Introduce parent_waits flag for daemonize().
Andre Noll [Sat, 12 Nov 2011 13:37:01 +0000 (14:37 +0100)]
daemon: Introduce parent_waits flag for daemonize().

In daemon mode, para_server should not detach from the console
until it is listening on its command socket. The previous approach
turned out to be buggy and has been reverted in the previous commit.

This second attempt tries to get it right. It adds a boolean parameter
"parent_waits" to daemonize(). After daemonize() has forked, the
parent process does not exit immediately if parent_waits is true but
waits until the child process sends SIGTERM to its parent, or exits.

para_server makes use of the new flag in server_init(). The daemon
process (child) sends SIGTERM to its parent after the command socket
has been initialized. para_audiod, on the other hand, does not need
this feature, so it calls daemonize() with parent_waits == false to
get the old behaviour.

12 years agoRevert "server: Listen on command socket before daemonizing."
Andre Noll [Fri, 11 Nov 2011 20:50:56 +0000 (21:50 +0100)]
Revert "server: Listen on command socket before daemonizing."

This reverts commit 7a4b6d5f19976ceac581f6dc235fcbd9b30c767f, which
was a rather bad idea because it caused the afs process to inherit
the open file descriptor of the command socket, so two processes
listened on the command socket at the same time.

Even worse, the afs process also inherited the command task in its
scheduler setup, causing it to answer incoming connections as well.
In fact it was more or less random which of the two processes served
an incoming connection.

If it was the afs process, interesting things happened in the command
handler due to its address space being a copy of the afs process,
where parts of what is needed for some commands not properly set
up. For example the si and the sender commands segfaulted due to a
NULL pointer dereference.

It's weird that this bug was not noticed earlier.

12 years agovss: Avoid read-overflowing the header buffer for ogg streams.
Andre Noll [Thu, 10 Nov 2011 08:22:25 +0000 (09:22 +0100)]
vss: Avoid read-overflowing the header buffer for ogg streams.

valgrind complains because of invalid reads/writes in vss.c:

==998== Invalid write of size 1
==998==    at 0x8050B09: vss_post_select (vss.c:574)
==998==    by 0x806106C: schedule (sched.c:71)
==998==    by 0x804EE04: main (server.c:579)
==998==  Address 0x46d99bc is 0 bytes after a block of size 548 alloc'd
==998==    at 0x4028A3B: realloc (vg_replace_malloc.c:632)
==998==    by 0x805356B: para_realloc (string.c:40)
==998==    by 0x80506EC: vss_post_select (vss.c:331)
==998==    by 0x806106C: schedule (sched.c:71)
==998==    by 0x804EE04: main (server.c:579)
==998==

...

==5543== Invalid read of size 1
==5543==    at 0x8050EBD: vss_post_select (vss.c:1099)
==5543==    by 0x806108E: schedule (sched.c:71)
==5543==    by 0x804EE04: main (server.c:579)
==5543==  Address 0x47c70ac is 0 bytes after a block of size 3,956 alloc'd
==5543==    at 0x4028A3B: realloc (vg_replace_malloc.c:632)
==5543==    by 0x805358D: para_realloc (string.c:40)
==5543==    by 0x80642AA: add_ogg_page (ogg_afh.c:78)
==5543==    by 0x8064458: vorbis_get_header_callback (ogg_afh.c:132)
==5543==    by 0x8063EF1: process_ogg_packets (ogg_afh_common.c:48)
==5543==    by 0x8063F9A: ogg_get_file_info (ogg_afh_common.c:144)
==5543==    by 0x8064200: vorbis_get_header (ogg_afh.c:149)
==5543==    by 0x804FDD9: recv_afs_result (vss.c:1006)
==5543==    by 0x80503F4: vss_post_select (vss.c:1124)
==5543==    by 0x806108E: schedule (sched.c:71)
==5543==    by 0x804EE04: main (server.c:579)

The problem is that for ogg streams chunk 0 points to a buffer on
the heap rather than to the mapped audio file, but we are checking
the buffer bounds against the memory map.

The fix consists of two parts. (a) We now treat a FEC group special
if it starts at chunk zero: Such a group now contains only this single
chunk. (b) When setting up the FEC group we always compare the buffer
bounds against the start of the first buffer in the group rather than
the memory map.

12 years agovss: Don't prefault header.
Andre Noll [Thu, 10 Nov 2011 09:14:21 +0000 (10:14 +0100)]
vss: Don't prefault header.

Commit 7bba6232 (vss: Mmap audio files using MAP_POPULATE.) introduced
read-ahead for chunks of the mmapped audio file. However, it missed
the fact that for ogg streams chunk 0 is created on the fly and stored
in a dynamically allocated buffer. Read-ahead on this buffer is likely
to access memory not owned by the process and might lead to a segfault.

Fix this bug by not performing read-ahead for chunk zero.

12 years agocom_lsblob: Print an error message if no blob matched.
Andre Noll [Tue, 1 Nov 2011 20:43:51 +0000 (21:43 +0100)]
com_lsblob: Print an error message if no blob matched.

Just to be consistent with other commands.

12 years agocom_ls: Print an error message if no file matched.
Andre Noll [Tue, 1 Nov 2011 19:05:07 +0000 (20:05 +0100)]
com_ls: Print an error message if no file matched.

In case at least one pattern was given and no matches were found,
the ls command returned with no output at all. This makes it print a
"no matches" error message instead.

12 years agocatblob: Fix "no matches" message.
Andre Noll [Mon, 26 Sep 2011 20:51:48 +0000 (22:51 +0200)]
catblob: Fix "no matches" message.

The catblob commands are supposed to print this message only if none
of the given patterns matches any blob in the database.  However, in
case all of the matching blobs are empty, we do print the message.

The problem is that the match count is not being increased due
to cat_blob() returning negative for empty blobs. This count is
computed in action_if_pattern_matches() which calls cat_blob() as
its action handler which in turn calls osl_open_disk_object(). But
this function returns -E_OSL_EMPTY for empty blobs, and cat_blob()
just passes through this value.

This patch changes cat_blob() so that it explicitly checks for
-E_OSL_EMPTY and returns zero in this case so that the match counter
will be increased.

12 years agoafs: Make catblob commands print an error if no blob matched.
Andre Noll [Wed, 6 Jul 2011 20:32:06 +0000 (22:32 +0200)]
afs: Make catblob commands print an error if no blob matched.

This is straight-forward given the new generic num_matches
counter which was introduced in the previous patch.

12 years agoafs: Provide generic counter for matching rows.
Andre Noll [Wed, 6 Jul 2011 20:30:59 +0000 (22:30 +0200)]
afs: Provide generic counter for matching rows.

Several afs commands implemented their own counters, often only to
find out whether they should print an error message because no rows
matched the given pattern(s).

This patch makes counting matching rows generic by increasing the new
pattern_match_data->num_matches counter in action_if_pattern_matches()
so that all commands which use this facility for iterating over all
audio files can evaluate the counter afterwards. This allows to remove
several per-command counters.

12 years agoMerge branch 't/alsa_improvements'
Andre Noll [Sun, 6 Nov 2011 11:14:17 +0000 (12:14 +0100)]
Merge branch 't/alsa_improvements'

12 years agoMerge branch 't/t0004'
Andre Noll [Sun, 6 Nov 2011 11:06:25 +0000 (12:06 +0100)]
Merge branch 't/t0004'

12 years agoweb: Rework text on download page.
Andre Noll [Wed, 2 Nov 2011 16:25:02 +0000 (17:25 +0100)]
web: Rework text on download page.

The git link to kernel.org was defunct and is probably not the best
pointer anyway. These days everybody knows git, so let's simply not
link to any git page.

This patch also reorders the three options for downloading (clone repo,
download snaphot, download release) so that git comes first.

12 years agohttp_recv: Fill both buffer pool buffers simultaneously.
Andre Noll [Tue, 20 Sep 2011 22:55:05 +0000 (00:55 +0200)]
http_recv: Fill both buffer pool buffers simultaneously.

This changes http_recv_post_select() to call readv_nonblock() rather
than read_nonblock() to read data from the socket, just like the udp
and dccp receivers do.

This saves one iteration of the scheduler loop if the end of the
buffer pool area is reached.

12 years agorecv: Make ->btrp and ->fd generic.
Andre Noll [Tue, 20 Sep 2011 22:36:08 +0000 (00:36 +0200)]
recv: Make ->btrp and ->fd generic.

All three receivers maintain a file descriptor and a buffer tree
pool per connection. Currently these are part of the receiver node's
private_data structure, which is a needless code duplication.

This patch moves both fields to the generic struct receiver_node. Since
the private_data structure of the udp and dccp receivers contained
no other fields, this allows to get rid of it completely for these
two receivers.

12 years agoMerge branch 't/afs_argv0'
Andre Noll [Sat, 29 Oct 2011 09:08:26 +0000 (11:08 +0200)]
Merge branch 't/afs_argv0'

12 years agoMerge branch 't/map_populate'
Andre Noll [Mon, 24 Oct 2011 13:31:31 +0000 (15:31 +0200)]
Merge branch 't/map_populate'

12 years agoMerge branch 't/unix_path_max_fix'
Andre Noll [Tue, 18 Oct 2011 17:32:16 +0000 (19:32 +0200)]
Merge branch 't/unix_path_max_fix'

12 years agoalsa: Improve error diagnostics.
Andre Noll [Fri, 29 Jul 2011 22:43:16 +0000 (00:43 +0200)]
alsa: Improve error diagnostics.

Always print the alsa error string corresponding to the failed library
call. This allows to get rid of all but one alsa errors in error.h.

12 years agoalsa: Make two variables local to alsa_init().
Andre Noll [Fri, 29 Jul 2011 21:46:28 +0000 (23:46 +0200)]
alsa: Make two variables local to alsa_init().

The two members buffer_frames and buffer_time of struct
private_alsa_data are only needed in alsa_init(), so make them
local. Rename buffer_frames to buffer_size since this is the value
returned by snd_pcm_hw_params_get_buffer_size().

12 years agoalsa: Dump the configuration on startup.
Andre Noll [Tue, 26 Jul 2011 20:47:20 +0000 (22:47 +0200)]
alsa: Dump the configuration on startup.

Currently we log selected alsa parameters, but it is sometimes
useful to see the full configuration. This patch adds a call to
snd_pcm_dump() to alsa_init() which obtains the alsa hardware and
software configuration. It is printed for loglevels info and debug.

12 years agoalsa: Avoid busy loop with dmix.
Andre Noll [Sat, 8 Oct 2011 17:16:14 +0000 (19:16 +0200)]
alsa: Avoid busy loop with dmix.

When using alsa's direct mixing plugin, the alsa poll fd might be ready
for IO even though nothing can be written to the alsa handle. This
leads to a busy loop in para_audiod and para_write and makes these
applications eat up considerable amounts of CPU time during playback.

This patch fixes the problem by reading from the alsa fd after a
failed write. It also adjusts the test for when to return early from
alsa_post_select(). The old code was not wrong, however, since we
should never reach the test if poll_fd is negative.