Skip to content
This repository was archived by the owner on Jun 6, 2021. It is now read-only.

Commit f9e6e9f

Browse files
committedDec 16, 2014
Check IP/mask validity in CLONES ADDEXEMPT
1 parent dfd5b1f commit f9e6e9f

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed
 

‎include/tools.h

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ E void arc4random_addrandom(unsigned char *dat, int datlen);
2727
E unsigned int arc4random(void);
2828
#endif /* !HAVE_ARC4RANDOM */
2929

30+
/* cidr.c */
31+
E int valid_ip_or_mask(const char *src);
32+
3033
typedef enum {
3134
LOG_ANY = 0,
3235
LOG_INTERACTIVE = 1, /* IRC channels */

‎libathemecore/cidr.c

+46
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,52 @@ match_cidr(const char *s1, const char *s2)
368368
return 1;
369369
}
370370

371+
int valid_ip_or_mask(const char *src)
372+
{
373+
char ipaddr[IN6ADDRSZ], buf[IN6ADDRSZ];
374+
char *mask;
375+
376+
mowgli_strlcpy(ipaddr, src, sizeof ipaddr);
377+
378+
int is_ipv6 = (strchr(ipaddr, ':') != NULL);
379+
380+
if (mask = strchr(ipaddr, '/'))
381+
{
382+
*mask++ = '\0';
383+
384+
/* Multiple slashes */
385+
if (strchr(mask, '/'))
386+
return 0;
387+
388+
/* Trailing slash */
389+
if (!strlen(mask))
390+
return 0;
391+
392+
int i;
393+
for (i = 0; i < strlen(mask); i++)
394+
{
395+
if (!isdigit(*(mask + i)))
396+
return 0;
397+
}
398+
399+
if (is_ipv6)
400+
{
401+
if (atoi(mask) > 128)
402+
return 0;
403+
}
404+
else
405+
{
406+
if (atoi(mask) > 32)
407+
return 0;
408+
}
409+
}
410+
411+
if (is_ipv6)
412+
return inet_pton6(ipaddr, buf);
413+
else
414+
return inet_pton4(ipaddr, buf);
415+
}
416+
371417
/* vim:cinoptions=>s,e0,n0,f0,{0,}0,^0,=s,ps,t0,c3,+s,(2s,us,)20,*30,gs,hs
372418
* vim:ts=8
373419
* vim:sw=8

‎modules/operserv/clones.c

+7
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,13 @@ static void os_cmd_clones_addexempt(sourceinfo_t *si, int parc, char *parv[])
450450
return;
451451
}
452452

453+
if (!valid_ip_or_mask(ip))
454+
{
455+
command_fail(si, fault_badparams, _("Invalid IP/mask given."));
456+
command_fail(si, fault_badparams, _("Syntax: CLONES ADDEXEMPT <ip> <clones> [!P|!T <minutes>] <reason>"));
457+
return;
458+
}
459+
453460
clones = atoi(clonesstr);
454461

455462
if (expiry && !strcasecmp(expiry, "!P"))

0 commit comments

Comments
 (0)