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