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
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.
35 #include "irc_string.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
65 int cap_serv
; /* for altering s->c */
66 int cap_cli
; /* for altering c->s */
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
*);
81 qsort(clicap_list
, CLICAP_LIST_LEN
, sizeof(struct clicap
),
87 clicap_sort(struct clicap
*one
, struct clicap
*two
)
89 return irccmp(one
->name
, two
->name
);
93 clicap_compare(const char *name
, struct clicap
*cap
)
95 return irccmp(name
, cap
->name
);
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
];
118 strlcpy(buf
, data
, sizeof(buf
));
125 /* skip any whitespace */
126 while(*p
&& IsSpace(*p
))
140 /* someone sent a '-' without a parameter.. */
145 if((s
= strchr(p
, ' ')))
148 if((cap
= bsearch(p
, clicap_list
, CLICAP_LIST_LEN
,
149 sizeof(struct clicap
), (bqcmp
) clicap_compare
)))
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
169 clicap_generate(struct Client
*source_p
, const char *subcmd
, int flags
, int clear
)
172 char capbuf
[BUFSIZE
];
178 mlen
= ircsprintf(buf
, ":%s CAP %s %s",
180 EmptyString(source_p
->name
) ? "*" : source_p
->name
,
186 /* shortcut, nothing to do */
189 sendto_one(source_p
, "%s :", buf
);
193 for(i
= 0; i
< CLICAP_LIST_LEN
; i
++)
197 if(!IsCapable(source_p
, clicap_list
[i
].cap_serv
))
199 /* they are capable of this, check sticky */
200 else if(clear
&& clicap_list
[i
].flags
& CLICAP_FLAGS_STICKY
)
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.
215 sendto_one(source_p
, "%s * :%s", buf
, capbuf
);
225 /* needs a client ack */
226 if(clicap_list
[i
].cap_cli
&&
227 IsCapable(source_p
, clicap_list
[i
].cap_cli
))
235 if(clicap_list
[i
].flags
& CLICAP_FLAGS_STICKY
)
241 /* if we're doing an LS, then we only send this if
244 if(clicap_list
[i
].cap_cli
&&
245 (!flags
|| !IsCapable(source_p
, clicap_list
[i
].cap_cli
)))
252 curlen
= ircsprintf(p
, "%s ", clicap_list
[i
].name
);
257 /* remove trailing space */
263 sendto_one(source_p
, "%s :%s", buf
, capbuf
);
267 cap_ack(struct Client
*source_p
, const char *arg
)
270 int capadd
= 0, capdel
= 0;
271 int finished
= 0, negate
;
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
))
285 /* dont let them ack something sticky off */
286 if(cap
->flags
& CLICAP_FLAGS_STICKY
)
289 capdel
|= cap
->cap_cli
;
292 capadd
|= cap
->cap_cli
;
295 source_p
->localClient
->caps
|= capadd
;
296 source_p
->localClient
->caps
&= ~capdel
;
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 */
307 source_p
->localClient
->caps
= source_p
->localClient
->caps
& CLICAP_STICKY
;
309 source_p
->localClient
->caps
= 0;
314 cap_end(struct Client
*source_p
, const char *arg
)
316 if(IsRegistered(source_p
))
319 source_p
->flags2
&= ~FLAGS2_CLICAP
;
321 if(source_p
->name
[0] && source_p
->user
)
324 strlcpy(buf
, source_p
->username
, sizeof(buf
));
325 register_local_user(source_p
, source_p
, buf
);
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);
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);
348 cap_req(struct Client
*source_p
, const char *arg
)
351 char pbuf
[2][BUFSIZE
];
355 int capadd
= 0, capdel
= 0;
356 int finished
= 0, negate
;
358 if(!IsRegistered(source_p
))
359 source_p
->flags2
|= FLAGS2_CLICAP
;
364 buflen
= ircsnprintf(buf
, sizeof(buf
), ":%s CAP %s ACK",
365 me
.name
, EmptyString(source_p
->name
) ? "*" : source_p
->name
);
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
377 if(buflen
+ plen
+ cap
->namelen
+ 6 >= BUFSIZE
)
386 if(cap
->flags
& CLICAP_FLAGS_STICKY
)
392 strcat(pbuf
[i
], "-");
395 capdel
|= cap
->cap_serv
;
399 if(cap
->flags
& CLICAP_FLAGS_STICKY
)
401 strcat(pbuf
[i
], "=");
405 capadd
|= cap
->cap_serv
;
410 strcat(pbuf
[i
], "~");
414 strcat(pbuf
[i
], cap
->name
);
415 strcat(pbuf
[i
], " ");
416 plen
+= (cap
->namelen
+ 1);
421 sendto_one(source_p
, ":%s CAP %s NAK :%s",
422 me
.name
, EmptyString(source_p
->name
) ? "*" : source_p
->name
, arg
);
428 sendto_one(source_p
, "%s * :%s", buf
, pbuf
[0]);
429 sendto_one(source_p
, "%s :%s", buf
, pbuf
[1]);
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
441 void (*func
)(struct Client
*source_p
, const char *arg
);
442 } clicap_cmdlist
[] = {
443 /* This list *MUST* be in alphabetical order */
445 { "CLEAR", cap_clear
},
447 { "LIST", cap_list
},
453 clicap_cmd_search(const char *command
, struct clicap_cmd
*entry
)
455 return irccmp(command
, entry
->cmd
);
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]);
472 (cmd
->func
)(source_p
, parv
[2]);