]> git.sur5r.net Git - i3/i3status/blob - src/print_ipv6_addr.c
b370011f0ac0e53fe24fa02a3aea37c418bbb0f2
[i3/i3status] / src / print_ipv6_addr.c
1 // vim:ts=8:expandtab
2 #include <stdio.h>
3 #include <stdbool.h>
4 #include <unistd.h>
5 #include <stdlib.h>
6 #include <sys/types.h>
7 #include <sys/socket.h>
8 #include <netdb.h>
9 #include <string.h>
10 #include <arpa/inet.h>
11
12 static char *get_sockname(struct addrinfo *addr) {
13         static char buf[INET6_ADDRSTRLEN+1];
14         struct sockaddr_storage local;
15         int ret;
16         int fd;
17
18         if ((fd = socket(addr->ai_family, SOCK_DGRAM, 0)) == -1) {
19                 perror("socket()");
20                 return NULL;
21         }
22
23         /* Since the socket was created with SOCK_DGRAM, this is
24          * actually not establishing a connection or generating
25          * any other network traffic. Instead, as a side-effect,
26          * it saves the local address with which packets would
27          * be sent to the destination. */
28         if (connect(fd, addr->ai_addr, addr->ai_addrlen) == -1) {
29                 /* We don’t display the error here because most
30                  * likely, there just is no IPv6 connectivity.
31                  * Thus, don’t spam the user’s console but just
32                  * try the next address. */
33                 (void)close(fd);
34                 return NULL;
35         }
36
37         socklen_t local_len = sizeof(struct sockaddr_storage);
38         if (getsockname(fd, (struct sockaddr*)&local, &local_len) == -1) {
39                 perror("getsockname()");
40                 (void)close(fd);
41                 return NULL;
42         }
43
44         memset(buf, 0, INET6_ADDRSTRLEN + 1);
45         if ((ret = getnameinfo((struct sockaddr*)&local, local_len,
46                                buf, sizeof(buf), NULL, 0,
47                                NI_NUMERICHOST)) != 0) {
48                 fprintf(stderr, "getnameinfo(): %s\n", gai_strerror(ret));
49                 (void)close(fd);
50                 return NULL;
51         }
52
53         (void)close(fd);
54         return buf;
55 }
56
57 /*
58  * Returns the IPv6 address with which you have connectivity at the moment.
59  * The char * is statically allocated and mustn't be freed
60  */
61 static char *get_ipv6_addr() {
62         struct addrinfo hints;
63         struct addrinfo *result, *resp;
64         static struct addrinfo *cached = NULL;
65
66         /* To save dns lookups (if they are not cached locally) and creating
67          * sockets, we save the fd and keep it open. */
68         if (cached != NULL)
69                 return get_sockname(cached);
70
71         memset(&hints, 0, sizeof(struct addrinfo));
72         hints.ai_family = AF_INET6;
73
74         /* We resolve the K root server to get a public IPv6 address. You can
75          * replace this with any other host which has an AAAA record, but the
76          * K root server is a pretty safe bet. */
77         if (getaddrinfo("k.root-servers.net", "domain", &hints, &result) != 0) {
78                 /* We don’t display the error here because most
79                  * likely, there just is no connectivity.
80                  * Thus, don’t spam the user’s console. */
81                 return NULL;
82         }
83
84         for (resp = result; resp != NULL; resp = resp->ai_next) {
85                 char *addr_string = get_sockname(resp);
86                 if (!addr_string)
87                         continue;
88
89                 if ((cached = malloc(sizeof(struct addrinfo))) == NULL)
90                         return NULL;
91                 memcpy(cached, resp, sizeof(struct addrinfo));
92                 if ((cached->ai_addr = malloc(resp->ai_addrlen)) == NULL) {
93                         cached = NULL;
94                         return NULL;
95                 }
96                 memcpy(cached->ai_addr, resp->ai_addr, resp->ai_addrlen);
97                 freeaddrinfo(result);
98                 return addr_string;
99         }
100
101         freeaddrinfo(result);
102         return NULL;
103 }
104
105 void print_ipv6_info(const char *format_up, const char *format_down) {
106         const char *walk;
107         char *addr_string = get_ipv6_addr();
108
109         if (addr_string == NULL) {
110                 printf("%s", format_down);
111                 return;
112         }
113
114         for (walk = format_up; *walk != '\0'; walk++) {
115                 if (*walk != '%') {
116                         putchar(*walk);
117                         continue;
118                 }
119
120                 if (strncmp(walk+1, "ip", strlen("ip")) == 0) {
121                         printf("%s", addr_string);
122                         walk += strlen("ip");
123                 }
124         }
125 }