f2b2f00554367953290b3de7fd54edf561cc5c70
[ircu2.10.12-pk.git] / ircd / m_mode.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_mode.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 "handlers.h"
85 #include "channel.h"
86 #include "client.h"
87 #include "hash.h"
88 #include "ircd.h"
89 #include "ircd_reply.h"
90 #include "ircd_string.h"
91 #include "msg.h"
92 #include "numeric.h"
93 #include "numnicks.h"
94 #include "s_conf.h"
95 #include "s_debug.h"
96 #include "s_user.h"
97 #include "send.h"
98
99 #include <assert.h>
100 #include <stdlib.h>
101 #include <string.h>
102
103 int
104 m_mode(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
105 {
106   struct Channel *chptr = 0;
107   struct ModeBuf mbuf;
108   struct Membership *member;
109
110   if (parc < 2)
111     return need_more_params(sptr, "MODE");
112
113   clean_channelname(parv[1]);
114
115   if (('#' != *parv[1] && '&' != *parv[1] && '+' != *parv[1]) || 
116       !(chptr = FindChannel(parv[1])))
117     return set_user_mode(cptr, sptr, parc, parv);
118
119   cli_flags(sptr) &= ~FLAGS_TS8;
120
121   if (parc < 3) {
122     char modebuf[MODEBUFLEN];
123     char parabuf[MODEBUFLEN];
124
125     *modebuf = *parabuf = '\0';
126     modebuf[1] = '\0';
127     channel_modes(sptr, modebuf, parabuf, chptr);
128     send_reply(sptr, RPL_CHANNELMODEIS, chptr->chname, modebuf, parabuf);
129     send_reply(sptr, RPL_CREATIONTIME, chptr->chname, chptr->creationtime);
130     return 0;
131   }
132
133   if (!(member = find_member_link(chptr, sptr)) || !IsChanOp(member)) {
134     if (IsLocalChannel(chptr->chname) && HasPriv(sptr, PRIV_MODE_LCHAN)) {
135       modebuf_init(&mbuf, sptr, cptr, chptr,
136                    (MODEBUF_DEST_CHANNEL | /* Send mode to channel */
137                     MODEBUF_DEST_HACK4));  /* Send HACK(4) notice */
138       mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2,
139                  (MODE_PARSE_SET |    /* Set the mode */
140                   MODE_PARSE_FORCE)); /* Force it to take */
141       return modebuf_flush(&mbuf);
142     } else
143       mode_parse(0, cptr, sptr, chptr, parc - 2, parv + 2,
144                  (member ? MODE_PARSE_NOTOPER : MODE_PARSE_NOTMEMBER));
145     return 0;
146   }
147
148   modebuf_init(&mbuf, sptr, cptr, chptr,
149                (MODEBUF_DEST_CHANNEL | /* Send mode to channel */
150                 MODEBUF_DEST_SERVER)); /* Send mode to servers */
151   mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2, MODE_PARSE_SET);
152   return modebuf_flush(&mbuf);
153 }
154
155 int
156 ms_mode(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
157 {
158   struct Channel *chptr = 0;
159   struct ModeBuf mbuf;
160   struct Membership *member;
161
162   if (parc < 3)
163     return need_more_params(sptr, "MODE");
164
165   if (IsLocalChannel(parv[1]))
166     return 0;
167
168   if (('#' != *parv[1] && '+' != *parv[1])|| !(chptr = FindChannel(parv[1])))
169     return set_user_mode(cptr, sptr, parc, parv);
170
171   cli_flags(sptr) &= ~FLAGS_TS8;
172
173   if (IsServer(sptr)) {
174     if (find_conf_byhost(cli_confs(cptr), cli_name(sptr), CONF_UWORLD))
175       modebuf_init(&mbuf, sptr, cptr, chptr,
176                    (MODEBUF_DEST_CHANNEL | /* Send mode to clients */
177                     MODEBUF_DEST_SERVER  | /* Send mode to servers */
178                     MODEBUF_DEST_HACK4));  /* Send a HACK(4) message */
179     else
180       modebuf_init(&mbuf, sptr, cptr, chptr,
181                    (MODEBUF_DEST_CHANNEL | /* Send mode to clients */
182                     MODEBUF_DEST_SERVER  | /* Send mode to servers */
183                     MODEBUF_DEST_HACK3));  /* Send a HACK(3) message */
184
185     mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2,
186                (MODE_PARSE_SET    | /* Set the mode */
187                 MODE_PARSE_STRICT | /* Interpret it strictly */
188                 MODE_PARSE_FORCE)); /* And force it to be accepted */
189   } else {
190     if (!(member = find_member_link(chptr, sptr)) || !IsChanOp(member)) {
191       modebuf_init(&mbuf, sptr, cptr, chptr,
192                    (MODEBUF_DEST_SERVER |  /* Send mode to server */
193                     MODEBUF_DEST_HACK2  |  /* Send a HACK(2) message */
194                     MODEBUF_DEST_DEOP   |  /* Deop the source */
195                     MODEBUF_DEST_BOUNCE)); /* And bounce the MODE */
196       mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2,
197                  (MODE_PARSE_STRICT |  /* Interpret it strictly */
198                   MODE_PARSE_BOUNCE)); /* And bounce the MODE */
199     } else {
200       modebuf_init(&mbuf, sptr, cptr, chptr,
201                    (MODEBUF_DEST_CHANNEL | /* Send mode to clients */
202                     MODEBUF_DEST_SERVER)); /* Send mode to servers */
203       mode_parse(&mbuf, cptr, sptr, chptr, parc - 2, parv + 2,
204                  (MODE_PARSE_SET    | /* Set the mode */
205                   MODE_PARSE_STRICT | /* Interpret it strictly */
206                   MODE_PARSE_FORCE)); /* And force it to be accepted */
207     }
208   }
209
210   return modebuf_flush(&mbuf);
211 }