1 1.6 peter /* $NetBSD: qdisc_rio.c,v 1.6 2006/10/28 11:43:02 peter Exp $ */ 2 1.5 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.5 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.5 peter sigset_t omask; 60 1.1 thorpej 61 1.4 mrg 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.6 peter for (;;) { 70 1.1 thorpej if (ioctl(fd, RIO_GETSTATS, &rio_stats) < 0) 71 1.1 thorpej err(1, "ioctl RIO_GETSTATS"); 72 1.1 thorpej 73 1.1 thorpej gettimeofday(&cur_time, NULL); 74 1.1 thorpej sec = calc_interval(&cur_time, &last_time); 75 1.1 thorpej 76 1.1 thorpej printf("weight:%d q_limit:%d\n", 77 1.1 thorpej rio_stats.weight, rio_stats.q_limit); 78 1.1 thorpej 79 1.1 thorpej printf("\t\t\tLOW DP\t\tMEDIUM DP\t\tHIGH DP\n"); 80 1.1 thorpej 81 1.5 peter printf("thresh (prob):\t\t[%d,%d](1/%d)\t[%d,%d](1/%d)\t\t[%d,%d](1/%d)\n", 82 1.1 thorpej rio_stats.q_params[0].th_min, 83 1.1 thorpej rio_stats.q_params[0].th_max, 84 1.1 thorpej rio_stats.q_params[0].inv_pmax, 85 1.1 thorpej rio_stats.q_params[1].th_min, 86 1.1 thorpej rio_stats.q_params[1].th_max, 87 1.1 thorpej rio_stats.q_params[1].inv_pmax, 88 1.1 thorpej rio_stats.q_params[2].th_min, 89 1.1 thorpej rio_stats.q_params[2].th_max, 90 1.1 thorpej rio_stats.q_params[2].inv_pmax); 91 1.1 thorpej printf("qlen (avg):\t\t%d (%.2f)\t%d (%.2f)\t\t%d (%.2f)\n", 92 1.1 thorpej rio_stats.q_len[0], 93 1.1 thorpej ((double)rio_stats.q_stats[0].q_avg)/(double)avg_scale, 94 1.1 thorpej rio_stats.q_len[1], 95 1.1 thorpej ((double)rio_stats.q_stats[1].q_avg)/(double)avg_scale, 96 1.1 thorpej rio_stats.q_len[2], 97 1.1 thorpej ((double)rio_stats.q_stats[2].q_avg)/(double)avg_scale); 98 1.1 thorpej printf("xmit (drop) pkts:\t%llu (%llu)\t\t%llu (%llu)\t\t\t%llu (%llu)\n", 99 1.1 thorpej (ull)rio_stats.q_stats[0].xmit_cnt.packets, 100 1.1 thorpej (ull)rio_stats.q_stats[0].drop_cnt.packets, 101 1.1 thorpej (ull)rio_stats.q_stats[1].xmit_cnt.packets, 102 1.1 thorpej (ull)rio_stats.q_stats[1].drop_cnt.packets, 103 1.1 thorpej (ull)rio_stats.q_stats[2].xmit_cnt.packets, 104 1.1 thorpej (ull)rio_stats.q_stats[2].drop_cnt.packets); 105 1.1 thorpej printf("(forced:early):\t\t(%u:%u)\t\t(%u:%u)\t\t\t(%u:%u)\n", 106 1.1 thorpej rio_stats.q_stats[0].drop_forced, 107 1.1 thorpej rio_stats.q_stats[0].drop_unforced, 108 1.1 thorpej rio_stats.q_stats[1].drop_forced, 109 1.1 thorpej rio_stats.q_stats[1].drop_unforced, 110 1.1 thorpej rio_stats.q_stats[2].drop_forced, 111 1.1 thorpej rio_stats.q_stats[2].drop_unforced); 112 1.1 thorpej if (rio_stats.q_stats[0].marked_packets != 0 113 1.1 thorpej || rio_stats.q_stats[1].marked_packets != 0 114 1.1 thorpej || rio_stats.q_stats[2].marked_packets != 0) 115 1.1 thorpej printf("marked:\t\t\t%u\t\t%u\t\t\t%u\n", 116 1.1 thorpej rio_stats.q_stats[0].marked_packets, 117 1.1 thorpej rio_stats.q_stats[1].marked_packets, 118 1.1 thorpej rio_stats.q_stats[2].marked_packets); 119 1.1 thorpej printf("throughput:\t\t%sbps\t%sbps\t\t%sbps\n\n", 120 1.1 thorpej rate2str(calc_rate(rio_stats.q_stats[0].xmit_cnt.bytes, 121 1.1 thorpej last_bytes[0], sec)), 122 1.1 thorpej rate2str(calc_rate(rio_stats.q_stats[1].xmit_cnt.bytes, 123 1.1 thorpej last_bytes[1], sec)), 124 1.1 thorpej rate2str(calc_rate(rio_stats.q_stats[2].xmit_cnt.bytes, 125 1.1 thorpej last_bytes[2], sec))); 126 1.1 thorpej 127 1.1 thorpej last_bytes[0] = rio_stats.q_stats[0].xmit_cnt.bytes; 128 1.1 thorpej last_bytes[1] = rio_stats.q_stats[1].xmit_cnt.bytes; 129 1.2 itojun last_bytes[2] = rio_stats.q_stats[2].xmit_cnt.bytes; 130 1.1 thorpej last_time = cur_time; 131 1.5 peter 132 1.6 peter if (count != 0 && --cnt == 0) 133 1.6 peter break; 134 1.6 peter 135 1.5 peter /* wait for alarm signal */ 136 1.5 peter if (sigprocmask(SIG_BLOCK, NULL, &omask) == 0) 137 1.5 peter sigsuspend(&omask); 138 1.1 thorpej } 139 1.1 thorpej } 140 1.1 thorpej 141 1.1 thorpej int 142 1.1 thorpej print_riostats(struct redstats *rp) 143 1.1 thorpej { 144 1.1 thorpej int dp; 145 1.1 thorpej 146 1.1 thorpej for (dp = 0; dp < RIO_NDROPPREC; dp++) 147 1.1 thorpej printf(" RIO[%d] q_avg:%.2f xmit:%llu (forced: %u early:%u marked:%u)\n", 148 1.1 thorpej dp, 149 1.1 thorpej ((double)rp[dp].q_avg)/(double)avg_scale, 150 1.1 thorpej (ull)rp[dp].xmit_cnt.packets, 151 1.1 thorpej rp[dp].drop_forced, 152 1.1 thorpej rp[dp].drop_unforced, 153 1.1 thorpej rp[dp].marked_packets); 154 1.1 thorpej return 0; 155 1.1 thorpej } 156