Home | History | Annotate | Line # | Download | only in altq
altq_cdnr.c revision 1.1
      1  1.1  thorpej /*	$KAME: altq_cdnr.c,v 1.8 2000/12/14 08:12:45 thorpej Exp $	*/
      2  1.1  thorpej 
      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 #if defined(__FreeBSD__) || defined(__NetBSD__)
     30  1.1  thorpej #include "opt_altq.h"
     31  1.1  thorpej #if (__FreeBSD__ != 2)
     32  1.1  thorpej #include "opt_inet.h"
     33  1.1  thorpej #ifdef __FreeBSD__
     34  1.1  thorpej #include "opt_inet6.h"
     35  1.1  thorpej #endif
     36  1.1  thorpej #endif
     37  1.1  thorpej #endif /* __FreeBSD__ || __NetBSD__ */
     38  1.1  thorpej 
     39  1.1  thorpej #include <sys/param.h>
     40  1.1  thorpej #include <sys/malloc.h>
     41  1.1  thorpej #include <sys/mbuf.h>
     42  1.1  thorpej #include <sys/socket.h>
     43  1.1  thorpej #include <sys/sockio.h>
     44  1.1  thorpej #include <sys/systm.h>
     45  1.1  thorpej #include <sys/proc.h>
     46  1.1  thorpej #include <sys/errno.h>
     47  1.1  thorpej #include <sys/kernel.h>
     48  1.1  thorpej #include <sys/queue.h>
     49  1.1  thorpej 
     50  1.1  thorpej #include <net/if.h>
     51  1.1  thorpej #include <net/if_types.h>
     52  1.1  thorpej #include <netinet/in.h>
     53  1.1  thorpej #include <netinet/in_systm.h>
     54  1.1  thorpej #include <netinet/ip.h>
     55  1.1  thorpej #ifdef INET6
     56  1.1  thorpej #include <netinet/ip6.h>
     57  1.1  thorpej #endif
     58  1.1  thorpej 
     59  1.1  thorpej #include <altq/altq.h>
     60  1.1  thorpej #include <altq/altq_conf.h>
     61  1.1  thorpej #include <altq/altq_cdnr.h>
     62  1.1  thorpej 
     63  1.1  thorpej /*
     64  1.1  thorpej  * diffserv traffic conditioning module
     65  1.1  thorpej  */
     66  1.1  thorpej 
     67  1.1  thorpej int altq_cdnr_enabled = 0;
     68  1.1  thorpej 
     69  1.1  thorpej /* traffic conditioner is enabled by ALTQ_CDNR option in opt_altq.h */
     70  1.1  thorpej #ifdef ALTQ_CDNR
     71  1.1  thorpej 
     72  1.1  thorpej /* cdnr_list keeps all cdnr's allocated. */
     73  1.1  thorpej static LIST_HEAD(, top_cdnr) tcb_list;
     74  1.1  thorpej 
     75  1.1  thorpej int cdnropen __P((dev_t, int, int, struct proc *));
     76  1.1  thorpej int cdnrclose __P((dev_t, int, int, struct proc *));
     77  1.1  thorpej int cdnrioctl __P((dev_t, ioctlcmd_t, caddr_t, int, struct proc *));
     78  1.1  thorpej 
     79  1.1  thorpej static int altq_cdnr_input __P((struct mbuf *, int));
     80  1.1  thorpej static struct top_cdnr *tcb_lookup __P((char *ifname));
     81  1.1  thorpej static struct cdnr_block *cdnr_handle2cb __P((u_long));
     82  1.1  thorpej static u_long cdnr_cb2handle __P((struct cdnr_block *));
     83  1.1  thorpej static void *cdnr_cballoc __P((struct top_cdnr *, int,
     84  1.1  thorpej        struct tc_action *(*)(struct cdnr_block *, struct cdnr_pktinfo *)));
     85  1.1  thorpej static void cdnr_cbdestroy __P((void *));
     86  1.1  thorpej static int tca_verify_action __P((struct tc_action *));
     87  1.1  thorpej static void tca_import_action __P((struct tc_action *, struct tc_action *));
     88  1.1  thorpej static void tca_invalidate_action __P((struct tc_action *));
     89  1.1  thorpej 
     90  1.1  thorpej static int generic_element_destroy __P((struct cdnr_block *));
     91  1.1  thorpej static struct top_cdnr *top_create __P((struct ifaltq *));
     92  1.1  thorpej static int top_destroy __P((struct top_cdnr *));
     93  1.1  thorpej static struct cdnr_block *element_create __P((struct top_cdnr *,
     94  1.1  thorpej 					      struct tc_action *));
     95  1.1  thorpej static int element_destroy __P((struct cdnr_block *));
     96  1.1  thorpej static void tb_import_profile __P((struct tbe *, struct tb_profile *));
     97  1.1  thorpej static struct tbmeter *tbm_create __P((struct top_cdnr *, struct tb_profile *,
     98  1.1  thorpej 			   struct tc_action *, struct tc_action *));
     99  1.1  thorpej static int tbm_destroy __P((struct tbmeter *));
    100  1.1  thorpej static struct tc_action *tbm_input __P((struct cdnr_block *,
    101  1.1  thorpej 					struct cdnr_pktinfo *));
    102  1.1  thorpej static struct trtcm *trtcm_create __P((struct top_cdnr *,
    103  1.1  thorpej 		  struct tb_profile *, struct tb_profile *,
    104  1.1  thorpej 		  struct tc_action *, struct tc_action *, struct tc_action *,
    105  1.1  thorpej 		  int));
    106  1.1  thorpej static int trtcm_destroy __P((struct trtcm *));
    107  1.1  thorpej static struct tc_action *trtcm_input __P((struct cdnr_block *,
    108  1.1  thorpej 					  struct cdnr_pktinfo *));
    109  1.1  thorpej static struct tswtcm *tswtcm_create __P((struct top_cdnr *,
    110  1.1  thorpej 		  u_int32_t, u_int32_t, u_int32_t,
    111  1.1  thorpej 		  struct tc_action *, struct tc_action *, struct tc_action *));
    112  1.1  thorpej static int tswtcm_destroy __P((struct tswtcm *));
    113  1.1  thorpej static struct tc_action *tswtcm_input __P((struct cdnr_block *,
    114  1.1  thorpej 					   struct cdnr_pktinfo *));
    115  1.1  thorpej 
    116  1.1  thorpej static int cdnrcmd_if_attach __P((char *));
    117  1.1  thorpej static int cdnrcmd_if_detach __P((char *));
    118  1.1  thorpej static int cdnrcmd_add_element __P((struct cdnr_add_element *));
    119  1.1  thorpej static int cdnrcmd_delete_element __P((struct cdnr_delete_element *));
    120  1.1  thorpej static int cdnrcmd_add_filter __P((struct cdnr_add_filter *));
    121  1.1  thorpej static int cdnrcmd_delete_filter __P((struct cdnr_delete_filter *));
    122  1.1  thorpej static int cdnrcmd_add_tbm __P((struct cdnr_add_tbmeter *));
    123  1.1  thorpej static int cdnrcmd_modify_tbm __P((struct cdnr_modify_tbmeter *));
    124  1.1  thorpej static int cdnrcmd_tbm_stats __P((struct cdnr_tbmeter_stats *));
    125  1.1  thorpej static int cdnrcmd_add_trtcm __P((struct cdnr_add_trtcm *));
    126  1.1  thorpej static int cdnrcmd_modify_trtcm __P((struct cdnr_modify_trtcm *));
    127  1.1  thorpej static int cdnrcmd_tcm_stats __P((struct cdnr_tcm_stats *));
    128  1.1  thorpej static int cdnrcmd_add_tswtcm __P((struct cdnr_add_tswtcm *));
    129  1.1  thorpej static int cdnrcmd_modify_tswtcm __P((struct cdnr_modify_tswtcm *));
    130  1.1  thorpej static int cdnrcmd_get_stats __P((struct cdnr_get_stats *));
    131  1.1  thorpej 
    132  1.1  thorpej /*
    133  1.1  thorpej  * top level input function called from ip_input.
    134  1.1  thorpej  * should be called before converting header fields to host-byte-order.
    135  1.1  thorpej  */
    136  1.1  thorpej int
    137  1.1  thorpej altq_cdnr_input(m, af)
    138  1.1  thorpej 	struct mbuf	*m;
    139  1.1  thorpej 	int		af;	/* address family */
    140  1.1  thorpej {
    141  1.1  thorpej 	struct ifnet		*ifp;
    142  1.1  thorpej 	struct ip		*ip;
    143  1.1  thorpej 	struct top_cdnr		*top;
    144  1.1  thorpej 	struct tc_action	*tca;
    145  1.1  thorpej 	struct cdnr_block	*cb;
    146  1.1  thorpej 	struct cdnr_pktinfo	pktinfo;
    147  1.1  thorpej 
    148  1.1  thorpej 	ifp = m->m_pkthdr.rcvif;
    149  1.1  thorpej 	if (!ALTQ_IS_CNDTNING(&ifp->if_snd))
    150  1.1  thorpej 		/* traffic conditioner is not enabled on this interface */
    151  1.1  thorpej 		return (1);
    152  1.1  thorpej 
    153  1.1  thorpej 	top = ifp->if_snd.altq_cdnr;
    154  1.1  thorpej 
    155  1.1  thorpej 	ip = mtod(m, struct ip *);
    156  1.1  thorpej #ifdef INET6
    157  1.1  thorpej 	if (af == AF_INET6) {
    158  1.1  thorpej 		u_int32_t flowlabel;
    159  1.1  thorpej 
    160  1.1  thorpej 		flowlabel = ((struct ip6_hdr *)ip)->ip6_flow;
    161  1.1  thorpej 		pktinfo.pkt_dscp = (ntohl(flowlabel) >> 20) & DSCP_MASK;
    162  1.1  thorpej 	} else
    163  1.1  thorpej #endif
    164  1.1  thorpej 		pktinfo.pkt_dscp = ip->ip_tos & DSCP_MASK;
    165  1.1  thorpej 	pktinfo.pkt_len = m_pktlen(m);
    166  1.1  thorpej 
    167  1.1  thorpej 	tca = NULL;
    168  1.1  thorpej 
    169  1.1  thorpej 	cb = acc_classify(&top->tc_classifier, m, af);
    170  1.1  thorpej 	if (cb != NULL)
    171  1.1  thorpej 		tca = &cb->cb_action;
    172  1.1  thorpej 
    173  1.1  thorpej 	if (tca == NULL)
    174  1.1  thorpej 		tca = &top->tc_block.cb_action;
    175  1.1  thorpej 
    176  1.1  thorpej 	while (1) {
    177  1.1  thorpej 		PKTCNTR_ADD(&top->tc_cnts[tca->tca_code], pktinfo.pkt_len);
    178  1.1  thorpej 
    179  1.1  thorpej 		switch (tca->tca_code) {
    180  1.1  thorpej 		case TCACODE_PASS:
    181  1.1  thorpej 			return (1);
    182  1.1  thorpej 		case TCACODE_DROP:
    183  1.1  thorpej 			m_freem(m);
    184  1.1  thorpej 			return (0);
    185  1.1  thorpej 		case TCACODE_RETURN:
    186  1.1  thorpej 			return (0);
    187  1.1  thorpej 		case TCACODE_MARK:
    188  1.1  thorpej #ifdef INET6
    189  1.1  thorpej 			if (af == AF_INET6) {
    190  1.1  thorpej 				struct ip6_hdr *ip6 = (struct ip6_hdr *)ip;
    191  1.1  thorpej 				u_int32_t flowlabel;
    192  1.1  thorpej 
    193  1.1  thorpej 				flowlabel = ntohl(ip6->ip6_flow);
    194  1.1  thorpej 				flowlabel = (tca->tca_dscp << 20) |
    195  1.1  thorpej 					(flowlabel & ~(DSCP_MASK << 20));
    196  1.1  thorpej 				ip6->ip6_flow = htonl(flowlabel);
    197  1.1  thorpej 			} else
    198  1.1  thorpej #endif
    199  1.1  thorpej 				ip->ip_tos = tca->tca_dscp |
    200  1.1  thorpej 					(ip->ip_tos & DSCP_CUMASK);
    201  1.1  thorpej 			return (1);
    202  1.1  thorpej 		case TCACODE_NEXT:
    203  1.1  thorpej 			cb = tca->tca_next;
    204  1.1  thorpej 			tca = (*cb->cb_input)(cb, &pktinfo);
    205  1.1  thorpej 			break;
    206  1.1  thorpej 		case TCACODE_NONE:
    207  1.1  thorpej 		default:
    208  1.1  thorpej 			return (1);
    209  1.1  thorpej 		}
    210  1.1  thorpej 	}
    211  1.1  thorpej }
    212  1.1  thorpej 
    213  1.1  thorpej static struct top_cdnr *
    214  1.1  thorpej tcb_lookup(ifname)
    215  1.1  thorpej 	char *ifname;
    216  1.1  thorpej {
    217  1.1  thorpej 	struct top_cdnr *top;
    218  1.1  thorpej 	struct ifnet *ifp;
    219  1.1  thorpej 
    220  1.1  thorpej 	if ((ifp = ifunit(ifname)) != NULL)
    221  1.1  thorpej 		LIST_FOREACH(top, &tcb_list, tc_next)
    222  1.1  thorpej 			if (top->tc_ifq->altq_ifp == ifp)
    223  1.1  thorpej 				return (top);
    224  1.1  thorpej 	return (NULL);
    225  1.1  thorpej }
    226  1.1  thorpej 
    227  1.1  thorpej static struct cdnr_block *
    228  1.1  thorpej cdnr_handle2cb(handle)
    229  1.1  thorpej 	u_long handle;
    230  1.1  thorpej {
    231  1.1  thorpej 	struct cdnr_block *cb;
    232  1.1  thorpej 
    233  1.1  thorpej 	cb = (struct cdnr_block *)handle;
    234  1.1  thorpej 	if (handle != ALIGN(cb))
    235  1.1  thorpej 		return (NULL);
    236  1.1  thorpej 
    237  1.1  thorpej 	if (cb == NULL || cb->cb_handle != handle)
    238  1.1  thorpej 		return (NULL);
    239  1.1  thorpej 	return (cb);
    240  1.1  thorpej }
    241  1.1  thorpej 
    242  1.1  thorpej static u_long
    243  1.1  thorpej cdnr_cb2handle(cb)
    244  1.1  thorpej 	struct cdnr_block *cb;
    245  1.1  thorpej {
    246  1.1  thorpej 	return (cb->cb_handle);
    247  1.1  thorpej }
    248  1.1  thorpej 
    249  1.1  thorpej static void *
    250  1.1  thorpej cdnr_cballoc(top, type, input_func)
    251  1.1  thorpej 	struct top_cdnr *top;
    252  1.1  thorpej 	int type;
    253  1.1  thorpej 	struct tc_action *(*input_func)(struct cdnr_block *,
    254  1.1  thorpej 					struct cdnr_pktinfo *);
    255  1.1  thorpej {
    256  1.1  thorpej 	struct cdnr_block *cb;
    257  1.1  thorpej 	int size;
    258  1.1  thorpej 
    259  1.1  thorpej 	switch (type) {
    260  1.1  thorpej 	case TCETYPE_TOP:
    261  1.1  thorpej 		size = sizeof(struct top_cdnr);
    262  1.1  thorpej 		break;
    263  1.1  thorpej 	case TCETYPE_ELEMENT:
    264  1.1  thorpej 		size = sizeof(struct cdnr_block);
    265  1.1  thorpej 		break;
    266  1.1  thorpej 	case TCETYPE_TBMETER:
    267  1.1  thorpej 		size = sizeof(struct tbmeter);
    268  1.1  thorpej 		break;
    269  1.1  thorpej 	case TCETYPE_TRTCM:
    270  1.1  thorpej 		size = sizeof(struct trtcm);
    271  1.1  thorpej 		break;
    272  1.1  thorpej 	case TCETYPE_TSWTCM:
    273  1.1  thorpej 		size = sizeof(struct tswtcm);
    274  1.1  thorpej 		break;
    275  1.1  thorpej 	default:
    276  1.1  thorpej 		return (NULL);
    277  1.1  thorpej 	}
    278  1.1  thorpej 
    279  1.1  thorpej 	MALLOC(cb, struct cdnr_block *, size, M_DEVBUF, M_WAITOK);
    280  1.1  thorpej 	if (cb == NULL)
    281  1.1  thorpej 		return (NULL);
    282  1.1  thorpej 	bzero(cb, size);
    283  1.1  thorpej 
    284  1.1  thorpej 	cb->cb_len = size;
    285  1.1  thorpej 	cb->cb_type = type;
    286  1.1  thorpej 	cb->cb_ref = 0;
    287  1.1  thorpej 	cb->cb_handle = (u_long)cb;
    288  1.1  thorpej 	if (top == NULL)
    289  1.1  thorpej 		cb->cb_top = (struct top_cdnr *)cb;
    290  1.1  thorpej 	else
    291  1.1  thorpej 		cb->cb_top = top;
    292  1.1  thorpej 
    293  1.1  thorpej 	if (input_func != NULL) {
    294  1.1  thorpej 		/*
    295  1.1  thorpej 		 * if this cdnr has an action function,
    296  1.1  thorpej 		 * make tc_action to call itself.
    297  1.1  thorpej 		 */
    298  1.1  thorpej 		cb->cb_action.tca_code = TCACODE_NEXT;
    299  1.1  thorpej 		cb->cb_action.tca_next = cb;
    300  1.1  thorpej 		cb->cb_input = input_func;
    301  1.1  thorpej 	} else
    302  1.1  thorpej 		cb->cb_action.tca_code = TCACODE_NONE;
    303  1.1  thorpej 
    304  1.1  thorpej 	/* if this isn't top, register the element to the top level cdnr */
    305  1.1  thorpej 	if (top != NULL)
    306  1.1  thorpej 		LIST_INSERT_HEAD(&top->tc_elements, cb, cb_next);
    307  1.1  thorpej 
    308  1.1  thorpej 	return ((void *)cb);
    309  1.1  thorpej }
    310  1.1  thorpej 
    311  1.1  thorpej static void
    312  1.1  thorpej cdnr_cbdestroy(cblock)
    313  1.1  thorpej 	void *cblock;
    314  1.1  thorpej {
    315  1.1  thorpej 	struct cdnr_block *cb = cblock;
    316  1.1  thorpej 
    317  1.1  thorpej 	/* delete filters belonging to this cdnr */
    318  1.1  thorpej 	acc_discard_filters(&cb->cb_top->tc_classifier, cb, 0);
    319  1.1  thorpej 
    320  1.1  thorpej 	/* remove from the top level cdnr */
    321  1.1  thorpej 	if (cb->cb_top != cblock)
    322  1.1  thorpej 		LIST_REMOVE(cb, cb_next);
    323  1.1  thorpej 
    324  1.1  thorpej 	FREE(cb, M_DEVBUF);
    325  1.1  thorpej }
    326  1.1  thorpej 
    327  1.1  thorpej /*
    328  1.1  thorpej  * conditioner common destroy routine
    329  1.1  thorpej  */
    330  1.1  thorpej static int
    331  1.1  thorpej generic_element_destroy(cb)
    332  1.1  thorpej 	struct cdnr_block *cb;
    333  1.1  thorpej {
    334  1.1  thorpej 	int error = 0;
    335  1.1  thorpej 
    336  1.1  thorpej 	switch (cb->cb_type) {
    337  1.1  thorpej 	case TCETYPE_TOP:
    338  1.1  thorpej 		error = top_destroy((struct top_cdnr *)cb);
    339  1.1  thorpej 		break;
    340  1.1  thorpej 	case TCETYPE_ELEMENT:
    341  1.1  thorpej 		error = element_destroy(cb);
    342  1.1  thorpej 		break;
    343  1.1  thorpej 	case TCETYPE_TBMETER:
    344  1.1  thorpej 		error = tbm_destroy((struct tbmeter *)cb);
    345  1.1  thorpej 		break;
    346  1.1  thorpej 	case TCETYPE_TRTCM:
    347  1.1  thorpej 		error = trtcm_destroy((struct trtcm *)cb);
    348  1.1  thorpej 		break;
    349  1.1  thorpej 	case TCETYPE_TSWTCM:
    350  1.1  thorpej 		error = tswtcm_destroy((struct tswtcm *)cb);
    351  1.1  thorpej 		break;
    352  1.1  thorpej 	default:
    353  1.1  thorpej 		error = EINVAL;
    354  1.1  thorpej 	}
    355  1.1  thorpej 	return (error);
    356  1.1  thorpej }
    357  1.1  thorpej 
    358  1.1  thorpej static int
    359  1.1  thorpej tca_verify_action(utca)
    360  1.1  thorpej 	struct tc_action *utca;
    361  1.1  thorpej {
    362  1.1  thorpej 	switch (utca->tca_code) {
    363  1.1  thorpej 	case TCACODE_PASS:
    364  1.1  thorpej 	case TCACODE_DROP:
    365  1.1  thorpej 	case TCACODE_MARK:
    366  1.1  thorpej 		/* these are ok */
    367  1.1  thorpej 		break;
    368  1.1  thorpej 
    369  1.1  thorpej 	case TCACODE_HANDLE:
    370  1.1  thorpej 		/* verify handle value */
    371  1.1  thorpej 		if (cdnr_handle2cb(utca->tca_handle) == NULL)
    372  1.1  thorpej 			return (-1);
    373  1.1  thorpej 		break;
    374  1.1  thorpej 
    375  1.1  thorpej 	case TCACODE_NONE:
    376  1.1  thorpej 	case TCACODE_RETURN:
    377  1.1  thorpej 	case TCACODE_NEXT:
    378  1.1  thorpej 	default:
    379  1.1  thorpej 		/* should not be passed from a user */
    380  1.1  thorpej 		return (-1);
    381  1.1  thorpej 	}
    382  1.1  thorpej 	return (0);
    383  1.1  thorpej }
    384  1.1  thorpej 
    385  1.1  thorpej static void
    386  1.1  thorpej tca_import_action(ktca, utca)
    387  1.1  thorpej 	struct tc_action *ktca, *utca;
    388  1.1  thorpej {
    389  1.1  thorpej 	struct cdnr_block *cb;
    390  1.1  thorpej 
    391  1.1  thorpej 	*ktca = *utca;
    392  1.1  thorpej 	if (ktca->tca_code == TCACODE_HANDLE) {
    393  1.1  thorpej 		cb = cdnr_handle2cb(ktca->tca_handle);
    394  1.1  thorpej 		if (cb == NULL) {
    395  1.1  thorpej 			ktca->tca_code = TCACODE_NONE;
    396  1.1  thorpej 			return;
    397  1.1  thorpej 		}
    398  1.1  thorpej 		ktca->tca_code = TCACODE_NEXT;
    399  1.1  thorpej 		ktca->tca_next = cb;
    400  1.1  thorpej 		cb->cb_ref++;
    401  1.1  thorpej 	} else if (ktca->tca_code == TCACODE_MARK) {
    402  1.1  thorpej 		ktca->tca_dscp &= DSCP_MASK;
    403  1.1  thorpej 	}
    404  1.1  thorpej 	return;
    405  1.1  thorpej }
    406  1.1  thorpej 
    407  1.1  thorpej static void
    408  1.1  thorpej tca_invalidate_action(tca)
    409  1.1  thorpej 	struct tc_action *tca;
    410  1.1  thorpej {
    411  1.1  thorpej 	struct cdnr_block *cb;
    412  1.1  thorpej 
    413  1.1  thorpej 	if (tca->tca_code == TCACODE_NEXT) {
    414  1.1  thorpej 		cb = tca->tca_next;
    415  1.1  thorpej 		if (cb == NULL)
    416  1.1  thorpej 			return;
    417  1.1  thorpej 		cb->cb_ref--;
    418  1.1  thorpej 	}
    419  1.1  thorpej 	tca->tca_code = TCACODE_NONE;
    420  1.1  thorpej }
    421  1.1  thorpej 
    422  1.1  thorpej /*
    423  1.1  thorpej  * top level traffic conditioner
    424  1.1  thorpej  */
    425  1.1  thorpej static struct top_cdnr *
    426  1.1  thorpej top_create(ifq)
    427  1.1  thorpej 	struct ifaltq *ifq;
    428  1.1  thorpej {
    429  1.1  thorpej 	struct top_cdnr *top;
    430  1.1  thorpej 
    431  1.1  thorpej 	if ((top = cdnr_cballoc(NULL, TCETYPE_TOP, NULL)) == NULL)
    432  1.1  thorpej 		return (NULL);
    433  1.1  thorpej 
    434  1.1  thorpej 	top->tc_ifq = ifq;
    435  1.1  thorpej 	/* set default action for the top level conditioner */
    436  1.1  thorpej 	top->tc_block.cb_action.tca_code = TCACODE_PASS;
    437  1.1  thorpej 
    438  1.1  thorpej 	LIST_INSERT_HEAD(&tcb_list, top, tc_next);
    439  1.1  thorpej 
    440  1.1  thorpej 	ifq->altq_cdnr = top;
    441  1.1  thorpej 
    442  1.1  thorpej 	return (top);
    443  1.1  thorpej }
    444  1.1  thorpej 
    445  1.1  thorpej static int
    446  1.1  thorpej top_destroy(top)
    447  1.1  thorpej 	struct top_cdnr *top;
    448  1.1  thorpej {
    449  1.1  thorpej 	struct cdnr_block *cb;
    450  1.1  thorpej 
    451  1.1  thorpej 	if (ALTQ_IS_CNDTNING(top->tc_ifq))
    452  1.1  thorpej 		ALTQ_CLEAR_CNDTNING(top->tc_ifq);
    453  1.1  thorpej 	top->tc_ifq->altq_cdnr = NULL;
    454  1.1  thorpej 
    455  1.1  thorpej 	/*
    456  1.1  thorpej 	 * destroy all the conditioner elements belonging to this interface
    457  1.1  thorpej 	 */
    458  1.1  thorpej 	while ((cb = LIST_FIRST(&top->tc_elements)) != NULL) {
    459  1.1  thorpej 		while (cb != NULL && cb->cb_ref > 0)
    460  1.1  thorpej 			cb = LIST_NEXT(cb, cb_next);
    461  1.1  thorpej 		if (cb != NULL)
    462  1.1  thorpej 			generic_element_destroy(cb);
    463  1.1  thorpej 	}
    464  1.1  thorpej 
    465  1.1  thorpej 	LIST_REMOVE(top, tc_next);
    466  1.1  thorpej 
    467  1.1  thorpej 	cdnr_cbdestroy(top);
    468  1.1  thorpej 
    469  1.1  thorpej 	/* if there is no active conditioner, remove the input hook */
    470  1.1  thorpej 	if (altq_input != NULL) {
    471  1.1  thorpej 		LIST_FOREACH(top, &tcb_list, tc_next)
    472  1.1  thorpej 			if (ALTQ_IS_CNDTNING(top->tc_ifq))
    473  1.1  thorpej 				break;
    474  1.1  thorpej 		if (top == NULL)
    475  1.1  thorpej 			altq_input = NULL;
    476  1.1  thorpej 	}
    477  1.1  thorpej 
    478  1.1  thorpej 	return (0);
    479  1.1  thorpej }
    480  1.1  thorpej 
    481  1.1  thorpej /*
    482  1.1  thorpej  * simple tc elements without input function (e.g., dropper and makers).
    483  1.1  thorpej  */
    484  1.1  thorpej static struct cdnr_block *
    485  1.1  thorpej element_create(top, action)
    486  1.1  thorpej 	struct top_cdnr *top;
    487  1.1  thorpej 	struct tc_action *action;
    488  1.1  thorpej {
    489  1.1  thorpej 	struct cdnr_block *cb;
    490  1.1  thorpej 
    491  1.1  thorpej 	if (tca_verify_action(action) < 0)
    492  1.1  thorpej 		return (NULL);
    493  1.1  thorpej 
    494  1.1  thorpej 	if ((cb = cdnr_cballoc(top, TCETYPE_ELEMENT, NULL)) == NULL)
    495  1.1  thorpej 		return (NULL);
    496  1.1  thorpej 
    497  1.1  thorpej 	tca_import_action(&cb->cb_action, action);
    498  1.1  thorpej 
    499  1.1  thorpej 	return (cb);
    500  1.1  thorpej }
    501  1.1  thorpej 
    502  1.1  thorpej static int
    503  1.1  thorpej element_destroy(cb)
    504  1.1  thorpej 	struct cdnr_block *cb;
    505  1.1  thorpej {
    506  1.1  thorpej 	if (cb->cb_ref > 0)
    507  1.1  thorpej 		return (EBUSY);
    508  1.1  thorpej 
    509  1.1  thorpej 	tca_invalidate_action(&cb->cb_action);
    510  1.1  thorpej 
    511  1.1  thorpej 	cdnr_cbdestroy(cb);
    512  1.1  thorpej 	return (0);
    513  1.1  thorpej }
    514  1.1  thorpej 
    515  1.1  thorpej /*
    516  1.1  thorpej  * internal representation of token bucket parameters
    517  1.1  thorpej  *	rate: 	byte_per_unittime << 32
    518  1.1  thorpej  *		(((bits_per_sec) / 8) << 32) / machclk_freq
    519  1.1  thorpej  *	depth:	byte << 32
    520  1.1  thorpej  *
    521  1.1  thorpej  */
    522  1.1  thorpej #define	TB_SHIFT	32
    523  1.1  thorpej #define	TB_SCALE(x)	((u_int64_t)(x) << TB_SHIFT)
    524  1.1  thorpej #define	TB_UNSCALE(x)	((x) >> TB_SHIFT)
    525  1.1  thorpej 
    526  1.1  thorpej static void
    527  1.1  thorpej tb_import_profile(tb, profile)
    528  1.1  thorpej 	struct tbe *tb;
    529  1.1  thorpej 	struct tb_profile *profile;
    530  1.1  thorpej {
    531  1.1  thorpej 	tb->rate = TB_SCALE(profile->rate / 8) / machclk_freq;
    532  1.1  thorpej 	tb->depth = TB_SCALE(profile->depth);
    533  1.1  thorpej 	if (tb->rate > 0)
    534  1.1  thorpej 		tb->filluptime = tb->depth / tb->rate;
    535  1.1  thorpej 	else
    536  1.1  thorpej 		tb->filluptime = 0xffffffffffffffffLL;
    537  1.1  thorpej 	tb->token = tb->depth;
    538  1.1  thorpej 	tb->last = read_machclk();
    539  1.1  thorpej }
    540  1.1  thorpej 
    541  1.1  thorpej /*
    542  1.1  thorpej  * simple token bucket meter
    543  1.1  thorpej  */
    544  1.1  thorpej static struct tbmeter *
    545  1.1  thorpej tbm_create(top, profile, in_action, out_action)
    546  1.1  thorpej 	struct top_cdnr *top;
    547  1.1  thorpej 	struct tb_profile *profile;
    548  1.1  thorpej 	struct tc_action *in_action, *out_action;
    549  1.1  thorpej {
    550  1.1  thorpej 	struct tbmeter *tbm = NULL;
    551  1.1  thorpej 
    552  1.1  thorpej 	if (tca_verify_action(in_action) < 0
    553  1.1  thorpej 	    || tca_verify_action(out_action) < 0)
    554  1.1  thorpej 		return (NULL);
    555  1.1  thorpej 
    556  1.1  thorpej 	if ((tbm = cdnr_cballoc(top, TCETYPE_TBMETER,
    557  1.1  thorpej 				tbm_input)) == NULL)
    558  1.1  thorpej 		return (NULL);
    559  1.1  thorpej 
    560  1.1  thorpej 	tb_import_profile(&tbm->tb, profile);
    561  1.1  thorpej 
    562  1.1  thorpej 	tca_import_action(&tbm->in_action, in_action);
    563  1.1  thorpej 	tca_import_action(&tbm->out_action, out_action);
    564  1.1  thorpej 
    565  1.1  thorpej 	return (tbm);
    566  1.1  thorpej }
    567  1.1  thorpej 
    568  1.1  thorpej static int
    569  1.1  thorpej tbm_destroy(tbm)
    570  1.1  thorpej 	struct tbmeter *tbm;
    571  1.1  thorpej {
    572  1.1  thorpej 	if (tbm->cdnrblk.cb_ref > 0)
    573  1.1  thorpej 		return (EBUSY);
    574  1.1  thorpej 
    575  1.1  thorpej 	tca_invalidate_action(&tbm->in_action);
    576  1.1  thorpej 	tca_invalidate_action(&tbm->out_action);
    577  1.1  thorpej 
    578  1.1  thorpej 	cdnr_cbdestroy(tbm);
    579  1.1  thorpej 	return (0);
    580  1.1  thorpej }
    581  1.1  thorpej 
    582  1.1  thorpej static struct tc_action *
    583  1.1  thorpej tbm_input(cb, pktinfo)
    584  1.1  thorpej 	struct cdnr_block *cb;
    585  1.1  thorpej 	struct cdnr_pktinfo *pktinfo;
    586  1.1  thorpej {
    587  1.1  thorpej 	struct tbmeter *tbm = (struct tbmeter *)cb;
    588  1.1  thorpej 	u_int64_t	len;
    589  1.1  thorpej 	u_int64_t	interval, now;
    590  1.1  thorpej 
    591  1.1  thorpej 	len = TB_SCALE(pktinfo->pkt_len);
    592  1.1  thorpej 
    593  1.1  thorpej 	if (tbm->tb.token < len) {
    594  1.1  thorpej 		now = read_machclk();
    595  1.1  thorpej 		interval = now - tbm->tb.last;
    596  1.1  thorpej 		if (interval >= tbm->tb.filluptime)
    597  1.1  thorpej 			tbm->tb.token = tbm->tb.depth;
    598  1.1  thorpej 		else {
    599  1.1  thorpej 			tbm->tb.token += interval * tbm->tb.rate;
    600  1.1  thorpej 			if (tbm->tb.token > tbm->tb.depth)
    601  1.1  thorpej 				tbm->tb.token = tbm->tb.depth;
    602  1.1  thorpej 		}
    603  1.1  thorpej 		tbm->tb.last = now;
    604  1.1  thorpej 	}
    605  1.1  thorpej 
    606  1.1  thorpej 	if (tbm->tb.token < len) {
    607  1.1  thorpej 		PKTCNTR_ADD(&tbm->out_cnt, pktinfo->pkt_len);
    608  1.1  thorpej 		return (&tbm->out_action);
    609  1.1  thorpej 	}
    610  1.1  thorpej 
    611  1.1  thorpej 	tbm->tb.token -= len;
    612  1.1  thorpej 	PKTCNTR_ADD(&tbm->in_cnt, pktinfo->pkt_len);
    613  1.1  thorpej 	return (&tbm->in_action);
    614  1.1  thorpej }
    615  1.1  thorpej 
    616  1.1  thorpej /*
    617  1.1  thorpej  * two rate three color marker
    618  1.1  thorpej  * as described in draft-heinanen-diffserv-trtcm-01.txt
    619  1.1  thorpej  */
    620  1.1  thorpej static struct trtcm *
    621  1.1  thorpej trtcm_create(top, cmtd_profile, peak_profile,
    622  1.1  thorpej 	     green_action, yellow_action, red_action, coloraware)
    623  1.1  thorpej 	struct top_cdnr *top;
    624  1.1  thorpej 	struct tb_profile *cmtd_profile, *peak_profile;
    625  1.1  thorpej 	struct tc_action *green_action, *yellow_action, *red_action;
    626  1.1  thorpej 	int	coloraware;
    627  1.1  thorpej {
    628  1.1  thorpej 	struct trtcm *tcm = NULL;
    629  1.1  thorpej 
    630  1.1  thorpej 	if (tca_verify_action(green_action) < 0
    631  1.1  thorpej 	    || tca_verify_action(yellow_action) < 0
    632  1.1  thorpej 	    || tca_verify_action(red_action) < 0)
    633  1.1  thorpej 		return (NULL);
    634  1.1  thorpej 
    635  1.1  thorpej 	if ((tcm = cdnr_cballoc(top, TCETYPE_TRTCM,
    636  1.1  thorpej 				trtcm_input)) == NULL)
    637  1.1  thorpej 		return (NULL);
    638  1.1  thorpej 
    639  1.1  thorpej 	tb_import_profile(&tcm->cmtd_tb, cmtd_profile);
    640  1.1  thorpej 	tb_import_profile(&tcm->peak_tb, peak_profile);
    641  1.1  thorpej 
    642  1.1  thorpej 	tca_import_action(&tcm->green_action, green_action);
    643  1.1  thorpej 	tca_import_action(&tcm->yellow_action, yellow_action);
    644  1.1  thorpej 	tca_import_action(&tcm->red_action, red_action);
    645  1.1  thorpej 
    646  1.1  thorpej 	/* set dscps to use */
    647  1.1  thorpej 	if (tcm->green_action.tca_code == TCACODE_MARK)
    648  1.1  thorpej 		tcm->green_dscp = tcm->green_action.tca_dscp & DSCP_MASK;
    649  1.1  thorpej 	else
    650  1.1  thorpej 		tcm->green_dscp = DSCP_AF11;
    651  1.1  thorpej 	if (tcm->yellow_action.tca_code == TCACODE_MARK)
    652  1.1  thorpej 		tcm->yellow_dscp = tcm->yellow_action.tca_dscp & DSCP_MASK;
    653  1.1  thorpej 	else
    654  1.1  thorpej 		tcm->yellow_dscp = DSCP_AF12;
    655  1.1  thorpej 	if (tcm->red_action.tca_code == TCACODE_MARK)
    656  1.1  thorpej 		tcm->red_dscp = tcm->red_action.tca_dscp & DSCP_MASK;
    657  1.1  thorpej 	else
    658  1.1  thorpej 		tcm->red_dscp = DSCP_AF13;
    659  1.1  thorpej 
    660  1.1  thorpej 	tcm->coloraware = coloraware;
    661  1.1  thorpej 
    662  1.1  thorpej 	return (tcm);
    663  1.1  thorpej }
    664  1.1  thorpej 
    665  1.1  thorpej static int
    666  1.1  thorpej trtcm_destroy(tcm)
    667  1.1  thorpej 	struct trtcm *tcm;
    668  1.1  thorpej {
    669  1.1  thorpej 	if (tcm->cdnrblk.cb_ref > 0)
    670  1.1  thorpej 		return (EBUSY);
    671  1.1  thorpej 
    672  1.1  thorpej 	tca_invalidate_action(&tcm->green_action);
    673  1.1  thorpej 	tca_invalidate_action(&tcm->yellow_action);
    674  1.1  thorpej 	tca_invalidate_action(&tcm->red_action);
    675  1.1  thorpej 
    676  1.1  thorpej 	cdnr_cbdestroy(tcm);
    677  1.1  thorpej 	return (0);
    678  1.1  thorpej }
    679  1.1  thorpej 
    680  1.1  thorpej static struct tc_action *
    681  1.1  thorpej trtcm_input(cb, pktinfo)
    682  1.1  thorpej 	struct cdnr_block *cb;
    683  1.1  thorpej 	struct cdnr_pktinfo *pktinfo;
    684  1.1  thorpej {
    685  1.1  thorpej 	struct trtcm *tcm = (struct trtcm *)cb;
    686  1.1  thorpej 	u_int64_t	len;
    687  1.1  thorpej 	u_int64_t	interval, now;
    688  1.1  thorpej 	u_int8_t	color;
    689  1.1  thorpej 
    690  1.1  thorpej 	len = TB_SCALE(pktinfo->pkt_len);
    691  1.1  thorpej 	if (tcm->coloraware) {
    692  1.1  thorpej 		color = pktinfo->pkt_dscp;
    693  1.1  thorpej 		if (color != tcm->yellow_dscp && color != tcm->red_dscp)
    694  1.1  thorpej 			color = tcm->green_dscp;
    695  1.1  thorpej 	} else {
    696  1.1  thorpej 		/* if color-blind, precolor it as green */
    697  1.1  thorpej 		color = tcm->green_dscp;
    698  1.1  thorpej 	}
    699  1.1  thorpej 
    700  1.1  thorpej 	now = read_machclk();
    701  1.1  thorpej 	if (tcm->cmtd_tb.token < len) {
    702  1.1  thorpej 		interval = now - tcm->cmtd_tb.last;
    703  1.1  thorpej 		if (interval >= tcm->cmtd_tb.filluptime)
    704  1.1  thorpej 			tcm->cmtd_tb.token = tcm->cmtd_tb.depth;
    705  1.1  thorpej 		else {
    706  1.1  thorpej 			tcm->cmtd_tb.token += interval * tcm->cmtd_tb.rate;
    707  1.1  thorpej 			if (tcm->cmtd_tb.token > tcm->cmtd_tb.depth)
    708  1.1  thorpej 				tcm->cmtd_tb.token = tcm->cmtd_tb.depth;
    709  1.1  thorpej 		}
    710  1.1  thorpej 		tcm->cmtd_tb.last = now;
    711  1.1  thorpej 	}
    712  1.1  thorpej 	if (tcm->peak_tb.token < len) {
    713  1.1  thorpej 		interval = now - tcm->peak_tb.last;
    714  1.1  thorpej 		if (interval >= tcm->peak_tb.filluptime)
    715  1.1  thorpej 			tcm->peak_tb.token = tcm->peak_tb.depth;
    716  1.1  thorpej 		else {
    717  1.1  thorpej 			tcm->peak_tb.token += interval * tcm->peak_tb.rate;
    718  1.1  thorpej 			if (tcm->peak_tb.token > tcm->peak_tb.depth)
    719  1.1  thorpej 				tcm->peak_tb.token = tcm->peak_tb.depth;
    720  1.1  thorpej 		}
    721  1.1  thorpej 		tcm->peak_tb.last = now;
    722  1.1  thorpej 	}
    723  1.1  thorpej 
    724  1.1  thorpej 	if (color == tcm->red_dscp || tcm->peak_tb.token < len) {
    725  1.1  thorpej 		pktinfo->pkt_dscp = tcm->red_dscp;
    726  1.1  thorpej 		PKTCNTR_ADD(&tcm->red_cnt, pktinfo->pkt_len);
    727  1.1  thorpej 		return (&tcm->red_action);
    728  1.1  thorpej 	}
    729  1.1  thorpej 
    730  1.1  thorpej 	if (color == tcm->yellow_dscp || tcm->cmtd_tb.token < len) {
    731  1.1  thorpej 		pktinfo->pkt_dscp = tcm->yellow_dscp;
    732  1.1  thorpej 		tcm->peak_tb.token -= len;
    733  1.1  thorpej 		PKTCNTR_ADD(&tcm->yellow_cnt, pktinfo->pkt_len);
    734  1.1  thorpej 		return (&tcm->yellow_action);
    735  1.1  thorpej 	}
    736  1.1  thorpej 
    737  1.1  thorpej 	pktinfo->pkt_dscp = tcm->green_dscp;
    738  1.1  thorpej 	tcm->cmtd_tb.token -= len;
    739  1.1  thorpej 	tcm->peak_tb.token -= len;
    740  1.1  thorpej 	PKTCNTR_ADD(&tcm->green_cnt, pktinfo->pkt_len);
    741  1.1  thorpej 	return (&tcm->green_action);
    742  1.1  thorpej }
    743  1.1  thorpej 
    744  1.1  thorpej /*
    745  1.1  thorpej  * time sliding window three color marker
    746  1.1  thorpej  * as described in draft-fang-diffserv-tc-tswtcm-00.txt
    747  1.1  thorpej  */
    748  1.1  thorpej static struct tswtcm *
    749  1.1  thorpej tswtcm_create(top, cmtd_rate, peak_rate, avg_interval,
    750  1.1  thorpej 	      green_action, yellow_action, red_action)
    751  1.1  thorpej 	struct top_cdnr *top;
    752  1.1  thorpej 	u_int32_t	cmtd_rate, peak_rate, avg_interval;
    753  1.1  thorpej 	struct tc_action *green_action, *yellow_action, *red_action;
    754  1.1  thorpej {
    755  1.1  thorpej 	struct tswtcm *tsw;
    756  1.1  thorpej 
    757  1.1  thorpej 	if (tca_verify_action(green_action) < 0
    758  1.1  thorpej 	    || tca_verify_action(yellow_action) < 0
    759  1.1  thorpej 	    || tca_verify_action(red_action) < 0)
    760  1.1  thorpej 		return (NULL);
    761  1.1  thorpej 
    762  1.1  thorpej 	if ((tsw = cdnr_cballoc(top, TCETYPE_TSWTCM,
    763  1.1  thorpej 				tswtcm_input)) == NULL)
    764  1.1  thorpej 		return (NULL);
    765  1.1  thorpej 
    766  1.1  thorpej 	tca_import_action(&tsw->green_action, green_action);
    767  1.1  thorpej 	tca_import_action(&tsw->yellow_action, yellow_action);
    768  1.1  thorpej 	tca_import_action(&tsw->red_action, red_action);
    769  1.1  thorpej 
    770  1.1  thorpej 	/* set dscps to use */
    771  1.1  thorpej 	if (tsw->green_action.tca_code == TCACODE_MARK)
    772  1.1  thorpej 		tsw->green_dscp = tsw->green_action.tca_dscp & DSCP_MASK;
    773  1.1  thorpej 	else
    774  1.1  thorpej 		tsw->green_dscp = DSCP_AF11;
    775  1.1  thorpej 	if (tsw->yellow_action.tca_code == TCACODE_MARK)
    776  1.1  thorpej 		tsw->yellow_dscp = tsw->yellow_action.tca_dscp & DSCP_MASK;
    777  1.1  thorpej 	else
    778  1.1  thorpej 		tsw->yellow_dscp = DSCP_AF12;
    779  1.1  thorpej 	if (tsw->red_action.tca_code == TCACODE_MARK)
    780  1.1  thorpej 		tsw->red_dscp = tsw->red_action.tca_dscp & DSCP_MASK;
    781  1.1  thorpej 	else
    782  1.1  thorpej 		tsw->red_dscp = DSCP_AF13;
    783  1.1  thorpej 
    784  1.1  thorpej 	/* convert rates from bits/sec to bytes/sec */
    785  1.1  thorpej 	tsw->cmtd_rate = cmtd_rate / 8;
    786  1.1  thorpej 	tsw->peak_rate = peak_rate / 8;
    787  1.1  thorpej 	tsw->avg_rate = 0;
    788  1.1  thorpej 
    789  1.1  thorpej 	/* timewin is converted from msec to machine clock unit */
    790  1.1  thorpej 	tsw->timewin = (u_int64_t)machclk_freq * avg_interval / 1000;
    791  1.1  thorpej 
    792  1.1  thorpej 	return (tsw);
    793  1.1  thorpej }
    794  1.1  thorpej 
    795  1.1  thorpej static int
    796  1.1  thorpej tswtcm_destroy(tsw)
    797  1.1  thorpej 	struct tswtcm *tsw;
    798  1.1  thorpej {
    799  1.1  thorpej 	if (tsw->cdnrblk.cb_ref > 0)
    800  1.1  thorpej 		return (EBUSY);
    801  1.1  thorpej 
    802  1.1  thorpej 	tca_invalidate_action(&tsw->green_action);
    803  1.1  thorpej 	tca_invalidate_action(&tsw->yellow_action);
    804  1.1  thorpej 	tca_invalidate_action(&tsw->red_action);
    805  1.1  thorpej 
    806  1.1  thorpej 	cdnr_cbdestroy(tsw);
    807  1.1  thorpej 	return (0);
    808  1.1  thorpej }
    809  1.1  thorpej 
    810  1.1  thorpej static struct tc_action *
    811  1.1  thorpej tswtcm_input(cb, pktinfo)
    812  1.1  thorpej 	struct cdnr_block *cb;
    813  1.1  thorpej 	struct cdnr_pktinfo *pktinfo;
    814  1.1  thorpej {
    815  1.1  thorpej 	struct tswtcm	*tsw = (struct tswtcm *)cb;
    816  1.1  thorpej 	int		len;
    817  1.1  thorpej 	u_int32_t	avg_rate;
    818  1.1  thorpej 	u_int64_t	interval, now, tmp;
    819  1.1  thorpej 
    820  1.1  thorpej 	/*
    821  1.1  thorpej 	 * rate estimator
    822  1.1  thorpej 	 */
    823  1.1  thorpej 	len = pktinfo->pkt_len;
    824  1.1  thorpej 	now = read_machclk();
    825  1.1  thorpej 
    826  1.1  thorpej 	interval = now - tsw->t_front;
    827  1.1  thorpej 	/*
    828  1.1  thorpej 	 * calculate average rate:
    829  1.1  thorpej 	 *	avg = (avg * timewin + pkt_len)/(timewin + interval)
    830  1.1  thorpej 	 * pkt_len needs to be multiplied by machclk_freq in order to
    831  1.1  thorpej 	 * get (bytes/sec).
    832  1.1  thorpej 	 * note: when avg_rate (bytes/sec) and timewin (machclk unit) are
    833  1.1  thorpej 	 * less than 32 bits, the following 64-bit operation has enough
    834  1.1  thorpej 	 * precision.
    835  1.1  thorpej 	 */
    836  1.1  thorpej 	tmp = ((u_int64_t)tsw->avg_rate * tsw->timewin
    837  1.1  thorpej 	       + (u_int64_t)len * machclk_freq) / (tsw->timewin + interval);
    838  1.1  thorpej 	tsw->avg_rate = avg_rate = (u_int32_t)tmp;
    839  1.1  thorpej 	tsw->t_front = now;
    840  1.1  thorpej 
    841  1.1  thorpej 	/*
    842  1.1  thorpej 	 * marker
    843  1.1  thorpej 	 */
    844  1.1  thorpej 	if (avg_rate > tsw->cmtd_rate) {
    845  1.1  thorpej 		u_int32_t randval = random() % avg_rate;
    846  1.1  thorpej 
    847  1.1  thorpej 		if (avg_rate > tsw->peak_rate) {
    848  1.1  thorpej 			if (randval < avg_rate - tsw->peak_rate) {
    849  1.1  thorpej 				/* mark red */
    850  1.1  thorpej 				pktinfo->pkt_dscp = tsw->red_dscp;
    851  1.1  thorpej 				PKTCNTR_ADD(&tsw->red_cnt, len);
    852  1.1  thorpej 				return (&tsw->red_action);
    853  1.1  thorpej 			} else if (randval < avg_rate - tsw->cmtd_rate)
    854  1.1  thorpej 				goto mark_yellow;
    855  1.1  thorpej 		} else {
    856  1.1  thorpej 			/* peak_rate >= avg_rate > cmtd_rate */
    857  1.1  thorpej 			if (randval < avg_rate - tsw->cmtd_rate) {
    858  1.1  thorpej 			mark_yellow:
    859  1.1  thorpej 				pktinfo->pkt_dscp = tsw->yellow_dscp;
    860  1.1  thorpej 				PKTCNTR_ADD(&tsw->yellow_cnt, len);
    861  1.1  thorpej 				return (&tsw->yellow_action);
    862  1.1  thorpej 			}
    863  1.1  thorpej 		}
    864  1.1  thorpej 	}
    865  1.1  thorpej 
    866  1.1  thorpej 	/* mark green */
    867  1.1  thorpej 	pktinfo->pkt_dscp = tsw->green_dscp;
    868  1.1  thorpej 	PKTCNTR_ADD(&tsw->green_cnt, len);
    869  1.1  thorpej 	return (&tsw->green_action);
    870  1.1  thorpej }
    871  1.1  thorpej 
    872  1.1  thorpej /*
    873  1.1  thorpej  * ioctl requests
    874  1.1  thorpej  */
    875  1.1  thorpej static int
    876  1.1  thorpej cdnrcmd_if_attach(ifname)
    877  1.1  thorpej 	char *ifname;
    878  1.1  thorpej {
    879  1.1  thorpej 	struct ifnet *ifp;
    880  1.1  thorpej 	struct top_cdnr *top;
    881  1.1  thorpej 
    882  1.1  thorpej 	if ((ifp = ifunit(ifname)) == NULL)
    883  1.1  thorpej 		return (EBADF);
    884  1.1  thorpej 
    885  1.1  thorpej 	if (ifp->if_snd.altq_cdnr != NULL)
    886  1.1  thorpej 		return (EBUSY);
    887  1.1  thorpej 
    888  1.1  thorpej 	if ((top = top_create(&ifp->if_snd)) == NULL)
    889  1.1  thorpej 		return (ENOMEM);
    890  1.1  thorpej 	return (0);
    891  1.1  thorpej }
    892  1.1  thorpej 
    893  1.1  thorpej static int
    894  1.1  thorpej cdnrcmd_if_detach(ifname)
    895  1.1  thorpej 	char *ifname;
    896  1.1  thorpej {
    897  1.1  thorpej 	struct top_cdnr *top;
    898  1.1  thorpej 
    899  1.1  thorpej 	if ((top = tcb_lookup(ifname)) == NULL)
    900  1.1  thorpej 		return (EBADF);
    901  1.1  thorpej 
    902  1.1  thorpej 	return top_destroy(top);
    903  1.1  thorpej }
    904  1.1  thorpej 
    905  1.1  thorpej static int
    906  1.1  thorpej cdnrcmd_add_element(ap)
    907  1.1  thorpej 	struct cdnr_add_element *ap;
    908  1.1  thorpej {
    909  1.1  thorpej 	struct top_cdnr *top;
    910  1.1  thorpej 	struct cdnr_block *cb;
    911  1.1  thorpej 
    912  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
    913  1.1  thorpej 		return (EBADF);
    914  1.1  thorpej 
    915  1.1  thorpej 	cb = element_create(top, &ap->action);
    916  1.1  thorpej 	if (cb == NULL)
    917  1.1  thorpej 		return (EINVAL);
    918  1.1  thorpej 	/* return a class handle to the user */
    919  1.1  thorpej 	ap->cdnr_handle = cdnr_cb2handle(cb);
    920  1.1  thorpej 	return (0);
    921  1.1  thorpej }
    922  1.1  thorpej 
    923  1.1  thorpej static int
    924  1.1  thorpej cdnrcmd_delete_element(ap)
    925  1.1  thorpej 	struct cdnr_delete_element *ap;
    926  1.1  thorpej {
    927  1.1  thorpej 	struct top_cdnr *top;
    928  1.1  thorpej 	struct cdnr_block *cb;
    929  1.1  thorpej 
    930  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
    931  1.1  thorpej 		return (EBADF);
    932  1.1  thorpej 
    933  1.1  thorpej 	if ((cb = cdnr_handle2cb(ap->cdnr_handle)) == NULL)
    934  1.1  thorpej 		return (EINVAL);
    935  1.1  thorpej 
    936  1.1  thorpej 	if (cb->cb_type != TCETYPE_ELEMENT)
    937  1.1  thorpej 		return generic_element_destroy(cb);
    938  1.1  thorpej 
    939  1.1  thorpej 	return element_destroy(cb);
    940  1.1  thorpej }
    941  1.1  thorpej 
    942  1.1  thorpej static int
    943  1.1  thorpej cdnrcmd_add_filter(ap)
    944  1.1  thorpej 	struct cdnr_add_filter *ap;
    945  1.1  thorpej {
    946  1.1  thorpej 	struct top_cdnr *top;
    947  1.1  thorpej 	struct cdnr_block *cb;
    948  1.1  thorpej 
    949  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
    950  1.1  thorpej 		return (EBADF);
    951  1.1  thorpej 
    952  1.1  thorpej 	if ((cb = cdnr_handle2cb(ap->cdnr_handle)) == NULL)
    953  1.1  thorpej 		return (EINVAL);
    954  1.1  thorpej 
    955  1.1  thorpej 	return acc_add_filter(&top->tc_classifier, &ap->filter,
    956  1.1  thorpej 			      cb, &ap->filter_handle);
    957  1.1  thorpej }
    958  1.1  thorpej 
    959  1.1  thorpej static int
    960  1.1  thorpej cdnrcmd_delete_filter(ap)
    961  1.1  thorpej 	struct cdnr_delete_filter *ap;
    962  1.1  thorpej {
    963  1.1  thorpej 	struct top_cdnr *top;
    964  1.1  thorpej 
    965  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
    966  1.1  thorpej 		return (EBADF);
    967  1.1  thorpej 
    968  1.1  thorpej 	return acc_delete_filter(&top->tc_classifier, ap->filter_handle);
    969  1.1  thorpej }
    970  1.1  thorpej 
    971  1.1  thorpej static int
    972  1.1  thorpej cdnrcmd_add_tbm(ap)
    973  1.1  thorpej 	struct cdnr_add_tbmeter *ap;
    974  1.1  thorpej {
    975  1.1  thorpej 	struct top_cdnr *top;
    976  1.1  thorpej 	struct tbmeter *tbm;
    977  1.1  thorpej 
    978  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
    979  1.1  thorpej 		return (EBADF);
    980  1.1  thorpej 
    981  1.1  thorpej 	tbm = tbm_create(top, &ap->profile, &ap->in_action, &ap->out_action);
    982  1.1  thorpej 	if (tbm == NULL)
    983  1.1  thorpej 		return (EINVAL);
    984  1.1  thorpej 	/* return a class handle to the user */
    985  1.1  thorpej 	ap->cdnr_handle = cdnr_cb2handle(&tbm->cdnrblk);
    986  1.1  thorpej 	return (0);
    987  1.1  thorpej }
    988  1.1  thorpej 
    989  1.1  thorpej static int
    990  1.1  thorpej cdnrcmd_modify_tbm(ap)
    991  1.1  thorpej 	struct cdnr_modify_tbmeter *ap;
    992  1.1  thorpej {
    993  1.1  thorpej 	struct tbmeter *tbm;
    994  1.1  thorpej 
    995  1.1  thorpej 	if ((tbm = (struct tbmeter *)cdnr_handle2cb(ap->cdnr_handle)) == NULL)
    996  1.1  thorpej 		return (EINVAL);
    997  1.1  thorpej 
    998  1.1  thorpej 	tb_import_profile(&tbm->tb, &ap->profile);
    999  1.1  thorpej 
   1000  1.1  thorpej 	return (0);
   1001  1.1  thorpej }
   1002  1.1  thorpej 
   1003  1.1  thorpej static int
   1004  1.1  thorpej cdnrcmd_tbm_stats(ap)
   1005  1.1  thorpej 	struct cdnr_tbmeter_stats *ap;
   1006  1.1  thorpej {
   1007  1.1  thorpej 	struct tbmeter *tbm;
   1008  1.1  thorpej 
   1009  1.1  thorpej 	if ((tbm = (struct tbmeter *)cdnr_handle2cb(ap->cdnr_handle)) == NULL)
   1010  1.1  thorpej 		return (EINVAL);
   1011  1.1  thorpej 
   1012  1.1  thorpej 	ap->in_cnt = tbm->in_cnt;
   1013  1.1  thorpej 	ap->out_cnt = tbm->out_cnt;
   1014  1.1  thorpej 
   1015  1.1  thorpej 	return (0);
   1016  1.1  thorpej }
   1017  1.1  thorpej 
   1018  1.1  thorpej static int
   1019  1.1  thorpej cdnrcmd_add_trtcm(ap)
   1020  1.1  thorpej 	struct cdnr_add_trtcm *ap;
   1021  1.1  thorpej {
   1022  1.1  thorpej 	struct top_cdnr *top;
   1023  1.1  thorpej 	struct trtcm *tcm;
   1024  1.1  thorpej 
   1025  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
   1026  1.1  thorpej 		return (EBADF);
   1027  1.1  thorpej 
   1028  1.1  thorpej 	tcm = trtcm_create(top, &ap->cmtd_profile, &ap->peak_profile,
   1029  1.1  thorpej 			   &ap->green_action, &ap->yellow_action,
   1030  1.1  thorpej 			   &ap->red_action, ap->coloraware);
   1031  1.1  thorpej 	if (tcm == NULL)
   1032  1.1  thorpej 		return (EINVAL);
   1033  1.1  thorpej 
   1034  1.1  thorpej 	/* return a class handle to the user */
   1035  1.1  thorpej 	ap->cdnr_handle = cdnr_cb2handle(&tcm->cdnrblk);
   1036  1.1  thorpej 	return (0);
   1037  1.1  thorpej }
   1038  1.1  thorpej 
   1039  1.1  thorpej static int
   1040  1.1  thorpej cdnrcmd_modify_trtcm(ap)
   1041  1.1  thorpej 	struct cdnr_modify_trtcm *ap;
   1042  1.1  thorpej {
   1043  1.1  thorpej 	struct trtcm *tcm;
   1044  1.1  thorpej 
   1045  1.1  thorpej 	if ((tcm = (struct trtcm *)cdnr_handle2cb(ap->cdnr_handle)) == NULL)
   1046  1.1  thorpej 		return (EINVAL);
   1047  1.1  thorpej 
   1048  1.1  thorpej 	tb_import_profile(&tcm->cmtd_tb, &ap->cmtd_profile);
   1049  1.1  thorpej 	tb_import_profile(&tcm->peak_tb, &ap->peak_profile);
   1050  1.1  thorpej 
   1051  1.1  thorpej 	return (0);
   1052  1.1  thorpej }
   1053  1.1  thorpej 
   1054  1.1  thorpej static int
   1055  1.1  thorpej cdnrcmd_tcm_stats(ap)
   1056  1.1  thorpej 	struct cdnr_tcm_stats *ap;
   1057  1.1  thorpej {
   1058  1.1  thorpej 	struct cdnr_block *cb;
   1059  1.1  thorpej 
   1060  1.1  thorpej 	if ((cb = cdnr_handle2cb(ap->cdnr_handle)) == NULL)
   1061  1.1  thorpej 		return (EINVAL);
   1062  1.1  thorpej 
   1063  1.1  thorpej 	if (cb->cb_type == TCETYPE_TRTCM) {
   1064  1.1  thorpej 	    struct trtcm *tcm = (struct trtcm *)cb;
   1065  1.1  thorpej 
   1066  1.1  thorpej 	    ap->green_cnt = tcm->green_cnt;
   1067  1.1  thorpej 	    ap->yellow_cnt = tcm->yellow_cnt;
   1068  1.1  thorpej 	    ap->red_cnt = tcm->red_cnt;
   1069  1.1  thorpej 	} else if (cb->cb_type == TCETYPE_TSWTCM) {
   1070  1.1  thorpej 	    struct tswtcm *tsw = (struct tswtcm *)cb;
   1071  1.1  thorpej 
   1072  1.1  thorpej 	    ap->green_cnt = tsw->green_cnt;
   1073  1.1  thorpej 	    ap->yellow_cnt = tsw->yellow_cnt;
   1074  1.1  thorpej 	    ap->red_cnt = tsw->red_cnt;
   1075  1.1  thorpej 	} else
   1076  1.1  thorpej 	    return (EINVAL);
   1077  1.1  thorpej 
   1078  1.1  thorpej 	return (0);
   1079  1.1  thorpej }
   1080  1.1  thorpej 
   1081  1.1  thorpej static int
   1082  1.1  thorpej cdnrcmd_add_tswtcm(ap)
   1083  1.1  thorpej 	struct cdnr_add_tswtcm *ap;
   1084  1.1  thorpej {
   1085  1.1  thorpej 	struct top_cdnr *top;
   1086  1.1  thorpej 	struct tswtcm *tsw;
   1087  1.1  thorpej 
   1088  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
   1089  1.1  thorpej 		return (EBADF);
   1090  1.1  thorpej 
   1091  1.1  thorpej 	if (ap->cmtd_rate > ap->peak_rate)
   1092  1.1  thorpej 		return (EINVAL);
   1093  1.1  thorpej 
   1094  1.1  thorpej 	tsw = tswtcm_create(top, ap->cmtd_rate, ap->peak_rate,
   1095  1.1  thorpej 			    ap->avg_interval, &ap->green_action,
   1096  1.1  thorpej 			    &ap->yellow_action, &ap->red_action);
   1097  1.1  thorpej 	if (tsw == NULL)
   1098  1.1  thorpej 	    return (EINVAL);
   1099  1.1  thorpej 
   1100  1.1  thorpej 	/* return a class handle to the user */
   1101  1.1  thorpej 	ap->cdnr_handle = cdnr_cb2handle(&tsw->cdnrblk);
   1102  1.1  thorpej 	return (0);
   1103  1.1  thorpej }
   1104  1.1  thorpej 
   1105  1.1  thorpej static int
   1106  1.1  thorpej cdnrcmd_modify_tswtcm(ap)
   1107  1.1  thorpej 	struct cdnr_modify_tswtcm *ap;
   1108  1.1  thorpej {
   1109  1.1  thorpej 	struct tswtcm *tsw;
   1110  1.1  thorpej 
   1111  1.1  thorpej 	if ((tsw = (struct tswtcm *)cdnr_handle2cb(ap->cdnr_handle)) == NULL)
   1112  1.1  thorpej 		return (EINVAL);
   1113  1.1  thorpej 
   1114  1.1  thorpej 	if (ap->cmtd_rate > ap->peak_rate)
   1115  1.1  thorpej 		return (EINVAL);
   1116  1.1  thorpej 
   1117  1.1  thorpej 	/* convert rates from bits/sec to bytes/sec */
   1118  1.1  thorpej 	tsw->cmtd_rate = ap->cmtd_rate / 8;
   1119  1.1  thorpej 	tsw->peak_rate = ap->peak_rate / 8;
   1120  1.1  thorpej 	tsw->avg_rate = 0;
   1121  1.1  thorpej 
   1122  1.1  thorpej 	/* timewin is converted from msec to machine clock unit */
   1123  1.1  thorpej 	tsw->timewin = (u_int64_t)machclk_freq * ap->avg_interval / 1000;
   1124  1.1  thorpej 
   1125  1.1  thorpej 	return (0);
   1126  1.1  thorpej }
   1127  1.1  thorpej 
   1128  1.1  thorpej static int
   1129  1.1  thorpej cdnrcmd_get_stats(ap)
   1130  1.1  thorpej 	struct cdnr_get_stats *ap;
   1131  1.1  thorpej {
   1132  1.1  thorpej 	struct top_cdnr *top;
   1133  1.1  thorpej 	struct cdnr_block *cb;
   1134  1.1  thorpej 	struct tbmeter *tbm;
   1135  1.1  thorpej 	struct trtcm *tcm;
   1136  1.1  thorpej 	struct tswtcm *tsw;
   1137  1.1  thorpej 	struct tce_stats tce, *usp;
   1138  1.1  thorpej 	int error, n, nskip, nelements;
   1139  1.1  thorpej 
   1140  1.1  thorpej 	if ((top = tcb_lookup(ap->iface.cdnr_ifname)) == NULL)
   1141  1.1  thorpej 		return (EBADF);
   1142  1.1  thorpej 
   1143  1.1  thorpej 	/* copy action stats */
   1144  1.1  thorpej 	bcopy(top->tc_cnts, ap->cnts, sizeof(ap->cnts));
   1145  1.1  thorpej 
   1146  1.1  thorpej 	/* stats for each element */
   1147  1.1  thorpej 	nelements = ap->nelements;
   1148  1.1  thorpej 	usp = ap->tce_stats;
   1149  1.1  thorpej 	if (nelements <= 0 || usp == NULL)
   1150  1.1  thorpej 		return (0);
   1151  1.1  thorpej 
   1152  1.1  thorpej 	nskip = ap->nskip;
   1153  1.1  thorpej 	n = 0;
   1154  1.1  thorpej 	LIST_FOREACH(cb, &top->tc_elements, cb_next) {
   1155  1.1  thorpej 		if (nskip > 0) {
   1156  1.1  thorpej 			nskip--;
   1157  1.1  thorpej 			continue;
   1158  1.1  thorpej 		}
   1159  1.1  thorpej 
   1160  1.1  thorpej 		bzero(&tce, sizeof(tce));
   1161  1.1  thorpej 		tce.tce_handle = cb->cb_handle;
   1162  1.1  thorpej 		tce.tce_type = cb->cb_type;
   1163  1.1  thorpej 		switch (cb->cb_type) {
   1164  1.1  thorpej 		case TCETYPE_TBMETER:
   1165  1.1  thorpej 			tbm = (struct tbmeter *)cb;
   1166  1.1  thorpej 			tce.tce_cnts[0] = tbm->in_cnt;
   1167  1.1  thorpej 			tce.tce_cnts[1] = tbm->out_cnt;
   1168  1.1  thorpej 			break;
   1169  1.1  thorpej 		case TCETYPE_TRTCM:
   1170  1.1  thorpej 			tcm = (struct trtcm *)cb;
   1171  1.1  thorpej 			tce.tce_cnts[0] = tcm->green_cnt;
   1172  1.1  thorpej 			tce.tce_cnts[1] = tcm->yellow_cnt;
   1173  1.1  thorpej 			tce.tce_cnts[2] = tcm->red_cnt;
   1174  1.1  thorpej 			break;
   1175  1.1  thorpej 		case TCETYPE_TSWTCM:
   1176  1.1  thorpej 			tsw = (struct tswtcm *)cb;
   1177  1.1  thorpej 			tce.tce_cnts[0] = tsw->green_cnt;
   1178  1.1  thorpej 			tce.tce_cnts[1] = tsw->yellow_cnt;
   1179  1.1  thorpej 			tce.tce_cnts[2] = tsw->red_cnt;
   1180  1.1  thorpej 			break;
   1181  1.1  thorpej 		default:
   1182  1.1  thorpej 			continue;
   1183  1.1  thorpej 		}
   1184  1.1  thorpej 
   1185  1.1  thorpej 		if ((error = copyout((caddr_t)&tce, (caddr_t)usp++,
   1186  1.1  thorpej 				     sizeof(tce))) != 0)
   1187  1.1  thorpej 			return (error);
   1188  1.1  thorpej 
   1189  1.1  thorpej 		if (++n == nelements)
   1190  1.1  thorpej 			break;
   1191  1.1  thorpej 	}
   1192  1.1  thorpej 	ap->nelements = n;
   1193  1.1  thorpej 
   1194  1.1  thorpej 	return (0);
   1195  1.1  thorpej }
   1196  1.1  thorpej 
   1197  1.1  thorpej /*
   1198  1.1  thorpej  * conditioner device interface
   1199  1.1  thorpej  */
   1200  1.1  thorpej int
   1201  1.1  thorpej cdnropen(dev, flag, fmt, p)
   1202  1.1  thorpej 	dev_t dev;
   1203  1.1  thorpej 	int flag, fmt;
   1204  1.1  thorpej 	struct proc *p;
   1205  1.1  thorpej {
   1206  1.1  thorpej 	if (machclk_freq == 0)
   1207  1.1  thorpej 		init_machclk();
   1208  1.1  thorpej 
   1209  1.1  thorpej 	if (machclk_freq == 0) {
   1210  1.1  thorpej 		printf("cdnr: no cpu clock available!\n");
   1211  1.1  thorpej 		return (ENXIO);
   1212  1.1  thorpej 	}
   1213  1.1  thorpej 
   1214  1.1  thorpej 	/* everything will be done when the queueing scheme is attached. */
   1215  1.1  thorpej 	return 0;
   1216  1.1  thorpej }
   1217  1.1  thorpej 
   1218  1.1  thorpej int
   1219  1.1  thorpej cdnrclose(dev, flag, fmt, p)
   1220  1.1  thorpej 	dev_t dev;
   1221  1.1  thorpej 	int flag, fmt;
   1222  1.1  thorpej 	struct proc *p;
   1223  1.1  thorpej {
   1224  1.1  thorpej 	struct top_cdnr *top;
   1225  1.1  thorpej 	int err, error = 0;
   1226  1.1  thorpej 
   1227  1.1  thorpej 	while ((top = LIST_FIRST(&tcb_list)) != NULL) {
   1228  1.1  thorpej 		/* destroy all */
   1229  1.1  thorpej 		err = top_destroy(top);
   1230  1.1  thorpej 		if (err != 0 && error == 0)
   1231  1.1  thorpej 			error = err;
   1232  1.1  thorpej 	}
   1233  1.1  thorpej 	altq_input = NULL;
   1234  1.1  thorpej 
   1235  1.1  thorpej 	return (error);
   1236  1.1  thorpej }
   1237  1.1  thorpej 
   1238  1.1  thorpej int
   1239  1.1  thorpej cdnrioctl(dev, cmd, addr, flag, p)
   1240  1.1  thorpej 	dev_t dev;
   1241  1.1  thorpej 	ioctlcmd_t cmd;
   1242  1.1  thorpej 	caddr_t addr;
   1243  1.1  thorpej 	int flag;
   1244  1.1  thorpej 	struct proc *p;
   1245  1.1  thorpej {
   1246  1.1  thorpej 	struct top_cdnr *top;
   1247  1.1  thorpej 	struct cdnr_interface *ifacep;
   1248  1.1  thorpej 	int	s, error = 0;
   1249  1.1  thorpej 
   1250  1.1  thorpej 	/* check super-user privilege */
   1251  1.1  thorpej 	switch (cmd) {
   1252  1.1  thorpej 	case CDNR_GETSTATS:
   1253  1.1  thorpej 		break;
   1254  1.1  thorpej 	default:
   1255  1.1  thorpej #if (__FreeBSD_version > 400000)
   1256  1.1  thorpej 		if ((error = suser(p)) != 0)
   1257  1.1  thorpej #else
   1258  1.1  thorpej 		if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
   1259  1.1  thorpej #endif
   1260  1.1  thorpej 			return (error);
   1261  1.1  thorpej 		break;
   1262  1.1  thorpej 	}
   1263  1.1  thorpej 
   1264  1.1  thorpej 	s = splimp();
   1265  1.1  thorpej 	switch (cmd) {
   1266  1.1  thorpej 
   1267  1.1  thorpej 	case CDNR_IF_ATTACH:
   1268  1.1  thorpej 		ifacep = (struct cdnr_interface *)addr;
   1269  1.1  thorpej 		error = cdnrcmd_if_attach(ifacep->cdnr_ifname);
   1270  1.1  thorpej 		break;
   1271  1.1  thorpej 
   1272  1.1  thorpej 	case CDNR_IF_DETACH:
   1273  1.1  thorpej 		ifacep = (struct cdnr_interface *)addr;
   1274  1.1  thorpej 		error = cdnrcmd_if_detach(ifacep->cdnr_ifname);
   1275  1.1  thorpej 		break;
   1276  1.1  thorpej 
   1277  1.1  thorpej 	case CDNR_ENABLE:
   1278  1.1  thorpej 	case CDNR_DISABLE:
   1279  1.1  thorpej 		ifacep = (struct cdnr_interface *)addr;
   1280  1.1  thorpej 		if ((top = tcb_lookup(ifacep->cdnr_ifname)) == NULL) {
   1281  1.1  thorpej 			error = EBADF;
   1282  1.1  thorpej 			break;
   1283  1.1  thorpej 		}
   1284  1.1  thorpej 
   1285  1.1  thorpej 		switch (cmd) {
   1286  1.1  thorpej 
   1287  1.1  thorpej 		case CDNR_ENABLE:
   1288  1.1  thorpej 			ALTQ_SET_CNDTNING(top->tc_ifq);
   1289  1.1  thorpej 			if (altq_input == NULL)
   1290  1.1  thorpej 				altq_input = altq_cdnr_input;
   1291  1.1  thorpej 			break;
   1292  1.1  thorpej 
   1293  1.1  thorpej 		case CDNR_DISABLE:
   1294  1.1  thorpej 			ALTQ_CLEAR_CNDTNING(top->tc_ifq);
   1295  1.1  thorpej 			LIST_FOREACH(top, &tcb_list, tc_next)
   1296  1.1  thorpej 				if (ALTQ_IS_CNDTNING(top->tc_ifq))
   1297  1.1  thorpej 					break;
   1298  1.1  thorpej 			if (top == NULL)
   1299  1.1  thorpej 				altq_input = NULL;
   1300  1.1  thorpej 			break;
   1301  1.1  thorpej 		}
   1302  1.1  thorpej 		break;
   1303  1.1  thorpej 
   1304  1.1  thorpej 	case CDNR_ADD_ELEM:
   1305  1.1  thorpej 		error = cdnrcmd_add_element((struct cdnr_add_element *)addr);
   1306  1.1  thorpej 		break;
   1307  1.1  thorpej 
   1308  1.1  thorpej 	case CDNR_DEL_ELEM:
   1309  1.1  thorpej 		error = cdnrcmd_delete_element((struct cdnr_delete_element *)addr);
   1310  1.1  thorpej 		break;
   1311  1.1  thorpej 
   1312  1.1  thorpej 	case CDNR_ADD_TBM:
   1313  1.1  thorpej 		error = cdnrcmd_add_tbm((struct cdnr_add_tbmeter *)addr);
   1314  1.1  thorpej 		break;
   1315  1.1  thorpej 
   1316  1.1  thorpej 	case CDNR_MOD_TBM:
   1317  1.1  thorpej 		error = cdnrcmd_modify_tbm((struct cdnr_modify_tbmeter *)addr);
   1318  1.1  thorpej 		break;
   1319  1.1  thorpej 
   1320  1.1  thorpej 	case CDNR_TBM_STATS:
   1321  1.1  thorpej 		error = cdnrcmd_tbm_stats((struct cdnr_tbmeter_stats *)addr);
   1322  1.1  thorpej 		break;
   1323  1.1  thorpej 
   1324  1.1  thorpej 	case CDNR_ADD_TCM:
   1325  1.1  thorpej 		error = cdnrcmd_add_trtcm((struct cdnr_add_trtcm *)addr);
   1326  1.1  thorpej 		break;
   1327  1.1  thorpej 
   1328  1.1  thorpej 	case CDNR_MOD_TCM:
   1329  1.1  thorpej 		error = cdnrcmd_modify_trtcm((struct cdnr_modify_trtcm *)addr);
   1330  1.1  thorpej 		break;
   1331  1.1  thorpej 
   1332  1.1  thorpej 	case CDNR_TCM_STATS:
   1333  1.1  thorpej 		error = cdnrcmd_tcm_stats((struct cdnr_tcm_stats *)addr);
   1334  1.1  thorpej 		break;
   1335  1.1  thorpej 
   1336  1.1  thorpej 	case CDNR_ADD_FILTER:
   1337  1.1  thorpej 		error = cdnrcmd_add_filter((struct cdnr_add_filter *)addr);
   1338  1.1  thorpej 		break;
   1339  1.1  thorpej 
   1340  1.1  thorpej 	case CDNR_DEL_FILTER:
   1341  1.1  thorpej 		error = cdnrcmd_delete_filter((struct cdnr_delete_filter *)addr);
   1342  1.1  thorpej 		break;
   1343  1.1  thorpej 
   1344  1.1  thorpej 	case CDNR_GETSTATS:
   1345  1.1  thorpej 		error = cdnrcmd_get_stats((struct cdnr_get_stats *)addr);
   1346  1.1  thorpej 		break;
   1347  1.1  thorpej 
   1348  1.1  thorpej 	case CDNR_ADD_TSW:
   1349  1.1  thorpej 		error = cdnrcmd_add_tswtcm((struct cdnr_add_tswtcm *)addr);
   1350  1.1  thorpej 		break;
   1351  1.1  thorpej 
   1352  1.1  thorpej 	case CDNR_MOD_TSW:
   1353  1.1  thorpej 		error = cdnrcmd_modify_tswtcm((struct cdnr_modify_tswtcm *)addr);
   1354  1.1  thorpej 		break;
   1355  1.1  thorpej 
   1356  1.1  thorpej 	default:
   1357  1.1  thorpej 		error = EINVAL;
   1358  1.1  thorpej 		break;
   1359  1.1  thorpej 	}
   1360  1.1  thorpej 	splx(s);
   1361  1.1  thorpej 
   1362  1.1  thorpej 	return error;
   1363  1.1  thorpej }
   1364  1.1  thorpej 
   1365  1.1  thorpej #ifdef KLD_MODULE
   1366  1.1  thorpej 
   1367  1.1  thorpej static struct altqsw cdnr_sw =
   1368  1.1  thorpej 	{"cdnr", cdnropen, cdnrclose, cdnrioctl};
   1369  1.1  thorpej 
   1370  1.1  thorpej ALTQ_MODULE(altq_cdnr, ALTQT_CDNR, &cdnr_sw);
   1371  1.1  thorpej 
   1372  1.1  thorpej #endif /* KLD_MODULE */
   1373  1.1  thorpej 
   1374  1.1  thorpej #endif /* ALTQ_CDNR */
   1375