]> git.proxmox.com Git - mirror_frr.git/log
mirror_frr.git
7 years agoMerge pull request #194 from opensourcerouting/coverity-lib-2
Donald Sharp [Fri, 10 Feb 2017 16:06:37 +0000 (11:06 -0500)]
Merge pull request #194 from opensourcerouting/coverity-lib-2

more lib/ coverity fixes

7 years agolib: rework vty_use_backup_config()
David Lamparter [Fri, 10 Feb 2017 14:04:40 +0000 (15:04 +0100)]
lib: rework vty_use_backup_config()

Like config_write(), this should use rename(), even though atomicity is
not a real issue here.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: fix remaining coverity issues
David Lamparter [Fri, 10 Feb 2017 14:04:06 +0000 (15:04 +0100)]
lib: fix remaining coverity issues

Reported-by: Coverity
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge pull request #192 from donaldsharp/snmp1
David Lamparter [Fri, 10 Feb 2017 12:12:45 +0000 (13:12 +0100)]
Merge pull request #192 from donaldsharp/snmp1

debian: Fix to not auto-install snmp MIB

7 years agoMerge remote-tracking branch 'origin/stable/2.0'
Donald Sharp [Thu, 9 Feb 2017 17:13:49 +0000 (12:13 -0500)]
Merge remote-tracking branch 'origin/stable/2.0'

7 years agoMerge pull request #191 from opensourcerouting/ospfclient-incl
Donald Sharp [Thu, 9 Feb 2017 17:12:17 +0000 (12:12 -0500)]
Merge pull request #191 from opensourcerouting/ospfclient-incl

[stable] ospfclient: #include sources

7 years agodebian: Fix to not auto-install snmp MIB
Donald Sharp [Thu, 9 Feb 2017 15:37:00 +0000 (10:37 -0500)]
debian: Fix to not auto-install snmp MIB

Only install the snmp MIB for zebra if we
are building the debian package with SNMP.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoospfclient: #include sources
David Lamparter [Thu, 9 Feb 2017 11:59:44 +0000 (12:59 +0100)]
ospfclient: #include sources

Pulling in source files from another directory breaks automake's
distclean target, and there seems to be no good fix for this...
(particularly since we need -fPIC build for a DSO here, while ospfd
compiles for an executable...)

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge remote-tracking branch 'origin/stable/2.0'
Donald Sharp [Thu, 9 Feb 2017 14:53:46 +0000 (09:53 -0500)]
Merge remote-tracking branch 'origin/stable/2.0'

7 years agoMerge pull request #189 from opensourcerouting/config-write-sync
Donald Sharp [Thu, 9 Feb 2017 14:52:58 +0000 (09:52 -0500)]
Merge pull request #189 from opensourcerouting/config-write-sync

lib: use fsync() for config writes, plug fd leak

7 years agoMerge pull request #164 from opensourcerouting/pytest2
Donald Sharp [Thu, 9 Feb 2017 14:38:37 +0000 (09:38 -0500)]
Merge pull request #164 from opensourcerouting/pytest2

Rework test runners to use pytest

7 years agoMerge pull request #190 from opensourcerouting/config-write-sync-stable
Donald Sharp [Thu, 9 Feb 2017 14:26:58 +0000 (09:26 -0500)]
Merge pull request #190 from opensourcerouting/config-write-sync-stable

[stable] lib: use fsync() for config writes, plug fd leak

7 years agolib: use fsync() for config writes, plug fd leak
David Lamparter [Wed, 8 Feb 2017 15:14:10 +0000 (16:14 +0100)]
lib: use fsync() for config writes, plug fd leak

sync() has a HUGE impact on systems that perform actual I/O, i.e. real
servers...

Also, we were leaking a fd on each config write ever since
c5e69a0 "lib/vty: add separate output fd support to VTYs"
(by myself :( ...)

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge branch 'frr/pull/186' (pimd register length)
David Lamparter [Thu, 9 Feb 2017 12:46:44 +0000 (13:46 +0100)]
Merge branch 'frr/pull/186' (pimd register length)

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: use fsync() for config writes, plug fd leak
David Lamparter [Wed, 8 Feb 2017 15:14:10 +0000 (16:14 +0100)]
lib: use fsync() for config writes, plug fd leak

sync() has a HUGE impact on systems that perform actual I/O, i.e. real
servers...

Also, we were leaking a fd on each config write ever since
c5e69a0 "lib/vty: add separate output fd support to VTYs"
(by myself :( ...)

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge pull request #185 from opensourcerouting/coverity-lib-1
Donald Sharp [Wed, 8 Feb 2017 18:44:53 +0000 (13:44 -0500)]
Merge pull request #185 from opensourcerouting/coverity-lib-1

Coverity foo

7 years agotests: add pytest testrunners
Christian Franke [Fri, 3 Feb 2017 15:58:58 +0000 (16:58 +0100)]
tests: add pytest testrunners

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
7 years agotests: reorganize tests hierarchically
Christian Franke [Fri, 3 Feb 2017 15:58:11 +0000 (16:58 +0100)]
tests: reorganize tests hierarchically

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
7 years agotests: remove dejagnu
Christian Franke [Fri, 3 Feb 2017 15:53:47 +0000 (16:53 +0100)]
tests: remove dejagnu

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
7 years agolib: csv: plug memleaks
David Lamparter [Wed, 8 Feb 2017 14:28:01 +0000 (15:28 +0100)]
lib: csv: plug memleaks

Reported-by: Coverity Scan
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: fix some coverity NULL check warnings
David Lamparter [Wed, 8 Feb 2017 14:14:23 +0000 (15:14 +0100)]
lib: fix some coverity NULL check warnings

Reported-by: Coverity Scan
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: remove unused str2in6_addr()
David Lamparter [Wed, 8 Feb 2017 14:19:09 +0000 (15:19 +0100)]
lib: remove unused str2in6_addr()

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: remove unused cmd_concat_strvec()
David Lamparter [Wed, 8 Feb 2017 14:13:58 +0000 (15:13 +0100)]
lib: remove unused cmd_concat_strvec()

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge pull request #182 from opensourcerouting/ldpd-coverity-scan
Donald Sharp [Wed, 8 Feb 2017 15:25:27 +0000 (10:25 -0500)]
Merge pull request #182 from opensourcerouting/ldpd-coverity-scan

ldpd: fix issues reported by coverity scan

7 years agoMerge pull request #181 from opensourcerouting/zebra-static-uninstall-mpls
Donald Sharp [Wed, 8 Feb 2017 15:25:11 +0000 (10:25 -0500)]
Merge pull request #181 from opensourcerouting/zebra-static-uninstall-mpls

zebra: fix uninstallation of LDP labeled static routes

7 years agoMerge branch 'frr/pull/183' ("Coverity")
David Lamparter [Wed, 8 Feb 2017 15:23:57 +0000 (16:23 +0100)]
Merge branch 'frr/pull/183' ("Coverity")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agopimd: Send proper length register packets
Donald Sharp [Tue, 7 Feb 2017 23:34:38 +0000 (18:34 -0500)]
pimd: Send proper length register packets

PIM Register packets are 20 bytes too long.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoMerge branch 'master' of https://github.com/freerangerouting/frr into coverity
Donald Sharp [Wed, 8 Feb 2017 14:35:57 +0000 (09:35 -0500)]
Merge branch 'master' of https://github.com/freerangerouting/frr into coverity

7 years agobgpd: Fix miss-indented code.
Donald Sharp [Wed, 8 Feb 2017 14:35:33 +0000 (09:35 -0500)]
bgpd: Fix miss-indented code.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoMerge branch 'frr/pull/180' ("Warnings")
David Lamparter [Wed, 8 Feb 2017 14:31:24 +0000 (15:31 +0100)]
Merge branch 'frr/pull/180' ("Warnings")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agozebra: Don't leak socket with failure condition
Donald Sharp [Wed, 8 Feb 2017 13:26:07 +0000 (08:26 -0500)]
zebra: Don't leak socket with failure condition

Don't leak a socket when we are unable to set it
as non-blocking and warn the user as appropriate.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoldpd: fix issues reported by coverity scan
Renato Westphal [Wed, 8 Feb 2017 13:21:13 +0000 (11:21 -0200)]
ldpd: fix issues reported by coverity scan

Fix two small memleaks in the CLI code and check the return values of
getsockname() and getpeername().

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agozebra: fix uninstallation of LDP labeled static routes
Renato Westphal [Tue, 7 Feb 2017 13:42:01 +0000 (11:42 -0200)]
zebra: fix uninstallation of LDP labeled static routes

Problem:
1 - Add a static route: "ip route 10.0.0.0/24 172.16.1.1";
2 - Receive an LDP mapping for 10.0.0.0/24 from 172.16.1.1;
3 - Remove the static route: "no ip route 10.0.0.0/24 172.16.1.1".
4 - Static route is removed but not uninstalled from the kernel.

What happens is that, on static_uninstall_route(), we can't find the
route we want to uninstall because it has an LDP label where the original
static route doesn't have any MPLS label.

To fix this, we can just stop calling static_nexthop_label_same() and
remove this function. It's impossible to have two routes for the same
prefix with the same distance and same nexthop address. This means that
we can lookup the correct route to uninstall without having to check
its labels.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agoMerge pull request #179 from donaldsharp/more_quagga_fixups
Lou Berger [Wed, 8 Feb 2017 01:46:44 +0000 (20:46 -0500)]
Merge pull request #179 from donaldsharp/more_quagga_fixups

*: Found some instances of Quagga.conf

7 years agopimd: Cleanup dest buffer to small
Donald Sharp [Tue, 7 Feb 2017 20:08:56 +0000 (15:08 -0500)]
pimd: Cleanup dest buffer to small

Cleanup the in_ifname and out_ifname buffers
to be large enough to hold the actual interface
names.

Additionally move the common variables to be defined
once, instead of inside of multiple for loops

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd: Fix usage of uninitialized dn_flag[]
Donald Sharp [Tue, 7 Feb 2017 19:55:39 +0000 (14:55 -0500)]
bgpd: Fix usage of uninitialized dn_flag[]

dn_flag was tested inside of a 'use_json' block
further down in the function.  Move initialization
of the value to outside of the !use_json if statement

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd: Fix passage of uninitialized value to skiplist_next
Donald Sharp [Tue, 7 Feb 2017 19:48:45 +0000 (14:48 -0500)]
bgpd: Fix passage of uninitialized value to skiplist_next

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd: Fix uninitialized data
Donald Sharp [Tue, 7 Feb 2017 19:34:37 +0000 (14:34 -0500)]
bgpd: Fix uninitialized data

Calling zapi_ipv[4|6]_route assumes we
set the instance appropriately.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agotests: Fix warning in compile
Donald Sharp [Tue, 7 Feb 2017 19:14:17 +0000 (14:14 -0500)]
tests: Fix warning in compile

Fix bgp_mp_attr_test.c warning in compile
on fedora 25 and clang.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agolib: Fix warning -> error build issue
Donald Sharp [Tue, 7 Feb 2017 18:55:55 +0000 (13:55 -0500)]
lib: Fix warning -> error build issue

When compiling ./buildtest.sh the gcc compiler
on fedora 25 complains about indentation

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years ago*: Found some instances of Quagga.conf
Donald Sharp [Tue, 7 Feb 2017 18:44:09 +0000 (13:44 -0500)]
*: Found some instances of Quagga.conf

Cleanup Quagga.conf -> Frr.conf

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoMerge remote-tracking branch 'origin/stable/2.0'
Donald Sharp [Tue, 7 Feb 2017 18:20:12 +0000 (13:20 -0500)]
Merge remote-tracking branch 'origin/stable/2.0'

7 years agoMerge pull request #176 from opensourcerouting/mtype-underflow-backtrace
Donald Sharp [Tue, 7 Feb 2017 18:04:27 +0000 (13:04 -0500)]
Merge pull request #176 from opensourcerouting/mtype-underflow-backtrace

lib: print backtrace on MTYPE count underflow

7 years agoMerge pull request #178 from opensourcerouting/ospf_lib_private
Donald Sharp [Tue, 7 Feb 2017 18:04:13 +0000 (13:04 -0500)]
Merge pull request #178 from opensourcerouting/ospf_lib_private

make libfrrospf private

7 years agoMerge pull request #174 from LabNConsulting/working/master/patch-set/issue-172
David Lamparter [Tue, 7 Feb 2017 16:27:58 +0000 (17:27 +0100)]
Merge pull request #174 from LabNConsulting/working/master/patch-set/issue-172

master: Fix encap attribute on wire, protect against broken object.

7 years agoMerge pull request #173 from LabNConsulting/working/2.0/patch-set/issue-172
David Lamparter [Tue, 7 Feb 2017 16:27:44 +0000 (17:27 +0100)]
Merge pull request #173 from LabNConsulting/working/2.0/patch-set/issue-172

2.0: Fix encap attribute on wire, protect against broken object.

7 years agoospfd: make libfrrospf a private non-dynamic lib
David Lamparter [Tue, 24 Jan 2017 22:26:20 +0000 (23:26 +0100)]
ospfd: make libfrrospf a private non-dynamic lib

There's no point in installing libospf anymore, now that
libfrrospfclient doesn't link it.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoospfd: isolate ospfapiclient lib from ospf lib
David Lamparter [Tue, 24 Jan 2017 20:35:08 +0000 (21:35 +0100)]
ospfd: isolate ospfapiclient lib from ospf lib

The OSPF API-client library doesn't really use anything from libospf
except some small dumping tools.  Isolate these into a separate file
and detangle the ospfapiclient library.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge pull request #161 from donaldsharp/stableMcLibrary
David Lamparter [Tue, 7 Feb 2017 16:17:12 +0000 (17:17 +0100)]
Merge pull request #161 from donaldsharp/stableMcLibrary

Stable mc library

7 years agobgpd: Allow views to 'pretend' resolve nexthops
Donald Sharp [Wed, 1 Feb 2017 15:31:40 +0000 (10:31 -0500)]
bgpd: Allow views to 'pretend' resolve nexthops

Views are supposed to be independent tables that have no connection to
routing tables.  Since View's are 'independent' there is no way to do
'real' nexthop resolution since connected routes and interfaces are
associated with a particular table (or really vrf).  So when we have a
bgp instance assume that nexthops specified are actually valid, since we
are propagating what our neighbors are telling us.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
[cherry-picked from master 6fa1ab2eecb39b35256739f7083196d6f556f639]
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge branch 'frr/pull/157' ("Fixinator")
David Lamparter [Tue, 7 Feb 2017 15:38:03 +0000 (16:38 +0100)]
Merge branch 'frr/pull/157' ("Fixinator")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agolib: print backtrace on MTYPE count underflow
David Lamparter [Tue, 7 Feb 2017 15:23:38 +0000 (16:23 +0100)]
lib: print backtrace on MTYPE count underflow

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge branch 'frr/pull/165' ("Pim vrf")
David Lamparter [Tue, 7 Feb 2017 14:52:52 +0000 (15:52 +0100)]
Merge branch 'frr/pull/165' ("Pim vrf")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge branch 'frr/pull/166' ("bgpd: fix array oob ...")
David Lamparter [Tue, 7 Feb 2017 14:50:26 +0000 (15:50 +0100)]
Merge branch 'frr/pull/166' ("bgpd: fix array oob ...")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agoMerge branch 'frr/pull/152' ("Lib fixes")
David Lamparter [Tue, 7 Feb 2017 14:48:46 +0000 (15:48 +0100)]
Merge branch 'frr/pull/152' ("Lib fixes")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
7 years agobgpd rfapi: advertise encap attribute when TT is valid and not MPLS.
Lou Berger [Tue, 7 Feb 2017 02:29:43 +0000 (21:29 -0500)]
bgpd rfapi: advertise encap attribute when TT is valid and not MPLS.
     Ensure tunnel type set based on rx'ed
     Ignore bad/mpls encap types.

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agoMerge pull request #171 from donaldsharp/double_free
Renato Westphal [Tue, 7 Feb 2017 13:48:15 +0000 (11:48 -0200)]
Merge pull request #171 from donaldsharp/double_free

lib: Don't use malloc!

7 years agoMerge pull request #169 from opensourcerouting/ldpd-label-alloc-rework
Donald Sharp [Tue, 7 Feb 2017 13:41:45 +0000 (08:41 -0500)]
Merge pull request #169 from opensourcerouting/ldpd-label-alloc-rework

ldpd: update local labels when necessary

7 years agobgpd rfapi: advertise encap attribute when TT is valid and not MPLS.
Lou Berger [Tue, 7 Feb 2017 02:29:43 +0000 (21:29 -0500)]
bgpd rfapi: advertise encap attribute when TT is valid and not MPLS.
     Ensure tunnel type set based on rx'ed
     Ignore bad/mpls encap types.

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agozebra: fix installation of LDP labels on static routes
Renato Westphal [Tue, 7 Feb 2017 11:47:37 +0000 (09:47 -0200)]
zebra: fix installation of LDP labels on static routes

If the ifindex of a nexthop is not zero, we can't assume that its type is
NEXTHOP_TYPE_IPV4_IFINDEX or NEXTHOP_TYPE_IPV6_IFINDEX. Nexthops of type
NEXTHOP_TYPE_IPV[46] can have their ifindex set by the nexthop_active()
function.

With that said, we need to me more flexible when comparing nexthops
on mpls_ftn_update() to make sure that we'll always find the correct
route/nexthop to update.

Regression introduced by commit 88d88a ("zebra/ldpd: allow MPLS ECMP on
unnumbered interfaces") and found by ANVL.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agolib: Fixup CR comment
Donald Sharp [Tue, 7 Feb 2017 09:54:40 +0000 (04:54 -0500)]
lib: Fixup CR comment

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agolib: Don't use malloc!
Donald Sharp [Mon, 6 Feb 2017 17:52:28 +0000 (12:52 -0500)]
lib: Don't use malloc!

thread.c was using malloc.  This was found by the
assert added to memory.c.

Fixes issues #170

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoldpd: update local labels when necessary
Renato Westphal [Fri, 3 Feb 2017 13:09:27 +0000 (11:09 -0200)]
ldpd: update local labels when necessary

ldpd allocates null labels for directly connected routes. If a connected
route is removed (interface goes down) and an IGP learned route takes its
place in the RIB, ldpd must update the local label of the associated FEC
entry with a non-null label. The same applies for the other way around
(an interface goes up and a connected route is selected in favour of an
IGP route). Labels should be dynamic and change when necessary.

Additionally, this patch fixes the processing of route delete messages
from zebra. Route delete messages don't contain any nexthop, meaning that
whenever we receive such messages we must delete all nexthop previously
received.

Based on a patch from Bingen Eguzkitza <bingen@voltanet.io>.
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agoldpd: fix silly bug introduced by a recent commit
Renato Westphal [Fri, 3 Feb 2017 13:08:45 +0000 (11:08 -0200)]
ldpd: fix silly bug introduced by a recent commit

This call to fatalx() was making ldpd crash when a pseudowire was
configured.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agozebra: fix indentation problems introduced by wrong conflict resolution
Renato Westphal [Mon, 6 Feb 2017 13:57:34 +0000 (11:57 -0200)]
zebra: fix indentation problems introduced by wrong conflict resolution

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
7 years agoMerge pull request #167 from qlyoung/vtysh-subs-stable
Martin Winter [Fri, 3 Feb 2017 20:11:18 +0000 (12:11 -0800)]
Merge pull request #167 from qlyoung/vtysh-subs-stable

vtysh: Quagga.conf -> Frr.conf

7 years agovtysh: Quagga.conf -> Frr.conf
Quentin Young [Wed, 1 Feb 2017 22:01:17 +0000 (22:01 +0000)]
vtysh: Quagga.conf -> Frr.conf

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
7 years agobgpd: fix array oob for `show ip bgp`
Quentin Young [Fri, 3 Feb 2017 18:23:50 +0000 (18:23 +0000)]
bgpd: fix array oob for `show ip bgp`

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
7 years agopimd: Refactor pim_sock_open to just need the ifp pointer
Donald Sharp [Fri, 3 Feb 2017 17:37:39 +0000 (12:37 -0500)]
pimd: Refactor pim_sock_open to just need the ifp pointer

In all cases pim_sock_open was called, we just passed
in the pim_ifp->primary_address, which is accessible
from the interface pointer.  So just pass that in.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agopimd: Allow a interface in a vrf to be configured.
Donald Sharp [Fri, 3 Feb 2017 17:33:37 +0000 (12:33 -0500)]
pimd: Allow a interface in a vrf to be configured.

This fixes the issue a crash when we have configured an interface
inside of a vrf, and apply pim commands to it.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoMerge pull request #158 from LabNConsulting/working/2.0/patch-set/rfapi+vty
Donald Sharp [Fri, 3 Feb 2017 16:54:52 +0000 (11:54 -0500)]
Merge pull request #158 from LabNConsulting/working/2.0/patch-set/rfapi+vty

2.0: Fix a couple of merge related and rfapi/show vpn issues

7 years agoRevert "bgpd: Put back original behavior for some show bgp commands"
Donald Sharp [Fri, 3 Feb 2017 15:33:14 +0000 (10:33 -0500)]
Revert "bgpd: Put back original behavior for some show bgp commands"

This reverts commit 713de0685fc0ef882c97a6cb4bd149620f4dbdf4.

During Discussions with Lou, it was decided that his code
changes would handle this part, and my code changes would
fix up vtysh and bgp to be in sync again.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd, vtysh: Fix vtysh able to handle some safi modes for bgp
Donald Sharp [Fri, 3 Feb 2017 15:29:53 +0000 (10:29 -0500)]
bgpd, vtysh: Fix vtysh able to handle some safi modes for bgp

This adds the ability for vtysh to handle v4 and v6
safi modes besides unicast and multicast.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com.
7 years agobgp: remove HAVE_IPV6 from file (again!)
Lou Berger [Fri, 3 Feb 2017 15:16:01 +0000 (10:16 -0500)]
bgp: remove HAVE_IPV6 from file (again!)

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd: add missing json strings
Lou Berger [Fri, 3 Feb 2017 15:04:19 +0000 (10:04 -0500)]
bgpd: add missing json strings

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agoMerge pull request #159 from LabNConsulting/working/master/patch-set/rfapi+vty
Donald Sharp [Fri, 3 Feb 2017 14:38:56 +0000 (09:38 -0500)]
Merge pull request #159 from LabNConsulting/working/master/patch-set/rfapi+vty

Master: Fix a couple of issues -  rfapi/show vpn issues

7 years ago*: Convert libospf -> libfrrospf
Donald Sharp [Fri, 3 Feb 2017 13:43:55 +0000 (08:43 -0500)]
*: Convert libospf -> libfrrospf

Convert the libospfapiclient -> libfrrospfapiclient
and libospf -> libfrrospf to prevent namespace
collision with Quagga.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years ago*: Convert libfpm -> libfrrfpm
Donald Sharp [Fri, 3 Feb 2017 13:43:09 +0000 (08:43 -0500)]
*: Convert libfpm -> libfrrfpm

Convert the libfpm to libfrrfpm to prevent namespace
collision with Quagga.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoospf6d: Fix compile warnings
Donald Sharp [Fri, 3 Feb 2017 13:26:33 +0000 (08:26 -0500)]
ospf6d: Fix compile warnings

These compile issues were found by running ./buildtest.sh
on a fedora 25 box.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoospfd: Fix compile warnings
Donald Sharp [Fri, 3 Feb 2017 13:22:15 +0000 (08:22 -0500)]
ospfd: Fix compile warnings

These compile issues were found w/ gcc and running
./buildtest.sh on a fedora 25 box.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoripd: Fix compile warning
Donald Sharp [Fri, 3 Feb 2017 13:20:14 +0000 (08:20 -0500)]
ripd: Fix compile warning

This issue was found compiling with ./buildtest.sh
on fedora 25

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years ago*: Convert libzebra -> libfrr
Donald Sharp [Fri, 3 Feb 2017 12:59:04 +0000 (07:59 -0500)]
*: Convert libzebra -> libfrr

The library libzebra that is installed with FRR will
conflict with Quagga.  So let's rename it to libfrr.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd: get rid of 'unknown' in show safi
Lou Berger [Fri, 3 Feb 2017 02:35:24 +0000 (21:35 -0500)]
bgpd: get rid of 'unknown' in show safi
      Merge 2.0 change, adapted to master

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd rfapi: fix TT handling broken on Sat Jan 28 18:57:28 2017 -0500
Lou Berger [Fri, 3 Feb 2017 00:50:36 +0000 (19:50 -0500)]
bgpd rfapi: fix TT handling broken on Sat Jan 28 18:57:28 2017 -0500

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd: get rid of 'unknown' in show safi (broken in earlier merge)
Lou Berger [Fri, 3 Feb 2017 02:35:24 +0000 (21:35 -0500)]
bgpd: get rid of 'unknown' in show safi (broken in earlier merge)

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd: cleanup/restore show ip|ipv6 bgp and show bgp ipv4 summary related commands
Lou Berger [Fri, 3 Feb 2017 02:33:55 +0000 (21:33 -0500)]
bgpd: cleanup/restore show ip|ipv6 bgp and show bgp ipv4 summary related commands

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd rfapi: fix TT handling broken on Sat Jan 28 18:57:28 2017 -0500
Lou Berger [Fri, 3 Feb 2017 00:50:36 +0000 (19:50 -0500)]
bgpd rfapi: fix TT handling broken on Sat Jan 28 18:57:28 2017 -0500

Signed-off-by: Lou Berger <lberger@labn.net>
7 years agobgpd: Put back original behavior for some show bgp commands
Donald Sharp [Thu, 2 Feb 2017 18:56:56 +0000 (13:56 -0500)]
bgpd: Put back original behavior for some show bgp commands

The behavior of some show commands was switched from
showing the unicast data to all safi data.  This
is a change in behavior and needs to be put
back for 2.0

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agobgpd: Allow vtysh to work for address-family
Donald Sharp [Thu, 2 Feb 2017 18:54:47 +0000 (13:54 -0500)]
bgpd: Allow vtysh to work for address-family

extract.pl.in requires the lines that are ignored
to be consisten with what is in the *.c file
that we are ignoring from, else we get ambiguous
commands.

This allows vtysh to enter address-family sub mode
in bgp again.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agoMerge remote-tracking branch 'origin/stable/2.0'
Donald Sharp [Thu, 2 Feb 2017 15:42:51 +0000 (10:42 -0500)]
Merge remote-tracking branch 'origin/stable/2.0'

7 years agoMerge pull request #135 from LabNConsulting/working/master/patch-set/misc+vrf
Donald Sharp [Thu, 2 Feb 2017 14:25:24 +0000 (09:25 -0500)]
Merge pull request #135 from LabNConsulting/working/master/patch-set/misc+vrf

Master: misc vnc/rfapi and VRF

7 years agoMerge pull request #154 from LabNConsulting/working/master/patch-set/rr-part2
Donald Sharp [Thu, 2 Feb 2017 12:49:43 +0000 (07:49 -0500)]
Merge pull request #154 from LabNConsulting/working/master/patch-set/rr-part2

Mater: complete Issue#91 fix (regression now clean)

7 years agoMerge pull request #153 from LabNConsulting/working/2.0/patch-set/rr-part2
Donald Sharp [Thu, 2 Feb 2017 12:48:45 +0000 (07:48 -0500)]
Merge pull request #153 from LabNConsulting/working/2.0/patch-set/rr-part2

2.0: complete Issue#91 fix (regression now clean)

7 years agoMerge pull request #143 from LabNConsulting/working/2.0/patch/mpls-tt
Donald Sharp [Thu, 2 Feb 2017 12:47:43 +0000 (07:47 -0500)]
Merge pull request #143 from LabNConsulting/working/2.0/patch/mpls-tt

2.0: bgp rfapi: fix resolution / lookup failure when using MPLS TT

7 years agoMerge pull request #151 from opensourcerouting/ldpd-filtering
Donald Sharp [Thu, 2 Feb 2017 12:45:08 +0000 (07:45 -0500)]
Merge pull request #151 from opensourcerouting/ldpd-filtering

ldpd: introduce advanced filtering capabilities

7 years agobgpd rfapi: small debug log enhancements
G. Paul Ziemba [Thu, 2 Feb 2017 00:24:32 +0000 (16:24 -0800)]
bgpd rfapi: small debug log enhancements

Signed-off-by: G. Paul Ziemba <paulz@labn.net>
7 years agobgpd rfapi: RR replated (Issue #91) treat filtered update
G. Paul Ziemba [Thu, 2 Feb 2017 00:13:33 +0000 (16:13 -0800)]
bgpd rfapi: RR replated (Issue #91) treat filtered update
     as implicit withdraw for rfapi

Signed-off-by: G. Paul Ziemba <paulz@labn.net>
7 years agobgpd rfapi: RR replated (Issue #91) treat filtered update
G. Paul Ziemba [Thu, 2 Feb 2017 00:13:33 +0000 (16:13 -0800)]
bgpd rfapi: RR replated (Issue #91) treat filtered update
     as implicit withdraw for rfapi

Signed-off-by: G. Paul Ziemba <paulz@labn.net>
7 years agopimd: Fix fd leak
Donald Sharp [Thu, 2 Feb 2017 01:44:21 +0000 (20:44 -0500)]
pimd: Fix fd leak

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
7 years agopimd: Fix cmd issues
Donald Sharp [Thu, 2 Feb 2017 01:40:10 +0000 (20:40 -0500)]
pimd: Fix cmd issues

Fix possible buffer overwrite and uninitialized idx access.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>