]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/ip_cloaking.c
[svn] - the new plan:
[irc/rqf/shadowircd.git] / extensions / ip_cloaking.c
CommitLineData
212380e3 1/* $Id: ip_cloaking.c 2805 2006-12-05 12:45:43Z jilles $ */
2
3#include "stdinc.h"
4#include "modules.h"
5#include "hook.h"
6#include "client.h"
7#include "ircd.h"
8#include "send.h"
9#include "s_conf.h"
10#include "s_user.h"
11#include "s_serv.h"
12#include "tools.h"
13#include "numeric.h"
14
15/* if you're modifying this module, you'll probably to change this */
16#define KEY 0x13748cfa
17
18static int
19_modinit(void)
20{
21 /* add the usermode to the available slot */
22 user_modes['h'] = find_umode_slot();
23 construct_umodebuf();
24
25 return 0;
26}
27
28static void
29_moddeinit(void)
30{
31 /* disable the umode and remove it from the available list */
32 user_modes['h'] = 0;
33 construct_umodebuf();
34}
35
36static void check_umode_change(void *data);
37static void check_new_user(void *data);
38mapi_hfn_list_av1 ip_cloaking_hfnlist[] = {
39 { "umode_changed", (hookfn) check_umode_change },
40 { "new_local_user", (hookfn) check_new_user },
41 { NULL, NULL }
42};
43
44DECLARE_MODULE_AV1(ip_cloaking, _modinit, _moddeinit, NULL, NULL,
45 ip_cloaking_hfnlist, "$Revision: 2805 $");
46
47static void
48distribute_hostchange(struct Client *client)
49{
50 if (irccmp(client->host, client->orighost))
51 sendto_one_numeric(client, RPL_HOSTHIDDEN, "%s :is now your hidden host",
52 client->host);
53 else
54 sendto_one_numeric(client, RPL_HOSTHIDDEN, "%s :hostname reset",
55 client->host);
56
57 sendto_server(NULL, NULL,
58 CAP_EUID | CAP_TS6, NOCAPS, ":%s CHGHOST %s :%s",
59 use_id(&me), use_id(client), client->host);
60 sendto_server(NULL, NULL,
61 CAP_TS6, CAP_EUID, ":%s ENCAP * CHGHOST %s :%s",
62 use_id(&me), use_id(client), client->host);
63 sendto_server(NULL, NULL,
64 NOCAPS, CAP_TS6, ":%s ENCAP * CHGHOST %s :%s",
65 me.name, client->name, client->host);
66 if (irccmp(client->host, client->orighost))
67 SetDynSpoof(client);
68 else
69 ClearDynSpoof(client);
70}
71
72static void
73do_host_cloak(const char *inbuf, char *outbuf, int ipmask)
74{
75 int cyc;
76 unsigned int hosthash = 1, hosthash2 = 1;
77 unsigned int maxcycle = strlen(inbuf);
78 int len1;
79 const char *rest, *next;
80
81 for (cyc = 0; cyc < maxcycle - 2; cyc += 2)
82 hosthash *= (unsigned int) inbuf[cyc];
83
84 /* safety: decrement ourselves two steps back */
85 for (cyc = maxcycle - 1; cyc >= 1; cyc -= 2)
86 hosthash2 *= (unsigned int) inbuf[cyc];
87
88 /* lets do some bitshifting -- this pretty much destroys the IP
89 * sequence, while still providing a checksum. exactly what
90 * we're shooting for. --nenolod
91 */
92 hosthash += (hosthash2 / KEY);
93 hosthash2 += (hosthash / KEY);
94
95 if (ipmask == 0)
96 {
97 ircsnprintf(outbuf, HOSTLEN, "%s-%X%X",
98 ServerInfo.network_name, hosthash2, hosthash);
99 len1 = strlen(outbuf);
100 rest = strchr(inbuf, '.');
101 if (rest == NULL)
102 rest = ".";
103 /* try to avoid truncation -- jilles */
104 while (len1 + strlen(rest) >= HOSTLEN && (next = strchr(rest + 1, '.')) != NULL)
105 rest = next;
106 strlcat(outbuf, rest, HOSTLEN);
107 }
108 else
109 ircsnprintf(outbuf, HOSTLEN, "%X%X.%s",
110 hosthash2, hosthash, ServerInfo.network_name);
111}
112
113static void
114check_umode_change(void *vdata)
115{
116 hook_data_umode_changed *data = (hook_data_umode_changed *)vdata;
117 struct Client *source_p = data->client;
118
119 if (!MyClient(source_p))
120 return;
121
122 /* didn't change +h umode, we don't need to do anything */
123 if (!((data->oldumodes ^ source_p->umodes) & user_modes['h']))
124 return;
125
126 if (source_p->umodes & user_modes['h'])
127 {
128 if (IsIPSpoof(source_p) || source_p->localClient->mangledhost == NULL || (IsDynSpoof(source_p) && strcmp(source_p->host, source_p->localClient->mangledhost)))
129 {
130 source_p->umodes &= ~user_modes['h'];
131 return;
132 }
133 if (strcmp(source_p->host, source_p->localClient->mangledhost))
134 {
135 strlcpy(source_p->host, source_p->localClient->mangledhost, HOSTLEN);
136 distribute_hostchange(source_p);
137 }
138 else /* not really nice, but we need to send this numeric here */
139 sendto_one_numeric(source_p, RPL_HOSTHIDDEN, "%s :is now your hidden host",
140 source_p->host);
141 }
142 else if (!(source_p->umodes & user_modes['h']))
143 {
144 if (source_p->localClient->mangledhost != NULL &&
145 !strcmp(source_p->host, source_p->localClient->mangledhost))
146 {
147 strlcpy(source_p->host, source_p->orighost, HOSTLEN);
148 distribute_hostchange(source_p);
149 }
150 }
151}
152
153static void
154check_new_user(void *vdata)
155{
156 struct Client *source_p = (void *)vdata;
157
158 if (IsIPSpoof(source_p))
159 {
160 source_p->umodes &= ~user_modes['h'];
161 return;
162 }
163 source_p->localClient->mangledhost = MyMalloc(HOSTLEN);
164 if (!irccmp(source_p->orighost, source_p->sockhost))
165 do_host_cloak(source_p->orighost, source_p->localClient->mangledhost, 1);
166 else
167 do_host_cloak(source_p->orighost, source_p->localClient->mangledhost, 0);
168 if (IsDynSpoof(source_p))
169 source_p->umodes &= ~user_modes['h'];
170 if (source_p->umodes & user_modes['h'])
171 {
172 strlcpy(source_p->host, source_p->localClient->mangledhost, sizeof(source_p->host));
173 if (irccmp(source_p->host, source_p->orighost))
174 SetDynSpoof(source_p);
175 }
176}