All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Dan Nicholson <nicholson@endlessm.com>
Cc: alsa-devel@alsa-project.org
Subject: Re: [PATCH] alsactl: Try to create state file directory
Date: Mon, 08 Jun 2015 13:38:46 +0200	[thread overview]
Message-ID: <s5hpp56ig55.wl-tiwai@suse.de> (raw)
In-Reply-To: <1433541647-300-1-git-send-email-nicholson@endlessm.com>

At Fri,  5 Jun 2015 15:00:47 -0700,
Dan Nicholson wrote:
> 
> Try to create the directory for the state file when saving so we don't
> depend on it being created ahead of time. This only checks for failures
> on existing directories and doesn't try to create the leading
> directories or workaround any other errors. This should catch the common
> case where /var/lib exists, but /var/lib/alsa doesn't.

I don't think it's the role of alsactl.  It saves a file on the
certain directory.  If it doesn't exist, it's a failure of the
installed package.


thanks,

Takashi

> 
> Signed-off-by: Dan Nicholson <nicholson@endlessm.com>
> ---
>  alsactl/state.c | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/alsactl/state.c b/alsactl/state.c
> index 3908ec4..8ca3d6e 100644
> --- a/alsactl/state.c
> +++ b/alsactl/state.c
> @@ -27,6 +27,9 @@
>  #include <stdio.h>
>  #include <assert.h>
>  #include <errno.h>
> +#include <string.h>
> +#include <sys/stat.h>
> +#include <sys/types.h>
>  #include <alsa/asoundlib.h>
>  #include "alsactl.h"
>  
> @@ -1544,6 +1547,7 @@ int save_state(const char *file, const char *cardname)
>  	snd_output_t *out;
>  	int stdio;
>  	char *nfile = NULL;
> +	char *filedir = NULL;
>  	int lock_fd = -EINVAL;
>  
>  	err = snd_config_top(&config);
> @@ -1553,6 +1557,9 @@ int save_state(const char *file, const char *cardname)
>  	}
>  	stdio = !strcmp(file, "-");
>  	if (!stdio) {
> +		char *tmp;
> +		mode_t mode = S_IRWXU | S_IRWXG | S_IRWXO;
> +
>  		nfile = malloc(strlen(file) + 5);
>  		if (nfile == NULL) {
>  			error("No enough memory...");
> @@ -1561,6 +1568,21 @@ int save_state(const char *file, const char *cardname)
>  		}
>  		strcpy(nfile, file);
>  		strcat(nfile, ".new");
> +		filedir = strdup(file);
> +		if (filedir == NULL) {
> +			error("Not enough memory...");
> +			err = -ENOMEM;
> +			goto out;
> +		}
> +		tmp = strrchr(filedir, '/');
> +		if (tmp && tmp != filedir) {
> +			*tmp = '\0';
> +			if (mkdir(filedir, mode) != 0 && errno != EEXIST) {
> +				error("Could not create directory %s: %s",
> +				      filedir, strerror(errno));
> +				goto out;
> +			}
> +		}
>  		lock_fd = state_lock(file, 10);
>  		if (lock_fd < 0) {
>  			err = lock_fd;
> @@ -1640,6 +1662,7 @@ out:
>  	if (!stdio && lock_fd >= 0)
>  		state_unlock(lock_fd, file);
>  	free(nfile);
> +	free(filedir);
>  	snd_config_delete(config);
>  	snd_config_update_free_global();
>  	return err;
> -- 
> 1.8.1.2
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

  parent reply	other threads:[~2015-06-08 11:38 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-05 22:00 [PATCH] alsactl: Try to create state file directory Dan Nicholson
2015-06-05 22:13 ` Dan Nicholson
2015-06-08 11:38 ` Takashi Iwai [this message]
2015-06-08 12:52   ` Dan Nicholson
2015-06-08 13:03     ` Takashi Iwai
2015-06-08 13:22       ` Takashi Iwai
2015-06-08 16:17         ` Dan Nicholson
2015-06-08 18:46           ` Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5hpp56ig55.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=nicholson@endlessm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.