]> jfr.im git - solanum.git/blame - ircd/capability.c
librb: remove one more VMS detritius
[solanum.git] / ircd / capability.c
CommitLineData
64b56afd
AC
1/*
2 * Copyright (c) 2012 William Pitcock <nenolod@dereferenced.org>.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice is present in all copies.
7 *
8 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
9 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
11 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
12 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
13 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
14 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
15 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
16 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
17 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
18 * POSSIBILITY OF SUCH DAMAGE.
19 */
20
21#include "stdinc.h"
22#include "capability.h"
a4bf26dd 23#include "rb_dictionary.h"
77d3d2db 24#include "s_assert.h"
64b56afd 25
885cd603
AC
26static rb_dlink_list capability_indexes = { NULL, NULL, 0 };
27
32df5e96
AC
28struct CapabilityEntry *
29capability_find(struct CapabilityIndex *idx, const char *cap)
30{
31 s_assert(idx != NULL);
32 if (cap == NULL)
33 return NULL;
34
a4bf26dd 35 return rb_dictionary_retrieve(idx->cap_dict, cap);
32df5e96
AC
36}
37
64b56afd 38unsigned int
63b9db96 39capability_get(struct CapabilityIndex *idx, const char *cap, void **ownerdata)
64b56afd
AC
40{
41 struct CapabilityEntry *entry;
42
bde42c60 43 s_assert(idx != NULL);
d7e4ed77
AC
44 if (cap == NULL)
45 return 0;
64b56afd 46
a4bf26dd 47 entry = rb_dictionary_retrieve(idx->cap_dict, cap);
5058c8eb 48 if (entry != NULL && !(entry->flags & CAP_ORPHANED))
63b9db96
AC
49 {
50 if (ownerdata != NULL)
51 *ownerdata = entry->ownerdata;
8bedf01d 52 return (1 << entry->value);
63b9db96 53 }
64b56afd 54
8d20b088 55 return 0;
64b56afd
AC
56}
57
58unsigned int
63b9db96 59capability_put(struct CapabilityIndex *idx, const char *cap, void *ownerdata)
64b56afd
AC
60{
61 struct CapabilityEntry *entry;
62
bde42c60
JT
63 s_assert(idx != NULL);
64 if (!idx->highest_bit)
8bedf01d 65 return 0xFFFFFFFF;
64b56afd 66
a4bf26dd 67 if ((entry = rb_dictionary_retrieve(idx->cap_dict, cap)) != NULL)
64b56afd 68 {
5058c8eb 69 entry->flags &= ~CAP_ORPHANED;
8bedf01d 70 return (1 << entry->value);
64b56afd
AC
71 }
72
73 entry = rb_malloc(sizeof(struct CapabilityEntry));
ba832267 74 entry->cap = cap;
5058c8eb 75 entry->flags = 0;
bde42c60 76 entry->value = idx->highest_bit;
63b9db96 77 entry->ownerdata = ownerdata;
64b56afd 78
a4bf26dd 79 rb_dictionary_add(idx->cap_dict, entry->cap, entry);
64b56afd 80
bde42c60
JT
81 idx->highest_bit++;
82 if (idx->highest_bit % (sizeof(unsigned int) * 8) == 0)
83 idx->highest_bit = 0;
64b56afd 84
8bedf01d 85 return (1 << entry->value);
64b56afd
AC
86}
87
22cae20f
JT
88unsigned int
89capability_put_anonymous(struct CapabilityIndex *idx)
90{
91 unsigned int value;
92
93 s_assert(idx != NULL);
94 if (!idx->highest_bit)
95 return 0xFFFFFFFF;
96 value = 1 << idx->highest_bit;
97 idx->highest_bit++;
98 if (idx->highest_bit % (sizeof(unsigned int) * 8) == 0)
99 idx->highest_bit = 0;
100 return value;
101}
102
64b56afd 103void
bde42c60 104capability_orphan(struct CapabilityIndex *idx, const char *cap)
64b56afd
AC
105{
106 struct CapabilityEntry *entry;
107
bde42c60 108 s_assert(idx != NULL);
64b56afd 109
a4bf26dd 110 entry = rb_dictionary_retrieve(idx->cap_dict, cap);
64b56afd 111 if (entry != NULL)
f01f67f0
AC
112 {
113 entry->flags &= ~CAP_REQUIRED;
5058c8eb 114 entry->flags |= CAP_ORPHANED;
2e4bf32f 115 entry->ownerdata = NULL;
f01f67f0
AC
116 }
117}
118
119void
bde42c60 120capability_require(struct CapabilityIndex *idx, const char *cap)
f01f67f0
AC
121{
122 struct CapabilityEntry *entry;
123
bde42c60 124 s_assert(idx != NULL);
f01f67f0 125
a4bf26dd 126 entry = rb_dictionary_retrieve(idx->cap_dict, cap);
f01f67f0
AC
127 if (entry != NULL)
128 entry->flags |= CAP_REQUIRED;
64b56afd
AC
129}
130
131static void
4177311e 132capability_destroy(rb_dictionary_element *delem, void *privdata)
64b56afd
AC
133{
134 s_assert(delem != NULL);
135
136 rb_free(delem->data);
137}
138
139struct CapabilityIndex *
885cd603 140capability_index_create(const char *name)
64b56afd 141{
bde42c60 142 struct CapabilityIndex *idx;
64b56afd 143
bde42c60 144 idx = rb_malloc(sizeof(struct CapabilityIndex));
ba832267 145 idx->name = name;
f956cb0f 146 idx->cap_dict = rb_dictionary_create(name, rb_strcasecmp);
bde42c60 147 idx->highest_bit = 1;
64b56afd 148
885cd603
AC
149 rb_dlinkAdd(idx, &idx->node, &capability_indexes);
150
bde42c60 151 return idx;
64b56afd
AC
152}
153
154void
bde42c60 155capability_index_destroy(struct CapabilityIndex *idx)
64b56afd 156{
bde42c60 157 s_assert(idx != NULL);
64b56afd 158
885cd603
AC
159 rb_dlinkDelete(&idx->node, &capability_indexes);
160
a4bf26dd 161 rb_dictionary_destroy(idx->cap_dict, capability_destroy, NULL);
bde42c60 162 rb_free(idx);
64b56afd 163}
5e773521
AC
164
165const char *
bde42c60 166capability_index_list(struct CapabilityIndex *idx, unsigned int cap_mask)
5e773521 167{
4177311e 168 rb_dictionary_iter iter;
5e773521
AC
169 struct CapabilityEntry *entry;
170 static char buf[BUFSIZE];
171 char *t = buf;
172 int tl;
173
bde42c60 174 s_assert(idx != NULL);
5e773521
AC
175
176 *t = '\0';
177
56f84ded 178 RB_DICTIONARY_FOREACH(entry, &iter, idx->cap_dict)
5e773521 179 {
33b214fa 180 if ((1 << entry->value) & cap_mask)
5e773521 181 {
5203cba5 182 tl = sprintf(t, "%s ", entry->cap);
5e773521
AC
183 t += tl;
184 }
185 }
186
187 t--;
188 *t = '\0';
189
190 return buf;
191}
ec3a9055
AC
192
193unsigned int
bde42c60 194capability_index_mask(struct CapabilityIndex *idx)
ec3a9055 195{
4177311e 196 rb_dictionary_iter iter;
ec3a9055
AC
197 struct CapabilityEntry *entry;
198 unsigned int mask = 0;
199
bde42c60 200 s_assert(idx != NULL);
ec3a9055 201
56f84ded 202 RB_DICTIONARY_FOREACH(entry, &iter, idx->cap_dict)
ec3a9055 203 {
0582290f 204 if (!(entry->flags & CAP_ORPHANED))
8bedf01d 205 mask |= (1 << entry->value);
ec3a9055
AC
206 }
207
208 return mask;
209}
f01f67f0
AC
210
211unsigned int
bde42c60 212capability_index_get_required(struct CapabilityIndex *idx)
f01f67f0 213{
4177311e 214 rb_dictionary_iter iter;
f01f67f0
AC
215 struct CapabilityEntry *entry;
216 unsigned int mask = 0;
217
bde42c60 218 s_assert(idx != NULL);
f01f67f0 219
56f84ded 220 RB_DICTIONARY_FOREACH(entry, &iter, idx->cap_dict)
f01f67f0
AC
221 {
222 if (!(entry->flags & CAP_ORPHANED) && (entry->flags & CAP_REQUIRED))
8bedf01d 223 mask |= (1 << entry->value);
f01f67f0
AC
224 }
225
226 return mask;
227}
a16910aa
AC
228
229void
230capability_index_stats(void (*cb)(const char *line, void *privdata), void *privdata)
231{
232 rb_dlink_node *node;
233 char buf[BUFSIZE];
234
235 RB_DLINK_FOREACH(node, capability_indexes.head)
236 {
237 struct CapabilityIndex *idx = node->data;
4177311e 238 rb_dictionary_iter iter;
a16910aa
AC
239 struct CapabilityEntry *entry;
240
5203cba5 241 snprintf(buf, sizeof buf, "'%s': allocated bits - %d", idx->name, (idx->highest_bit - 1));
a16910aa
AC
242 cb(buf, privdata);
243
56f84ded 244 RB_DICTIONARY_FOREACH(entry, &iter, idx->cap_dict)
a16910aa 245 {
5203cba5 246 snprintf(buf, sizeof buf, "bit %d: '%s'", entry->value, entry->cap);
a16910aa
AC
247 cb(buf, privdata);
248 }
249
5203cba5 250 snprintf(buf, sizeof buf, "'%s': remaining bits - %u", idx->name,
0c5e50f4 251 (unsigned int)((sizeof(unsigned int) * 8) - (idx->highest_bit - 1)));
a16910aa
AC
252 cb(buf, privdata);
253 }
254
5203cba5 255 snprintf(buf, sizeof buf, "%ld capability indexes", rb_dlink_list_length(&capability_indexes));
a16910aa
AC
256 cb(buf, privdata);
257}