]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_oper.c
Do not send snotes/logs about juped servers trying to connect.
[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"
13ae2f4b 30#include "match.h"
212380e3 31#include "ircd.h"
32#include "numeric.h"
212380e3 33#include "s_conf.h"
34#include "s_newconf.h"
d3455e2c 35#include "logger.h"
212380e3 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);
212380e3 55
56/*
57 * m_oper
58 * parv[0] = sender prefix
59 * parv[1] = oper name
60 * parv[2] = oper password
61 */
62static int
63m_oper(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
64{
65 struct oper_conf *oper_p;
66 const char *name;
67 const char *password;
68
69 name = parv[1];
70 password = parv[2];
71
72 if(IsOper(source_p))
73 {
74 sendto_one(source_p, form_str(RPL_YOUREOPER), me.name, source_p->name);
75 send_oper_motd(source_p);
76 return 0;
77 }
78
79 /* end the grace period */
80 if(!IsFloodDone(source_p))
81 flood_endgrace(source_p);
82
83 oper_p = find_oper_conf(source_p->username, source_p->orighost,
84 source_p->sockhost, name);
85
86 if(oper_p == NULL)
87 {
88 sendto_one(source_p, form_str(ERR_NOOPERHOST), me.name, source_p->name);
89 ilog(L_FOPER, "FAILED OPER (%s) by (%s!%s@%s) (%s)",
90 name, source_p->name,
91 source_p->username, source_p->host, source_p->sockhost);
92
93 if(ConfigFileEntry.failed_oper_notice)
94 {
95 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
96 "Failed OPER attempt - host mismatch by %s (%s@%s)",
97 source_p->name, source_p->username, source_p->host);
98 }
99
100 return 0;
101 }
102
663bbb28
JT
103 if(IsOperConfNeedSSL(oper_p) && !IsSSLClient(source_p))
104 {
105 sendto_one(source_p, form_str(ERR_NOOPERHOST), me.name, source_p->name);
106 ilog(L_FOPER, "FAILED OPER (%s) by (%s!%s@%s) (%s) -- requires SSL/TLS",
107 name, source_p->name,
108 source_p->username, source_p->host, source_p->sockhost);
109
110 if(ConfigFileEntry.failed_oper_notice)
111 {
112 sendto_realops_snomask(SNO_GENERAL, L_ALL,
113 "Failed OPER attempt - missing SSL/TLS by %s (%s@%s)",
114 source_p->name, source_p->username, source_p->host);
115 }
116 return 0;
117 }
118
212380e3 119 if(match_oper_password(password, oper_p))
120 {
121 oper_up(source_p, oper_p);
122
123 ilog(L_OPERED, "OPER %s by %s!%s@%s (%s)",
124 name, source_p->name, source_p->username, source_p->host,
125 source_p->sockhost);
126 return 0;
127 }
128 else
129 {
130 sendto_one(source_p, form_str(ERR_PASSWDMISMATCH),
131 me.name, source_p->name);
132
133 ilog(L_FOPER, "FAILED OPER (%s) by (%s!%s@%s) (%s)",
134 name, source_p->name, source_p->username, source_p->host,
135 source_p->sockhost);
136
137 if(ConfigFileEntry.failed_oper_notice)
138 {
139 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
140 "Failed OPER attempt by %s (%s@%s)",
141 source_p->name, source_p->username, source_p->host);
142 }
143 }
144
145 return 0;
146}
147
148/*
149 * match_oper_password
150 *
151 * inputs - pointer to given password
152 * - pointer to Conf
153 * output - YES or NO if match
154 * side effects - none
155 */
156static int
157match_oper_password(const char *password, struct oper_conf *oper_p)
158{
159 const char *encr;
160
161 /* passwd may be NULL pointer. Head it off at the pass... */
162 if(EmptyString(oper_p->passwd))
163 return NO;
164
165 if(IsOperConfEncrypted(oper_p))
166 {
167 /* use first two chars of the password they send in as salt */
168 /* If the password in the conf is MD5, and ircd is linked
169 * to scrypt on FreeBSD, or the standard crypt library on
170 * glibc Linux, then this code will work fine on generating
171 * the proper encrypted hash for comparison.
172 */
173 if(!EmptyString(password))
7796ef04 174 encr = rb_crypt(password, oper_p->passwd);
212380e3 175 else
176 encr = "";
177 }
178 else
179 encr = password;
180
181 if(strcmp(encr, oper_p->passwd) == 0)
182 return YES;
183 else
184 return NO;
185}