-
Notifications
You must be signed in to change notification settings - Fork 4
/
mask-to-prefix.c
48 lines (39 loc) · 993 Bytes
/
mask-to-prefix.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* mask-to-prefix.c - Given an IPv6 network mask display the prefix length.
*
* Copyright (C) 2016 - 2017 Andrew Clayton <[email protected]>
*
* Licensed under the GNU General Public License Version 2 or
* the GNU Lesser General Public License Version 2.1
*
* See GPLv2 & LGPLv2.1 in the source tree.
*/
#include <stdio.h>
#include <stdlib.h>
#include <arpa/inet.h>
#include "short_types.h"
/*
* Based on code from http://www.keil.com/support/docs/194.htm
*
* Brian Kernighan method.
*/
static void mask_to_prefix(const char *mask)
{
int i;
u8 prefixlen = 0;
struct in6_addr maskb;
inet_pton(AF_INET6, mask, maskb.s6_addr);
for (i = 0; i < 16; i++)
for ( ; maskb.s6_addr[i] != 0; prefixlen++)
maskb.s6_addr[i] &= maskb.s6_addr[i] - 1;
printf("prefixlen : %u\n", prefixlen);
}
int main(int argc, char *argv[])
{
if (argc < 2) {
printf("Usage: mask-to-prefix <mask>\n");
exit(EXIT_FAILURE);
}
mask_to_prefix(argv[1]);
exit(EXIT_SUCCESS);
}