Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_part.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_part.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 #if 0
83 /*
84  * No need to include handlers.h here the signatures must match
85  * and we don't need to force a rebuild of all the handlers everytime
86  * we add a new one to the list. --Bleep
87  */
88 #include "handlers.h"
89 #endif /* 0 */
90 #include "channel.h"
91 #include "client.h"
92 #include "hash.h"
93 #include "ircd.h"
94 #include "ircd_reply.h"
95 #include "ircd_string.h"
96 #include "numeric.h"
97 #include "numnicks.h"
98 #include "send.h"
99
100 #include <assert.h>
101 #include <string.h>
102
103 /*
104  * m_part - generic message handler
105  *
106  * parv[0] = sender prefix
107  * parv[1] = channel
108  * parv[parc - 1] = comment
109  */
110 int m_part(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
111 {
112   struct Channel *chptr;
113   struct Membership *member;
114   struct JoinBuf parts;
115   char *p = 0;
116   char *name;
117
118   cli_flags(sptr) &= ~FLAGS_TS8;
119
120   /* check number of arguments */
121   if (parc < 2 || parv[1][0] == '\0')
122     return need_more_params(sptr, "PART");
123
124   /* init join/part buffer */
125   joinbuf_init(&parts, sptr, cptr, JOINBUF_TYPE_PART,
126                (parc > 2 && !EmptyString(parv[parc - 1])) ? parv[parc - 1] : 0,
127                0);
128
129   /* scan through channel list */
130   for (name = ircd_strtok(&p, parv[1], ","); name;
131        name = ircd_strtok(&p, 0, ",")) {
132
133     chptr = get_channel(sptr, name, CGT_NO_CREATE); /* look up channel */
134
135     if (!chptr) { /* complain if there isn't such a channel */
136       send_reply(sptr, ERR_NOSUCHCHANNEL, name);
137       continue;
138     }
139
140     if (!(member = find_member_link(chptr, sptr))) { /* complain if not on */
141       send_reply(sptr, ERR_NOTONCHANNEL, chptr->chname);
142       continue;
143     }
144
145     assert(!IsZombie(member)); /* Local users should never zombie */
146
147     joinbuf_join(&parts, chptr, /* part client from channel */
148                  member_can_send_to_channel(member) ? 0 : CHFL_BANNED);
149   }
150
151   return joinbuf_flush(&parts); /* flush channel parts */
152 }
153
154 /*
155  * ms_part - server message handler
156  *
157  * parv[0] = sender prefix
158  * parv[1] = channel
159  * parv[parc - 1] = comment
160  */
161 int ms_part(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
162 {
163   struct Channel *chptr;
164   struct Membership *member;
165   struct JoinBuf parts;
166   unsigned int flags;
167   char *p = 0;
168   char *name;
169
170   cli_flags(sptr) &= ~FLAGS_TS8;
171
172   /* check number of arguments */
173   if (parc < 2 || parv[1][0] == '\0')
174     return need_more_params(sptr, "PART");
175
176   /* init join/part buffer */
177   joinbuf_init(&parts, sptr, cptr, JOINBUF_TYPE_PART,
178                (parc > 2 && !EmptyString(parv[parc - 1])) ? parv[parc - 1] : 0,
179                0);
180
181   /* scan through channel list */
182   for (name = ircd_strtok(&p, parv[1], ","); name;
183        name = ircd_strtok(&p, 0, ",")) {
184
185     flags = 0;
186
187     chptr = get_channel(sptr, name, CGT_NO_CREATE); /* look up channel */
188
189     if (!chptr || IsLocalChannel(name) ||
190         !(member = find_member_link(chptr, sptr)))
191       continue; /* ignore from remote clients */
192
193     if (IsZombie(member)) /* figure out special flags... */
194       flags |= CHFL_ZOMBIE;
195     /*
196      * XXX BUG: If a client /part's with a part notice, on channels where
197      * he's banned, local clients will not see the part notice, but remote
198      * clients will.
199      */
200     if (!member_can_send_to_channel(member))
201       flags |= CHFL_BANNED;
202
203     /* part user from channel */
204     joinbuf_join(&parts, chptr, flags);
205   }
206
207   return joinbuf_flush(&parts); /* flush channel parts */
208 }