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
35 #include <pulse/util.h>
36 #include <pulse/xmalloc.h>
37 #include <pulsecore/core-error.h>
38 #include <pulsecore/core-util.h>
39 #include <pulsecore/log.h>
40 #include <pulsecore/random.h>
41 #include <pulsecore/macro.h>
45 /* Generate a new authorization key, store it in file fd and return it in *data */
46 static int generate(int fd
, void *ret_data
, size_t length
) {
51 pa_assert(length
> 0);
53 pa_random(ret_data
, length
);
55 lseek(fd
, (off_t
) 0, SEEK_SET
);
56 if (ftruncate(fd
, (off_t
) 0) < 0) {
57 pa_log("Failed to truncate cookie file: %s", pa_cstrerror(errno
));
61 if ((r
= pa_loop_write(fd
, ret_data
, length
, NULL
)) < 0 || (size_t) r
!= length
) {
62 pa_log("Failed to write cookie file: %s", pa_cstrerror(errno
));
73 /* Load an euthorization cookie from file fn and store it in data. If
74 * the cookie file doesn't exist, create it */
75 static int load(const char *fn
, void *data
, size_t length
) {
78 int unlock
= 0, ret
= -1;
83 pa_assert(length
> 0);
85 if ((fd
= pa_open_cloexec(fn
, O_RDWR
|O_CREAT
|O_BINARY
, S_IRUSR
|S_IWUSR
)) < 0) {
87 if (errno
!= EACCES
|| (fd
= open(fn
, O_RDONLY
|O_BINARY
)) < 0) {
88 pa_log_warn("Failed to open cookie file '%s': %s", fn
, pa_cstrerror(errno
));
94 unlock
= pa_lock_fd(fd
, 1) >= 0;
96 if ((r
= pa_loop_read(fd
, data
, length
, NULL
)) < 0) {
97 pa_log("Failed to read cookie file '%s': %s", fn
, pa_cstrerror(errno
));
101 if ((size_t) r
!= length
) {
102 pa_log_debug("Got %d bytes from cookie file '%s', expected %d", (int) r
, fn
, (int) length
);
105 pa_log_warn("Unable to write cookie to read-only file");
109 if (generate(fd
, data
, length
) < 0)
122 if (pa_close(fd
) < 0) {
123 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno
));
131 /* Load a cookie from a cookie file. If the file doesn't exist, create it. */
132 int pa_authkey_load(const char *path
, void *data
, size_t length
) {
137 pa_assert(length
> 0);
139 if ((ret
= load(path
, data
, length
)) < 0)
140 pa_log_warn("Failed to load authorization key '%s': %s", path
, (ret
< 0) ? pa_cstrerror(errno
) : "File corrupt");
145 /* If the specified file path starts with / return it, otherwise
146 * return path prepended with home directory */
147 static char *normalize_path(const char *fn
) {
154 if (strlen(fn
) < 3 || !IsCharAlpha(fn
[0]) || fn
[1] != ':' || fn
[2] != '\\') {
158 if (!(homedir
= pa_get_home_dir_malloc()))
161 s
= pa_sprintf_malloc("%s" PA_PATH_SEP
"%s", homedir
, fn
);
167 return pa_xstrdup(fn
);
170 /* Load a cookie from a file in the home directory. If the specified
171 * path starts with /, use it as absolute path instead. */
172 int pa_authkey_load_auto(const char *fn
, void *data
, size_t length
) {
178 pa_assert(length
> 0);
180 if (!(p
= normalize_path(fn
)))
183 ret
= pa_authkey_load(p
, data
, length
);
189 /* Store the specified cookie in the specified cookie file */
190 int pa_authkey_save(const char *fn
, const void *data
, size_t length
) {
192 int unlock
= 0, ret
= -1;
198 pa_assert(length
> 0);
200 if (!(p
= normalize_path(fn
)))
203 if ((fd
= pa_open_cloexec(p
, O_RDWR
|O_CREAT
, S_IRUSR
|S_IWUSR
)) < 0) {
204 pa_log_warn("Failed to open cookie file '%s': %s", fn
, pa_cstrerror(errno
));
208 unlock
= pa_lock_fd(fd
, 1) >= 0;
210 if ((r
= pa_loop_write(fd
, data
, length
, NULL
)) < 0 || (size_t) r
!= length
) {
211 pa_log("Failed to read cookie file '%s': %s", fn
, pa_cstrerror(errno
));
224 if (pa_close(fd
) < 0) {
225 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno
));