]> git.proxmox.com Git - mirror_frr.git/log
mirror_frr.git
4 years agoMerge pull request #5060 from chiragshah6/evpn_dev2
Sri Mohana Singamsetty [Mon, 30 Sep 2019 16:12:51 +0000 (09:12 -0700)]
Merge pull request #5060 from chiragshah6/evpn_dev2

zebra: fix evpn prefix-routes-only for default vrf

4 years agoMerge pull request #5009 from donaldsharp/interface_deletion
Russ White [Mon, 30 Sep 2019 11:46:19 +0000 (07:46 -0400)]
Merge pull request #5009 from donaldsharp/interface_deletion

lib, zebra: Allow for interface deletion when kernel event happens

4 years agoMerge pull request #5066 from ak503/libfrr_crash
Donald Sharp [Thu, 26 Sep 2019 23:32:41 +0000 (19:32 -0400)]
Merge pull request #5066 from ak503/libfrr_crash

zebra: if_is_loopback_or_vrf crash if if_lookup_by_index return NULL

4 years agoMerge pull request #5067 from ton31337/fix/no_aggregate-address_command_for_route-map
Donald Sharp [Thu, 26 Sep 2019 21:40:41 +0000 (17:40 -0400)]
Merge pull request #5067 from ton31337/fix/no_aggregate-address_command_for_route-map

bgpd: Accept no aggregate-address <IP> route-map <RMAP> commands

4 years agoMerge pull request #5070 from ton31337/fix/aggregate-address_for_ipv6_summary-only_mi...
Donald Sharp [Thu, 26 Sep 2019 21:39:09 +0000 (17:39 -0400)]
Merge pull request #5070 from ton31337/fix/aggregate-address_for_ipv6_summary-only_missreading

bgpd: aggregate-address X:X::X:X/M summary-only was missreading config

4 years agoMerge pull request #5068 from donaldsharp/summary_only_is_not_a_route_map
Donatas Abraitis [Thu, 26 Sep 2019 18:53:50 +0000 (21:53 +0300)]
Merge pull request #5068 from donaldsharp/summary_only_is_not_a_route_map

bgpd: aggregate-address A.B.C.D A.B.C.D summary-only was missreading …

4 years agobgpd: aggregate-address X:X::X:X/M summary-only was missreading config
Donatas Abraitis [Thu, 26 Sep 2019 18:47:55 +0000 (21:47 +0300)]
bgpd: aggregate-address X:X::X:X/M summary-only was missreading config

Entering:
aggregate-address 2a02:4780::/48 summary-only

Will transform this to:
aggregate-address 2a02:4780::/48 summary-only route-map summary-only

This patch fixes that.

Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
4 years agobgpd: aggregate-address A.B.C.D A.B.C.D summary-only was missreading config
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>
4 years agobgpd: Accept no aggregate-address <IP> route-map <RMAP> commands
Donatas Abraitis [Thu, 26 Sep 2019 14:35:25 +0000 (17:35 +0300)]
bgpd: Accept no aggregate-address <IP> route-map <RMAP> commands

Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
4 years agozebra: if_is_loopback_or_vrf crash if if_lookup_by_index return NULL
dturlupov [Thu, 26 Sep 2019 11:21:30 +0000 (14:21 +0300)]
zebra: if_is_loopback_or_vrf crash if if_lookup_by_index return NULL

Function if_lookup_by_index() can return NULL, but in if_is_loopback_or_vrf() we don't chech NULL and get next:

Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(zlog_backtrace_sigsafe+0x48) [0x7fb5f704cf18]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(zlog_signal+0x378) [0x7fb5f704d728]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(+0x6b495) [0x7fb5f706b495]
Sep 2 07:44:34 XXX zebra[4616]: /lib64/libpthread.so.0(+0x123b0) [0x7fb5f6d573b0]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(if_is_loopback+0) [0x7fb5f7045160]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(if_is_loopback_or_vrf+0x11) [0x7fb5f7045191]
Sep 2 07:44:34 XXX zebra[4616]: /usr/sbin/zebra() [0x43b26d]
Sep 2 07:44:34 XXX zebra[4616]: /usr/sbin/zebra() [0x43db6f]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(work_queue_run+0xc8) [0x7fb5f7080de8]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(thread_call+0x47) [0x7fb5f7077d27]
Sep 2 07:44:34 XXX zebra[4616]: /usr/lib64/libfrr.so.0(frr_run+0xd8) [0x7fb5f704b448]

Signed-off-by: Dmitrii Turlupov dturlupov@factor-ts.ru
4 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

4 years agotests: Add bgp route-map test cases
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>
4 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>
4 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>
4 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>
4 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>
4 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>
4 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>
4 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

4 years agobgpd: stop sending nexthop set by "route-map in" to eBGP peers
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>
4 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

4 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

4 years agozebra: fix evpn prefix-routes-only for default vrf
Chirag Shah [Wed, 25 Sep 2019 18:48:45 +0000 (11:48 -0700)]
zebra: fix evpn prefix-routes-only for default vrf

asymmetric routing default vrf vni configuration
is not displayed as part of running-config.

Ticket:CM-26470
Reviewed By:
Testing Done:

T11# config t
T11(config)# vni 4004 prefix-routes-only
T11(config)# end

Before:

T11# show running-config
...
vni 4004
...

After:

T11# show running-config
...
vni 4004 prefix-routes-only
...

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
4 years agozebra: handle config write for dataplane values
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>
4 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

4 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

4 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

4 years agopimd: up->channel_oil cannot be NULL
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>
4 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>
4 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>
4 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>
4 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

4 years agozebra: fix memory leak
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>
4 years agolibs: add yang models for zebra and nexthop
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>
4 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

4 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

4 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

4 years ago*: fix missing VRF autocompletions
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>
4 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

4 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

4 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

4 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

4 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

4 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

4 years agobgpd: rmap_type is 8 bit but we have 9 bits of flags
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>
4 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>
4 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

4 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

4 years agobgpd : route agg. with aspath attribute is consuming lot of cycles.
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>
4 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>
4 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>
4 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>
4 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

4 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

4 years agopimd: Mark Default TOS Values for PIM & IGMP Outgoing packets
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>
4 years agobgpd: fix advertise-svi-ip upon vni-svi up-down
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>
4 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

4 years agodoc: Update bgp docs to have `show bgp update-group...` commands
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>
4 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

4 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>
4 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>
4 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

4 years agoisisd: fix crash during candidate validation
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>
4 years agovtysh: fix "no log facility" command
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>
4 years agoissue/5035: Remove warning for missing pytest during build phase and add libcap-dev...
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>
4 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>
4 years agoisisd, yang: implement interface counters
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>
4 years agovtysh: add the "show yang operational-data" command
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>
4 years agotests: remove more topotest backward-compatibility cruft
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>
4 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>
4 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>
4 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>
4 years agotopotest: bgp_l3vpn_to_bgp_vrf allow for different interface output
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>
4 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

4 years agouser: Update `ip protocol...` command documentation
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>
4 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

4 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>
4 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

4 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

4 years agobgpd: Invalid NH's should send an apropriate reason code
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>
4 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

4 years agozebra: Added vrfname to route prefix dictionary
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>
4 years agozebra: Send RTPROT_ZEBRA for netlink messages missing this data
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>
4 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>
4 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.

4 years agolib: delete interface if you can in upper level protocol
Donald Sharp [Thu, 19 Sep 2019 13:59:00 +0000 (09:59 -0400)]
lib: delete interface if you can in upper level protocol

In an upper level protocol, delete the interface on notification
about deletion.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years ago*: Convert zapi->interface_delete to ifp callback
Donald Sharp [Thu, 19 Sep 2019 13:40:57 +0000 (09:40 -0400)]
*: Convert zapi->interface_delete to ifp callback

Convert the callback of the interface_delete to the new
ifp callback.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years ago*: Convert interface_down to interface down callback
Donald Sharp [Thu, 19 Sep 2019 03:55:34 +0000 (23:55 -0400)]
*: Convert interface_down to interface down callback

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years ago*: Convert from ->interface_up to the interface callback
Donald Sharp [Thu, 19 Sep 2019 03:07:44 +0000 (23:07 -0400)]
*: Convert from ->interface_up to the interface callback

For all the places we have a zclient->interface_up convert
them to use the interface ifp_up callback instead.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years ago*: Switch all zclient->interface_add to interface create callback
Donald Sharp [Thu, 19 Sep 2019 02:26:55 +0000 (22:26 -0400)]
*: Switch all zclient->interface_add to interface create callback

Switch the zclient->interface_add functionality to have everyone
use the interface create callback in lib/if.c

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years ago*: Add infrastructure to support zapi interface callbacks
Donald Sharp [Wed, 18 Sep 2019 20:20:04 +0000 (16:20 -0400)]
*: Add infrastructure to support zapi interface callbacks

Start the conversion to allow zapi interface callbacks to be
controlled like vrf creation/destruction/change callbacks.

This will allow us to consolidate control into the interface.c
instead of having each daemon read the stream and react accordingly.
This will hopefully reduce a bunch of cut-n-paste stuff

Create 4 new callback functions that will be controlled by
lib/if.c

create -> A upper level protocol receives an interface creation event
The ifp is brand spanking newly created in the system.
up -> A upper level protocol receives a interface up event
This means the interface is up and ready to go.
down -> A upper level protocol receives a interface down
destroy -> A upper level protocol receives a destroy event
This means to delete the pointers associated with it.

At this point this is just boilerplate setup for future commits.
There is no new functionality.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years agolib, zebra: Allow for interface deletion when kernel event happens
Donald Sharp [Wed, 18 Sep 2019 17:42:46 +0000 (13:42 -0400)]
lib, zebra: Allow for interface deletion when kernel event happens

When zebra gets a callback from the kernel that an interface has
actually been deleted *and* the end users has not configured
the interface, then allow for deletion of the interface from zebra.

This is especially important in a docker environment where containers
and their veth interfaces are treated as ephermeal.  FRR can quickly
have an inordinate amount of interfaces sitting around that are
not in the kernel and we have no way to clean them up either.

My expectation is that this will cause a second order crashes
in upper level protocols, but I am not sure how to catch these
and fix them now ( suggestions welcome ).  There are too many
use patterns and order based events that I cannot know for certain
that we are going to see any at all, until someone sees this problem
as a crash :(  I do not recommend that this be put in the current
stabilization branch and allow this to soak in master for some time
first.

Testing:

sharpd@donna ~/frr4> sudo ip link add vethdj type veth peer name vethjd
sharpd@donna ~/frr4> sudo ip link add vethaa type veth peer name vethab
sharpd@donna ~/frr4> sudo vtysh -c "show int brief"
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
dummy1          down    default
enp0s3          up      default         10.0.2.15/24
enp0s8          up      default         192.168.209.2/24
enp0s9          up      default         192.168.210.2/24
enp0s10         up      default         192.168.212.4/24
lo              up      default         10.22.89.38/32
vethaa          down    default
vethab          down    default
vethdj          down    default
vethjd          down    default
virbr0          up      default         192.168.122.1/24
virbr0-nic      down    default

sharpd@donna ~/frr4> sudo ip link set vethaa up
sharpd@donna ~/frr4> sudo ip link set vethab up
sharpd@donna ~/frr4> sudo ip link del vethdj
sharpd@donna ~/frr4> sudo vtysh -c "show int brief"
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
dummy1          down    default
enp0s3          up      default         10.0.2.15/24
enp0s8          up      default         192.168.209.2/24
enp0s9          up      default         192.168.210.2/24
enp0s10         up      default         192.168.212.4/24
lo              up      default         10.22.89.38/32
vethaa          up      default
vethab          up      default
virbr0          up      default         192.168.122.1/24
virbr0-nic      down    default

sharpd@donna ~/frr4> sudo ip link del vethaa
sharpd@donna ~/frr4> sudo vtysh -c "show int brief"
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
dummy1          down    default
enp0s3          up      default         10.0.2.15/24
enp0s8          up      default         192.168.209.2/24
enp0s9          up      default         192.168.210.2/24
enp0s10         up      default         192.168.212.4/24
lo              up      default         10.22.89.38/32
virbr0          up      default         192.168.122.1/24
virbr0-nic      down    default

sharpd@donna ~/frr4> sudo ip link add vethaa type veth peer name vethab
sharpd@donna ~/frr4> sudo vtysh -c "show int brief"
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
dummy1          down    default
enp0s3          up      default         10.0.2.15/24
enp0s8          up      default         192.168.209.2/24
enp0s9          up      default         192.168.210.2/24
enp0s10         up      default         192.168.212.4/24
lo              up      default         10.22.89.38/32
vethaa          down    default
vethab          down    default
virbr0          up      default         192.168.122.1/24
virbr0-nic      down    default

sharpd@donna ~/frr4> sudo vtysh -c "show run"
Building configuration...

Current configuration:
!
frr version 7.2-dev
frr defaults datacenter
hostname donna.cumulusnetworks.com
log stdout
no ipv6 forwarding
!
ip route 192.168.3.0/24 192.168.209.1
ip route 192.168.4.0/24 blackhole
ip route 192.168.5.0/24 192.168.209.1
ip route 192.168.6.0/24 192.168.209.1
ip route 192.168.7.0/24 99.99.99.99 nexthop-vrf EVA
ip route 192.168.8.0/24 192.168.209.1
ip route 4.5.6.7/32 12.13.14.15
!
interface dummy1
 ip address 12.13.14.15/32
!
interface vethaa
 description FROO
!
line vty
!
end
sharpd@donna ~/frr4> sudo ip link del vethaa
sharpd@donna ~/frr4> sudo vtysh -c "show int brief"
Interface       Status  VRF             Addresses
---------       ------  ---             ---------
dummy1          down    default
enp0s3          up      default         10.0.2.15/24
enp0s8          up      default         192.168.209.2/24
enp0s9          up      default         192.168.210.2/24
enp0s10         up      default         192.168.212.4/24
lo              up      default         10.22.89.38/32
vethaa          down    default
virbr0          up      default         192.168.122.1/24
virbr0-nic      down    default

sharpd@donna ~/frr4> sudo vtysh -c "show run"
Building configuration...

Current configuration:
!
frr version 7.2-dev
frr defaults datacenter
hostname donna.cumulusnetworks.com
log stdout
no ipv6 forwarding
!
ip route 192.168.3.0/24 192.168.209.1
ip route 192.168.4.0/24 blackhole
ip route 192.168.5.0/24 192.168.209.1
ip route 192.168.6.0/24 192.168.209.1
ip route 192.168.7.0/24 99.99.99.99 nexthop-vrf EVA
ip route 192.168.8.0/24 192.168.209.1
ip route 4.5.6.7/32 12.13.14.15
!
interface dummy1
 ip address 12.13.14.15/32
!
interface vethaa
 description FROO
!
line vty
!
end

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years agozebra: Saving interface description makes no sense on deletion
Donald Sharp [Thu, 19 Sep 2019 17:27:04 +0000 (13:27 -0400)]
zebra: Saving interface description makes no sense on deletion

We were storing the interface description irrelevant of whether
or not it was a newlink or dellink.  This makes no sense.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
4 years agoZebra: Rectifying the log messages.
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>
4 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

4 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

4 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

4 years agolib: add oper data cbs for ifaces
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>
4 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

4 years agolib: add an exception in the northbound for operational data callbacks
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>