Clean.
[seven-1.x.git] / modules / m_cap.c
blob6a4141ffc887a1c00bd9c60e9d146074b6f28aed
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.
30 * $Id: m_cap.c 26 2006-09-20 18:02:06Z spb $
33 #include "stdinc.h"
34 #include "tools.h"
35 #include "class.h"
36 #include "client.h"
37 #include "irc_string.h"
38 #include "ircd.h"
39 #include "numeric.h"
40 #include "msg.h"
41 #include "parse.h"
42 #include "modules.h"
43 #include "s_serv.h"
44 #include "s_user.h"
46 typedef int (*bqcmp)(const void *, const void *);
48 static int m_cap(struct Client *, struct Client *, int, const char **);
49 static int modinit(void);
51 struct Message cap_msgtab = {
52 "CAP", 0, 0, 0, MFLG_SLOW,
53 {{m_cap, 2}, {m_cap, 2}, mg_ignore, mg_ignore, mg_ignore, {m_cap, 2}}
56 mapi_clist_av1 cap_clist[] = { &cap_msgtab, NULL };
57 DECLARE_MODULE_AV1(cap, modinit, NULL, cap_clist, NULL, NULL, "$Revision: 26 $");
59 #define _CLICAP(name, capserv, capclient, flags) \
60 { (name), (capserv), (capclient), (flags), sizeof(name) - 1 }
62 #define CLICAP_FLAGS_STICKY 0x001
64 static struct clicap
66 const char *name;
67 int cap_serv; /* for altering s->c */
68 int cap_cli; /* for altering c->s */
69 int flags;
70 int namelen;
71 } clicap_list[] = {
72 _CLICAP("multi-prefix", CLICAP_MULTI_PREFIX, 0, 0),
73 _CLICAP("sasl", CLICAP_SASL, 0, 0)
76 #define CLICAP_LIST_LEN (sizeof(clicap_list) / sizeof(struct clicap))
78 static int clicap_sort(struct clicap *, struct clicap *);
80 static int
81 modinit(void)
83 qsort(clicap_list, CLICAP_LIST_LEN, sizeof(struct clicap),
84 (bqcmp) clicap_sort);
85 return 0;
88 static int
89 clicap_sort(struct clicap *one, struct clicap *two)
91 return irccmp(one->name, two->name);
94 static int
95 clicap_compare(const char *name, struct clicap *cap)
97 return irccmp(name, cap->name);
100 /* clicap_find()
101 * Used iteratively over a buffer, extracts individual cap tokens.
103 * Inputs: buffer to start iterating over (NULL to iterate over existing buf)
104 * int pointer to whether the cap token is negated
105 * int pointer to whether we finish with success
106 * Ouputs: Cap entry if found, NULL otherwise.
108 static struct clicap *
109 clicap_find(const char *data, int *negate, int *finished)
111 static char buf[BUFSIZE];
112 static char *p;
113 struct clicap *cap;
114 char *s;
116 *negate = 0;
118 if(data)
120 strlcpy(buf, data, sizeof(buf));
121 p = buf;
124 if(*finished)
125 return NULL;
127 /* skip any whitespace */
128 while(*p && IsSpace(*p))
129 p++;
131 if(EmptyString(p))
133 *finished = 1;
134 return NULL;
137 if(*p == '-')
139 *negate = 1;
140 p++;
142 /* someone sent a '-' without a parameter.. */
143 if(*p == '\0')
144 return NULL;
147 if((s = strchr(p, ' ')))
148 *s++ = '\0';
150 if((cap = bsearch(p, clicap_list, CLICAP_LIST_LEN,
151 sizeof(struct clicap), (bqcmp) clicap_compare)))
153 if(s)
154 p = s;
155 else
156 *finished = 1;
159 return cap;
162 /* clicap_generate()
163 * Generates a list of capabilities.
165 * Inputs: client to send to, subcmd to send,
166 * flags to match against: 0 to do none, -1 if client has no flags,
167 * int to whether we are doing CAP CLEAR
168 * Outputs: None
170 static void
171 clicap_generate(struct Client *source_p, const char *subcmd, int flags, int clear)
173 char buf[BUFSIZE];
174 char capbuf[BUFSIZE];
175 char *p;
176 int buflen = 0;
177 int curlen, mlen;
178 int i;
180 mlen = ircsprintf(buf, ":%s CAP %s %s",
181 me.name,
182 EmptyString(source_p->name) ? "*" : source_p->name,
183 subcmd);
185 p = capbuf;
186 buflen = mlen;
188 /* shortcut, nothing to do */
189 if(flags == -1)
191 sendto_one(source_p, "%s :", buf);
192 return;
195 for(i = 0; i < CLICAP_LIST_LEN; i++)
197 if(flags)
199 if(!IsCapable(source_p, clicap_list[i].cap_serv))
200 continue;
201 /* they are capable of this, check sticky */
202 else if(clear && clicap_list[i].flags & CLICAP_FLAGS_STICKY)
203 continue;
206 /* \r\n\0, possible "-~=", space, " *" */
207 if(buflen + clicap_list[i].namelen >= BUFSIZE - 10)
209 /* remove our trailing space -- if buflen == mlen
210 * here, we didnt even succeed in adding one.
212 if(buflen != mlen)
213 *(p - 1) = '\0';
214 else
215 *p = '\0';
217 sendto_one(source_p, "%s * :%s", buf, capbuf);
218 p = capbuf;
219 buflen = mlen;
222 if(clear)
224 *p++ = '-';
225 buflen++;
227 /* needs a client ack */
228 if(clicap_list[i].cap_cli &&
229 IsCapable(source_p, clicap_list[i].cap_cli))
231 *p++ = '~';
232 buflen++;
235 else
237 if(clicap_list[i].flags & CLICAP_FLAGS_STICKY)
239 *p++ = '=';
240 buflen++;
243 /* if we're doing an LS, then we only send this if
244 * they havent ack'd
246 if(clicap_list[i].cap_cli &&
247 (!flags || !IsCapable(source_p, clicap_list[i].cap_cli)))
249 *p++ = '~';
250 buflen++;
254 curlen = ircsprintf(p, "%s ", clicap_list[i].name);
255 p += curlen;
256 buflen += curlen;
259 /* remove trailing space */
260 if(buflen != mlen)
261 *(p - 1) = '\0';
262 else
263 *p = '\0';
265 sendto_one(source_p, "%s :%s", buf, capbuf);
268 static void
269 cap_ack(struct Client *source_p, const char *arg)
271 struct clicap *cap;
272 int capadd = 0, capdel = 0;
273 int finished = 0, negate;
275 if(EmptyString(arg))
276 return;
278 for(cap = clicap_find(arg, &negate, &finished); cap;
279 cap = clicap_find(NULL, &negate, &finished))
281 /* sent an ACK for something they havent REQd */
282 if(!IsCapable(source_p, cap->cap_serv))
283 continue;
285 if(negate)
287 /* dont let them ack something sticky off */
288 if(cap->flags & CLICAP_FLAGS_STICKY)
289 continue;
291 capdel |= cap->cap_cli;
293 else
294 capadd |= cap->cap_cli;
297 source_p->localClient->caps |= capadd;
298 source_p->localClient->caps &= ~capdel;
301 static void
302 cap_clear(struct Client *source_p, const char *arg)
304 clicap_generate(source_p, "ACK",
305 source_p->localClient->caps ? source_p->localClient->caps : -1, 1);
307 /* XXX - sticky capabs */
308 #ifdef CLICAP_STICKY
309 source_p->localClient->caps = source_p->localClient->caps & CLICAP_STICKY;
310 #else
311 source_p->localClient->caps = 0;
312 #endif
315 static void
316 cap_end(struct Client *source_p, const char *arg)
318 if(IsRegistered(source_p))
319 return;
321 source_p->flags2 &= ~FLAGS2_CLICAP;
323 if(source_p->name[0] && source_p->user)
325 char buf[USERLEN+1];
326 strlcpy(buf, source_p->username, sizeof(buf));
327 register_local_user(source_p, source_p, buf);
331 static void
332 cap_list(struct Client *source_p, const char *arg)
334 /* list of what theyre currently using */
335 clicap_generate(source_p, "LIST",
336 source_p->localClient->caps ? source_p->localClient->caps : -1, 0);
339 static void
340 cap_ls(struct Client *source_p, const char *arg)
342 if(!IsRegistered(source_p))
343 source_p->flags2 |= FLAGS2_CLICAP;
345 /* list of what we support */
346 clicap_generate(source_p, "LS", 0, 0);
349 static void
350 cap_req(struct Client *source_p, const char *arg)
352 char buf[BUFSIZE];
353 char pbuf[2][BUFSIZE];
354 struct clicap *cap;
355 int buflen, plen;
356 int i = 0;
357 int capadd = 0, capdel = 0;
358 int finished = 0, negate;
360 if(!IsRegistered(source_p))
361 source_p->flags2 |= FLAGS2_CLICAP;
363 if(EmptyString(arg))
364 return;
366 buflen = ircsnprintf(buf, sizeof(buf), ":%s CAP %s ACK",
367 me.name, EmptyString(source_p->name) ? "*" : source_p->name);
369 pbuf[0][0] = '\0';
370 plen = 0;
372 for(cap = clicap_find(arg, &negate, &finished); cap;
373 cap = clicap_find(NULL, &negate, &finished))
375 /* filled the first array, but cant send it in case the
376 * request fails. one REQ should never fill more than two
377 * buffers --fl
379 if(buflen + plen + cap->namelen + 6 >= BUFSIZE)
381 pbuf[1][0] = '\0';
382 plen = 0;
383 i = 1;
386 if(negate)
388 if(cap->flags & CLICAP_FLAGS_STICKY)
390 finished = 0;
391 break;
394 strcat(pbuf[i], "-");
395 plen++;
397 capdel |= cap->cap_serv;
399 else
401 if(cap->flags & CLICAP_FLAGS_STICKY)
403 strcat(pbuf[i], "=");
404 plen++;
407 capadd |= cap->cap_serv;
410 if(cap->cap_cli)
412 strcat(pbuf[i], "~");
413 plen++;
416 strcat(pbuf[i], cap->name);
417 strcat(pbuf[i], " ");
418 plen += (cap->namelen + 1);
421 if(!finished)
423 sendto_one(source_p, ":%s CAP %s NAK :%s",
424 me.name, EmptyString(source_p->name) ? "*" : source_p->name, arg);
425 return;
428 if(i)
430 sendto_one(source_p, "%s * :%s", buf, pbuf[0]);
431 sendto_one(source_p, "%s :%s", buf, pbuf[1]);
433 else
434 sendto_one(source_p, "%s :%s", buf, pbuf[0]);
436 source_p->localClient->caps |= capadd;
437 source_p->localClient->caps &= ~capdel;
440 static struct clicap_cmd
442 const char *cmd;
443 void (*func)(struct Client *source_p, const char *arg);
444 } clicap_cmdlist[] = {
445 /* This list *MUST* be in alphabetical order */
446 { "ACK", cap_ack },
447 { "CLEAR", cap_clear },
448 { "END", cap_end },
449 { "LIST", cap_list },
450 { "LS", cap_ls },
451 { "REQ", cap_req },
454 static int
455 clicap_cmd_search(const char *command, struct clicap_cmd *entry)
457 return irccmp(command, entry->cmd);
460 static int
461 m_cap(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
463 struct clicap_cmd *cmd;
465 if(!(cmd = bsearch(parv[1], clicap_cmdlist,
466 sizeof(clicap_cmdlist) / sizeof(struct clicap_cmd),
467 sizeof(struct clicap_cmd), (bqcmp) clicap_cmd_search)))
469 sendto_one(source_p, form_str(ERR_INVALIDCAPCMD),
470 me.name, source_p->name, parv[1]);
471 return 0;
474 (cmd->func)(source_p, parv[2]);
475 return 0;