master
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2005 Nuno Antunes <nuno.antunes@gmail.com>
5 * Copyright (c) 2007 Alexander Motin <mav@freebsd.org>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifndef _NETGRAPH_NG_CAR_H_
31#define _NETGRAPH_NG_CAR_H_
32
33#define NG_CAR_NODE_TYPE "car"
34#define NGM_CAR_COOKIE 1173648034
35
36/* Hook names */
37#define NG_CAR_HOOK_UPPER "upper"
38#define NG_CAR_HOOK_LOWER "lower"
39
40/* Per hook statistics counters */
41struct ng_car_hookstats {
42 u_int64_t passed_pkts; /* Counter for passed packets */
43 u_int64_t dropped_pkts; /* Counter for dropped packets */
44 u_int64_t green_pkts; /* Counter for green packets */
45 u_int64_t yellow_pkts; /* Counter for yellow packets */
46 u_int64_t red_pkts; /* Counter for red packets */
47 u_int64_t errors; /* Counter for operation errors */
48};
49#define NG_CAR_HOOKSTATS { \
50 { "passed", &ng_parse_uint64_type }, \
51 { "dropped", &ng_parse_uint64_type }, \
52 { "green", &ng_parse_uint64_type }, \
53 { "yellow", &ng_parse_uint64_type }, \
54 { "red", &ng_parse_uint64_type }, \
55 { "errors", &ng_parse_uint64_type }, \
56 { NULL } \
57}
58
59/* Bulk statistics */
60struct ng_car_bulkstats {
61 struct ng_car_hookstats upstream;
62 struct ng_car_hookstats downstream;
63};
64#define NG_CAR_BULKSTATS(hstatstype) { \
65 { "upstream", (hstatstype) }, \
66 { "downstream", (hstatstype) }, \
67 { NULL } \
68}
69
70/* Per hook configuration */
71struct ng_car_hookconf {
72 u_int64_t cbs; /* Committed burst size (bytes) */
73 u_int64_t ebs; /* Exceeded/Peak burst size (bytes) */
74 u_int64_t cir; /* Committed information rate (bits/s) */
75 u_int64_t pir; /* Peak information rate (bits/s) */
76 u_int8_t green_action; /* Action for green packets */
77 u_int8_t yellow_action; /* Action for yellow packets */
78 u_int8_t red_action; /* Action for red packets */
79 u_int8_t mode; /* single/double rate, ... */
80 u_int8_t opt; /* color-aware or color-blind */
81};
82/* Keep this definition in sync with the above structure */
83#define NG_CAR_HOOKCONF { \
84 { "cbs", &ng_parse_uint64_type }, \
85 { "ebs", &ng_parse_uint64_type }, \
86 { "cir", &ng_parse_uint64_type }, \
87 { "pir", &ng_parse_uint64_type }, \
88 { "greenAction", &ng_parse_uint8_type }, \
89 { "yellowAction", &ng_parse_uint8_type }, \
90 { "redAction", &ng_parse_uint8_type }, \
91 { "mode", &ng_parse_uint8_type }, \
92 { "opt", &ng_parse_uint8_type }, \
93 { NULL } \
94}
95
96#define NG_CAR_CBS_MIN 8192
97#define NG_CAR_EBS_MIN 8192
98#define NG_CAR_CIR_DFLT 10240
99
100/* possible actions (...Action) */
101enum {
102 NG_CAR_ACTION_FORWARD = 1,
103 NG_CAR_ACTION_DROP,
104 NG_CAR_ACTION_MARK
105};
106
107/* operation modes (mode) */
108enum {
109 NG_CAR_SINGLE_RATE = 0,
110 NG_CAR_DOUBLE_RATE,
111 NG_CAR_RED,
112 NG_CAR_SHAPE
113};
114
115/* mode options (bits in opt) */
116#define NG_CAR_COLOR_AWARE 1
117#define NG_CAR_COUNT_PACKETS 2
118
119/* Bulk config */
120struct ng_car_bulkconf {
121 struct ng_car_hookconf upstream;
122 struct ng_car_hookconf downstream;
123};
124#define NG_CAR_BULKCONF(hconftype) { \
125 { "upstream", (hconftype) }, \
126 { "downstream", (hconftype) }, \
127 { NULL } \
128}
129
130/* Commands */
131enum {
132 NGM_CAR_GET_STATS = 1, /* Get statistics */
133 NGM_CAR_CLR_STATS, /* Clear statistics */
134 NGM_CAR_GETCLR_STATS, /* Get and clear statistics */
135 NGM_CAR_GET_CONF, /* Get bulk configuration */
136 NGM_CAR_SET_CONF, /* Set bulk configuration */
137};
138
139#endif /* _NETGRAPH_NG_CAR_H_ */