Home | History | Annotate | Line # | Download | only in libaltq
qop_red.c revision 1.1
      1  1.1  thorpej /*	$KAME: qop_red.c,v 1.3 2000/10/18 09:15:19 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/socket.h>
     30  1.1  thorpej #include <sys/sockio.h>
     31  1.1  thorpej #include <sys/ioctl.h>
     32  1.1  thorpej #include <sys/fcntl.h>
     33  1.1  thorpej #include <net/if.h>
     34  1.1  thorpej #include <netinet/in.h>
     35  1.1  thorpej #include <arpa/inet.h>
     36  1.1  thorpej 
     37  1.1  thorpej #include <stdio.h>
     38  1.1  thorpej #include <stdlib.h>
     39  1.1  thorpej #include <unistd.h>
     40  1.1  thorpej #include <stddef.h>
     41  1.1  thorpej #include <string.h>
     42  1.1  thorpej #include <ctype.h>
     43  1.1  thorpej #include <errno.h>
     44  1.1  thorpej #include <syslog.h>
     45  1.1  thorpej #include <netdb.h>
     46  1.1  thorpej 
     47  1.1  thorpej #include <altq/altq.h>
     48  1.1  thorpej #include <altq/altq_red.h>
     49  1.1  thorpej #include "altq_qop.h"
     50  1.1  thorpej #include "qop_red.h"
     51  1.1  thorpej 
     52  1.1  thorpej static int red_attach(struct ifinfo *ifinfo);
     53  1.1  thorpej static int red_detach(struct ifinfo *ifinfo);
     54  1.1  thorpej static int red_enable(struct ifinfo *ifinfo);
     55  1.1  thorpej static int red_disable(struct ifinfo *ifinfo);
     56  1.1  thorpej 
     57  1.1  thorpej #define RED_DEVICE	"/dev/altq/red"
     58  1.1  thorpej 
     59  1.1  thorpej static int red_fd = -1;
     60  1.1  thorpej static int red_refcount = 0;
     61  1.1  thorpej 
     62  1.1  thorpej static struct qdisc_ops red_qdisc = {
     63  1.1  thorpej 	ALTQT_RED,
     64  1.1  thorpej 	"red",
     65  1.1  thorpej 	red_attach,
     66  1.1  thorpej 	red_detach,
     67  1.1  thorpej 	NULL,			/* clear */
     68  1.1  thorpej 	red_enable,
     69  1.1  thorpej 	red_disable,
     70  1.1  thorpej 	NULL,			/* add class */
     71  1.1  thorpej 	NULL,			/* modify class */
     72  1.1  thorpej 	NULL,			/* delete class */
     73  1.1  thorpej 	NULL,			/* add filter */
     74  1.1  thorpej 	NULL			/* delete filter */
     75  1.1  thorpej };
     76  1.1  thorpej 
     77  1.1  thorpej /*
     78  1.1  thorpej  * parser interface
     79  1.1  thorpej  */
     80  1.1  thorpej #define EQUAL(s1, s2)	(strcmp((s1), (s2)) == 0)
     81  1.1  thorpej 
     82  1.1  thorpej int
     83  1.1  thorpej red_interface_parser(const char *ifname, int argc, char **argv)
     84  1.1  thorpej {
     85  1.1  thorpej 	u_int  	bandwidth = 100000000;	/* 100Mbps */
     86  1.1  thorpej 	u_int	tbrsize = 0;
     87  1.1  thorpej 	int	weight = 0;		/* 0: use default */
     88  1.1  thorpej 	int	inv_pmax = 0;		/* 0: use default */
     89  1.1  thorpej 	int	th_min = 0;		/* 0: use default */
     90  1.1  thorpej 	int	th_max = 0;		/* 0: use default */
     91  1.1  thorpej 	int	qlimit = 60;
     92  1.1  thorpej 	int	pkttime = 0;
     93  1.1  thorpej 	int	flags = 0;
     94  1.1  thorpej 	int	packet_size = 1000;
     95  1.1  thorpej 
     96  1.1  thorpej 	/*
     97  1.1  thorpej 	 * process options
     98  1.1  thorpej 	 */
     99  1.1  thorpej 	while (argc > 0) {
    100  1.1  thorpej 		if (EQUAL(*argv, "bandwidth")) {
    101  1.1  thorpej 			argc--; argv++;
    102  1.1  thorpej 			if (argc > 0)
    103  1.1  thorpej 				bandwidth = atobps(*argv);
    104  1.1  thorpej 		} else if (EQUAL(*argv, "tbrsize")) {
    105  1.1  thorpej 			argc--; argv++;
    106  1.1  thorpej 			if (argc > 0)
    107  1.1  thorpej 				tbrsize = atobytes(*argv);
    108  1.1  thorpej 		} else if (EQUAL(*argv, "packetsize")) {
    109  1.1  thorpej 			argc--; argv++;
    110  1.1  thorpej 			if (argc > 0)
    111  1.1  thorpej 				packet_size = atobytes(*argv);
    112  1.1  thorpej 		} else if (EQUAL(*argv, "weight")) {
    113  1.1  thorpej 			argc--; argv++;
    114  1.1  thorpej 			if (argc > 0)
    115  1.1  thorpej 				weight = (int)strtol(*argv, NULL, 0);
    116  1.1  thorpej 		} else if (EQUAL(*argv, "qlimit")) {
    117  1.1  thorpej 			argc--; argv++;
    118  1.1  thorpej 			if (argc > 0)
    119  1.1  thorpej 				qlimit = (int)strtol(*argv, NULL, 0);
    120  1.1  thorpej 		} else if (EQUAL(*argv, "thmin")) {
    121  1.1  thorpej 			argc--; argv++;
    122  1.1  thorpej 			if (argc > 0)
    123  1.1  thorpej 				th_min = (int)strtol(*argv, NULL, 0);
    124  1.1  thorpej 		} else if (EQUAL(*argv, "thmax")) {
    125  1.1  thorpej 			argc--; argv++;
    126  1.1  thorpej 			if (argc > 0)
    127  1.1  thorpej 				th_max = (int)strtol(*argv, NULL, 0);
    128  1.1  thorpej 		} else if (EQUAL(*argv, "invpmax")) {
    129  1.1  thorpej 			argc--; argv++;
    130  1.1  thorpej 			if (argc > 0)
    131  1.1  thorpej 				inv_pmax = (int)strtol(*argv, NULL, 0);
    132  1.1  thorpej 		} else if (EQUAL(*argv, "red")) {
    133  1.1  thorpej 			/* just skip */
    134  1.1  thorpej 		} else if (EQUAL(*argv, "ecn")) {
    135  1.1  thorpej 			flags |= REDF_ECN;
    136  1.1  thorpej 		} else if (EQUAL(*argv, "flowvalve")) {
    137  1.1  thorpej 			flags |= REDF_FLOWVALVE;
    138  1.1  thorpej 		} else {
    139  1.1  thorpej 			LOG(LOG_ERR, 0, "Unknown keyword '%s'\n", argv);
    140  1.1  thorpej 			return (0);
    141  1.1  thorpej 		}
    142  1.1  thorpej 		argc--; argv++;
    143  1.1  thorpej 	}
    144  1.1  thorpej 
    145  1.1  thorpej 	if (qcmd_tbr_register(ifname, bandwidth, tbrsize) != 0)
    146  1.1  thorpej 		return (0);
    147  1.1  thorpej 
    148  1.1  thorpej 	pkttime = packet_size * 8 * 1000 / (bandwidth / 1000);
    149  1.1  thorpej 	if (weight != 0) {
    150  1.1  thorpej 		/* check if weight is power of 2 */
    151  1.1  thorpej 		int i, w;
    152  1.1  thorpej 
    153  1.1  thorpej 		w = weight;
    154  1.1  thorpej 		for (i = 0; w > 1; i++)
    155  1.1  thorpej 			w = w >> 1;
    156  1.1  thorpej 		w = 1 << i;
    157  1.1  thorpej 		if (weight != w) {
    158  1.1  thorpej 			LOG(LOG_ERR, 0, "weight %d: should be power of 2",
    159  1.1  thorpej 			    weight);
    160  1.1  thorpej 			return (0);
    161  1.1  thorpej 		}
    162  1.1  thorpej 	}
    163  1.1  thorpej 
    164  1.1  thorpej 	if (qcmd_red_add_if(ifname, bandwidth, weight, inv_pmax,
    165  1.1  thorpej 			    th_min, th_max, qlimit, pkttime, flags) != 0)
    166  1.1  thorpej 		return (0);
    167  1.1  thorpej 	return (1);
    168  1.1  thorpej }
    169  1.1  thorpej 
    170  1.1  thorpej /*
    171  1.1  thorpej  * qcmd api
    172  1.1  thorpej  */
    173  1.1  thorpej int
    174  1.1  thorpej qcmd_red_add_if(const char *ifname, u_int bandwidth, int weight,
    175  1.1  thorpej 		int inv_pmax, int th_min, int th_max, int qlimit,
    176  1.1  thorpej 		int pkttime, int flags)
    177  1.1  thorpej {
    178  1.1  thorpej 	int error;
    179  1.1  thorpej 
    180  1.1  thorpej 	error = qop_red_add_if(NULL, ifname, bandwidth, weight, inv_pmax,
    181  1.1  thorpej 			       th_min, th_max, qlimit, pkttime, flags);
    182  1.1  thorpej 	if (error != 0)
    183  1.1  thorpej 		LOG(LOG_ERR, errno, "%s: can't add red on interface '%s'\n",
    184  1.1  thorpej 		    qoperror(error), ifname);
    185  1.1  thorpej 	return (error);
    186  1.1  thorpej }
    187  1.1  thorpej 
    188  1.1  thorpej /*
    189  1.1  thorpej  * qop api
    190  1.1  thorpej  */
    191  1.1  thorpej int
    192  1.1  thorpej qop_red_add_if(struct ifinfo **rp, const char *ifname,
    193  1.1  thorpej 	       u_int bandwidth, int weight, int inv_pmax, int th_min,
    194  1.1  thorpej 	       int th_max, int qlimit, int pkttime, int flags)
    195  1.1  thorpej {
    196  1.1  thorpej 	struct ifinfo *ifinfo = NULL;
    197  1.1  thorpej 	struct red_ifinfo *red_ifinfo;
    198  1.1  thorpej 	int error;
    199  1.1  thorpej 
    200  1.1  thorpej 	if ((red_ifinfo = calloc(1, sizeof(*red_ifinfo))) == NULL)
    201  1.1  thorpej 		return (QOPERR_NOMEM);
    202  1.1  thorpej 	red_ifinfo->weight   = weight;
    203  1.1  thorpej 	red_ifinfo->inv_pmax = inv_pmax;
    204  1.1  thorpej 	red_ifinfo->th_min   = th_min;
    205  1.1  thorpej 	red_ifinfo->th_max   = th_max;
    206  1.1  thorpej 	red_ifinfo->qlimit   = qlimit;
    207  1.1  thorpej 	red_ifinfo->pkttime  = pkttime;
    208  1.1  thorpej 	red_ifinfo->flags    = flags;
    209  1.1  thorpej 
    210  1.1  thorpej 	error = qop_add_if(&ifinfo, ifname, bandwidth,
    211  1.1  thorpej 			   &red_qdisc, red_ifinfo);
    212  1.1  thorpej 	if (error != 0) {
    213  1.1  thorpej 		free(red_ifinfo);
    214  1.1  thorpej 		return (error);
    215  1.1  thorpej 	}
    216  1.1  thorpej 
    217  1.1  thorpej 	if (rp != NULL)
    218  1.1  thorpej 		*rp = ifinfo;
    219  1.1  thorpej 	return (0);
    220  1.1  thorpej }
    221  1.1  thorpej 
    222  1.1  thorpej /*
    223  1.1  thorpej  *  system call interfaces for qdisc_ops
    224  1.1  thorpej  */
    225  1.1  thorpej static int
    226  1.1  thorpej red_attach(struct ifinfo *ifinfo)
    227  1.1  thorpej {
    228  1.1  thorpej 	struct red_interface iface;
    229  1.1  thorpej 	struct red_ifinfo *red_ifinfo;
    230  1.1  thorpej 	struct red_conf conf;
    231  1.1  thorpej 
    232  1.1  thorpej 	if (red_fd < 0 &&
    233  1.1  thorpej 	    (red_fd = open(RED_DEVICE, O_RDWR)) < 0 &&
    234  1.1  thorpej 	    (red_fd = open_module(RED_DEVICE, O_RDWR)) < 0) {
    235  1.1  thorpej 		LOG(LOG_ERR, errno, "RED open\n");
    236  1.1  thorpej 		return (QOPERR_SYSCALL);
    237  1.1  thorpej 	}
    238  1.1  thorpej 
    239  1.1  thorpej 	red_refcount++;
    240  1.1  thorpej 	memset(&iface, 0, sizeof(iface));
    241  1.1  thorpej 	strncpy(iface.red_ifname, ifinfo->ifname, IFNAMSIZ);
    242  1.1  thorpej 
    243  1.1  thorpej 	if (ioctl(red_fd, RED_IF_ATTACH, &iface) < 0)
    244  1.1  thorpej 		return (QOPERR_SYSCALL);
    245  1.1  thorpej 
    246  1.1  thorpej 	/* set red parameters */
    247  1.1  thorpej 	red_ifinfo = (struct red_ifinfo *)ifinfo->private;
    248  1.1  thorpej 	memset(&conf, 0, sizeof(conf));
    249  1.1  thorpej 	strncpy(conf.iface.red_ifname, ifinfo->ifname, IFNAMSIZ);
    250  1.1  thorpej 	conf.red_weight	  = red_ifinfo->weight;
    251  1.1  thorpej 	conf.red_inv_pmax = red_ifinfo->inv_pmax;
    252  1.1  thorpej 	conf.red_thmin    = red_ifinfo->th_min;
    253  1.1  thorpej 	conf.red_thmax    = red_ifinfo->th_max;
    254  1.1  thorpej 	conf.red_limit    = red_ifinfo->qlimit;
    255  1.1  thorpej 	conf.red_flags    = red_ifinfo->flags;
    256  1.1  thorpej 	if (ioctl(red_fd, RED_CONFIG, &conf) < 0)
    257  1.1  thorpej 		return (QOPERR_SYSCALL);
    258  1.1  thorpej 
    259  1.1  thorpej #if 1
    260  1.1  thorpej 	LOG(LOG_INFO, 0, "red attached to %s\n", iface.red_ifname);
    261  1.1  thorpej #endif
    262  1.1  thorpej 	return (0);
    263  1.1  thorpej }
    264  1.1  thorpej 
    265  1.1  thorpej static int
    266  1.1  thorpej red_detach(struct ifinfo *ifinfo)
    267  1.1  thorpej {
    268  1.1  thorpej 	struct red_interface iface;
    269  1.1  thorpej 
    270  1.1  thorpej 	memset(&iface, 0, sizeof(iface));
    271  1.1  thorpej 	strncpy(iface.red_ifname, ifinfo->ifname, IFNAMSIZ);
    272  1.1  thorpej 
    273  1.1  thorpej 	if (ioctl(red_fd, RED_IF_DETACH, &iface) < 0)
    274  1.1  thorpej 		return (QOPERR_SYSCALL);
    275  1.1  thorpej 
    276  1.1  thorpej 	if (--red_refcount == 0) {
    277  1.1  thorpej 		close(red_fd);
    278  1.1  thorpej 		red_fd = -1;
    279  1.1  thorpej 	}
    280  1.1  thorpej 	return (0);
    281  1.1  thorpej }
    282  1.1  thorpej 
    283  1.1  thorpej static int
    284  1.1  thorpej red_enable(struct ifinfo *ifinfo)
    285  1.1  thorpej {
    286  1.1  thorpej 	struct red_interface iface;
    287  1.1  thorpej 
    288  1.1  thorpej 	memset(&iface, 0, sizeof(iface));
    289  1.1  thorpej 	strncpy(iface.red_ifname, ifinfo->ifname, IFNAMSIZ);
    290  1.1  thorpej 
    291  1.1  thorpej 	if (ioctl(red_fd, RED_ENABLE, &iface) < 0)
    292  1.1  thorpej 		return (QOPERR_SYSCALL);
    293  1.1  thorpej 	return (0);
    294  1.1  thorpej }
    295  1.1  thorpej 
    296  1.1  thorpej static int
    297  1.1  thorpej red_disable(struct ifinfo *ifinfo)
    298  1.1  thorpej {
    299  1.1  thorpej 	struct red_interface iface;
    300  1.1  thorpej 
    301  1.1  thorpej 	memset(&iface, 0, sizeof(iface));
    302  1.1  thorpej 	strncpy(iface.red_ifname, ifinfo->ifname, IFNAMSIZ);
    303  1.1  thorpej 
    304  1.1  thorpej 	if (ioctl(red_fd, RED_DISABLE, &iface) < 0)
    305  1.1  thorpej 		return (QOPERR_SYSCALL);
    306  1.1  thorpej 	return (0);
    307  1.1  thorpej }
    308