]> jfr.im git - solanum.git/blame - extensions/extb_hostmask.c
opm: silly bugfix
[solanum.git] / extensions / extb_hostmask.c
CommitLineData
e2a9fa9c
AC
1/*
2 * Hostmask extban type: bans all users matching a given hostmask, used for stacked extbans
3 * -- kaniini
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
9#include "ircd.h"
10#include "ipv4_from_ipv6.h"
11
eeabf33a
EM
12static const char extb_desc[] = "Hostmask ($m) extban type";
13
e2a9fa9c
AC
14static int _modinit(void);
15static void _moddeinit(void);
16static int eb_hostmask(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
17
c81afd15 18DECLARE_MODULE_AV2(extb_hostmask, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
e2a9fa9c
AC
19
20static int
21_modinit(void)
22{
23 extban_table['m'] = eb_hostmask;
24 return 0;
25}
26
27static void
28_moddeinit(void)
29{
30 extban_table['m'] = NULL;
31}
32
33static int
34eb_hostmask(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type)
35{
36 char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
37 char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
38 char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
39 char src_ip4host[NICKLEN + USERLEN + HOSTLEN + 6];
40 struct sockaddr_in ip4;
41 char *s = src_host, *s2 = src_iphost, *s3 = NULL, *s4 = NULL;
42
5203cba5
VI
43 sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
44 sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
e2a9fa9c
AC
45
46 /* handle hostmangling if necessary */
47 if (client_p->localClient->mangledhost != NULL)
48 {
49 if (!strcmp(client_p->host, client_p->localClient->mangledhost))
5203cba5 50 sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->orighost);
e2a9fa9c 51 else if (!IsDynSpoof(client_p))
5203cba5 52 sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->localClient->mangledhost);
e2a9fa9c
AC
53
54 s3 = src_althost;
55 }
56
57#ifdef RB_IPV6
58 /* handle Teredo if necessary */
032ef5ef 59 if (GET_SS_FAMILY(&client_p->localClient->ip) == AF_INET6 && ipv4_from_ipv6((const struct sockaddr_in6 *) &client_p->localClient->ip, &ip4))
e2a9fa9c 60 {
5203cba5 61 sprintf(src_ip4host, "%s!%s@", client_p->name, client_p->username);
e2a9fa9c
AC
62 s4 = src_ip4host + strlen(src_ip4host);
63 rb_inet_ntop_sock((struct sockaddr *)&ip4,
64 s4, src_ip4host + sizeof src_ip4host - s4);
65 s4 = src_ip4host;
66 }
67#endif
68
69 return match(banstr, s) || match(banstr, s2) || (s3 != NULL && match(banstr, s3)) || (s4 != NULL && match(banstr, s4)) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
70}