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