2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 2.1 of the
10 License, or (at your option) any later version.
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
37 #include <pulse/util.h>
38 #include <pulse/xmalloc.h>
39 #include <pulsecore/core-error.h>
40 #include <pulsecore/core-util.h>
41 #include <pulsecore/log.h>
42 #include <pulsecore/random.h>
43 #include <pulsecore/macro.h>
47 /* Generate a new authorization key, store it in file fd and return it in *data */
48 static int generate(int fd
, void *ret_data
, size_t length
) {
53 pa_assert(length
> 0);
55 pa_random(ret_data
, length
);
57 lseek(fd
, (off_t
) 0, SEEK_SET
);
58 (void) ftruncate(fd
, (off_t
) 0);
60 if ((r
= pa_loop_write(fd
, ret_data
, length
, NULL
)) < 0 || (size_t) r
!= length
) {
61 pa_log("Failed to write cookie file: %s", pa_cstrerror(errno
));
72 /* Load an euthorization cookie from file fn and store it in data. If
73 * the cookie file doesn't exist, create it */
74 static int load(const char *fn
, void *data
, size_t length
) {
77 int unlock
= 0, ret
= -1;
82 pa_assert(length
> 0);
84 if ((fd
= pa_open_cloexec(fn
, O_RDWR
|O_CREAT
|O_BINARY
, S_IRUSR
|S_IWUSR
)) < 0) {
86 if (errno
!= EACCES
|| (fd
= open(fn
, O_RDONLY
|O_BINARY
)) < 0) {
87 pa_log_warn("Failed to open cookie file '%s': %s", fn
, pa_cstrerror(errno
));
93 unlock
= pa_lock_fd(fd
, 1) >= 0;
95 if ((r
= pa_loop_read(fd
, data
, length
, NULL
)) < 0) {
96 pa_log("Failed to read cookie file '%s': %s", fn
, pa_cstrerror(errno
));
100 if ((size_t) r
!= length
) {
101 pa_log_debug("Got %d bytes from cookie file '%s', expected %d", (int) r
, fn
, (int) length
);
104 pa_log_warn("Unable to write cookie to read-only file");
108 if (generate(fd
, data
, length
) < 0)
121 if (pa_close(fd
) < 0) {
122 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno
));
130 /* Load a cookie from a cookie file. If the file doesn't exist, create it. */
131 int pa_authkey_load(const char *path
, void *data
, size_t length
) {
136 pa_assert(length
> 0);
138 if ((ret
= load(path
, data
, length
)) < 0)
139 pa_log_warn("Failed to load authorization key '%s': %s", path
, (ret
< 0) ? pa_cstrerror(errno
) : "File corrupt");
144 /* If the specified file path starts with / return it, otherwise
145 * return path prepended with home directory */
146 static char *normalize_path(const char *fn
) {
153 if (strlen(fn
) < 3 || !IsCharAlpha(fn
[0]) || fn
[1] != ':' || fn
[2] != '\\') {
157 if (!(homedir
= pa_get_home_dir_malloc()))
160 s
= pa_sprintf_malloc("%s" PA_PATH_SEP
"%s", homedir
, fn
);
166 return pa_xstrdup(fn
);
169 /* Load a cookie from a file in the home directory. If the specified
170 * path starts with /, use it as absolute path instead. */
171 int pa_authkey_load_auto(const char *fn
, void *data
, size_t length
) {
177 pa_assert(length
> 0);
179 if (!(p
= normalize_path(fn
)))
182 ret
= pa_authkey_load(p
, data
, length
);
188 /* Store the specified cookie in the specified cookie file */
189 int pa_authkey_save(const char *fn
, const void *data
, size_t length
) {
191 int unlock
= 0, ret
= -1;
197 pa_assert(length
> 0);
199 if (!(p
= normalize_path(fn
)))
202 if ((fd
= pa_open_cloexec(p
, O_RDWR
|O_CREAT
, S_IRUSR
|S_IWUSR
)) < 0) {
203 pa_log_warn("Failed to open cookie file '%s': %s", fn
, pa_cstrerror(errno
));
207 unlock
= pa_lock_fd(fd
, 1) >= 0;
209 if ((r
= pa_loop_write(fd
, data
, length
, NULL
)) < 0 || (size_t) r
!= length
) {
210 pa_log("Failed to read cookie file '%s': %s", fn
, pa_cstrerror(errno
));
223 if (pa_close(fd
) < 0) {
224 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno
));