ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/network_stats.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/network_stats.c (file contents):
Revision 1.52 by tdb, Mon Mar 8 11:58:53 2004 UTC vs.
Revision 1.82 by tdb, Sun Oct 3 18:35:57 2010 UTC

# Line 1 | Line 1
1   /*
2 < * i-scream central monitoring system
2 > * i-scream libstatgrab
3   * http://www.i-scream.org
4   * Copyright (C) 2000-2004 i-scream
5   *
# Line 28 | Line 28
28   #include <stdlib.h>
29   #include <string.h>
30   #include "statgrab.h"
31 + #include "vector.h"
32 + #include "tools.h"
33   #include <time.h>
34   #ifdef SOLARIS
35   #include <kstat.h>
# Line 38 | Line 40
40   #include <net/if.h>
41   #include <netinet/in.h>
42   #include <sys/sockio.h>
43 + #include <unistd.h>
44   #endif
45   #ifdef LINUX
46   #include <stdio.h>
47   #include <sys/types.h>
45 #include <regex.h>
48   #include <sys/ioctl.h>
49   #include <sys/socket.h>
50   #include <net/if.h>
51   #include <ctype.h>
52 < #include "tools.h"
53 < /* Stuff which could be defined by defining KERNEL, but
54 < * that would be a bad idea, so we'll just declare it here
55 < */
52 > #include <linux/version.h>
53 > #include <asm/types.h>
54 > /* These aren't defined by asm/types.h unless the kernel is being
55 >   compiled, but some versions of ethtool.h need them. */
56   typedef __uint8_t u8;
57   typedef __uint16_t u16;
58   typedef __uint32_t u32;
# Line 66 | Line 68 | typedef __uint64_t u64;
68   #include <net/if.h>
69   #include <net/if_media.h>
70   #include <sys/ioctl.h>
71 + #include <unistd.h>
72   #endif
73 + #ifdef AIX
74 + #include <sys/types.h>
75 + #include <sys/socket.h>
76 + #include <net/if.h>
77 + #include <errno.h>
78 + #include <strings.h>
79 + #include <sys/ioctl.h>
80 + #include <unistd.h>
81 + #include <libperfstat.h>
82 + #endif
83 + #ifdef HPUX
84 + #include <fcntl.h>
85 + #include <sys/types.h>
86 + #include <sys/socket.h>
87 + #include <net/if.h>
88 + #include <errno.h>
89 + #include <strings.h>
90 + #include <sys/ioctl.h>
91 + #include <unistd.h>
92 + #include <sys/un.h>
93 + #include <sys/stropts.h>
94 + #include <sys/dlpi.h>
95 + #include <sys/dlpi_ext.h>
96 + #include <sys/mib.h>
97 + #define HP_UX11 /* Currently no HP-UX below 11 is supported, fix here if this changes */
98 + #endif
99 + #ifdef WIN32
100 + #include <windows.h>
101 + #include <Iphlpapi.h>
102 + #include "win32.h"
103 + #endif
104  
105 < static network_stat_t *network_stats=NULL;
106 < static int interfaces=0;
105 > static void network_stat_init(sg_network_io_stats *s) {
106 >        s->interface_name = NULL;
107 >        s->tx = 0;
108 >        s->rx = 0;
109 >        s->ipackets = 0;
110 >        s->opackets = 0;
111 >        s->ierrors = 0;
112 >        s->oerrors = 0;
113 >        s->collisions = 0;
114 > }
115  
116 < void network_stat_init(int start, int end, network_stat_t *net_stats){
117 <
76 <        for(net_stats+=start; start<end; start++){
77 <                net_stats->interface_name=NULL;
78 <                net_stats->tx=0;
79 <                net_stats->rx=0;
80 <                net_stats->ipackets=0;
81 <                net_stats->opackets=0;
82 <                net_stats->ierrors=0;
83 <                net_stats->oerrors=0;
84 <                net_stats->collisions=0;
85 <                net_stats++;
86 <        }
116 > static void network_stat_destroy(sg_network_io_stats *s) {
117 >        free(s->interface_name);
118   }
119  
120 < network_stat_t *network_stat_malloc(int needed_entries, int *cur_entries, network_stat_t *net_stats){
120 > VECTOR_DECLARE_STATIC(network_stats, sg_network_io_stats, 5,
121 >                      network_stat_init, network_stat_destroy);
122  
123 <        if(net_stats==NULL){
123 > #ifdef WIN32
124 > static PMIB_IFTABLE win32_get_devices()
125 > {
126 >        PMIB_IFTABLE if_table;
127 >        PMIB_IFTABLE tmp;
128 >        unsigned long dwSize = 0;
129  
130 <                if((net_stats=malloc(needed_entries * sizeof(network_stat_t)))==NULL){
131 <                        return NULL;
132 <                }
133 <                network_stat_init(0, needed_entries, net_stats);
97 <                *cur_entries=needed_entries;
98 <
99 <                return net_stats;
130 >        // Allocate memory for pointers
131 >        if_table = sg_malloc(sizeof(MIB_IFTABLE));
132 >        if(if_table == NULL) {
133 >                return NULL;
134          }
135  
136 <
137 <        if(*cur_entries<needed_entries){
138 <                net_stats=realloc(net_stats, (sizeof(network_stat_t)*needed_entries));
139 <                if(net_stats==NULL){
136 >        // Get necessary size for the buffer
137 >        if(GetIfTable(if_table, &dwSize, 0) == ERROR_INSUFFICIENT_BUFFER) {
138 >                tmp = sg_realloc(if_table, dwSize);
139 >                if(tmp == NULL) {
140 >                        free(if_table);
141                          return NULL;
142                  }
143 <                network_stat_init(*cur_entries, needed_entries, net_stats);
109 <                *cur_entries=needed_entries;
143 >                if_table = tmp;
144          }
145  
146 <        return net_stats;
146 >        // Get the data
147 >        if(GetIfTable(if_table, &dwSize, 0) != NO_ERROR) {
148 >                free(if_table);
149 >                return NULL;
150 >        }
151 >        return if_table;
152   }
153 + #endif /* WIN32 */
154  
155 + sg_network_io_stats *sg_get_network_io_stats(int *entries){
156 +        int interfaces;
157 + #ifndef AIX
158 +        sg_network_io_stats *network_stat_ptr;
159 + #endif
160 + #ifdef HPUX
161 + /*
162 + * talk to Data Link Provider Interface aka /dev/dlpi
163 + * see: http://docs.hp.com/hpux/onlinedocs/B2355-90139/B2355-90139.html
164 + */
165 + #define BUF_SIZE 40960
166  
167 < network_stat_t *get_network_stats(int *entries){
167 >        u_long *ctrl_area = malloc(BUF_SIZE);
168 >        u_long *data_area = malloc(BUF_SIZE);
169 >        u_long *ppa_area = malloc(BUF_SIZE);
170 >        struct strbuf ctrl_buf = {BUF_SIZE, 0, (char*) ctrl_area};
171 >        struct strbuf data_buf = {BUF_SIZE, 0, (char*) data_area};
172  
173 <        static int sizeof_network_stats=0;      
174 <        network_stat_t *network_stat_ptr;
173 >        dl_hp_ppa_info_t *ppa_info;
174 >        dl_hp_ppa_req_t *ppa_req;
175 >        dl_hp_ppa_ack_t *ppa_ack;
176 >        char name_buf[24];
177 >        int fd = -1, ppa_count, count, flags;
178 > #endif
179  
180   #ifdef SOLARIS
181 <        kstat_ctl_t *kc;
182 <        kstat_t *ksp;
181 >        kstat_ctl_t *kc;
182 >        kstat_t *ksp;
183          kstat_named_t *knp;
184   #endif
185  
# Line 135 | Line 194 | network_stat_t *get_network_stats(int *entries){
194          struct ifaddrs *net, *net_ptr;
195          struct if_data *net_data;
196   #endif
197 + #ifdef WIN32
198 +        PMIB_IFTABLE if_table;
199 +        MIB_IFROW if_row;
200 +        int i, no, j;
201  
202 +        /* used for duplicate interface names. 5 for space, hash, up to two
203 +         * numbers and terminating slash */
204 +        char buf[5];
205 + #endif
206 + #ifdef AIX
207 +        int i;
208 +        perfstat_netinterface_t *statp;
209 +        perfstat_id_t first;
210 + #endif
211 +
212 + #ifdef HPUX
213 +        interfaces=0;
214 +
215 +        if ((fd = open("/dev/dlpi", O_RDWR)) < 0) {
216 +                sg_set_error_with_errno(SG_ERROR_OPEN, "/dev/dlpi");
217 +                return NULL;
218 +        }
219 +
220 +        ppa_req = (dl_hp_ppa_req_t *) ctrl_area;
221 +        ppa_ack = (dl_hp_ppa_ack_t *) ctrl_area;
222 +
223 +        ppa_req->dl_primitive = DL_HP_PPA_REQ;
224 +
225 +        ctrl_buf.len = sizeof(dl_hp_ppa_req_t);
226 +        if(putmsg(fd, &ctrl_buf, 0, 0) < 0) {
227 +                sg_set_error_with_errno(SG_ERROR_PUTMSG, "DL_HP_PPA_REQ");
228 +                return NULL;
229 +        }
230 +
231 +        flags = 0;
232 +        ctrl_area[0] = 0;
233 +
234 +        if (getmsg(fd, &ctrl_buf, &data_buf, &flags) < 0) {
235 +                sg_set_error_with_errno(SG_ERROR_GETMSG, "DL_HP_PPA_REQ");
236 +                return NULL;
237 +        }
238 +
239 +        if (ppa_ack->dl_length == 0) {
240 +                sg_set_error_with_errno(SG_ERROR_PARSE, "DL_HP_PPA_REQ");
241 +                return NULL;
242 +        }
243 +
244 +        // save all the PPA information
245 +        memcpy ((u_char*) ppa_area, (u_char*) ctrl_area + ppa_ack->dl_offset, ppa_ack->dl_length);
246 +        ppa_count = ppa_ack->dl_count;
247 +
248 +        for (count = 0, ppa_info = (dl_hp_ppa_info_t*) ppa_area;
249 +             count < ppa_count;
250 +             count++) {
251 +                dl_get_statistics_req_t *get_statistics_req = (dl_get_statistics_req_t*) ctrl_area;
252 +                dl_get_statistics_ack_t *get_statistics_ack = (dl_get_statistics_ack_t*) ctrl_area;
253 +
254 +                dl_attach_req_t *attach_req;
255 +                dl_detach_req_t *detach_req;
256 +                mib_ifEntry *mib_ptr;
257 + #ifdef HP_UX11
258 +                mib_Dot3StatsEntry *mib_Dot3_ptr;
259 + #endif
260 +
261 +                attach_req = (dl_attach_req_t*) ctrl_area;
262 +                attach_req->dl_primitive = DL_ATTACH_REQ;
263 +                attach_req->dl_ppa = ppa_info[count].dl_ppa;
264 +                ctrl_buf.len = sizeof(dl_attach_req_t);
265 +                if (putmsg(fd, &ctrl_buf, 0, 0) < 0) {
266 +                        sg_set_error_with_errno(SG_ERROR_PUTMSG, "DL_ATTACH_REQ");
267 +                        return NULL;
268 +                }
269 +
270 +                ctrl_area[0] = 0;
271 +                if (getmsg(fd, &ctrl_buf, &data_buf, &flags) < 0) {
272 +                        sg_set_error_with_errno(SG_ERROR_GETMSG, "DL_ATTACH_REQ");
273 +                        return NULL;
274 +                }
275 +
276 +                get_statistics_req->dl_primitive = DL_GET_STATISTICS_REQ;
277 +                ctrl_buf.len = sizeof(dl_get_statistics_req_t);
278 +
279 +                if (putmsg(fd, &ctrl_buf, NULL, 0) < 0) {
280 +                        sg_set_error_with_errno(SG_ERROR_PUTMSG, "DL_GET_STATISTICS_REQ");
281 +                        return NULL;
282 +                }
283 +
284 +                flags = 0;
285 +                ctrl_area[0] = 0;
286 +
287 +                if (getmsg(fd, &ctrl_buf, NULL, &flags) < 0) {
288 +                        sg_set_error_with_errno(SG_ERROR_GETMSG, "DL_GET_STATISTICS_REQ");
289 +                        return NULL;
290 +                }
291 +                if (get_statistics_ack->dl_primitive != DL_GET_STATISTICS_ACK) {
292 +                        sg_set_error_with_errno(SG_ERROR_PARSE, "DL_GET_STATISTICS_ACK");
293 +                        return NULL;
294 +                }
295 +
296 +                mib_ptr = (mib_ifEntry*) ((u_char*) ctrl_area + get_statistics_ack->dl_stat_offset);
297 +
298 +                if (0 == (mib_ptr->ifOper & 1)) {
299 +                        continue;
300 +                }
301 +
302 +                if (VECTOR_RESIZE(network_stats, interfaces + 1) < 0) {
303 +                        return NULL;
304 +                }
305 +                network_stat_ptr=network_stats+interfaces;
306 +
307 +                snprintf( name_buf, sizeof(name_buf), "lan%d", ppa_info[count].dl_ppa );
308 +
309 +                if (sg_update_string(&network_stat_ptr->interface_name, name_buf ) < 0 ) {
310 +                        return NULL;
311 +                }
312 +                network_stat_ptr->rx = mib_ptr->ifInOctets;
313 +                network_stat_ptr->tx = mib_ptr->ifOutOctets;
314 +                network_stat_ptr->ipackets = mib_ptr->ifInUcastPkts + mib_ptr->ifInNUcastPkts;
315 +                network_stat_ptr->opackets = mib_ptr->ifOutUcastPkts + mib_ptr->ifOutNUcastPkts;
316 +                network_stat_ptr->ierrors = mib_ptr->ifInErrors;
317 +                network_stat_ptr->oerrors = mib_ptr->ifOutErrors;
318 + #ifdef HP_UX11
319 +                mib_Dot3_ptr = (mib_Dot3StatsEntry *) (void *) ((int) mib_ptr + sizeof (mib_ifEntry));
320 +                network_stat_ptr->collisions = mib_Dot3_ptr->dot3StatsSingleCollisionFrames
321 +                                             + mib_Dot3_ptr->dot3StatsMultipleCollisionFrames;
322 + #else
323 +                network_stat_ptr->collisions = 0; /* currently unknown */
324 + #endif
325 +                network_stat_ptr->systime = time(NULL);
326 +                interfaces++;
327 +
328 +                detach_req = (dl_detach_req_t*) ctrl_area;
329 +                detach_req->dl_primitive = DL_DETACH_REQ;
330 +                ctrl_buf.len = sizeof(dl_detach_req_t);
331 +                if (putmsg(fd, &ctrl_buf, 0, 0) < 0) {
332 +                        sg_set_error_with_errno(SG_ERROR_PUTMSG, "DL_DETACH_REQ");
333 +                        return NULL;
334 +                }
335 +
336 +                ctrl_area[0] = 0;
337 +                flags = 0;
338 +                if (getmsg(fd, &ctrl_buf, &data_buf, &flags) < 0) {
339 +                        sg_set_error_with_errno(SG_ERROR_GETMSG, "DL_DETACH_REQ");
340 +                        return NULL;
341 +                }
342 +        }
343 +
344 +        close(fd);
345 +
346 +        free(ctrl_area);
347 +        free(data_area);
348 +        free(ppa_area);
349 +
350 + #endif
351 +
352   #ifdef ALLBSD
353 <        if(getifaddrs(&net) != 0){
353 >        if (getifaddrs(&net) != 0){
354 >                sg_set_error_with_errno(SG_ERROR_GETIFADDRS, NULL);
355                  return NULL;
356          }
357  
358          interfaces=0;
359          
360          for(net_ptr=net;net_ptr!=NULL;net_ptr=net_ptr->ifa_next){
361 <                if(net_ptr->ifa_addr->sa_family != AF_LINK) continue;
362 <                network_stats=network_stat_malloc((interfaces+1), &sizeof_network_stats, network_stats);
363 <                if(network_stats==NULL){
361 >                if (net_ptr->ifa_addr->sa_family != AF_LINK) continue;
362 >
363 >                if (VECTOR_RESIZE(network_stats, interfaces + 1) < 0) {
364                          return NULL;
365                  }
366                  network_stat_ptr=network_stats+interfaces;
367                  
368 <                if(network_stat_ptr->interface_name!=NULL) free(network_stat_ptr->interface_name);
369 <                network_stat_ptr->interface_name=strdup(net_ptr->ifa_name);
370 <                if(network_stat_ptr->interface_name==NULL) return NULL;
368 >                if (sg_update_string(&network_stat_ptr->interface_name,
369 >                                     net_ptr->ifa_name) < 0) {
370 >                        return NULL;
371 >                }
372                  net_data=(struct if_data *)net_ptr->ifa_data;
373                  network_stat_ptr->rx=net_data->ifi_ibytes;
374                  network_stat_ptr->tx=net_data->ifi_obytes;
# Line 167 | Line 382 | network_stat_t *get_network_stats(int *entries){
382          }
383          freeifaddrs(net);      
384   #endif
385 + #ifdef AIX
386 +        /* check how many perfstat_netinterface_t structures are available */
387 +        interfaces = perfstat_netinterface(NULL, NULL, sizeof(perfstat_netinterface_t), 0);
388  
389 +        /* allocate enough memory for all the structures */
390 +        statp = calloc(interfaces, sizeof(perfstat_netinterface_t));
391 +
392 +        /* set name to first interface */
393 +        strcpy(first.name, FIRST_NETINTERFACE);
394 +
395 +        /* ask to get all the structures available in one call */
396 +        /* return code is number of structures returned */
397 +        interfaces = perfstat_netinterface(&first, statp, sizeof(perfstat_netinterface_t), interfaces);
398 +        if (-1 == interfaces) {
399 +                sg_set_error(SG_ERROR_SYSCTLBYNAME, "perfstat_netinterface");
400 +                free(statp);
401 +                return NULL;
402 +        }
403 +
404 +        if (VECTOR_RESIZE(network_stats, interfaces) < 0) {
405 +                sg_set_error(SG_ERROR_MALLOC, NULL);
406 +                free(statp);
407 +                return NULL;
408 +        }
409 +
410 +        /* print statistics for each of the interfaces */
411 +        for (i = 0; i < interfaces; i++) {
412 +                if (sg_update_string(&network_stats[i].interface_name, statp[i].name) < 0) {
413 +                        free(statp);
414 +                        return NULL;
415 +                }
416 +                network_stats[i].tx = statp[i].obytes;
417 +                network_stats[i].rx = statp[i].ibytes;
418 +                network_stats[i].opackets = statp[i].opackets;
419 +                network_stats[i].ipackets = statp[i].ipackets;
420 +                network_stats[i].oerrors = statp[i].oerrors;
421 +                network_stats[i].ierrors = statp[i].ierrors;
422 +                network_stats[i].collisions = statp[i].collisions;
423 +                network_stats[i].systime = time(NULL);
424 +        }
425 +
426 +        free(statp);
427 + #endif
428   #ifdef SOLARIS
429 <        if ((kc = kstat_open()) == NULL) {
430 <                return NULL;
431 <        }
429 >        if ((kc = kstat_open()) == NULL) {
430 >                sg_set_error(SG_ERROR_KSTAT_OPEN, NULL);
431 >                return NULL;
432 >        }
433  
434          interfaces=0;
435  
436 <        for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
437 <                if (!strcmp(ksp->ks_class, "net")) {
438 <                        kstat_read(kc, ksp, NULL);
436 >        for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
437 >                if (strcmp(ksp->ks_class, "net") == 0) {
438 >                        kstat_read(kc, ksp, NULL);
439  
440   #ifdef SOL7
441 < #define RLOOKUP "rbytes"
442 < #define WLOOKUP "obytes"
441 > #define LRX "rbytes"
442 > #define LTX "obytes"
443 > #define LIPACKETS "ipackets"
444 > #define LOPACKETS "opackets"
445   #define VALTYPE value.ui32
446   #else
447 < #define RLOOKUP "rbytes64"
448 < #define WLOOKUP "obytes64"
447 > #define LRX "rbytes64"
448 > #define LTX "obytes64"
449 > #define LIPACKETS "ipackets64"
450 > #define LOPACKETS "opackets64"
451   #define VALTYPE value.ui64
452   #endif
453  
454 <                        if((knp=kstat_data_lookup(ksp, RLOOKUP))==NULL){
454 >                        /* Read rx */
455 >                        if((knp=kstat_data_lookup(ksp, LRX))==NULL){
456                                  /* This is a network interface, but it doesn't
457                                   * have the rbytes/obytes values; for instance,
458                                   * the loopback devices have this behaviour
459                                   * (although they do track packets in/out). */
460 +                                /* FIXME: Show packet counts when byte counts
461 +                                 * not available. */
462                                  continue;
463                          }
464  
465 <                        network_stats=network_stat_malloc((interfaces+1), &sizeof_network_stats, network_stats);
466 <                        if(network_stats==NULL){
465 >                        /* Create new network_stats */
466 >                        if (VECTOR_RESIZE(network_stats, interfaces + 1) < 0) {
467 >                                kstat_close(kc);
468                                  return NULL;
469                          }
470                          network_stat_ptr=network_stats+interfaces;
471 +
472 +                        /* Read interface name */
473 +                        if (sg_update_string(&network_stat_ptr->interface_name,
474 +                                             ksp->ks_name) < 0) {
475 +                                kstat_close(kc);
476 +                                return NULL;
477 +                        }
478 +
479 +                        /* Finish reading rx */
480                          network_stat_ptr->rx=knp->VALTYPE;
481  
482 <                        if((knp=kstat_data_lookup(ksp, WLOOKUP))==NULL){
482 >                        /* Read tx */
483 >                        if((knp=kstat_data_lookup(ksp, LTX))==NULL){
484                                  continue;
485                          }
486                          network_stat_ptr->tx=knp->VALTYPE;
487 <                        if(network_stat_ptr->interface_name!=NULL){
488 <                                free(network_stat_ptr->interface_name);
487 >
488 >                        /* Read ipackets */
489 >                        if((knp=kstat_data_lookup(ksp, LIPACKETS))==NULL){
490 >                                continue;
491                          }
492 <                        network_stat_ptr->interface_name=strdup(ksp->ks_name);
492 >                        network_stat_ptr->ipackets=knp->VALTYPE;
493  
494 +                        /* Read opackets */
495 +                        if((knp=kstat_data_lookup(ksp, LOPACKETS))==NULL){
496 +                                continue;
497 +                        }
498 +                        network_stat_ptr->opackets=knp->VALTYPE;
499 +
500 +                        /* Read ierrors */
501 +                        if((knp=kstat_data_lookup(ksp, "ierrors"))==NULL){
502 +                                continue;
503 +                        }
504 +                        network_stat_ptr->ierrors=knp->value.ui32;
505 +
506 +                        /* Read oerrors */
507 +                        if((knp=kstat_data_lookup(ksp, "oerrors"))==NULL){
508 +                                continue;
509 +                        }
510 +                        network_stat_ptr->oerrors=knp->value.ui32;
511 +
512 +                        /* Read collisions */
513 +                        if((knp=kstat_data_lookup(ksp, "collisions"))==NULL){
514 +                                continue;
515 +                        }
516 +                        network_stat_ptr->collisions=knp->value.ui32;
517 +
518 +
519 +                        /* Store systime */
520                          network_stat_ptr->systime=time(NULL);
521 +
522                          interfaces++;
523                  }
524          }
# Line 223 | Line 528 | network_stat_t *get_network_stats(int *entries){
528   #ifdef LINUX
529          f=fopen("/proc/net/dev", "r");
530          if(f==NULL){
531 +                sg_set_error_with_errno(SG_ERROR_OPEN, "/proc/net/dev");
532                  return NULL;
533          }
534          /* read the 2 lines.. Its the title, so we dont care :) */
# Line 231 | Line 537 | network_stat_t *get_network_stats(int *entries){
537  
538  
539          if((regcomp(&regex, "^ *([^:]+): *([0-9]+) +([0-9]+) +([0-9]+) +[0-9]+ +[0-9]+ +[0-9]+ +[0-9]+ +[0-9]+ +([0-9]+) +([0-9]+) +([0-9]+) +[0-9]+ +[0-9]+ +([0-9]+)", REG_EXTENDED))!=0){
540 +                sg_set_error(SG_ERROR_PARSE, NULL);
541                  return NULL;
542          }
543  
# Line 240 | Line 547 | network_stat_t *get_network_stats(int *entries){
547                  if((regexec(&regex, line, 9, line_match, 0))!=0){
548                          continue;
549                  }
550 <                network_stats=network_stat_malloc((interfaces+1), &sizeof_network_stats, network_stats);
551 <                if(network_stats==NULL){
552 <                        return NULL;
550 >
551 >                if (VECTOR_RESIZE(network_stats, interfaces + 1) < 0) {
552 >                        return NULL;
553                  }
554 <                network_stat_ptr=network_stats+interfaces;
554 >                network_stat_ptr=network_stats+interfaces;
555  
556                  if(network_stat_ptr->interface_name!=NULL){
557                          free(network_stat_ptr->interface_name);
558                  }
559  
560 <                network_stat_ptr->interface_name=get_string_match(line, &line_match[1]);
561 <                network_stat_ptr->rx=get_ll_match(line, &line_match[2]);
562 <                network_stat_ptr->tx=get_ll_match(line, &line_match[5]);
563 <                network_stat_ptr->ipackets=get_ll_match(line, &line_match[3]);
564 <                network_stat_ptr->opackets=get_ll_match(line, &line_match[6]);
565 <                network_stat_ptr->ierrors=get_ll_match(line, &line_match[4]);
566 <                network_stat_ptr->oerrors=get_ll_match(line, &line_match[7]);
567 <                network_stat_ptr->collisions=get_ll_match(line, &line_match[8]);
560 >                network_stat_ptr->interface_name=sg_get_string_match(line, &line_match[1]);
561 >                network_stat_ptr->rx=sg_get_ll_match(line, &line_match[2]);
562 >                network_stat_ptr->tx=sg_get_ll_match(line, &line_match[5]);
563 >                network_stat_ptr->ipackets=sg_get_ll_match(line, &line_match[3]);
564 >                network_stat_ptr->opackets=sg_get_ll_match(line, &line_match[6]);
565 >                network_stat_ptr->ierrors=sg_get_ll_match(line, &line_match[4]);
566 >                network_stat_ptr->oerrors=sg_get_ll_match(line, &line_match[7]);
567 >                network_stat_ptr->collisions=sg_get_ll_match(line, &line_match[8]);
568                  network_stat_ptr->systime=time(NULL);
569  
570                  interfaces++;
# Line 268 | Line 575 | network_stat_t *get_network_stats(int *entries){
575   #endif
576  
577   #ifdef CYGWIN
578 +        sg_set_error(SG_ERROR_UNSUPPORTED, "Cygwin");
579          return NULL;
580   #endif
581  
582 + #ifdef WIN32
583 +        interfaces = 0;
584 +
585 +        if((if_table = win32_get_devices()) == NULL) {
586 +                sg_set_error(SG_ERROR_DEVICES, "network");
587 +                return NULL;
588 +        }
589 +
590 +        if(VECTOR_RESIZE(network_stats, if_table->dwNumEntries) < 0) {
591 +                free(if_table);
592 +                return NULL;
593 +        }
594 +
595 +        for (i=0; i<if_table->dwNumEntries; i++) {
596 +                network_stat_ptr=network_stats+i;
597 +                if_row = if_table->table[i];
598 +
599 +                if(sg_update_string(&network_stat_ptr->interface_name,
600 +                                        if_row.bDescr) < 0) {
601 +                        free(if_table);
602 +                        return NULL;
603 +                }
604 +                network_stat_ptr->tx = if_row.dwOutOctets;
605 +                network_stat_ptr->rx = if_row.dwInOctets;
606 +                network_stat_ptr->ipackets = if_row.dwInUcastPkts + if_row.dwInNUcastPkts;
607 +                network_stat_ptr->opackets = if_row.dwOutUcastPkts + if_row.dwOutNUcastPkts;
608 +                network_stat_ptr->ierrors = if_row.dwInErrors;
609 +                network_stat_ptr->oerrors = if_row.dwOutErrors;
610 +                network_stat_ptr->collisions = 0; /* can't do that */
611 +                network_stat_ptr->systime = time(NULL);
612 +
613 +                interfaces++;
614 +        }
615 +        free(if_table);
616 +
617 +        /* Please say there's a nicer way to do this...  If windows has two (or
618 +         * more) identical network cards, GetIfTable returns them with the same
619 +         * name, not like in Device Manager where the other has a #2 etc after
620 +         * it. So, add the #number here. Should we be doing this? Or should the
621 +         * end programs be dealing with duplicate names? Currently breaks
622 +         * watch.pl in rrdgraphing. But Unix does not have the issue of
623 +         * duplicate net device names.
624 +         */
625 +        for (i=0; i<interfaces; i++) {
626 +                no = 2;
627 +                for(j=i+1; j<interfaces; j++) {
628 +                        network_stat_ptr=network_stats+j;
629 +                        if(strcmp(network_stats[i].interface_name,
630 +                                        network_stat_ptr->interface_name) == 0) {
631 +                                if(snprintf(buf, sizeof(buf), " #%d", no) < 0) {
632 +                                        break;
633 +                                }
634 +                                if(sg_concat_string(&network_stat_ptr->interface_name, buf) != 0) {
635 +                                        return NULL;
636 +                                }
637 +
638 +                                no++;
639 +                        }
640 +                }
641 +        }
642 + #endif
643 +
644          *entries=interfaces;
645  
646          return network_stats;  
647   }
648  
649 < long long transfer_diff(long long new, long long old){
650 < #if defined(SOL7) || defined(LINUX) || defined(FREEBSD) || defined(DFBSD)
651 < #define MAXVAL 0xffffffffLL
649 > static long long transfer_diff(long long new, long long old){
650 > #if defined(SOL7) || defined(LINUX) || defined(FREEBSD) || defined(DFBSD) || defined(OPENBSD) || defined(WIN32)
651 >        /* 32-bit quantities, so we must explicitly deal with wraparound. */
652 > #define MAXVAL 0x100000000LL
653 >        if (new >= old) {
654 >                return new - old;
655 >        } else {
656 >                return MAXVAL + new - old;
657 >        }
658   #else
659 < #define MAXVAL 0xffffffffffffffffLL
659 >        /* 64-bit quantities, so plain subtraction works. */
660 >        return new - old;
661   #endif
285        long long result;
286        if(new>=old){
287                result = (new-old);
288        }else{
289                result = (MAXVAL+(new-old));
290        }
291
292        return result;
293
662   }
663  
664 < network_stat_t *get_network_stats_diff(int *entries) {
665 <        static network_stat_t *diff = NULL;
666 <        static int diff_count = 0;
667 <        network_stat_t *src, *dest;
668 <        int i, j, new_count;
664 > sg_network_io_stats *sg_get_network_io_stats_diff(int *entries) {
665 >        VECTOR_DECLARE_STATIC(diff, sg_network_io_stats, 1,
666 >                              network_stat_init, network_stat_destroy);
667 >        sg_network_io_stats *src = NULL, *dest;
668 >        int i, j, diff_count, new_count;
669  
670          if (network_stats == NULL) {
671                  /* No previous stats, so we can't calculate a difference. */
672 <                return get_network_stats(entries);
672 >                return sg_get_network_io_stats(entries);
673          }
674  
675          /* Resize the results array to match the previous stats. */
676 <        diff = network_stat_malloc(interfaces, &diff_count, diff);
677 <        if (diff == NULL) {
676 >        diff_count = VECTOR_SIZE(network_stats);
677 >        if (VECTOR_RESIZE(diff, diff_count) < 0) {
678                  return NULL;
679          }
680  
# Line 315 | Line 683 | network_stat_t *get_network_stats_diff(int *entries) {
683                  src = &network_stats[i];
684                  dest = &diff[i];
685  
686 <                if (dest->interface_name != NULL) {
687 <                        free(dest->interface_name);
686 >                if (sg_update_string(&dest->interface_name,
687 >                                     src->interface_name) < 0) {
688 >                        return NULL;
689                  }
321                dest->interface_name = strdup(src->interface_name);
690                  dest->rx = src->rx;
691                  dest->tx = src->tx;
692                  dest->ipackets = src->ipackets;
# Line 330 | Line 698 | network_stat_t *get_network_stats_diff(int *entries) {
698          }
699  
700          /* Get a new set of stats. */
701 <        if (get_network_stats(&new_count) == NULL) {
701 >        if (sg_get_network_io_stats(&new_count) == NULL) {
702                  return NULL;
703          }
704  
# Line 367 | Line 735 | network_stat_t *get_network_stats_diff(int *entries) {
735          *entries = diff_count;
736          return diff;
737   }
370 /* NETWORK INTERFACE STATS */
738  
739 < void network_iface_stat_init(int start, int end, network_iface_stat_t *net_stats){
739 > int sg_network_io_compare_name(const void *va, const void *vb) {
740 >        const sg_network_io_stats *a = (const sg_network_io_stats *)va;
741 >        const sg_network_io_stats *b = (const sg_network_io_stats *)vb;
742  
743 <        for(net_stats+=start; start<end; start++){
375 <                net_stats->interface_name=NULL;
376 <                net_stats->speed=0;
377 <                net_stats->dup=UNKNOWN_DUPLEX;
378 <                net_stats++;
379 <        }
743 >        return strcmp(a->interface_name, b->interface_name);
744   }
745  
746 < network_iface_stat_t *network_iface_stat_malloc(int needed_entries, int *cur_entries, network_iface_stat_t *net_stats){
746 > /* NETWORK INTERFACE STATS */
747  
748 <        if(net_stats==NULL){
748 > static void network_iface_stat_init(sg_network_iface_stats *s) {
749 >        s->interface_name = NULL;
750 >        s->speed = 0;
751 >        s->duplex = SG_IFACE_DUPLEX_UNKNOWN;
752 > }
753  
754 <                if((net_stats=malloc(needed_entries * sizeof(network_iface_stat_t)))==NULL){
755 <                        return NULL;
388 <                }
389 <                network_iface_stat_init(0, needed_entries, net_stats);
390 <                *cur_entries=needed_entries;
391 <
392 <                return net_stats;
393 <        }
394 <
395 <
396 <        if(*cur_entries<needed_entries){
397 <                net_stats=realloc(net_stats, (sizeof(network_iface_stat_t)*needed_entries));
398 <                if(net_stats==NULL){
399 <                        return NULL;
400 <                }
401 <                network_iface_stat_init(*cur_entries, needed_entries, net_stats);
402 <                *cur_entries=needed_entries;
403 <        }
404 <
405 <        return net_stats;
754 > static void network_iface_stat_destroy(sg_network_iface_stats *s) {
755 >        free(s->interface_name);
756   }
757  
758 < network_iface_stat_t *get_network_iface_stats(int *entries){
759 <        static network_iface_stat_t *network_iface_stats;
760 <        network_iface_stat_t *network_iface_stat_ptr;
761 <        static int sizeof_network_iface_stats=0;        
758 > sg_network_iface_stats *sg_get_network_iface_stats(int *entries){
759 >        VECTOR_DECLARE_STATIC(network_iface_stats, sg_network_iface_stats, 5,
760 >                              network_iface_stat_init, network_iface_stat_destroy);
761 >        sg_network_iface_stats *network_iface_stat_ptr;
762          int ifaces = 0;
763  
764   #ifdef SOLARIS
765 <        kstat_ctl_t *kc;
766 <        kstat_t *ksp;
765 >        kstat_ctl_t *kc;
766 >        kstat_t *ksp;
767          kstat_named_t *knp;
768          int sock;
769   #endif
770   #ifdef ALLBSD
421        struct ifaddrs *net, *net_ptr;
771          struct ifmediareq ifmed;
772 +        struct ifaddrs *net, *net_ptr;
773          struct ifreq ifr;
774          int sock;
775          int x;
776   #endif
777   #ifdef LINUX
778 <        FILE *f;
779 <        /* Horrible big enough, but it should be easily big enough */
780 <        char line[8096];
778 >        FILE *f;
779 >        /* Horrible big enough, but it should be easily big enough */
780 >        char line[8096];
781          int sock;
782   #endif
783 + #ifdef WIN32
784 +        PMIB_IFTABLE if_table;
785 +        MIB_IFROW if_row;
786 +        int i,j,no;
787 +        char buf[5];
788 + #endif
789 + #ifdef AIX
790 +        int fd, n;
791 +        size_t pagesize;
792 +        struct ifreq *ifr, *lifr, iff;
793 +        struct ifconf ifc;
794 + #endif
795 + #ifdef HPUX
796 +        int fd;
797 +        struct ifreq *ifr, *lifr, iff;
798 +        struct ifconf ifc;
799 + #endif
800  
801   #ifdef ALLBSD
802 <        if(getifaddrs(&net) != 0){
803 <                return NULL;
804 <        }
802 >        if(getifaddrs(&net) != 0){
803 >                sg_set_error_with_errno(SG_ERROR_GETIFADDRS, NULL);
804 >                return NULL;
805 >        }
806  
807          if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == 0) return NULL;
808  
809          for(net_ptr=net; net_ptr!=NULL; net_ptr=net_ptr->ifa_next){
810 <                if(net_ptr->ifa_addr->sa_family != AF_LINK) continue;
443 <                network_iface_stats=network_iface_stat_malloc((ifaces+1), &sizeof_network_iface_stats, network_iface_stats);
444 <                if(network_iface_stats==NULL){
445 <                        return NULL;
446 <                }
447 <                network_iface_stat_ptr = network_iface_stats + ifaces;
810 >                if(net_ptr->ifa_addr->sa_family != AF_LINK) continue;
811  
812 +                if (VECTOR_RESIZE(network_iface_stats, ifaces + 1) < 0) {
813 +                        return NULL;
814 +                }
815 +                network_iface_stat_ptr = network_iface_stats + ifaces;
816 +
817                  memset(&ifr, 0, sizeof(ifr));
818                  strncpy(ifr.ifr_name, net_ptr->ifa_name, sizeof(ifr.ifr_name));
819  
# Line 458 | Line 826 | network_iface_stat_t *get_network_iface_stats(int *ent
826                          network_iface_stat_ptr->up = 0;
827                  }
828  
829 <                if (network_iface_stat_ptr->interface_name != NULL) free(network_iface_stat_ptr->interface_name);
830 <                network_iface_stat_ptr->interface_name = strdup(net_ptr->ifa_name);
831 <                if (network_iface_stat_ptr->interface_name == NULL) return NULL;
829 >                if (sg_update_string(&network_iface_stat_ptr->interface_name,
830 >                                     net_ptr->ifa_name) < 0) {
831 >                        return NULL;
832 >                }
833  
834                  network_iface_stat_ptr->speed = 0;
835 <                network_iface_stat_ptr->dup = UNKNOWN_DUPLEX;
835 >                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
836                  ifaces++;
837  
838                  memset(&ifmed, 0, sizeof(struct ifmediareq));
839 <                strlcpy(ifmed.ifm_name, net_ptr->ifa_name, sizeof(ifmed.ifm_name));
839 >                sg_strlcpy(ifmed.ifm_name, net_ptr->ifa_name, sizeof(ifmed.ifm_name));
840                  if(ioctl(sock, SIOCGIFMEDIA, (caddr_t)&ifmed) == -1){
841                          /* Not all interfaces support the media ioctls. */
842                          continue;
# Line 479 | Line 848 | network_iface_stat_t *get_network_iface_stats(int *ent
848                          continue;
849                  }
850  
851 <                /* Only intrested in the first 4 bits)  - Assuming only ETHER devices */
852 <                x = ifmed.ifm_active & 0x0f;    
851 >                /* Assuming only ETHER devices */
852 >                x = IFM_SUBTYPE(ifmed.ifm_active);
853                  switch(x){
854                          /* 10 Mbit connections. Speedy :) */
855                          case(IFM_10_T):
# Line 490 | Line 859 | network_iface_stat_t *get_network_iface_stats(int *ent
859                          case(IFM_10_FL):
860                                  network_iface_stat_ptr->speed = 10;
861                                  break;
862 <                        /* 100 Mbit conneections */
862 >                        /* 100 Mbit connections */
863                          case(IFM_100_TX):
864                          case(IFM_100_FX):
865                          case(IFM_100_T4):
# Line 502 | Line 871 | network_iface_stat_t *get_network_iface_stats(int *ent
871                          case(IFM_1000_SX):
872                          case(IFM_1000_LX):
873                          case(IFM_1000_CX):
874 < #ifdef IFM_1000_TX
875 <                        case(IFM_1000_TX): /* FreeBSD 4 and others? */
874 > #if defined(IFM_1000_TX) && !defined(OPENBSD)
875 >                        case(IFM_1000_TX): /* FreeBSD 4 and others (but NOT OpenBSD)? */
876   #endif
877   #ifdef IFM_1000_FX
878                          case(IFM_1000_FX): /* FreeBSD 4 */
# Line 520 | Line 889 | network_iface_stat_t *get_network_iface_stats(int *ent
889                  }
890  
891                  if( (ifmed.ifm_active | IFM_FDX) == ifmed.ifm_active ){
892 <                        network_iface_stat_ptr->dup = FULL_DUPLEX;
892 >                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_FULL;
893                  }else if( (ifmed.ifm_active | IFM_HDX) == ifmed.ifm_active ){
894 <                        network_iface_stat_ptr->dup = HALF_DUPLEX;
894 >                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_HALF;
895                  }else{
896 <                        network_iface_stat_ptr->dup = UNKNOWN_DUPLEX;
896 >                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
897                  }
529
898          }      
899          freeifaddrs(net);
900          close(sock);
901   #endif
902  
903 + #ifdef AIX
904 + /*
905 + * Fix up variable length of struct ifr
906 + */
907 + #ifndef _SIZEOF_ADDR_IFREQ
908 + #define _SIZEOF_ADDR_IFREQ(ifr) \
909 +        (((ifr).ifr_addr.sa_len > sizeof(struct sockaddr)) \
910 +        ? sizeof(struct ifreq) - sizeof(struct sockaddr) + (ifr).ifr_addr.sa_len \
911 +        : sizeof(struct ifreq))
912 + #endif
913 +
914 +        if ((pagesize = sysconf(_SC_PAGESIZE)) == ((size_t)-1)) {
915 +                sg_set_error_with_errno(SG_ERROR_SYSCONF, "_SC_PAGESIZE");
916 +                return NULL;
917 +        }
918 +
919 +        if ((fd = socket (PF_INET, SOCK_DGRAM, 0)) == -1) {
920 +                return NULL;
921 +        }
922 +
923 +        n = 2;
924 +        ifr = (struct ifreq *)malloc( n*pagesize );
925 +        if( NULL == ifr ) {
926 +                sg_set_error_with_errno(SG_ERROR_MALLOC, NULL);
927 +                close (fd);
928 +                return NULL;
929 +        }
930 +        bzero(&ifc, sizeof(ifc));
931 +        ifc.ifc_req = ifr;
932 +        ifc.ifc_len = n * pagesize;
933 +        while( ( ioctl( fd, SIOCGIFCONF, &ifc ) == -1 ) ||
934 +               ( ((size_t)ifc.ifc_len) >= ( (n-1) * pagesize)) )
935 +        {
936 +                n *= 2;
937 +                ifr = (struct ifreq *)realloc( ifr, n*pagesize );
938 +                if( NULL == ifr ) {
939 +                        free( ifc.ifc_req );
940 +                        close (fd);
941 +                        sg_set_error_with_errno(SG_ERROR_MALLOC, NULL);
942 +                        return NULL;
943 +                }
944 +                ifc.ifc_req = ifr;
945 +                ifc.ifc_len = n * pagesize;
946 +        }
947 +
948 +        lifr = (struct ifreq *)&ifc.ifc_buf[ifc.ifc_len];
949 +        for ( ifr = ifc.ifc_req;
950 +              ifr < lifr;
951 +              ifr = (struct ifreq *)&(((char *)ifr)[_SIZEOF_ADDR_IFREQ(*ifr)]) )
952 +        {
953 +                struct sockaddr *sa = &ifr->ifr_addr;
954 +
955 +                if(sa->sa_family != AF_LINK)
956 +                        continue;
957 +
958 +                if (VECTOR_RESIZE(network_iface_stats, ifaces + 1) < 0) {
959 +                        free( ifc.ifc_req );
960 +                        close (fd);
961 +                        return NULL;
962 +                }
963 +                network_iface_stat_ptr = network_iface_stats + ifaces;
964 +
965 +                memset(&iff, 0, sizeof(iff));
966 +                strncpy(iff.ifr_name, ifr->ifr_name, sizeof(iff.ifr_name));
967 +
968 +                if (ioctl(fd, SIOCGIFFLAGS, &iff) < 0) {
969 +                        continue;
970 +                }
971 +
972 +                if ((iff.ifr_flags & IFF_UP) != 0) {
973 +                        network_iface_stat_ptr->up = 1;
974 +                } else {
975 +                        network_iface_stat_ptr->up = 0;
976 +                }
977 +                if (sg_update_string(&network_iface_stat_ptr->interface_name,
978 +                                     ifr->ifr_name) < 0) {
979 +                        close (fd);
980 +                        free( ifc.ifc_req );
981 +                        return NULL;
982 +                }
983 +
984 +                network_iface_stat_ptr->speed = 0;
985 +                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
986 +                ifaces++;
987 +        }
988 +
989 +        close (fd);
990 +        free( ifc.ifc_req );
991 + #endif
992 +
993 + #ifdef HPUX
994 + /*
995 + * Fix up variable length of struct ifr
996 + */
997 + #ifndef _SA_LEN
998 + #define _SA_LEN(sa) \
999 +   ((sa).sa_family == AF_UNIX ? sizeof(struct sockaddr_un) : \
1000 +   (sa).sa_family == AF_INET6 ? sizeof(struct sockaddr_in6) : \
1001 +   sizeof(struct sockaddr))
1002 + #endif
1003 +
1004 + #ifndef _SIZEOF_ADDR_IFREQ
1005 + #define _SIZEOF_ADDR_IFREQ(ifr) \
1006 +        ((_SA_LEN((ifr).ifr_addr) > sizeof(struct sockaddr)) \
1007 +        ? sizeof(struct ifreq) - sizeof(struct sockaddr) + _SA_LEN((ifr).ifr_addr) \
1008 +        : sizeof(struct ifreq))
1009 + #endif
1010 +        if ((fd = socket (PF_INET, SOCK_DGRAM, 0)) == -1) {
1011 +                return NULL;
1012 +        }
1013 +
1014 +        bzero(&ifc, sizeof(ifc));
1015 +        if (ioctl (fd, SIOCGIFNUM, &ifc) != -1) {
1016 +                ifr = calloc(sizeof (*ifr), ifc.ifc_len);
1017 +                if( NULL == ifr ) {
1018 +                        close (fd);
1019 +                        sg_set_error_with_errno(SG_ERROR_MALLOC, NULL);
1020 +                        return NULL;
1021 +                }
1022 +                ifc.ifc_req = ifr;
1023 +                ifc.ifc_len *= sizeof (*ifr);
1024 +                if (ioctl (fd, SIOCGIFCONF, &ifc) == -1) {
1025 +                        free (ifr);
1026 +                        close (fd);
1027 +                        sg_set_error_with_errno(SG_ERROR_GETIFADDRS, NULL);
1028 +                        return NULL;
1029 +                }
1030 +        } else {
1031 +                close (fd);
1032 +                sg_set_error_with_errno(SG_ERROR_GETIFADDRS, NULL);
1033 +                return NULL;
1034 +        }
1035 +
1036 +        lifr = (struct ifreq *)&ifc.ifc_buf[ifc.ifc_len];
1037 +        for ( ifr = ifc.ifc_req;
1038 +              ifr < lifr;
1039 +              ifr = (struct ifreq *)(((char *)ifr) + _SIZEOF_ADDR_IFREQ(*ifr)) )
1040 +        {
1041 +                if (VECTOR_RESIZE(network_iface_stats, ifaces + 1) < 0) {
1042 +                        free( ifc.ifc_req );
1043 +                        close (fd);
1044 +                        return NULL;
1045 +                }
1046 +                network_iface_stat_ptr = network_iface_stats + ifaces;
1047 +
1048 +                bzero(&iff, sizeof(iff));
1049 +                strncpy(iff.ifr_name, ifr->ifr_name, sizeof(iff.ifr_name));
1050 +
1051 +                if (ioctl(fd, SIOCGIFFLAGS, &iff) < 0) {
1052 +                        continue;
1053 +                }
1054 +
1055 +                if ((iff.ifr_flags & IFF_UP) != 0) {
1056 +                        network_iface_stat_ptr->up = 1;
1057 +                } else {
1058 +                        network_iface_stat_ptr->up = 0;
1059 +                }
1060 +                if (sg_update_string(&network_iface_stat_ptr->interface_name,
1061 +                                     ifr->ifr_name) < 0) {
1062 +                        close (fd);
1063 +                        free( ifc.ifc_req );
1064 +                        return NULL;
1065 +                }
1066 +
1067 +                /**
1068 +                 * for physical devices we now could ask /dev/dlpi for speed and type,
1069 +                 * but for monitoring we don't care
1070 +                 */
1071 +                network_iface_stat_ptr->speed = 0;
1072 +                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
1073 +                ifaces++;
1074 +        }
1075 +
1076 +        close (fd);
1077 +        free( ifc.ifc_req );
1078 + #endif
1079 +
1080   #ifdef SOLARIS
1081          if ((kc = kstat_open()) == NULL) {
1082 +                sg_set_error(SG_ERROR_KSTAT_OPEN, NULL);
1083                  return NULL;
1084          }
1085  
1086          if ((sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) {
1087 +                sg_set_error_with_errno(SG_ERROR_SOCKET, NULL);
1088 +                kstat_close(kc);
1089                  return NULL;
1090          }
1091  
1092          for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
1093 <                if (!strcmp(ksp->ks_class, "net")) {
1093 >                if (strcmp(ksp->ks_class, "net") == 0) {
1094                          struct ifreq ifr;
1095  
1096                          kstat_read(kc, ksp, NULL);
# Line 553 | Line 1101 | network_iface_stat_t *get_network_iface_stats(int *ent
1101                                  continue;
1102                          }
1103  
1104 <                        network_iface_stats = network_iface_stat_malloc(ifaces + 1, &sizeof_network_iface_stats, network_iface_stats);
1105 <                        if (network_iface_stats == NULL) {
1104 >                        if (VECTOR_RESIZE(network_iface_stats, ifaces + 1) < 0) {
1105 >                                kstat_close(kc);
1106                                  return NULL;
1107                          }
1108                          network_iface_stat_ptr = network_iface_stats + ifaces;
1109                          ifaces++;
1110  
1111 <                        if (network_iface_stat_ptr->interface_name != NULL) free(network_iface_stat_ptr->interface_name);
1112 <                        network_iface_stat_ptr->interface_name = strdup(ksp->ks_name);
1113 <                        if (network_iface_stat_ptr->interface_name == NULL) return NULL;
1111 >                        if (sg_update_string(&network_iface_stat_ptr->interface_name,
1112 >                                             ksp->ks_name) < 0) {
1113 >                                kstat_close(kc);
1114 >                                return NULL;
1115 >                        }
1116  
1117                          if ((ifr.ifr_flags & IFF_UP) != 0) {
1118 <                                network_iface_stat_ptr->up = 1;
1118 >                                if ((knp = kstat_data_lookup(ksp, "link_up")) != NULL) {
1119 >                                        /* take in to account if link
1120 >                                         * is up as well as interface */
1121 >                                        if (knp->value.ui32 != 0u) {
1122 >                                                network_iface_stat_ptr->up = 1;
1123 >                                        } else {
1124 >                                                network_iface_stat_ptr->up = 0;
1125 >                                        }
1126 >                                }
1127 >                                else {
1128 >                                        /* maintain compatibility */
1129 >                                        network_iface_stat_ptr->up = 1;
1130 >                                }
1131                          } else {
1132 <                                network_iface_stat_ptr->up = 1;
1132 >                                network_iface_stat_ptr->up = 0;
1133                          }
1134  
1135                          if ((knp = kstat_data_lookup(ksp, "ifspeed")) != NULL) {
# Line 576 | Line 1138 | network_iface_stat_t *get_network_iface_stats(int *ent
1138                                  network_iface_stat_ptr->speed = 0;
1139                          }
1140  
1141 <                        network_iface_stat_ptr->dup = UNKNOWN_DUPLEX;
1141 >                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
1142                          if ((knp = kstat_data_lookup(ksp, "link_duplex")) != NULL) {
1143                                  switch (knp->value.ui32) {
1144                                  case 1:
1145 <                                        network_iface_stat_ptr->dup = HALF_DUPLEX;
1145 >                                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_HALF;
1146                                          break;
1147                                  case 2:
1148 <                                        network_iface_stat_ptr->dup = FULL_DUPLEX;
1148 >                                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_FULL;
1149                                          break;
1150                                  }
1151                          }
# Line 592 | Line 1154 | network_iface_stat_t *get_network_iface_stats(int *ent
1154  
1155          close(sock);
1156          kstat_close(kc);
1157 < #endif  
1157 > #endif
1158   #ifdef LINUX
1159          f = fopen("/proc/net/dev", "r");
1160 <        if(f == NULL){
1161 <                return NULL;
1162 <        }
1160 >        if(f == NULL){
1161 >                sg_set_error_with_errno(SG_ERROR_OPEN, "/proc/net/dev");
1162 >                return NULL;
1163 >        }
1164  
1165          /* Setup stuff so we can do the ioctl to get the info */
1166          if((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0){
1167 +                sg_set_error_with_errno(SG_ERROR_SOCKET, NULL);
1168                  return NULL;
1169          }
1170  
1171          /* Ignore first 2 lines.. Just headings */
1172 <        if((fgets(line, sizeof(line), f)) == NULL) return NULL;
1173 <        if((fgets(line, sizeof(line), f)) == NULL) return NULL;
1172 >        if((fgets(line, sizeof(line), f)) == NULL) {
1173 >                sg_set_error(SG_ERROR_PARSE, NULL);
1174 >                return NULL;
1175 >        }
1176 >        if((fgets(line, sizeof(line), f)) == NULL) {
1177 >                sg_set_error(SG_ERROR_PARSE, NULL);
1178 >                return NULL;
1179 >        }
1180  
1181 <        while((fgets(line, sizeof(line), f)) != NULL){
1182 <                char *name, *ptr;
1183 <                struct ifreq ifr;
1184 <                struct ethtool_cmd ethcmd;
1185 <                int err;
1181 >        while((fgets(line, sizeof(line), f)) != NULL){
1182 >                char *name, *ptr;
1183 >                struct ifreq ifr;
1184 >                struct ethtool_cmd ethcmd;
1185 >                int err;
1186  
1187                  /* Get the interface name */
1188 <                ptr = strchr(line, ':');
1189 <                if (ptr == NULL) continue;
1190 <                *ptr='\0';
1191 <                name = line;
1192 <                while(isspace(*(name))){
1193 <                        name++;
1194 <                }
1188 >                ptr = strchr(line, ':');
1189 >                if (ptr == NULL) continue;
1190 >                *ptr='\0';
1191 >                name = line;
1192 >                while(isspace(*(name))){
1193 >                        name++;
1194 >                }
1195  
1196 <                memset(&ifr, 0, sizeof ifr);
1197 <                strncpy(ifr.ifr_name, name, sizeof ifr.ifr_name);
1196 >                memset(&ifr, 0, sizeof ifr);
1197 >                strncpy(ifr.ifr_name, name, sizeof ifr.ifr_name);
1198  
1199                  if (ioctl(sock, SIOCGIFFLAGS, &ifr) < 0) {
1200                          continue;
1201                  }
1202  
1203                  /* We have a good interface to add */
1204 <                network_iface_stats=network_iface_stat_malloc((ifaces+1), &sizeof_network_iface_stats, network_iface_stats);
635 <                if(network_iface_stats==NULL){
1204 >                if (VECTOR_RESIZE(network_iface_stats, ifaces + 1) < 0) {
1205                          return NULL;
1206                  }
1207                  network_iface_stat_ptr = network_iface_stats + ifaces;
1208 <                network_iface_stat_ptr->interface_name = strdup(name);
1208 >                
1209 >                if (sg_update_string(&network_iface_stat_ptr->interface_name,
1210 >                                     name) < 0) {
1211 >                        return NULL;
1212 >                }
1213                  if ((ifr.ifr_flags & IFF_UP) != 0) {
1214                          network_iface_stat_ptr->up = 1;
1215                  } else {
1216                          network_iface_stat_ptr->up = 0;
1217                  }
1218  
1219 <                memset(&ethcmd, 0, sizeof ethcmd);
1220 <                ethcmd.cmd = ETHTOOL_GSET;
1221 <                ifr.ifr_data = (caddr_t) &ethcmd;
1219 >                memset(&ethcmd, 0, sizeof ethcmd);
1220 >                ethcmd.cmd = ETHTOOL_GSET;
1221 >                ifr.ifr_data = (caddr_t) &ethcmd;
1222  
1223 <                err = ioctl(sock, SIOCETHTOOL, &ifr);
1224 <                if (err == 0) {
1223 >                err = ioctl(sock, SIOCETHTOOL, &ifr);
1224 >                if (err == 0) {
1225                          network_iface_stat_ptr->speed = ethcmd.speed;
1226  
1227                          switch (ethcmd.duplex) {
1228 <                        case 0x00:
1229 <                                network_iface_stat_ptr->dup = FULL_DUPLEX;
1228 >                        case DUPLEX_FULL:
1229 >                                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_FULL;
1230                                  break;
1231 <                        case 0x01:
1232 <                                network_iface_stat_ptr->dup = HALF_DUPLEX;
1231 >                        case DUPLEX_HALF:
1232 >                                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_HALF;
1233                                  break;
1234                          default:
1235 <                                network_iface_stat_ptr->dup = UNKNOWN_DUPLEX;
1235 >                                network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
1236                          }
1237                  } else {
1238                          /* Not all interfaces support the ethtool ioctl. */
1239                          network_iface_stat_ptr->speed = 0;
1240 <                        network_iface_stat_ptr->dup = UNKNOWN_DUPLEX;
1240 >                        network_iface_stat_ptr->duplex = SG_IFACE_DUPLEX_UNKNOWN;
1241                  }
1242  
1243                  ifaces++;
# Line 672 | Line 1245 | network_iface_stat_t *get_network_iface_stats(int *ent
1245          close(sock);
1246          fclose(f);
1247   #endif
1248 + #ifdef CYGWIN
1249 +        sg_set_error(SG_ERROR_UNSUPPORTED, "Cygwin");
1250 +        return NULL;
1251 + #endif
1252 + #ifdef WIN32
1253 +        ifaces = 0;
1254 +
1255 +        if((if_table = win32_get_devices()) == NULL) {
1256 +                sg_set_error(SG_ERROR_DEVICES, "network interfaces");
1257 +                return NULL;
1258 +        }
1259 +
1260 +        if(VECTOR_RESIZE(network_iface_stats, if_table->dwNumEntries) < 0) {
1261 +                free(if_table);
1262 +                return NULL;
1263 +        }
1264 +
1265 +        for(i=0; i<if_table->dwNumEntries; i++) {
1266 +                network_iface_stat_ptr=network_iface_stats+i;
1267 +                if_row = if_table->table[i];
1268 +
1269 +                if(sg_update_string(&network_iface_stat_ptr->interface_name,
1270 +                                        if_row.bDescr) < 0) {
1271 +                        free(if_table);
1272 +                        return NULL;
1273 +                }
1274 +                network_iface_stat_ptr->speed = if_row.dwSpeed /1000000;
1275 +
1276 +                if((if_row.dwOperStatus == MIB_IF_OPER_STATUS_CONNECTED ||
1277 +                                if_row.dwOperStatus ==
1278 +                                        MIB_IF_OPER_STATUS_OPERATIONAL) &&
1279 +                                if_row.dwAdminStatus == 1) {
1280 +                        network_iface_stat_ptr->up = 1;
1281 +                } else {
1282 +                        network_iface_stat_ptr->up = 0;
1283 +                }
1284 +
1285 +                ifaces++;
1286 +        }
1287 +        free(if_table);
1288 +
1289 +        /* again with the renumbering */
1290 +        for (i=0; i<ifaces; i++) {
1291 +                no = 2;
1292 +                for(j=i+1; j<ifaces; j++) {
1293 +                        network_iface_stat_ptr=network_iface_stats+j;
1294 +                        if(strcmp(network_iface_stats[i].interface_name,
1295 +                                        network_iface_stat_ptr->interface_name) == 0) {
1296 +                                if(snprintf(buf, sizeof(buf), " #%d", no) < 0) {
1297 +                                        break;
1298 +                                }
1299 +                                if(sg_concat_string(&network_iface_stat_ptr->interface_name, buf) != 0) {
1300 +                                        return NULL;
1301 +                                }
1302 +
1303 +                                no++;
1304 +                        }
1305 +                }
1306 +        }
1307 + #endif
1308 +
1309 + #ifdef SG_ENABLE_DEPRECATED
1310 +        network_iface_stat_ptr->dup = network_iface_stat_ptr->duplex;
1311 + #endif
1312 +
1313          *entries = ifaces;
1314          return network_iface_stats;
1315 + }
1316 +
1317 + int sg_network_iface_compare_name(const void *va, const void *vb) {
1318 +        const sg_network_iface_stats *a = (const sg_network_iface_stats *)va;
1319 +        const sg_network_iface_stats *b = (const sg_network_iface_stats *)vb;
1320 +
1321 +        return strcmp(a->interface_name, b->interface_name);
1322   }
1323  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines