]> git.proxmox.com Git - mirror_iproute2.git/log
mirror_iproute2.git
7 years agodevlink: whitespace cleanup
Stephen Hemminger [Mon, 29 Aug 2016 18:17:38 +0000 (11:17 -0700)]
devlink: whitespace cleanup

Break long lines

7 years agodevlink: Add e-switch support
Or Gerlitz [Sun, 28 Aug 2016 13:35:21 +0000 (16:35 +0300)]
devlink: Add e-switch support

Implement kernel devlink e-switch interface. Currently we allow
to get and set the device e-switch mode.

Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Roi Dayan <roid@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
7 years agopolice: bug fix man page
Roman Mashak [Sun, 28 Aug 2016 12:52:42 +0000 (08:52 -0400)]
police: bug fix man page

Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
7 years agopolice: improve usage message
Roman Mashak [Sun, 28 Aug 2016 12:52:41 +0000 (08:52 -0400)]
police: improve usage message

Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
7 years agopolice: add extra space to improve police result printing
Roman Mashak [Sun, 28 Aug 2016 12:52:40 +0000 (08:52 -0400)]
police: add extra space to improve police result printing

Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
7 years agoip-route: Prevent some double spaces in output
Phil Sutter [Tue, 23 Aug 2016 09:52:45 +0000 (11:52 +0200)]
ip-route: Prevent some double spaces in output

The code is a bit messy, as it starts with space after text and at some
point switches to space before text. But either way, printing space
before *and* after text almost certainly leads to printing more
whitespace than necessary.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoupdate BPF headers
Stephen Hemminger [Thu, 25 Aug 2016 15:46:25 +0000 (08:46 -0700)]
update BPF headers

7 years agotc classifiers: Modernize tcindex classifier
Jamal Hadi Salim [Mon, 22 Aug 2016 11:17:33 +0000 (07:17 -0400)]
tc classifiers: Modernize tcindex classifier

Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
7 years agoip: report IFLA_GSO_MAX_SIZE and IFLA_GSO_MAX_SEGS
Eric Dumazet [Wed, 17 Aug 2016 21:39:21 +0000 (14:39 -0700)]
ip: report IFLA_GSO_MAX_SIZE and IFLA_GSO_MAX_SEGS

kernel support for these attributes was added in linux-4.6

Signed-off-by: Eric Dumazet <edumazet@google.com>
7 years agoss: fix build with musl libc
Gustavo Zacarias [Sat, 20 Aug 2016 03:11:10 +0000 (00:11 -0300)]
ss: fix build with musl libc

UINT_MAX usage requires limits.h, so include it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
7 years agoip route: restore_handler should check tb[RTA_PREFSRC] for local networks
Xin Long [Sun, 7 Aug 2016 09:12:30 +0000 (17:12 +0800)]
ip route: restore_handler should check tb[RTA_PREFSRC] for local networks

Prior to this patch, If one route entry's RTA_PREFSRC and RTA_GATEWAY
both were NULL, it was supposed to be restored ONLY as a local address.

But as it didn't check tb[RTA_PREFSRC] when restoring local networks,
rtattr_cmp would return a success if it was NULL, this route entry would
be restored again as a local network.

This patch is to add tb[RTA_PREFSRC] check when restoring local networks.

Fixes: 74af8dd9620e ("ip route: restore route entries in correct order")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Tested-by: Phil Sutter <phil@nwl.cc>
7 years agoila: show usage even if the module is not available
Sabrina Dubroca [Tue, 16 Aug 2016 14:26:58 +0000 (16:26 +0200)]
ila: show usage even if the module is not available

Currently, the `ip ila` command tries to initialize a genl context
even when we just want to see the help for the command, which doesn't
require to talk to the kernel at all.

Delay genl initialization, which can fail if the module isn't loaded,
until the point where we will actually need it.

Fixes: ec71cae0bb7b ("ila: Support for configuring ila to use netfilter hook")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
7 years agofou: show usage even if the module is not available
Sabrina Dubroca [Tue, 16 Aug 2016 14:26:57 +0000 (16:26 +0200)]
fou: show usage even if the module is not available

Currently, the `ip fou` command tries to initialize a genl context even
when we just want to see the help for the command, which doesn't require
to talk to the kernel at all.

Delay genl initialization, which can fail if the module isn't loaded,
until the point where we will actually need it.

Fixes: 6928747b6e79 ("ip fou: Support to configure foo-over-udp RX")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
7 years agomacsec: show usage even if the module is not available
Sabrina Dubroca [Tue, 16 Aug 2016 14:26:56 +0000 (16:26 +0200)]
macsec: show usage even if the module is not available

Currently, the `ip macsec` command tries to initialize a genl context
even when we just want to see the help for the command, which doesn't
require to talk to the kernel at all.

Delay genl initialization, which can fail if the module isn't loaded,
until the point where we will actually need it.

Fixes: b26fc590ce62 ("ip: add MACsec support")
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
7 years agolibgenl: introduce genl_init_handle
Sabrina Dubroca [Tue, 16 Aug 2016 14:26:55 +0000 (16:26 +0200)]
libgenl: introduce genl_init_handle

All users of genl have the same code to open a genl socket and resolve
the family for their specific protocol.  Introduce a helper to initialize
the handle, and use it in all the genl code.

Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
7 years agoip-link: add missing {min,max}_tx_rate to help text
Phil Sutter [Tue, 16 Aug 2016 14:08:38 +0000 (16:08 +0200)]
ip-link: add missing {min,max}_tx_rate to help text

These vf options are described in man page already, they're just missing
in help output.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agotipc: refactor bearer identification
Richard Alpe [Mon, 15 Aug 2016 08:24:32 +0000 (10:24 +0200)]
tipc: refactor bearer identification

Introduce a generic function (nl_add_bearer_name()) that identifies a
bearer and adds it to an existing netlink message. This reduces code
complexity and makes the code a little bit easier to maintain.

Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
7 years agotipc: fix UDP bearer synopsis
Richard Alpe [Mon, 15 Aug 2016 08:24:31 +0000 (10:24 +0200)]
tipc: fix UDP bearer synopsis

Local ip is not required to identify a UDP bearer and shouldn't be
passed to bearer disable, set or get. In this patch we remove the
localip entry from the synopsis of these functions.

Signed-off-by: Richard Alpe <richard.alpe@ericsson.com>
7 years agoipila: Fixed unitialized variables
Tom Herbert [Mon, 15 Aug 2016 23:30:22 +0000 (16:30 -0700)]
ipila: Fixed unitialized variables

Initialize locator and locator_match to zero and only do
addattr if they have been set.

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agoman: ip-link.8: Document missing geneve options
Phil Sutter [Thu, 11 Aug 2016 23:17:12 +0000 (01:17 +0200)]
man: ip-link.8: Document missing geneve options

This adds missing documentation of geneve type options:

- dstport
- external
- udpcsum
- udp6zerocsumtx
- udp6zerocsumrx

The bits for the last three was just copy and pasted from vxlan section.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agofou: Allowing configuring IPv6 listener
Tom Herbert [Thu, 4 Aug 2016 20:34:57 +0000 (13:34 -0700)]
fou: Allowing configuring IPv6 listener

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agogre6: Support for fou encapsulation
Tom Herbert [Thu, 4 Aug 2016 20:34:56 +0000 (13:34 -0700)]
gre6: Support for fou encapsulation

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agoip6tnl: Support for fou encapsulation
Tom Herbert [Thu, 4 Aug 2016 20:34:55 +0000 (13:34 -0700)]
ip6tnl: Support for fou encapsulation

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agoila: Support for configuring ila to use netfilter hook
Tom Herbert [Thu, 4 Aug 2016 20:34:54 +0000 (13:34 -0700)]
ila: Support for configuring ila to use netfilter hook

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agoila: Support for checksum neutral translation
Tom Herbert [Thu, 4 Aug 2016 20:34:53 +0000 (13:34 -0700)]
ila: Support for checksum neutral translation

Add configuration of ila LWT tunnels for checksum mode including
checksum neutral translation.

Signed-off-by: Tom Herbert <tom@herbertland.com>
7 years agotc: fix a misleading failure
WANG Cong [Mon, 8 Aug 2016 23:24:45 +0000 (16:24 -0700)]
tc: fix a misleading failure

Before this patch:

 # ./tc/tc actions add action drop index 11
 RTNETLINK answers: File exists
 We have an error talking to the kernel
 Command "(null)" is unknown, try "tc actions help".

After this patch:

 # ./tc/tc actions add action drop index 11
 RTNETLINK answers: File exists
 We have an error talking to the kernel

Cc: Stephen Hemminger <shemming@brocade.com>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
7 years agoMerge branch 'net-next'
Stephen Hemminger [Tue, 9 Aug 2016 18:14:47 +0000 (11:14 -0700)]
Merge branch 'net-next'

7 years agobridge: print_vlan: add missing check for json instance
Roopa Prabhu [Wed, 3 Aug 2016 06:07:05 +0000 (23:07 -0700)]
bridge: print_vlan: add missing check for json instance

Also initialize vlan_flags

Fixes: d82a49ce85f0 ("bridge: add json support for bridge vlan show")
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Mon, 8 Aug 2016 16:27:28 +0000 (09:27 -0700)]
Merge branch 'master' into net-next

7 years agov4.7.0
Stephen Hemminger [Mon, 8 Aug 2016 15:58:39 +0000 (08:58 -0700)]
v4.7.0

7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Mon, 8 Aug 2016 15:57:22 +0000 (08:57 -0700)]
Merge branch 'master' into net-next

7 years agotc/m_gact: Fix action_a2n() return code check
Phil Sutter [Sun, 7 Aug 2016 11:19:01 +0000 (13:19 +0200)]
tc/m_gact: Fix action_a2n() return code check

The function returns zero on success.

Reported-by: Mark Bloch <markb@mellanox.com>
Fixes: 69f5aff63c770b ("tc: use action_a2n() everywhere")
Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoupdate kernel headers
Stephen Hemminger [Mon, 8 Aug 2016 15:51:22 +0000 (08:51 -0700)]
update kernel headers

7 years agobridge: print_vlan: add missing check for json instance
Roopa Prabhu [Wed, 3 Aug 2016 06:07:05 +0000 (23:07 -0700)]
bridge: print_vlan: add missing check for json instance

Also initialize vlan_flags

Fixes: d82a49ce85f0 ("bridge: add json support for bridge vlan show")
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Mon, 8 Aug 2016 15:44:07 +0000 (08:44 -0700)]
Merge branch 'master' into net-next

7 years agobridge: vlan json: skip ports with empty vlans
Roopa Prabhu [Sun, 7 Aug 2016 19:37:03 +0000 (12:37 -0700)]
bridge: vlan json: skip ports with empty vlans

The non-json output prints 'None' for such vlans.
And this can garble json output.

Fixes: d82a49ce85f0 ("bridge: add json support for bridge vlan show")
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agotc: Fix for missing estimator initialization
Phil Sutter [Wed, 3 Aug 2016 09:43:45 +0000 (11:43 +0200)]
tc: Fix for missing estimator initialization

When switching to C99 initializers, I forgot to add this one. This means
that when trying to set an estimator value, tc would complain about
spurious duplicate estimator parameter. But much worse, the random
variable content is sent to the kernel regardless of whether an
estimator was given or not.

Fixes: d17b136f7d7dd ("Use C99 style initializers everywhere")
Reported-by: Stas Nichiporovich <stasn77@gmail.com>
Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agodevlink: add option to generate JSON output
Jiri Pirko [Fri, 22 Jul 2016 16:34:30 +0000 (18:34 +0200)]
devlink: add option to generate JSON output

For parsing by another app it is convenient to produce output in JSON
format.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
7 years agodevlink: write usage help messages to stderr
Jiri Pirko [Fri, 22 Jul 2016 16:34:29 +0000 (18:34 +0200)]
devlink: write usage help messages to stderr

In order to not confuse reader, write help messages into stderr.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
7 years agomacsec: cipher and icvlen can be set separately
Davide Caratti [Tue, 26 Jul 2016 09:03:20 +0000 (11:03 +0200)]
macsec: cipher and icvlen can be set separately

since kernel driver has valid default values for 'cipher' and 'icvlen',
there is no need for requiring users to specify both of them when a new
link is added. Also, prompt an error message and exit with appropriate
exit status in case of unsupported cipher suite.

Signed-off-by: Davide Caratti <dcaratti@redhat.com>
7 years agoip {link,address}: add 'macsec' item to TYPE list
Davide Caratti [Tue, 26 Jul 2016 09:03:19 +0000 (11:03 +0200)]
ip {link,address}: add 'macsec' item to TYPE list

fix output of "ip address help" and "ip link help". Update TYPE list in man
pages ip-address.8 and ip-link.8 as well.

Signed-off-by: Davide Caratti <dcaratti@redhat.com>
7 years agoman: macsec: fix macsec related typos
Davide Caratti [Tue, 26 Jul 2016 09:03:18 +0000 (11:03 +0200)]
man: macsec: fix macsec related typos

- ip-macsec.8: fix wrong 'device' keyword in 'ip link add device eth0';
add missing description of 'validate' keyword; remove spurious bracket
near 'encrypt' keyword; add missing reference to configuration of 'port'
and 'sci'
- ip-link.8 fix wrong 'es' and 'encoding' keywords in MACsec section

Signed-off-by: Davide Caratti <dcaratti@redhat.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Mon, 25 Jul 2016 15:21:00 +0000 (08:21 -0700)]
Merge branch 'master' into net-next

7 years agoman/man8/tc-flow.8: minor corrections
Michal Soltys [Sun, 24 Jul 2016 00:00:29 +0000 (02:00 +0200)]
man/man8/tc-flow.8: minor corrections

- baseclass: major handle must match that of class's, Y defaults to 1
- flow map example: maps to 1-256, not 1-257

Signed-off-by: Michal Soltys <soltys@ziu.info>
7 years agotc: util: No need for action_n2a() to be reentrant
Phil Sutter [Sat, 23 Jul 2016 11:28:10 +0000 (13:28 +0200)]
tc: util: No need for action_n2a() to be reentrant

This allows to remove some buffers here and there. While at it, make it
return a const value.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agotc: use action_a2n() everywhere
Phil Sutter [Sat, 23 Jul 2016 11:28:09 +0000 (13:28 +0200)]
tc: use action_a2n() everywhere

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agotc: util: bore up action_a2n()
Phil Sutter [Sat, 23 Jul 2016 11:28:08 +0000 (13:28 +0200)]
tc: util: bore up action_a2n()

It's a pitty this function is used nowhere, so let's polish it for use:

* Loop over branch names, makes it clear that every former conditional
  was exactly identical.
* Support 'pipe' branch name, too.
* Make number parsing optional.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agotc: Reformat tc_util.h
Phil Sutter [Sat, 23 Jul 2016 11:28:07 +0000 (13:28 +0200)]
tc: Reformat tc_util.h

* Drop 'extern' keyword before function declarations.
* Add parameter names where they were missing for matters of
  consistency.
* Drop fancy indenting (e.g. tab between type and name).
* Break long lines to not exceed 80 columns.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agol2tp: add udp checksum control flags
Shanker Wang [Thu, 21 Jul 2016 10:59:10 +0000 (18:59 +0800)]
l2tp: add udp checksum control flags

Three options are added for the user to control
whether the checksum is enabled

Signed-off-by: Miao Wang <miao.wang@tuna.tsinghua.edu.cn>
7 years agoinclude: update net-next XDP headers
Stephen Hemminger [Wed, 20 Jul 2016 19:24:59 +0000 (12:24 -0700)]
include: update net-next XDP headers

7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Wed, 20 Jul 2016 19:21:42 +0000 (12:21 -0700)]
Merge branch 'master' into net-next

7 years agoip-address.8: Document autojoin flag
Phil Sutter [Tue, 12 Jul 2016 07:56:16 +0000 (09:56 +0200)]
ip-address.8: Document autojoin flag

Description copied from related kernel support commit message with a
little tailoring to fit.

While at it, fix font of non-terminal CONFFLAG-LIST in synopsis.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agotc: ematch: Ignore all-zero mask value when printing filters
Phil Sutter [Thu, 14 Jul 2016 21:10:53 +0000 (23:10 +0200)]
tc: ematch: Ignore all-zero mask value when printing filters

The optional mask which may be added to int values is considered by the
kernel only if it is non-zero, therefore tc should only then also print
it.

Without this, not passing a mask value like so:

| # tc filter add dev d0 parent 8001: \
|  basic match meta\(vlan eq 1\) \
|  classid 8001:1

Would lead to tc printing an all-zero mask later:

| # tc filter show dev d0
| filter parent 8001: protocol all pref 49151 basic
| filter parent 8001: protocol all pref 49151 basic handle 0x1 flowid 8001:1
|   meta(vlan mask 0x00000000 eq 1)

This is obviously confusing as an all-zero mask strictly means to
eliminate all bits from the value, but the opposite is the case.

Cc: Thomas Graf <tgraf@suug.ch>
Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoMakefile: Allow to override CC
Phil Sutter [Mon, 18 Jul 2016 14:48:45 +0000 (16:48 +0200)]
Makefile: Allow to override CC

This makes it easier to build iproute2 with a custom compiler.

While at it, make HOSTCC default to the value of CC if not explicitly
set elsewhere.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoNo need to initialize rtattr fields before parsing
Phil Sutter [Mon, 18 Jul 2016 14:48:44 +0000 (16:48 +0200)]
No need to initialize rtattr fields before parsing

Since parse_rtattr_flags() calls memset already, there is no need for
callers to do so themselves.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoReplace malloc && memset by calloc
Phil Sutter [Mon, 18 Jul 2016 14:48:43 +0000 (16:48 +0200)]
Replace malloc && memset by calloc

This only replaces occurrences where the newly allocated memory is
cleared completely afterwards, as in other cases it is a theoretical
performance hit although code would be cleaner this way.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoUse C99 style initializers everywhere
Phil Sutter [Mon, 18 Jul 2016 14:48:42 +0000 (16:48 +0200)]
Use C99 style initializers everywhere

This big patch was compiled by vimgrepping for memset calls and changing
to C99 initializer if applicable. One notable exception is the
initialization of union bpf_attr in tc/tc_bpf.c: changing it would break
for older gcc versions (at least <=3.4.6).

Calls to memset for struct rtattr pointer fields for parse_rtattr*()
were just dropped since they are not needed.

The changes here allowed the compiler to discover some unused variables,
so get rid of them, too.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
7 years agotc: m_action: Improve conversion to C99 style initializers
Phil Sutter [Mon, 18 Jul 2016 14:48:41 +0000 (16:48 +0200)]
tc: m_action: Improve conversion to C99 style initializers

This improves my initial change in the following points:

- Flatten embedded struct's initializers.
- No need to initialize variables to zero as the key feature of C99
  initializers is to do this implicitly.
- By relocating the declaration of struct rtattr *tail, it can be
  initialized at the same time.

Fixes: a0a73b298a579 ("tc: m_action: Use C99 style initializers for struct req")
Signed-off-by: Phil Sutter <phil@nwl.cc>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip-link.8: Fix font choices
Phil Sutter [Sat, 9 Jul 2016 09:22:50 +0000 (11:22 +0200)]
ip-link.8: Fix font choices

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoip-link.8: Add slave type option descriptions
Phil Sutter [Sat, 9 Jul 2016 09:22:49 +0000 (11:22 +0200)]
ip-link.8: Add slave type option descriptions

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoip-link.8: Place 'ip link set' warning more prominently
Phil Sutter [Sat, 9 Jul 2016 09:22:48 +0000 (11:22 +0200)]
ip-link.8: Place 'ip link set' warning more prominently

This moves the warning to the beginning of the section about 'ip link
set' which makes it still stand out after adding more text to it's end.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoip-link.8: Extend type list in synopsis
Phil Sutter [Sat, 9 Jul 2016 09:22:47 +0000 (11:22 +0200)]
ip-link.8: Extend type list in synopsis

'ip link set' supports passing a type to set type-specific parameters.
Add this missing piece of information to the synopsis section.

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoiplink: bond_slave: Add missing help functions
Phil Sutter [Sat, 9 Jul 2016 09:22:46 +0000 (11:22 +0200)]
iplink: bond_slave: Add missing help functions

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoiplink: List valid 'type' argument in ip link help text
Phil Sutter [Sat, 9 Jul 2016 09:22:45 +0000 (11:22 +0200)]
iplink: List valid 'type' argument in ip link help text

Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agobridge: remove unused variable
Stephen Hemminger [Wed, 20 Jul 2016 19:03:33 +0000 (12:03 -0700)]
bridge: remove unused variable

Debris from JSON changes.

7 years agobridge: update man page
Roopa Prabhu [Wed, 22 Jun 2016 13:45:55 +0000 (06:45 -0700)]
bridge: update man page

Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agobridge: add json schema for bridge fdb show
Anuradha Karuppiah [Wed, 22 Jun 2016 13:45:54 +0000 (06:45 -0700)]
bridge: add json schema for bridge fdb show

Storing the schema file for the json format will be useful for doc
purposes as optional paramaters are typically suppressed in the json
sample outputs.

Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
7 years agobridge: add json support for bridge fdb show
Anuradha Karuppiah [Wed, 22 Jun 2016 13:45:53 +0000 (06:45 -0700)]
bridge: add json support for bridge fdb show

Sample output:
$bridge -j fdb show
[{
        "mac": "44:38:39:00:69:88",
        "dev": "swp2s0",
        "vlan": 2,
        "master": "br0",
        "state": "permanent"
    },{
        "mac": "00:02:00:00:00:01",
        "dev": "swp2s0",
        "vlan": 2,
        "master": "br0"
    },{
        "mac": "00:02:00:00:00:02",
        "dev": "swp2s1",
        "vlan": 2,
        "master": "br0"
    },{
        "mac": "44:38:39:00:69:89",
        "dev": "swp2s1",
        "master": "br0",
        "state": "permanent"
    },{
        "mac": "44:38:39:00:69:89",
        "dev": "swp2s1",
        "vlan": 2,
        "master": "br0",
        "state": "permanent"
    },{
        "mac": "44:38:39:00:69:88",
        "dev": "br0",
        "master": "br0",
        "state": "permanent"
    }
]

Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agobridge: add json support for bridge vlan show
Roopa Prabhu [Wed, 22 Jun 2016 13:45:52 +0000 (06:45 -0700)]
bridge: add json support for bridge vlan show

$bridge -c vlan show
port vlan ids
swp1  1 PVID Egress Untagged
 10-13

swp2  1 PVID Egress Untagged
 10-13

br0  1 PVID Egress Untagged

$bridge  -json vlan show
{
    "swp1": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        },{
            "vlan": 10
        },{
            "vlan": 11
        },{
            "vlan": 12
        },{
            "vlan": 13
        }
    ],
    "swp2": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        },{
            "vlan": 10
        },{
            "vlan": 11
        },{
            "vlan": 12
        },{
            "vlan": 13
        }
    ],
    "br0": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        }
    ]
}

$bridge -c -json vlan show
{
    "swp1": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        },{
            "vlan": 10,
            "vlanEnd": 13
        }
    ],
    "swp2": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        },{
            "vlan": 10,
            "vlanEnd": 13
        }
    ],
    "br0": [{
            "vlan": 1,
            "flags": ["PVID","Egress Untagged"
            ]
        }
    ]
}

Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
7 years agojson_writer: Removed automatic json-object type from the constructor
Anuradha Karuppiah [Wed, 22 Jun 2016 13:45:51 +0000 (06:45 -0700)]
json_writer: Removed automatic json-object type from the constructor

Top level can be any json type and can be created using
jsonw_start_object/jsonw_end_object etc.

Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
7 years agoss: Add option to suppress header line
David Ahern [Fri, 15 Jul 2016 22:45:39 +0000 (15:45 -0700)]
ss: Add option to suppress header line

Add option to suppress header line. When used the following line
is not shown:
"State  Recv-Q Send-Q     Local Address:Port  Peer Address:Port"

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoss: Fix support for device filter by index
David Ahern [Fri, 15 Jul 2016 22:41:35 +0000 (15:41 -0700)]
ss: Fix support for device filter by index

Support was recently added for device filters. The intent was to allow
the device to be specified by name or index, and using the if%u format
(dev == if5) or the simpler and more intuitive index alone (dev == 5).
The latter case is broken since the index is not saved to the filter
after the strtoul conversion. Further, the tmp variable used for the
conversion shadows another variable used in the function. Fix both.

With this change all 3 variants work as expected:
$ ss -t 'dev == 62'
State   Recv-Q Send-Q         Local Address:Port    Peer Address:Port
ESTAB       0      224         10.0.1.3%mgmt:ssh   192.168.0.50:58442

$ ss -t 'dev == mgmt'
State   Recv-Q Send-Q         Local Address:Port    Peer Address:Port
ESTAB       0      224         10.0.1.3%mgmt:ssh   192.168.0.50:58442

$ ss -t 'dev == if62'
State   Recv-Q Send-Q         Local Address:Port    Peer Address:Port
ESTAB       0      36          10.0.1.3%mgmt:ssh   192.168.0.50:58442

Fixes: 2d2932125616 ("ss: Add support to filter on device")
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agobpf: also check elf for official e_machine value
Daniel Borkmann [Mon, 18 Jul 2016 23:09:52 +0000 (01:09 +0200)]
bpf: also check elf for official e_machine value

Use the official BPF ELF e_machine value that was assigned recently [1]
and will be propagated to glibc, libelf et al. LLVM will switch to it
in 3.9 release, therefore we need to prepare tc to check for EM_ELF as
well, older version still have the EM_NONE.

  [1] https://github.com/llvm-mirror/llvm/commit/36b9c09330bfb5e771914cfe307588f30d5510d2

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
7 years agoupdate headers files to current net-next
Stephen Hemminger [Fri, 15 Jul 2016 18:55:14 +0000 (11:55 -0700)]
update headers files to current net-next

7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Fri, 15 Jul 2016 18:49:41 +0000 (11:49 -0700)]
Merge branch 'master' into net-next

7 years agoman: Point to 'devlink-sb' from 'devlink' man page
Ido Schimmel [Wed, 13 Jul 2016 06:53:54 +0000 (09:53 +0300)]
man: Point to 'devlink-sb' from 'devlink' man page

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
7 years agoman: Add devlink man pages to Makefile
Ido Schimmel [Wed, 13 Jul 2016 06:53:53 +0000 (09:53 +0300)]
man: Add devlink man pages to Makefile

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
7 years agoiproute: constify rtattr_cmp
Stephen Hemminger [Fri, 15 Jul 2016 18:34:45 +0000 (11:34 -0700)]
iproute: constify rtattr_cmp

7 years agoip route: restore route entries in correct order
Xin Long [Tue, 12 Jul 2016 13:37:58 +0000 (21:37 +0800)]
ip route: restore route entries in correct order

Sometimes we cannot restore route entries, because in kernel
  [1] fib_check_nh()
  [2] fib_valid_prefsrc()
cause some routes to depend on existence of others while adding.

For example, we saved all the routes, and flushed all tables
  [a] default via 192.168.122.1 dev eth0
  [b] 192.168.122.0/24 dev eth0 src 192.168.122.21
  [c] broadcast 127.0.0.0 dev lo table local src 127.0.0.1
  [d] local 127.0.0.0/8 dev lo table local  src 127.0.0.1
  [e] local 127.0.0.1 dev lo table local src 127.0.0.1
  [f] broadcast 127.255.255.255 dev lo table local src 127.0.0.1
  [g] broadcast 192.168.122.0 dev eth0 table local src 192.168.122.21
  [h] local 192.168.122.21 dev eth0 table local src 192.168.122.21
  [i] broadcast 192.168.122.255 dev eth0 table local src 192.168.122.21

  Now start to restore them:
    If we want to add [a], we have to add [b] first, as [1] and
    'via 192.168.122.1' in [a].
    If we want to add [b], we have to add [h] first, as [2] and
    'src 192.168.122.21' in [b].

  So the correct order to restore should be like:
    [e][h] -> [b][c][d][f][g][i] -> [a]

This patch fixes it by traversing the file 3 times, it only restores
part of them in each run according to the following conditions, to
make sure every entry can be restored successfully.
  1. !gw && (!fib_prefsrc || fib_prefsrc == cfg->fc_dst)
  2. !gw && (fib_prefsrc != cfg->fc_dst)
  3. gw

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Phil Sutter <phil@nwl.cc>
7 years agoip: link style cleanup
Stephen Hemminger [Fri, 15 Jul 2016 18:31:20 +0000 (11:31 -0700)]
ip: link style cleanup

break long lines and other trivial changes

7 years agoAdd support for configuring Infiniband GUIDs
Eli Cohen [Thu, 7 Jul 2016 21:09:03 +0000 (16:09 -0500)]
Add support for configuring Infiniband GUIDs

Add two NLA's that allow configuration of Infiniband node or port GUIDs
by referencing the IPoIB net device set over the physical function. The
format to be used is as follows:

ip link set dev ib0 vf 0 node_guid 00:02:c9:03:00:21:6e:70
ip link set dev ib0 vf 0 port_guid 00:02:c9:03:00:21:6e:78

Signed-off-by: Eli Cohen <eli@mellanox.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Thu, 7 Jul 2016 04:29:32 +0000 (21:29 -0700)]
Merge branch 'master' into net-next

7 years agoip route: Add support for vrf keyword
David Ahern [Wed, 29 Jun 2016 18:27:02 +0000 (11:27 -0700)]
ip route: Add support for vrf keyword

Add vrf keyword to 'ip route' commands. Allows:
1. Users can list routes by VRF name:
       $ ip route show vrf NAME

   VRF tables have all routes including local and broadcast routes.
   The VRF keyword filters LOCAL and BROADCAST routes; to see all
   routes the table option can be used. Or to see local routes only
   for a VRF:
       $ ip route show vrf NAME type local

2. Add or delete a route for a VRF:
       $ ip route {add|delete} vrf NAME <route spec>

3. Do a route lookup for a VRF:
       $ ip route get vrf NAME ADDRESS

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip vrf: Add ipvrf_get_table
David Ahern [Wed, 29 Jun 2016 18:27:01 +0000 (11:27 -0700)]
ip vrf: Add ipvrf_get_table

Add ipvrf_get_table to lookup table id for device name. Returns 0
on any error or if name is not a VRF device.

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip route: Change type mask to bitmask
David Ahern [Wed, 29 Jun 2016 18:27:00 +0000 (11:27 -0700)]
ip route: Change type mask to bitmask

Allow option to select multiple route types to show or exlude
specific route types.

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip neigh: Add support for keyword
David Ahern [Wed, 29 Jun 2016 18:26:59 +0000 (11:26 -0700)]
ip neigh: Add support for keyword

Add vrf keyword to 'ip neigh' commands. Allows listing neighbor
entries for all links associated with a given VRF.

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip link/addr: Add support for vrf keyword
David Ahern [Wed, 29 Jun 2016 18:26:58 +0000 (11:26 -0700)]
ip link/addr: Add support for vrf keyword

Add vrf keyword to 'ip link' and 'ip addr' commands (common list code).

Allows:
1. Adding a link to a VRF
       $ ip link set NAME vrf NAME

   Removing a link from a VRF still uses 'ip link set NAME nomaster'

2. Showing links associated with a VRF:
       $ ip link show vrf NAME

3. List addresses associated with links in a VRF
       $ ip -br addr show vrf red

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agoip vrf: Add name_is_vrf
David Ahern [Wed, 29 Jun 2016 18:26:57 +0000 (11:26 -0700)]
ip vrf: Add name_is_vrf

Add name_is_vrf function to determine if given name corresponds to a
VRF device.

Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
7 years agotc: flower: Add skip_{hw|sw} support
Amir Vadai [Mon, 4 Jul 2016 07:34:11 +0000 (10:34 +0300)]
tc: flower: Add skip_{hw|sw} support

On devices that support TC flower offloads, these flags enable a filter to be
added only to HW or only to SW. skip_sw and skip_hw are mutually exclusive
flags. By default without any flags, the filter is added to both HW and SW,
but no error checks are done in case of failure to add to HW.
With skip-sw, failure to add to HW is treated as an error.

Here is a sample script that adds 2 filters, one with skip_sw and the other
with skip_hw flag.

   # add ingress qdisc
   tc qdisc add dev enp0s9 ingress

   # enable hw tc offload.
   ethtool -K enp0s9 hw-tc-offload on

   # add a flower filter with skip-sw flag.
   tc filter add dev enp0s9 protocol ip parent ffff: flower \
   ip_proto 1 indev enp0s9 skip_sw \
   action drop

   # add a flower filter with skip-hw flag.
   tc filter add dev enp0s9 protocol ip parent ffff: flower \
   ip_proto 3 indev enp0s9 skip_hw \
   action drop

Signed-off-by: Amir Vadai <amirva@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Thu, 7 Jul 2016 04:23:26 +0000 (21:23 -0700)]
Merge branch 'master' into net-next

7 years agoactions: skbedit add support for mod-ing skb pkt_type
Jamal Hadi Salim [Sat, 2 Jul 2016 11:14:33 +0000 (07:14 -0400)]
actions: skbedit add support for mod-ing skb pkt_type

I'll make a formal submission sans the header when the kernel patches
makes it in. This version is for someone who wants to play around with
the net-next kernel patches i sent

Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
7 years agoupdate kernel header (4.7 net-next)
Stephen Hemminger [Thu, 7 Jul 2016 04:14:57 +0000 (21:14 -0700)]
update kernel header (4.7 net-next)

7 years agoip-address: constify match_link_kind arg
Phil Sutter [Thu, 30 Jun 2016 14:47:02 +0000 (16:47 +0200)]
ip-address: constify match_link_kind arg

Since the function won't ever change the data 'kind' is pointing at, it
can sanely be made const.

Fixes: e0513807f6dbb ("ip-address: Support filtering by slave type, too")
Suggested-by: Stephen Hemminger <shemming@brocade.com>
Signed-off-by: Phil Sutter <phil@nwl.cc>
7 years agoiproute2: unmangle netdev/my emails in man pages (hfsc, stab)
Michal Soltys [Sat, 2 Jul 2016 11:03:12 +0000 (13:03 +0200)]
iproute2: unmangle netdev/my emails in man pages (hfsc, stab)

No other man pages do so, hiding netdev is kind of silly and I don't
mind having my own address normally visible.

7 years agoman: rtacct: add missing TP marker
Masatake YAMATO [Tue, 5 Jul 2016 09:08:50 +0000 (18:08 +0900)]
man: rtacct: add missing TP marker

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
7 years agoMerge branch 'master' into net-next
Stephen Hemminger [Fri, 1 Jul 2016 00:31:37 +0000 (17:31 -0700)]
Merge branch 'master' into net-next

7 years agobridge: man: fix STP LISTENING description
Vivien Didelot [Wed, 29 Jun 2016 19:26:29 +0000 (15:26 -0400)]
bridge: man: fix STP LISTENING description

Correct the unclear and poorly conjugated STP LISTENING documentation.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7 years agobridge: man: fix BPUD typo
Vivien Didelot [Wed, 29 Jun 2016 19:26:10 +0000 (15:26 -0400)]
bridge: man: fix BPUD typo

s/BPUD/BPDU/ in guard description.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7 years agoip route: timeout for routes has to be set in seconds
Andrew Vagin [Tue, 28 Jun 2016 23:27:14 +0000 (02:27 +0300)]
ip route: timeout for routes has to be set in seconds

Currently a timeout is multiplied by HZ in user-space and
then it multiplied by HZ in kernel-space.

$ ./ip/ip r add 2002::0/64 dev veth1 expires 10
$ ./ip/ip -6 r
2002::/64 dev veth1  metric 1024 linkdown  expires 996sec pref medium

Cc: Xin Long <lucien.xin@gmail.com>
Cc: Hangbin Liu <liuhangbin@gmail.com>
Cc: Stephen Hemminger <shemming@brocade.com>
Fixes: 68eede250500 ("route: allow routes to be configured with expire values")
Signed-off-by: Andrew Vagin <avagin@virtuozzo.com>
7 years agoip-address: Align type list in help and man page
Phil Sutter [Tue, 28 Jun 2016 13:07:17 +0000 (15:07 +0200)]
ip-address: Align type list in help and man page

This adds missing entries on both sides until they are identical.

Signed-off-by: Phil Sutter <phil@nwl.cc>