File: netload.c

package info (click to toggle)
libgtop2 2.40.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 8,072 kB
  • sloc: ansic: 25,393; sh: 7,089; makefile: 418; perl: 268; xml: 179; sed: 16
file content (214 lines) | stat: -rw-r--r-- 9,095 bytes parent folder | download | duplicates (4)
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/* Copyright (C) 1998-99 Martin Baulig
   Copyright (C) 2014 Gleb Smirnoff
   This file is part of LibGTop 1.0.

   Contributed by Martin Baulig <martin@home-of-linux.org>, October 1998.
   Contributed by Gleb Smirnoff <glebius@FreeBSD.org>, September 2014

   LibGTop is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License,
   or (at your option) any later version.

   LibGTop is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
   for more details.

   You should have received a copy of the GNU General Public License
   along with LibGTop; see the file COPYING. If not, write to the
   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

#include <config.h>
#include <glibtop.h>
#include <glibtop/error.h>
#include <glibtop/netload.h>

#include <glibtop_suid.h>

#include <sys/ioctl.h>
#include <sys/sockio.h>
#include <netinet/in.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#include <ifaddrs.h>

static const unsigned long _glibtop_sysdeps_netload =
(1L << GLIBTOP_NETLOAD_IF_FLAGS) +
(1L << GLIBTOP_NETLOAD_MTU) +
(1L << GLIBTOP_NETLOAD_PACKETS_IN) +
(1L << GLIBTOP_NETLOAD_PACKETS_OUT) +
(1L << GLIBTOP_NETLOAD_PACKETS_TOTAL) +
(1L << GLIBTOP_NETLOAD_BYTES_IN) +
(1L << GLIBTOP_NETLOAD_BYTES_OUT) +
(1L << GLIBTOP_NETLOAD_BYTES_TOTAL) +
(1L << GLIBTOP_NETLOAD_ERRORS_IN) +
(1L << GLIBTOP_NETLOAD_ERRORS_OUT) +
(1L << GLIBTOP_NETLOAD_ERRORS_TOTAL) +
(1L << GLIBTOP_NETLOAD_COLLISIONS) +
(1L << GLIBTOP_NETLOAD_HWADDRESS);

static const unsigned long _glibtop_sysdeps_netload_data =
(1L << GLIBTOP_NETLOAD_SUBNET) +
(1L << GLIBTOP_NETLOAD_ADDRESS);

static const unsigned long _glibtop_sysdeps_netload6 =
(1L << GLIBTOP_NETLOAD_ADDRESS6) +
(1L << GLIBTOP_NETLOAD_PREFIX6) +
(1L << GLIBTOP_NETLOAD_SCOPE6);

/* Init function. */

void
_glibtop_init_netload_p (glibtop *server)
{
        server->sysdeps.netload = _glibtop_sysdeps_netload;
}

/* Provides Network statistics. */

void
glibtop_get_netload_p (glibtop *server, glibtop_netload *buf,
                       const char *interface)
{
        struct ifaddrs *ifap, *ifa;

        memset (buf, 0, sizeof (glibtop_netload));

        if (server->sysdeps.netload == 0)
                return;

        if (getifaddrs(&ifap) != 0) {
                glibtop_warn_io_r (server, "getifaddrs");
                return;
        }

#define IFA_STAT(s)     (((struct if_data *)ifa->ifa_data)->ifi_ ## s)

        for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
                if (strcmp (ifa->ifa_name, interface) != 0)
                        continue;

                switch (ifa->ifa_addr->sa_family) {
                case AF_LINK: {
                        struct sockaddr_dl *sdl;
                        struct ifmediareq ifmr;
                        struct ifreq ifr;
                        int s, flags;

                        s = socket(AF_INET, SOCK_DGRAM, 0);
                        if (s < 0) {
                                glibtop_warn_io_r(server, "socket(AF_INET)");
                                break;
                        }

                        memset(&ifmr, 0, sizeof(ifmr));
                        (void)strlcpy(ifmr.ifm_name, ifa->ifa_name,
                                sizeof(ifmr.ifm_name));
                        if (ioctl(s, SIOCGIFXMEDIA, (caddr_t)&ifmr) < 0 &&
                            ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) < 0) {
                                glibtop_warn_io_r(server, "ioctl(SIOCGIFMEDIA)");
                        } else {
                                if (IFM_TYPE (ifmr.ifm_current) & IFM_IEEE80211)
                                    buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_WIRELESS);
                                if (IFM_TYPE (ifmr.ifm_active) & IFM_IEEE80211)
                                    buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_WIRELESS);
                        }

                        memset(&ifr, 0, sizeof(ifr));
                        (void)strlcpy(ifr.ifr_name, ifa->ifa_name,
                                sizeof(ifr.ifr_name));
                        if (ioctl(s, SIOCGIFFLAGS, (caddr_t)&ifr) < 0) {
                                glibtop_warn_io_r(server, "ioctl(SIOCGIFFLAGS)");
                                close(s);
                                break;
                        }

                        close(s);

                        flags = (ifr.ifr_flags & 0xffff) | (ifr.ifr_flagshigh << 16);

                        if (flags & IFF_UP)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_UP);
                        if (flags & IFF_BROADCAST)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_BROADCAST);
                        if (flags & IFF_DEBUG)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_DEBUG);
                        if (flags & IFF_LOOPBACK)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_LOOPBACK);
                        if (flags & IFF_POINTOPOINT)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_POINTOPOINT);
                        if (flags & IFF_RUNNING)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_RUNNING);
                        if (flags & IFF_NOARP)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_NOARP);
                        if (flags & IFF_PROMISC)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_PROMISC);
                        if (flags & IFF_ALLMULTI)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_ALLMULTI);
                        if (flags & IFF_OACTIVE)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_OACTIVE);
                        if (flags & IFF_SIMPLEX)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_SIMPLEX);
                        if (flags & IFF_LINK0)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_LINK0);
                        if (flags & IFF_LINK1)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_LINK1);
                        if (flags & IFF_LINK2)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_LINK2);
                        if (flags & IFF_ALTPHYS)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_ALTPHYS);
                        if (flags & IFF_MULTICAST)
                                buf->if_flags |= (1L << GLIBTOP_IF_FLAGS_MULTICAST);

                        buf->packets_in = IFA_STAT(ipackets);
                        buf->packets_out = IFA_STAT(opackets);
                        buf->packets_total = buf->packets_in + buf->packets_out;

                        buf->bytes_in = IFA_STAT(ibytes);
                        buf->bytes_out = IFA_STAT(obytes);
                        buf->bytes_total = buf->bytes_in + buf->bytes_out;

                        buf->errors_in = IFA_STAT(ierrors);
                        buf->errors_out = IFA_STAT(oerrors);
                        buf->errors_total = buf->errors_in + buf->errors_out;

                        buf->collisions = IFA_STAT(collisions);

                        sdl = (struct sockaddr_dl *)(void *)ifa->ifa_addr;
                        memcpy(buf->hwaddress, LLADDR(sdl),
                                sizeof(buf->hwaddress));
                        buf->mtu = IFA_STAT(mtu);
                        buf->flags |= _glibtop_sysdeps_netload;
                        break;
                }
                case AF_INET: {
                        struct sockaddr_in *sin;

                        sin = (struct sockaddr_in *)(void *)ifa->ifa_addr;
                        buf->address = sin->sin_addr.s_addr;
                        sin = (struct sockaddr_in *)(void *)ifa->ifa_netmask;
                        buf->subnet = sin->sin_addr.s_addr & buf->address;
                        buf->flags |= _glibtop_sysdeps_netload_data;
                        break;
                }
                case AF_INET6: {
                        struct sockaddr_in6 *sin6;

                        sin6 = (struct sockaddr_in6 *)(void *)ifa->ifa_addr;
                        memcpy(buf->address6, &sin6->sin6_addr,
                                sizeof(buf->address6));
                        buf->scope6 = (guint8 )sin6->sin6_scope_id;
                        sin6 = (struct sockaddr_in6 *)(void *)ifa->ifa_netmask;
                        memcpy(buf->prefix6, &sin6->sin6_addr,
                                sizeof(buf->prefix6));
                        buf->flags |= _glibtop_sysdeps_netload6;
                        break;
                }
                } // switch() end
        }
        freeifaddrs(ifap);
}