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
38 #include <pulse/util.h>
39 #include <pulse/xmalloc.h>
40 #include <pulsecore/core-error.h>
41 #include <pulsecore/core-util.h>
42 #include <pulsecore/log.h>
43 #include <pulsecore/random.h>
44 #include <pulsecore/macro.h>
48 /* Generate a new authorization key, store it in file fd and return it in *data */
49 static int generate(int fd, void *ret_data, size_t length) {
54 pa_assert(length > 0);
56 pa_random(ret_data, length);
58 lseek(fd, (off_t) 0, SEEK_SET);
59 (void) ftruncate(fd, (off_t) 0);
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));
77 /* Load an euthorization cookie from file fn and store it in data. If
78 * the cookie file doesn't exist, create it */
79 static int load(const char *fn, void *data, size_t length) {
82 int unlock = 0, ret = -1;
87 pa_assert(length > 0);
89 if ((fd = open(fn, O_RDWR|O_CREAT|O_BINARY|O_NOCTTY, S_IRUSR|S_IWUSR)) < 0) {
91 if (errno != EACCES || (fd = open(fn, O_RDONLY|O_BINARY|O_NOCTTY)) < 0) {
92 pa_log_warn("Failed to open cookie file '%s': %s", fn, pa_cstrerror(errno));
98 unlock = pa_lock_fd(fd, 1) >= 0;
100 if ((r = pa_loop_read(fd, data, length, NULL)) < 0) {
101 pa_log("Failed to read cookie file '%s': %s", fn, pa_cstrerror(errno));
105 if ((size_t) r != length) {
106 pa_log_debug("Got %d bytes from cookie file '%s', expected %d", (int) r, fn, (int) length);
109 pa_log_warn("Unable to write cookie to read-only file");
113 if (generate(fd, data, length) < 0)
126 if (pa_close(fd) < 0) {
127 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno));
135 /* Load a cookie from a cookie file. If the file doesn't exist, create it. */
136 int pa_authkey_load(const char *path, void *data, size_t length) {
141 pa_assert(length > 0);
143 if ((ret = load(path, data, length)) < 0)
144 pa_log_warn("Failed to load authorization key '%s': %s", path, (ret < 0) ? pa_cstrerror(errno) : "File corrupt");
149 /* If the specified file path starts with / return it, otherwise
150 * return path prepended with home directory */
151 static char *normalize_path(const char *fn) {
158 if (strlen(fn) < 3 || !isalpha(fn[0]) || fn[1] != ':' || fn[2] != '\\') {
162 if (!(homedir = pa_get_home_dir_malloc()))
165 s = pa_sprintf_malloc("%s" PA_PATH_SEP "%s", homedir, fn);
171 return pa_xstrdup(fn);
174 /* Load a cookie from a file in the home directory. If the specified
175 * path starts with /, use it as absolute path instead. */
176 int pa_authkey_load_auto(const char *fn, void *data, size_t length) {
182 pa_assert(length > 0);
184 if (!(p = normalize_path(fn)))
187 ret = pa_authkey_load(p, data, length);
193 /* Store the specified cookie in the specified cookie file */
194 int pa_authkey_save(const char *fn, const void *data, size_t length) {
196 int unlock = 0, ret = -1;
202 pa_assert(length > 0);
204 if (!(p = normalize_path(fn)))
207 if ((fd = open(p, O_RDWR|O_CREAT|O_NOCTTY, S_IRUSR|S_IWUSR)) < 0) {
208 pa_log_warn("Failed to open cookie file '%s': %s", fn, pa_cstrerror(errno));
212 unlock = pa_lock_fd(fd, 1) >= 0;
214 if ((r = pa_loop_write(fd, data, length, NULL)) < 0 || (size_t) r != length) {
215 pa_log("Failed to read cookie file '%s': %s", fn, pa_cstrerror(errno));
228 if (pa_close(fd) < 0) {
229 pa_log_warn("Failed to close cookie file: %s", pa_cstrerror(errno));