Home | History | Annotate | Line # | Download | only in altqstat
qdisc_rio.c revision 1.3.14.2
      1  1.3.14.2     tron /*	$NetBSD: qdisc_rio.c,v 1.3.14.2 2006/05/24 15:50:49 tron Exp $	*/
      2  1.3.14.1    peter /*	$KAME: qdisc_rio.c,v 1.7 2004/01/22 09:31:24 kjc Exp $	*/
      3       1.1  thorpej /*
      4       1.1  thorpej  * Copyright (C) 1999-2000
      5       1.1  thorpej  *	Sony Computer Science Laboratories, Inc.  All rights reserved.
      6       1.1  thorpej  *
      7       1.1  thorpej  * Redistribution and use in source and binary forms, with or without
      8       1.1  thorpej  * modification, are permitted provided that the following conditions
      9       1.1  thorpej  * are met:
     10       1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     11       1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     12       1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     14       1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     15       1.1  thorpej  *
     16       1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND
     17       1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18       1.1  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19       1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE
     20       1.1  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21       1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22       1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23       1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24       1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25       1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26       1.1  thorpej  * SUCH DAMAGE.
     27       1.1  thorpej  */
     28       1.1  thorpej 
     29       1.1  thorpej #include <sys/param.h>
     30       1.1  thorpej #include <sys/ioctl.h>
     31       1.1  thorpej #include <sys/time.h>
     32       1.1  thorpej #include <sys/socket.h>
     33       1.1  thorpej #include <net/if.h>
     34       1.1  thorpej #include <netinet/in.h>
     35       1.1  thorpej #include <altq/altq.h>
     36       1.1  thorpej #include <altq/altq_red.h>
     37       1.1  thorpej #include <altq/altq_rio.h>
     38       1.1  thorpej 
     39       1.1  thorpej #include <stdio.h>
     40       1.1  thorpej #include <stdlib.h>
     41       1.1  thorpej #include <unistd.h>
     42       1.1  thorpej #include <string.h>
     43  1.3.14.1    peter #include <signal.h>
     44       1.1  thorpej #include <errno.h>
     45       1.1  thorpej #include <err.h>
     46       1.1  thorpej 
     47       1.1  thorpej #include "altqstat.h"
     48       1.1  thorpej 
     49       1.1  thorpej static int avg_scale = 4096;	/* default fixed-point scale */
     50       1.1  thorpej 
     51       1.1  thorpej void
     52       1.1  thorpej rio_stat_loop(int fd, const char *ifname, int count, int interval)
     53       1.1  thorpej {
     54       1.1  thorpej 	struct rio_stats rio_stats;
     55       1.1  thorpej 	struct timeval cur_time, last_time;
     56       1.1  thorpej 	u_int64_t last_bytes[3];
     57       1.1  thorpej 	double sec;
     58       1.1  thorpej 	int cnt = count;
     59  1.3.14.1    peter 	sigset_t		omask;
     60       1.1  thorpej 
     61  1.3.14.2     tron 	memset(&last_bytes, 0, sizeof last_bytes);	/* XXX gcc */
     62       1.1  thorpej 	bzero(&rio_stats, sizeof(rio_stats));
     63       1.2   itojun 	strlcpy(rio_stats.iface.rio_ifname, ifname,
     64       1.2   itojun 		sizeof(rio_stats.iface.rio_ifname));
     65       1.1  thorpej 
     66       1.1  thorpej 	gettimeofday(&last_time, NULL);
     67       1.1  thorpej 	last_time.tv_sec -= interval;
     68       1.1  thorpej 
     69       1.1  thorpej 	while (count == 0 || cnt-- > 0) {
     70       1.1  thorpej 
     71       1.1  thorpej 		if (ioctl(fd, RIO_GETSTATS, &rio_stats) < 0)
     72       1.1  thorpej 			err(1, "ioctl RIO_GETSTATS");
     73       1.1  thorpej 
     74       1.1  thorpej 		gettimeofday(&cur_time, NULL);
     75       1.1  thorpej 		sec = calc_interval(&cur_time, &last_time);
     76       1.1  thorpej 
     77       1.1  thorpej 		printf("weight:%d q_limit:%d\n",
     78       1.1  thorpej 		       rio_stats.weight, rio_stats.q_limit);
     79       1.1  thorpej 
     80       1.1  thorpej 		printf("\t\t\tLOW DP\t\tMEDIUM DP\t\tHIGH DP\n");
     81       1.1  thorpej 
     82  1.3.14.1    peter 		printf("thresh (prob):\t\t[%d,%d](1/%d)\t[%d,%d](1/%d)\t\t[%d,%d](1/%d)\n",
     83       1.1  thorpej 		       rio_stats.q_params[0].th_min,
     84       1.1  thorpej 		       rio_stats.q_params[0].th_max,
     85       1.1  thorpej 		       rio_stats.q_params[0].inv_pmax,
     86       1.1  thorpej 		       rio_stats.q_params[1].th_min,
     87       1.1  thorpej 		       rio_stats.q_params[1].th_max,
     88       1.1  thorpej 		       rio_stats.q_params[1].inv_pmax,
     89       1.1  thorpej 		       rio_stats.q_params[2].th_min,
     90       1.1  thorpej 		       rio_stats.q_params[2].th_max,
     91       1.1  thorpej 		       rio_stats.q_params[2].inv_pmax);
     92       1.1  thorpej 		printf("qlen (avg):\t\t%d (%.2f)\t%d (%.2f)\t\t%d (%.2f)\n",
     93       1.1  thorpej 		       rio_stats.q_len[0],
     94       1.1  thorpej 		       ((double)rio_stats.q_stats[0].q_avg)/(double)avg_scale,
     95       1.1  thorpej 		       rio_stats.q_len[1],
     96       1.1  thorpej 		       ((double)rio_stats.q_stats[1].q_avg)/(double)avg_scale,
     97       1.1  thorpej 		       rio_stats.q_len[2],
     98       1.1  thorpej 		       ((double)rio_stats.q_stats[2].q_avg)/(double)avg_scale);
     99       1.1  thorpej 		printf("xmit (drop) pkts:\t%llu (%llu)\t\t%llu (%llu)\t\t\t%llu (%llu)\n",
    100       1.1  thorpej 		       (ull)rio_stats.q_stats[0].xmit_cnt.packets,
    101       1.1  thorpej 		       (ull)rio_stats.q_stats[0].drop_cnt.packets,
    102       1.1  thorpej 		       (ull)rio_stats.q_stats[1].xmit_cnt.packets,
    103       1.1  thorpej 		       (ull)rio_stats.q_stats[1].drop_cnt.packets,
    104       1.1  thorpej 		       (ull)rio_stats.q_stats[2].xmit_cnt.packets,
    105       1.1  thorpej 		       (ull)rio_stats.q_stats[2].drop_cnt.packets);
    106       1.1  thorpej 		printf("(forced:early):\t\t(%u:%u)\t\t(%u:%u)\t\t\t(%u:%u)\n",
    107       1.1  thorpej 		       rio_stats.q_stats[0].drop_forced,
    108       1.1  thorpej 		       rio_stats.q_stats[0].drop_unforced,
    109       1.1  thorpej 		       rio_stats.q_stats[1].drop_forced,
    110       1.1  thorpej 		       rio_stats.q_stats[1].drop_unforced,
    111       1.1  thorpej 		       rio_stats.q_stats[2].drop_forced,
    112       1.1  thorpej 		       rio_stats.q_stats[2].drop_unforced);
    113       1.1  thorpej 		if (rio_stats.q_stats[0].marked_packets != 0
    114       1.1  thorpej 		    || rio_stats.q_stats[1].marked_packets != 0
    115       1.1  thorpej 		    || rio_stats.q_stats[2].marked_packets != 0)
    116       1.1  thorpej 			printf("marked:\t\t\t%u\t\t%u\t\t\t%u\n",
    117       1.1  thorpej 			       rio_stats.q_stats[0].marked_packets,
    118       1.1  thorpej 			       rio_stats.q_stats[1].marked_packets,
    119       1.1  thorpej 			       rio_stats.q_stats[2].marked_packets);
    120       1.1  thorpej 		printf("throughput:\t\t%sbps\t%sbps\t\t%sbps\n\n",
    121       1.1  thorpej 		       rate2str(calc_rate(rio_stats.q_stats[0].xmit_cnt.bytes,
    122       1.1  thorpej 					  last_bytes[0], sec)),
    123       1.1  thorpej 		       rate2str(calc_rate(rio_stats.q_stats[1].xmit_cnt.bytes,
    124       1.1  thorpej 					  last_bytes[1], sec)),
    125       1.1  thorpej 		       rate2str(calc_rate(rio_stats.q_stats[2].xmit_cnt.bytes,
    126       1.1  thorpej 					  last_bytes[2], sec)));
    127       1.1  thorpej 
    128       1.1  thorpej 		last_bytes[0] = rio_stats.q_stats[0].xmit_cnt.bytes;
    129       1.1  thorpej 		last_bytes[1] = rio_stats.q_stats[1].xmit_cnt.bytes;
    130       1.2   itojun 		last_bytes[2] = rio_stats.q_stats[2].xmit_cnt.bytes;
    131       1.1  thorpej 		last_time = cur_time;
    132  1.3.14.1    peter 
    133  1.3.14.1    peter 		/* wait for alarm signal */
    134  1.3.14.1    peter 		if (sigprocmask(SIG_BLOCK, NULL, &omask) == 0)
    135  1.3.14.1    peter 			sigsuspend(&omask);
    136       1.1  thorpej 	}
    137       1.1  thorpej }
    138       1.1  thorpej 
    139       1.1  thorpej int
    140       1.1  thorpej print_riostats(struct redstats *rp)
    141       1.1  thorpej {
    142       1.1  thorpej 	int dp;
    143       1.1  thorpej 
    144       1.1  thorpej 	for (dp = 0; dp < RIO_NDROPPREC; dp++)
    145       1.1  thorpej 		printf("     RIO[%d] q_avg:%.2f xmit:%llu (forced: %u early:%u marked:%u)\n",
    146       1.1  thorpej 		       dp,
    147       1.1  thorpej 		       ((double)rp[dp].q_avg)/(double)avg_scale,
    148       1.1  thorpej 		       (ull)rp[dp].xmit_cnt.packets,
    149       1.1  thorpej 		       rp[dp].drop_forced,
    150       1.1  thorpej 		       rp[dp].drop_unforced,
    151       1.1  thorpej 		       rp[dp].marked_packets);
    152       1.1  thorpej 	return 0;
    153       1.1  thorpej }
    154