diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-12-28 22:07:24 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-12-28 22:25:12 +0900 |
commit | b078e52855d059a85e1a56cb8dc6a6179045a6c2 (patch) | |
tree | 932150c839d09d3332b1440d2f162b0e3cfeb3ae /src/network/tc | |
parent | c695dcf929bca064221761d95860cdf4940b3951 (diff) | |
download | systemd-b078e52855d059a85e1a56cb8dc6a6179045a6c2.tar.gz |
network: add more settings for CoDel
Diffstat (limited to 'src/network/tc')
-rw-r--r-- | src/network/tc/codel.c | 154 | ||||
-rw-r--r-- | src/network/tc/codel.h | 7 |
2 files changed, 160 insertions, 1 deletions
diff --git a/src/network/tc/codel.c b/src/network/tc/codel.c index 20ac5db949..24b5720c41 100644 --- a/src/network/tc/codel.c +++ b/src/network/tc/codel.c @@ -10,6 +10,19 @@ #include "qdisc.h" #include "string-util.h" +static int controlled_delay_init(QDisc *qdisc) { + ControlledDelay *cd; + + assert(qdisc); + + cd = CODEL(qdisc); + + cd->ce_threshold_usec = USEC_INFINITY; + cd->ecn = -1; + + return 0; +} + static int controlled_delay_fill_message(Link *link, QDisc *qdisc, sd_netlink_message *req) { ControlledDelay *cd; int r; @@ -30,6 +43,30 @@ static int controlled_delay_fill_message(Link *link, QDisc *qdisc, sd_netlink_me return log_link_error_errno(link, r, "Could not append TCA_CODEL_LIMIT attribute: %m"); } + if (cd->interval_usec > 0) { + r = sd_netlink_message_append_u32(req, TCA_CODEL_INTERVAL, cd->interval_usec); + if (r < 0) + return log_link_error_errno(link, r, "Could not append TCA_CODEL_INTERVAL attribute: %m"); + } + + if (cd->target_usec > 0) { + r = sd_netlink_message_append_u32(req, TCA_CODEL_TARGET, cd->target_usec); + if (r < 0) + return log_link_error_errno(link, r, "Could not append TCA_CODEL_TARGET attribute: %m"); + } + + if (cd->ecn >= 0) { + r = sd_netlink_message_append_u32(req, TCA_CODEL_ECN, cd->ecn); + if (r < 0) + return log_link_error_errno(link, r, "Could not append TCA_CODEL_ECN attribute: %m"); + } + + if (cd->ce_threshold_usec != USEC_INFINITY) { + r = sd_netlink_message_append_u32(req, TCA_CODEL_CE_THRESHOLD, cd->ce_threshold_usec); + if (r < 0) + return log_link_error_errno(link, r, "Could not append TCA_CODEL_CE_THRESHOLD attribute: %m"); + } + r = sd_netlink_message_close_container(req); if (r < 0) return log_link_error_errno(link, r, "Could not close container TCA_OPTIONS: %m"); @@ -88,8 +125,125 @@ int config_parse_tc_controlled_delay_u32( return 0; } +int config_parse_tc_controlled_delay_usec( + const char *unit, + const char *filename, + unsigned line, + const char *section, + unsigned section_line, + const char *lvalue, + int ltype, + const char *rvalue, + void *data, + void *userdata) { + + _cleanup_(qdisc_free_or_set_invalidp) QDisc *qdisc = NULL; + ControlledDelay *cd; + Network *network = data; + usec_t *p; + int r; + + assert(filename); + assert(lvalue); + assert(rvalue); + assert(data); + + r = qdisc_new_static(QDISC_KIND_CODEL, network, filename, section_line, &qdisc); + if (r == -ENOMEM) + return log_oom(); + if (r < 0) + return log_syntax(unit, LOG_ERR, filename, line, r, + "More than one kind of queueing discipline, ignoring assignment: %m"); + + cd = CODEL(qdisc); + + if (streq(lvalue, "ControlledDelayTargetSec")) + p = &cd->target_usec; + else if (streq(lvalue, "ControlledDelayIntervalSec")) + p = &cd->interval_usec; + else if (streq(lvalue, "ControlledDelayCEThresholdSec")) + p = &cd->ce_threshold_usec; + else + assert_not_reached("Invalid lvalue"); + + if (isempty(rvalue)) { + if (streq(lvalue, "ControlledDelayCEThresholdSec")) + *p = USEC_INFINITY; + else + *p = 0; + + qdisc = NULL; + return 0; + } + + r = parse_sec(rvalue, p); + if (r < 0) { + log_syntax(unit, LOG_ERR, filename, line, r, + "Failed to parse '%s=', ignoring assignment: %s", + lvalue, rvalue); + return 0; + } + + qdisc = NULL; + + return 0; +} + +int config_parse_tc_controlled_delay_bool( + const char *unit, + const char *filename, + unsigned line, + const char *section, + unsigned section_line, + const char *lvalue, + int ltype, + const char *rvalue, + void *data, + void *userdata) { + + _cleanup_(qdisc_free_or_set_invalidp) QDisc *qdisc = NULL; + ControlledDelay *cd; + Network *network = data; + int r; + + assert(filename); + assert(lvalue); + assert(rvalue); + assert(data); + + r = qdisc_new_static(QDISC_KIND_CODEL, network, filename, section_line, &qdisc); + if (r == -ENOMEM) + return log_oom(); + if (r < 0) + return log_syntax(unit, LOG_ERR, filename, line, r, + "More than one kind of queueing discipline, ignoring assignment: %m"); + + cd = CODEL(qdisc); + + if (isempty(rvalue)) { + cd->ecn = -1; + + qdisc = NULL; + return 0; + } + + r = parse_boolean(rvalue); + if (r < 0) { + log_syntax(unit, LOG_ERR, filename, line, r, + "Failed to parse '%s=', ignoring assignment: %s", + lvalue, rvalue); + return 0; + } + + cd->ecn = r; + qdisc = NULL; + + return 0; +} + const QDiscVTable codel_vtable = { .object_size = sizeof(ControlledDelay), .tca_kind = "codel", + .init = controlled_delay_init, .fill_message = controlled_delay_fill_message, }; diff --git a/src/network/tc/codel.h b/src/network/tc/codel.h index bd8158f0df..075423dec1 100644 --- a/src/network/tc/codel.h +++ b/src/network/tc/codel.h @@ -10,10 +10,15 @@ typedef struct ControlledDelay { QDisc meta; uint32_t packet_limit; - + usec_t interval_usec; + usec_t target_usec; + usec_t ce_threshold_usec; + int ecn; } ControlledDelay; DEFINE_QDISC_CAST(CODEL, ControlledDelay); extern const QDiscVTable codel_vtable; CONFIG_PARSER_PROTOTYPE(config_parse_tc_controlled_delay_u32); +CONFIG_PARSER_PROTOTYPE(config_parse_tc_controlled_delay_usec); +CONFIG_PARSER_PROTOTYPE(config_parse_tc_controlled_delay_bool); |