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.26 by pajs, Sun Jan 25 20:13:57 2004 UTC vs.
Revision 1.28 by tdb, Thu Feb 12 23:58:32 2004 UTC

# Line 37 | Line 37
37   #include <stdio.h>
38   #include <sys/types.h>
39   #include <regex.h>
40 + #include <sys/ioctl.h>
41 + #include <sys/socket.h>
42 + #include <net/if.h>
43 + #include <ctype.h>
44   #include "tools.h"
45 + /* Stuff which could be defined by defining KERNEL, but
46 + * that would be a bad idea, so we'll just declare it here
47 + */
48 + typedef __uint8_t u8;
49 + typedef __uint16_t u16;
50 + typedef __uint32_t u32;
51 + #include <linux/ethtool.h>
52 + #include <linux/sockios.h>
53   #endif
54   #ifdef ALLBSD
55   #include <sys/types.h>
# Line 375 | Line 387 | network_iface_stat_t *get_network_iface_stats(int *ent
387          int s;
388          int x;
389   #endif
390 <
390 > #ifdef LINUX
391 >        FILE *f;
392 >        /* Horrible big enough, but it should be easily big enough */
393 >        char line[8096];
394 >        void *eth_tool_cmd_buf;
395 >        int buf_size;
396 >        int sock;
397 > #endif
398          ifaces = 0;
399   #ifdef ALLBSD
400          if(getifaddrs(&net) != 0){
# Line 431 | Line 450 | network_iface_stat_t *get_network_iface_stats(int *ent
450                          case(IFM_1000_SX):
451                          case(IFM_1000_LX):
452                          case(IFM_1000_CX):
453 + #ifdef FREEBSD5
454 +                        case(IFM_1000_T):
455 + #else
456                          case(IFM_1000_TX):
457 +                        case(IFM_1000_FX):
458 + #endif
459                                  network_iface_stat_ptr->speed = 1000;
460                                  break;
461                          /* We don't know what it is */
# Line 491 | Line 515 | network_iface_stat_t *get_network_iface_stats(int *ent
515          kstat_close(kc);
516          
517   #endif  
518 + #ifdef LINUX
519 +
520 +        f = fopen("/proc/net/dev", "r");
521 +        if(f == NULL){
522 +                return NULL;
523 +        }
524 +
525 +        /* Setup stuff so we can do the ioctl to get the info */
526 +        if((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0){
527 +                return NULL;
528 +        }
529 +
530 +        buf_size = sizeof(struct ethtool_cmd);
531 +        eth_tool_cmd_buf = malloc(buf_size);
532 +        if(eth_tool_cmd_buf == NULL) return NULL;
533 +
534 +        /* Ignore first 2 lines.. Just headings */
535 +        fgets(line, sizeof(line), f);
536 +        fgets(line, sizeof(line), f);
537 +
538 +        while((fgets(line, sizeof(line), f)) != NULL){
539 +                char *name, *ptr;
540 +                struct ifreq ifr;
541 +                struct ethtool_cmd *ethcmd;
542 +                int err;
543 +
544 +                /* Get the interface name */
545 +                ptr = strchr(line, ':');
546 +                if (ptr == NULL) continue;
547 +                *ptr='\0';
548 +                name = line;
549 +                while(isspace(*(name))){
550 +                        name++;
551 +                }
552 +
553 +                memset(&ifr, 0, sizeof(ifr));
554 +                memset(eth_tool_cmd_buf, 0, buf_size);
555 +                ifr.ifr_data = (caddr_t) eth_tool_cmd_buf;
556 +                strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
557 +
558 +                ethcmd = (struct ethtool_cmd *)(&ifr)->ifr_data;
559 +                ethcmd->cmd = ETHTOOL_GSET;
560 +
561 +                err = ioctl(sock, SIOCETHTOOL, &ifr);
562 +                if(err < 0){
563 +                        /* This could fail if the interface doesn't support the command. Carry
564 +                         * on to the next :)
565 +                         */
566 +                        continue;
567 +                }
568 +
569 +                /* We have a good interface to add */
570 +                network_iface_stats=network_iface_stat_malloc((ifaces+1), &sizeof_network_iface_stats, network_iface_stats);
571 +                if(network_iface_stats==NULL){
572 +                        return NULL;
573 +                }
574 +                network_iface_stat_ptr = network_iface_stats + ifaces;
575 +                network_iface_stat_ptr->interface_name = strdup(name);
576 +                network_iface_stat_ptr->speed = ethcmd->speed;
577 +                network_iface_stat_ptr->dup = NO_DUPLEX;
578 +                if(ethcmd->duplex == 0x00){
579 +                        network_iface_stat_ptr->dup = FULL_DUPLEX;
580 +                }
581 +                if(ethcmd->duplex == 0x01){
582 +                        network_iface_stat_ptr->dup = HALF_DUPLEX;
583 +                }
584 +                ifaces++;
585 +        }
586 +
587 +        free(eth_tool_cmd_buf);
588 + #endif
589          *entries = ifaces;
590          return network_iface_stats;
591   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines