7391139bb2ad128f437616fe9f96955ade4f776f
[ircu2.10.12-pk.git] / ircd / m_join.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_join.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  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #include "config.h"
83
84 #include "channel.h"
85 #include "client.h"
86 #include "gline.h"
87 #include "hash.h"
88 #include "ircd.h"
89 #include "ircd_chattr.h"
90 #include "ircd_features.h"
91 #include "ircd_log.h"
92 #include "ircd_reply.h"
93 #include "ircd_string.h"
94 #include "msg.h"
95 #include "numeric.h"
96 #include "numnicks.h"
97 #include "s_debug.h"
98 #include "s_user.h"
99 #include "send.h"
100
101 /* #include <assert.h> -- Now using assert in ircd_log.h */
102 #include <stdlib.h>
103 #include <string.h>
104
105 /*
106  * Helper function to find last 0 in a comma-separated list of
107  * channel names.
108  */
109 static char *
110 last0(char *chanlist)
111 {
112   char *p;
113
114   for (p = chanlist; p[0]; p++) /* find last "JOIN 0" */
115     if (p[0] == '0' && (p[1] == ',' || p[1] == '\0' || !IsChannelChar(p[1]))) {
116       chanlist = p; /* we'll start parsing here */
117
118       if (!p[1]) /* hit the end */
119         break;
120
121       p++;
122     } else {
123       while (p[0] != ',' && p[0] != '\0') /* skip past channel name */
124         p++;
125
126       if (!p[0]) /* hit the end */
127         break;
128     }
129
130   return chanlist;
131 }
132
133 /*
134  * Helper function to perform a JOIN 0 if needed; returns 0 if channel
135  * name is not 0, else removes user from all channels and returns 1.
136  */
137 static int
138 join0(struct JoinBuf *join, struct Client *cptr, struct Client *sptr,
139       char *chan)
140 {
141   struct Membership *member;
142   struct JoinBuf part;
143
144   /* is it a JOIN 0? */
145   if (chan[0] != '0' || chan[1] != '\0')
146     return 0;
147   
148   joinbuf_join(join, 0, 0); /* join special channel 0 */
149
150   /* leave all channels */
151   joinbuf_init(&part, sptr, cptr, JOINBUF_TYPE_PARTALL,
152                "Left all channels", 0);
153
154   while ((member = cli_user(sptr)->channel))
155     joinbuf_join(&part, member->channel,
156                  IsZombie(member) ? CHFL_ZOMBIE :
157                  IsDelayedJoin(member) ? CHFL_DELAYED :
158                  0);
159
160   joinbuf_flush(&part);
161
162   return 1;
163 }
164
165 /*
166  * m_join - generic message handler
167  */
168 int m_join(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
169 {
170   struct Channel *chptr;
171   struct JoinBuf join;
172   struct JoinBuf create;
173   struct Gline *gline;
174   unsigned int flags = 0;
175   int i, j, k = 0;
176   char *p = 0;
177   char *chanlist;
178   char *name;
179   char *keys;
180
181   if (parc < 2 || *parv[1] == '\0')
182     return need_more_params(sptr, "JOIN");
183
184   joinbuf_init(&join, sptr, cptr, JOINBUF_TYPE_JOIN, 0, 0);
185   joinbuf_init(&create, sptr, cptr, JOINBUF_TYPE_CREATE, 0, TStime());
186
187   chanlist = last0(parv[1]); /* find last "JOIN 0" */
188
189   keys = parv[2]; /* remember where keys are */
190
191   for (name = ircd_strtok(&p, chanlist, ","); name;
192        name = ircd_strtok(&p, 0, ",")) {
193     clean_channelname(name);
194
195     if (join0(&join, cptr, sptr, name)) /* did client do a JOIN 0? */
196       continue;
197
198     if (!IsChannelName(name))
199     {
200       /* bad channel name */
201       send_reply(sptr, ERR_NOSUCHCHANNEL, name);
202       continue;
203     }
204
205     /* This checks if the channel contains control codes and rejects em
206      * until they are gone, then we will do it otherwise - *SOB Mode*
207      */
208     for (k = 0, j = 0; name[j]; j++)
209       if (IsCntrl(name[j]))
210         k++;
211     if (k > 0)
212     {
213       send_reply(sptr, ERR_NOSUCHCHANNEL, name);
214       continue;
215     }
216
217     /* BADCHANed channel */
218     if ((gline = gline_find(name, GLINE_BADCHAN | GLINE_EXACT)) &&
219         GlineIsActive(gline) && !IsAnOper(sptr)) {
220       send_reply(sptr, ERR_BANNEDFROMCHAN, name);
221       continue;
222     }
223
224     if ((chptr = FindChannel(name)))
225     {
226       if (find_member_link(chptr, sptr))
227         continue; /* already on channel */
228
229       flags = CHFL_DEOPPED;
230     }
231     else
232       flags = CHFL_CHANOP;
233
234     /* disallow creating local channels */
235     if ((name[0] == '&') && !chptr && !feature_bool(FEAT_LOCAL_CHANNELS)) {
236         send_reply(sptr, ERR_NOSUCHCHANNEL, name);
237         continue;
238     }
239
240     if (cli_user(sptr)->joined >= feature_int(FEAT_MAXCHANNELSPERUSER) &&
241         !HasPriv(sptr, PRIV_CHAN_LIMIT)) {
242       send_reply(sptr, ERR_TOOMANYCHANNELS, chptr ? chptr->chname : name);
243       break; /* no point processing the other channels */
244     }
245
246     if (chptr) {
247       int is_level0_op = 0;
248       if (!BadPtr(keys) && *chptr->mode.apass) {
249         /* Don't use compall for the apass, only a single key is allowed. */
250         if (strcmp(chptr->mode.apass, keys) == 0) {
251           is_level0_op = 1;
252           flags &= ~CHFL_DEOPPED;
253           flags |= CHFL_CHANOP | CHFL_CHANNEL_MANAGER;
254         }
255         else if (*chptr->mode.upass && strcmp(chptr->mode.upass, keys) == 0) {
256           is_level0_op = 1;
257           flags &= ~CHFL_DEOPPED;
258           flags |= CHFL_CHANOP;
259         }
260       }
261       if (check_target_limit(sptr, chptr, chptr->chname, 0))
262         continue; /* exceeded target limit */
263       else if (!is_level0_op && (i = can_join(sptr, chptr, keys))) {
264         if (i > MAGIC_OPER_OVERRIDE)
265         { /* oper overrode mode */
266           switch (i - MAGIC_OPER_OVERRIDE)
267           {
268           case ERR_CHANNELISFULL: /* figure out which mode */
269             i = 'l';
270             break;
271
272           case ERR_INVITEONLYCHAN:
273             i = 'i';
274             break;
275
276           case ERR_BANNEDFROMCHAN:
277             i = 'b';
278             break;
279
280           case ERR_BADCHANNELKEY:
281             i = 'k';
282             break;
283
284           case ERR_NEEDREGGEDNICK:
285             i = 'r';
286             break;
287
288           default:
289             i = '?';
290             break;
291           }
292
293           /* send accountability notice */
294           sendto_opmask_butone(0, SNO_HACK4, "OPER JOIN: %C JOIN %H "
295                                "(overriding +%c)", sptr, chptr, i);
296         }
297         else
298         {
299           send_reply(sptr, i, chptr->chname);
300           continue;
301         }
302       } /* else if ((i = can_join(sptr, chptr, keys))) */
303
304       joinbuf_join(&join, chptr, flags);
305     } else if (!(chptr = get_channel(sptr, name, CGT_CREATE)))
306       continue; /* couldn't get channel */
307     else if (check_target_limit(sptr, chptr, chptr->chname, 1))
308     {
309       /* Note: check_target_limit will only ever return 0 here */
310       chptr->members = 0;
311       destruct_channel(chptr); /* created it... */
312       continue;
313     }
314     else
315       joinbuf_join(&create, chptr, flags | CHFL_CHANNEL_MANAGER);
316
317     del_invite(sptr, chptr);
318
319     if (chptr->topic[0]) {
320       send_reply(sptr, RPL_TOPIC, chptr->chname, chptr->topic);
321       send_reply(sptr, RPL_TOPICWHOTIME, chptr->chname, chptr->topic_nick,
322                  chptr->topic_time);
323     }
324
325     do_names(sptr, chptr, NAMES_ALL|NAMES_EON); /* send /names list */
326   }
327
328   joinbuf_flush(&join); /* must be first, if there's a JOIN 0 */
329   joinbuf_flush(&create);
330
331   return 0;
332 }
333
334 /*
335  * ms_join - server message handler
336  */
337 int ms_join(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
338 {
339   struct Membership *member;
340   struct Channel *chptr;
341   struct JoinBuf join;
342   unsigned int flags;
343   time_t creation = 0;
344   char *p = 0;
345   char *chanlist;
346   char *name;
347
348   if (IsServer(sptr))
349   {
350     return protocol_violation(cptr,
351                               "%s tried to JOIN %s, duh!",
352                               cli_name(sptr),
353                               (parc < 2 || *parv[1] == '\0') ? "a channel" :
354                                                                parv[1]
355                               );
356   }
357
358   if (parc < 2 || *parv[1] == '\0')
359     return need_more_params(sptr, "JOIN");
360
361   if (parc > 2 && parv[2])
362     creation = atoi(parv[2]);
363
364   joinbuf_init(&join, sptr, cptr, JOINBUF_TYPE_JOIN, 0, 0);
365
366   chanlist = last0(parv[1]); /* find last "JOIN 0" */
367
368   for (name = ircd_strtok(&p, chanlist, ","); name;
369        name = ircd_strtok(&p, 0, ",")) {
370     clean_channelname(name);
371
372     if (join0(&join, cptr, sptr, name)) /* did client do a JOIN 0? */
373       continue;
374
375     if (name[0] == '0' && name[1] == ':')
376     {
377       flags = CHFL_CHANOP | CHFL_CHANNEL_MANAGER;
378       name += 2;
379     }
380     else if (name[0] == '1' && name[1] == ':')
381     {
382       flags = CHFL_CHANOP;
383       name += 2;
384     }
385     else
386       flags = CHFL_DEOPPED;
387
388     if (IsLocalChannel(name) || !IsChannelName(name))
389     {
390       protocol_violation(cptr, "%s tried to join %s", cli_name(sptr), name);
391       continue;
392     }
393
394     if (!(chptr = FindChannel(name)))
395     {
396       /* No channel exists, so create one */
397       if (!(chptr = get_channel(sptr, name, CGT_CREATE)))
398       {
399         protocol_violation(sptr,"couldn't get channel %s for %s",
400                            name,cli_name(sptr));
401         continue;
402       }
403       flags |= HasFlag(sptr, FLAG_TS8) ? CHFL_SERVOPOK : 0;
404
405       /* when the network is 2.10.11+ then remove MAGIC_REMOTE_JOIN_TS */
406       chptr->creationtime = creation ? creation : MAGIC_REMOTE_JOIN_TS;
407     }
408     else { /* We have a valid channel? */
409       if ((member = find_member_link(chptr, sptr)))
410       {
411         /* It is impossible to get here --Run */
412         if (!IsZombie(member)) /* already on channel */
413           continue;
414
415         flags = member->status & (CHFL_DEOPPED | CHFL_SERVOPOK);
416         remove_user_from_channel(sptr, chptr);
417         chptr = FindChannel(name);
418       }
419       else
420         flags |= HasFlag(sptr, FLAG_TS8) ? CHFL_SERVOPOK : 0;
421       /* Always copy the timestamp when it is older, that is the only way to
422          ensure network-wide synchronization of creation times. */
423       if (creation && creation < chptr->creationtime)
424         chptr->creationtime = creation;
425     }
426
427     joinbuf_join(&join, chptr, flags);
428   }
429
430   joinbuf_flush(&join); /* flush joins... */
431
432   return 0;
433 }