]> git.sur5r.net Git - i3/i3status/blob - src/print_ipv6_addr.c
ipv6: cache the result of the DNS query only, the socket needs to be re-created every...
[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 bool print_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 false;
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 false;
35         }
36
37
38         socklen_t local_len = sizeof(struct sockaddr_storage);
39         if (getsockname(fd, (struct sockaddr*)&local, &local_len) == -1) {
40                 perror("getsockname()");
41                 (void)close(fd);
42                 printf("no IPv6");
43                 return true;
44         }
45
46         memset(buf, 0, INET6_ADDRSTRLEN + 1);
47         if ((ret = getnameinfo((struct sockaddr*)&local, local_len,
48                                buf, sizeof(buf), NULL, 0,
49                                NI_NUMERICHOST)) != 0) {
50                 fprintf(stderr, "getnameinfo(): %s\n", gai_strerror(ret));
51                 (void)close(fd);
52                 printf("no IPv6");
53                 return true;
54         }
55
56         (void)close(fd);
57         printf("%s", buf);
58         return true;
59 }
60
61 /*
62  * Returns the IPv6 address with which you have connectivity at the moment.
63  *
64  */
65 static void print_ipv6_addr() {
66         struct addrinfo hints;
67         struct addrinfo *result, *resp;
68         static struct addrinfo *cached = NULL;
69
70         /* To save dns lookups (if they are not cached locally) and creating
71          * sockets, we save the fd and keep it open. */
72         if (cached != NULL)
73                 if (print_sockname(cached))
74                         return;
75
76         memset(&hints, 0, sizeof(struct addrinfo));
77         hints.ai_family = AF_INET6;
78
79         /* We resolve the K root server to get a public IPv6 address. You can
80          * replace this with any other host which has an AAAA record, but the
81          * K root server is a pretty safe bet. */
82         if (getaddrinfo("k.root-servers.net", "domain", &hints, &result) != 0) {
83                 /* We don’t display the error here because most
84                  * likely, there just is no connectivity.
85                  * Thus, don’t spam the user’s console. */
86                 printf("no IPv6");
87                 return;
88         }
89
90         for (resp = result; resp != NULL; resp = resp->ai_next) {
91                 if (!print_sockname(resp))
92                         continue;
93
94                 if ((cached = malloc(sizeof(struct addrinfo))) == NULL)
95                         return;
96                 memcpy(cached, resp, sizeof(struct addrinfo));
97                 if ((cached->ai_addr = malloc(resp->ai_addrlen)) == NULL) {
98                         cached = NULL;
99                         return;
100                 }
101                 memcpy(cached->ai_addr, resp->ai_addr, resp->ai_addrlen);
102                 freeaddrinfo(result);
103                 return;
104         }
105
106         freeaddrinfo(result);
107         printf("no IPv6");
108 }
109
110 void print_ipv6_info(const char *format) {
111         const char *walk;
112
113         for (walk = format; *walk != '\0'; walk++) {
114                 if (*walk != '%') {
115                         putchar(*walk);
116                         continue;
117                 }
118
119                 if (strncmp(walk+1, "ip", strlen("ip")) == 0) {
120                         print_ipv6_addr();
121                         walk += strlen("ip");
122                 }
123         }
124 }