]> git.proxmox.com Git - mirror_iproute2.git/commit
ingress, clsact: don't add TCA_OPTIONS to nl msg
authorDaniel Borkmann <daniel@iogearbox.net>
Sun, 15 May 2016 16:36:03 +0000 (18:36 +0200)
committerStephen Hemminger <shemming@brocade.com>
Mon, 16 May 2016 18:20:50 +0000 (11:20 -0700)
commita2de651e64f953911f58129389f2d6674905b561
treedd3418fda4ae0b615e404ca255dad99bf3b7ebbf
parent866f6d77bf49b6e86f384a33680f33d16cf4084b
ingress, clsact: don't add TCA_OPTIONS to nl msg

In ingress and clsact qdisc TCA_OPTIONS are ignored, since it's
parameterless. In tc, we add an empty addattr_l(... TCA_OPTIONS,
NULL, 0) to the netlink message nevertheless. This has the
side effect that when someone tries a 'tc qdisc replace' and
already an existing such qdisc is present, tc fails with
EINVAL here.

Reason is that in the kernel, this invokes qdisc_change() when
such requested qdisc is already present. When TCA_OPTIONS are
passed to modify parameters, it looks whether qdisc implements
.change() callback, and if not present (like in both cases here)
it returns with error. Rather than adding an empty stub to the
kernel that ignores TCA_OPTIONS again, just don't add TCA_OPTIONS
to the netlink message in the first place.

Before:

  # tc qdisc replace dev foo clsact    # first try
  # tc qdisc replace dev foo clsact    # second one
  RTNETLINK answers: Invalid argument

After:

  # tc qdisc replace dev foo clsact
  # tc qdisc replace dev foo clsact
  # tc qdisc replace dev foo clsact

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
tc/q_clsact.c
tc/q_ingress.c