Remove cruft left behind by removed stats_p_hook.
[seven-1.x.git] / modules / m_cap.c
blob2aa17d80ed0a85f7a816c21db96b7c4f2ff63b7a
1 /* modules/m_cap.c
2 *
3 * Copyright (C) 2005 Lee Hardy <lee@leeh.co.uk>
4 * Copyright (C) 2005 ircd-ratbox development team
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
10 * 1.Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2.Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3.The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
31 #include "stdinc.h"
32 #include "tools.h"
33 #include "class.h"
34 #include "client.h"
35 #include "irc_string.h"
36 #include "ircd.h"
37 #include "numeric.h"
38 #include "msg.h"
39 #include "parse.h"
40 #include "modules.h"
41 #include "s_serv.h"
42 #include "s_user.h"
44 typedef int (*bqcmp)(const void *, const void *);
46 static int m_cap(struct Client *, struct Client *, int, const char **);
47 static int modinit(void);
49 struct Message cap_msgtab = {
50 "CAP", 0, 0, 0, MFLG_SLOW,
51 {{m_cap, 2}, {m_cap, 2}, mg_ignore, mg_ignore, mg_ignore, {m_cap, 2}}
54 mapi_clist_av1 cap_clist[] = { &cap_msgtab, NULL };
55 DECLARE_MODULE_AV1(cap, modinit, NULL, cap_clist, NULL, NULL, "$Revision: 26 $");
57 #define _CLICAP(name, capserv, capclient, flags) \
58 { (name), (capserv), (capclient), (flags), sizeof(name) - 1 }
60 #define CLICAP_FLAGS_STICKY 0x001
62 static struct clicap
64 const char *name;
65 int cap_serv; /* for altering s->c */
66 int cap_cli; /* for altering c->s */
67 int flags;
68 int namelen;
69 } clicap_list[] = {
70 _CLICAP("multi-prefix", CLICAP_MULTI_PREFIX, 0, 0),
71 _CLICAP("sasl", CLICAP_SASL, 0, 0)
74 #define CLICAP_LIST_LEN (sizeof(clicap_list) / sizeof(struct clicap))
76 static int clicap_sort(struct clicap *, struct clicap *);
78 static int
79 modinit(void)
81 qsort(clicap_list, CLICAP_LIST_LEN, sizeof(struct clicap),
82 (bqcmp) clicap_sort);
83 return 0;
86 static int
87 clicap_sort(struct clicap *one, struct clicap *two)
89 return irccmp(one->name, two->name);
92 static int
93 clicap_compare(const char *name, struct clicap *cap)
95 return irccmp(name, cap->name);
98 /* clicap_find()
99 * Used iteratively over a buffer, extracts individual cap tokens.
101 * Inputs: buffer to start iterating over (NULL to iterate over existing buf)
102 * int pointer to whether the cap token is negated
103 * int pointer to whether we finish with success
104 * Ouputs: Cap entry if found, NULL otherwise.
106 static struct clicap *
107 clicap_find(const char *data, int *negate, int *finished)
109 static char buf[BUFSIZE];
110 static char *p;
111 struct clicap *cap;
112 char *s;
114 *negate = 0;
116 if(data)
118 strlcpy(buf, data, sizeof(buf));
119 p = buf;
122 if(*finished)
123 return NULL;
125 /* skip any whitespace */
126 while(*p && IsSpace(*p))
127 p++;
129 if(EmptyString(p))
131 *finished = 1;
132 return NULL;
135 if(*p == '-')
137 *negate = 1;
138 p++;
140 /* someone sent a '-' without a parameter.. */
141 if(*p == '\0')
142 return NULL;
145 if((s = strchr(p, ' ')))
146 *s++ = '\0';
148 if((cap = bsearch(p, clicap_list, CLICAP_LIST_LEN,
149 sizeof(struct clicap), (bqcmp) clicap_compare)))
151 if(s)
152 p = s;
153 else
154 *finished = 1;
157 return cap;
160 /* clicap_generate()
161 * Generates a list of capabilities.
163 * Inputs: client to send to, subcmd to send,
164 * flags to match against: 0 to do none, -1 if client has no flags,
165 * int to whether we are doing CAP CLEAR
166 * Outputs: None
168 static void
169 clicap_generate(struct Client *source_p, const char *subcmd, int flags, int clear)
171 char buf[BUFSIZE];
172 char capbuf[BUFSIZE];
173 char *p;
174 int buflen = 0;
175 int curlen, mlen;
176 int i;
178 mlen = ircsprintf(buf, ":%s CAP %s %s",
179 me.name,
180 EmptyString(source_p->name) ? "*" : source_p->name,
181 subcmd);
183 p = capbuf;
184 buflen = mlen;
186 /* shortcut, nothing to do */
187 if(flags == -1)
189 sendto_one(source_p, "%s :", buf);
190 return;
193 for(i = 0; i < CLICAP_LIST_LEN; i++)
195 if(flags)
197 if(!IsCapable(source_p, clicap_list[i].cap_serv))
198 continue;
199 /* they are capable of this, check sticky */
200 else if(clear && clicap_list[i].flags & CLICAP_FLAGS_STICKY)
201 continue;
204 /* \r\n\0, possible "-~=", space, " *" */
205 if(buflen + clicap_list[i].namelen >= BUFSIZE - 10)
207 /* remove our trailing space -- if buflen == mlen
208 * here, we didnt even succeed in adding one.
210 if(buflen != mlen)
211 *(p - 1) = '\0';
212 else
213 *p = '\0';
215 sendto_one(source_p, "%s * :%s", buf, capbuf);
216 p = capbuf;
217 buflen = mlen;
220 if(clear)
222 *p++ = '-';
223 buflen++;
225 /* needs a client ack */
226 if(clicap_list[i].cap_cli &&
227 IsCapable(source_p, clicap_list[i].cap_cli))
229 *p++ = '~';
230 buflen++;
233 else
235 if(clicap_list[i].flags & CLICAP_FLAGS_STICKY)
237 *p++ = '=';
238 buflen++;
241 /* if we're doing an LS, then we only send this if
242 * they havent ack'd
244 if(clicap_list[i].cap_cli &&
245 (!flags || !IsCapable(source_p, clicap_list[i].cap_cli)))
247 *p++ = '~';
248 buflen++;
252 curlen = ircsprintf(p, "%s ", clicap_list[i].name);
253 p += curlen;
254 buflen += curlen;
257 /* remove trailing space */
258 if(buflen != mlen)
259 *(p - 1) = '\0';
260 else
261 *p = '\0';
263 sendto_one(source_p, "%s :%s", buf, capbuf);
266 static void
267 cap_ack(struct Client *source_p, const char *arg)
269 struct clicap *cap;
270 int capadd = 0, capdel = 0;
271 int finished = 0, negate;
273 if(EmptyString(arg))
274 return;
276 for(cap = clicap_find(arg, &negate, &finished); cap;
277 cap = clicap_find(NULL, &negate, &finished))
279 /* sent an ACK for something they havent REQd */
280 if(!IsCapable(source_p, cap->cap_serv))
281 continue;
283 if(negate)
285 /* dont let them ack something sticky off */
286 if(cap->flags & CLICAP_FLAGS_STICKY)
287 continue;
289 capdel |= cap->cap_cli;
291 else
292 capadd |= cap->cap_cli;
295 source_p->localClient->caps |= capadd;
296 source_p->localClient->caps &= ~capdel;
299 static void
300 cap_clear(struct Client *source_p, const char *arg)
302 clicap_generate(source_p, "ACK",
303 source_p->localClient->caps ? source_p->localClient->caps : -1, 1);
305 /* XXX - sticky capabs */
306 #ifdef CLICAP_STICKY
307 source_p->localClient->caps = source_p->localClient->caps & CLICAP_STICKY;
308 #else
309 source_p->localClient->caps = 0;
310 #endif
313 static void
314 cap_end(struct Client *source_p, const char *arg)
316 if(IsRegistered(source_p))
317 return;
319 source_p->flags2 &= ~FLAGS2_CLICAP;
321 if(source_p->name[0] && source_p->user)
323 char buf[USERLEN+1];
324 strlcpy(buf, source_p->username, sizeof(buf));
325 register_local_user(source_p, source_p, buf);
329 static void
330 cap_list(struct Client *source_p, const char *arg)
332 /* list of what theyre currently using */
333 clicap_generate(source_p, "LIST",
334 source_p->localClient->caps ? source_p->localClient->caps : -1, 0);
337 static void
338 cap_ls(struct Client *source_p, const char *arg)
340 if(!IsRegistered(source_p))
341 source_p->flags2 |= FLAGS2_CLICAP;
343 /* list of what we support */
344 clicap_generate(source_p, "LS", 0, 0);
347 static void
348 cap_req(struct Client *source_p, const char *arg)
350 char buf[BUFSIZE];
351 char pbuf[2][BUFSIZE];
352 struct clicap *cap;
353 int buflen, plen;
354 int i = 0;
355 int capadd = 0, capdel = 0;
356 int finished = 0, negate;
358 if(!IsRegistered(source_p))
359 source_p->flags2 |= FLAGS2_CLICAP;
361 if(EmptyString(arg))
362 return;
364 buflen = ircsnprintf(buf, sizeof(buf), ":%s CAP %s ACK",
365 me.name, EmptyString(source_p->name) ? "*" : source_p->name);
367 pbuf[0][0] = '\0';
368 plen = 0;
370 for(cap = clicap_find(arg, &negate, &finished); cap;
371 cap = clicap_find(NULL, &negate, &finished))
373 /* filled the first array, but cant send it in case the
374 * request fails. one REQ should never fill more than two
375 * buffers --fl
377 if(buflen + plen + cap->namelen + 6 >= BUFSIZE)
379 pbuf[1][0] = '\0';
380 plen = 0;
381 i = 1;
384 if(negate)
386 if(cap->flags & CLICAP_FLAGS_STICKY)
388 finished = 0;
389 break;
392 strcat(pbuf[i], "-");
393 plen++;
395 capdel |= cap->cap_serv;
397 else
399 if(cap->flags & CLICAP_FLAGS_STICKY)
401 strcat(pbuf[i], "=");
402 plen++;
405 capadd |= cap->cap_serv;
408 if(cap->cap_cli)
410 strcat(pbuf[i], "~");
411 plen++;
414 strcat(pbuf[i], cap->name);
415 strcat(pbuf[i], " ");
416 plen += (cap->namelen + 1);
419 if(!finished)
421 sendto_one(source_p, ":%s CAP %s NAK :%s",
422 me.name, EmptyString(source_p->name) ? "*" : source_p->name, arg);
423 return;
426 if(i)
428 sendto_one(source_p, "%s * :%s", buf, pbuf[0]);
429 sendto_one(source_p, "%s :%s", buf, pbuf[1]);
431 else
432 sendto_one(source_p, "%s :%s", buf, pbuf[0]);
434 source_p->localClient->caps |= capadd;
435 source_p->localClient->caps &= ~capdel;
438 static struct clicap_cmd
440 const char *cmd;
441 void (*func)(struct Client *source_p, const char *arg);
442 } clicap_cmdlist[] = {
443 /* This list *MUST* be in alphabetical order */
444 { "ACK", cap_ack },
445 { "CLEAR", cap_clear },
446 { "END", cap_end },
447 { "LIST", cap_list },
448 { "LS", cap_ls },
449 { "REQ", cap_req },
452 static int
453 clicap_cmd_search(const char *command, struct clicap_cmd *entry)
455 return irccmp(command, entry->cmd);
458 static int
459 m_cap(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
461 struct clicap_cmd *cmd;
463 if(!(cmd = bsearch(parv[1], clicap_cmdlist,
464 sizeof(clicap_cmdlist) / sizeof(struct clicap_cmd),
465 sizeof(struct clicap_cmd), (bqcmp) clicap_cmd_search)))
467 sendto_one(source_p, form_str(ERR_INVALIDCAPCMD),
468 me.name, source_p->name, parv[1]);
469 return 0;
472 (cmd->func)(source_p, parv[2]);
473 return 0;