]> jfr.im git - irc/quakenet/snircd.git/blame - ircd/s_user.c
sync undernet upstream ircu changes.
[irc/quakenet/snircd.git] / ircd / s_user.c
CommitLineData
189935b1 1/*
2 * IRC - Internet Relay Chat, ircd/s_user.c (formerly ircd/s_msg.c)
3 * Copyright (C) 1990 Jarkko Oikarinen and
4 * University of Oulu, Computing Center
5 *
6 * See file AUTHORS in IRC package for additional names of
7 * the programmers.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 1, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23/** @file
24 * @brief Miscellaneous user-related helper functions.
7e3a3d58 25 * @version $Id: s_user.c,v 1.99.2.3 2007/01/13 18:43:41 entrope Exp $
189935b1 26 */
27#include "config.h"
28
29#include "s_user.h"
30#include "IPcheck.h"
31#include "channel.h"
32#include "class.h"
33#include "client.h"
34#include "hash.h"
35#include "ircd.h"
36#include "ircd_alloc.h"
189935b1 37#include "ircd_chattr.h"
38#include "ircd_features.h"
39#include "ircd_log.h"
40#include "ircd_reply.h"
41#include "ircd_snprintf.h"
42#include "ircd_string.h"
43#include "list.h"
44#include "match.h"
45#include "motd.h"
46#include "msg.h"
47#include "msgq.h"
48#include "numeric.h"
49#include "numnicks.h"
50#include "parse.h"
51#include "querycmds.h"
52#include "random.h"
9f8856e9 53#include "s_auth.h"
189935b1 54#include "s_bsd.h"
55#include "s_conf.h"
56#include "s_debug.h"
57#include "s_misc.h"
58#include "s_serv.h" /* max_client_count */
59#include "send.h"
60#include "struct.h"
61#include "supported.h"
62#include "sys.h"
63#include "userload.h"
64#include "version.h"
65#include "whowas.h"
66
67#include "handlers.h" /* m_motd and m_lusers */
68
69/* #include <assert.h> -- Now using assert in ircd_log.h */
70#include <fcntl.h>
71#include <stdio.h>
72#include <stdlib.h>
73#include <string.h>
74#include <sys/stat.h>
75
76/** Count of allocated User structures. */
77static int userCount = 0;
78
79/** Makes sure that \a cptr has a User information block.
80 * If cli_user(cptr) != NULL, does nothing.
81 * @param[in] cptr Client to attach User struct to.
82 * @return User struct associated with \a cptr.
83 */
84struct User *make_user(struct Client *cptr)
85{
86 assert(0 != cptr);
87
88 if (!cli_user(cptr)) {
89 cli_user(cptr) = (struct User*) MyMalloc(sizeof(struct User));
90 assert(0 != cli_user(cptr));
91
92 /* All variables are 0 by default */
93 memset(cli_user(cptr), 0, sizeof(struct User));
94 ++userCount;
95 cli_user(cptr)->refcnt = 1;
96 }
97 return cli_user(cptr);
98}
99
100/** Dereference \a user.
101 * User structures are reference-counted; if the refcount of \a user
102 * becomes zero, free it.
103 * @param[in] user User to dereference.
104 */
105void free_user(struct User* user)
106{
107 assert(0 != user);
108 assert(0 < user->refcnt);
109
110 if (--user->refcnt == 0) {
111 if (user->away)
112 MyFree(user->away);
113 /*
114 * sanity check
115 */
116 assert(0 == user->joined);
117 assert(0 == user->invited);
118 assert(0 == user->channel);
119
120 MyFree(user);
121 --userCount;
122 }
123}
124
125/** Find number of User structs allocated and memory used by them.
126 * @param[out] count_out Receives number of User structs allocated.
127 * @param[out] bytes_out Receives number of bytes used by User structs.
128 */
129void user_count_memory(size_t* count_out, size_t* bytes_out)
130{
131 assert(0 != count_out);
132 assert(0 != bytes_out);
133 *count_out = userCount;
134 *bytes_out = userCount * sizeof(struct User);
135}
136
137
138/** Find the next client (starting at \a next) with a name that matches \a ch.
139 * Normal usage loop is:
140 * for (x = client; x = next_client(x,mask); x = x->next)
141 * HandleMatchingClient;
142 *
143 * @param[in] next First client to check.
144 * @param[in] ch Name mask to check against.
145 * @return Next matching client found, or NULL if none.
146 */
147struct Client *next_client(struct Client *next, const char* ch)
148{
149 struct Client *tmp = next;
150
151 if (!tmp)
152 return NULL;
153
154 next = FindClient(ch);
155 next = next ? next : tmp;
156 if (cli_prev(tmp) == next)
157 return NULL;
158 if (next != tmp)
159 return next;
160 for (; next; next = cli_next(next))
161 if (!match(ch, cli_name(next)))
162 break;
163 return next;
164}
165
166/** Find the destination server for a command, and forward it if that is not us.
167 *
168 * \a server may be a nickname, server name, server mask (if \a from
169 * is a local user) or server numnick (if \a is a server or remote
170 * user).
171 *
172 * @param[in] from Client that sent the command to us.
173 * @param[in] cmd Long-form command text.
174 * @param[in] tok Token-form command text.
175 * @param[in] one Client that originated the command (ignored).
176 * @param[in] MustBeOper If non-zero and \a from is not an operator, return HUNTED_NOSUCH.
177 * @param[in] pattern Format string of arguments to command.
178 * @param[in] server Index of target name or mask in \a parv.
179 * @param[in] parc Number of valid elements in \a parv (must be less than 9).
180 * @param[in] parv Array of arguments to command.
181 * @return One of HUNTED_ISME, HUNTED_NOSUCH or HUNTED_PASS.
182 */
183int hunt_server_cmd(struct Client *from, const char *cmd, const char *tok,
184 struct Client *one, int MustBeOper, const char *pattern,
185 int server, int parc, char *parv[])
186{
187 struct Client *acptr;
188 char *to;
189
190 /* Assume it's me, if no server or an unregistered client */
191 if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
192 return (HUNTED_ISME);
193
194 if (MustBeOper && !IsPrivileged(from))
195 {
196 send_reply(from, ERR_NOPRIVILEGES);
197 return HUNTED_NOSUCH;
198 }
199
200 /* Make sure it's a server */
201 if (MyUser(from)) {
202 /* Make sure it's a server */
203 if (!strchr(to, '*')) {
204 if (0 == (acptr = FindClient(to))) {
205 send_reply(from, ERR_NOSUCHSERVER, to);
206 return HUNTED_NOSUCH;
207 }
208
209 if (cli_user(acptr))
210 acptr = cli_user(acptr)->server;
211 } else if (!(acptr = find_match_server(to))) {
212 send_reply(from, ERR_NOSUCHSERVER, to);
213 return (HUNTED_NOSUCH);
214 }
215 } else if (!(acptr = FindNServer(to))) {
216 send_reply(from, SND_EXPLICIT | ERR_NOSUCHSERVER, "* :Server has disconnected");
217 return (HUNTED_NOSUCH); /* Server broke off in the meantime */
218 }
219
220 if (IsMe(acptr))
221 return (HUNTED_ISME);
222
223 if (MustBeOper && !IsPrivileged(from)) {
224 send_reply(from, ERR_NOPRIVILEGES);
225 return HUNTED_NOSUCH;
226 }
227
228 /* assert(!IsServer(from)); */
229
230 parv[server] = (char *) acptr; /* HACK! HACK! HACK! ARGH! */
231
232 sendcmdto_one(from, cmd, tok, acptr, pattern, parv[1], parv[2], parv[3],
233 parv[4], parv[5], parv[6], parv[7], parv[8]);
234
235 return (HUNTED_PASS);
236}
237
238/** Find the destination server for a command, and forward it (as a
239 * high-priority command) if that is not us.
240 *
241 * \a server may be a nickname, server name, server mask (if \a from
242 * is a local user) or server numnick (if \a is a server or remote
243 * user).
244 * Unlike hunt_server_cmd(), this appends the message to the
245 * high-priority message queue for the destination server.
246 *
247 * @param[in] from Client that sent the command to us.
248 * @param[in] cmd Long-form command text.
249 * @param[in] tok Token-form command text.
250 * @param[in] one Client that originated the command (ignored).
251 * @param[in] MustBeOper If non-zero and \a from is not an operator, return HUNTED_NOSUCH.
252 * @param[in] pattern Format string of arguments to command.
253 * @param[in] server Index of target name or mask in \a parv.
254 * @param[in] parc Number of valid elements in \a parv (must be less than 9).
255 * @param[in] parv Array of arguments to command.
256 * @return One of HUNTED_ISME, HUNTED_NOSUCH or HUNTED_PASS.
257 */
258int hunt_server_prio_cmd(struct Client *from, const char *cmd, const char *tok,
259 struct Client *one, int MustBeOper,
260 const char *pattern, int server, int parc,
261 char *parv[])
262{
263 struct Client *acptr;
264 char *to;
265
266 /* Assume it's me, if no server or an unregistered client */
267 if (parc <= server || EmptyString((to = parv[server])) || IsUnknown(from))
268 return (HUNTED_ISME);
269
270 /* Make sure it's a server */
271 if (MyUser(from)) {
272 /* Make sure it's a server */
273 if (!strchr(to, '*')) {
274 if (0 == (acptr = FindClient(to))) {
275 send_reply(from, ERR_NOSUCHSERVER, to);
276 return HUNTED_NOSUCH;
277 }
278
279 if (cli_user(acptr))
280 acptr = cli_user(acptr)->server;
281 } else if (!(acptr = find_match_server(to))) {
282 send_reply(from, ERR_NOSUCHSERVER, to);
283 return (HUNTED_NOSUCH);
284 }
285 } else if (!(acptr = FindNServer(to)))
286 return (HUNTED_NOSUCH); /* Server broke off in the meantime */
287
288 if (IsMe(acptr))
289 return (HUNTED_ISME);
290
291 if (MustBeOper && !IsPrivileged(from)) {
292 send_reply(from, ERR_NOPRIVILEGES);
293 return HUNTED_NOSUCH;
294 }
295
296 /* assert(!IsServer(from)); SETTIME to particular destinations permitted */
297
298 parv[server] = (char *) acptr; /* HACK! HACK! HACK! ARGH! */
299
300 sendcmdto_prio_one(from, cmd, tok, acptr, pattern, parv[1], parv[2], parv[3],
301 parv[4], parv[5], parv[6], parv[7], parv[8]);
302
303 return (HUNTED_PASS);
304}
305
306
189935b1 307/*
308 * register_user
309 *
310 * This function is called when both NICK and USER messages
311 * have been accepted for the client, in whatever order. Only
312 * after this the USER message is propagated.
313 *
314 * NICK's must be propagated at once when received, although
315 * it would be better to delay them too until full info is
316 * available. Doing it is not so simple though, would have
317 * to implement the following:
318 *
319 * 1) user telnets in and gives only "NICK foobar" and waits
320 * 2) another user far away logs in normally with the nick
321 * "foobar" (quite legal, as this server didn't propagate it).
322 * 3) now this server gets nick "foobar" from outside, but
323 * has already the same defined locally. Current server
324 * would just issue "KILL foobar" to clean out dups. But,
325 * this is not fair. It should actually request another
326 * nick from local user or kill him/her...
327 */
328/** Finish registering a user who has sent both NICK and USER.
329 * For local connections, possibly check IAuth; make sure there is a
330 * matching Client config block; clean the username field; check
331 * K/k-lines; check for "hacked" looking usernames; assign a numnick;
332 * and send greeting (WELCOME, ISUPPORT, MOTD, etc).
333 * For all connections, update the invisible user and operator counts;
334 * run IPcheck against their address; and forward the NICK.
335 *
336 * @param[in] cptr Client who introduced the user.
337 * @param[in,out] sptr Client who has been fully introduced.
189935b1 338 * @return Zero or CPTR_KILLED.
339 */
9f8856e9 340int register_user(struct Client *cptr, struct Client *sptr)
189935b1 341{
189935b1 342 char* parv[4];
343 char* tmpstr;
189935b1 344 struct User* user = cli_user(sptr);
189935b1 345 char ip_base64[25];
346
347 user->last = CurrentTime;
348 parv[0] = cli_name(sptr);
349 parv[1] = parv[2] = NULL;
350
351 if (MyConnect(sptr))
352 {
189935b1 353 assert(cptr == sptr);
189935b1 354
189935b1 355 Count_unknownbecomesclient(sptr, UserStats);
356
357 SetUser(sptr);
358 cli_handler(sptr) = CLIENT_HANDLER;
359 SetLocalNumNick(sptr);
360 send_reply(sptr,
361 RPL_WELCOME,
362 feature_str(FEAT_NETWORK),
363 feature_str(FEAT_PROVIDER) ? " via " : "",
364 feature_str(FEAT_PROVIDER) ? feature_str(FEAT_PROVIDER) : "",
9f8856e9 365 cli_name(sptr));
189935b1 366 /*
367 * This is a duplicate of the NOTICE but see below...
368 */
369 send_reply(sptr, RPL_YOURHOST, cli_name(&me), version);
370 send_reply(sptr, RPL_CREATED, creation);
371 send_reply(sptr, RPL_MYINFO, cli_name(&me), version, infousermodes,
372 infochanmodes, infochanmodeswithparams);
373 send_supported(sptr);
374 m_lusers(sptr, sptr, 1, parv);
375 update_load();
376 motd_signon(sptr);
377 if (cli_snomask(sptr) & SNO_NOISY)
378 set_snomask(sptr, cli_snomask(sptr) & SNO_NOISY, SNO_ADD);
379 if (feature_bool(FEAT_CONNEXIT_NOTICES))
380 sendto_opmask_butone(0, SNO_CONNEXIT,
381 "Client connecting: %s (%s@%s) [%s] {%s} [%s] <%s%s>",
382 cli_name(sptr), user->username, user->host,
383 cli_sock_ip(sptr), get_client_class(sptr),
384 cli_info(sptr), NumNick(cptr) /* two %s's */);
385
386 IPcheck_connect_succeeded(sptr);
387 /*
388 * Set user's initial modes
389 */
390 tmpstr = (char*)client_get_default_umode(sptr);
391 if (tmpstr) for (; *tmpstr; ++tmpstr) {
392 switch (*tmpstr) {
393 case 's':
394 if (!feature_bool(FEAT_HIS_SNOTICES_OPER_ONLY)) {
395 SetServNotice(sptr);
396 set_snomask(sptr, SNO_DEFAULT, SNO_SET);
397 }
398 break;
399 case 'w':
400 if (!feature_bool(FEAT_WALLOPS_OPER_ONLY))
401 SetWallops(sptr);
402 break;
403 case 'i':
404 SetInvisible(sptr);
405 break;
406 case 'd':
407 SetDeaf(sptr);
408 break;
409 case 'g':
410 if (!feature_bool(FEAT_HIS_DEBUG_OPER_ONLY))
411 SetDebug(sptr);
412 break;
413 }
414 }
415 }
416 else {
9f8856e9 417 struct Client *acptr = user->server;
189935b1 418
9f8856e9 419 Count_newremoteclient(UserStats, acptr);
189935b1 420
189935b1 421 if (cli_from(acptr) != cli_from(sptr))
422 {
423 sendcmdto_one(&me, CMD_KILL, cptr, "%C :%s (%s != %s[%s])",
424 sptr, cli_name(&me), cli_name(user->server), cli_name(cli_from(acptr)),
425 cli_sockhost(cli_from(acptr)));
426 SetFlag(sptr, FLAG_KILLED);
427 return exit_client(cptr, sptr, &me, "NICK server wrong direction");
428 }
429 else if (HasFlag(acptr, FLAG_TS8))
430 SetFlag(sptr, FLAG_TS8);
431
432 /*
433 * Check to see if this user is being propagated
434 * as part of a net.burst, or is using protocol 9.
435 * FIXME: This can be sped up - its stupid to check it for
436 * every NICK message in a burst again --Run.
437 */
438 for (; acptr != &me; acptr = cli_serv(acptr)->up)
439 {
440 if (IsBurst(acptr) || Protocol(acptr) < 10)
441 break;
442 }
443 if (!IPcheck_remote_connect(sptr, (acptr != &me)))
444 {
445 /*
446 * We ran out of bits to count this
447 */
448 sendcmdto_one(&me, CMD_KILL, sptr, "%C :%s (Too many connections from your host -- Ghost)",
449 sptr, cli_name(&me));
450 return exit_client(cptr, sptr, &me,"Too many connections from your host -- throttled");
451 }
452 SetUser(sptr);
453 }
454
455 if (IsInvisible(sptr))
456 ++UserStats.inv_clients;
457 if (IsOper(sptr))
458 ++UserStats.opers;
459
460 tmpstr = umode_str(sptr);
461 /* Send full IP address to IPv6-grokking servers. */
462 sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
463 FLAG_IPV6, FLAG_LAST_FLAG,
464 "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
9f8856e9 465 cli_name(sptr), cli_hopcount(sptr) + 1,
466 cli_lastnick(sptr),
189935b1 467 user->username, user->realhost,
468 *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
469 iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 1),
470 NumNick(sptr), cli_info(sptr));
471 /* Send fake IPv6 addresses to pre-IPv6 servers. */
472 sendcmdto_flag_serv_butone(user->server, CMD_NICK, cptr,
473 FLAG_LAST_FLAG, FLAG_IPV6,
474 "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
9f8856e9 475 cli_name(sptr), cli_hopcount(sptr) + 1,
476 cli_lastnick(sptr),
189935b1 477 user->username, user->realhost,
478 *tmpstr ? "+" : "", tmpstr, *tmpstr ? " " : "",
479 iptobase64(ip_base64, &cli_ip(sptr), sizeof(ip_base64), 0),
480 NumNick(sptr), cli_info(sptr));
481
482 /* Send user mode to client */
483 if (MyUser(sptr))
484 {
485 static struct Flags flags; /* automatically initialized to zeros */
052b069e 486 /* To avoid sending +r to the client due to auth-on-connect, set
487 * the "old" FLAG_ACCOUNT bit to match the client's value.
488 */
489 if (IsAccount(cptr))
490 FlagSet(&flags, FLAG_ACCOUNT);
491 else
492 FlagClr(&flags, FLAG_ACCOUNT);
189935b1 493 send_umode(cptr, sptr, &flags, ALL_UMODES);
494 if ((cli_snomask(sptr) != SNO_DEFAULT) && HasFlag(sptr, FLAG_SERVNOTICE))
495 send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
496 }
497 return 0;
498}
499
500/** List of user mode characters. */
501static const struct UserMode {
502 unsigned int flag; /**< User mode constant. */
503 char c; /**< Character corresponding to the mode. */
504} userModeList[] = {
505 { FLAG_OPER, 'o' },
506 { FLAG_LOCOP, 'O' },
507 { FLAG_INVISIBLE, 'i' },
508 { FLAG_WALLOP, 'w' },
509 { FLAG_SERVNOTICE, 's' },
510 { FLAG_DEAF, 'd' },
511 { FLAG_CHSERV, 'k' },
512 { FLAG_DEBUG, 'g' },
513 { FLAG_ACCOUNT, 'r' },
514 { FLAG_HIDDENHOST, 'x' }
515};
516
517/** Length of #userModeList. */
518#define USERMODELIST_SIZE sizeof(userModeList) / sizeof(struct UserMode)
519
520/*
521 * XXX - find a way to get rid of this
522 */
523/** Nasty global buffer used for communications with umode_str() and others. */
524static char umodeBuf[BUFSIZE];
525
526/** Try to set a user's nickname.
527 * If \a sptr is a server, the client is being introduced for the first time.
528 * @param[in] cptr Client to set nickname.
529 * @param[in] sptr Client sending the NICK.
530 * @param[in] nick New nickname.
531 * @param[in] parc Number of arguments to NICK.
532 * @param[in] parv Argument list to NICK.
533 * @return CPTR_KILLED if \a cptr was killed, else 0.
534 */
535int set_nick_name(struct Client* cptr, struct Client* sptr,
536 const char* nick, int parc, char* parv[])
537{
538 if (IsServer(sptr)) {
539 int i;
540 const char* account = 0;
541 const char* p;
542
543 /*
544 * A server introducing a new client, change source
545 */
546 struct Client* new_client = make_client(cptr, STAT_UNKNOWN);
547 assert(0 != new_client);
548
549 cli_hopcount(new_client) = atoi(parv[2]);
550 cli_lastnick(new_client) = atoi(parv[3]);
551 if (Protocol(cptr) > 9 && parc > 7 && *parv[6] == '+')
552 {
553 for (p = parv[6] + 1; *p; p++)
554 {
555 for (i = 0; i < USERMODELIST_SIZE; ++i)
556 {
557 if (userModeList[i].c == *p)
558 {
559 SetFlag(new_client, userModeList[i].flag);
560 if (userModeList[i].flag == FLAG_ACCOUNT)
561 account = parv[7];
562 break;
563 }
564 }
565 }
566 }
567 client_set_privs(new_client, NULL); /* set privs on user */
568 /*
569 * Set new nick name.
570 */
571 strcpy(cli_name(new_client), nick);
572 cli_user(new_client) = make_user(new_client);
573 cli_user(new_client)->server = sptr;
574 SetRemoteNumNick(new_client, parv[parc - 2]);
575 /*
576 * IP# of remote client
577 */
578 base64toip(parv[parc - 3], &cli_ip(new_client));
579
580 add_client_to_list(new_client);
581 hAddClient(new_client);
582
583 cli_serv(sptr)->ghost = 0; /* :server NICK means end of net.burst */
584 ircd_strncpy(cli_username(new_client), parv[4], USERLEN);
9f8856e9 585 ircd_strncpy(cli_user(new_client)->username, parv[4], USERLEN);
189935b1 586 ircd_strncpy(cli_user(new_client)->host, parv[5], HOSTLEN);
587 ircd_strncpy(cli_user(new_client)->realhost, parv[5], HOSTLEN);
588 ircd_strncpy(cli_info(new_client), parv[parc - 1], REALLEN);
589 if (account) {
590 int len = ACCOUNTLEN;
591 if ((p = strchr(account, ':'))) {
592 len = (p++) - account;
593 cli_user(new_client)->acc_create = atoi(p);
594 Debug((DEBUG_DEBUG, "Received timestamped account in user mode; "
595 "account \"%s\", timestamp %Tu", account,
596 cli_user(new_client)->acc_create));
597 }
598 ircd_strncpy(cli_user(new_client)->account, account, len);
599 }
600 if (HasHiddenHost(new_client))
601 ircd_snprintf(0, cli_user(new_client)->host, HOSTLEN, "%s.%s",
7e3a3d58 602 cli_user(new_client)->account,
603 feature_str(FEAT_HIDDEN_HOST));
189935b1 604
9f8856e9 605 return register_user(cptr, new_client);
189935b1 606 }
607 else if ((cli_name(sptr))[0]) {
608 /*
609 * Client changing its nick
610 *
611 * If the client belongs to me, then check to see
612 * if client is on any channels where it is currently
613 * banned. If so, do not allow the nick change to occur.
614 */
615 if (MyUser(sptr)) {
616 const char* channel_name;
617 struct Membership *member;
618 if ((channel_name = find_no_nickchange_channel(sptr))) {
619 return send_reply(cptr, ERR_BANNICKCHANGE, channel_name);
620 }
621 /*
622 * Refuse nick change if the last nick change was less
623 * then 30 seconds ago. This is intended to get rid of
624 * clone bots doing NICK FLOOD. -SeKs
625 * If someone didn't change their nick for more then 60 seconds
626 * however, allow to do two nick changes immediately after another
627 * before limiting the nick flood. -Run
628 */
629 if (CurrentTime < cli_nextnick(cptr))
630 {
631 cli_nextnick(cptr) += 2;
632 send_reply(cptr, ERR_NICKTOOFAST, parv[1],
633 cli_nextnick(cptr) - CurrentTime);
634 /* Send error message */
635 sendcmdto_one(cptr, CMD_NICK, cptr, "%s", cli_name(cptr));
636 /* bounce NICK to user */
637 return 0; /* ignore nick change! */
638 }
639 else {
640 /* Limit total to 1 change per NICK_DELAY seconds: */
641 cli_nextnick(cptr) += NICK_DELAY;
642 /* However allow _maximal_ 1 extra consecutive nick change: */
643 if (cli_nextnick(cptr) < CurrentTime)
644 cli_nextnick(cptr) = CurrentTime;
645 }
646 /* Invalidate all bans against the user so we check them again */
647 for (member = (cli_user(cptr))->channel; member;
648 member = member->next_channel)
649 ClearBanValid(member);
650 }
651 /*
652 * Also set 'lastnick' to current time, if changed.
653 */
654 if (0 != ircd_strcmp(parv[0], nick))
655 cli_lastnick(sptr) = (sptr == cptr) ? TStime() : atoi(parv[2]);
656
657 /*
658 * Client just changing his/her nick. If he/she is
659 * on a channel, send note of change to all clients
660 * on that channel. Propagate notice to other servers.
661 */
662 if (IsUser(sptr)) {
663 sendcmdto_common_channels_butone(sptr, CMD_NICK, NULL, ":%s", nick);
664 add_history(sptr, 1);
665 sendcmdto_serv_butone(sptr, CMD_NICK, cptr, "%s %Tu", nick,
666 cli_lastnick(sptr));
667 }
668 else
669 sendcmdto_one(sptr, CMD_NICK, sptr, ":%s", nick);
670
671 if ((cli_name(sptr))[0])
672 hRemClient(sptr);
673 strcpy(cli_name(sptr), nick);
674 hAddClient(sptr);
675 }
676 else {
677 /* Local client setting NICK the first time */
189935b1 678 strcpy(cli_name(sptr), nick);
189935b1 679 hAddClient(sptr);
9f8856e9 680 return auth_set_nick(cli_auth(sptr), nick);
189935b1 681 }
682 return 0;
683}
684
685/** Calculate the hash value for a target.
686 * @param[in] target Pointer to target, cast to unsigned int.
687 * @return Hash value constructed from the pointer.
688 */
689static unsigned char hash_target(unsigned int target)
690{
691 return (unsigned char) (target >> 16) ^ (target >> 8);
692}
693
694/** Records \a target as a recent target for \a sptr.
695 * @param[in] sptr User who has sent to a new target.
696 * @param[in] target Target to add.
697 */
698void
699add_target(struct Client *sptr, void *target)
700{
701 /* Ok, this shouldn't work esp on alpha
702 */
703 unsigned char hash = hash_target((unsigned long) target);
704 unsigned char* targets;
705 int i;
706 assert(0 != sptr);
707 assert(cli_local(sptr));
708
709 targets = cli_targets(sptr);
710
711 /*
712 * Already in table?
713 */
714 for (i = 0; i < MAXTARGETS; ++i) {
715 if (targets[i] == hash)
716 return;
717 }
718 /*
719 * New target
720 */
721 memmove(&targets[RESERVEDTARGETS + 1],
722 &targets[RESERVEDTARGETS], MAXTARGETS - RESERVEDTARGETS - 1);
723 targets[RESERVEDTARGETS] = hash;
724}
725
726/** Check whether \a sptr can send to or join \a target yet.
727 * @param[in] sptr User trying to join a channel or send a message.
728 * @param[in] target Target of the join or message.
729 * @param[in] name Name of the target.
730 * @param[in] created If non-zero, trying to join a new channel.
731 * @return Non-zero if too many target changes; zero if okay to send.
732 */
733int check_target_limit(struct Client *sptr, void *target, const char *name,
734 int created)
735{
736 unsigned char hash = hash_target((unsigned long) target);
737 int i;
738 unsigned char* targets;
739
740 assert(0 != sptr);
741 assert(cli_local(sptr));
742 targets = cli_targets(sptr);
743
744 /* If user is invited to channel, give him/her a free target */
745 if (IsChannelName(name) && IsInvited(sptr, target))
746 return 0;
747
748 /*
749 * Same target as last time?
750 */
751 if (targets[0] == hash)
752 return 0;
753 for (i = 1; i < MAXTARGETS; ++i) {
754 if (targets[i] == hash) {
755 memmove(&targets[1], &targets[0], i);
756 targets[0] = hash;
757 return 0;
758 }
759 }
760 /*
761 * New target
762 */
763 if (!created) {
764 if (CurrentTime < cli_nexttarget(sptr)) {
765 if (cli_nexttarget(sptr) - CurrentTime < TARGET_DELAY + 8) {
766 /*
767 * No server flooding
768 */
769 cli_nexttarget(sptr) += 2;
770 send_reply(sptr, ERR_TARGETTOOFAST, name,
771 cli_nexttarget(sptr) - CurrentTime);
772 }
773 return 1;
774 }
775 else {
776 cli_nexttarget(sptr) += TARGET_DELAY;
777 if (cli_nexttarget(sptr) < CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1)))
778 cli_nexttarget(sptr) = CurrentTime - (TARGET_DELAY * (MAXTARGETS - 1));
779 }
780 }
781 memmove(&targets[1], &targets[0], MAXTARGETS - 1);
782 targets[0] = hash;
783 return 0;
784}
785
786/** Allows a channel operator to avoid target change checks when
787 * sending messages to users on their channel.
788 * @param[in] source User sending the message.
789 * @param[in] nick Destination of the message.
790 * @param[in] channel Name of channel being sent to.
791 * @param[in] text Message to send.
792 * @param[in] is_notice If non-zero, use CNOTICE instead of CPRIVMSG.
793 */
794/* Added 971023 by Run. */
795int whisper(struct Client* source, const char* nick, const char* channel,
796 const char* text, int is_notice)
797{
798 struct Client* dest;
799 struct Channel* chptr;
800 struct Membership* membership;
801
802 assert(0 != source);
803 assert(0 != nick);
804 assert(0 != channel);
805 assert(MyUser(source));
806
807 if (!(dest = FindUser(nick))) {
808 return send_reply(source, ERR_NOSUCHNICK, nick);
809 }
810 if (!(chptr = FindChannel(channel))) {
811 return send_reply(source, ERR_NOSUCHCHANNEL, channel);
812 }
813 /*
814 * compare both users channel lists, instead of the channels user list
815 * since the link is the same, this should be a little faster for channels
816 * with a lot of users
817 */
818 for (membership = cli_user(source)->channel; membership; membership = membership->next_channel) {
819 if (chptr == membership->channel)
820 break;
821 }
822 if (0 == membership) {
823 return send_reply(source, ERR_NOTONCHANNEL, chptr->chname);
824 }
825 if (!IsVoicedOrOpped(membership)) {
826 return send_reply(source, ERR_VOICENEEDED, chptr->chname);
827 }
828 /*
829 * lookup channel in destination
830 */
831 assert(0 != cli_user(dest));
832 for (membership = cli_user(dest)->channel; membership; membership = membership->next_channel) {
833 if (chptr == membership->channel)
834 break;
835 }
836 if (0 == membership || IsZombie(membership)) {
837 return send_reply(source, ERR_USERNOTINCHANNEL, cli_name(dest), chptr->chname);
838 }
839 if (is_silenced(source, dest))
840 return 0;
841
842 if (cli_user(dest)->away)
843 send_reply(source, RPL_AWAY, cli_name(dest), cli_user(dest)->away);
844 if (is_notice)
845 sendcmdto_one(source, CMD_NOTICE, dest, "%C :%s", dest, text);
846 else
847 sendcmdto_one(source, CMD_PRIVATE, dest, "%C :%s", dest, text);
848 return 0;
849}
850
851
852/** Send a user mode change for \a cptr to neighboring servers.
853 * @param[in] cptr User whose mode is changing.
854 * @param[in] sptr Client who sent us the mode change message.
855 * @param[in] old Prior set of user flags.
856 * @param[in] prop If non-zero, also include FLAG_OPER.
857 */
858void send_umode_out(struct Client *cptr, struct Client *sptr,
859 struct Flags *old, int prop)
860{
861 int i;
862 struct Client *acptr;
863
864 send_umode(NULL, sptr, old, prop ? SEND_UMODES : SEND_UMODES_BUT_OPER);
865
866 for (i = HighestFd; i >= 0; i--)
867 {
868 if ((acptr = LocalClientArray[i]) && IsServer(acptr) &&
869 (acptr != cptr) && (acptr != sptr) && *umodeBuf)
870 sendcmdto_one(sptr, CMD_MODE, acptr, "%s :%s", cli_name(sptr), umodeBuf);
871 }
872 if (cptr && MyUser(cptr))
873 send_umode(cptr, sptr, old, ALL_UMODES);
874}
875
876
877/** Call \a fmt for each Client named in \a names.
878 * @param[in] sptr Client requesting information.
879 * @param[in] names Space-delimited list of nicknames.
880 * @param[in] rpl Base reply string for messages.
881 * @param[in] fmt Formatting callback function.
882 */
883void send_user_info(struct Client* sptr, char* names, int rpl, InfoFormatter fmt)
884{
885 char* name;
886 char* p = 0;
887 int arg_count = 0;
888 int users_found = 0;
889 struct Client* acptr;
890 struct MsgBuf* mb;
891
892 assert(0 != sptr);
893 assert(0 != names);
894 assert(0 != fmt);
895
896 mb = msgq_make(sptr, rpl_str(rpl), cli_name(&me), cli_name(sptr));
897
898 for (name = ircd_strtok(&p, names, " "); name; name = ircd_strtok(&p, 0, " ")) {
899 if ((acptr = FindUser(name))) {
900 if (users_found++)
901 msgq_append(0, mb, " ");
902 (*fmt)(acptr, sptr, mb);
903 }
904 if (5 == ++arg_count)
905 break;
906 }
907 send_buffer(sptr, mb, 0);
908 msgq_clean(mb);
909}
910
911/** Set \a flag on \a cptr and possibly hide the client's hostmask.
912 * @param[in,out] cptr User who is getting a new flag.
913 * @param[in] flag Some flag that affects host-hiding (FLAG_HIDDENHOST, FLAG_ACCOUNT).
914 * @return Zero.
915 */
916int
917hide_hostmask(struct Client *cptr, unsigned int flag)
918{
919 struct Membership *chan;
920
921 switch (flag) {
922 case FLAG_HIDDENHOST:
923 /* Local users cannot set +x unless FEAT_HOST_HIDING is true. */
924 if (MyConnect(cptr) && !feature_bool(FEAT_HOST_HIDING))
925 return 0;
926 break;
927 case FLAG_ACCOUNT:
928 /* Invalidate all bans against the user so we check them again */
929 for (chan = (cli_user(cptr))->channel; chan;
930 chan = chan->next_channel)
931 ClearBanValid(chan);
932 break;
933 default:
934 return 0;
935 }
936
937 SetFlag(cptr, flag);
938 if (!HasFlag(cptr, FLAG_HIDDENHOST) || !HasFlag(cptr, FLAG_ACCOUNT))
939 return 0;
940
941 sendcmdto_common_channels_butone(cptr, CMD_QUIT, cptr, ":Registered");
942 ircd_snprintf(0, cli_user(cptr)->host, HOSTLEN, "%s.%s",
943 cli_user(cptr)->account, feature_str(FEAT_HIDDEN_HOST));
944
945 /* ok, the client is now fully hidden, so let them know -- hikari */
946 if (MyConnect(cptr))
947 send_reply(cptr, RPL_HOSTHIDDEN, cli_user(cptr)->host);
948
949 /*
950 * Go through all channels the client was on, rejoin him
951 * and set the modes, if any
952 */
953 for (chan = cli_user(cptr)->channel; chan; chan = chan->next_channel)
954 {
955 if (IsZombie(chan))
956 continue;
957 /* Send a JOIN unless the user's join has been delayed. */
958 if (!IsDelayedJoin(chan))
959 sendcmdto_channel_butserv_butone(cptr, CMD_JOIN, chan->channel, cptr, 0,
960 "%H", chan->channel);
961 if (IsChanOp(chan) && HasVoice(chan))
962 sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
963 "%H +ov %C %C", chan->channel, cptr,
964 cptr);
965 else if (IsChanOp(chan) || HasVoice(chan))
966 sendcmdto_channel_butserv_butone(&his, CMD_MODE, chan->channel, cptr, 0,
967 "%H +%c %C", chan->channel, IsChanOp(chan) ? 'o' : 'v', cptr);
968 }
969 return 0;
970}
971
972/** Set a user's mode. This function checks that \a cptr is trying to
973 * set his own mode, prevents local users from setting inappropriate
974 * modes through this function, and applies any other side effects of
975 * a successful mode change.
976 *
977 * @param[in,out] cptr User setting someone's mode.
978 * @param[in] sptr Client who sent the mode change message.
979 * @param[in] parc Number of parameters in \a parv.
980 * @param[in] parv Parameters to MODE.
981 * @return Zero.
982 */
983int set_user_mode(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
984{
985 char** p;
986 char* m;
987 struct Client *acptr;
988 int what;
989 int i;
990 struct Flags setflags;
991 unsigned int tmpmask = 0;
992 int snomask_given = 0;
993 char buf[BUFSIZE];
994 int prop = 0;
995 int do_host_hiding = 0;
996
997 what = MODE_ADD;
998
999 if (parc < 2)
1000 return need_more_params(sptr, "MODE");
1001
1002 if (!(acptr = FindUser(parv[1])))
1003 {
1004 if (MyConnect(sptr))
1005 send_reply(sptr, ERR_NOSUCHCHANNEL, parv[1]);
1006 return 0;
1007 }
1008
1009 if (IsServer(sptr) || sptr != acptr)
1010 {
1011 if (IsServer(cptr))
1012 sendwallto_group_butone(&me, WALL_WALLOPS, 0,
1013 "MODE for User %s from %s!%s", parv[1],
1014 cli_name(cptr), cli_name(sptr));
1015 else
1016 send_reply(sptr, ERR_USERSDONTMATCH);
1017 return 0;
1018 }
1019
1020 if (parc < 3)
1021 {
1022 m = buf;
1023 *m++ = '+';
1024 for (i = 0; i < USERMODELIST_SIZE; i++)
1025 {
1026 if (HasFlag(sptr, userModeList[i].flag) &&
1027 userModeList[i].flag != FLAG_ACCOUNT)
1028 *m++ = userModeList[i].c;
1029 }
1030 *m = '\0';
1031 send_reply(sptr, RPL_UMODEIS, buf);
1032 if (HasFlag(sptr, FLAG_SERVNOTICE) && MyConnect(sptr)
1033 && cli_snomask(sptr) !=
1034 (unsigned int)(IsOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT))
1035 send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1036 return 0;
1037 }
1038
1039 /*
1040 * find flags already set for user
1041 * why not just copy them?
1042 */
1043 setflags = cli_flags(sptr);
1044
1045 if (MyConnect(sptr))
1046 tmpmask = cli_snomask(sptr);
1047
1048 /*
1049 * parse mode change string(s)
1050 */
1051 for (p = &parv[2]; *p; p++) { /* p is changed in loop too */
1052 for (m = *p; *m; m++) {
1053 switch (*m) {
1054 case '+':
1055 what = MODE_ADD;
1056 break;
1057 case '-':
1058 what = MODE_DEL;
1059 break;
1060 case 's':
1061 if (*(p + 1) && is_snomask(*(p + 1))) {
1062 snomask_given = 1;
1063 tmpmask = umode_make_snomask(tmpmask, *++p, what);
1064 tmpmask &= (IsAnOper(sptr) ? SNO_ALL : SNO_USER);
1065 }
1066 else
1067 tmpmask = (what == MODE_ADD) ?
1068 (IsAnOper(sptr) ? SNO_OPERDEFAULT : SNO_DEFAULT) : 0;
1069 if (tmpmask)
1070 SetServNotice(sptr);
1071 else
1072 ClearServNotice(sptr);
1073 break;
1074 case 'w':
1075 if (what == MODE_ADD)
1076 SetWallops(sptr);
1077 else
1078 ClearWallops(sptr);
1079 break;
1080 case 'o':
1081 if (what == MODE_ADD)
1082 SetOper(sptr);
1083 else {
1084 ClrFlag(sptr, FLAG_OPER);
1085 ClrFlag(sptr, FLAG_LOCOP);
1086 if (MyConnect(sptr))
1087 {
1088 tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1089 cli_handler(sptr) = CLIENT_HANDLER;
1090 }
1091 }
1092 break;
1093 case 'O':
1094 if (what == MODE_ADD)
1095 SetLocOp(sptr);
1096 else
1097 {
1098 ClrFlag(sptr, FLAG_OPER);
1099 ClrFlag(sptr, FLAG_LOCOP);
1100 if (MyConnect(sptr))
1101 {
1102 tmpmask = cli_snomask(sptr) & ~SNO_OPER;
1103 cli_handler(sptr) = CLIENT_HANDLER;
1104 }
1105 }
1106 break;
1107 case 'i':
1108 if (what == MODE_ADD)
1109 SetInvisible(sptr);
1110 else
1111 ClearInvisible(sptr);
1112 break;
1113 case 'd':
1114 if (what == MODE_ADD)
1115 SetDeaf(sptr);
1116 else
1117 ClearDeaf(sptr);
1118 break;
1119 case 'k':
1120 if (what == MODE_ADD)
1121 SetChannelService(sptr);
1122 else
1123 ClearChannelService(sptr);
1124 break;
1125 case 'g':
1126 if (what == MODE_ADD)
1127 SetDebug(sptr);
1128 else
1129 ClearDebug(sptr);
1130 break;
1131 case 'x':
1132 if (what == MODE_ADD)
1133 do_host_hiding = 1;
1134 break;
1135 default:
1136 send_reply(sptr, ERR_UMODEUNKNOWNFLAG, *m);
1137 break;
1138 }
1139 }
1140 }
1141 /*
1142 * Evaluate rules for new user mode
1143 * Stop users making themselves operators too easily:
1144 */
1145 if (!IsServer(cptr))
1146 {
1147 if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1148 ClearOper(sptr);
1149 if (!FlagHas(&setflags, FLAG_LOCOP) && IsLocOp(sptr))
1150 ClearLocOp(sptr);
1151 /*
1152 * new umode; servers can set it, local users cannot;
1153 * prevents users from /kick'ing or /mode -o'ing
1154 */
1155 if (!FlagHas(&setflags, FLAG_CHSERV))
1156 ClearChannelService(sptr);
1157 /*
1158 * only send wallops to opers
1159 */
1160 if (feature_bool(FEAT_WALLOPS_OPER_ONLY) && !IsAnOper(sptr) &&
1161 !FlagHas(&setflags, FLAG_WALLOP))
1162 ClearWallops(sptr);
1163 if (feature_bool(FEAT_HIS_SNOTICES_OPER_ONLY) && MyConnect(sptr) &&
1164 !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_SERVNOTICE))
1165 {
1166 ClearServNotice(sptr);
1167 set_snomask(sptr, 0, SNO_SET);
1168 }
1169 if (feature_bool(FEAT_HIS_DEBUG_OPER_ONLY) &&
1170 !IsAnOper(sptr) && !FlagHas(&setflags, FLAG_DEBUG))
1171 ClearDebug(sptr);
1172 }
1173 if (MyConnect(sptr))
1174 {
1175 if ((FlagHas(&setflags, FLAG_OPER) || FlagHas(&setflags, FLAG_LOCOP)) &&
1176 !IsAnOper(sptr))
1177 det_confs_butmask(sptr, CONF_CLIENT & ~CONF_OPERATOR);
1178
1179 if (SendServNotice(sptr))
1180 {
1181 if (tmpmask != cli_snomask(sptr))
1182 set_snomask(sptr, tmpmask, SNO_SET);
1183 if (cli_snomask(sptr) && snomask_given)
1184 send_reply(sptr, RPL_SNOMASK, cli_snomask(sptr), cli_snomask(sptr));
1185 }
1186 else
1187 set_snomask(sptr, 0, SNO_SET);
1188 }
1189 /*
1190 * Compare new flags with old flags and send string which
1191 * will cause servers to update correctly.
1192 */
1193 if (!FlagHas(&setflags, FLAG_OPER) && IsOper(sptr))
1194 {
1195 /* user now oper */
1196 ++UserStats.opers;
1197 client_set_privs(sptr, NULL); /* may set propagate privilege */
1198 }
1199 /* remember propagate privilege setting */
1200 if (HasPriv(sptr, PRIV_PROPAGATE))
1201 prop = 1;
1202 if (FlagHas(&setflags, FLAG_OPER) && !IsOper(sptr))
1203 {
1204 /* user no longer oper */
1205 --UserStats.opers;
1206 client_set_privs(sptr, NULL); /* will clear propagate privilege */
1207 }
1208 if (FlagHas(&setflags, FLAG_INVISIBLE) && !IsInvisible(sptr))
1209 --UserStats.inv_clients;
1210 if (!FlagHas(&setflags, FLAG_INVISIBLE) && IsInvisible(sptr))
1211 ++UserStats.inv_clients;
1212 if (!FlagHas(&setflags, FLAG_HIDDENHOST) && do_host_hiding)
1213 hide_hostmask(sptr, FLAG_HIDDENHOST);
1214 send_umode_out(cptr, sptr, &setflags, prop);
1215
1216 return 0;
1217}
1218
1219/** Build a mode string to describe modes for \a cptr.
1220 * @param[in] cptr Some user.
1221 * @return Pointer to a static buffer.
1222 */
1223char *umode_str(struct Client *cptr)
1224{
1225 /* Maximum string size: "owidgrx\0" */
1226 char *m = umodeBuf;
1227 int i;
1228 struct Flags c_flags = cli_flags(cptr);
1229
1230 if (!HasPriv(cptr, PRIV_PROPAGATE))
1231 FlagClr(&c_flags, FLAG_OPER);
1232
1233 for (i = 0; i < USERMODELIST_SIZE; ++i)
1234 {
1235 if (FlagHas(&c_flags, userModeList[i].flag) &&
1236 userModeList[i].flag >= FLAG_GLOBAL_UMODES)
1237 *m++ = userModeList[i].c;
1238 }
1239
1240 if (IsAccount(cptr))
1241 {
1242 char* t = cli_user(cptr)->account;
1243
1244 *m++ = ' ';
1245 while ((*m++ = *t++))
1246 ; /* Empty loop */
1247
1248 if (cli_user(cptr)->acc_create) {
1249 char nbuf[20];
1250 Debug((DEBUG_DEBUG, "Sending timestamped account in user mode for "
1251 "account \"%s\"; timestamp %Tu", cli_user(cptr)->account,
1252 cli_user(cptr)->acc_create));
1253 ircd_snprintf(0, t = nbuf, sizeof(nbuf), ":%Tu",
1254 cli_user(cptr)->acc_create);
1255 m--; /* back up over previous nul-termination */
1256 while ((*m++ = *t++))
1257 ; /* Empty loop */
1258 }
1259 }
1260
1261 *m = '\0';
1262
1263 return umodeBuf; /* Note: static buffer, gets
1264 overwritten by send_umode() */
1265}
1266
1267/** Send a mode change string for \a sptr to \a cptr.
1268 * @param[in] cptr Destination of mode change message.
1269 * @param[in] sptr User whose mode has changed.
1270 * @param[in] old Pre-change set of modes for \a sptr.
1271 * @param[in] sendset One of ALL_UMODES, SEND_UMODES_BUT_OPER,
1272 * SEND_UMODES, to select which changed user modes to send.
1273 */
1274void send_umode(struct Client *cptr, struct Client *sptr, struct Flags *old,
1275 int sendset)
1276{
1277 int i;
1278 int flag;
1279 char *m;
1280 int what = MODE_NULL;
1281
1282 /*
1283 * Build a string in umodeBuf to represent the change in the user's
1284 * mode between the new (cli_flags(sptr)) and 'old', but skipping
1285 * the modes indicated by sendset.
1286 */
1287 m = umodeBuf;
1288 *m = '\0';
1289 for (i = 0; i < USERMODELIST_SIZE; ++i)
1290 {
1291 flag = userModeList[i].flag;
1292 if (FlagHas(old, flag)
1293 == HasFlag(sptr, flag))
1294 continue;
1295 switch (sendset)
1296 {
1297 case ALL_UMODES:
1298 break;
1299 case SEND_UMODES_BUT_OPER:
1300 if (flag == FLAG_OPER)
1301 continue;
1302 /* and fall through */
1303 case SEND_UMODES:
1304 if (flag < FLAG_GLOBAL_UMODES)
1305 continue;
1306 break;
1307 }
1308 if (FlagHas(old, flag))
1309 {
1310 if (what == MODE_DEL)
1311 *m++ = userModeList[i].c;
1312 else
1313 {
1314 what = MODE_DEL;
1315 *m++ = '-';
1316 *m++ = userModeList[i].c;
1317 }
1318 }
1319 else /* !FlagHas(old, flag) */
1320 {
1321 if (what == MODE_ADD)
1322 *m++ = userModeList[i].c;
1323 else
1324 {
1325 what = MODE_ADD;
1326 *m++ = '+';
1327 *m++ = userModeList[i].c;
1328 }
1329 }
1330 }
1331 *m = '\0';
1332 if (*umodeBuf && cptr)
1333 sendcmdto_one(sptr, CMD_MODE, cptr, "%s :%s", cli_name(sptr), umodeBuf);
1334}
1335
1336/**
1337 * Check to see if this resembles a sno_mask. It is if 1) there is
1338 * at least one digit and 2) The first digit occurs before the first
1339 * alphabetic character.
1340 * @param[in] word Word to check for sno_mask-ness.
1341 * @return Non-zero if \a word looks like a server notice mask; zero if not.
1342 */
1343int is_snomask(char *word)
1344{
1345 if (word)
1346 {
1347 for (; *word; word++)
1348 if (IsDigit(*word))
1349 return 1;
1350 else if (IsAlpha(*word))
1351 return 0;
1352 }
1353 return 0;
1354}
1355
1356/** Update snomask \a oldmask according to \a arg and \a what.
1357 * @param[in] oldmask Original user mask.
1358 * @param[in] arg Update string (either a number or '+'/'-' followed by a number).
1359 * @param[in] what MODE_ADD if adding the mask.
1360 * @return New value of service notice mask.
1361 */
1362unsigned int umode_make_snomask(unsigned int oldmask, char *arg, int what)
1363{
1364 unsigned int sno_what;
1365 unsigned int newmask;
1366 if (*arg == '+')
1367 {
1368 arg++;
1369 if (what == MODE_ADD)
1370 sno_what = SNO_ADD;
1371 else
1372 sno_what = SNO_DEL;
1373 }
1374 else if (*arg == '-')
1375 {
1376 arg++;
1377 if (what == MODE_ADD)
1378 sno_what = SNO_DEL;
1379 else
1380 sno_what = SNO_ADD;
1381 }
1382 else
1383 sno_what = (what == MODE_ADD) ? SNO_SET : SNO_DEL;
1384 /* pity we don't have strtoul everywhere */
1385 newmask = (unsigned int)atoi(arg);
1386 if (sno_what == SNO_DEL)
1387 newmask = oldmask & ~newmask;
1388 else if (sno_what == SNO_ADD)
1389 newmask |= oldmask;
1390 return newmask;
1391}
1392
1393/** Remove \a cptr from the singly linked list \a list.
1394 * @param[in] cptr Client to remove from list.
1395 * @param[in,out] list Pointer to head of list containing \a cptr.
1396 */
1397static void delfrom_list(struct Client *cptr, struct SLink **list)
1398{
1399 struct SLink* tmp;
1400 struct SLink* prv = NULL;
1401
1402 for (tmp = *list; tmp; tmp = tmp->next) {
1403 if (tmp->value.cptr == cptr) {
1404 if (prv)
1405 prv->next = tmp->next;
1406 else
1407 *list = tmp->next;
1408 free_link(tmp);
1409 break;
1410 }
1411 prv = tmp;
1412 }
1413}
1414
1415/** Set \a cptr's server notice mask, according to \a what.
1416 * @param[in,out] cptr Client whose snomask is updating.
1417 * @param[in] newmask Base value for new snomask.
1418 * @param[in] what One of SNO_ADD, SNO_DEL, SNO_SET, to choose operation.
1419 */
1420void set_snomask(struct Client *cptr, unsigned int newmask, int what)
1421{
1422 unsigned int oldmask, diffmask; /* unsigned please */
1423 int i;
1424 struct SLink *tmp;
1425
1426 oldmask = cli_snomask(cptr);
1427
1428 if (what == SNO_ADD)
1429 newmask |= oldmask;
1430 else if (what == SNO_DEL)
1431 newmask = oldmask & ~newmask;
1432 else if (what != SNO_SET) /* absolute set, no math needed */
1433 sendto_opmask_butone(0, SNO_OLDSNO, "setsnomask called with %d ?!", what);
1434
1435 newmask &= (IsAnOper(cptr) ? SNO_ALL : SNO_USER);
1436
1437 diffmask = oldmask ^ newmask;
1438
1439 for (i = 0; diffmask >> i; i++) {
1440 if (((diffmask >> i) & 1))
1441 {
1442 if (((newmask >> i) & 1))
1443 {
1444 tmp = make_link();
1445 tmp->next = opsarray[i];
1446 tmp->value.cptr = cptr;
1447 opsarray[i] = tmp;
1448 }
1449 else
1450 /* not real portable :( */
1451 delfrom_list(cptr, &opsarray[i]);
1452 }
1453 }
1454 cli_snomask(cptr) = newmask;
1455}
1456
1457/** Check whether \a sptr is allowed to send a message to \a acptr.
1458 * If \a sptr is a remote user, it means some server has an outdated
1459 * SILENCE list for \a acptr, so send the missing SILENCE mask(s) back
1460 * in the direction of \a sptr. Skip the check if \a sptr is a server.
1461 * @param[in] sptr Client trying to send a message.
1462 * @param[in] acptr Destination of message.
1463 * @return Non-zero if \a sptr is SILENCEd by \a acptr, zero if not.
1464 */
1465int is_silenced(struct Client *sptr, struct Client *acptr)
1466{
1467 struct Ban *found;
1468 struct User *user;
1469 size_t buf_used, slen;
1470 char buf[BUFSIZE];
1471
1472 if (IsServer(sptr) || !(user = cli_user(acptr))
1473 || !(found = find_ban(sptr, user->silence)))
1474 return 0;
1475 assert(!(found->flags & BAN_EXCEPTION));
1476 if (!MyConnect(sptr)) {
1477 /* Buffer positive silence to send back. */
1478 buf_used = strlen(found->banstr);
1479 memcpy(buf, found->banstr, buf_used);
1480 /* Add exceptions to buffer. */
1481 for (found = user->silence; found; found = found->next) {
1482 if (!(found->flags & BAN_EXCEPTION))
1483 continue;
1484 slen = strlen(found->banstr);
1485 if (buf_used + slen + 4 > 400) {
1486 buf[buf_used] = '\0';
1487 sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1488 buf_used = 0;
1489 }
1490 if (buf_used)
1491 buf[buf_used++] = ',';
1492 buf[buf_used++] = '+';
1493 buf[buf_used++] = '~';
1494 memcpy(buf + buf_used, found->banstr, slen);
1495 buf_used += slen;
1496 }
1497 /* Flush silence buffer. */
1498 if (buf_used) {
1499 buf[buf_used] = '\0';
1500 sendcmdto_one(acptr, CMD_SILENCE, cli_from(sptr), "%C %s", sptr, buf);
1501 buf_used = 0;
1502 }
1503 }
1504 return 1;
1505}
1506
1507/** Send RPL_ISUPPORT lines to \a cptr.
1508 * @param[in] cptr Client to send ISUPPORT to.
1509 * @return Zero.
1510 */
1511int
1512send_supported(struct Client *cptr)
1513{
1514 char featurebuf[512];
1515
1516 ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES1, FEATURESVALUES1);
1517 send_reply(cptr, RPL_ISUPPORT, featurebuf);
1518 ircd_snprintf(0, featurebuf, sizeof(featurebuf), FEATURES2, FEATURESVALUES2);
1519 send_reply(cptr, RPL_ISUPPORT, featurebuf);
1520
1521 return 0; /* convenience return, if it's ever needed */
1522}