2010-12-02 03:17:46 +08:00
|
|
|
/*
|
|
|
|
* m_csum.c checksum updating action
|
|
|
|
*
|
|
|
|
* This program is free software; you can distribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Authors: Gregoire Baron <baronchon@n7mm.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <linux/tc_act/tc_csum.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "tc_util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
explain(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage: ... csum <UPDATE>\n"
|
|
|
|
"Where: UPDATE := <TARGET> [<UPDATE>]\n"
|
2017-01-20 18:10:10 +08:00
|
|
|
" TARGET := { ip4h | icmp | igmp | tcp | udp | udplite | sctp | <SWEETS> }\n"
|
2010-12-02 03:17:46 +08:00
|
|
|
" SWEETS := { and | or | \'+\' }\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
explain();
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
parse_csum_args(int *argc_p, char ***argv_p, struct tc_csum *sel)
|
|
|
|
{
|
|
|
|
int argc = *argc_p;
|
|
|
|
char **argv = *argv_p;
|
|
|
|
|
|
|
|
if (argc <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2016-03-22 02:48:36 +08:00
|
|
|
while (argc > 0) {
|
2010-12-02 03:17:46 +08:00
|
|
|
if ((matches(*argv, "iph") == 0) ||
|
|
|
|
(matches(*argv, "ip4h") == 0) ||
|
|
|
|
(matches(*argv, "ipv4h") == 0))
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_IPV4HDR;
|
|
|
|
|
|
|
|
else if (matches(*argv, "icmp") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_ICMP;
|
|
|
|
|
|
|
|
else if (matches(*argv, "igmp") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_IGMP;
|
|
|
|
|
|
|
|
else if (matches(*argv, "tcp") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_TCP;
|
|
|
|
|
|
|
|
else if (matches(*argv, "udp") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_UDP;
|
|
|
|
|
|
|
|
else if (matches(*argv, "udplite") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_UDPLITE;
|
|
|
|
|
2017-01-20 18:10:10 +08:00
|
|
|
else if (matches(*argv, "sctp") == 0)
|
|
|
|
sel->update_flags |= TCA_CSUM_UPDATE_FLAG_SCTP;
|
|
|
|
|
2010-12-02 03:17:46 +08:00
|
|
|
else if ((matches(*argv, "and") == 0) ||
|
|
|
|
(matches(*argv, "or") == 0) ||
|
|
|
|
(matches(*argv, "+") == 0))
|
|
|
|
; /* just ignore: ... csum iph and tcp or udp */
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*argc_p = argc;
|
|
|
|
*argv_p = argv;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
parse_csum(struct action_util *a, int *argc_p,
|
|
|
|
char ***argv_p, int tca_id, struct nlmsghdr *n)
|
|
|
|
{
|
2016-07-18 22:48:42 +08:00
|
|
|
struct tc_csum sel = {};
|
2010-12-02 03:17:46 +08:00
|
|
|
|
|
|
|
int argc = *argc_p;
|
|
|
|
char **argv = *argv_p;
|
|
|
|
int ok = 0;
|
|
|
|
struct rtattr *tail;
|
|
|
|
|
|
|
|
while (argc > 0) {
|
|
|
|
if (matches(*argv, "csum") == 0) {
|
|
|
|
NEXT_ARG();
|
|
|
|
if (parse_csum_args(&argc, &argv, &sel)) {
|
|
|
|
fprintf(stderr, "Illegal csum construct (%s)\n",
|
|
|
|
*argv);
|
|
|
|
explain();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ok++;
|
|
|
|
continue;
|
|
|
|
} else if (matches(*argv, "help") == 0) {
|
|
|
|
usage();
|
2016-03-22 02:48:36 +08:00
|
|
|
} else {
|
2010-12-02 03:17:46 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
explain();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sel.update_flags == 0) {
|
|
|
|
fprintf(stderr, "Illegal csum construct, empty <UPDATE> list\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-05-17 01:29:36 +08:00
|
|
|
parse_action_control_dflt(&argc, &argv, &sel.action, false, TC_ACT_OK);
|
2010-12-02 03:17:46 +08:00
|
|
|
|
|
|
|
if (argc) {
|
|
|
|
if (matches(*argv, "index") == 0) {
|
|
|
|
NEXT_ARG();
|
|
|
|
if (get_u32(&sel.index, *argv, 10)) {
|
|
|
|
fprintf(stderr, "Illegal \"index\" (%s) <csum>\n",
|
|
|
|
*argv);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
argc--;
|
|
|
|
argv++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-31 16:15:08 +08:00
|
|
|
tail = addattr_nest(n, MAX_MSG, tca_id);
|
2010-12-02 03:17:46 +08:00
|
|
|
addattr_l(n, MAX_MSG, TCA_CSUM_PARMS, &sel, sizeof(sel));
|
2018-01-31 16:15:08 +08:00
|
|
|
addattr_nest_end(n, tail);
|
2010-12-02 03:17:46 +08:00
|
|
|
|
|
|
|
*argc_p = argc;
|
|
|
|
*argv_p = argv;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2016-03-22 02:48:36 +08:00
|
|
|
print_csum(struct action_util *au, FILE *f, struct rtattr *arg)
|
2010-12-02 03:17:46 +08:00
|
|
|
{
|
|
|
|
struct tc_csum *sel;
|
|
|
|
|
|
|
|
struct rtattr *tb[TCA_CSUM_MAX + 1];
|
|
|
|
|
|
|
|
char *uflag_1 = "";
|
|
|
|
char *uflag_2 = "";
|
|
|
|
char *uflag_3 = "";
|
|
|
|
char *uflag_4 = "";
|
|
|
|
char *uflag_5 = "";
|
|
|
|
char *uflag_6 = "";
|
2017-01-20 18:10:10 +08:00
|
|
|
char *uflag_7 = "";
|
tc: add json support in csum action
Add json output support for checksum action.
Example output:
~$ $TC actions add action csum udp continue index 7
~$ $TC actions add action csum icmp iph igmp pipe index 200 cookie 112233
~$ $TC -j actions ls action csum
[{
"total acts":2
}, {
"actions": [{
"order":0,
"csum":"udp",
"control_action": {
"type":"continue"
},
"index":7,
"ref":1,
"bind":0
}, {
"order":1,
"csum":"iph, icmp, igmp",
"control_action": {
"type":"pipe"
},
"index":200,
"ref":1,
"bind":0,
"cookie":"112233"
}]
}]
v2:
Don't initialized char buf[64];
Add output example
Signed-off-by: Keara Leibovitz <kleib@mojatatu.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
2018-06-06 04:44:19 +08:00
|
|
|
SPRINT_BUF(buf);
|
2016-03-22 02:48:36 +08:00
|
|
|
|
2010-12-02 03:17:46 +08:00
|
|
|
int uflag_count = 0;
|
|
|
|
|
|
|
|
if (arg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
parse_rtattr_nested(tb, TCA_CSUM_MAX, arg);
|
|
|
|
|
|
|
|
if (tb[TCA_CSUM_PARMS] == NULL) {
|
|
|
|
fprintf(f, "[NULL csum parameters]");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
sel = RTA_DATA(tb[TCA_CSUM_PARMS]);
|
|
|
|
|
|
|
|
if (sel->update_flags & TCA_CSUM_UPDATE_FLAG_IPV4HDR) {
|
|
|
|
uflag_1 = "iph";
|
|
|
|
uflag_count++;
|
|
|
|
}
|
|
|
|
#define CSUM_UFLAG_BUFFER(flag_buffer, flag_value, flag_string) \
|
|
|
|
do { \
|
|
|
|
if (sel->update_flags & flag_value) { \
|
|
|
|
flag_buffer = uflag_count > 0 ? \
|
|
|
|
", " flag_string : flag_string; \
|
|
|
|
uflag_count++; \
|
|
|
|
} \
|
2016-03-22 02:48:36 +08:00
|
|
|
} while (0)
|
2010-12-02 03:17:46 +08:00
|
|
|
CSUM_UFLAG_BUFFER(uflag_2, TCA_CSUM_UPDATE_FLAG_ICMP, "icmp");
|
|
|
|
CSUM_UFLAG_BUFFER(uflag_3, TCA_CSUM_UPDATE_FLAG_IGMP, "igmp");
|
2012-03-16 05:24:59 +08:00
|
|
|
CSUM_UFLAG_BUFFER(uflag_4, TCA_CSUM_UPDATE_FLAG_TCP, "tcp");
|
2010-12-02 03:17:46 +08:00
|
|
|
CSUM_UFLAG_BUFFER(uflag_5, TCA_CSUM_UPDATE_FLAG_UDP, "udp");
|
|
|
|
CSUM_UFLAG_BUFFER(uflag_6, TCA_CSUM_UPDATE_FLAG_UDPLITE, "udplite");
|
2017-01-20 18:10:10 +08:00
|
|
|
CSUM_UFLAG_BUFFER(uflag_7, TCA_CSUM_UPDATE_FLAG_SCTP, "sctp");
|
2010-12-02 03:17:46 +08:00
|
|
|
if (!uflag_count) {
|
|
|
|
uflag_1 = "?empty";
|
|
|
|
}
|
|
|
|
|
tc: add json support in csum action
Add json output support for checksum action.
Example output:
~$ $TC actions add action csum udp continue index 7
~$ $TC actions add action csum icmp iph igmp pipe index 200 cookie 112233
~$ $TC -j actions ls action csum
[{
"total acts":2
}, {
"actions": [{
"order":0,
"csum":"udp",
"control_action": {
"type":"continue"
},
"index":7,
"ref":1,
"bind":0
}, {
"order":1,
"csum":"iph, icmp, igmp",
"control_action": {
"type":"pipe"
},
"index":200,
"ref":1,
"bind":0,
"cookie":"112233"
}]
}]
v2:
Don't initialized char buf[64];
Add output example
Signed-off-by: Keara Leibovitz <kleib@mojatatu.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
2018-06-06 04:44:19 +08:00
|
|
|
snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s",
|
|
|
|
uflag_1, uflag_2, uflag_3,
|
|
|
|
uflag_4, uflag_5, uflag_6, uflag_7);
|
|
|
|
print_string(PRINT_ANY, "csum", "csum (%s) ", buf);
|
|
|
|
|
2017-05-17 01:29:36 +08:00
|
|
|
print_action_control(f, "action ", sel->action, "\n");
|
tc: add json support in csum action
Add json output support for checksum action.
Example output:
~$ $TC actions add action csum udp continue index 7
~$ $TC actions add action csum icmp iph igmp pipe index 200 cookie 112233
~$ $TC -j actions ls action csum
[{
"total acts":2
}, {
"actions": [{
"order":0,
"csum":"udp",
"control_action": {
"type":"continue"
},
"index":7,
"ref":1,
"bind":0
}, {
"order":1,
"csum":"iph, icmp, igmp",
"control_action": {
"type":"pipe"
},
"index":200,
"ref":1,
"bind":0,
"cookie":"112233"
}]
}]
v2:
Don't initialized char buf[64];
Add output example
Signed-off-by: Keara Leibovitz <kleib@mojatatu.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
2018-06-06 04:44:19 +08:00
|
|
|
print_uint(PRINT_ANY, "index", "\tindex %u", sel->index);
|
|
|
|
print_int(PRINT_ANY, "ref", " ref %d", sel->refcnt);
|
|
|
|
print_int(PRINT_ANY, "bind", " bind %d", sel->bindcnt);
|
2010-12-02 03:17:46 +08:00
|
|
|
|
|
|
|
if (show_stats) {
|
|
|
|
if (tb[TCA_CSUM_TM]) {
|
|
|
|
struct tcf_t *tm = RTA_DATA(tb[TCA_CSUM_TM]);
|
2016-03-22 02:48:36 +08:00
|
|
|
|
|
|
|
print_tm(f, tm);
|
2010-12-02 03:17:46 +08:00
|
|
|
}
|
|
|
|
}
|
tc: add json support in csum action
Add json output support for checksum action.
Example output:
~$ $TC actions add action csum udp continue index 7
~$ $TC actions add action csum icmp iph igmp pipe index 200 cookie 112233
~$ $TC -j actions ls action csum
[{
"total acts":2
}, {
"actions": [{
"order":0,
"csum":"udp",
"control_action": {
"type":"continue"
},
"index":7,
"ref":1,
"bind":0
}, {
"order":1,
"csum":"iph, icmp, igmp",
"control_action": {
"type":"pipe"
},
"index":200,
"ref":1,
"bind":0,
"cookie":"112233"
}]
}]
v2:
Don't initialized char buf[64];
Add output example
Signed-off-by: Keara Leibovitz <kleib@mojatatu.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
2018-06-06 04:44:19 +08:00
|
|
|
print_string(PRINT_FP, NULL, "%s", "\n");
|
2010-12-02 03:17:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct action_util csum_action_util = {
|
|
|
|
.id = "csum",
|
|
|
|
.parse_aopt = parse_csum,
|
|
|
|
.print_aopt = print_csum,
|
|
|
|
};
|