]> git.proxmox.com Git - mirror_iproute2.git/blame - tc/tc_util.h
tc/pedit: make functions static
[mirror_iproute2.git] / tc / tc_util.h
CommitLineData
6054c1eb 1/* SPDX-License-Identifier: GPL-2.0 */
aba5acdf
SH
2#ifndef _TC_UTIL_H_
3#define _TC_UTIL_H_ 1
4
2373fde9 5#define MAX_MSG 16384
d421bb4e 6#include <limits.h>
b317557f
SH
7#include <linux/if.h>
8
aba5acdf
SH
9#include <linux/pkt_sched.h>
10#include <linux/pkt_cls.h>
e5879dc6 11#include <linux/gen_stats.h>
b317557f 12
aba5acdf 13#include "tc_core.h"
c91d262f 14#include "json_print.h"
aba5acdf 15
5a67f8f9
SH
16/* This is the deprecated multiqueue interface */
17#ifndef TCA_PRIO_MAX
18enum
19{
20 TCA_PRIO_UNSPEC,
21 TCA_PRIO_MQ,
22 __TCA_PRIO_MAX
23};
24
25#define TCA_PRIO_MAX (__TCA_PRIO_MAX - 1)
26#endif
27
b317557f
SH
28#define FILTER_NAMESZ 16
29
4bd62446 30struct qdisc_util {
2373fde9 31 struct qdisc_util *next;
6dc9f016 32 const char *id;
9ffc80b1 33 int (*parse_qopt)(struct qdisc_util *qu, int argc,
927e3cfb 34 char **argv, struct nlmsghdr *n, const char *dev);
9ffc80b1
PS
35 int (*print_qopt)(struct qdisc_util *qu,
36 FILE *f, struct rtattr *opt);
37 int (*print_xstats)(struct qdisc_util *qu,
38 FILE *f, struct rtattr *xstats);
39
40 int (*parse_copt)(struct qdisc_util *qu, int argc,
927e3cfb 41 char **argv, struct nlmsghdr *n, const char *dev);
9ffc80b1 42 int (*print_copt)(struct qdisc_util *qu, FILE *f, struct rtattr *opt);
aba5acdf
SH
43};
44
eefcbc72 45extern __u16 f_proto;
4bd62446 46struct filter_util {
aba5acdf 47 struct filter_util *next;
b317557f 48 char id[FILTER_NAMESZ];
9ffc80b1
PS
49 int (*parse_fopt)(struct filter_util *qu, char *fhandle,
50 int argc, char **argv, struct nlmsghdr *n);
51 int (*print_fopt)(struct filter_util *qu,
52 FILE *f, struct rtattr *opt, __u32 fhandle);
aba5acdf
SH
53};
54
4bd62446 55struct action_util {
9ffc80b1 56 struct action_util *next;
b317557f 57 char id[FILTER_NAMESZ];
9ffc80b1
PS
58 int (*parse_aopt)(struct action_util *a, int *argc,
59 char ***argv, int code, struct nlmsghdr *n);
60 int (*print_aopt)(struct action_util *au, FILE *f, struct rtattr *opt);
61 int (*print_xstats)(struct action_util *au,
62 FILE *f, struct rtattr *xstats);
2373fde9 63};
aba5acdf 64
4bd62446 65struct exec_util {
9ffc80b1 66 struct exec_util *next;
b317557f 67 char id[FILTER_NAMESZ];
9ffc80b1 68 int (*parse_eopt)(struct exec_util *eu, int argc, char **argv);
4bd62446
DB
69};
70
9ffc80b1
PS
71const char *get_tc_lib(void);
72
73struct qdisc_util *get_qdisc_kind(const char *str);
74struct filter_util *get_filter_kind(const char *str);
75
927e3cfb 76int parse_percent_rate(char *rate, const char *str, const char *dev);
9ffc80b1
PS
77int get_qdisc_handle(__u32 *h, const char *str);
78int get_rate(unsigned int *rate, const char *str);
927e3cfb 79int get_percent_rate(unsigned int *rate, const char *str, const char *dev);
9ffc80b1 80int get_rate64(__u64 *rate, const char *str);
927e3cfb 81int get_percent_rate64(__u64 *rate, const char *str, const char *dev);
9ffc80b1
PS
82int get_size(unsigned int *size, const char *str);
83int get_size_and_cell(unsigned int *size, int *cell_log, char *str);
9ffc80b1
PS
84int get_linklayer(unsigned int *val, const char *arg);
85
86void print_rate(char *buf, int len, __u64 rate);
87void print_size(char *buf, int len, __u32 size);
88void print_qdisc_handle(char *buf, int len, __u32 h);
9ffc80b1 89void print_linklayer(char *buf, int len, unsigned int linklayer);
2d165c08 90void print_devname(enum output_type type, int ifindex);
9ffc80b1
PS
91
92char *sprint_rate(__u64 rate, char *buf);
93char *sprint_size(__u32 size, char *buf);
94char *sprint_qdisc_handle(__u32 h, char *buf);
95char *sprint_tc_classid(__u32 h, char *buf);
9ffc80b1
PS
96char *sprint_ticks(__u32 ticks, char *buf);
97char *sprint_linklayer(unsigned int linklayer, char *buf);
98
99void print_tcstats_attr(FILE *fp, struct rtattr *tb[],
100 char *prefix, struct rtattr **xstats);
101void print_tcstats2_attr(FILE *fp, struct rtattr *rta,
102 char *prefix, struct rtattr **xstats);
103
104int get_tc_classid(__u32 *h, const char *str);
105int print_tc_classid(char *buf, int len, __u32 h);
106char *sprint_tc_classid(__u32 h, char *buf);
107
108int tc_print_police(FILE *f, struct rtattr *tb);
109int parse_police(int *argc_p, char ***argv_p, int tca_id, struct nlmsghdr *n);
110
e67aba55
JP
111int parse_action_control(int *argc_p, char ***argv_p,
112 int *result_p, bool allow_num);
113void parse_action_control_dflt(int *argc_p, char ***argv_p,
114 int *result_p, bool allow_num,
115 int default_result);
116int parse_action_control_slash(int *argc_p, char ***argv_p,
117 int *result1_p, int *result2_p, bool allow_num);
118void print_action_control(FILE *f, const char *prefix,
119 int action, const char *suffix);
9ffc80b1 120int police_print_xstats(struct action_util *a, FILE *f, struct rtattr *tb);
9e713525 121int tc_print_action(FILE *f, const struct rtattr *tb, unsigned short tot_acts);
9ffc80b1
PS
122int tc_print_ipt(FILE *f, const struct rtattr *tb);
123int parse_action(int *argc_p, char ***argv_p, int tca_id, struct nlmsghdr *n);
124void print_tm(FILE *f, const struct tcf_t *tm);
125int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt);
126
127int cls_names_init(char *path);
128void cls_names_uninit(void);
4612d04d 129
6f7df6b2
PS
130int action_a2n(char *arg, int *result, bool allow_num);
131
d0bcedd5
JP
132bool tc_qdisc_block_exists(__u32 block_index);
133
aba5acdf 134#endif