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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
/***********************************************************
Copyright 1989 by Carnegie Mellon University
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of CMU not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
/*
* Copyright (c) 1983,1988 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of California at Berkeley. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include "main.h"
#include "asn1.h"
#include "snmp.h"
#include "snmp_impl.h"
#include "snmp_api.h"
#include "snmp_client.h"
#include "mib.h"
#define YES 1
#define NO 0
extern int nflag;
extern char *interface;
extern char *routename(), *netname();
extern struct snmp_session *Session;
extern struct variable_list *getvarbyname();
static void sidewaysintpr();
oid oid_ifname[] = {1, 3, 6, 1, 2, 1, 2, 2, 1, 2, 1};
static oid oid_ifinucastpkts[] = {1, 3, 6, 1, 2, 1, 2, 2, 1, 11, 1};
static oid oid_cfg_nnets[] = {1, 3, 6, 1, 2, 1, 2, 1, 0};
#define IFNAME 2
#define IFMTU 4
#define IFOPERSTATUS 8
#define INUCASTPKTS 11
#define INNUCASTPKTS 12
#define INERRORS 14
#define OUTUCASTPKTS 17
#define OUTNUCASTPKTS 18
#define OUTERRORS 20
/*
* Print a description of the network interfaces.
*/
void
intpr(interval)
int interval;
{
oid varname[MAX_NAME_LEN], *instance, *ifentry;
int varname_len;
int ifnum, cfg_nnets;
struct variable_list *var;
char name[128];
int mtu;
int ipkts, ierrs, opkts, oerrs, operstatus, collisions;
if (interval) {
sidewaysintpr((unsigned)interval);
return;
}
printf("%-11.11s %-5.5s %-11.11s %-15.15s %8.8s %5.5s %8.8s %5.5s",
"Name", "Mtu", "Network", "Address", "Ipkts", "Ierrs",
"Opkts", "Oerrs");
putchar('\n');
var = getvarbyname(Session, oid_cfg_nnets, sizeof(oid_cfg_nnets) / sizeof(oid));
if (var)
cfg_nnets = *var->val.integer;
else
return;
bcopy((char *)oid_ifname, (char *)varname, sizeof(oid_ifname));
varname_len = sizeof(oid_ifname) / sizeof(oid);
ifentry = varname + 9;
instance = varname + 10;
for (ifnum = 1; ifnum <= cfg_nnets; ifnum++) {
char *cp;
char *index();
*name = mtu = 0;
ipkts = ierrs = opkts = oerrs = operstatus = collisions = 0;
*instance = ifnum;
*ifentry = IFNAME;
var = getvarbyname(Session, varname, varname_len);
if (var){
bcopy((char *)var->val.string, name, var->val_len);
name[var->val_len] = 0;
}
*ifentry = IFMTU;
var = getvarbyname(Session, varname, varname_len);
if (var)
mtu = *var->val.integer;
*ifentry = IFOPERSTATUS;
var = getvarbyname(Session, varname, varname_len);
if (var)
operstatus = *var->val.integer;
*ifentry = INUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
ipkts = *var->val.integer;
*ifentry = INNUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
ipkts += *var->val.integer;
*ifentry = INERRORS;
var = getvarbyname(Session, varname, varname_len);
if (var)
ierrs = *var->val.integer;
*ifentry = OUTUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
opkts = *var->val.integer;
*ifentry = OUTNUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
opkts += *var->val.integer;
*ifentry = OUTERRORS;
var = getvarbyname(Session, varname, varname_len);
if (var)
oerrs = *var->val.integer;
name[15] = '\0';
if (interface != 0 &&
strcmp(name, interface) != 0)
continue;
cp = index(name, '\0');
if (operstatus != MIB_IFSTATUS_UP)
*cp++ = '*';
*cp = '\0';
printf("%-11.11s %-5d ", name, mtu);
printf("%-11.11s ", "none");
printf("%-15.15s ", "none");
printf("%8d %5d %8d %5d %5d",
ipkts, ierrs,
opkts, oerrs, collisions);
putchar('\n');
}
}
#define MAXIF 10
struct iftot {
char ift_name[128]; /* interface name */
int ift_ip; /* input packets */
int ift_ie; /* input errors */
int ift_op; /* output packets */
int ift_oe; /* output errors */
int ift_co; /* collisions */
} iftot[MAXIF];
u_char signalled; /* set if alarm goes off "early" */
/*
* Print a running summary of interface statistics.
* Repeat display every interval seconds, showing statistics
* collected over that interval. Assumes that interval is non-zero.
* First line printed at top of screen is always cumulative.
*/
static void
sidewaysintpr(interval)
unsigned interval;
{
struct iftot *ip, *total;
int line;
struct iftot *lastif, *sum, *interesting, ifnow, *now = &ifnow;
int oldmask;
#ifdef linux
void catchalarm();
#else
int catchalarm();
#endif
struct variable_list *var;
oid varname[MAX_NAME_LEN], *instance, *ifentry;
int varname_len;
int ifnum, cfg_nnets;
char *index();
lastif = iftot;
sum = iftot + MAXIF - 1;
total = sum - 1;
interesting = iftot;
var = getvarbyname(Session, oid_cfg_nnets, sizeof(oid_cfg_nnets) / sizeof(oid));
if (var)
cfg_nnets = *var->val.integer;
else
return;
bcopy((char *)oid_ifname, (char *)varname, sizeof(oid_ifname));
varname_len = sizeof(oid_ifname) / sizeof(oid);
for (ifnum = 1, ip = iftot; ifnum <= cfg_nnets; ifnum++) {
char *cp;
ip->ift_name[0] = '(';
varname[10] = ifnum;
var = getvarbyname(Session, varname, varname_len);
if (var){
bcopy((char *)var->val.string, ip->ift_name + 1, var->val_len);
}
if (interface && strcmp(ip->ift_name + 1, interface) == 0)
interesting = ip;
ip->ift_name[15] = '\0';
cp = index(ip->ift_name, '\0');
sprintf(cp, ")");
ip++;
if (ip >= iftot + MAXIF - 2)
break;
}
lastif = ip;
(void)signal(SIGALRM, catchalarm);
signalled = NO;
(void)alarm(interval);
banner:
printf(" input %-6.6s output ", interesting->ift_name);
if (lastif - iftot > 0)
printf(" input (Total) output");
for (ip = iftot; ip < iftot + MAXIF; ip++) {
ip->ift_ip = 0;
ip->ift_ie = 0;
ip->ift_op = 0;
ip->ift_oe = 0;
ip->ift_co = 0;
}
putchar('\n');
printf("%8.8s %5.5s %8.8s %5.5s %5.5s ",
"packets", "errs", "packets", "errs", "colls");
if (lastif - iftot > 0)
printf("%8.8s %5.5s %8.8s %5.5s %5.5s ",
"packets", "errs", "packets", "errs", "colls");
putchar('\n');
fflush(stdout);
line = 0;
loop:
sum->ift_ip = 0;
sum->ift_ie = 0;
sum->ift_op = 0;
sum->ift_oe = 0;
sum->ift_co = 0;
bcopy((char *)oid_ifinucastpkts, (char *)varname, sizeof(oid_ifinucastpkts));
varname_len = sizeof(oid_ifinucastpkts) / sizeof(oid);
ifentry = varname + 9;
instance = varname + 10;
for (ifnum = 1, ip = iftot; ifnum <= cfg_nnets && ip < lastif; ip++, ifnum++) {
bzero((char *)now, sizeof(*now));
*instance = ifnum;
*ifentry = INUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_ip = *var->val.integer;
*ifentry = INNUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_ip += *var->val.integer;
*ifentry = INERRORS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_ie = *var->val.integer;
*ifentry = OUTUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_op = *var->val.integer;
*ifentry = OUTNUCASTPKTS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_op += *var->val.integer;
*ifentry = OUTERRORS;
var = getvarbyname(Session, varname, varname_len);
if (var)
now->ift_oe = *var->val.integer;
if (ip == interesting)
printf("%8d %5d %8d %5d %5d ",
now->ift_ip - ip->ift_ip,
now->ift_ie - ip->ift_ie,
now->ift_op - ip->ift_op,
now->ift_oe - ip->ift_oe,
now->ift_co - ip->ift_co);
ip->ift_ip = now->ift_ip;
ip->ift_ie = now->ift_ie;
ip->ift_op = now->ift_op;
ip->ift_oe = now->ift_oe;
ip->ift_co = now->ift_co;
sum->ift_ip += ip->ift_ip;
sum->ift_ie += ip->ift_ie;
sum->ift_op += ip->ift_op;
sum->ift_oe += ip->ift_oe;
sum->ift_co += ip->ift_co;
}
if (lastif - iftot > 0)
printf("%8d %5d %8d %5d %5d ",
sum->ift_ip - total->ift_ip,
sum->ift_ie - total->ift_ie,
sum->ift_op - total->ift_op,
sum->ift_oe - total->ift_oe,
sum->ift_co - total->ift_co);
*total = *sum;
putchar('\n');
fflush(stdout);
line++;
#ifndef __SVR4
oldmask = sigblock(sigmask(SIGALRM));
if (! signalled) {
sigpause(0);
}
sigsetmask(oldmask);
signalled = NO;
(void)alarm(interval);
#else
sleep (interval);
#endif
if (line == 21)
goto banner;
goto loop;
/*NOTREACHED*/
}
/*
* Called if an interval expires before sidewaysintpr has completed a loop.
* Sets a flag to not wait for the alarm.
*/
#ifdef linux
void
#endif
catchalarm()
{
signalled = YES;
#ifdef linux
(void)signal(SIGALRM, catchalarm);
#endif
}
|