summaryrefslogtreecommitdiff
path: root/src/first_network_device.c
blob: 3d06217fdde789eb40c3309e732e3c3b735fdfc1 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// vim:ts=4:sw=4:expandtab
#include <config.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <ifaddrs.h>
#if defined(__OpenBSD__) || defined(__DragonFly__)
#include <sys/types.h>
#include <sys/sockio.h>
#include <sys/ioctl.h>
#include <net/if.h>
#endif
#if defined(__OpenBSD__)
#include <net80211/ieee80211.h>
#include <net80211/ieee80211_ioctl.h>
#elif defined(__DragonFly__)
#include <netproto/802_11/ieee80211_ioctl.h>
#endif

#include "i3status.h"

#ifdef __OpenBSD__
#define LOOPBACK_DEV "lo0"
#else
#define LOOPBACK_DEV "lo"
#endif

static bool sysfs_devtype(char *dest, size_t n, const char *ifnam) {
    FILE *fp;
    char buf[1024];

    snprintf(buf, sizeof(buf), "/sys/class/net/%s/uevent", ifnam);
    if ((fp = fopen(buf, "r")) == NULL)
        return false;

    dest[0] = '\0';

    while (fgets(buf, sizeof(buf), fp)) {
        size_t slen;
        char *s;

        slen = strlen(buf);
        /* Line is too long to fit in the buffer */
        if (buf[slen - 1] != '\n' && !feof(fp))
            break;
        if ((s = strchr(buf, '='))) {
            if (strncmp(buf, "DEVTYPE", s - buf))
                continue;
            buf[slen - 1] = '\0';
            strncpy(dest, ++s, n);
            break;
        }
    }
    fclose(fp);
    return true;
}

static bool is_virtual(const char *ifname) {
    char path[1024];
    char *target = NULL;
    bool is_virtual = false;

    snprintf(path, sizeof(path), "/sys/class/net/%s", ifname);
    if ((target = realpath(path, NULL))) {
        if (BEGINS_WITH(target, "/sys/devices/virtual/")) {
            is_virtual = true;
        }
    }

    free(target);
    return is_virtual;
}

static net_type_t iface_type(const char *ifname) {
#if defined(__OpenBSD__)
    /*
     *First determine if the device is a wireless device by trying two ioctl(2)
     * commands against it. If either succeeds we can be sure it's a wireless
     * device.
     * Otherwise we try another ioctl(2) to determine the interface media. If that
     * fails it's not an ethernet device eiter.
     */
    struct ifreq ifr;
    struct ieee80211_bssid bssid;
    struct ieee80211_nwid nwid;
#elif defined(__DragonFly__)
    struct ieee80211req ifr;
#endif
#if defined(__OpenBSD__) || defined(__DragonFly__)
    struct ifmediareq ifmr;
    int s;
#endif
#if defined(__OpenBSD__)
    int ibssid, inwid;
#endif
#if defined(__OpenBSD__) || defined(__DragonFly__)
    if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
        return NET_TYPE_OTHER;

    memset(&ifr, 0, sizeof(ifr));
#endif
#if defined(__OpenBSD__)
    ifr.ifr_data = (caddr_t)&nwid;
    (void)strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
    inwid = ioctl(s, SIOCG80211NWID, (caddr_t)&ifr);

    memset(&bssid, 0, sizeof(bssid));
    strlcpy(bssid.i_name, ifname, sizeof(bssid.i_name));
    ibssid = ioctl(s, SIOCG80211BSSID, &bssid);

    if (ibssid == 0 || inwid == 0) {
        close(s);
        return NET_TYPE_WIRELESS;
    }
#elif defined(__DragonFly__)
    (void)strlcpy(ifr.i_name, ifname, sizeof(ifr.i_name));
    ifr.i_type = IEEE80211_IOC_NUMSSIDS;
    if (ioctl(s, SIOCG80211, &ifr) == 0) {
        close(s);
        return NET_TYPE_WIRELESS;
    }
#endif
#if defined(__OpenBSD__) || defined(__DragonFly__)
    (void)memset(&ifmr, 0, sizeof(ifmr));
    (void)strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));

    if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) < 0) {
        close(s);
        return NET_TYPE_OTHER;
    } else {
        close(s);
        return NET_TYPE_ETHERNET;
    }
#else
    char devtype[32];

    if (!sysfs_devtype(devtype, sizeof(devtype), ifname))
        return NET_TYPE_OTHER;

    /* Default to Ethernet when no devtype is available */
    if (!devtype[0])
        return NET_TYPE_ETHERNET;

    if (strcmp(devtype, "wlan") == 0)
        return NET_TYPE_WIRELESS;

    if (strcmp(devtype, "wwan") == 0)
        return NET_TYPE_OTHER;

    return NET_TYPE_OTHER;
#endif
    return NET_TYPE_OTHER;
}

const char *first_eth_interface(const net_type_t type) {
    static char *interface = NULL;
    struct ifaddrs *ifaddr, *addrp;
    net_type_t iftype;

    getifaddrs(&ifaddr);

    if (ifaddr == NULL)
        return NULL;

    free(interface);
    interface = NULL;
    for (addrp = ifaddr;
         addrp != NULL;
         addrp = addrp->ifa_next) {
        if (strncasecmp(LOOPBACK_DEV, addrp->ifa_name, strlen(LOOPBACK_DEV)) == 0)
            continue;
        if (addrp->ifa_addr == NULL)
            continue;
#ifdef __OpenBSD__
        if (addrp->ifa_addr->sa_family != AF_LINK)
            continue;
#else
        // Skip PF_PACKET addresses (MAC addresses), as they are present on any
        // ethernet interface.
        if (addrp->ifa_addr->sa_family != AF_INET &&
            addrp->ifa_addr->sa_family != AF_INET6)
            continue;
#endif /* !__OpenBSD__ */
        // Skip this interface if it is a wireless interface.
        iftype = iface_type(addrp->ifa_name);
        if (iftype != type)
            continue;
        if (is_virtual(addrp->ifa_name))
            continue;
        interface = strdup(addrp->ifa_name);
        break;
    }

    freeifaddrs(ifaddr);
    return interface;
}