]> git.sur5r.net Git - i3/i3status/blob - src/print_ip_addr.c
e97edaab489e5112a5ffdae2775a486fb7693c97
[i3/i3status] / src / print_ip_addr.c
1 // vim:ts=8:expandtab
2 #include <netinet/in.h>
3 #include <sys/socket.h>
4 #include <sys/types.h>
5 #include <stdlib.h>
6 #include <stdio.h>
7 #include <string.h>
8 #include <netdb.h>
9 #include <ifaddrs.h>
10 #include <net/if.h>
11
12 #include "i3status.h"
13
14 /*
15  * Return the IP address for the given interface or "no IP" if the
16  * interface is up and running but hasn't got an IP address yet
17  *
18  */
19 const char *get_ip_addr(const char *interface) {
20         static char part[512];
21         socklen_t len = sizeof(struct sockaddr_in);
22         memset(part, 0, sizeof(part));
23
24         struct ifaddrs *ifaddr, *addrp;
25         bool found = false;
26
27         getifaddrs(&ifaddr);
28
29         if (ifaddr == NULL)
30                 return NULL;
31
32         /* Skip until we are at the AF_INET address of interface */
33         for (addrp = ifaddr;
34
35              (addrp != NULL &&
36               (strcmp(addrp->ifa_name, interface) != 0 ||
37                addrp->ifa_addr == NULL ||
38                addrp->ifa_addr->sa_family != AF_INET));
39
40              addrp = addrp->ifa_next) {
41                 /* Check if the interface is down */
42                 if (strcmp(addrp->ifa_name, interface) != 0)
43                         continue;
44                 found = true;
45                 if ((addrp->ifa_flags & IFF_RUNNING) == 0) {
46                         freeifaddrs(ifaddr);
47                         return NULL;
48                 }
49         }
50
51         if (addrp == NULL) {
52                 freeifaddrs(ifaddr);
53                 return (found ? "no IP" : NULL);
54         }
55
56         int ret;
57         if ((ret = getnameinfo(addrp->ifa_addr, len, part, sizeof(part), NULL, 0, NI_NUMERICHOST)) != 0) {
58                 fprintf(stderr, "getnameinfo(): %s\n", gai_strerror(ret));
59                 freeifaddrs(ifaddr);
60                 return "no IP";
61         }
62
63         freeifaddrs(ifaddr);
64         return part;
65 }
66