]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_oper.c
report_error() cleanup
[irc/rqf/shadowircd.git] / modules / m_oper.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_oper.c: Makes a user an IRC Operator.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
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 2 of the License, or
12 * (at your option) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_oper.c 1483 2006-05-27 18:58:12Z jilles $
25 */
26
27#include "stdinc.h"
212380e3 28#include "client.h"
29#include "common.h"
30#include "irc_string.h"
31#include "ircd.h"
32#include "numeric.h"
212380e3 33#include "s_conf.h"
34#include "s_newconf.h"
35#include "s_log.h"
36#include "s_user.h"
37#include "send.h"
38#include "msg.h"
39#include "parse.h"
40#include "modules.h"
41#include "packet.h"
42#include "cache.h"
43
44static int m_oper(struct Client *, struct Client *, int, const char **);
45
46struct Message oper_msgtab = {
47 "OPER", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, {m_oper, 3}, mg_ignore, mg_ignore, mg_ignore, {m_oper, 3}}
49};
50
51mapi_clist_av1 oper_clist[] = { &oper_msgtab, NULL };
52DECLARE_MODULE_AV1(oper, NULL, NULL, oper_clist, NULL, NULL, "$Revision: 1483 $");
53
54static int match_oper_password(const char *password, struct oper_conf *oper_p);
55extern char *crypt();
56
57/*
58 * m_oper
59 * parv[0] = sender prefix
60 * parv[1] = oper name
61 * parv[2] = oper password
62 */
63static int
64m_oper(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
65{
66 struct oper_conf *oper_p;
67 const char *name;
68 const char *password;
69
70 name = parv[1];
71 password = parv[2];
72
73 if(IsOper(source_p))
74 {
75 sendto_one(source_p, form_str(RPL_YOUREOPER), me.name, source_p->name);
76 send_oper_motd(source_p);
77 return 0;
78 }
79
80 /* end the grace period */
81 if(!IsFloodDone(source_p))
82 flood_endgrace(source_p);
83
84 oper_p = find_oper_conf(source_p->username, source_p->orighost,
85 source_p->sockhost, name);
86
87 if(oper_p == NULL)
88 {
89 sendto_one(source_p, form_str(ERR_NOOPERHOST), me.name, source_p->name);
90 ilog(L_FOPER, "FAILED OPER (%s) by (%s!%s@%s) (%s)",
91 name, source_p->name,
92 source_p->username, source_p->host, source_p->sockhost);
93
94 if(ConfigFileEntry.failed_oper_notice)
95 {
96 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
97 "Failed OPER attempt - host mismatch by %s (%s@%s)",
98 source_p->name, source_p->username, source_p->host);
99 }
100
101 return 0;
102 }
103
104 if(match_oper_password(password, oper_p))
105 {
106 oper_up(source_p, oper_p);
107
108 ilog(L_OPERED, "OPER %s by %s!%s@%s (%s)",
109 name, source_p->name, source_p->username, source_p->host,
110 source_p->sockhost);
111 return 0;
112 }
113 else
114 {
115 sendto_one(source_p, form_str(ERR_PASSWDMISMATCH),
116 me.name, source_p->name);
117
118 ilog(L_FOPER, "FAILED OPER (%s) by (%s!%s@%s) (%s)",
119 name, source_p->name, source_p->username, source_p->host,
120 source_p->sockhost);
121
122 if(ConfigFileEntry.failed_oper_notice)
123 {
124 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
125 "Failed OPER attempt by %s (%s@%s)",
126 source_p->name, source_p->username, source_p->host);
127 }
128 }
129
130 return 0;
131}
132
133/*
134 * match_oper_password
135 *
136 * inputs - pointer to given password
137 * - pointer to Conf
138 * output - YES or NO if match
139 * side effects - none
140 */
141static int
142match_oper_password(const char *password, struct oper_conf *oper_p)
143{
144 const char *encr;
145
146 /* passwd may be NULL pointer. Head it off at the pass... */
147 if(EmptyString(oper_p->passwd))
148 return NO;
149
150 if(IsOperConfEncrypted(oper_p))
151 {
152 /* use first two chars of the password they send in as salt */
153 /* If the password in the conf is MD5, and ircd is linked
154 * to scrypt on FreeBSD, or the standard crypt library on
155 * glibc Linux, then this code will work fine on generating
156 * the proper encrypted hash for comparison.
157 */
158 if(!EmptyString(password))
159 encr = crypt(password, oper_p->passwd);
160 else
161 encr = "";
162 }
163 else
164 encr = password;
165
166 if(strcmp(encr, oper_p->passwd) == 0)
167 return YES;
168 else
169 return NO;
170}