]> jfr.im git - solanum.git/blobdiff - extensions/extb_hostmask.c
Centralise banmask matching logic
[solanum.git] / extensions / extb_hostmask.c
index c4776e55523927d2130eac04dc554515d94e8c85..1100e88b14124ab1a9bc03b3ff526a62082739a8 100644 (file)
@@ -32,36 +32,5 @@ _moddeinit(void)
 static int
 eb_hostmask(const char *banstr, struct Client *client_p, struct Channel *chptr, long mode_type)
 {
-       char src_host[NAMELEN + USERLEN + HOSTLEN + 6];
-       char src_iphost[NAMELEN + USERLEN + HOSTLEN + 6];
-       char src_althost[NAMELEN + USERLEN + HOSTLEN + 6];
-       char src_ip4host[NAMELEN + USERLEN + HOSTLEN + 6];
-       struct sockaddr_in ip4;
-       char *s = src_host, *s2 = src_iphost, *s3 = NULL, *s4 = NULL;
-
-       sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
-       sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
-
-       /* handle hostmangling if necessary */
-       if (client_p->localClient->mangledhost != NULL)
-       {
-               if (!strcmp(client_p->host, client_p->localClient->mangledhost))
-                       sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->orighost);
-               else if (!IsDynSpoof(client_p))
-                       sprintf(src_althost, "%s!%s@%s", client_p->name, client_p->username, client_p->localClient->mangledhost);
-
-               s3 = src_althost;
-       }
-
-       /* handle Teredo if necessary */
-       if (GET_SS_FAMILY(&client_p->localClient->ip) == AF_INET6 && rb_ipv4_from_ipv6((const struct sockaddr_in6 *) &client_p->localClient->ip, &ip4))
-       {
-               sprintf(src_ip4host, "%s!%s@", client_p->name, client_p->username);
-               s4 = src_ip4host + strlen(src_ip4host);
-               rb_inet_ntop_sock((struct sockaddr *)&ip4,
-                               s4, src_ip4host + sizeof src_ip4host - s4);
-               s4 = src_ip4host;
-       }
-
-       return match(banstr, s) || match(banstr, s2) || (s3 != NULL && match(banstr, s3)) || (s4 != NULL && match(banstr, s4)) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
+       return client_matches_mask(client_p, banstr) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
 }