]> code.delx.au - pulseaudio/blob - src/pulsecore/auth-cookie.c
remap: Change remapping function argument type from void to int16_t / float as approp...
[pulseaudio] / src / pulsecore / auth-cookie.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2008 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <sys/types.h>
27
28 #include <pulse/xmalloc.h>
29
30 #include <pulsecore/refcnt.h>
31 #include <pulsecore/macro.h>
32 #include <pulsecore/core-util.h>
33 #include <pulsecore/shared.h>
34 #include <pulsecore/authkey.h>
35
36 #include "auth-cookie.h"
37
38 struct pa_auth_cookie {
39 PA_REFCNT_DECLARE;
40 pa_core *core;
41 char *name;
42 size_t size;
43 };
44
45 pa_auth_cookie* pa_auth_cookie_get(pa_core *core, const char *cn, bool create, size_t size) {
46 pa_auth_cookie *c;
47 char *t;
48
49 pa_assert(core);
50 pa_assert(size > 0);
51
52 t = pa_sprintf_malloc("auth-cookie%s%s", cn ? "@" : "", cn ? cn : "");
53
54 if ((c = pa_shared_get(core, t))) {
55
56 pa_xfree(t);
57
58 if (c->size != size)
59 return NULL;
60
61 return pa_auth_cookie_ref(c);
62 }
63
64 c = pa_xmalloc(PA_ALIGN(sizeof(pa_auth_cookie)) + size);
65 PA_REFCNT_INIT(c);
66 c->core = core;
67 c->name = t;
68 c->size = size;
69
70 pa_assert_se(pa_shared_set(core, t, c) >= 0);
71
72 if (pa_authkey_load_auto(cn, create, (uint8_t*) c + PA_ALIGN(sizeof(pa_auth_cookie)), size) < 0) {
73 pa_auth_cookie_unref(c);
74 return NULL;
75 }
76
77 return c;
78 }
79
80 pa_auth_cookie *pa_auth_cookie_create(pa_core *core, const void *data, size_t size) {
81 pa_auth_cookie *c;
82 char *t;
83
84 pa_assert(core);
85 pa_assert(data);
86 pa_assert(size > 0);
87
88 t = pa_xstrdup("auth-cookie");
89
90 if ((c = pa_shared_get(core, t))) {
91
92 pa_xfree(t);
93
94 if (c->size != size)
95 return NULL;
96
97 return pa_auth_cookie_ref(c);
98 }
99
100 c = pa_xmalloc(PA_ALIGN(sizeof(pa_auth_cookie)) + size);
101 PA_REFCNT_INIT(c);
102 c->core = core;
103 c->name = t;
104 c->size = size;
105
106 pa_assert_se(pa_shared_set(core, t, c) >= 0);
107
108 memcpy((uint8_t *) c + PA_ALIGN(sizeof(pa_auth_cookie)), data, size);
109
110 return c;
111 }
112
113 pa_auth_cookie* pa_auth_cookie_ref(pa_auth_cookie *c) {
114 pa_assert(c);
115 pa_assert(PA_REFCNT_VALUE(c) >= 1);
116
117 PA_REFCNT_INC(c);
118
119 return c;
120 }
121
122 void pa_auth_cookie_unref(pa_auth_cookie *c) {
123 pa_assert(c);
124 pa_assert(PA_REFCNT_VALUE(c) >= 1);
125
126 if (PA_REFCNT_DEC(c) > 0)
127 return;
128
129 pa_assert_se(pa_shared_remove(c->core, c->name) >= 0);
130
131 pa_xfree(c->name);
132 pa_xfree(c);
133 }
134
135 const uint8_t* pa_auth_cookie_read(pa_auth_cookie *c, size_t size) {
136 pa_assert(c);
137 pa_assert(PA_REFCNT_VALUE(c) >= 1);
138 pa_assert(c->size == size);
139
140 return (const uint8_t*) c + PA_ALIGN(sizeof(pa_auth_cookie));
141 }