]> jfr.im git - solanum.git/blame - extensions/m_webirc.c
Merge pull request #302 from edk0/sasl-usercloak
[solanum.git] / extensions / m_webirc.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_webirc.c: Makes CGI:IRC users appear as coming from their real host
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-2006 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
212380e3
AC
23 */
24/* Usage:
25 * auth {
26 * user = "webirc@<cgiirc ip>"; # if identd used, put ident username instead
27 * password = "<password>"; # encryption possible
28 * spoof = "webirc."
29 * class = "users";
30 * };
31 * Possible flags:
32 * encrypted - password is encrypted (recommended)
aae358c0 33 * kline_exempt - klines on the cgiirc ip are ignored
212380e3 34 * dlines are checked on the cgiirc ip (of course).
170703fe 35 * k/d/x lines, auth blocks, user limits, etc are checked using the
212380e3
AC
36 * real host/ip.
37 * The password should be specified unencrypted in webirc_password in
38 * cgiirc.config
39 */
40
41#include "stdinc.h"
42#include "client.h" /* client struct */
4562c604 43#include "match.h"
212380e3
AC
44#include "hostmask.h"
45#include "send.h" /* sendto_one */
46#include "numeric.h" /* ERR_xxx */
47#include "ircd.h" /* me */
48#include "msg.h"
49#include "parse.h"
50#include "modules.h"
51#include "s_serv.h"
52#include "hash.h"
53#include "s_conf.h"
477bbce4 54#include "reject.h"
212380e3 55
eeabf33a
EM
56static const char webirc_desc[] = "Adds support for the WebIRC system";
57
3c7d6fcc 58static void mr_webirc(struct MsgBuf *msgbuf_p, struct Client *, struct Client *, int, const char **);
212380e3
AC
59
60struct Message webirc_msgtab = {
7baa37a9 61 "WEBIRC", 0, 0, 0, 0,
4636e5cb 62 {{mr_webirc, 5}, mg_reg, mg_ignore, mg_ignore, mg_ignore, mg_reg}
212380e3
AC
63};
64
65mapi_clist_av1 webirc_clist[] = { &webirc_msgtab, NULL };
02369fa7 66
8ffc5173
EK
67static void new_local_user(void *data);
68mapi_hfn_list_av1 webirc_hfnlist[] = {
69 { "new_local_user", (hookfn) new_local_user },
70 { NULL, NULL }
71};
72
73DECLARE_MODULE_AV2(webirc, NULL, NULL, webirc_clist, NULL, webirc_hfnlist, NULL, NULL, webirc_desc);
212380e3
AC
74
75/*
06c3a319 76 * mr_webirc - webirc message handler
212380e3
AC
77 * parv[1] = password
78 * parv[2] = fake username (we ignore this)
55abcbb2 79 * parv[3] = fake hostname
212380e3
AC
80 * parv[4] = fake ip
81 */
3c7d6fcc 82static void
760bafda 83mr_webirc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
84{
85 struct ConfItem *aconf;
86 const char *encr;
0391874c 87 struct rb_sockaddr_storage addr;
212380e3 88
d6c81378
EK
89 int secure = 0;
90
55abcbb2 91 aconf = find_address_conf(client_p->host, client_p->sockhost,
bdbe991f 92 IsGotId(client_p) ? client_p->username : "webirc",
212380e3
AC
93 IsGotId(client_p) ? client_p->username : "webirc",
94 (struct sockaddr *) &client_p->localClient->ip,
c0949eb0 95 GET_SS_FAMILY(&client_p->localClient->ip), NULL);
212380e3 96 if (aconf == NULL || !(aconf->status & CONF_CLIENT))
3c7d6fcc 97 return;
27f616dd 98 if (!IsConfDoSpoofIp(aconf) || irccmp(aconf->info.name, "webirc."))
212380e3
AC
99 {
100 /* XXX */
101 sendto_one(source_p, "NOTICE * :Not a CGI:IRC auth block");
3c7d6fcc 102 return;
212380e3
AC
103 }
104 if (EmptyString(aconf->passwd))
105 {
106 sendto_one(source_p, "NOTICE * :CGI:IRC auth blocks must have a password");
3c7d6fcc 107 return;
212380e3 108 }
ab4420cb
EK
109 if (!IsSSL(source_p) && aconf->flags & CONF_FLAGS_NEED_SSL)
110 {
cccda2ff 111 sendto_one(source_p, "NOTICE * :Your CGI:IRC block requires TLS");
ab4420cb
EK
112 return;
113 }
212380e3
AC
114
115 if (EmptyString(parv[1]))
116 encr = "";
117 else if (IsConfEncrypted(aconf))
f85a5a3f 118 encr = rb_crypt(parv[1], aconf->passwd);
212380e3
AC
119 else
120 encr = parv[1];
121
e69375f3 122 if (encr == NULL || strcmp(encr, aconf->passwd))
212380e3
AC
123 {
124 sendto_one(source_p, "NOTICE * :CGI:IRC password incorrect");
3c7d6fcc 125 return;
212380e3
AC
126 }
127
17809d2d 128 if (rb_inet_pton_sock(parv[4], &addr) <= 0)
0391874c
JT
129 {
130 sendto_one(source_p, "NOTICE * :Invalid IP");
3c7d6fcc 131 return;
0391874c 132 }
bdbe991f 133
2355be38
SA
134 source_p->localClient->ip = addr;
135
d6c81378
EK
136 if (parc >= 6)
137 {
a6b97b7d
EK
138 const char *s;
139 for (s = parv[5]; s != NULL; (s = strchr(s, ' ')) && s++)
d6c81378 140 {
a6b97b7d 141 if (!ircncmp(s, "secure", 6) && (s[6] == '=' || s[6] == ' ' || s[6] == '\0'))
d6c81378
EK
142 secure = 1;
143 }
144 }
145
146 if (secure && !IsSSL(source_p))
147 {
148 sendto_one(source_p, "NOTICE * :CGI:IRC is not connected securely; marking you as insecure");
11ef0e2b 149 secure = 0;
d6c81378
EK
150 }
151
152 if (!secure)
153 {
154 SetInsecure(source_p);
155 }
156
2355be38
SA
157 rb_inet_ntop_sock((struct sockaddr *)&source_p->localClient->ip, source_p->sockhost, sizeof(source_p->sockhost));
158
212380e3 159 if(strlen(parv[3]) <= HOSTLEN)
f427c8b0 160 rb_strlcpy(source_p->host, parv[3], sizeof(source_p->host));
212380e3 161 else
f427c8b0 162 rb_strlcpy(source_p->host, source_p->sockhost, sizeof(source_p->host));
0391874c 163
170703fe 164 /* Check dlines now, klines will be checked on registration */
55abcbb2 165 if((aconf = find_dline((struct sockaddr *)&source_p->localClient->ip,
c0949eb0 166 GET_SS_FAMILY(&source_p->localClient->ip))))
212380e3
AC
167 {
168 if(!(aconf->status & CONF_EXEMPTDLINE))
169 {
170 exit_client(client_p, source_p, &me, "D-lined");
3c7d6fcc 171 return;
212380e3
AC
172 }
173 }
174
175 sendto_one(source_p, "NOTICE * :CGI:IRC host/IP set to %s %s", parv[3], parv[4]);
212380e3 176}
8ffc5173
EK
177
178static void
179new_local_user(void *data)
180{
181 struct Client *source_p = data;
182 struct ConfItem *aconf = source_p->localClient->att_conf;
183
184 if (!irccmp(aconf->info.name, "webirc."))
185 exit_client(source_p, source_p, &me, "Cannot log in using a WEBIRC block");
186}