]> git.proxmox.com Git - mirror_frr.git/log
mirror_frr.git
6 years agobgpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 23:18:09 +0000 (01:18 +0200)]
bgpd: fix clang warning

stlv_last is initialized with the loops. No need to reset it.
Its scope is local to the use with the loops.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoMerge pull request #1307 from vjardin6WIND/clean
Donald Sharp [Sun, 8 Oct 2017 23:07:09 +0000 (19:07 -0400)]
Merge pull request #1307 from vjardin6WIND/clean

Fix many clang warning

6 years agoeigrpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 22:12:01 +0000 (00:12 +0200)]
eigrpd: fix clang warning

ei shall never be NULL once we do the lookup. If it is NULL
bad things could happen.
For instance ei->t_distribute may not be a valid reference.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoeigrpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 22:06:08 +0000 (00:06 +0200)]
eigrpd: fix clang warning

nbr cannot be NULL. Doing such test does confuse clang since
we do not have execution case if nbr == NULL.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agobgpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:50:54 +0000 (23:50 +0200)]
bgpd: fix clang warning

Same fix than c31a793, alwas get the string so clang does not complain that
it can be NULL.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agovtysh: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:48:55 +0000 (23:48 +0200)]
vtysh: fix clang warning

cmd->line shall never be null for these sections.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agozebra: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:47:43 +0000 (23:47 +0200)]
zebra: fix clang warning

Set to 0 to avoid "Branch condition evaluates to a garbage value".

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agolib: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:46:24 +0000 (23:46 +0200)]
lib: fix clang warning

Properly initialize to avoid "Branch condition evaluates to a garbage value"
warning.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agobgpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:45:10 +0000 (23:45 +0200)]
bgpd: fix clang warning

Remove stored value to llen that is never used.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agorfapi: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:43:59 +0000 (23:43 +0200)]
rfapi: fix clang warning

When DEBUG_L2_EXTRA is not set, clang emits a warning because rc is not
used.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoeirgpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:42:55 +0000 (23:42 +0200)]
eirgpd: fix clang warning

opcode is not used.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoripngd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:40:36 +0000 (23:40 +0200)]
ripngd: fix clang warning

this value len is not used for this vty_out() case.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoospfd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:37:04 +0000 (23:37 +0200)]
ospfd: fix clang warning

us is clearly not used, but let's keep it to have a readable logic.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoldpd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:28:58 +0000 (23:28 +0200)]
ldpd: fix clang warning

size is not used for further parsing. Keep it updated but tell
to the compiler that we know it is not used just in case one
needs to extend the parsing somedays.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoisisd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:25:24 +0000 (23:25 +0200)]
isisd: fix clang warning

tlvs is not used after extracting the last TLV. So,
let's tell to the compiler that it is expected.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoospfd: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:18:36 +0000 (23:18 +0200)]
ospfd: fix clang warning

Value stored to 'nbraddr' during its initialization is never read

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoospf6d: fix clang warning
Vincent JARDIN [Sun, 8 Oct 2017 21:14:55 +0000 (23:14 +0200)]
ospf6d: fix clang warning

troute and tinfo needs to be 0'd

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoospf6d: fix clang warning, NULL() calls
Vincent JARDIN [Sun, 8 Oct 2017 16:20:12 +0000 (18:20 +0200)]
ospf6d: fix clang warning, NULL() calls

Avoid show() methods from being a NULL function when it is called.
Meanwhile, I did const'ify the handlers so only its debug field can be changed.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agorfapi: avoid calling NULL() function.
Vincent JARDIN [Sun, 8 Oct 2017 15:56:23 +0000 (17:56 +0200)]
rfapi: avoid calling NULL() function.

Keep the execution flow, bug log errors.

Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
6 years agoMerge pull request #1303 from opensourcerouting/ldpd-scan-build
Donald Sharp [Fri, 6 Oct 2017 21:50:18 +0000 (17:50 -0400)]
Merge pull request #1303 from opensourcerouting/ldpd-scan-build

ldpd: sprinkle in some asserts to make scan-build happy

6 years agoldpd: sprinkle in some asserts to make scan-build happy
Renato Westphal [Fri, 6 Oct 2017 20:50:19 +0000 (17:50 -0300)]
ldpd: sprinkle in some asserts to make scan-build happy

While here, fix the other SA warnings.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoMerge pull request #1295 from donaldsharp/more_1270
Lou Berger [Fri, 6 Oct 2017 13:31:30 +0000 (09:31 -0400)]
Merge pull request #1295 from donaldsharp/more_1270

More 1270

6 years agoMerge pull request #1299 from opensourcerouting/small_fixes
Donald Sharp [Fri, 6 Oct 2017 13:12:09 +0000 (09:12 -0400)]
Merge pull request #1299 from opensourcerouting/small_fixes

Small fixes

6 years agozebra: fix display of negative route metrics and tags
Renato Westphal [Fri, 6 Oct 2017 01:38:19 +0000 (22:38 -0300)]
zebra: fix display of negative route metrics and tags

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years ago*: use argv[]->text instead of argv[]->arg when appropriate
Renato Westphal [Fri, 6 Oct 2017 01:31:54 +0000 (22:31 -0300)]
*: use argv[]->text instead of argv[]->arg when appropriate

Incomplete commands like "debug ospf6 route mem" were being ignored. The
changes in ripd and ripngd are intended to make the code easier to read,
no bugs were fixed in these two daemons.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agolib, ldpd: fix "argument cannot be negative" coverity warnings
Renato Westphal [Fri, 6 Oct 2017 00:47:11 +0000 (21:47 -0300)]
lib, ldpd: fix "argument cannot be negative" coverity warnings

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoMerge pull request #1264 from donaldsharp/linklist
Lou Berger [Thu, 5 Oct 2017 18:57:05 +0000 (14:57 -0400)]
Merge pull request #1264 from donaldsharp/linklist

Linklist api cleanup

6 years agoMerge pull request #1293 from donaldsharp/pim_boundary_oil
Renato Westphal [Thu, 5 Oct 2017 16:20:00 +0000 (13:20 -0300)]
Merge pull request #1293 from donaldsharp/pim_boundary_oil

Pim boundary oil

6 years ago*: Convert list_free usage to list_delete
Donald Sharp [Thu, 28 Sep 2017 01:19:20 +0000 (21:19 -0400)]
*: Convert list_free usage to list_delete

list_free is occassionally being used to delete the
list and accidently not deleting all the nodes.
We keep running across this usage pattern.  Let's
remove the temptation and only allow list_delete
to handle list deletion.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years ago*: Convert list_delete(struct list *) to ** to allow nulling
Donald Sharp [Thu, 5 Oct 2017 14:51:01 +0000 (10:51 -0400)]
*: Convert list_delete(struct list *) to ** to allow nulling

Convert the list_delete(struct list *) function to use
struct list **.  This is to allow the list pointer to be nulled.

I keep running into uses of this list_delete function where we
forget to set the returned pointer to NULL and attempt to use
it and then experience a crash, usually after the developer
has long since left the building.

Let's make the api explicit in it setting the list pointer
to null.

Cynical Prediction:  This code will expose a attempt
to use the NULL'ed list pointer in some obscure bit
of code.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agovtysh: Fix ordering of multicast boundary command
Donald Sharp [Wed, 4 Oct 2017 21:46:29 +0000 (17:46 -0400)]
vtysh: Fix ordering of multicast boundary command

The multicast boundary command must be shown after
the `ip pim sm` command.  So add a new config_add_line_end
and make it the last one.

Signed-off-by: Donald Sharp <sharp@cumulusnetworks.com>
6 years agopimd: Fix multicast boundary command
Donald Sharp [Wed, 4 Oct 2017 21:32:48 +0000 (17:32 -0400)]
pimd: Fix multicast boundary command

1) Fix missing newlines
2) Write the correct cli out.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agobgpd: Fixup json with RouteDistinguishers
Donald Sharp [Thu, 5 Oct 2017 14:11:36 +0000 (10:11 -0400)]
bgpd: Fixup json with RouteDistinguishers

The json option for displaying a bgp table
with route Distinguishers in it was not properly
working.  This code cleans this issue up.

Additionally attempt to make the code a bit
easier to read and handle.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agobgpd: Cleanup bgp_show_table to be easier on the eyes
Donald Sharp [Wed, 4 Oct 2017 14:26:43 +0000 (10:26 -0400)]
bgpd: Cleanup bgp_show_table to be easier on the eyes

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agobgpd: fix 'show bgp ipvX vpn rd' command
Lou Berger [Fri, 29 Sep 2017 15:54:31 +0000 (11:54 -0400)]
bgpd: fix 'show bgp ipvX vpn rd' command

Signed-off-by: Lou Berger <lberger@labn.net>
6 years agobgpd: fix show bgp ipvX vpn all rd
Lou Berger [Fri, 29 Sep 2017 15:32:10 +0000 (11:32 -0400)]
bgpd: fix show bgp ipvX vpn all rd

Signed-off-by: Lou Berger <lberger@labn.net>
6 years agobgpd: remove old/broken vpnv4 from of show bgp
Lou Berger [Fri, 29 Sep 2017 15:26:05 +0000 (11:26 -0400)]
bgpd: remove old/broken vpnv4 from of show bgp

Signed-off-by: Lou Berger <lberger@labn.net>
6 years agobgpd: unify 'show bgp' with RD with normal unicast bgp show
Lou Berger [Thu, 28 Sep 2017 22:51:31 +0000 (18:51 -0400)]
bgpd: unify 'show bgp' with RD with normal unicast bgp show

Signed-off-by: Lou Berger <lberger@labn.net>
6 years agoMerge pull request #1244 from donaldsharp/flush_routes
Renato Westphal [Thu, 5 Oct 2017 14:05:43 +0000 (11:05 -0300)]
Merge pull request #1244 from donaldsharp/flush_routes

tools: Fix route flush

6 years agoMerge pull request #1280 from donaldsharp/eigrp_interface
Renato Westphal [Thu, 5 Oct 2017 14:03:54 +0000 (11:03 -0300)]
Merge pull request #1280 from donaldsharp/eigrp_interface

Eigrp interface cleanup

6 years agoMerge pull request #1292 from chiragshah6/mdev
Renato Westphal [Thu, 5 Oct 2017 13:43:35 +0000 (10:43 -0300)]
Merge pull request #1292 from chiragshah6/mdev

ospf6d: add debug ospf6 route memory to config

6 years ago*: Add some documentation about how to handle new daemons
Donald Sharp [Thu, 5 Oct 2017 12:54:03 +0000 (08:54 -0400)]
*: Add some documentation about how to handle new daemons

Add some breadcrumbs for when we add a new routing daemon
so things `just work`.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agotools: Add NHRP to route flushing
Donald Sharp [Thu, 5 Oct 2017 12:27:31 +0000 (08:27 -0400)]
tools: Add NHRP to route flushing

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agotools: Fix babel RT_PROT #
Donald Sharp [Thu, 5 Oct 2017 12:23:27 +0000 (08:23 -0400)]
tools: Fix babel RT_PROT #

We had mistakenly created another RT_PROT # for babel.
This is incorrect.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agotools: Fix route flush
Donald Sharp [Mon, 25 Sep 2017 23:10:40 +0000 (19:10 -0400)]
tools: Fix route flush

This commit does two things:

1) Flush by proto number not string
   This is useful because not all systems might have the proto
   values installed, or a version of iproute2 that they might
   be installed with.
2) Flush missing routes that might have been installed( eigrp
   and nhrp )

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoMerge pull request #1286 from opensourcerouting/isis-lsp-queue-improv
Donald Sharp [Thu, 5 Oct 2017 12:06:57 +0000 (08:06 -0400)]
Merge pull request #1286 from opensourcerouting/isis-lsp-queue-improv

isisd: optimize per interface lsp send-queue creation

6 years agoMerge pull request #1291 from sebageek/debian-pkg-add-iproute2-alternative
Donald Sharp [Wed, 4 Oct 2017 22:38:41 +0000 (18:38 -0400)]
Merge pull request #1291 from sebageek/debian-pkg-add-iproute2-alternative

Add iproute2 as dependency alternative in Debian package

6 years agoMerge pull request #1288 from donaldsharp/1287
Donald Sharp [Wed, 4 Oct 2017 22:37:11 +0000 (18:37 -0400)]
Merge pull request #1288 from donaldsharp/1287

doc: Added python-ipaddr dependancy

6 years agoospf6d: add debug ospf6 route memory to config
Chirag Shah [Wed, 4 Oct 2017 20:56:54 +0000 (13:56 -0700)]
ospf6d: add debug ospf6 route memory to config

vty config write to display 'debug ospf6 route memory'.

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoMerge pull request #1289 from sebageek/fix-defualt-typo
Quentin Young [Wed, 4 Oct 2017 21:31:45 +0000 (17:31 -0400)]
Merge pull request #1289 from sebageek/fix-defualt-typo

Fix defualt-default typo in bgp evpn help text

6 years agodebian: Add iproute2 as dependency alternative in Debian package
Sebastian Lohff [Wed, 4 Oct 2017 19:55:51 +0000 (21:55 +0200)]
debian: Add iproute2 as dependency alternative in Debian package

iproute has been a transitional package that only depends on iproute2
since Debian Jessie or Ubuntu 14.04. To avoid installing this transitional
dummy package on newer installations we add iproute2 as a dependency
alternative to iproute. The iproute dependency can be dropped when
wheezy / 12.04 support is no longer needed.

Signed-off-by: Sebastian Lohff <seba@someserver.de>
6 years agobgpd: Fix defualt-default typo in bgp evpn help text
Sebastian Lohff [Wed, 4 Oct 2017 19:25:12 +0000 (21:25 +0200)]
bgpd: Fix defualt-default typo in bgp evpn help text

Signed-off-by: Sebastian Lohff <seba@someserver.de>
6 years agodoc: Added python-ipaddr dependancy
Will McLendon [Wed, 4 Oct 2017 18:24:37 +0000 (14:24 -0400)]
doc: Added python-ipaddr dependancy

Added python-ipaddr apt requirement to documentation.
Added clarification to install systemd service section
as commands assume are in frr directory.

Signed-off-by: Will McLendon <wimclend@gmail.com>
6 years agoMerge pull request #1283 from donaldsharp/ldp_bite_me
Lou Berger [Wed, 4 Oct 2017 11:46:04 +0000 (07:46 -0400)]
Merge pull request #1283 from donaldsharp/ldp_bite_me

ldpd: Fix compiler warning about uninitialized rt

6 years agoldpd: Fix compiler warning about uninitialized rt
Donald Sharp [Wed, 4 Oct 2017 01:32:32 +0000 (21:32 -0400)]
ldpd: Fix compiler warning about uninitialized rt

Certain compilers cannot recognize that rt is
actually being init'ed, but let's set it to
NULL 'till we get them updated.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoMerge pull request #1282 from opensourcerouting/ldpd-minor-issues
Donald Sharp [Wed, 4 Oct 2017 00:19:11 +0000 (20:19 -0400)]
Merge pull request #1282 from opensourcerouting/ldpd-minor-issues

ldpd minor issues

6 years agoMerge pull request #1267 from opensourcerouting/ldpd_cli_show
Donald Sharp [Tue, 3 Oct 2017 20:23:28 +0000 (16:23 -0400)]
Merge pull request #1267 from opensourcerouting/ldpd_cli_show

ldpd: add more filtering options in some "show" commands

6 years agoldpd: detach stdin/stdout/stderr from the child processes
Renato Westphal [Tue, 3 Oct 2017 19:11:07 +0000 (16:11 -0300)]
ldpd: detach stdin/stdout/stderr from the child processes

Doing a "ssh user@node 'ldpd -d'" was making the SSH session hang. In
the original OpenBSD's ldpd(8) daemon, the daemon function takes care
of connecting stdin/stdout/stderr to /dev/null. In the FRR port, this
only happens in the frr_run() function, after all children have been
forked. Ideally we could try to rearrange libfrr.c and ldpd.c in a way
that start_child() is called only after the parent connects the standard
I/O streams to /dev/null. But since this issue needs an immediate
fix, let's do this workaround for now. Note: even when running on the
foreground, all log messages from the child processes are sent to the
parent process, which then prints the messages to stdout/stderr and/or
to a log file.

Reported-by: Martin Winter <mwinter@opensourcerouting.org>
Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoldpd: fix issue when displaying the running configuration
Renato Westphal [Tue, 3 Oct 2017 13:30:44 +0000 (10:30 -0300)]
ldpd: fix issue when displaying the running configuration

More than a cosmetic fix, this should prevent issues with frr-reload.py.

Before:

mpls ldp
 router-id 1.1.1.1
 !
 address-family ipv4
  discovery transport-address 1.1.1.1
  !
  interface rt1-eth0
   discovery hello holdtime 10
   discovery hello interval 3
 exit-address-family
 !
!

After:

mpls ldp
 router-id 1.1.1.1
 !
 address-family ipv4
  discovery transport-address 1.1.1.1
  !
  interface rt1-eth0
   discovery hello holdtime 10
   discovery hello interval 3
  !
 exit-address-family
 !
!

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoldpd: remove the "discovery targeted-hello" commands from the interface node
Renato Westphal [Tue, 3 Oct 2017 13:27:05 +0000 (10:27 -0300)]
ldpd: remove the "discovery targeted-hello" commands from the interface node

These commands belong only in the global LDP node and in the LDP
address-family nodes.

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoldpd: fix wrong indentation in the help menu
Renato Westphal [Tue, 3 Oct 2017 13:24:45 +0000 (10:24 -0300)]
ldpd: fix wrong indentation in the help menu

The -n option was not aligned with the other ones:

% ldpd --help
[snip]
  -A, --vty_addr     Set vty's bind address
  -P, --vty_port     Set vty's port number
      --ctl_socket   Override ctl socket path
-n,   --instance     Instance id

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
6 years agoMerge pull request #1111 from chiragshah6/mdev
Jafar Al-Gharaibeh [Tue, 3 Oct 2017 18:09:59 +0000 (13:09 -0500)]
Merge pull request #1111 from chiragshah6/mdev

ospfd: OSPFv2 VRF Support

6 years agoMerge pull request #1281 from donaldsharp/boo_memset
Jafar Al-Gharaibeh [Tue, 3 Oct 2017 16:59:19 +0000 (11:59 -0500)]
Merge pull request #1281 from donaldsharp/boo_memset

lib: Fix memset usage

6 years agoospfd: OSPFv2 VRF remove iflist from master
Chirag Shah [Mon, 2 Oct 2017 18:47:02 +0000 (11:47 -0700)]
ospfd: OSPFv2 VRF remove iflist from master

Remove instances of ospf master's iflist and use vrf_list
with ospf vrf_id.

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: fix vrf bind sock non-linux system
Chirag Shah [Sun, 17 Sep 2017 01:08:33 +0000 (18:08 -0700)]
ospfd: fix vrf bind sock non-linux system

For non GNU_LINUX like open Bsd avoid sending packet
to non vrf aware device using in_pktinfo.

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: Bind socket to vrf device
Chirag Shah [Wed, 13 Sep 2017 00:27:26 +0000 (17:27 -0700)]
ospfd: Bind socket to vrf device

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: OSPFv2 VRF fixesI
Chirag Shah [Fri, 8 Sep 2017 21:59:12 +0000 (14:59 -0700)]
ospfd: OSPFv2 VRF fixesI

Fix ospf interface running config to display vrf
fix clang warnings

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: OSPFv2 VRF Changes II
Chirag Shah [Thu, 7 Sep 2017 15:08:09 +0000 (08:08 -0700)]
ospfd: OSPFv2 VRF Changes II

Accomodate review comments

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: fix clang warning & ci-ospf test
Chirag Shah [Wed, 6 Sep 2017 22:11:41 +0000 (15:11 -0700)]
ospfd: fix clang warning & ci-ospf test

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: OSPFv2 VRF, fix CLAN SA warning
Chirag Shah [Wed, 6 Sep 2017 18:42:20 +0000 (11:42 -0700)]
ospfd: OSPFv2 VRF, fix CLAN SA warning

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: OSPFv2 VRF Support
Chirag Shah [Fri, 25 Aug 2017 20:51:12 +0000 (13:51 -0700)]
ospfd: OSPFv2 VRF Support

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agolib: Fix memset usage
Donald Sharp [Tue, 3 Oct 2017 16:03:56 +0000 (12:03 -0400)]
lib: Fix memset usage

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoMerge pull request #1278 from chiragshah6/ospf_vrf_dev
Jafar Al-Gharaibeh [Tue, 3 Oct 2017 15:41:00 +0000 (10:41 -0500)]
Merge pull request #1278 from chiragshah6/ospf_vrf_dev

ospfd: Fix maxage_lsa lookup key

6 years agoMerge pull request #1263 from vjardin6WIND/cleanup
Quentin Young [Tue, 3 Oct 2017 15:39:59 +0000 (11:39 -0400)]
Merge pull request #1263 from vjardin6WIND/cleanup

Cleanup - scan-build

6 years agoMerge pull request #1262 from dwalton76/vtysh-conft-available2
Jafar Al-Gharaibeh [Tue, 3 Oct 2017 15:34:33 +0000 (10:34 -0500)]
Merge pull request #1262 from dwalton76/vtysh-conft-available2

tools: frr-reload.py should exit(1) if vtysh config mode is locked

6 years agoisisd: optimize per interface lsp send-queue creation
Christian Franke [Mon, 2 Oct 2017 23:42:22 +0000 (01:42 +0200)]
isisd: optimize per interface lsp send-queue creation

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
6 years agoeigrpd: Remove unnecessary macro definitions
Donald Sharp [Tue, 3 Oct 2017 01:29:08 +0000 (21:29 -0400)]
eigrpd: Remove unnecessary macro definitions

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoeigrpd: Remove ei mapping to connected routes
Donald Sharp [Mon, 2 Oct 2017 23:50:39 +0000 (19:50 -0400)]
eigrpd: Remove ei mapping to connected routes

We need one struct eigrp_interface per ifp structure
not a ifp->info structure with a ei per connected.

Some minor code cleanup as well with macros and
their weird usage.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoeigrpd: Start fixing eigrp_interface
Donald Sharp [Thu, 7 Sep 2017 00:12:46 +0000 (20:12 -0400)]
eigrpd: Start fixing eigrp_interface

The EIGRP interface handling code created 2 levels
of interface information, the ei( created per *connected*
address?????) and the ifp->info pointer.

Start the combination of pushing these together and
cleaning up the weirdness that is these two data
structures.

This commit probably breaks eigrp's handling of
interfaces.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoospfd: Fix maxage_lsa lookup key
Chirag Shah [Mon, 2 Oct 2017 21:07:13 +0000 (14:07 -0700)]
ospfd: Fix maxage_lsa lookup key

maxage_lsa using prefix structure to store in route_table.
The lsa pointer is 4-8 bytes depending on arch, but prefix member field
would be 1 byte. Use ptr field of prefix structure to store lsa pointer.
Also memset to initialize to avoid crash on ARM platform as same LSA is
referenced from multiple times during shutdown of ospf.

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoMerge pull request #1259 from qlyoung/vtysh-warn-mi
Jafar Al-Gharaibeh [Mon, 2 Oct 2017 20:19:21 +0000 (15:19 -0500)]
Merge pull request #1259 from qlyoung/vtysh-warn-mi

vtysh: 'x not running' redux

6 years agoMerge pull request #1250 from chiragshah6/ospf_vrf_dev
Jafar Al-Gharaibeh [Mon, 2 Oct 2017 19:03:42 +0000 (14:03 -0500)]
Merge pull request #1250 from chiragshah6/ospf_vrf_dev

ospfd: fix virtual-link config command

6 years agoMerge pull request #1277 from donaldsharp/zebra_crash
Renato Westphal [Mon, 2 Oct 2017 17:05:54 +0000 (14:05 -0300)]
Merge pull request #1277 from donaldsharp/zebra_crash

Zebra crash and valgrind issues

6 years agoospfd: ospf use macro for authentication
Chirag Shah [Mon, 2 Oct 2017 16:17:33 +0000 (09:17 -0700)]
ospfd: ospf use macro for authentication

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoMerge pull request #1254 from donaldsharp/irdp_no_crash
Renato Westphal [Mon, 2 Oct 2017 15:41:24 +0000 (12:41 -0300)]
Merge pull request #1254 from donaldsharp/irdp_no_crash

zebra: Fix irdp so it doesn't crash when looked at

6 years agozebra: Cleanup ptm memory *after* we tell the sockets to clean up
Donald Sharp [Mon, 2 Oct 2017 14:47:25 +0000 (10:47 -0400)]
zebra: Cleanup ptm memory *after* we tell the sockets to clean up

The zebra_ptm_finish() code was being called before the
client_list deletion.  The client_list deletion is
attempting to call the ptm daemon and shut down the connection.
We should not be doing this *after* we shut down memory associated
with it as that we were writing into memory in random spots
in this case.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agozebra: Properly initialize memory for rtadv
Donald Sharp [Mon, 2 Oct 2017 14:45:30 +0000 (10:45 -0400)]
zebra: Properly initialize memory for rtadv

The adata pointer was not properly being set to
0 before being used.  In addition notice malloc
failure and hard exit.  If we have no memory on
startup something terrible has gone wrong and
we were going to crash shortly here anyways.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoMerge pull request #1276 from opensourcerouting/isis-fix-vertex-queue
Donald Sharp [Mon, 2 Oct 2017 14:51:07 +0000 (10:51 -0400)]
Merge pull request #1276 from opensourcerouting/isis-fix-vertex-queue

isisd: fix vertex queue comparator

6 years agozebra: Fix valgrind report of unintialized data
Donald Sharp [Mon, 2 Oct 2017 14:42:53 +0000 (10:42 -0400)]
zebra: Fix valgrind report of unintialized data

When calling the kernel we are not properly initializing
iov and msg on function startup.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
6 years agoisisd: fix vertex queue comparator
Christian Franke [Mon, 2 Oct 2017 14:01:58 +0000 (16:01 +0200)]
isisd: fix vertex queue comparator

While vertizes should be strictly ordered on insertion, deletion
will of course encouter equality.

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
6 years agoscan-build: fix warning
Vincent JARDIN [Wed, 27 Sep 2017 22:18:36 +0000 (00:18 +0200)]
scan-build: fix warning

Do not change the implementation, just fix scan-build/clang warning.

6 years agoospf_packet: scan-build/clang clean up
Vincent JARDIN [Wed, 27 Sep 2017 22:05:52 +0000 (00:05 +0200)]
ospf_packet: scan-build/clang clean up

get the code safer using snprintf().

6 years agoscan-build: cleanup some warnings
Vincent JARDIN [Wed, 27 Sep 2017 21:38:19 +0000 (23:38 +0200)]
scan-build: cleanup some warnings

Current cleanup is for unset values or variables that are not used anymore.

Regarding ospfd/ospf_vty.c: argv_find()
  we'll never get it NULL, so get coststr = argv[idx]->arg;

6 years agosha256: fix clang warning
Vincent JARDIN [Wed, 27 Sep 2017 21:29:49 +0000 (23:29 +0200)]
sha256: fix clang warning

t0 and t1 are not used, but want do really want them to be reset to secure
the stack.
Suggested by Quentin: let's use memset() to be consistent.

6 years agoMerge pull request #1260 from donaldsharp/logrotate
Jafar Al-Gharaibeh [Sun, 1 Oct 2017 03:49:27 +0000 (22:49 -0500)]
Merge pull request #1260 from donaldsharp/logrotate

debian: Fix logrotate when FRR is not running

6 years agoMerge pull request #1265 from donaldsharp/pim_fill
Jafar Al-Gharaibeh [Sun, 1 Oct 2017 03:48:37 +0000 (22:48 -0500)]
Merge pull request #1265 from donaldsharp/pim_fill

pimd: Add 'show ip mroute fill' command

6 years agoMerge pull request #1271 from donaldsharp/multiplier
Jafar Al-Gharaibeh [Sun, 1 Oct 2017 03:47:43 +0000 (22:47 -0500)]
Merge pull request #1271 from donaldsharp/multiplier

lib: Fix abbreviation

6 years agoospfd: fix area virtual-link command
Chirag Shah [Sun, 1 Oct 2017 02:14:18 +0000 (19:14 -0700)]
ospfd: fix area virtual-link command

Adjust to review comments

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoospfd: ospf virtual-link fix
Chirag Shah [Fri, 29 Sep 2017 17:52:11 +0000 (10:52 -0700)]
ospfd: ospf virtual-link fix

Initialize idx to 0 and remove reassignment of idx

Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
6 years agoMerge pull request #1255 from qlyoung/vtysh-remove-double-slash
Renato Westphal [Fri, 29 Sep 2017 17:47:48 +0000 (14:47 -0300)]
Merge pull request #1255 from qlyoung/vtysh-remove-double-slash

vtysh: remove extra / in config path