]> jfr.im git - solanum.git/blame - extensions/m_webirc.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[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
23 *
477bbce4 24 * $Id: m_webirc.c 3458 2007-05-18 19:51:22Z jilles $
212380e3
AC
25 */
26/* Usage:
27 * auth {
28 * user = "webirc@<cgiirc ip>"; # if identd used, put ident username instead
29 * password = "<password>"; # encryption possible
30 * spoof = "webirc."
31 * class = "users";
32 * };
33 * Possible flags:
34 * encrypted - password is encrypted (recommended)
aae358c0 35 * kline_exempt - klines on the cgiirc ip are ignored
212380e3 36 * dlines are checked on the cgiirc ip (of course).
170703fe 37 * k/d/x lines, auth blocks, user limits, etc are checked using the
212380e3
AC
38 * real host/ip.
39 * The password should be specified unencrypted in webirc_password in
40 * cgiirc.config
41 */
42
43#include "stdinc.h"
44#include "client.h" /* client struct */
4562c604 45#include "match.h"
212380e3
AC
46#include "hostmask.h"
47#include "send.h" /* sendto_one */
48#include "numeric.h" /* ERR_xxx */
49#include "ircd.h" /* me */
50#include "msg.h"
51#include "parse.h"
52#include "modules.h"
53#include "s_serv.h"
54#include "hash.h"
55#include "s_conf.h"
477bbce4 56#include "reject.h"
212380e3 57
760bafda 58static int 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 };
66DECLARE_MODULE_AV1(webirc, NULL, NULL, webirc_clist, NULL, NULL, "$Revision: 20702 $");
67
68/*
06c3a319 69 * mr_webirc - webirc message handler
212380e3
AC
70 * parv[1] = password
71 * parv[2] = fake username (we ignore this)
55abcbb2 72 * parv[3] = fake hostname
212380e3
AC
73 * parv[4] = fake ip
74 */
75static int
760bafda 76mr_webirc(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
77{
78 struct ConfItem *aconf;
79 const char *encr;
0391874c 80 struct rb_sockaddr_storage addr;
212380e3 81
0391874c
JT
82 if ((!strchr(parv[4], '.') && !strchr(parv[4], ':')) ||
83 strlen(parv[4]) + (*parv[4] == ':') >=
84 sizeof(source_p->sockhost))
212380e3
AC
85 {
86 sendto_one(source_p, "NOTICE * :Invalid IP");
87 return 0;
88 }
89
55abcbb2 90 aconf = find_address_conf(client_p->host, client_p->sockhost,
bdbe991f 91 IsGotId(client_p) ? client_p->username : "webirc",
212380e3
AC
92 IsGotId(client_p) ? client_p->username : "webirc",
93 (struct sockaddr *) &client_p->localClient->ip,
40c1fd47 94 client_p->localClient->ip.ss_family, NULL);
212380e3
AC
95 if (aconf == NULL || !(aconf->status & CONF_CLIENT))
96 return 0;
27f616dd 97 if (!IsConfDoSpoofIp(aconf) || irccmp(aconf->info.name, "webirc."))
212380e3
AC
98 {
99 /* XXX */
100 sendto_one(source_p, "NOTICE * :Not a CGI:IRC auth block");
101 return 0;
102 }
103 if (EmptyString(aconf->passwd))
104 {
105 sendto_one(source_p, "NOTICE * :CGI:IRC auth blocks must have a password");
106 return 0;
107 }
108
109 if (EmptyString(parv[1]))
110 encr = "";
111 else if (IsConfEncrypted(aconf))
f85a5a3f 112 encr = rb_crypt(parv[1], aconf->passwd);
212380e3
AC
113 else
114 encr = parv[1];
115
e69375f3 116 if (encr == NULL || strcmp(encr, aconf->passwd))
212380e3
AC
117 {
118 sendto_one(source_p, "NOTICE * :CGI:IRC password incorrect");
119 return 0;
120 }
121
0391874c
JT
122 if (rb_inet_pton_sock(parv[4], (struct sockaddr *)&addr) <= 0)
123 {
124 sendto_one(source_p, "NOTICE * :Invalid IP");
125 return 0;
126 }
bdbe991f 127
0391874c
JT
128 if (*parv[4] == ':')
129 {
130 source_p->sockhost[0] = '0';
131 rb_strlcpy(source_p->sockhost + 1, parv[4],
132 sizeof(source_p->sockhost) - 1);
133 }
134 else
135 rb_strlcpy(source_p->sockhost, parv[4],
136 sizeof(source_p->sockhost));
bdbe991f 137
212380e3 138 if(strlen(parv[3]) <= HOSTLEN)
f427c8b0 139 rb_strlcpy(source_p->host, parv[3], sizeof(source_p->host));
212380e3 140 else
f427c8b0 141 rb_strlcpy(source_p->host, source_p->sockhost, sizeof(source_p->host));
0391874c
JT
142
143 source_p->localClient->ip = addr;
212380e3 144
170703fe 145 /* Check dlines now, klines will be checked on registration */
55abcbb2 146 if((aconf = find_dline((struct sockaddr *)&source_p->localClient->ip,
54ac8b60 147 source_p->localClient->ip.ss_family)))
212380e3
AC
148 {
149 if(!(aconf->status & CONF_EXEMPTDLINE))
150 {
151 exit_client(client_p, source_p, &me, "D-lined");
152 return 0;
153 }
154 }
155
156 sendto_one(source_p, "NOTICE * :CGI:IRC host/IP set to %s %s", parv[3], parv[4]);
157 return 0;
158}