]> jfr.im git - solanum.git/blame - extensions/extb_hostmask.c
extensions/extb_ssl.c: make certfp parameter case-insensitive
[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"
e2a9fa9c 10
eeabf33a
EM
11static const char extb_desc[] = "Hostmask ($m) extban type";
12
e2a9fa9c
AC
13static int _modinit(void);
14static void _moddeinit(void);
15static int eb_hostmask(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
16
c81afd15 17DECLARE_MODULE_AV2(extb_hostmask, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
e2a9fa9c
AC
18
19static int
20_modinit(void)
21{
22 extban_table['m'] = eb_hostmask;
23 return 0;
24}
25
26static void
27_moddeinit(void)
28{
29 extban_table['m'] = NULL;
30}
31
32static int
33eb_hostmask(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type)
34{
fe5fc851
SA
35 char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
36 char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
37 char src_althost[NAMELEN + USERLEN + HOSTLEN + 6];
38 char src_ip4host[NAMELEN + USERLEN + HOSTLEN + 6];
e2a9fa9c
AC
39 struct sockaddr_in ip4;
40 char *s = src_host, *s2 = src_iphost, *s3 = NULL, *s4 = NULL;
41
5203cba5
VI
42 sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
43 sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
e2a9fa9c
AC
44
45 /* handle hostmangling if necessary */
46 if (client_p->localClient->mangledhost != NULL)
47 {
48 if (!strcmp(client_p->host, client_p->localClient->mangledhost))
5203cba5 49 sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->orighost);
e2a9fa9c 50 else if (!IsDynSpoof(client_p))
5203cba5 51 sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->localClient->mangledhost);
e2a9fa9c
AC
52
53 s3 = src_althost;
54 }
55
e2a9fa9c 56 /* handle Teredo if necessary */
4eafa9e6 57 if (GET_SS_FAMILY(&client_p->localClient->ip) == AF_INET6 && rb_ipv4_from_ipv6((const struct sockaddr_in6 *) &client_p->localClient->ip, &ip4))
e2a9fa9c 58 {
5203cba5 59 sprintf(src_ip4host, "%s!%s@", client_p->name, client_p->username);
e2a9fa9c
AC
60 s4 = src_ip4host + strlen(src_ip4host);
61 rb_inet_ntop_sock((struct sockaddr *)&ip4,
62 s4, src_ip4host + sizeof src_ip4host - s4);
63 s4 = src_ip4host;
64 }
e2a9fa9c
AC
65
66 return match(banstr, s) || match(banstr, s2) || (s3 != NULL && match(banstr, s3)) || (s4 != NULL && match(banstr, s4)) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
67}