]> git.puffer.fish Git - mirror/frr.git/log
mirror/frr.git
5 years agobgpd: aggregate-address A.B.C.D A.B.C.D summary-only was missreading config 5068/head
Donald Sharp [Thu, 26 Sep 2019 16:37:28 +0000 (12:37 -0400)]
bgpd: aggregate-address A.B.C.D A.B.C.D summary-only was missreading config

The `aggregate-address 30.0.5.0 255.255.255.0 summary-only` command
was missreading the inputed data and translating it into:

`aggregate-address 30.0.5.0/24 summary-only route-map summary-only`

This is not quite correct.  Fix this behavior:

donna.cumulusnetworks.com# conf
donna.cumulusnetworks.com(config)# router bgp
donna.cumulusnetworks.com(config-router)# aggregate-address 30.0.5.0 255.255.255.0 summary-only
donna.cumulusnetworks.com(config-router)# do show run
Building configuration...

Current configuration:
!
frr version 7.3-dev
frr defaults datacenter
hostname donna.cumulusnetworks.com
log file /var/log/frr/frr.log
no ipv6 forwarding
frr version 7.2-dev
!
router bgp 500
 neighbor 192.168.209.1 remote-as external
 neighbor 192.168.209.1 ebgp-multihop 255
 neighbor 192.168.210.1 remote-as external
 !
 address-family ipv4 unicast
  network 192.168.9.0/24
  network 192.168.10.0/24
  aggregate-address 30.0.5.0/24 summary-only
 exit-address-family
!

Issue: #5054
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #5062 from kuldeepkash/route_map
Donald Sharp [Thu, 26 Sep 2019 13:05:57 +0000 (09:05 -0400)]
Merge pull request #5062 from kuldeepkash/route_map

Add bgp route-map test cases

5 years agotests: Add bgp route-map test cases 5062/head
Kuldeep Kashyap [Wed, 25 Sep 2019 11:56:13 +0000 (11:56 +0000)]
tests: Add bgp route-map test cases

Adding 27 bgp route-map test cases to test multiple route-map scenarios

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Add API to shut/noshut router interface
Kuldeep Kashyap [Wed, 25 Sep 2019 11:53:00 +0000 (11:53 +0000)]
tests: Add API to shut/noshut router interface

This API would help to shut/nohut specified router interfaces

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Adding verification APIs for bgp route-maps and community-lists
Kuldeep Kashyap [Wed, 25 Sep 2019 11:49:48 +0000 (11:49 +0000)]
tests: Adding verification APIs for bgp route-maps and community-lists

APIs to verify bgp route-maps, bgp community and large community configurations

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Enhance support to create bgp community-list or large-community-list
Kuldeep Kashyap [Wed, 25 Sep 2019 11:47:25 +0000 (11:47 +0000)]
tests: Enhance support to create bgp community-list or large-community-list

Adding new API to create bgp community-list or large-community-list

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Enhance framework to create and delete route-map
Kuldeep Kashyap [Wed, 25 Sep 2019 11:39:08 +0000 (11:39 +0000)]
tests: Enhance framework to create and delete route-map

Added APIs to create and delete route-maps configuration

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Add route-map to initial config creation from JSON
Kuldeep Kashyap [Wed, 25 Sep 2019 11:24:56 +0000 (11:24 +0000)]
tests: Add route-map to initial config creation from JSON

To enable route-map config build from JSON

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agotests: Adding API verify_bgp_attributes() to bgp.py
Kuldeep Kashyap [Wed, 25 Sep 2019 11:16:44 +0000 (11:16 +0000)]
tests: Adding API verify_bgp_attributes() to bgp.py

This API is to verify BGP attribute values set by route maps

Signed-off-by: Kuldeep Kashyap <kashyapk@vmware.com>
5 years agoMerge pull request #5047 from dslicenc/bgp-next-hop-routemap
Donatas Abraitis [Thu, 26 Sep 2019 08:17:51 +0000 (11:17 +0300)]
Merge pull request #5047 from dslicenc/bgp-next-hop-routemap

bgpd: stop sending nexthop set by "route-map in" to eBGP peers

5 years agobgpd: stop sending nexthop set by "route-map in" to eBGP peers 5047/head
Don Slice [Tue, 24 Sep 2019 12:02:02 +0000 (05:02 -0700)]
bgpd: stop sending nexthop set by "route-map in" to eBGP peers

Problem reported that when a "neighbor x.x.x.x route-map FOO in"
set a next-hop value, that modified next-hop value was also sent
to eBGP peers.  This is incorrect since bgp is expected to set
next-hop to self when sending to eBGP peers unless third party
next-hop on a shared segment is true.  This fix modifies the
behavior to stop sending the modified next-hop to eBGP peers
if the route-map was applied inbound on another peer.

Ticket: CM-26025
Signed-off-by: Don Slice <dslice@cumulusnetworks.com>
5 years agoMerge pull request #5058 from mjstapp/fix_dplane_config_handler
Donald Sharp [Wed, 25 Sep 2019 20:47:47 +0000 (16:47 -0400)]
Merge pull request #5058 from mjstapp/fix_dplane_config_handler

zebra: handle config write for dataplane values

5 years agoMerge pull request #5051 from idryzhov/fix-vrf-autocomplete
Donald Sharp [Wed, 25 Sep 2019 19:27:55 +0000 (15:27 -0400)]
Merge pull request #5051 from idryzhov/fix-vrf-autocomplete

*: fix missing VRF autocompletions

5 years agozebra: handle config write for dataplane values 5058/head
Mark Stapp [Wed, 25 Sep 2019 18:05:50 +0000 (14:05 -0400)]
zebra: handle config write for dataplane values

Add the (single) dataplane config value to the output of
config write, 'show run' - missed this during dplane development.

Signed-off-by: Mark Stapp <mjs@voltanet.io>
5 years agoMerge pull request #5053 from donaldsharp/more_sa_stuff_this_evening
Mark Stapp [Wed, 25 Sep 2019 15:23:49 +0000 (11:23 -0400)]
Merge pull request #5053 from donaldsharp/more_sa_stuff_this_evening

More sa stuff this evening

5 years agoMerge pull request #5055 from pguibert6WIND/fix_memory_leak_with_delete_interface
Mark Stapp [Wed, 25 Sep 2019 14:03:26 +0000 (10:03 -0400)]
Merge pull request #5055 from pguibert6WIND/fix_memory_leak_with_delete_interface

zebra: fix memory leak

5 years agoMerge pull request #5052 from mjstapp/zebra_yang_model
Donald Sharp [Wed, 25 Sep 2019 13:27:57 +0000 (09:27 -0400)]
Merge pull request #5052 from mjstapp/zebra_yang_model

libs: add yang models for zebra and nexthop

5 years agopimd: up->channel_oil cannot be NULL 5053/head
Donald Sharp [Wed, 25 Sep 2019 00:48:56 +0000 (20:48 -0400)]
pimd: up->channel_oil cannot be NULL

When we create the up data structure we create the channel_oil
as well.  As such it is impossible to get into this code
so it can be removed.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoeigrpd: On creation of socket ensure vrf exists
Donald Sharp [Wed, 25 Sep 2019 00:48:10 +0000 (20:48 -0400)]
eigrpd: On creation of socket ensure vrf exists

If the vrf does not exist, politely do not create
the socket.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoospf6d: Prevent use after free
Donald Sharp [Wed, 25 Sep 2019 00:40:08 +0000 (20:40 -0400)]
ospf6d: Prevent use after free

the for (ALL_LSDB...) macro was iterating over lsa,
when lsa had just been freed in these functions.
Remove the macro and make the adjustments saving lsa_next
before the free.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoisisd: circuit is derefed in every code path
Donald Sharp [Tue, 24 Sep 2019 23:34:39 +0000 (19:34 -0400)]
isisd: circuit is derefed in every code path

No need to check for circuit being null, we have
already de-refed it in every code path and
would have crashed before this point if it was.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #5036 from indigo423/issue/5035
Donatas Abraitis [Wed, 25 Sep 2019 07:02:31 +0000 (10:02 +0300)]
Merge pull request #5036 from indigo423/issue/5035

build: Fix Docker based Alpine build

5 years agozebra: fix memory leak 5055/head
Philippe Guibert [Wed, 25 Sep 2019 06:51:06 +0000 (08:51 +0200)]
zebra: fix memory leak

the if_lookup_by_name_per_ns keeps a lock on the node where the
searched ifp is stored. Then this node can not be freed even if
the ifp is removed from the node. Just add the missing unlock
(as for the if_lookup_by_index_per_ns lookup function)

Fixes: b8af3fbbafc8 ("zebra: fix detection of interface renames")
Signed-off-by: Thibaut Collet <thibaut.collet@6wind.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
5 years agolibs: add yang models for zebra and nexthop 5052/head
Mark Stapp [Tue, 24 Sep 2019 20:31:12 +0000 (16:31 -0400)]
libs: add yang models for zebra and nexthop

Add a yang model for some of zebra's functionality,
but the model is not integrated into the build at all yet. Also
add a model for nexthop and nexthop-group.

Signed-off-by: Mark Stapp <mjs@voltanet.io>
5 years agoMerge pull request #5050 from LabNConsulting/working/lb/tt-update
Donald Sharp [Tue, 24 Sep 2019 20:07:35 +0000 (16:07 -0400)]
Merge pull request #5050 from LabNConsulting/working/lb/tt-update

topotest: bgp_l3vpn_to_bgp_vrf allow for different interface output

5 years agoMerge pull request #4972 from mjstapp/fix_notif_installed
Donald Sharp [Tue, 24 Sep 2019 18:31:58 +0000 (14:31 -0400)]
Merge pull request #4972 from mjstapp/fix_notif_installed

zebra: route updates from dataplane need to check all nexthops

5 years agoMerge pull request #5040 from opensourcerouting/isisd-fix-validation-crash
Donald Sharp [Tue, 24 Sep 2019 18:14:56 +0000 (14:14 -0400)]
Merge pull request #5040 from opensourcerouting/isisd-fix-validation-crash

isisd: fix crash during candidate validation

5 years ago*: fix missing VRF autocompletions 5051/head
Igor Ryzhov [Tue, 24 Sep 2019 16:51:46 +0000 (19:51 +0300)]
*: fix missing VRF autocompletions

Current autocompletion works only for simple "vrf NAME" case.

This commit expands it also for the following cases:
- "nexthop-vrf NAME" in staticd
- usage of $varname in many daemons

All daemons are updated to use single varname "$vrf_name".

Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
5 years agoMerge pull request #4959 from pguibert6WIND/zebra_inform_layer
Russ White [Tue, 24 Sep 2019 15:46:13 +0000 (11:46 -0400)]
Merge pull request #4959 from pguibert6WIND/zebra_inform_layer

zebra: inform upper layer error when reading correct speed interface

5 years agoMerge pull request #4822 from vishaldhingra/route_agg
Russ White [Tue, 24 Sep 2019 15:40:01 +0000 (11:40 -0400)]
Merge pull request #4822 from vishaldhingra/route_agg

bgpd : route aggregation optimisation

5 years agoMerge pull request #5044 from chiragshah6/evpn_dev2
Russ White [Tue, 24 Sep 2019 14:45:56 +0000 (10:45 -0400)]
Merge pull request #5044 from chiragshah6/evpn_dev2

bgpd: fix advertise-svi-ip upon vni-svi up-down

5 years agoMerge pull request #5045 from satheeshkarra/pim_tos
Russ White [Tue, 24 Sep 2019 14:44:01 +0000 (10:44 -0400)]
Merge pull request #5045 from satheeshkarra/pim_tos

pimd: Mark Default TOS Values for PIM & IGMP Outgoing packets

5 years agoMerge pull request #4995 from opensourcerouting/ospf6d-iftype
Russ White [Tue, 24 Sep 2019 14:38:10 +0000 (10:38 -0400)]
Merge pull request #4995 from opensourcerouting/ospf6d-iftype

ospf6d: fix interface type handling

5 years agoMerge pull request #5046 from donaldsharp/sa_issues_found
Donatas Abraitis [Tue, 24 Sep 2019 14:22:46 +0000 (17:22 +0300)]
Merge pull request #5046 from donaldsharp/sa_issues_found

Sa issues found

5 years agobgpd: rmap_type is 8 bit but we have 9 bits of flags 5046/head
Donald Sharp [Tue, 24 Sep 2019 12:24:10 +0000 (08:24 -0400)]
bgpd: rmap_type is 8 bit but we have 9 bits of flags

The newly added PEER_RMAP_TYPE_AGGREGATE flag is setup to
be the 9th bit:

But the flag we are putting it into:
uint8_t rmap_type;

is 8 bits.  Adjust the size.

Found by Coverity SA Scan
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agopbrd: We should be looking for v4 and v6 nexthop types
Donald Sharp [Tue, 24 Sep 2019 12:20:34 +0000 (08:20 -0400)]
pbrd: We should be looking for v4 and v6 nexthop types

The code should be looking for both v4 and v6 nexthop types
instead of v4 nexthop types 2 times.

Found by Coverity SA
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #4912 from lucize/carescross
Donald Sharp [Tue, 24 Sep 2019 12:14:45 +0000 (08:14 -0400)]
Merge pull request #4912 from lucize/carescross

clippy: don't fail on CARES and libcap when clippy-only selected

5 years agoMerge pull request #5039 from opensourcerouting/isisd-yang-state-data
Donald Sharp [Tue, 24 Sep 2019 11:35:34 +0000 (07:35 -0400)]
Merge pull request #5039 from opensourcerouting/isisd-yang-state-data

isisd: start implementing yang-modeled state data

5 years agobgpd : route agg. with aspath attribute is consuming lot of cycles. 4822/head
vdhingra [Mon, 19 Aug 2019 07:50:56 +0000 (00:50 -0700)]
bgpd : route agg. with aspath attribute is consuming lot of cycles.

While configuring aggregate route prepare the hash table first,
then prepare the aggregated aspath value just like lcomm,
ecomm and standard community.

Signed-off-by: vishaldhingra<vdhingra@vmware.com>
5 years agobgpd : route agg. with ecomm attribute is consuming lot of cycles.
vdhingra [Mon, 19 Aug 2019 07:50:15 +0000 (00:50 -0700)]
bgpd : route agg. with ecomm attribute is consuming lot of cycles.

While configuring aggregate route prepare the hash table first,
then prepare the aggregated ecomm value and then do the
unique sort once for ecommunity.

Signed-off-by: vishaldhingra<vdhingra@vmware.com>
5 years agobgpd : route agg. with comm attr is consuming lot of cycles.
vdhingra [Mon, 19 Aug 2019 07:47:50 +0000 (00:47 -0700)]
bgpd : route agg. with comm attr is consuming lot of cycles.

While configuring aggregate route prepare the hash table
first, then prepare the aggregated standard comm value
and then do the unique sort once for standard community.

Signed-off-by: vishaldhingra<vdhingra@vmware.com>
5 years agobgpd : route agg. with lcomm attribute is consuming lot of cycles.
vdhingra [Mon, 12 Aug 2019 12:13:14 +0000 (05:13 -0700)]
bgpd : route agg. with lcomm attribute is consuming lot of cycles.

While configuring aggregate route prepare the hash table first,
then prepare the aggregated lcomm value and then do the unique
sort once for large community.

Signed-off-by: vishaldhingra <vdhingra@vmware.com>
5 years agoMerge pull request #5042 from opensourcerouting/vtysh-nb-cmds
Quentin Young [Tue, 24 Sep 2019 09:11:00 +0000 (05:11 -0400)]
Merge pull request #5042 from opensourcerouting/vtysh-nb-cmds

vtysh: add two commands from the northbound

5 years agoMerge pull request #5043 from donaldsharp/update_groups_and_coalesce_timer
Donatas Abraitis [Tue, 24 Sep 2019 07:07:40 +0000 (10:07 +0300)]
Merge pull request #5043 from donaldsharp/update_groups_and_coalesce_timer

Update groups and coalesce timer

5 years agopimd: Mark Default TOS Values for PIM & IGMP Outgoing packets 5045/head
Satheesh Kumar K [Tue, 24 Sep 2019 03:45:05 +0000 (20:45 -0700)]
pimd: Mark Default TOS Values for PIM & IGMP Outgoing packets

This will facilitate the Hardware to prefer control packets over
Normal Data packets while queuing, so that during congestion, the
chance of dropping control packet will be minimised.

Signed-off-by: Satheesh Kumar K <sathk@cumulusnetworks.com>
5 years agobgpd: fix advertise-svi-ip upon vni-svi up-down 5044/head
Chirag Shah [Thu, 12 Sep 2019 00:29:04 +0000 (17:29 -0700)]
bgpd: fix advertise-svi-ip upon vni-svi up-down

When a VxLAN interface comes up new vni up event is sent
to bgpd, which triggers bgpd to sync advertise-svi-macip
to zebra. At this point, vni is present but the associated
SVI may not be present.
When SVI comes up, vni add event sent to bgpd (with associated
vrf update). Bgpd already has vni present so
advertise-svi-macip is not synced to Zebra.

To fix,
When advertise-svi-macip flag is synced first time, cache it in
zebra context even though vni associated SVI is not present.
when SVI comes up, interface address add event triggers
new MAC-IP route add to bgpd.

Ticket:CM-26038
Reviewed By:CCR-9254
Testing Done:

Validated via running a sequence of steps in symmetric
routing topology.
- Enable advertise-svi-macip at l2vni level under bgp default
instance (afi/safi, l2vpn/evpn)
- Flap l2vni associated SVI interface.
- Check the output of 'show bgp l2vpn evpn route' command for
MAC-IP route of the SVI's (MAC and IP address).

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
5 years agoMerge pull request #5034 from opensourcerouting/rm-topotest-cruft
Donald Sharp [Mon, 23 Sep 2019 19:52:32 +0000 (15:52 -0400)]
Merge pull request #5034 from opensourcerouting/rm-topotest-cruft

tests: remove more topotest backward-compatibility cruft

5 years agodoc: Update bgp docs to have `show bgp update-group...` commands 5043/head
Donald Sharp [Mon, 23 Sep 2019 18:26:03 +0000 (14:26 -0400)]
doc: Update bgp docs to have `show bgp update-group...` commands

Update the user docs to have information about the `show bgp update-group..
group of commands.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #5037 from idryzhov/fix-vtysh-no-log-facility
Donatas Abraitis [Mon, 23 Sep 2019 18:23:21 +0000 (21:23 +0300)]
Merge pull request #5037 from idryzhov/fix-vtysh-no-log-facility

vtysh: fix "no log facility" command

5 years agobgpd: When displaying update group information include coalesce time
Donald Sharp [Mon, 23 Sep 2019 17:49:11 +0000 (13:49 -0400)]
bgpd: When displaying update group information include coalesce time

Include the coalesce time for the update group `show bgp update-group`
command as well as print out how long the coalesce timer waited
for on the timer pop.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agobgpd: Do not display 'X' as part of outgoing route-map name
Donald Sharp [Mon, 23 Sep 2019 17:46:55 +0000 (13:46 -0400)]
bgpd: Do not display 'X' as part of outgoing route-map name

The peer's outgoing routemap should not be displaying a 'X'
appended to the front of the name.  This will create
confusion.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #5021 from donaldsharp/neigh_proto
Renato Westphal [Mon, 23 Sep 2019 17:45:33 +0000 (14:45 -0300)]
Merge pull request #5021 from donaldsharp/neigh_proto

Neigh proto

5 years agoisisd: fix crash during candidate validation 5040/head
Renato Westphal [Mon, 23 Sep 2019 12:37:49 +0000 (09:37 -0300)]
isisd: fix crash during candidate validation

The "abort_if_not_found" parameter of nb_running_get_entry()
should be set to true only when this function is called during the
NB_EV_APPLY phase of a northbound callback. Failure to respect this
can lead to crashes when multiple configuration changes are being
committed at the same time.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agovtysh: fix "no log facility" command 5037/head
Igor Ryzhov [Mon, 23 Sep 2019 16:01:58 +0000 (19:01 +0300)]
vtysh: fix "no log facility" command

Actual command from the library accepts only supported facilities, not
any random word.

Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
5 years agoissue/5035: Remove warning for missing pytest during build phase and add libcap-dev... 5036/head
Ronny Trommer [Mon, 23 Sep 2019 14:39:29 +0000 (16:39 +0200)]
issue/5035: Remove warning for missing pytest during build phase and add libcap-dev dependency

Signed-off-by: Ronny Trommer <ronny@opennms.org>
5 years agoissue/5035: Install pytest with pip to get the Alpine packages built
Ronny Trommer [Mon, 23 Sep 2019 14:14:41 +0000 (16:14 +0200)]
issue/5035: Install pytest with pip to get the Alpine packages built

Signed-off-by: Ronny Trommer <ronny@opennms.org>
5 years agoisisd, yang: implement interface counters 5039/head
Renato Westphal [Mon, 23 Sep 2019 12:38:02 +0000 (09:38 -0300)]
isisd, yang: implement interface counters

The new "event-counters" grouping is almost a 1:1 copy of the same
grouping from the IETF IS-IS module, except for the "lan-dis-changes"
leaf which was skipped (more work needs to be done to support it).

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agovtysh: add the "show yang operational-data" command 5042/head
Renato Westphal [Mon, 23 Sep 2019 12:38:03 +0000 (09:38 -0300)]
vtysh: add the "show yang operational-data" command

The right way to implement this command in vtysh is the following:
* Send the command to each running FRR daemon;
* Collect the command output from each daemon;
* Parse the text outputs into libyang lyd_node structures. Then merge
  all these data trees into a single one. Finally, print the merged
  data trees to the standard output (libyang will take care of
  combining duplicate nodes as necessary).

What this commit does is to allow vtysh to send the "show yang
operational-data" command to a single daemon only (the last
parameter).  It's a quick workaround to allow us to write topotests
using YANG-modeled data until we do the real thing (full vtysh
northbound integration).

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agotests: remove more topotest backward-compatibility cruft 5034/head
Renato Westphal [Mon, 23 Sep 2019 12:37:55 +0000 (09:37 -0300)]
tests: remove more topotest backward-compatibility cruft

This isn't necessary anymore since topotest was integrated into
the FRR repo.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agoisisd, yang: implement read-only list of adjacencies
Renato Westphal [Mon, 23 Sep 2019 12:38:01 +0000 (09:38 -0300)]
isisd, yang: implement read-only list of adjacencies

The new "adjacency-state" grouping is almost a 1:1 copy of the
same grouping from the IETF IS-IS module, except for the "usage"
and "lastuptime" leafs that were skipped (more work needs to be
done to support those).

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agovtysh: add the "debug northbound" command
Renato Westphal [Mon, 23 Sep 2019 12:38:02 +0000 (09:38 -0300)]
vtysh: add the "debug northbound" command

This command is defined in the lib/northbound_cli.c file, which
is not being parsed by vtysh since most commands from there need
special handling in the context of vtysh. The "debug northbound"
command, however, can be made available to vtysh without problems.
Introduce a new DEFUNSH to do that.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agoyang: create new interface-config grouping in the frr-isisd module
Renato Westphal [Mon, 23 Sep 2019 12:37:57 +0000 (09:37 -0300)]
yang: create new interface-config grouping in the frr-isisd module

Do this to better separate config data from state data (coming in
the next commits) like done in the IETF IS-IS module.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agotopotest: bgp_l3vpn_to_bgp_vrf allow for different interface output 5050/head
Lou Berger [Sun, 22 Sep 2019 17:06:48 +0000 (13:06 -0400)]
topotest: bgp_l3vpn_to_bgp_vrf allow for different interface output

Signed-off-by: Lou Berger <lberger@labn.net>
5 years agoMerge pull request #5031 from donaldsharp/ip_protocol_doc_update
Donatas Abraitis [Sun, 22 Sep 2019 08:23:02 +0000 (11:23 +0300)]
Merge pull request #5031 from donaldsharp/ip_protocol_doc_update

user: Update `ip protocol...` command documentation

5 years agouser: Update `ip protocol...` command documentation 5031/head
Donald Sharp [Fri, 20 Sep 2019 19:16:36 +0000 (15:16 -0400)]
user: Update `ip protocol...` command documentation

Update documentation to reflect on the ground behavior.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #4893 from pguibert6WIND/interface_zapi_update
Donald Sharp [Fri, 20 Sep 2019 18:59:01 +0000 (14:59 -0400)]
Merge pull request #4893 from pguibert6WIND/interface_zapi_update

Interface zapi update

5 years agoconfigure: Update versioning
Donald Sharp [Fri, 20 Sep 2019 18:32:02 +0000 (14:32 -0400)]
configure: Update versioning

We have pulled the 7.2 branch let's update the master branch
to say it's 7.3

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #4529 from donaldsharp/vrf_conversions
Renato Westphal [Fri, 20 Sep 2019 17:56:44 +0000 (14:56 -0300)]
Merge pull request #4529 from donaldsharp/vrf_conversions

Vrf conversions

5 years agoMerge pull request #5024 from donaldsharp/send_that_error_bgp
Martin Winter [Fri, 20 Sep 2019 13:58:51 +0000 (15:58 +0200)]
Merge pull request #5024 from donaldsharp/send_that_error_bgp

bgpd: Invalid NH's should send an apropriate reason code

5 years agobgpd: Invalid NH's should send an apropriate reason code 5024/head
Donald Sharp [Fri, 20 Sep 2019 10:41:02 +0000 (06:41 -0400)]
bgpd: Invalid NH's should send an apropriate reason code

RFC 4271 sec 6.3 p33, In the case of a BGP_NEXTHOP attribute with an
incorrect value, FRR is supposed to send a notification
and include 'Corresponding type, length and value of the NEXT_HOP
attribute in the notification data.

Fixes: #4997
Signed-off-by: Nikos <ntriantafillis@gmail.com>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #5019 from karamalla0406/vrf_name_json
Donald Sharp [Thu, 19 Sep 2019 23:14:06 +0000 (19:14 -0400)]
Merge pull request #5019 from karamalla0406/vrf_name_json

zebra: Added vrfname to route prefix dictionary

5 years agozebra: Added vrfname to route prefix dictionary 5019/head
Kishore Aramalla [Thu, 19 Sep 2019 21:28:11 +0000 (14:28 -0700)]
zebra: Added vrfname to route prefix dictionary

Route prefix dictionary contains vrf ID only.
Added vrfName to the route prefix dictionary.

Signed-off-by: Kishore Aramalla <karamalla@vmware.com>
5 years agozebra: Send RTPROT_ZEBRA for netlink messages missing this data 5021/head
Donald Sharp [Thu, 19 Sep 2019 20:05:39 +0000 (16:05 -0400)]
zebra: Send RTPROT_ZEBRA for netlink messages missing this data

Update neighbor entries and rule entries to have the RTPROT_ZEBRA
protocol value.  So we can tell where things come from.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoinclude: update include/linux
Donald Sharp [Thu, 19 Sep 2019 19:39:13 +0000 (15:39 -0400)]
include: update include/linux

Newer versions of the linux kernel have made their way into the wild.
Update some headers.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
5 years agoMerge pull request #4875 from vishaldhingra/blackhole_type
Donatas Abraitis [Thu, 19 Sep 2019 17:41:00 +0000 (20:41 +0300)]
Merge pull request #4875 from vishaldhingra/blackhole_type

Zebra: Rectifying the log messages.

5 years agoZebra: Rectifying the log messages. 4875/head
vdhingra [Fri, 23 Aug 2019 12:28:43 +0000 (05:28 -0700)]
Zebra: Rectifying the log messages.

This change addresses the following :
1. Ensures zlog_debug should be under DEBUG macro check
2. Ensures zlog_err and zlog_warn wherever applicable.
3. Removed few posivite logs from fpm handling, whose frequency is high.

Signed-off-by: vishaldhingra <vdhingra@vmware.com>
5 years agoMerge pull request #4731 from mjstapp/fix_redist_update
Donald Sharp [Wed, 18 Sep 2019 23:43:43 +0000 (19:43 -0400)]
Merge pull request #4731 from mjstapp/fix_redist_update

zebra: redistribute deletes when updating selected route

5 years agoMerge pull request #4990 from qlyoung/yang-iface-operdata
Renato Westphal [Wed, 18 Sep 2019 22:41:27 +0000 (19:41 -0300)]
Merge pull request #4990 from qlyoung/yang-iface-operdata

lib: add oper data cbs for ifaces

5 years agoMerge pull request #5004 from idryzhov/fix-vtysh-prefix-list
Donald Sharp [Wed, 18 Sep 2019 21:38:00 +0000 (17:38 -0400)]
Merge pull request #5004 from idryzhov/fix-vtysh-prefix-list

vtysh: fix multiple "no ip/ipv6 prefix-list sequence-number" lines in running-config

5 years agolib: add oper data cbs for ifaces 4990/head
Quentin Young [Thu, 12 Sep 2019 21:35:04 +0000 (21:35 +0000)]
lib: add oper data cbs for ifaces

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
5 years agoMerge pull request #5008 from opensourcerouting/nb-improvements
Quentin Young [Wed, 18 Sep 2019 19:42:06 +0000 (15:42 -0400)]
Merge pull request #5008 from opensourcerouting/nb-improvements

northbound fixes and enhancements

5 years agolib: add an exception in the northbound for operational data callbacks 5008/head
Renato Westphal [Wed, 18 Sep 2019 13:55:55 +0000 (10:55 -0300)]
lib: add an exception in the northbound for operational data callbacks

During initialization, the northbound detects if any required
callback is missing (fatal error) or if any unneeded callback is
present (warning).

There are three callbacks, however, that should require special
handling: get_next(), get_keys() and lookup_entry().

These callbacks are normally unneeded for configuration lists. But,
if a configuration list is augmented with new state nodes by another
module, then the three callbacks mentioned above become required. In
this case, never log a warning when these callbacks are implemented
when they are not needed, since this depends on context (e.g. some
daemons might augment "frr-interface" while others don't).

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agolib: fix ordering issues in the northbound
Renato Westphal [Tue, 27 Aug 2019 01:31:21 +0000 (22:31 -0300)]
lib: fix ordering issues in the northbound

When a configuration transaction is being performed, the northbound
uses a red-black tree to store the configuration changes that need to
be processed. The problem is that we were sorting the configuration
changes based on their XPaths (and callback priorities). This means
the original order of the changes wasn't being respected, which is
a problem for lists that use the "ordered-by user" statement. To
fix this, add a new "seq" member to the "nb_config_cb" structure
so that we can preserve the order of the configuration changes as
told by libyang.

Since none of the FRR modules use "ordered-by user" lists so far,
no daemon was affected by this problem.

Reported-by: Martin Winter <mwinter@opensourcerouting.org>
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agolib: fix corner case when iterating over YANG-modeled operational data
Renato Westphal [Tue, 17 Sep 2019 01:57:10 +0000 (22:57 -0300)]
lib: fix corner case when iterating over YANG-modeled operational data

When updating the XPath during the iteration of operational data,
include the namespace of the augmenting module when necessary.

Reported-by: Quentin Young <qlyoung@cumulusnetworks.com>
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agoRevert "lib: introduce a read-write lock for northbound configurations"
Renato Westphal [Tue, 17 Sep 2019 00:51:11 +0000 (21:51 -0300)]
Revert "lib: introduce a read-write lock for northbound configurations"

Adding a lock to protect the global running configuration doesn't
help much since the FRR daemons are not prepared to process
configuration changes in a pthread that is not the main one (a
whole lot of new protections would be necessary to prevent race
conditions).

This means the lock added by commit 83981138 only adds more
complexity for no benefit. Remove it now to simplify the code.

All northbound clients, including the gRPC one, should either run
in the main pthread or use synchronization primitives to process
configuration transactions in the main pthread.

This reverts commit 83981138fe8c1e0a40b8dede74eca65449dda5de.

5 years agolib: introduce new 'pre_validate' northbound callback
Renato Westphal [Thu, 12 Sep 2019 22:07:54 +0000 (19:07 -0300)]
lib: introduce new 'pre_validate' northbound callback

This callback can be used to validate subsections of the
configuration being committed before validating the configuration
changes themselves. It's useful to perform more complex validations
that depend on the relationship between multiple nodes.

Only YANG-level validation (performed by libyang) and the
NB_EV_VALIDATE validation (that can be used to validate individual
configuration changes) proved to be insufficient in some cases.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agolib: add yang wrappers for IP prefixes
Renato Westphal [Wed, 7 Aug 2019 15:24:43 +0000 (12:24 -0300)]
lib: add yang wrappers for IP prefixes

We had wrappers for IPv4 and IPv6 prefixes, but not for IP (version
agnostic) prefixes. This commit addresses this issue.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
5 years agoMerge pull request #5006 from manuhalo/fix_ftn_uninstall
Donald Sharp [Wed, 18 Sep 2019 16:09:08 +0000 (12:09 -0400)]
Merge pull request #5006 from manuhalo/fix_ftn_uninstall

zebra: fix mpls ftn uninstall

5 years agozebra: fix mpls ftn uninstall 5006/head
Emanuele Di Pascale [Wed, 18 Sep 2019 14:01:36 +0000 (16:01 +0200)]
zebra: fix mpls ftn uninstall

when a client disconnects, we iterate over the routing table to
remove any label that originated from that client. However we
were erroneously passing the route type to the function, while
it was expecting the lsp type. As a result, for example, killing
ldpd would not remove the ldp labels from the routes.

Kudos to @rwestphal for pointing me to the source of the issue.

Signed-off-by: Emanuele Di Pascale <emanuele@voltanet.io>
5 years agoMerge pull request #5003 from manuhalo/fix_bgp_bmp_oot_build
Renato Westphal [Wed, 18 Sep 2019 13:59:43 +0000 (10:59 -0300)]
Merge pull request #5003 from manuhalo/fix_bgp_bmp_oot_build

bgpd: fix include path for bgp_bmp_clippy.c

5 years agovtysh: fix multiple "no ip/ipv6 prefix-list sequence-number" lines in running-config 5004/head
Igor Ryzhov [Wed, 18 Sep 2019 11:19:55 +0000 (14:19 +0300)]
vtysh: fix multiple "no ip/ipv6 prefix-list sequence-number" lines in running-config

Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
5 years agoMerge pull request #4984 from Alexis-ROYER/pim-doc#4965
Donald Sharp [Wed, 18 Sep 2019 10:40:09 +0000 (06:40 -0400)]
Merge pull request #4984 from Alexis-ROYER/pim-doc#4965

[PIM] Confusing documentation for `ip pim sm` command (#4965)

5 years agobgpd: fix include path for bgp_bmp_clippy.c 5003/head
Emanuele Di Pascale [Wed, 18 Sep 2019 09:49:24 +0000 (11:49 +0200)]
bgpd: fix include path for bgp_bmp_clippy.c

not using a relative path was breaking out-of-tree compilation

Signed-off-by: Emanuele Di Pascale <emanuele@voltanet.io>
5 years agodoc/user: Confusing documentation for `ip pim sm` 4984/head
Alexis Royer [Mon, 16 Sep 2019 09:33:50 +0000 (10:33 +0100)]
doc/user: Confusing documentation for `ip pim sm`

Modification of the documentation for the `ip pim sm` command in order to avoid the understanding of an incompatibility with IGMP on the interface.

Signed-off-by: Alexis Royer <alexis.royer@gmail.com>
5 years agoMerge pull request #4966 from Orange-OpenSource/isis-TE
Renato Westphal [Tue, 17 Sep 2019 23:49:52 +0000 (20:49 -0300)]
Merge pull request #4966 from Orange-OpenSource/isis-TE

isisd: Update TLVs processing for TE, RI & SR

5 years agoMerge pull request #5001 from qlyoung/fix-frr-pthread-reachable-blocks
Russ White [Tue, 17 Sep 2019 23:21:16 +0000 (19:21 -0400)]
Merge pull request #5001 from qlyoung/fix-frr-pthread-reachable-blocks

lib: clean up frr_pthread structs at exit

5 years agoMerge pull request #4996 from opensourcerouting/build-tags
Donald Sharp [Tue, 17 Sep 2019 23:07:39 +0000 (19:07 -0400)]
Merge pull request #4996 from opensourcerouting/build-tags

build: fix "make tags"

5 years agozebra: inform upper layer error when reading correct speed interface 4959/head
Julien Floret [Tue, 6 Aug 2019 09:15:05 +0000 (11:15 +0200)]
zebra: inform upper layer error when reading correct speed interface

speed interface is done 15 seconds after interface creation. during that
time, the vrf or the interface may have disappeared. to protect this,
return an error in case it is not possible to create a vrf socket or it
is not possible to get speed of an interface because of a missing
device.

Signed-off-by: Julien Floret <julien.floret@6wind.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
5 years agolib: clean up frr_pthread structs at exit 5001/head
Quentin Young [Tue, 17 Sep 2019 16:12:28 +0000 (16:12 +0000)]
lib: clean up frr_pthread structs at exit

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
5 years agoisisd: Update TLVs processing for TE, RI & SR 4966/head
Olivier Dugeon [Fri, 26 Jul 2019 14:07:39 +0000 (16:07 +0200)]
isisd: Update TLVs processing for TE, RI & SR

In preparation to Segment Routing:
 - Update the management of Traffic Engineering subTLVs to the new tlvs parser
 - Add Router Capability TLV 242 as per RFC 4971 & 7981
 - Add Segment Routing subTLVs as per draft-isis-segment-routing-extension-25

Modified files:
 - isis_tlvs.h: add new structure to manage TE subTLVs, TLV 242 & SR subTLVs
 - isis_tlvs.c: add new functions (pack, copy, free, unpack & print) to process
   TE subTLVs, Router Capability TLV and SR subTLVs
 - isis_circuit.[c,h] & isis_lsp.[c,h]: update to new subTLVs & TLV processing
 - isis_te.[c,h]: remove all old TE structures and managment functions,
   and add hook call to set local and remote IP addresses as wellas update TE
   parameters
 - isis_zebra.[c,h]: add hook call when new interface is up
 - isis_mt.[c,h], isis_pdu.c & isis_northbound.c: adjust to new TE subTLVs
 - tests/isisd/test_fuzz_isis_tlv_tests.h.gz: adapte fuuz tests to new parser

Signed-off-by: Olivier Dugeon <olivier.dugeon@orange.com>