d51c00ff8bcc30a99bb246b029e640edd2e56ceb
[ircu2.10.12-pk.git] / ircd / m_oper.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_oper.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 "client.h"
91 #include "hash.h"
92 #include "ircd.h"
93 #include "ircd_log.h"
94 #include "ircd_reply.h"
95 #include "ircd_string.h"
96 #include "ircd_xopen.h"
97 #include "msg.h"
98 #include "numeric.h"
99 #include "numnicks.h"
100 #include "querycmds.h"
101 #include "s_conf.h"
102 #include "s_debug.h"
103 #include "s_user.h"
104 #include "s_misc.h"
105 #include "send.h"
106 #include "support.h"
107
108 #include <assert.h>
109 #include <stdlib.h>
110 #include <string.h>
111
112 #ifdef CRYPT_OPER_PASSWORD
113 int oper_password_match(const char* to_match, const char* passwd)
114 {
115   /*
116    * use first two chars of the password they send in as salt
117    *
118    * passwd may be NULL. Head it off at the pass...
119    */
120   if (to_match && passwd) {
121     char salt[3];
122     const char* encr;
123     salt[0] = passwd[0];
124     salt[1] = passwd[1];
125     salt[2] = '\0';
126     encr = ircd_crypt(to_match, salt);
127     return (0 == strcmp(encr, passwd));
128   }
129   return 0;
130 }
131 #else
132 int oper_password_match(const char* to_match, const char* passwd)
133 {
134   return (to_match && passwd) ? (0 == strcmp(to_match, passwd)) : 0;
135 }
136 #endif
137
138 /*
139  * m_oper - generic message handler
140  */
141 int m_oper(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
142 {
143   struct ConfItem* aconf;
144   char*            name;
145   char*            password;
146
147   assert(0 != cptr);
148   assert(cptr == sptr);
149
150   name     = parc > 1 ? parv[1] : 0;
151   password = parc > 2 ? parv[2] : 0;
152
153   if (EmptyString(name) || EmptyString(password))
154     return need_more_params(sptr, "OPER");
155
156   aconf = find_conf_exact(name, sptr->username, sptr->sockhost, CONF_OPS);
157   if (!aconf) 
158     aconf = find_conf_exact(name, sptr->username,
159                             ircd_ntoa((const char*) &cptr->ip), CONF_OPS);
160
161   if (!aconf || IsIllegal(aconf)) {
162     send_reply(sptr, ERR_NOOPERHOST);
163     sendto_opmask_butone(0, SNO_OLDREALOP, "Failed OPER attempt by %s (%s@%s)",
164                          parv[0], sptr->user->username, sptr->sockhost);
165     return 0;
166   }
167   assert(0 != (aconf->status & CONF_OPS));
168
169   if (oper_password_match(password, aconf->passwd)) {
170     unsigned int old_mode = (sptr->flags & ALL_UMODES);
171
172     if (ACR_OK != attach_conf(sptr, aconf)) {
173       send_reply(sptr, ERR_NOOPERHOST);
174       sendto_opmask_butone(0, SNO_OLDREALOP, "Failed OPER attempt by %s "
175                            "(%s@%s)", parv[0], sptr->user->username,
176                            sptr->sockhost);
177       return 0;
178     }
179     if (CONF_LOCOP == aconf->status) {
180       ClearOper(sptr);
181       SetLocOp(sptr);
182     }
183     else {
184       /*
185        * prevent someone from being both oper and local oper
186        */
187       ClearLocOp(sptr);
188       SetOper(sptr);
189       ++UserStats.opers;
190     }
191     cptr->handler = OPER_HANDLER;
192
193     
194     sptr->flags |= (FLAGS_WALLOP | FLAGS_SERVNOTICE | FLAGS_DEBUG);
195
196     set_snomask(sptr, SNO_OPERDEFAULT, SNO_ADD);
197     send_umode_out(cptr, sptr, old_mode);
198     send_reply(sptr, RPL_YOUREOPER);
199
200     sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is now operator (%c)",
201                          parv[0], sptr->user->username, sptr->sockhost,
202                          IsOper(sptr) ? 'O' : 'o');
203
204     ircd_log(L_INFO, "OPER (%s) by (%s!%s@%s)",
205              name, parv[0], sptr->user->username, sptr->sockhost);
206 #ifdef FNAME_OPERLOG
207     if (IsUser(sptr))
208       write_log(FNAME_OPERLOG,
209                 "%s OPER (%s) by (%#C)\n", myctime(CurrentTime), name, sptr);
210 #endif
211   }
212   else {
213     send_reply(sptr, ERR_PASSWDMISMATCH);
214     sendto_opmask_butone(0, SNO_OLDREALOP, "Failed OPER attempt by %s (%s@%s)",
215                          parv[0], sptr->user->username, sptr->sockhost);
216   }
217   return 0;
218 }
219
220 /*
221  * ms_oper - server message handler
222  */
223 int ms_oper(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
224 {
225   assert(0 != cptr);
226   assert(IsServer(cptr));
227   /*
228    * if message arrived from server, trust it, and set to oper
229    */
230   if (!IsServer(sptr) && !IsOper(sptr)) {
231     ++UserStats.opers;
232     sptr->flags |= FLAGS_OPER;
233     sendcmdto_serv_butone(sptr, CMD_MODE, cptr, "%s :+o", parv[0]);
234   }
235   return 0;
236 }
237
238 /*
239  * mo_oper - oper message handler
240  */
241 int mo_oper(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
242 {
243   assert(0 != cptr);
244   assert(cptr == sptr);
245   send_reply(sptr, RPL_YOUREOPER);
246   return 0;
247 }
248  
249 #if 0
250 /*
251  *  m_oper
252  *    parv[0] = sender prefix
253  *    parv[1] = oper name
254  *    parv[2] = oper password
255  */
256 int m_oper(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
257 {
258   struct ConfItem* aconf;
259   char*            name;
260   char*            password;
261   const char*      encr;
262 #ifdef CRYPT_OPER_PASSWORD
263   char             salt[3];
264 #endif /* CRYPT_OPER_PASSWORD */
265
266   name = parc > 1 ? parv[1] : 0;
267   password = parc > 2 ? parv[2] : 0;
268
269   if (!IsServer(cptr) && (EmptyString(name) || EmptyString(password)))
270     return need_more_params(sptr, "OPER");
271
272   /* if message arrived from server, trust it, and set to oper */
273
274   if (IsServer(cptr) && !IsOper(sptr)) {
275     ++UserStats.opers;
276     sptr->flags |= FLAGS_OPER;
277     sendto_serv_butone(cptr, "%s%s " TOK_MODE " %s :+o", NumNick(sptr), parv[0]); /* XXX DEAD */
278     return 0;
279   }
280   else if (IsAnOper(sptr)) {
281     if (MyConnect(sptr))
282       sendto_one(sptr, rpl_str(RPL_YOUREOPER), me.name, parv[0]); /* XXX DEAD */
283     return 0;
284   }
285   assert(cptr == sptr);
286   aconf = find_conf_exact(name, sptr->username, sptr->sockhost, CONF_OPS);
287   if (!aconf) 
288     aconf = find_conf_exact(name, sptr->username,
289                             ircd_ntoa((const char*) &cptr->ip), CONF_OPS);
290
291   if (!aconf || IsIllegal(aconf)) {
292     sendto_one(sptr, err_str(ERR_NOOPERHOST), me.name, parv[0]); /* XXX DEAD */
293     sendto_realops("Failed OPER attempt by %s (%s@%s)", /* XXX DEAD */
294                    parv[0], sptr->user->username, sptr->sockhost);
295     return 0;
296   }
297   assert(0 != (aconf->status & CONF_OPS));
298
299 #ifdef CRYPT_OPER_PASSWORD
300   /* use first two chars of the password they send in as salt */
301
302   /* passwd may be NULL. Head it off at the pass... */
303   salt[0] = '\0';
304   if (password && aconf->passwd)
305   {
306     salt[0] = aconf->passwd[0];
307     salt[1] = aconf->passwd[1];
308     salt[2] = '\0';
309     encr = ircd_crypt(password, salt);
310   }
311   else
312     encr = "";
313 #else
314   encr = password;
315 #endif /* CRYPT_OPER_PASSWORD */
316
317   if (0 == strcmp(encr, aconf->passwd)) {
318     int old = (sptr->flags & ALL_UMODES);
319
320     if (ACR_OK != attach_conf(sptr, aconf)) {
321       sendto_one(sptr, err_str(ERR_NOOPERHOST), me.name, parv[0]); /* XXX DEAD */
322       sendto_realops("Failed OPER attempt by %s (%s@%s)", /* XXX DEAD */
323                      parv[0], sptr->user->username, sptr->sockhost);
324       return 0;
325     }
326 #ifdef        OPER_REMOTE
327     if (aconf->status == CONF_LOCOP) {
328 #else
329     if (!IsLocal(sptr)) || aconf->status == CONF_LOCOP) {
330 #endif
331       ClearOper(sptr);
332       SetLocOp(sptr);
333     }
334     else {
335       /* prevent someone from being both oper and local oper */
336       ClearLocOp(sptr);
337       SetOper(sptr);
338       ++UserStats.opers;
339     }
340     cptr->handler = OPER_HANDLER;
341     sendto_ops("%s (%s@%s) is now operator (%c)", parv[0], /* XXX DEAD */
342         sptr->user->username, sptr->sockhost, IsOper(sptr) ? 'O' : 'o');
343
344     sptr->flags |= (FLAGS_WALLOP | FLAGS_SERVNOTICE | FLAGS_DEBUG);
345     set_snomask(sptr, SNO_OPERDEFAULT, SNO_ADD);
346     send_umode_out(cptr, sptr, old);
347     sendto_one(sptr, rpl_str(RPL_YOUREOPER), me.name, parv[0]); /* XXX DEAD */
348
349     ircd_log(L_INFO, "OPER (%s) by (%s!%s@%s)",
350              name, parv[0], sptr->user->username, sptr->sockhost);
351 #ifdef FNAME_OPERLOG
352     if (IsUser(sptr))
353       write_log(FNAME_OPERLOG,
354           "%s OPER (%s) by (%s!%s@%s)\n", myctime(CurrentTime),
355           name, parv[0], sptr->user->username, sptr->sockhost);
356 #endif
357   }
358   else {
359     sendto_one(sptr, err_str(ERR_PASSWDMISMATCH), me.name, parv[0]); /* XXX DEAD */
360     sendto_realops("Failed OPER attempt by %s (%s@%s)", /* XXX DEAD */
361                    parv[0], sptr->user->username, sptr->sockhost);
362   }
363   return 0;
364 }
365 #endif /* 0 */