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