frr
frr copied to clipboard
mgmtd: Support for operational data retrieval via MGMT frontend interface.
This is a full fledge implementation for retrieving operational state/data from one (or more) backend component (provided the component already supports providing operational state through northbound layer). This is based on the architectural/design discussions on MGMTd we had way back in 2021 (request you to refer to the slides on MGMTd architecture and design on the 'yang' slack channel). Previously when we implemented the Config workflow some of the ground work (especially on the front-end interface, as well as some on the main MGMTd daemonn) was done already. This PR completes the work needed on the MGMTd daemon and the MGMT backend client library needed for MGMTd to get operational data from or one or more backend clients corresponding to the single GET-DATA request received on front-end interface.
We have added Zebra as a new MGMT backend client as Zebra was already supporting providing operational state via Northbound layer. Adding zebra helped us portray the functionalities implemented in this PR as well.
We have also introduced support for wildcard characters in the Yang GET-DATA query URL. Some of the code is written to specifically take care of matching and resolving YANG URLs containing wildcard characters to absolute YANG data URLS and return them all as part of the response. Part of the resolution happens on the MGMTd based on the individual component Yang Path mapping/ subscription registry. This is done to figure out all the backend clients involved in the specific GET-DATA request from front-end client (along with the exact data subtrees they need reply to). Rest of the resolution actual data items happens on the backend client. Some examples of wildcard supports are..
- Retrieve a specific route across all tables in Zebra
frr# do sh mgmt get-data operational /frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='*'][table-id='*']/route[prefix='1.1.1.1/32']/
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/metric": "0"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/metric": "0"
...
frr#
- Find the distances of all the routes across IPV4-unicast AFI-SAFI
frr# do sh mgmt get-data operational /frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='*']/route[prefix='*']/route-entry[protocol='*']/distance
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='0.0.0.0/0']/route-entry[protocol='kernel']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='10.0.1.0/24']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='10.0.2.0/24']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='10.108.184.0/23']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/distance": "1"
frr#
- Find all the static routes across all the AFI-SAFIs
frr# do sh mgmt get-data operational /frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='*'][table-id='*']/route[prefix='*']/route-entry[protocol='static']/
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/distance": "1"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/metric": "0"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/nexthop-group/id": "20"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/nexthop-group/nexthop[nh-type='blackhole'][vrf='0'][gateway=''][interface=' ']/active": "(null)"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='11.11.11.11/32']/route-entry[protocol='static']/nexthop-group/nexthop[nh-type='blackhole'][vrf='0'][gateway=''][interface=' ']/bh-type": "null"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='abcd::11:11:11:11/128']/route-entry[protocol='static']/distance": "1"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='abcd::11:11:11:11/128']/route-entry[protocol='static']/metric": "0"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='abcd::11:11:11:11/128']/route-entry[protocol='static']/nexthop-group/id": "22"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='abcd::11:11:11:11/128']/route-entry[protocol='static']/nexthop-group/nexthop[nh-type='blackhole'][vrf='0'][gateway=''][interface=' ']/active": "(null)"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='abcd::11:11:11:11/128']/route-entry[protocol='static']/nexthop-group/nexthop[nh-type='blackhole'][vrf='0'][gateway=''][interface=' ']/bh-type": "null"
frr#
- Get the entire operational state maintained on the device across all the MGMT backend clients.
frr# do sh mgmt get-data operational /
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/metric": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/selected": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/installed": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/internal-flags": "8"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/internal-status": "16"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/uptime": "2023-09-14T07:23:12.488160Z"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/id": "10"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='lo']/active": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-unicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='lo']/fib": "(null)"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/metric": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/selected": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/internal-flags": "8"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/uptime": "2023-09-14T07:23:12.488159Z"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/id": "10"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='lo']/active": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv4-multicast'][table-id='254']/route[prefix='1.1.1.1/32']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='lo']/fib": "(null)"
...
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/distance": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/metric": "0"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/selected": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/installed": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/internal-flags": "8"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/internal-status": "16"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/uptime": "2023-09-14T07:23:12.488159Z"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/nexthop-group/id": "14"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='ens160']/active": "(null)"
"/frr-vrf:lib/vrf[name='default']/frr-zebra:zebra/ribs/rib[afi-safi-name='frr-routing:ipv6-unicast'][table-id='254']/route[prefix='2402:740:2:207::/64']/route-entry[protocol='connected']/nexthop-group/nexthop[nh-type='ifindex'][vrf='0'][gateway=''][interface='ens160']/fib": "(null)"
...
"/frr-vrf:lib/vrf[name='default']/state/id": "0"
"/frr-interface:lib/interface[name='ens160']/vrf": "default"
"/frr-interface:lib/interface[name='ens160']/state/if-index": "2"
"/frr-interface:lib/interface[name='ens160']/state/mtu": "1500"
"/frr-interface:lib/interface[name='ens160']/state/mtu6": "1500"
"/frr-interface:lib/interface[name='ens160']/state/speed": "10000"
"/frr-interface:lib/interface[name='ens160']/state/metric": "0"
"/frr-interface:lib/interface[name='ens160']/state/phy-address": "00:50:56:b7:b7:a0"
...
frr#
The PR contains changes related to mgmt daemon, mgmt client and utility libraries, documentation and tests.
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Failed
Ubuntu 18.04 i386 build: Failed (click for details)
Make failed for Ubuntu 18.04 i386 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17:0,
mgmtd/mgmt_txn.c: In function mgmt_txn_notify_be_getdata_req_reply:
./lib/zlog.h:109:20: error: format %lu expects argument of type long unsigned int, but argument 5 has type size_t {aka unsigned int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
#define zlog_debug(...) _zlog_ecref(0, LOG_DEBUG, __VA_ARGS__)
./lib/debug.h:210:4: note: in expansion of macro zlog_debug
./lib/debug.h:218:32: note: in expansion of macro DEBUG
#define DEBUGD(name, fmt, ...) DEBUG(debug, name, fmt, ##__VA_ARGS__)
mgmtd/mgmt_txn.c:18:2: note: in expansion of macro DEBUGD
Ubuntu 18.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/config.status/config.status Ubuntu 18.04 i386 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: Failed (click for details)
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18ARM7BUILD/config.status/config.status Ubuntu 18.04 arm7 build: Unknown LogMake failed for Ubuntu 18.04 arm7 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17:0,
mgmtd/mgmt_txn.c: In function mgmt_txn_notify_be_getdata_req_reply:
./lib/zlog.h:109:20: error: format %lu expects argument of type long unsigned int, but argument 5 has type size_t {aka unsigned int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
#define zlog_debug(...) _zlog_ecref(0, LOG_DEBUG, __VA_ARGS__)
./lib/debug.h:210:4: note: in expansion of macro zlog_debug
./lib/debug.h:218:32: note: in expansion of macro DEBUG
#define DEBUGD(name, fmt, ...) DEBUG(debug, name, fmt, ##__VA_ARGS__)
mgmtd/mgmt_txn.c:18:2: note: in expansion of macro DEBUGD
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB11AMD64/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10589: lib/mgmt_util.lo] Error 1
In file included from ./lib/log.h:17,
mgmtd/mgmt_txn.c: In function mgmt_txn_process_get_data:
./lib/zlog.h:109:20: error: format %Lx expects argument of type uint64_t, but argument 6 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB11AMD64/config.status/config.status
OpenBSD 7 amd64 build: Failed (click for details)
OpenBSD 7 amd64 build: Unknown LogMake failed for OpenBSD 7 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/CI011BUILD/ErrorLog/log_make.txt)
gmake all-am
gmake[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
mgmtd/mgmt_ds.c:598:5: error: variable 'ds_ctx' is uninitialized when used here [-Werror,-Wuninitialized]
mgmtd/mgmt_ds.c:577:28: note: initialize the variable 'ds_ctx' to silence this warning
1 error generated.
gmake[1]: *** [Makefile:10572: mgmtd/mgmt_ds.o] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
Redhat 8 amd64 build: Failed (click for details)
Redhat 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/config.status/config.statusMake failed for Redhat 8 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10585: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:6444: all] Error 2
Redhat 8 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/config.log/config.log.gz
Debian 10 amd64 build: Failed (click for details)
Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/config.status/config.statusMake failed for Debian 10 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:6445: all] Error 2
Debian 10 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/config.log/config.log.gz
Ubuntu 20.04 amd64 build: Failed (click for details)
Ubuntu 20.04 amd64 build: Unknown LogMake failed for Ubuntu 20.04 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)
In file included from /usr/include/string.h:495,
In function strncpy,
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: error: __builtin_strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make: *** [Makefile:6445: all] Error 2
Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U2004AMD64BUILD/config.status/config.status
Ubuntu 22.04 amd64 build: Failed (click for details)
Ubuntu 22.04 amd64 build: Unknown LogMake failed for Ubuntu 22.04 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U22AMD64BUILD/ErrorLog/log_make.txt)
In file included from /usr/include/string.h:535,
In function strncpy,
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:95:10: error: __builtin_strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10589: lib/mgmt_util.lo] Error 1
frr.texi:18: warning: @definfoenclose is obsolete.
frr.texi:19: warning: @definfoenclose is obsolete.
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
Ubuntu 22.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U22AMD64BUILD/config.status/config.status
FreeBSD 11 amd64 build: Failed (click for details)
FreeBSD 11 amd64 build: Unknown LogMake failed for FreeBSD 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/CI009BUILD/ErrorLog/log_make.txt)
gmake[1]: Entering directory '/usr/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function 'mgmt_xpath_resolve_wildcard':
lib/mgmt_util.c:314:2: error: 'strncpy' specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:10588: lib/mgmt_util.lo] Error 1
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:67: WARNING: duplicate clicmd description of log-adjacency-changes, other instance in fabricd
Redhat 9 amd64 build: Failed (click for details)
Redhat 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/config.status/config.statusMake failed for Redhat 9 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:9: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:67: WARNING: duplicate clicmd description of log-adjacency-changes, other instance in fabricd
Redhat 9 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/config.log/config.log.gz
Successful on other platforms/tests
- FreeBSD 12 amd64 build
- Ubuntu 18.04 arm8 build
- CentOS 7 amd64 build
- Debian 9 amd64 build
- Ubuntu 18.04 amd64 build
- Ubuntu 18.04 ppc64le build
Warnings Generated during build:
Checkout code: Successful with additional warnings
Ubuntu 18.04 i386 build: Failed (click for details)
Make failed for Ubuntu 18.04 i386 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17:0,
mgmtd/mgmt_txn.c: In function mgmt_txn_notify_be_getdata_req_reply:
./lib/zlog.h:109:20: error: format %lu expects argument of type long unsigned int, but argument 5 has type size_t {aka unsigned int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
#define zlog_debug(...) _zlog_ecref(0, LOG_DEBUG, __VA_ARGS__)
./lib/debug.h:210:4: note: in expansion of macro zlog_debug
./lib/debug.h:218:32: note: in expansion of macro DEBUG
#define DEBUGD(name, fmt, ...) DEBUG(debug, name, fmt, ##__VA_ARGS__)
mgmtd/mgmt_txn.c:18:2: note: in expansion of macro DEBUGD
Ubuntu 18.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/config.status/config.status Ubuntu 18.04 i386 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18I386BUILD/config.log/config.log.gz
Ubuntu 18.04 arm7 build: Failed (click for details)
Ubuntu 18.04 arm7 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18ARM7BUILD/config.status/config.status Ubuntu 18.04 arm7 build: Unknown LogMake failed for Ubuntu 18.04 arm7 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17:0,
mgmtd/mgmt_txn.c: In function mgmt_txn_notify_be_getdata_req_reply:
./lib/zlog.h:109:20: error: format %lu expects argument of type long unsigned int, but argument 5 has type size_t {aka unsigned int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
#define zlog_debug(...) _zlog_ecref(0, LOG_DEBUG, __VA_ARGS__)
./lib/debug.h:210:4: note: in expansion of macro zlog_debug
./lib/debug.h:218:32: note: in expansion of macro DEBUG
#define DEBUGD(name, fmt, ...) DEBUG(debug, name, fmt, ##__VA_ARGS__)
mgmtd/mgmt_txn.c:18:2: note: in expansion of macro DEBUGD
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB11AMD64/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10589: lib/mgmt_util.lo] Error 1
In file included from ./lib/log.h:17,
mgmtd/mgmt_txn.c: In function mgmt_txn_process_get_data:
./lib/zlog.h:109:20: error: format %Lx expects argument of type uint64_t, but argument 6 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB11AMD64/config.status/config.status
OpenBSD 7 amd64 build: Failed (click for details)
OpenBSD 7 amd64 build: Unknown LogMake failed for OpenBSD 7 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/CI011BUILD/ErrorLog/log_make.txt)
gmake all-am
gmake[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
mgmtd/mgmt_ds.c:598:5: error: variable 'ds_ctx' is uninitialized when used here [-Werror,-Wuninitialized]
mgmtd/mgmt_ds.c:577:28: note: initialize the variable 'ds_ctx' to silence this warning
1 error generated.
gmake[1]: *** [Makefile:10572: mgmtd/mgmt_ds.o] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
Redhat 8 amd64 build: Failed (click for details)
Redhat 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/config.status/config.statusMake failed for Redhat 8 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10585: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:6444: all] Error 2
Redhat 8 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/REDHAT8/config.log/config.log.gz
Debian 10 amd64 build: Failed (click for details)
Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/config.status/config.statusMake failed for Debian 10 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:2: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:6445: all] Error 2
Debian 10 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/DEB10BUILD/config.log/config.log.gz
Ubuntu 20.04 amd64 build: Failed (click for details)
Ubuntu 20.04 amd64 build: Unknown LogMake failed for Ubuntu 20.04 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)
In file included from /usr/include/string.h:495,
In function strncpy,
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: error: __builtin_strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/pbr.rst:32: WARNING: duplicate label nexthop-groups, other instance in /home/ci/cibuild.14198/frr-source/doc/user/nexthop_groups.rst
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
make: *** [Makefile:6445: all] Error 2
Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U2004AMD64BUILD/config.status/config.status
Ubuntu 22.04 amd64 build: Failed (click for details)
Ubuntu 22.04 amd64 build: Unknown LogMake failed for Ubuntu 22.04 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U22AMD64BUILD/ErrorLog/log_make.txt)
In file included from /usr/include/string.h:535,
In function strncpy,
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:95:10: error: __builtin_strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10589: lib/mgmt_util.lo] Error 1
frr.texi:18: warning: @definfoenclose is obsolete.
frr.texi:19: warning: @definfoenclose is obsolete.
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.14198/frr-source'
Ubuntu 22.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/U22AMD64BUILD/config.status/config.status
FreeBSD 11 amd64 build: Failed (click for details)
FreeBSD 11 amd64 build: Unknown LogMake failed for FreeBSD 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/CI009BUILD/ErrorLog/log_make.txt)
gmake[1]: Entering directory '/usr/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function 'mgmt_xpath_resolve_wildcard':
lib/mgmt_util.c:314:2: error: 'strncpy' specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:10588: lib/mgmt_util.lo] Error 1
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
/usr/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:67: WARNING: duplicate clicmd description of log-adjacency-changes, other instance in fabricd
Redhat 9 amd64 build: Failed (click for details)
Redhat 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/config.status/config.statusMake failed for Redhat 9 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/ErrorLog/log_make.txt)
make[1]: Entering directory '/home/ci/cibuild.14198/frr-source'
lib/mgmt_util.c: In function mgmt_xpath_resolve_wildcard:
lib/mgmt_util.c:314:9: error: strncpy specified bound 1024 equals destination size [-Werror=stringop-truncation]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:10586: lib/mgmt_util.lo] Error 1
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:43: WARNING: duplicate clicmd description of net XX.XXXX. ... .XXX.XX, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:53: WARNING: duplicate clicmd description of domain-password [clear | md5] <password>, other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:58: WARNING: duplicate clicmd description of attached-bit [receive ignore | send], other instance in fabricd
/home/ci/cibuild.14198/frr-source/doc/user/isisd.rst:67: WARNING: duplicate clicmd description of log-adjacency-changes, other instance in fabricd
Redhat 9 amd64 build: Unknown Log <config.log.gz> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14198/artifact/RH9BUILD/config.log/config.log.gz
<stdin>:17: trailing whitespace.
of validating any data under these data portions, by specifying only
<stdin>:46: trailing whitespace.
'MGMT_SUBSCR_VALIDATE_CFG' and 'MGMT_SUBSCR_OPER_OWN' values for the
<stdin>:168: trailing whitespace.
<stdin>:234: trailing whitespace.
<stdin>:335: trailing whitespace.
reply.next_indx =
warning: squelched 59 whitespace errors
warning: 64 lines add whitespace errors.
Report for mgmt_be_adapter.c | 30 issues
===============================================
< ERROR: code indent should use tabs where possible
< #773: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:773:
< WARNING: please, no space before tabs
< #773: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:773:
< WARNING: please, no spaces at the start of a line
< #773: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:773:
< ERROR: trailing whitespace
< #786: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:786:
< WARNING: please, no spaces at the start of a line
< #786: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:786:
< ERROR: trailing whitespace
< #792: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:792:
< ERROR: code indent should use tabs where possible
< #823: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:823:
< WARNING: please, no space before tabs
< #823: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:823:
< WARNING: please, no spaces at the start of a line
< #823: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:823:
< ERROR: trailing whitespace
< #826: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:826:
< WARNING: please, no spaces at the start of a line
< #826: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:826:
< ERROR: trailing whitespace
< #878: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:878:
< WARNING: please, no spaces at the start of a line
< #878: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:878:
< WARNING: space prohibited between function name and open parenthesis '('
< #932: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:932:
< WARNING: unnecessary whitespace before a quoted newline
< #977: FILE: /tmp/f1-2704116/mgmt_be_adapter.c:977:
Report for mgmt_be_adapter.h | 18 issues
===============================================
< ERROR: trailing whitespace
< #91: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:91:
< WARNING: please, no spaces at the start of a line
< #91: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:91:
< ERROR: code indent should use tabs where possible
< #104: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:104:
< WARNING: please, no space before tabs
< #104: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:104:
< WARNING: please, no spaces at the start of a line
< #104: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:104:
< WARNING: please, no space before tabs
< #232: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:232:
< WARNING: please, no space before tabs
< #233: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:233:
< WARNING: please, no space before tabs
< #234: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:234:
< WARNING: please, no space before tabs
< #235: FILE: /tmp/f1-2704116/mgmt_be_adapter.h:235:
Report for mgmt_be_client.c | 28 issues
===============================================
< ERROR: trailing whitespace
< #87: FILE: /tmp/f1-2704116/mgmt_be_client.c:87:
< WARNING: please, no spaces at the start of a line
< #87: FILE: /tmp/f1-2704116/mgmt_be_client.c:87:
< ERROR: trailing whitespace
< #222: FILE: /tmp/f1-2704116/mgmt_be_client.c:222:
< ERROR: trailing whitespace
< #848: FILE: /tmp/f1-2704116/mgmt_be_client.c:848:
< ERROR: trailing whitespace
< #909: FILE: /tmp/f1-2704116/mgmt_be_client.c:909:
< ERROR: trailing whitespace
< #977: FILE: /tmp/f1-2704116/mgmt_be_client.c:977:
< WARNING: suspect code indent for conditional statements (8, 24)
< #1024: FILE: /tmp/f1-2704116/mgmt_be_client.c:1024:
< WARNING: braces {} are not necessary for single statement blocks
< #1035: FILE: /tmp/f1-2704116/mgmt_be_client.c:1035:
< ERROR: code indent should use tabs where possible
< #1098: FILE: /tmp/f1-2704116/mgmt_be_client.c:1098:
< WARNING: please, no spaces at the start of a line
< #1098: FILE: /tmp/f1-2704116/mgmt_be_client.c:1098:
< ERROR: code indent should use tabs where possible
< #1099: FILE: /tmp/f1-2704116/mgmt_be_client.c:1099:
< WARNING: please, no spaces at the start of a line
< #1099: FILE: /tmp/f1-2704116/mgmt_be_client.c:1099:
< ERROR: code indent should use tabs where possible
< #1100: FILE: /tmp/f1-2704116/mgmt_be_client.c:1100:
< WARNING: please, no spaces at the start of a line
< #1100: FILE: /tmp/f1-2704116/mgmt_be_client.c:1100:
Report for mgmt_ds.c | 8 issues
===============================================
< ERROR: code indent should use tabs where possible
< #168: FILE: /tmp/f1-2704116/mgmt_ds.c:168:
< WARNING: please, no space before tabs
< #168: FILE: /tmp/f1-2704116/mgmt_ds.c:168:
< ERROR: trailing whitespace
< #237: FILE: /tmp/f1-2704116/mgmt_ds.c:237:
< WARNING: Consider removing the code enclosed by this #if 0 and its #endif
< #554: FILE: /tmp/f1-2704116/mgmt_ds.c:554:
Report for mgmt_fe_adapter.c | 2 issues
===============================================
< ERROR: spaces required around that '?' (ctx:WxV)
< #463: FILE: /tmp/f1-2704116/mgmt_fe_adapter.c:463:
Report for mgmt_txn.c | 132 issues
===============================================
< ERROR: trailing whitespace
< #211: FILE: /tmp/f1-2704116/mgmt_txn.c:211:
< ERROR: trailing whitespace
< #454: FILE: /tmp/f1-2704116/mgmt_txn.c:454:
< WARNING: please, no spaces at the start of a line
< #454: FILE: /tmp/f1-2704116/mgmt_txn.c:454:
< ERROR: trailing whitespace
< #459: FILE: /tmp/f1-2704116/mgmt_txn.c:459:
< ERROR: trailing whitespace
< #487: FILE: /tmp/f1-2704116/mgmt_txn.c:487:
< ERROR: trailing whitespace
< #491: FILE: /tmp/f1-2704116/mgmt_txn.c:491:
< ERROR: trailing whitespace
< #498: FILE: /tmp/f1-2704116/mgmt_txn.c:498:
< ERROR: trailing whitespace
< #500: FILE: /tmp/f1-2704116/mgmt_txn.c:500:
< ERROR: trailing whitespace
< #522: FILE: /tmp/f1-2704116/mgmt_txn.c:522:
< ERROR: trailing whitespace
< #525: FILE: /tmp/f1-2704116/mgmt_txn.c:525:
< ERROR: trailing whitespace
< #530: FILE: /tmp/f1-2704116/mgmt_txn.c:530:
< ERROR: trailing whitespace
< #533: FILE: /tmp/f1-2704116/mgmt_txn.c:533:
< ERROR: trailing whitespace
< #538: FILE: /tmp/f1-2704116/mgmt_txn.c:538:
< ERROR: trailing whitespace
< #541: FILE: /tmp/f1-2704116/mgmt_txn.c:541:
< ERROR: trailing whitespace
< #545: FILE: /tmp/f1-2704116/mgmt_txn.c:545:
< ERROR: trailing whitespace
< #550: FILE: /tmp/f1-2704116/mgmt_txn.c:550:
< ERROR: trailing whitespace
< #555: FILE: /tmp/f1-2704116/mgmt_txn.c:555:
< ERROR: trailing whitespace
< #567: FILE: /tmp/f1-2704116/mgmt_txn.c:567:
< ERROR: trailing whitespace
< #571: FILE: /tmp/f1-2704116/mgmt_txn.c:571:
< ERROR: trailing whitespace
< #582: FILE: /tmp/f1-2704116/mgmt_txn.c:582:
< ERROR: trailing whitespace
< #970: FILE: /tmp/f1-2704116/mgmt_txn.c:970:
< WARNING: please, no spaces at the start of a line
< #970: FILE: /tmp/f1-2704116/mgmt_txn.c:970:
< ERROR: trailing whitespace
< #1312: FILE: /tmp/f1-2704116/mgmt_txn.c:1312:
< ERROR: code indent should use tabs where possible
< #1381: FILE: /tmp/f1-2704116/mgmt_txn.c:1381:
< WARNING: please, no space before tabs
< #1381: FILE: /tmp/f1-2704116/mgmt_txn.c:1381:
< WARNING: please, no spaces at the start of a line
< #1381: FILE: /tmp/f1-2704116/mgmt_txn.c:1381:
< ERROR: code indent should use tabs where possible
< #1382: FILE: /tmp/f1-2704116/mgmt_txn.c:1382:
< WARNING: please, no space before tabs
< #1382: FILE: /tmp/f1-2704116/mgmt_txn.c:1382:
< WARNING: please, no spaces at the start of a line
< #1382: FILE: /tmp/f1-2704116/mgmt_txn.c:1382:
< ERROR: code indent should use tabs where possible
< #1384: FILE: /tmp/f1-2704116/mgmt_txn.c:1384:
< WARNING: please, no space before tabs
< #1384: FILE: /tmp/f1-2704116/mgmt_txn.c:1384:
< ERROR: code indent should use tabs where possible
< #1386: FILE: /tmp/f1-2704116/mgmt_txn.c:1386:
< WARNING: please, no space before tabs
< #1386: FILE: /tmp/f1-2704116/mgmt_txn.c:1386:
< ERROR: code indent should use tabs where possible
< #1387: FILE: /tmp/f1-2704116/mgmt_txn.c:1387:
< WARNING: please, no space before tabs
< #1387: FILE: /tmp/f1-2704116/mgmt_txn.c:1387:
< WARNING: please, no spaces at the start of a line
< #1387: FILE: /tmp/f1-2704116/mgmt_txn.c:1387:
< ERROR: trailing whitespace
< #1710: FILE: /tmp/f1-2704116/mgmt_txn.c:1710:
< WARNING: please, no space before tabs
< #1934: FILE: /tmp/f1-2704116/mgmt_txn.c:1934:
< ERROR: trailing whitespace
< #2217: FILE: /tmp/f1-2704116/mgmt_txn.c:2217:
< ERROR: trailing whitespace
< #2230: FILE: /tmp/f1-2704116/mgmt_txn.c:2230:
< ERROR: code indent should use tabs where possible
< #2280: FILE: /tmp/f1-2704116/mgmt_txn.c:2280:
< WARNING: please, no space before tabs
< #2280: FILE: /tmp/f1-2704116/mgmt_txn.c:2280:
< WARNING: please, no spaces at the start of a line
< #2280: FILE: /tmp/f1-2704116/mgmt_txn.c:2280:
< ERROR: trailing whitespace
< #2293: FILE: /tmp/f1-2704116/mgmt_txn.c:2293:
< WARNING: please, no spaces at the start of a line
< #2293: FILE: /tmp/f1-2704116/mgmt_txn.c:2293:
< WARNING: braces {} are not necessary for single statement blocks
< #2354: FILE: /tmp/f1-2704116/mgmt_txn.c:2354:
< ERROR: trailing whitespace
< #2368: FILE: /tmp/f1-2704116/mgmt_txn.c:2368:
< ERROR: trailing whitespace
< #2382: FILE: /tmp/f1-2704116/mgmt_txn.c:2382:
< ERROR: trailing whitespace
< #2383: FILE: /tmp/f1-2704116/mgmt_txn.c:2383:
< WARNING: Missing a blank line after declarations
< #2388: FILE: /tmp/f1-2704116/mgmt_txn.c:2388:
< ERROR: trailing whitespace
< #2393: FILE: /tmp/f1-2704116/mgmt_txn.c:2393:
< WARNING: braces {} are not necessary for single statement blocks
< #2403: FILE: /tmp/f1-2704116/mgmt_txn.c:2403:
< ERROR: trailing whitespace
< #2511: FILE: /tmp/f1-2704116/mgmt_txn.c:2511:
< ERROR: code indent should use tabs where possible
< #3017: FILE: /tmp/f1-2704116/mgmt_txn.c:3017:
< WARNING: please, no space before tabs
< #3017: FILE: /tmp/f1-2704116/mgmt_txn.c:3017:
< WARNING: please, no spaces at the start of a line
< #3017: FILE: /tmp/f1-2704116/mgmt_txn.c:3017:
< ERROR: code indent should use tabs where possible
< #3065: FILE: /tmp/f1-2704116/mgmt_txn.c:3065:
< WARNING: please, no space before tabs
< #3065: FILE: /tmp/f1-2704116/mgmt_txn.c:3065:
< ERROR: code indent should use tabs where possible
< #3066: FILE: /tmp/f1-2704116/mgmt_txn.c:3066:
< ERROR: trailing whitespace
< #3096: FILE: /tmp/f1-2704116/mgmt_txn.c:3096:
< ERROR: code indent should use tabs where possible
< #3099: FILE: /tmp/f1-2704116/mgmt_txn.c:3099:
< WARNING: please, no space before tabs
< #3099: FILE: /tmp/f1-2704116/mgmt_txn.c:3099:
< ERROR: trailing whitespace
< #3301: FILE: /tmp/f1-2704116/mgmt_txn.c:3301:
< ERROR: trailing whitespace
< #3324: FILE: /tmp/f1-2704116/mgmt_txn.c:3324:
< ERROR: trailing whitespace
< #3326: FILE: /tmp/f1-2704116/mgmt_txn.c:3326:
< WARNING: braces {} are not necessary for single statement blocks
< #3334: FILE: /tmp/f1-2704116/mgmt_txn.c:3334:
Report for mgmt_util.c | 103 issues
===============================================
WARNING: please, no space before tabs
#31: FILE: /tmp/f1-2704116/mgmt_util.c:31:
+^I// ^I xpath, xpath_len);$
WARNING: please, no space before tabs
#168: FILE: /tmp/f1-2704116/mgmt_util.c:168:
+^I^I// ^Ixpath_regexp[re_indx], re_indx, rexp_len, re_wild, xpath[xp_indx],$
WARNING: please, no space before tabs
#169: FILE: /tmp/f1-2704116/mgmt_util.c:169:
+^I^I// ^Ixp_indx, xpath_len, xp_wild, *(xp_next-1), enter_wild_match, match, match_len);$
WARNING: Block comments should align the * on each line
#193: FILE: /tmp/f1-2704116/mgmt_util.c:193:
+ /*
+ * Copy rest of the XPath length from the bigger XPath.
ERROR: trailing whitespace
#221: FILE: /tmp/f1-2704116/mgmt_util.c:221:
+^I$
ERROR: space required before the open parenthesis '('
#226: FILE: /tmp/f1-2704116/mgmt_util.c:226:
+ switch(xpath[indx]) {
ERROR: return is not a function, parentheses are not required
#234: FILE: /tmp/f1-2704116/mgmt_util.c:234:
+ return (wc_found ? key_start : -1);
WARNING: please, no space before tabs
#272: FILE: /tmp/f1-2704116/mgmt_util.c:272:
+^I^I// ^Iindx, xpath[indx], key_val, wc_found, last_sep, key_start, key_end ? *key_end : -1);$
ERROR: "foo* bar" should be "foo *bar"
#283: FILE: /tmp/f1-2704116/mgmt_util.c:283:
+ void *ctxt, char* xpath_key),
WARNING: please, no space before tabs
#302: FILE: /tmp/f1-2704116/mgmt_util.c:302:
+^I// ^I __func__, level, start_indx, wc_key_start, wc_key_end, xpath);$
WARNING: strncpy() is error-prone; please use strlcpy() if possible, or memcpy()#314: FILE: /tmp/f1-2704116/mgmt_util.c:314:
+ strncpy(xpath_key, xpath, sizeof(xpath_key));
WARNING: please, no space before tabs
#318: FILE: /tmp/f1-2704116/mgmt_util.c:318:
+^I^I// ^I __func__, level, xpath_key);$
WARNING: please, no space before tabs
#346: FILE: /tmp/f1-2704116/mgmt_util.c:346:
+^I^I// ^I __func__, level, chld_xpath[indx], match, max_match,$
WARNING: please, no space before tabs
#347: FILE: /tmp/f1-2704116/mgmt_util.c:347:
+^I^I// ^I xp_match_len, xp_matched[num_dn_match]);$
WARNING: please, no space before tabs
#375: FILE: /tmp/f1-2704116/mgmt_util.c:375:
+^I^I// ^I xp_matched[num_dn_match]);$
WARNING: please, no space before tabs
#384: FILE: /tmp/f1-2704116/mgmt_util.c:384:
+^I^I^I// ^I __func__, level, xp_matched[indx],$
WARNING: please, no space before tabs
#385: FILE: /tmp/f1-2704116/mgmt_util.c:385:
+^I^I^I// ^I &xpath[start_indx+wc_key_end+1]);$
WARNING: strncat() is error-prone; please use strlcat() if possible#386: FILE: /tmp/f1-2704116/mgmt_util.c:386:
+ strncat(xp_matched[indx], &xpath[start_indx+wc_key_end], MGMTD_MAX_XPATH_LEN - xp_match_len);
WARNING: please, no space before tabs
#388: FILE: /tmp/f1-2704116/mgmt_util.c:388:
+^I^I^I// ^I __func__, level, xp_matched[indx]);$
WARNING: please, no space before tabs
#393: FILE: /tmp/f1-2704116/mgmt_util.c:393:
+^I^I^I// ^I dnode_matched[indx]);$
ERROR: code indent should use tabs where possible
#397: FILE: /tmp/f1-2704116/mgmt_util.c:397:
+ ^I^I^I^Iret = (*iter_fn)(dnode_matched[indx],$
WARNING: please, no space before tabs
#397: FILE: /tmp/f1-2704116/mgmt_util.c:397:
+ ^I^I^I^Iret = (*iter_fn)(dnode_matched[indx],$
WARNING: please, no spaces at the start of a line
#397: FILE: /tmp/f1-2704116/mgmt_util.c:397:
+ ^I^I^I^Iret = (*iter_fn)(dnode_matched[indx],$
ERROR: code indent should use tabs where possible
#398: FILE: /tmp/f1-2704116/mgmt_util.c:398:
+ ^I^I^I^I^I^I dnode_ctxt[indx], ctxt);$
WARNING: please, no space before tabs
#398: FILE: /tmp/f1-2704116/mgmt_util.c:398:
+ ^I^I^I^I^I^I dnode_ctxt[indx], ctxt);$
WARNING: please, no spaces at the start of a line
#398: FILE: /tmp/f1-2704116/mgmt_util.c:398:
+ ^I^I^I^I^I^I dnode_ctxt[indx], ctxt);$
Report for mgmt_util.h | 20 issues
===============================================
ERROR: space required before the open parenthesis '('
#18: FILE: /tmp/f1-2704116/mgmt_util.h:18:
+ switch(base_xpath[start_index]) {
WARNING: please, no space before tabs
#41: FILE: /tmp/f1-2704116/mgmt_util.h:41:
+^I^I// ^Istart_index, base_xpath[start_index], key_val, last_sep);$
ERROR: space required before the open parenthesis '('
#54: FILE: /tmp/f1-2704116/mgmt_util.h:54:
+ switch(base_xpath[start_index]) {
WARNING: please, no space before tabs
#79: FILE: /tmp/f1-2704116/mgmt_util.h:79:
+^I^I// ^Istart_index, base_xpath[start_index], key_val, last_sep);$
ERROR: "foo* bar" should be "foo *bar"
#169: FILE: /tmp/f1-2704116/mgmt_util.h:169:
+ void *ctxt, char* xpath_key),
Report for northbound.c | 2 issues
===============================================
< ERROR: trailing whitespace
< #2292: FILE: /tmp/f1-2704116/northbound.c:2292:
I'm a bit uncertain what this PR represents. If this were a proposal for how to approach operational data, I'd expect to see a detailed description of the approach, the proposal - but there's a one-sentence 'description.' If this was really meant to be a full, complete implementation, I'd expect the code to be in better shape - but it's littered with commented-out blocks, commented-out debugs, there are no comments for the proposed APIs, etc. So ... what is this?
I'm a bit uncertain what this PR represents. If this were a proposal for how to approach operational data, I'd expect to see a detailed description of the approach, the proposal - but there's a one-sentence 'description.' If this was really meant to be a full, complete implementation, I'd expect the code to be in better shape - but it's littered with commented-out blocks, commented-out debugs, there are no comments for the proposed APIs, etc. So ... what is this?
Hi @mjstapp this is a full fledge implementation for retrieving operational state/data from one (or more) backend component (provided the component already supports providing operational state through northbound layer). We are sorry that the description may not be clear. But this was based on the architectural/design discussions on MGMTd we had way back in 2021 (request you to refer to the slides on MGMTd architecture and design on the 'yang' slack channel). Previously when we implemented the Config workflow some of the ground work (especially on the front-end interface, as well as some on the main MGMTd daemonn) was done already. This PR completes the work needed on the MGMTd daemon and the MGMT backend client library needed for MGMTd to get operational data from or one or more backend clients corresponding to the single GET-DATA request received on front-end interface. We have added Zebra as a new MGMT backend client as Zebra was already supporting providing operational state via Northbound layer. Adding zebra helped us portray the functionalities implemented in this PR as well.
We have also introduced support for wildcard characters in the Yang GET-DATA query URL. Some of the code is written to specifically take care of matching and resolving YANG URLs containing wildcard characters to absolute YANG data URLS and return them all as part of the response. Part of the resolution happens on the MGMTd based on the individual component Yang Path mapping/ subscription registry. This is done to figure out all the backend clients involved in the specific GET-DATA request from front-end client (along with the exact data subtrees they need reply to). Rest of the resolution actual data items happens on the backend client.
[UPDATE] We have added all these details in the PR description. We also removed all the commented debugs, and we are also done with resolving all the CI failures as well as valgrind memleaks.
Thanks and regards -Pushpasis
Agree with @mjstapp. Overall mgmtd documentation seems a bit unfinished. Documentation is, but me as an operator would like to understand how to use it with CLI examples like you did in the comment, etc.
DISCLAIMER: my comment might not be super relevant to this PR, but just sayin'.
Agree with @mjstapp. Overall mgmtd documentation seems a bit unfinished. Documentation is, but me as an operator would like to understand how to use it with CLI examples like you did in the comment, etc.
DISCLAIMER: my comment might not be super relevant to this PR, but just sayin'.
Thank you @ton31337. We will see if we can add some more details in the developer documentation. Essentially all the architecture and design details are already captured in the slide deck pinned on the 'yang' slack channel. Maybe we need some of those details to the developer documentation.
Thanks -Pushpasis
This pull request has conflicts, please resolve those before we can evaluate the pull request.
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14298/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Failed
Checkout code: Failed (click for details)
PullReq merge failed. Please rebase your branch: see merge log in attachment https://ci1.netdef.org/browse/FRR-PULLREQ2-14298/artifact/CHECKOUT/ErrorLog/log_merge.txt
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14299/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Failed
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14299/artifact/DEB11AMD64/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17,
mgmtd/mgmt_txn.c: In function mgmt_txn_process_get_data:
./lib/zlog.h:109:20: error: format %Lx expects argument of type uint64_t, but argument 6 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
mgmtd/mgmt_txn.c:20:2: note: in expansion of macro zlog_err
mgmtd/mgmt_txn.c:2533:5: note: in expansion of macro MGMTD_TXN_ERR
2533 | MGMTD_TXN_ERR(
./lib/zlog.h:109:20: error: format %Lu expects argument of type uint64_t, but argument 7 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14299/artifact/DEB11AMD64/config.status/config.status
Successful on other platforms/tests
- Debian 9 amd64 build
- Ubuntu 18.04 ppc64le build
- Ubuntu 20.04 amd64 build
- Ubuntu 22.04 amd64 build
- FreeBSD 12 amd64 build
- Ubuntu 18.04 arm8 build
- Ubuntu 18.04 arm7 build
- Debian 10 amd64 build
- Redhat 9 amd64 build
- FreeBSD 11 amd64 build
- Ubuntu 18.04 amd64 build
- Ubuntu 18.04 i386 build
- OpenBSD 7 amd64 build
- CentOS 7 amd64 build
- Redhat 8 amd64 build
Warnings Generated during build:
Checkout code: Successful with additional warnings
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14299/artifact/DEB11AMD64/ErrorLog/log_make.txt)
In file included from ./lib/log.h:17,
mgmtd/mgmt_txn.c: In function mgmt_txn_process_get_data:
./lib/zlog.h:109:20: error: format %Lx expects argument of type uint64_t, but argument 6 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
mgmtd/mgmt_txn.c:20:2: note: in expansion of macro zlog_err
mgmtd/mgmt_txn.c:2533:5: note: in expansion of macro MGMTD_TXN_ERR
2533 | MGMTD_TXN_ERR(
./lib/zlog.h:109:20: error: format %Lu expects argument of type uint64_t, but argument 7 has type long long unsigned int [-Werror=format=]
./lib/zlog.h:112:26: note: in expansion of macro _zlog_ecref
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14299/artifact/DEB11AMD64/config.status/config.status
<stdin>:73: trailing whitespace.
of validating any data under these data portions, by specifying only
<stdin>:102: trailing whitespace.
'MGMT_SUBSCR_VALIDATE_CFG' and 'MGMT_SUBSCR_OPER_OWN' values for the
<stdin>:1289: trailing whitespace.
* Returns: The position of the previous separator if foumd, else -1.
<stdin>:1335: trailing whitespace.
* Returns: The position of the previous separator if foumd, else -1.
warning: 4 lines add whitespace errors.
Report for mgmt_be_adapter.c | 4 issues
===============================================
< WARNING: space prohibited between function name and open parenthesis '('
< #940: FILE: /tmp/f1-1473321/mgmt_be_adapter.c:940:
< WARNING: unnecessary whitespace before a quoted newline
< #985: FILE: /tmp/f1-1473321/mgmt_be_adapter.c:985:
Report for mgmt_be_client.c | 4 issues
===============================================
< WARNING: suspect code indent for conditional statements (8, 24)
< #1053: FILE: /tmp/f1-1473321/mgmt_be_client.c:1053:
< WARNING: braces {} are not necessary for single statement blocks
< #1064: FILE: /tmp/f1-1473321/mgmt_be_client.c:1064:
Report for mgmt_txn.c | 6 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #2392: FILE: /tmp/f1-1473321/mgmt_txn.c:2392:
< WARNING: Block comments should align the * on each line
< #2420: FILE: /tmp/f1-1473321/mgmt_txn.c:2420:
< WARNING: Missing a blank line after declarations
< #2426: FILE: /tmp/f1-1473321/mgmt_txn.c:2426:
Report for mgmt_util.c | 21 issues
===============================================
WARNING: Block comments should align the * on each line
#199: FILE: /tmp/f1-1473321/mgmt_util.c:199:
+ /*
+ * Copy rest of the XPath length from the bigger XPath.
ERROR: space required before the open parenthesis '('
#235: FILE: /tmp/f1-1473321/mgmt_util.c:235:
+ switch(xpath[indx]) {
ERROR: return is not a function, parentheses are not required
#243: FILE: /tmp/f1-1473321/mgmt_util.c:243:
+ return (wc_found ? key_start : -1);
WARNING: Missing a blank line after declarations
#395: FILE: /tmp/f1-1473321/mgmt_util.c:395:
+ int len = strlen(xp_matched[indx]);
+ MGMTD_UTIL_DBG(" [%d] --- Merge XPATH: [%s] + [%s]",
WARNING: strncat() is error-prone; please use strlcat() if possible#398: FILE: /tmp/f1-1473321/mgmt_util.c:398:
+ strncat(xp_matched[indx], &xpath[start_indx+wc_key_end], MGMTD_MAX_XPATH_LEN - xp_match_len);
Report for mgmt_util.h | 29 issues
===============================================
ERROR: trailing whitespace
#32: FILE: /tmp/f1-1473321/mgmt_util.h:32:
+ * Returns: The position of the previous separator if foumd, else -1. $
ERROR: space required before the open parenthesis '('
#40: FILE: /tmp/f1-1473321/mgmt_util.h:40:
+ switch(base_xpath[start_index]) {
ERROR: trailing whitespace
#78: FILE: /tmp/f1-1473321/mgmt_util.h:78:
+ * Returns: The position of the previous separator if foumd, else -1. $
ERROR: space required before the open parenthesis '('
#86: FILE: /tmp/f1-1473321/mgmt_util.h:86:
+ switch(base_xpath[start_index]) {
WARNING: please, no space before tabs
#213: FILE: /tmp/f1-1473321/mgmt_util.h:213:
+ * ^IThe number of tokens that matched between the regex and the$
WARNING: please, no space before tabs
#214: FILE: /tmp/f1-1473321/mgmt_util.h:214:
+ * ^Iactual xpath.$
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-1473321/mgmt_util.h:270:
+ * vty
+ * vty context.
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14311/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Failed
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14311/artifact/DEB11AMD64/ErrorLog/log_make.txt)
In file included from lib/log.h:17,
lib/mgmt_be_client.c: In function mgmt_be_send_get_data_reply:
./lib/zlog.h:109:20: error: format %lld expects argument of type long long int, but argument 9 has type int64_t {aka long int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
lib/debug.h:210:4: note: in expansion of macro zlog_debug
lib/debug.h:218:32: note: in expansion of macro DEBUG
./lib/mgmt_be_client.h:142:2: note: in expansion of macro DEBUGD
lib/mgmt_be_client.c:872:2: note: in expansion of macro MGMTD_BE_CLIENT_DBG
lib/mgmt_be_client.c: At top level:
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14311/artifact/DEB11AMD64/config.status/config.status
Successful on other platforms/tests
- OpenBSD 7 amd64 build
- Redhat 8 amd64 build
- Debian 10 amd64 build
- CentOS 7 amd64 build
- Ubuntu 22.04 amd64 build
- FreeBSD 11 amd64 build
- Debian 9 amd64 build
- Ubuntu 18.04 amd64 build
- Ubuntu 20.04 amd64 build
- Ubuntu 18.04 ppc64le build
- Redhat 9 amd64 build
- FreeBSD 12 amd64 build
- Ubuntu 18.04 i386 build
- Ubuntu 18.04 arm8 build
- Ubuntu 18.04 arm7 build
Warnings Generated during build:
Checkout code: Successful with additional warnings
Debian 11 amd64 build: Failed (click for details)
Debian 11 amd64 build: Unknown LogMake failed for Debian 11 amd64 build: (see full Make log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14311/artifact/DEB11AMD64/ErrorLog/log_make.txt)
In file included from lib/log.h:17,
lib/mgmt_be_client.c: In function mgmt_be_send_get_data_reply:
./lib/zlog.h:109:20: error: format %lld expects argument of type long long int, but argument 9 has type int64_t {aka long int} [-Werror=format=]
./lib/zlog.h:116:26: note: in expansion of macro _zlog_ecref
lib/debug.h:210:4: note: in expansion of macro zlog_debug
lib/debug.h:218:32: note: in expansion of macro DEBUG
./lib/mgmt_be_client.h:142:2: note: in expansion of macro DEBUGD
lib/mgmt_be_client.c:872:2: note: in expansion of macro MGMTD_BE_CLIENT_DBG
lib/mgmt_be_client.c: At top level:
Debian 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-PULLREQ2-14311/artifact/DEB11AMD64/config.status/config.status
<stdin>:73: trailing whitespace.
of validating any data under these data portions, by specifying only
<stdin>:102: trailing whitespace.
'MGMT_SUBSCR_VALIDATE_CFG' and 'MGMT_SUBSCR_OPER_OWN' values for the
warning: 2 lines add whitespace errors.
Report for mgmt_be_adapter.c | 4 issues
===============================================
< WARNING: space prohibited between function name and open parenthesis '('
< #940: FILE: /tmp/f1-940161/mgmt_be_adapter.c:940:
< WARNING: unnecessary whitespace before a quoted newline
< #985: FILE: /tmp/f1-940161/mgmt_be_adapter.c:985:
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-940161/mgmt_util.h:270:
+ * vty
+ * vty context.
Is it possible to output JSON instead of what is displayed at the moment? It is not really readable. Or at least add an optional [json]
argument to convert the output into JSON.
Is it possible to output JSON instead of what is displayed at the moment? It is not really readable. Or at least add an optional
[json]
argument to convert the output into JSON.
Hi @idryzhov yes a JSON/XML output would have been wonderful. But like discussed yesterday implementing that is a good amount of work. For dumping data in JSON/XML we need a Libyang data tree with all the data already populated onto it. For operational datastore data is NOT stored on any data tree yet. It's directly fetched from backend and passed onto frontend. So the conversion to JSON/XML should be done on the frontend client.
Perhaps someone can work on that in a separate PR.
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
Test incomplete. See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Successful
Basic Tests: Incomplete
Topotests Ubuntu 18.04 i386 part 3: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 3: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO3U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 3 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO3U18I386/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 2: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 2: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP2U1804AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TP2U1804AMD64/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 3: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO3DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 3 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO3DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 3: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO3DEB10AMD64/TopotestDetails/
Topotests debian 10 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8DEB10AMD64/TopotestDetails/
Addresssanitizer topotests part 0: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_yang_mgmt.py`, test `test_mgmt_commit_apply`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5625c8c0adb5 bp 0x7fff8c2cd580 sp 0x7fff8c2cd560 T0)
==28875==The signal is caused by a READ memory access.
==28875==Hint: address points to the zero page.
#0 0x5625c8c0adb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5625c8c0adb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5625c8c0bd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5625c8c0d60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5625c8c15327 in mgmt_txn_send_be_cfg_apply mgmtd/mgmt_txn.c:1814
#5 0x5625c8c15327 in mgmt_txn_process_commit_cfg mgmtd/mgmt_txn.c:1910
#6 0x7fd369c7fb6c in event_call lib/event.c:1976
#7 0x7fd369bbdc5a in frr_run lib/libfrr.c:1213
#8 0x5625c8bf1fb5 in main mgmtd/mgmt_main.c:285
#9 0x7fd368e68c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#10 0x5625c8bf1949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_yang_mgmt.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5625c8c0adb5 bp 0x7fff8c2cd580 sp 0x7fff8c2cd560 T0)
==28875==The signal is caused by a READ memory access.
==28875==Hint: address points to the zero page.
#0 0x5625c8c0adb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5625c8c0adb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5625c8c0bd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5625c8c0d60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5625c8c15327 in mgmt_txn_send_be_cfg_apply mgmtd/mgmt_txn.c:1814
#5 0x5625c8c15327 in mgmt_txn_process_commit_cfg mgmtd/mgmt_txn.c:1910
#6 0x7fd369c7fb6c in event_call lib/event.c:1976
#7 0x7fd369bbdc5a in frr_run lib/libfrr.c:1213
#8 0x5625c8bf1fb5 in main mgmtd/mgmt_main.c:285
#9 0x7fd368e68c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#10 0x5625c8bf1949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN3-14332/test
Topology Tests failed for Addresssanitizer topotests part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN3/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 0: Unknown Log <Topotest-Details> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN3/Topotest-Details/
Topotests Ubuntu 18.04 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6U18AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO6U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO6U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 4: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 4: Unknown LogTopotests debian 10 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 9: Unknown LogAddresssanitizer topotests part 4: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_local_asn_topo1.py`, test `test_verify_bgp_local_as_in_EBGP_aspath_p0`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55f32132bdb5 bp 0x7ffcbe60af00 sp 0x7ffcbe60aee0 T0)
==20381==The signal is caused by a READ memory access.
==20381==Hint: address points to the zero page.
#0 0x55f32132bdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55f32132bdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55f32132cd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55f32132e60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55f32133b4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55f3213174ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55f3213174ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7deddd06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7deddd230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7dee73b6c in event_call lib/event.c:1976
#10 0x7fb7dedb1c5a in frr_run lib/libfrr.c:1213
#11 0x55f321312fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7de05cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55f321312949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55f32132bdb5 bp 0x7ffcbe60af00 sp 0x7ffcbe60aee0 T0)
==20381==The signal is caused by a READ memory access.
==20381==Hint: address points to the zero page.
#0 0x55f32132bdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55f32132bdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55f32132cd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55f32132e60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55f32133b4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55f3213174ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55f3213174ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7deddd06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7deddd230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7dee73b6c in event_call lib/event.c:1976
#10 0x7fb7dedb1c5a in frr_run lib/libfrr.c:1213
#11 0x55f321312fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7de05cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55f321312949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_local_asn_topo1.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55f32132bdb5 bp 0x7ffcbe60af00 sp 0x7ffcbe60aee0 T0)
==20381==The signal is caused by a READ memory access.
==20381==Hint: address points to the zero page.
#0 0x55f32132bdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55f32132bdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55f32132cd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55f32132e60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55f32133b4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55f3213174ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55f3213174ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7deddd06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7deddd230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7dee73b6c in event_call lib/event.c:1976
#10 0x7fb7dedb1c5a in frr_run lib/libfrr.c:1213
#11 0x55f321312fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7de05cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55f321312949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_local_asn_dot_topo1.py`, test `test_verify_bgp_local_as_in_EBGP_aspath_p0`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c8e7644db5 bp 0x7ffd3390fd00 sp 0x7ffd3390fce0 T0)
==27289==The signal is caused by a READ memory access.
==27289==Hint: address points to the zero page.
#0 0x55c8e7644db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c8e7644db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c8e7645d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c8e764760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c8e76544ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c8e76304ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c8e76304ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7d7dbe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7d7dbe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7d7e54b6c in event_call lib/event.c:1976
#10 0x7fb7d7d92c5a in frr_run lib/libfrr.c:1213
#11 0x55c8e762bfb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7d703dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c8e762b949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c8e7644db5 bp 0x7ffd3390fd00 sp 0x7ffd3390fce0 T0)
==27289==The signal is caused by a READ memory access.
==27289==Hint: address points to the zero page.
#0 0x55c8e7644db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c8e7644db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c8e7645d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c8e764760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c8e76544ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c8e76304ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c8e76304ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7d7dbe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7d7dbe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7d7e54b6c in event_call lib/event.c:1976
#10 0x7fb7d7d92c5a in frr_run lib/libfrr.c:1213
#11 0x55c8e762bfb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7d703dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c8e762b949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_local_asn_dot_topo1.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c8e7644db5 bp 0x7ffd3390fd00 sp 0x7ffd3390fce0 T0)
==27289==The signal is caused by a READ memory access.
==27289==Hint: address points to the zero page.
#0 0x55c8e7644db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c8e7644db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c8e7645d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c8e764760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c8e76544ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c8e76304ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c8e76304ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb7d7dbe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb7d7dbe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb7d7e54b6c in event_call lib/event.c:1976
#10 0x7fb7d7d92c5a in frr_run lib/libfrr.c:1213
#11 0x55c8e762bfb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb7d703dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c8e762b949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Addresssanitizer topotests part 4: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASANP4/TopotestDetails/
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASANP4-14332/test
Topology Tests failed for Addresssanitizer topotests part 4 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASANP4/Topotest-Logs/log_topotests.txt
Addresssanitizer topotests part 1: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_bfd_vrflite_topo1.py`, test `test_bfd_connection`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d83c7b0db5 bp 0x7ffc694f4050 sp 0x7ffc694f4030 T0)
==15778==The signal is caused by a READ memory access.
==15778==Hint: address points to the zero page.
#0 0x55d83c7b0db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d83c7b0db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d83c7b1d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d83c7b360e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d83c7c04ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d83c79c4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d83c79c4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f1cc1a7d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1cc1a7d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f1cc1b13b6c in event_call lib/event.c:1976
#10 0x7f1cc1a51c5a in frr_run lib/libfrr.c:1213
#11 0x55d83c797fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f1cc0cfcc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d83c797949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bfd_vrflite_topo1.py`, test `test_bfd_connection`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x564feea6ddb5 bp 0x7ffdf738d3c0 sp 0x7ffdf738d3a0 T0)
==15876==The signal is caused by a READ memory access.
==15876==Hint: address points to the zero page.
#0 0x564feea6ddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x564feea6ddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x564feea6ed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x564feea7060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x564feea7d4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x564feea594ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x564feea594ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f06fde7b06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f06fde7b230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f06fdf11b6c in event_call lib/event.c:1976
#10 0x7f06fde4fc5a in frr_run lib/libfrr.c:1213
#11 0x564feea54fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f06fd0fac86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x564feea54949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bfd_vrflite_topo1.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d83c7b0db5 bp 0x7ffc694f4050 sp 0x7ffc694f4030 T0)
==15778==The signal is caused by a READ memory access.
==15778==Hint: address points to the zero page.
#0 0x55d83c7b0db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d83c7b0db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d83c7b1d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d83c7b360e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d83c7c04ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d83c79c4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d83c79c4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f1cc1a7d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1cc1a7d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f1cc1b13b6c in event_call lib/event.c:1976
#10 0x7f1cc1a51c5a in frr_run lib/libfrr.c:1213
#11 0x55d83c797fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f1cc0cfcc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d83c797949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bfd_vrflite_topo1.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x564feea6ddb5 bp 0x7ffdf738d3c0 sp 0x7ffdf738d3a0 T0)
==15876==The signal is caused by a READ memory access.
==15876==Hint: address points to the zero page.
#0 0x564feea6ddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x564feea6ddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x564feea6ed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x564feea7060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x564feea7d4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x564feea594ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x564feea594ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f06fde7b06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f06fde7b230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f06fdf11b6c in event_call lib/event.c:1976
#10 0x7f06fde4fc5a in frr_run lib/libfrr.c:1213
#11 0x564feea54fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f06fd0fac86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x564feea54949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN1-14332/test
Topology Tests failed for Addresssanitizer topotests part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN1/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN1/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 4: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO4U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 4 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO4U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 4: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO4U18I386/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 3: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 3: Unknown LogTopotests debian 10 amd64 part 4: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO4DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 4 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO4DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 4: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO4DEB10AMD64/TopotestDetails/
Addresssanitizer topotests part 9: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_ospf_multi_vrf_bgp_route_leak.py`, test `test_ospf_convergence`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d1fbbc0db5 bp 0x7ffce7dc0c50 sp 0x7ffce7dc0c30 T0)
==30853==The signal is caused by a READ memory access.
==30853==Hint: address points to the zero page.
#0 0x55d1fbbc0db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d1fbbc0db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d1fbbc1d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d1fbbc360e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d1fbbd04ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d1fbbac4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d1fbbac4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb62873e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb62873e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb6287d4b6c in event_call lib/event.c:1976
#10 0x7fb628712c5a in frr_run lib/libfrr.c:1213
#11 0x55d1fbba7fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb6279bdc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d1fbba7949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_ospf_multi_vrf_bgp_route_leak.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d1fbbc0db5 bp 0x7ffce7dc0c50 sp 0x7ffce7dc0c30 T0)
==30853==The signal is caused by a READ memory access.
==30853==Hint: address points to the zero page.
#0 0x55d1fbbc0db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d1fbbc0db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d1fbbc1d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d1fbbc360e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d1fbbd04ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d1fbbac4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d1fbbac4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb62873e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb62873e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb6287d4b6c in event_call lib/event.c:1976
#10 0x7fb628712c5a in frr_run lib/libfrr.c:1213
#11 0x55d1fbba7fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb6279bdc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d1fbba7949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_pim_vrf.py`, test `test_mcast_vrf_blue`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c0089c5db5 bp 0x7ffea336a8f0 sp 0x7ffea336a8d0 T0)
==23151==The signal is caused by a READ memory access.
==23151==Hint: address points to the zero page.
#0 0x55c0089c5db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c0089c5db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c0089c6d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c0089c860e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c0089d54ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c0089b14ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c0089b14ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fda0f21d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fda0f21d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fda0f2b3b6c in event_call lib/event.c:1976
#10 0x7fda0f1f1c5a in frr_run lib/libfrr.c:1213
#11 0x55c0089acfb5 in main mgmtd/mgmt_main.c:285
#12 0x7fda0e49cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c0089ac949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_pim_vrf.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c0089c5db5 bp 0x7ffea336a8f0 sp 0x7ffea336a8d0 T0)
==23151==The signal is caused by a READ memory access.
==23151==Hint: address points to the zero page.
#0 0x55c0089c5db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c0089c5db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c0089c6d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c0089c860e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c0089d54ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c0089b14ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c0089b14ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fda0f21d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fda0f21d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fda0f2b3b6c in event_call lib/event.c:1976
#10 0x7fda0f1f1c5a in frr_run lib/libfrr.c:1213
#11 0x55c0089acfb5 in main mgmtd/mgmt_main.c:285
#12 0x7fda0e49cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c0089ac949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN9-14332/test
Topology Tests failed for Addresssanitizer topotests part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN9/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN9/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9U18I386/TopotestDetails/
Topotests debian 10 amd64 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 7: Unknown LogTopotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18ARM64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8U18ARM64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO8U18ARM64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2U18ARM8-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2U18ARM8/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 arm8 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2U18ARM8/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO9U18AMD64/TopotestDetails/
Addresssanitizer topotests part 7: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_static_simple.py`, test `tgen`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55f5d2852db5 bp 0x7ffc13a3d130 sp 0x7ffc13a3d110 T0)
==31753==The signal is caused by a READ memory access.
==31753==Hint: address points to the zero page.
#0 0x55f5d2852db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55f5d2852db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55f5d2853d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55f5d285560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55f5d28624ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55f5d283e4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55f5d283e4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fc746f6e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fc746f6e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fc747004b6c in event_call lib/event.c:1976
#10 0x7fc746f42c5a in frr_run lib/libfrr.c:1213
#11 0x55f5d2839fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fc7461edc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55f5d2839949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN7-14332/test
Topology Tests failed for Addresssanitizer topotests part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN7/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN7/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 6: Incomplete
(check logs for details)Topotests Ubuntu 18.04 amd64 part 5: Incomplete
(check logs for details)Topotests Ubuntu 18.04 arm8 part 5: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 5: Unknown LogAddresssanitizer topotests part 5: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `test_ambiguous_overlapping_addresses_in_different_vrfs_p0`, router `red1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b75c11fdb5 bp 0x7ffc99d5bfe0 sp 0x7ffc99d5bfc0 T0)
==3717==The signal is caused by a READ memory access.
==3717==Hint: address points to the zero page.
#0 0x55b75c11fdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b75c11fdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b75c120d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b75c12260e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b75c12f4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b75c10b4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b75c10b4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f883cd2706e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f883cd27230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f883cdbdb6c in event_call lib/event.c:1976
#10 0x7f883ccfbc5a in frr_run lib/libfrr.c:1213
#11 0x55b75c106fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f883bfa6c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b75c106949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `red1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b75c11fdb5 bp 0x7ffc99d5bfe0 sp 0x7ffc99d5bfc0 T0)
==3717==The signal is caused by a READ memory access.
==3717==Hint: address points to the zero page.
#0 0x55b75c11fdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b75c11fdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b75c120d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b75c12260e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b75c12f4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b75c10b4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b75c10b4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f883cd2706e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f883cd27230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f883cdbdb6c in event_call lib/event.c:1976
#10 0x7f883ccfbc5a in frr_run lib/libfrr.c:1213
#11 0x55b75c106fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f883bfa6c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b75c106949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `blue1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55dc070b9db5 bp 0x7ffdca7366c0 sp 0x7ffdca7366a0 T0)
==3840==The signal is caused by a READ memory access.
==3840==Hint: address points to the zero page.
#0 0x55dc070b9db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55dc070b9db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55dc070bad3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55dc070bc60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55dc070c94ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55dc070a54ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55dc070a54ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f54471f306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f54471f3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f5447289b6c in event_call lib/event.c:1976
#10 0x7f54471c7c5a in frr_run lib/libfrr.c:1213
#11 0x55dc070a0fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f5446472c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55dc070a0949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x558aa9052db5 bp 0x7ffc1e164380 sp 0x7ffc1e164360 T0)
==4094==The signal is caused by a READ memory access.
==4094==Hint: address points to the zero page.
#0 0x558aa9052db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x558aa9052db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x558aa9053d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x558aa905560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x558aa90624ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x558aa903e4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x558aa903e4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f82e16cc06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f82e16cc230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f82e1762b6c in event_call lib/event.c:1976
#10 0x7f82e16a0c5a in frr_run lib/libfrr.c:1213
#11 0x558aa9039fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f82e094bc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x558aa9039949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5626fb89cdb5 bp 0x7fff0a1aa2c0 sp 0x7fff0a1aa2a0 T0)
==4451==The signal is caused by a READ memory access.
==4451==Hint: address points to the zero page.
#0 0x5626fb89cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5626fb89cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5626fb89dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5626fb89f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5626fb8ac4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5626fb8884ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5626fb8884ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb10c93406e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb10c934230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb10c9cab6c in event_call lib/event.c:1976
#10 0x7fb10c908c5a in frr_run lib/libfrr.c:1213
#11 0x5626fb883fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb10bbb3c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5626fb883949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `red2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x564ca0e47db5 bp 0x7ffccf6114d0 sp 0x7ffccf6114b0 T0)
==4209==The signal is caused by a READ memory access.
==4209==Hint: address points to the zero page.
#0 0x564ca0e47db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x564ca0e47db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x564ca0e48d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x564ca0e4a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x564ca0e574ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x564ca0e334ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x564ca0e334ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fca2d5c906e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fca2d5c9230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fca2d65fb6c in event_call lib/event.c:1976
#10 0x7fca2d59dc5a in frr_run lib/libfrr.c:1213
#11 0x564ca0e2efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fca2c848c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x564ca0e2e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `blue2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5650d2f96db5 bp 0x7fff9da859c0 sp 0x7fff9da859a0 T0)
==4324==The signal is caused by a READ memory access.
==4324==Hint: address points to the zero page.
#0 0x5650d2f96db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5650d2f96db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5650d2f97d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5650d2f9960e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5650d2fa64ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5650d2f824ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5650d2f824ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f01d42b806e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f01d42b8230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f01d434eb6c in event_call lib/event.c:1976
#10 0x7f01d428cc5a in frr_run lib/libfrr.c:1213
#11 0x5650d2f7dfb5 in main mgmtd/mgmt_main.c:285
#12 0x7f01d3537c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5650d2f7d949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `red1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b75c11fdb5 bp 0x7ffc99d5bfe0 sp 0x7ffc99d5bfc0 T0)
==3717==The signal is caused by a READ memory access.
==3717==Hint: address points to the zero page.
#0 0x55b75c11fdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b75c11fdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b75c120d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b75c12260e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b75c12f4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b75c10b4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b75c10b4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f883cd2706e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f883cd27230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f883cdbdb6c in event_call lib/event.c:1976
#10 0x7f883ccfbc5a in frr_run lib/libfrr.c:1213
#11 0x55b75c106fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f883bfa6c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b75c106949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `blue1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55dc070b9db5 bp 0x7ffdca7366c0 sp 0x7ffdca7366a0 T0)
==3840==The signal is caused by a READ memory access.
==3840==Hint: address points to the zero page.
#0 0x55dc070b9db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55dc070b9db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55dc070bad3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55dc070bc60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55dc070c94ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55dc070a54ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55dc070a54ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f54471f306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f54471f3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f5447289b6c in event_call lib/event.c:1976
#10 0x7f54471c7c5a in frr_run lib/libfrr.c:1213
#11 0x55dc070a0fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f5446472c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55dc070a0949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x558aa9052db5 bp 0x7ffc1e164380 sp 0x7ffc1e164360 T0)
==4094==The signal is caused by a READ memory access.
==4094==Hint: address points to the zero page.
#0 0x558aa9052db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x558aa9052db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x558aa9053d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x558aa905560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x558aa90624ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x558aa903e4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x558aa903e4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f82e16cc06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f82e16cc230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f82e1762b6c in event_call lib/event.c:1976
#10 0x7f82e16a0c5a in frr_run lib/libfrr.c:1213
#11 0x558aa9039fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f82e094bc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x558aa9039949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `red2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x564ca0e47db5 bp 0x7ffccf6114d0 sp 0x7ffccf6114b0 T0)
==4209==The signal is caused by a READ memory access.
==4209==Hint: address points to the zero page.
#0 0x564ca0e47db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x564ca0e47db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x564ca0e48d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x564ca0e4a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x564ca0e574ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x564ca0e334ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x564ca0e334ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fca2d5c906e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fca2d5c9230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fca2d65fb6c in event_call lib/event.c:1976
#10 0x7fca2d59dc5a in frr_run lib/libfrr.c:1213
#11 0x564ca0e2efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fca2c848c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x564ca0e2e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `blue2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5650d2f96db5 bp 0x7fff9da859c0 sp 0x7fff9da859a0 T0)
==4324==The signal is caused by a READ memory access.
==4324==Hint: address points to the zero page.
#0 0x5650d2f96db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5650d2f96db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5650d2f97d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5650d2f9960e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5650d2fa64ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5650d2f824ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5650d2f824ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f01d42b806e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f01d42b8230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f01d434eb6c in event_call lib/event.c:1976
#10 0x7f01d428cc5a in frr_run lib/libfrr.c:1213
#11 0x5650d2f7dfb5 in main mgmtd/mgmt_main.c:285
#12 0x7f01d3537c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5650d2f7d949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo1.py`, test `teardown_module`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5626fb89cdb5 bp 0x7fff0a1aa2c0 sp 0x7fff0a1aa2a0 T0)
==4451==The signal is caused by a READ memory access.
==4451==Hint: address points to the zero page.
#0 0x5626fb89cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5626fb89cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5626fb89dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5626fb89f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5626fb8ac4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5626fb8884ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5626fb8884ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fb10c93406e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fb10c934230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fb10c9cab6c in event_call lib/event.c:1976
#10 0x7fb10c908c5a in frr_run lib/libfrr.c:1213
#11 0x5626fb883fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fb10bbb3c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5626fb883949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo2.py`, test `test_shut_noshut_p1`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a331633db5 bp 0x7fff18910d80 sp 0x7fff18910d60 T0)
==15634==The signal is caused by a READ memory access.
==15634==Hint: address points to the zero page.
#0 0x55a331633db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a331633db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a331634d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a33163660e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a3316434ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a33161f4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a33161f4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f265c75e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f265c75e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f265c7f4b6c in event_call lib/event.c:1976
#10 0x7f265c732c5a in frr_run lib/libfrr.c:1213
#11 0x55a33161afb5 in main mgmtd/mgmt_main.c:285
#12 0x7f265b9ddc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a33161a949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a331633db5 bp 0x7fff18910d80 sp 0x7fff18910d60 T0)
==15634==The signal is caused by a READ memory access.
==15634==Hint: address points to the zero page.
#0 0x55a331633db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a331633db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a331634d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a33163660e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a3316434ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a33161f4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a33161f4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f265c75e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f265c75e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f265c7f4b6c in event_call lib/event.c:1976
#10 0x7f265c732c5a in frr_run lib/libfrr.c:1213
#11 0x55a33161afb5 in main mgmtd/mgmt_main.c:285
#12 0x7f265b9ddc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a33161a949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55e5ba9c4db5 bp 0x7ffe4b7a0e40 sp 0x7ffe4b7a0e20 T0)
==15761==The signal is caused by a READ memory access.
==15761==Hint: address points to the zero page.
#0 0x55e5ba9c4db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55e5ba9c4db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55e5ba9c5d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55e5ba9c760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55e5ba9d44ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55e5ba9b04ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55e5ba9b04ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f449003f06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f449003f230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f44900d5b6c in event_call lib/event.c:1976
#10 0x7f4490013c5a in frr_run lib/libfrr.c:1213
#11 0x55e5ba9abfb5 in main mgmtd/mgmt_main.c:285
#12 0x7f448f2bec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55e5ba9ab949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `killRouterDaemons`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a331633db5 bp 0x7fff18910d80 sp 0x7fff18910d60 T0)
==15634==The signal is caused by a READ memory access.
==15634==Hint: address points to the zero page.
#0 0x55a331633db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a331633db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a331634d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a33163660e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a3316434ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a33161f4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a33161f4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f265c75e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f265c75e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f265c7f4b6c in event_call lib/event.c:1976
#10 0x7f265c732c5a in frr_run lib/libfrr.c:1213
#11 0x55a33161afb5 in main mgmtd/mgmt_main.c:285
#12 0x7f265b9ddc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a33161a949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `red1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56260a7dedb5 bp 0x7ffe80a183c0 sp 0x7ffe80a183a0 T0)
==15384==The signal is caused by a READ memory access.
==15384==Hint: address points to the zero page.
#0 0x56260a7dedb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56260a7dedb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56260a7dfd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56260a7e160e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56260a7ee4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56260a7ca4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56260a7ca4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f172456206e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1724562230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f17245f8b6c in event_call lib/event.c:1976
#10 0x7f1724536c5a in frr_run lib/libfrr.c:1213
#11 0x56260a7c5fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f17237e1c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56260a7c5949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `blue1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c4fc767db5 bp 0x7ffd83438d10 sp 0x7ffd83438cf0 T0)
==15499==The signal is caused by a READ memory access.
==15499==Hint: address points to the zero page.
#0 0x55c4fc767db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c4fc767db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c4fc768d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c4fc76a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c4fc7774ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c4fc7534ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c4fc7534ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd9c75e306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd9c75e3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd9c7679b6c in event_call lib/event.c:1976
#10 0x7fd9c75b7c5a in frr_run lib/libfrr.c:1213
#11 0x55c4fc74efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd9c6862c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c4fc74e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `stop_router`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a331633db5 bp 0x7fff18910d80 sp 0x7fff18910d60 T0)
==15634==The signal is caused by a READ memory access.
==15634==Hint: address points to the zero page.
#0 0x55a331633db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a331633db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a331634d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a33163660e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a3316434ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a33161f4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a33161f4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f265c75e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f265c75e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f265c7f4b6c in event_call lib/event.c:1976
#10 0x7f265c732c5a in frr_run lib/libfrr.c:1213
#11 0x55a33161afb5 in main mgmtd/mgmt_main.c:285
#12 0x7f265b9ddc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a33161a949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo2.py`, test `teardown_module`, router `red1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56260a7dedb5 bp 0x7ffe80a183c0 sp 0x7ffe80a183a0 T0)
==15384==The signal is caused by a READ memory access.
==15384==Hint: address points to the zero page.
#0 0x56260a7dedb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56260a7dedb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56260a7dfd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56260a7e160e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56260a7ee4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56260a7ca4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56260a7ca4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f172456206e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1724562230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f17245f8b6c in event_call lib/event.c:1976
#10 0x7f1724536c5a in frr_run lib/libfrr.c:1213
#11 0x56260a7c5fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f17237e1c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56260a7c5949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo2.py`, test `teardown_module`, router `blue1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55c4fc767db5 bp 0x7ffd83438d10 sp 0x7ffd83438cf0 T0)
==15499==The signal is caused by a READ memory access.
==15499==Hint: address points to the zero page.
#0 0x55c4fc767db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55c4fc767db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55c4fc768d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55c4fc76a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55c4fc7774ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55c4fc7534ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55c4fc7534ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd9c75e306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd9c75e3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd9c7679b6c in event_call lib/event.c:1976
#10 0x7fd9c75b7c5a in frr_run lib/libfrr.c:1213
#11 0x55c4fc74efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd9c6862c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55c4fc74e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo2.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b53f753db5 bp 0x7ffc63128510 sp 0x7ffc631284f0 T0)
==7410==The signal is caused by a READ memory access.
==7410==Hint: address points to the zero page.
#0 0x55b53f753db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b53f753db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b53f754d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b53f75660e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b53f7634ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b53f73f4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b53f73f4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f08b4bca06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f08b4bca230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f08b4c60b6c in event_call lib/event.c:1976
#10 0x7f08b4b9ec5a in frr_run lib/libfrr.c:1213
#11 0x55b53f73afb5 in main mgmtd/mgmt_main.c:285
#12 0x7f08b3e49c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b53f73a949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_multi_vrf_topo2.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55e5ba9c4db5 bp 0x7ffe4b7a0e40 sp 0x7ffe4b7a0e20 T0)
==15761==The signal is caused by a READ memory access.
==15761==Hint: address points to the zero page.
#0 0x55e5ba9c4db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55e5ba9c4db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55e5ba9c5d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55e5ba9c760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55e5ba9d44ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55e5ba9b04ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55e5ba9b04ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f449003f06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f449003f230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f44900d5b6c in event_call lib/event.c:1976
#10 0x7f4490013c5a in frr_run lib/libfrr.c:1213
#11 0x55e5ba9abfb5 in main mgmtd/mgmt_main.c:285
#12 0x7f448f2bec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55e5ba9ab949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN5-14332/test
Topology Tests failed for Addresssanitizer topotests part 5 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN5/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 5: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN5/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO1U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO1U18I386/TopotestDetails/
Topotests debian 10 amd64 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO1DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO1DEB10AMD64/TopotestDetails/
Topotests debian 10 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO6DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO6DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 6: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 6: Unknown LogTopotests Ubuntu 18.04 arm8 part 1: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 1: Unknown LogTopotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPOU1804/TopotestDetails/
Addresssanitizer topotests part 3: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn_overlay_index_gateway.py`, test `teardown_module`, router `PE1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55e9f738adb5 bp 0x7ffee97e6e20 sp 0x7ffee97e6e00 T0)
==4672==The signal is caused by a READ memory access.
==4672==Hint: address points to the zero page.
#0 0x55e9f738adb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55e9f738adb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55e9f738bd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55e9f738d60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55e9f739a4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55e9f73764ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55e9f73764ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fad9dcb806e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fad9dcb8230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fad9dd4eb6c in event_call lib/event.c:1976
#10 0x7fad9dc8cc5a in frr_run lib/libfrr.c:1213
#11 0x55e9f7371fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fad9cf37c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55e9f7371949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn_overlay_index_gateway.py`, test `teardown_module`, router `PE2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x564957979db5 bp 0x7ffc59679ac0 sp 0x7ffc59679aa0 T0)
==4775==The signal is caused by a READ memory access.
==4775==Hint: address points to the zero page.
#0 0x564957979db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x564957979db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56495797ad3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56495797c60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5649579894ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5649579654ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5649579654ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f38fab9206e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f38fab92230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f38fac28b6c in event_call lib/event.c:1976
#10 0x7f38fab66c5a in frr_run lib/libfrr.c:1213
#11 0x564957960fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f38f9e11c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x564957960949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn.py`, test `test_protocols_convergence`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x555b0f8acdb5 bp 0x7fffec201f50 sp 0x7fffec201f30 T0)
==5541==The signal is caused by a READ memory access.
==5541==Hint: address points to the zero page.
#0 0x555b0f8acdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x555b0f8acdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x555b0f8add3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x555b0f8af60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x555b0f8bc4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x555b0f8984ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x555b0f8984ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd39120806e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd391208230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd39129eb6c in event_call lib/event.c:1976
#10 0x7fd3911dcc5a in frr_run lib/libfrr.c:1213
#11 0x555b0f893fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd390487c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x555b0f893949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn.py`, test `test_protocols_convergence`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x565173727db5 bp 0x7ffdc0f47320 sp 0x7ffdc0f47300 T0)
==5644==The signal is caused by a READ memory access.
==5644==Hint: address points to the zero page.
#0 0x565173727db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x565173727db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x565173728d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56517372a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5651737374ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5651737134ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5651737134ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd6c15b106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd6c15b1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd6c1647b6c in event_call lib/event.c:1976
#10 0x7fd6c1585c5a in frr_run lib/libfrr.c:1213
#11 0x56517370efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd6c0830c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56517370e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x555b0f8acdb5 bp 0x7fffec201f50 sp 0x7fffec201f30 T0)
==5541==The signal is caused by a READ memory access.
==5541==Hint: address points to the zero page.
#0 0x555b0f8acdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x555b0f8acdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x555b0f8add3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x555b0f8af60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x555b0f8bc4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x555b0f8984ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x555b0f8984ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd39120806e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd391208230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd39129eb6c in event_call lib/event.c:1976
#10 0x7fd3911dcc5a in frr_run lib/libfrr.c:1213
#11 0x555b0f893fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd390487c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x555b0f893949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_evpn.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x565173727db5 bp 0x7ffdc0f47320 sp 0x7ffdc0f47300 T0)
==5644==The signal is caused by a READ memory access.
==5644==Hint: address points to the zero page.
#0 0x565173727db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x565173727db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x565173728d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56517372a60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5651737374ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5651737134ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5651737134ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd6c15b106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd6c15b1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd6c1647b6c in event_call lib/event.c:1976
#10 0x7fd6c1585c5a in frr_run lib/libfrr.c:1213
#11 0x56517370efb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd6c0830c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56517370e949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASANP3-14332/test
Topology Tests failed for Addresssanitizer topotests part 3 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASANP3/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 3: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASANP3/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 5: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO5U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 5 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO5U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 5: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO5U18I386/TopotestDetails/
Addresssanitizer topotests part 2: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_default_orginate_vrf.py`, test `teardown_module`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d2e6f22db5 bp 0x7ffcf3c901f0 sp 0x7ffcf3c901d0 T0)
==27815==The signal is caused by a READ memory access.
==27815==Hint: address points to the zero page.
#0 0x55d2e6f22db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d2e6f22db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d2e6f23d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d2e6f2560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d2e6f324ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d2e6f0e4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d2e6f0e4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f570453a06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f570453a230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f57045d0b6c in event_call lib/event.c:1976
#10 0x7f570450ec5a in frr_run lib/libfrr.c:1213
#11 0x55d2e6f09fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f57037b9c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d2e6f09949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_admin_dist.py`, test `test_bgp_admin_distance_ibgp_p0`, router `r5`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d8dbf2cdb5 bp 0x7ffc7b9253d0 sp 0x7ffc7b9253b0 T0)
==17065==The signal is caused by a READ memory access.
==17065==Hint: address points to the zero page.
#0 0x55d8dbf2cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d8dbf2cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d8dbf2dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d8dbf2f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d8dbf3c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d8dbf184ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d8dbf184ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f6d661c906e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f6d661c9230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f6d6625fb6c in event_call lib/event.c:1976
#10 0x7f6d6619dc5a in frr_run lib/libfrr.c:1213
#11 0x55d8dbf13fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f6d65448c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d8dbf13949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r5`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d8dbf2cdb5 bp 0x7ffc7b9253d0 sp 0x7ffc7b9253b0 T0)
==17065==The signal is caused by a READ memory access.
==17065==Hint: address points to the zero page.
#0 0x55d8dbf2cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d8dbf2cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d8dbf2dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d8dbf2f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d8dbf3c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d8dbf184ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d8dbf184ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f6d661c906e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f6d661c9230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f6d6625fb6c in event_call lib/event.c:1976
#10 0x7f6d6619dc5a in frr_run lib/libfrr.c:1213
#11 0x55d8dbf13fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f6d65448c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d8dbf13949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_admin_dist.py`, test `teardown_module`, router `r5`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55d8dbf2cdb5 bp 0x7ffc7b9253d0 sp 0x7ffc7b9253b0 T0)
==17065==The signal is caused by a READ memory access.
==17065==Hint: address points to the zero page.
#0 0x55d8dbf2cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55d8dbf2cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55d8dbf2dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55d8dbf2f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55d8dbf3c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55d8dbf184ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55d8dbf184ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f6d661c906e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f6d661c9230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f6d6625fb6c in event_call lib/event.c:1976
#10 0x7f6d6619dc5a in frr_run lib/libfrr.c:1213
#11 0x55d8dbf13fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f6d65448c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55d8dbf13949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN2-14332/test
Topology Tests failed for Addresssanitizer topotests part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN2/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN2/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 4: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 4: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP4U1804AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 4 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TP4U1804AMD64/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 3: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 3: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP3U1804AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 3 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TP3U1804AMD64/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO2U18I386/TopotestDetails/
Topotests debian 10 amd64 part 5: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO5DEB10AMD64-14332/test
Topology Tests failed for Topotests debian 10 amd64 part 5 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO5DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 5: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO5DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TOPO7U18I386/TopotestDetails/
Addresssanitizer topotests part 6: Failed (click for details)
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_update_delay.py`, test `test_bgp_update_delay`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a6b751ddb5 bp 0x7ffe7dd47ad0 sp 0x7ffe7dd47ab0 T0)
==22981==The signal is caused by a READ memory access.
==22981==Hint: address points to the zero page.
#0 0x55a6b751ddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a6b751ddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a6b751ed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a6b752060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a6b752d4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a6b75094ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a6b75094ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f1bf8cf306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1bf8cf3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f1bf8d89b6c in event_call lib/event.c:1976
#10 0x7f1bf8cc7c5a in frr_run lib/libfrr.c:1213
#11 0x55a6b7504fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f1bf7f72c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a6b7504949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_update_delay.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a6b751ddb5 bp 0x7ffe7dd47ad0 sp 0x7ffe7dd47ab0 T0)
==22981==The signal is caused by a READ memory access.
==22981==Hint: address points to the zero page.
#0 0x55a6b751ddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a6b751ddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a6b751ed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a6b752060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a6b752d4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a6b75094ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a6b75094ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f1bf8cf306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f1bf8cf3230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f1bf8d89b6c in event_call lib/event.c:1976
#10 0x7f1bf8cc7c5a in frr_run lib/libfrr.c:1213
#11 0x55a6b7504fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f1bf7f72c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a6b7504949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vpnv4_per_nexthop_label.py`, test `test_protocols_convergence`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56467c831db5 bp 0x7fff55c48420 sp 0x7fff55c48400 T0)
==32601==The signal is caused by a READ memory access.
==32601==Hint: address points to the zero page.
#0 0x56467c831db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56467c831db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56467c832d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56467c83460e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56467c8414ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56467c81d4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56467c81d4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fe113b1a06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fe113b1a230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fe113bb0b6c in event_call lib/event.c:1976
#10 0x7fe113aeec5a in frr_run lib/libfrr.c:1213
#11 0x56467c818fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fe112d99c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56467c818949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vpnv4_per_nexthop_label.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56467c831db5 bp 0x7fff55c48420 sp 0x7fff55c48400 T0)
==32601==The signal is caused by a READ memory access.
==32601==Hint: address points to the zero page.
#0 0x56467c831db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56467c831db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56467c832d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56467c83460e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56467c8414ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56467c81d4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56467c81d4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fe113b1a06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fe113b1a230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fe113bb0b6c in event_call lib/event.c:1976
#10 0x7fe113aeec5a in frr_run lib/libfrr.c:1213
#11 0x56467c818fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fe112d99c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56467c818949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vpnv6_per_nexthop_label.py`, test `test_protocols_convergence`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55562744cdb5 bp 0x7ffe15e11bb0 sp 0x7ffe15e11b90 T0)
==2039==The signal is caused by a READ memory access.
==2039==Hint: address points to the zero page.
#0 0x55562744cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55562744cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55562744dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55562744f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55562745c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5556274384ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5556274384ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fbe326cb06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fbe326cb230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fbe32761b6c in event_call lib/event.c:1976
#10 0x7fbe3269fc5a in frr_run lib/libfrr.c:1213
#11 0x555627433fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fbe3194ac86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x555627433949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vpnv6_per_nexthop_label.py`, test `teardown_module`, router `r1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55562744cdb5 bp 0x7ffe15e11bb0 sp 0x7ffe15e11b90 T0)
==2039==The signal is caused by a READ memory access.
==2039==Hint: address points to the zero page.
#0 0x55562744cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55562744cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55562744dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55562744f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55562745c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5556274384ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5556274384ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fbe326cb06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fbe326cb230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fbe32761b6c in event_call lib/event.c:1976
#10 0x7fbe3269fc5a in frr_run lib/libfrr.c:1213
#11 0x555627433fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fbe3194ac86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x555627433949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vrf_dynamic_route_leak_topo3.py`, test `test_dynamic_imported_matching_prefix_based_on_community_list_p0`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55751c102db5 bp 0x7fff3c51f110 sp 0x7fff3c51f0f0 T0)
==15768==The signal is caused by a READ memory access.
==15768==Hint: address points to the zero page.
#0 0x55751c102db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55751c102db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55751c103d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55751c10560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55751c1124ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55751c0ee4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55751c0ee4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f59c734f06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f59c734f230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f59c73e5b6c in event_call lib/event.c:1976
#10 0x7f59c7323c5a in frr_run lib/libfrr.c:1213
#11 0x55751c0e9fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f59c65cec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55751c0e9949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vrf_dynamic_route_leak_topo3.py`, test `test_dynamic_imported_matching_prefix_based_on_community_list_p0`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b566138db5 bp 0x7ffcf739cb80 sp 0x7ffcf739cb60 T0)
==15919==The signal is caused by a READ memory access.
==15919==Hint: address points to the zero page.
#0 0x55b566138db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b566138db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b566139d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b56613b60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b5661484ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b5661244ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b5661244ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f648969d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f648969d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f6489733b6c in event_call lib/event.c:1976
#10 0x7f6489671c5a in frr_run lib/libfrr.c:1213
#11 0x55b56611ffb5 in main mgmtd/mgmt_main.c:285
#12 0x7f648891cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b56611f949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vrf_dynamic_route_leak_topo3.py`, test `teardown_module`, router `r2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55751c102db5 bp 0x7fff3c51f110 sp 0x7fff3c51f0f0 T0)
==15768==The signal is caused by a READ memory access.
==15768==Hint: address points to the zero page.
#0 0x55751c102db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55751c102db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55751c103d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55751c10560e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55751c1124ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55751c0ee4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55751c0ee4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f59c734f06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f59c734f230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f59c73e5b6c in event_call lib/event.c:1976
#10 0x7f59c7323c5a in frr_run lib/libfrr.c:1213
#11 0x55751c0e9fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f59c65cec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55751c0e9949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vrf_dynamic_route_leak_topo3.py`, test `teardown_module`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55b566138db5 bp 0x7ffcf739cb80 sp 0x7ffcf739cb60 T0)
==15919==The signal is caused by a READ memory access.
==15919==Hint: address points to the zero page.
#0 0x55b566138db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55b566138db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55b566139d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55b56613b60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55b5661484ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55b5661244ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55b5661244ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f648969d06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f648969d230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f6489733b6c in event_call lib/event.c:1976
#10 0x7f6489671c5a in frr_run lib/libfrr.c:1213
#11 0x55b56611ffb5 in main mgmtd/mgmt_main.c:285
#12 0x7f648891cc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55b56611f949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_bgp_vrf_lite_best_path_topo2.py`, test `teardown_module`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x556bc85c4db5 bp 0x7ffcf15cdd10 sp 0x7ffcf15cdcf0 T0)
==13638==The signal is caused by a READ memory access.
==13638==Hint: address points to the zero page.
#0 0x556bc85c4db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x556bc85c4db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x556bc85c5d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x556bc85c760e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x556bc85d44ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x556bc85b04ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x556bc85b04ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f615615306e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f6156153230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f61561e9b6c in event_call lib/event.c:1976
#10 0x7f6156127c5a in frr_run lib/libfrr.c:1213
#11 0x556bc85abfb5 in main mgmtd/mgmt_main.c:285
#12 0x7f61553d2c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x556bc85ab949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `e1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5642490e7db5 bp 0x7ffe9d383c50 sp 0x7ffe9d383c30 T0)
==23585==The signal is caused by a READ memory access.
==23585==Hint: address points to the zero page.
#0 0x5642490e7db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5642490e7db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5642490e8d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5642490ea60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5642490f74ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5642490d34ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5642490d34ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd91fbcf06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd91fbcf230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd91fc65b6c in event_call lib/event.c:1976
#10 0x7fd91fba3c5a in frr_run lib/libfrr.c:1213
#11 0x5642490cefb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd91ee4ec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5642490ce949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `d1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x556d43f09db5 bp 0x7ffeaf90b4c0 sp 0x7ffeaf90b4a0 T0)
==23704==The signal is caused by a READ memory access.
==23704==Hint: address points to the zero page.
#0 0x556d43f09db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x556d43f09db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x556d43f0ad3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x556d43f0c60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x556d43f194ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x556d43ef54ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x556d43ef54ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f702a4f106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f702a4f1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f702a587b6c in event_call lib/event.c:1976
#10 0x7f702a4c5c5a in frr_run lib/libfrr.c:1213
#11 0x556d43ef0fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f7029770c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x556d43ef0949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `d2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a92d03cdb5 bp 0x7ffcab9a4b30 sp 0x7ffcab9a4b10 T0)
==23938==The signal is caused by a READ memory access.
==23938==Hint: address points to the zero page.
#0 0x55a92d03cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a92d03cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a92d03dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a92d03f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a92d04c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a92d0284ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a92d0284ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f98c0dd106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f98c0dd1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f98c0e67b6c in event_call lib/event.c:1976
#10 0x7f98c0da5c5a in frr_run lib/libfrr.c:1213
#11 0x55a92d023fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f98c0050c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a92d023949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_chaos_topo1.py`, test `teardown_module`, router `e1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5642490e7db5 bp 0x7ffe9d383c50 sp 0x7ffe9d383c30 T0)
==23585==The signal is caused by a READ memory access.
==23585==Hint: address points to the zero page.
#0 0x5642490e7db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x5642490e7db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x5642490e8d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x5642490ea60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x5642490f74ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x5642490d34ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x5642490d34ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd91fbcf06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd91fbcf230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd91fc65b6c in event_call lib/event.c:1976
#10 0x7fd91fba3c5a in frr_run lib/libfrr.c:1213
#11 0x5642490cefb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd91ee4ec86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x5642490ce949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_chaos_topo1.py`, test `teardown_module`, router `d1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x556d43f09db5 bp 0x7ffeaf90b4c0 sp 0x7ffeaf90b4a0 T0)
==23704==The signal is caused by a READ memory access.
==23704==Hint: address points to the zero page.
#0 0x556d43f09db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x556d43f09db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x556d43f0ad3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x556d43f0c60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x556d43f194ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x556d43ef54ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x556d43ef54ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f702a4f106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f702a4f1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f702a587b6c in event_call lib/event.c:1976
#10 0x7f702a4c5c5a in frr_run lib/libfrr.c:1213
#11 0x556d43ef0fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f7029770c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x556d43ef0949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_chaos_topo1.py`, test `teardown_module`, router `d2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55a92d03cdb5 bp 0x7ffcab9a4b30 sp 0x7ffcab9a4b10 T0)
==23938==The signal is caused by a READ memory access.
==23938==Hint: address points to the zero page.
#0 0x55a92d03cdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55a92d03cdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55a92d03dd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55a92d03f60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55a92d04c4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55a92d0284ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55a92d0284ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f98c0dd106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f98c0dd1230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f98c0e67b6c in event_call lib/event.c:1976
#10 0x7f98c0da5c5a in frr_run lib/libfrr.c:1213
#11 0x55a92d023fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f98c0050c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55a92d023949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `e1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55e037921db5 bp 0x7fff11bcd160 sp 0x7fff11bcd140 T0)
==31564==The signal is caused by a READ memory access.
==31564==Hint: address points to the zero page.
#0 0x55e037921db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55e037921db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55e037922d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55e03792460e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55e0379314ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55e03790d4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55e03790d4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f0ea0ed006e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f0ea0ed0230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f0ea0f66b6c in event_call lib/event.c:1976
#10 0x7f0ea0ea4c5a in frr_run lib/libfrr.c:1213
#11 0x55e037908fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f0ea014fc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55e037908949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `d1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56476a47bdb5 bp 0x7ffe72862ac0 sp 0x7ffe72862aa0 T0)
==31683==The signal is caused by a READ memory access.
==31683==Hint: address points to the zero page.
#0 0x56476a47bdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56476a47bdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56476a47cd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56476a47e60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56476a48b4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56476a4674ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56476a4674ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f225f85106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f225f851230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f225f8e7b6c in event_call lib/event.c:1976
#10 0x7f225f825c5a in frr_run lib/libfrr.c:1213
#11 0x56476a462fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f225ead0c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56476a462949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `d2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x560c0c7eddb5 bp 0x7ffd59f8d7e0 sp 0x7ffd59f8d7c0 T0)
==31918==The signal is caused by a READ memory access.
==31918==Hint: address points to the zero page.
#0 0x560c0c7eddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x560c0c7eddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x560c0c7eed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x560c0c7f060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x560c0c7fd4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x560c0c7d94ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x560c0c7d94ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f344b99606e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f344b996230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f344ba2cb6c in event_call lib/event.c:1976
#10 0x7f344b96ac5a in frr_run lib/libfrr.c:1213
#11 0x560c0c7d4fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f344ac15c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x560c0c7d4949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `test_evpn_routes_from_VNFs_p1`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x561d9f5eddb5 bp 0x7ffc1b7d1d60 sp 0x7ffc1b7d1d40 T0)
==32033==The signal is caused by a READ memory access.
==32033==Hint: address points to the zero page.
#0 0x561d9f5eddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x561d9f5eddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x561d9f5eed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x561d9f5f060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x561d9f5fd4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x561d9f5d94ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x561d9f5d94ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd80d1fe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd80d1fe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd80d294b6c in event_call lib/event.c:1976
#10 0x7fd80d1d2c5a in frr_run lib/libfrr.c:1213
#11 0x561d9f5d4fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd80c47dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x561d9f5d4949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `test_evpn_routes_from_VNFs_p1`, router `r4`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5613591f6588 bp 0x7ffd235d4170 sp 0x7ffd235d4150 T0)
==32153==The signal is caused by a READ memory access.
==32153==Hint: address points to the zero page.
#0 0x5613591f6587 in mgmt_txn_batches_del mgmtd/mgmt_txn.c:95
#1 0x5613591f6587 in mgmt_txn_cfg_batch_free mgmtd/mgmt_txn.c:379
#2 0x5613591f794a in mgmt_txn_cleanup_be_cfg_batches mgmtd/mgmt_txn.c:450
#3 0x5613591f794a in mgmt_txn_req_free mgmtd/mgmt_txn.c:763
#4 0x5613591f960e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#5 0x5613592064ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#6 0x5613591e24ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#7 0x5613591e24ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#8 0x7f2f2281e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#9 0x7f2f2281e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#10 0x7f2f228b4b6c in event_call lib/event.c:1976
#11 0x7f2f227f2c5a in frr_run lib/libfrr.c:1213
#12 0x5613591ddfb5 in main mgmtd/mgmt_main.c:285
#13 0x7f2f21a9dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#14 0x5613591dd949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_del
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x561d9f5eddb5 bp 0x7ffc1b7d1d60 sp 0x7ffc1b7d1d40 T0)
==32033==The signal is caused by a READ memory access.
==32033==Hint: address points to the zero page.
#0 0x561d9f5eddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x561d9f5eddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x561d9f5eed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x561d9f5f060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x561d9f5fd4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x561d9f5d94ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x561d9f5d94ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd80d1fe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd80d1fe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd80d294b6c in event_call lib/event.c:1976
#10 0x7fd80d1d2c5a in frr_run lib/libfrr.c:1213
#11 0x561d9f5d4fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd80c47dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x561d9f5d4949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `common_config.py`, test `check_router_status`, router `r4`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5613591f6588 bp 0x7ffd235d4170 sp 0x7ffd235d4150 T0)
==32153==The signal is caused by a READ memory access.
==32153==Hint: address points to the zero page.
#0 0x5613591f6587 in mgmt_txn_batches_del mgmtd/mgmt_txn.c:95
#1 0x5613591f6587 in mgmt_txn_cfg_batch_free mgmtd/mgmt_txn.c:379
#2 0x5613591f794a in mgmt_txn_cleanup_be_cfg_batches mgmtd/mgmt_txn.c:450
#3 0x5613591f794a in mgmt_txn_req_free mgmtd/mgmt_txn.c:763
#4 0x5613591f960e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#5 0x5613592064ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#6 0x5613591e24ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#7 0x5613591e24ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#8 0x7f2f2281e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#9 0x7f2f2281e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#10 0x7f2f228b4b6c in event_call lib/event.c:1976
#11 0x7f2f227f2c5a in frr_run lib/libfrr.c:1213
#12 0x5613591ddfb5 in main mgmtd/mgmt_main.c:285
#13 0x7f2f21a9dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#14 0x5613591dd949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_del
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `teardown_module`, router `e1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x55e037921db5 bp 0x7fff11bcd160 sp 0x7fff11bcd140 T0)
==31564==The signal is caused by a READ memory access.
==31564==Hint: address points to the zero page.
#0 0x55e037921db4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x55e037921db4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x55e037922d3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x55e03792460e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x55e0379314ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x55e03790d4ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x55e03790d4ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f0ea0ed006e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f0ea0ed0230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f0ea0f66b6c in event_call lib/event.c:1976
#10 0x7f0ea0ea4c5a in frr_run lib/libfrr.c:1213
#11 0x55e037908fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f0ea014fc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x55e037908949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `teardown_module`, router `d1`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x56476a47bdb5 bp 0x7ffe72862ac0 sp 0x7ffe72862aa0 T0)
==31683==The signal is caused by a READ memory access.
==31683==Hint: address points to the zero page.
#0 0x56476a47bdb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x56476a47bdb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x56476a47cd3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x56476a47e60e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x56476a48b4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x56476a4674ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x56476a4674ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f225f85106e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f225f851230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f225f8e7b6c in event_call lib/event.c:1976
#10 0x7f225f825c5a in frr_run lib/libfrr.c:1213
#11 0x56476a462fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f225ead0c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x56476a462949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `teardown_module`, router `d2`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x560c0c7eddb5 bp 0x7ffd59f8d7e0 sp 0x7ffd59f8d7c0 T0)
==31918==The signal is caused by a READ memory access.
==31918==Hint: address points to the zero page.
#0 0x560c0c7eddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x560c0c7eddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x560c0c7eed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x560c0c7f060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x560c0c7fd4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x560c0c7d94ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x560c0c7d94ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7f344b99606e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7f344b996230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7f344ba2cb6c in event_call lib/event.c:1976
#10 0x7f344b96ac5a in frr_run lib/libfrr.c:1213
#11 0x560c0c7d4fb5 in main mgmtd/mgmt_main.c:285
#12 0x7f344ac15c86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x560c0c7d4949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `teardown_module`, router `r3`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x561d9f5eddb5 bp 0x7ffc1b7d1d60 sp 0x7ffc1b7d1d40 T0)
==32033==The signal is caused by a READ memory access.
==32033==Hint: address points to the zero page.
#0 0x561d9f5eddb4 in mgmt_txn_batches_next_safe mgmtd/mgmt_txn.c:95
#1 0x561d9f5eddb4 in mgmt_txn_send_be_txn_delete mgmtd/mgmt_txn.c:1746
#2 0x561d9f5eed3c in mgmt_txn_req_free mgmtd/mgmt_txn.c:778
#3 0x561d9f5f060e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#4 0x561d9f5fd4ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#5 0x561d9f5d94ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#6 0x561d9f5d94ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#7 0x7fd80d1fe06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#8 0x7fd80d1fe230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#9 0x7fd80d294b6c in event_call lib/event.c:1976
#10 0x7fd80d1d2c5a in frr_run lib/libfrr.c:1213
#11 0x561d9f5d4fb5 in main mgmtd/mgmt_main.c:285
#12 0x7fd80c47dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#13 0x561d9f5d4949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_next_safe
---------------
## Error: SEGV
### AddressSanitizer error in topotest `test_evpn_type5_topo1.py`, test `teardown_module`, router `r4`
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x5613591f6588 bp 0x7ffd235d4170 sp 0x7ffd235d4150 T0)
==32153==The signal is caused by a READ memory access.
==32153==Hint: address points to the zero page.
#0 0x5613591f6587 in mgmt_txn_batches_del mgmtd/mgmt_txn.c:95
#1 0x5613591f6587 in mgmt_txn_cfg_batch_free mgmtd/mgmt_txn.c:379
#2 0x5613591f794a in mgmt_txn_cleanup_be_cfg_batches mgmtd/mgmt_txn.c:450
#3 0x5613591f794a in mgmt_txn_req_free mgmtd/mgmt_txn.c:763
#4 0x5613591f960e in mgmt_txn_send_commit_cfg_reply mgmtd/mgmt_txn.c:1154
#5 0x5613592064ee in mgmt_txn_notify_be_cfgdata_reply mgmtd/mgmt_txn.c:3207
#6 0x5613591e24ff in mgmt_be_adapter_handle_msg mgmtd/mgmt_be_adapter.c:355
#7 0x5613591e24ff in mgmt_be_adapter_process_msg mgmtd/mgmt_be_adapter.c:535
#8 0x7f2f2281e06e in mgmt_msg_procbufs lib/mgmt_msg.c:164
#9 0x7f2f2281e230 in msg_conn_proc_msgs lib/mgmt_msg.c:482
#10 0x7f2f228b4b6c in event_call lib/event.c:1976
#11 0x7f2f227f2c5a in frr_run lib/libfrr.c:1213
#12 0x5613591ddfb5 in main mgmtd/mgmt_main.c:285
#13 0x7f2f21a9dc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
#14 0x5613591dd949 in _start (/usr/lib/frr/mgmtd+0x32949)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV mgmtd/mgmt_txn.c:95 in mgmt_txn_batches_del
---------------
Addresssanitizer topotests part 6: Unknown Log <Topotest-Details> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN6/Topotest-Details/
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN6-14332/test
Topology Tests failed for Addresssanitizer topotests part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/ASAN6/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 1: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP1U1804AMD64-14332/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14332/artifact/TP1U1804AMD64/TopotestLogs/log_topotests.txt
Successful on other platforms/tests
- Debian 9 deb pkg check
- Static analyzer (clang)
- Ubuntu 20.04 deb pkg check
- Debian 10 deb pkg check
- CentOS 7 rpm pkg check
- Addresssanitizer topotests part 8
- Topotests Ubuntu 18.04 arm8 part 8
- Ubuntu 18.04 deb pkg check
This pull request has conflicts, please resolve those before we can evaluate the pull request.
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Successful
Basic Tests: Failed
Topotests debian 10 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 9: Unknown LogTopotests Ubuntu 18.04 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18I386/TopotestDetails/
Topotests debian 10 amd64 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO1DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO1DEB10AMD64/TopotestDetails/
Topotests debian 10 amd64 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO2DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO2DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18ARM64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18ARM64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18ARM64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 1: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 1: Unknown LogTopotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPOU1804/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18AMD64/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 7: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18I386/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 8: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 8: Unknown LogTopotests debian 10 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 1: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP1U1804AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TP1U1804AMD64/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 2: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 2: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP2U1804AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TP2U1804AMD64/TopotestLogs/log_topotests.txt
Successful on other platforms/tests
- Topotests debian 10 amd64 part 3
- Addresssanitizer topotests part 0
- Topotests Ubuntu 18.04 arm8 part 4
- Ubuntu 20.04 deb pkg check
- Ubuntu 18.04 deb pkg check
- Debian 10 deb pkg check
- Addresssanitizer topotests part 1
- Topotests Ubuntu 18.04 i386 part 4
- Addresssanitizer topotests part 4
- Debian 9 deb pkg check
- Addresssanitizer topotests part 8
- Topotests Ubuntu 18.04 i386 part 3
- Topotests Ubuntu 18.04 arm8 part 5
- Topotests debian 10 amd64 part 4
- Addresssanitizer topotests part 7
- Topotests Ubuntu 18.04 arm8 part 3
- Static analyzer (clang)
- Addresssanitizer topotests part 5
- Topotests Ubuntu 18.04 amd64 part 4
- Topotests Ubuntu 18.04 i386 part 1
- Addresssanitizer topotests part 2
- Topotests Ubuntu 18.04 amd64 part 5
- Topotests debian 10 amd64 part 6
- Topotests Ubuntu 18.04 arm8 part 6
- Addresssanitizer topotests part 3
- Topotests Ubuntu 18.04 arm8 part 2
- Addresssanitizer topotests part 9
- Topotests debian 10 amd64 part 5
- CentOS 7 rpm pkg check
- Topotests Ubuntu 18.04 i386 part 2
- Topotests Ubuntu 18.04 amd64 part 3
- Addresssanitizer topotests part 6
- Topotests Ubuntu 18.04 i386 part 5
Warnings Generated during build:
Checkout code: Successful with additional warnings
Topotests debian 10 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 9: Unknown LogTopotests Ubuntu 18.04 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9U18I386/TopotestDetails/
Topotests debian 10 amd64 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO1DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO1DEB10AMD64/TopotestDetails/
Topotests debian 10 amd64 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO2DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO2DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO6U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18ARM64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18ARM64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO8U18ARM64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 1: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 1: Unknown LogTopotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPOU1804/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18AMD64/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 7: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7U18I386/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 8: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 8: Unknown LogTopotests debian 10 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO9DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 1: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP1U1804AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TP1U1804AMD64/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7DEB10AMD64-14341/test
Topology Tests failed for Topotests debian 10 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TOPO7DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 2: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 2: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP2U1804AMD64-14341/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/TP2U1804AMD64/TopotestLogs/log_topotests.txt
<stdin>:73: trailing whitespace.
of validating any data under these data portions, by specifying only
<stdin>:102: trailing whitespace.
'MGMT_SUBSCR_VALIDATE_CFG' and 'MGMT_SUBSCR_OPER_OWN' values for the
warning: 2 lines add whitespace errors.
Report for mgmt_be_adapter.c | 4 issues
===============================================
< WARNING: space prohibited between function name and open parenthesis '('
< #941: FILE: /tmp/f1-3685800/mgmt_be_adapter.c:941:
< WARNING: unnecessary whitespace before a quoted newline
< #986: FILE: /tmp/f1-3685800/mgmt_be_adapter.c:986:
Report for mgmt_util.c | 4 issues
===============================================
ERROR: do not initialise statics to false
#491: FILE: /tmp/f1-3685800/mgmt_util.c:491:
+ static bool mgmt_util_vty_initialized = false;
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-3685800/mgmt_util.h:270:
+ * vty
+ * vty context.
CLANG Static Analyzer Summary
- Github Pull Request 14428, comparing to Git base SHA dbd08a3
- Base image data for Git dbd08a3 does not exist - compare skipped
4 Static Analyzer issues remaining.
See details at https://ci1.netdef.org/browse/FRR-PULLREQ2-14341/artifact/shared/static_analysis/index.html
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14364/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Failed
Checkout code: Failed (click for details)
PullReq merge failed. Please rebase your branch: see merge log in attachment https://ci1.netdef.org/browse/FRR-PULLREQ2-14364/artifact/CHECKOUT/ErrorLog/log_merge.txt
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Successful
Basic Tests: Failed
Topotests debian 10 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18ARM64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18ARM64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18ARM64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 1: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP1U1804AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TP1U1804AMD64/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 arm8 part 1: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 1: Unknown LogTopotests debian 10 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO6DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO6DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 6: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 6: Unknown LogAddresssanitizer topotests part 1: Failed (click for details)
***********************************************************************************
Address Sanitizer Error detected in all_protocol_startup.test_all_protocol_startup/r1.asan.mgmtd.21201
=================================================================
==21201==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 296 byte(s) in 1 object(s) allocated from:
#0 0x7fad134c6d28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fad12eb1e9b in qcalloc lib/memory.c:105
#2 0x55a8bc4e9742 in mgmt_txn_req_alloc mgmtd/mgmt_txn.c:616
#3 0x55a8bc4f9c74 in mgmt_txn_notify_be_adapter_conn mgmtd/mgmt_txn.c:3021
#4 0x55a8bc4d6840 in mgmt_be_adapter_conn_init mgmtd/mgmt_be_adapter.c:581
#5 0x7fad12f57aaf in event_call lib/event.c:1969
#6 0x7fad12e9513a in frr_run lib/libfrr.c:1213
#7 0x55a8bc4d3185 in main mgmtd/mgmt_main.c:285
#8 0x7fad1213fc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
SUMMARY: AddressSanitizer: 296 byte(s) leaked in 1 allocation(s).
***********************************************************************************
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN1-14365/test
Topology Tests failed for Addresssanitizer topotests part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/ASAN1/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/ASAN1/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 7: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO2U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO2U18I386/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPOU1804/TopotestDetails/
Topotests debian 10 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 9: Unknown LogTopotests debian 10 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9DEB10AMD64/TopotestDetails/
Successful on other platforms/tests
- Topotests debian 10 amd64 part 2
- Addresssanitizer topotests part 8
- Static analyzer (clang)
- Ubuntu 20.04 deb pkg check
- Ubuntu 18.04 deb pkg check
- Addresssanitizer topotests part 6
- Debian 10 deb pkg check
- Topotests Ubuntu 18.04 arm8 part 5
- Topotests debian 10 amd64 part 3
- Topotests Ubuntu 18.04 amd64 part 6
- Addresssanitizer topotests part 0
- Addresssanitizer topotests part 4
- Topotests Ubuntu 18.04 arm8 part 3
- Debian 9 deb pkg check
- Topotests debian 10 amd64 part 5
- Topotests Ubuntu 18.04 i386 part 4
- Topotests debian 10 amd64 part 4
- Addresssanitizer topotests part 9
- Topotests Ubuntu 18.04 amd64 part 3
- Topotests Ubuntu 18.04 arm8 part 2
- Addresssanitizer topotests part 7
- Topotests Ubuntu 18.04 arm8 part 8
- Topotests Ubuntu 18.04 amd64 part 5
- Topotests Ubuntu 18.04 i386 part 6
- Addresssanitizer topotests part 5
- Topotests Ubuntu 18.04 amd64 part 2
- Topotests Ubuntu 18.04 i386 part 3
- Addresssanitizer topotests part 3
- Topotests Ubuntu 18.04 i386 part 5
- Topotests Ubuntu 18.04 arm8 part 4
- Addresssanitizer topotests part 2
- CentOS 7 rpm pkg check
- Topotests Ubuntu 18.04 amd64 part 4
Warnings Generated during build:
Checkout code: Successful with additional warnings
Topotests debian 10 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 i386 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18ARM64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18ARM64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18ARM64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests debian 10 amd64 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 1: Failed (click for details)
Topotests Ubuntu 18.04 amd64 part 1: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TP1U1804AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TP1U1804AMD64/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 arm8 part 1: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 1: Unknown LogTopotests debian 10 amd64 part 6: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO6DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 6 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO6DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 6: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO6DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 6: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 6: Unknown LogAddresssanitizer topotests part 1: Failed (click for details)
***********************************************************************************
Address Sanitizer Error detected in all_protocol_startup.test_all_protocol_startup/r1.asan.mgmtd.21201
=================================================================
==21201==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 296 byte(s) in 1 object(s) allocated from:
#0 0x7fad134c6d28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fad12eb1e9b in qcalloc lib/memory.c:105
#2 0x55a8bc4e9742 in mgmt_txn_req_alloc mgmtd/mgmt_txn.c:616
#3 0x55a8bc4f9c74 in mgmt_txn_notify_be_adapter_conn mgmtd/mgmt_txn.c:3021
#4 0x55a8bc4d6840 in mgmt_be_adapter_conn_init mgmtd/mgmt_be_adapter.c:581
#5 0x7fad12f57aaf in event_call lib/event.c:1969
#6 0x7fad12e9513a in frr_run lib/libfrr.c:1213
#7 0x55a8bc4d3185 in main mgmtd/mgmt_main.c:285
#8 0x7fad1213fc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
SUMMARY: AddressSanitizer: 296 byte(s) leaked in 1 allocation(s).
***********************************************************************************
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN1-14365/test
Topology Tests failed for Addresssanitizer topotests part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/ASAN1/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/ASAN1/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 7: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 7: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 2: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO2U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 2 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO2U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 2: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO2U18I386/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 1: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO1U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO1U18I386/TopotestDetails/
Topotests Ubuntu 18.04 i386 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8U18I386-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8U18I386/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPOU1804/TopotestDetails/
Topotests debian 10 amd64 part 8: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO8DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 8 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 8: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO8DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 amd64 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18AMD64-14365/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18AMD64/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO7U18AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 9: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 9: Unknown LogTopotests debian 10 amd64 part 9: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO9DEB10AMD64-14365/test
Topology Tests failed for Topotests debian 10 amd64 part 9 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 9: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/TOPO9DEB10AMD64/TopotestDetails/
Report for mgmt_be_adapter.c | 4 issues
===============================================
< WARNING: space prohibited between function name and open parenthesis '('
< #940: FILE: /tmp/f1-5761/mgmt_be_adapter.c:940:
< WARNING: unnecessary whitespace before a quoted newline
< #985: FILE: /tmp/f1-5761/mgmt_be_adapter.c:985:
Report for mgmt_util.c | 4 issues
===============================================
ERROR: do not initialise statics to false
#491: FILE: /tmp/f1-5761/mgmt_util.c:491:
+ static bool mgmt_util_vty_initialized = false;
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-5761/mgmt_util.h:270:
+ * vty
+ * vty context.
CLANG Static Analyzer Summary
- Github Pull Request 14428, comparing to Git base SHA bb308b1
- Base image data for Git bb308b1 does not exist - compare skipped
3 Static Analyzer issues remaining.
See details at https://ci1.netdef.org/browse/FRR-PULLREQ2-14365/artifact/shared/static_analysis/index.html
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Successful
Basic Tests: Failed
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPOU1804/TopotestDetails/
Addresssanitizer topotests part 1: Failed (click for details)
***********************************************************************************
Address Sanitizer Error detected in bgp_auth.test_bgp_auth4/R1.asan.ospfd.15523
=================================================================
==15523==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 256 byte(s) in 2 object(s) allocated from:
#0 0x7fcf01c0bd28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fcf015f6e9b in qcalloc lib/memory.c:105
#2 0x5591cc19cea9 in ospf_lsa_new ospfd/ospf_lsa.c:186
#3 0x5591cc19d1b3 in ospf_lsa_new_and_data ospfd/ospf_lsa.c:205
#4 0x5591cc1d1c0c in ospf_ls_upd_list_lsa ospfd/ospf_packet.c:1631
#5 0x5591cc1d1c0c in ospf_ls_upd ospfd/ospf_packet.c:1716
#6 0x5591cc1d1c0c in ospf_read_helper ospfd/ospf_packet.c:2896
#7 0x5591cc1d1c0c in ospf_read ospfd/ospf_packet.c:2927
#8 0x7fcf0169caaf in event_call lib/event.c:1969
#9 0x7fcf015da13a in frr_run lib/libfrr.c:1213
#10 0x5591cc17ac49 in main ospfd/ospf_main.c:251
#11 0x7fcf00bebc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
Indirect leak of 92 byte(s) in 2 object(s) allocated from:
#0 0x7fcf01c0bd28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fcf015f6e9b in qcalloc lib/memory.c:105
#2 0x5591cc19d1a2 in ospf_lsa_data_new ospfd/ospf_lsa.c:296
#3 0x5591cc19d1be in ospf_lsa_new_and_data ospfd/ospf_lsa.c:206
#4 0x5591cc1d1c0c in ospf_ls_upd_list_lsa ospfd/ospf_packet.c:1631
#5 0x5591cc1d1c0c in ospf_ls_upd ospfd/ospf_packet.c:1716
#6 0x5591cc1d1c0c in ospf_read_helper ospfd/ospf_packet.c:2896
#7 0x5591cc1d1c0c in ospf_read ospfd/ospf_packet.c:2927
#8 0x7fcf0169caaf in event_call lib/event.c:1969
#9 0x7fcf015da13a in frr_run lib/libfrr.c:1213
#10 0x5591cc17ac49 in main ospfd/ospf_main.c:251
#11 0x7fcf00bebc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
SUMMARY: AddressSanitizer: 348 byte(s) leaked in 4 allocation(s).
***********************************************************************************
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN1-14386/test
Topology Tests failed for Addresssanitizer topotests part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/ASAN1/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/ASAN1/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 8: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 8: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO7U18I386/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14386/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Successful on other platforms/tests
- Addresssanitizer topotests part 6
- Topotests Ubuntu 18.04 i386 part 5
- Topotests debian 10 amd64 part 1
- Addresssanitizer topotests part 3
- Topotests Ubuntu 18.04 arm8 part 5
- CentOS 7 rpm pkg check
- Topotests Ubuntu 18.04 amd64 part 4
- Topotests Ubuntu 18.04 i386 part 9
- Addresssanitizer topotests part 2
- Topotests debian 10 amd64 part 5
- Topotests Ubuntu 18.04 amd64 part 1
- Topotests Ubuntu 18.04 i386 part 4
- Ubuntu 18.04 deb pkg check
- Topotests debian 10 amd64 part 7
- Debian 9 deb pkg check
- Topotests Ubuntu 18.04 i386 part 2
- Topotests Ubuntu 18.04 amd64 part 6
- Addresssanitizer topotests part 8
- Topotests Ubuntu 18.04 arm8 part 1
- Topotests Ubuntu 18.04 arm8 part 6
- Topotests debian 10 amd64 part 6
- Addresssanitizer topotests part 5
- Topotests Ubuntu 18.04 arm8 part 3
- Topotests debian 10 amd64 part 4
- Topotests Ubuntu 18.04 i386 part 3
- Topotests Ubuntu 18.04 amd64 part 2
- Addresssanitizer topotests part 4
- Addresssanitizer topotests part 0
- Topotests debian 10 amd64 part 8
- Topotests Ubuntu 18.04 arm8 part 4
- Topotests debian 10 amd64 part 9
- Topotests Ubuntu 18.04 amd64 part 3
- Topotests Ubuntu 18.04 arm8 part 9
- Topotests debian 10 amd64 part 3
- Static analyzer (clang)
- Topotests Ubuntu 18.04 arm8 part 2
- Topotests Ubuntu 18.04 arm8 part 7
- Topotests Ubuntu 18.04 i386 part 6
- Addresssanitizer topotests part 9
- Topotests Ubuntu 18.04 i386 part 1
- Topotests debian 10 amd64 part 2
- Topotests Ubuntu 18.04 amd64 part 8
- Topotests Ubuntu 18.04 i386 part 8
- Topotests Ubuntu 18.04 amd64 part 9
- Addresssanitizer topotests part 7
- Ubuntu 20.04 deb pkg check
- Topotests Ubuntu 18.04 amd64 part 7
- Debian 10 deb pkg check
- Topotests Ubuntu 18.04 amd64 part 5
Warnings Generated during build:
Checkout code: Successful with additional warnings
Topotests Ubuntu 18.04 i386 part 0: Failed (click for details)
Topotests Ubuntu 18.04 i386 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18I386-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0U18I386/TopotestLogs/log_topotests.txt
Topotests Ubuntu 18.04 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPOU1804-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPOU1804/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPOU1804/TopotestDetails/
Addresssanitizer topotests part 1: Failed (click for details)
***********************************************************************************
Address Sanitizer Error detected in bgp_auth.test_bgp_auth4/R1.asan.ospfd.15523
=================================================================
==15523==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 256 byte(s) in 2 object(s) allocated from:
#0 0x7fcf01c0bd28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fcf015f6e9b in qcalloc lib/memory.c:105
#2 0x5591cc19cea9 in ospf_lsa_new ospfd/ospf_lsa.c:186
#3 0x5591cc19d1b3 in ospf_lsa_new_and_data ospfd/ospf_lsa.c:205
#4 0x5591cc1d1c0c in ospf_ls_upd_list_lsa ospfd/ospf_packet.c:1631
#5 0x5591cc1d1c0c in ospf_ls_upd ospfd/ospf_packet.c:1716
#6 0x5591cc1d1c0c in ospf_read_helper ospfd/ospf_packet.c:2896
#7 0x5591cc1d1c0c in ospf_read ospfd/ospf_packet.c:2927
#8 0x7fcf0169caaf in event_call lib/event.c:1969
#9 0x7fcf015da13a in frr_run lib/libfrr.c:1213
#10 0x5591cc17ac49 in main ospfd/ospf_main.c:251
#11 0x7fcf00bebc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
Indirect leak of 92 byte(s) in 2 object(s) allocated from:
#0 0x7fcf01c0bd28 in __interceptor_calloc (/usr/lib/x86_64-linux-gnu/libasan.so.4+0xded28)
#1 0x7fcf015f6e9b in qcalloc lib/memory.c:105
#2 0x5591cc19d1a2 in ospf_lsa_data_new ospfd/ospf_lsa.c:296
#3 0x5591cc19d1be in ospf_lsa_new_and_data ospfd/ospf_lsa.c:206
#4 0x5591cc1d1c0c in ospf_ls_upd_list_lsa ospfd/ospf_packet.c:1631
#5 0x5591cc1d1c0c in ospf_ls_upd ospfd/ospf_packet.c:1716
#6 0x5591cc1d1c0c in ospf_read_helper ospfd/ospf_packet.c:2896
#7 0x5591cc1d1c0c in ospf_read ospfd/ospf_packet.c:2927
#8 0x7fcf0169caaf in event_call lib/event.c:1969
#9 0x7fcf015da13a in frr_run lib/libfrr.c:1213
#10 0x5591cc17ac49 in main ospfd/ospf_main.c:251
#11 0x7fcf00bebc86 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x21c86)
SUMMARY: AddressSanitizer: 348 byte(s) leaked in 4 allocation(s).
***********************************************************************************
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-ASAN1-14386/test
Topology Tests failed for Addresssanitizer topotests part 1 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/ASAN1/TopotestLogs/log_topotests.txt Addresssanitizer topotests part 1: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/ASAN1/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 8: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 8: Unknown LogTopotests Ubuntu 18.04 i386 part 7: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO7U18I386-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 i386 part 7 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO7U18I386/TopotestLogs/log_topotests.txt Topotests Ubuntu 18.04 i386 part 7: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO7U18I386/TopotestDetails/
Topotests debian 10 amd64 part 0: Failed (click for details)
Topology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0DEB10AMD64-14386/test
Topology Tests failed for Topotests debian 10 amd64 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0DEB10AMD64/TopotestLogs/log_topotests.txt Topotests debian 10 amd64 part 0: Unknown Log <TopotestDetails> URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0DEB10AMD64/TopotestDetails/
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14386/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Report for mgmt_be_adapter.c | 8 issues
===============================================
< ERROR: "foo* bar" should be "foo *bar"
< #602: FILE: /tmp/f1-1703872/mgmt_be_adapter.c:602:
< ERROR: "foo* bar" should be "foo *bar"
< #610: FILE: /tmp/f1-1703872/mgmt_be_adapter.c:610:
< WARNING: space prohibited between function name and open parenthesis '('
< #951: FILE: /tmp/f1-1703872/mgmt_be_adapter.c:951:
< WARNING: unnecessary whitespace before a quoted newline
< #996: FILE: /tmp/f1-1703872/mgmt_be_adapter.c:996:
Report for mgmt_txn.c | 10 issues
===============================================
< WARNING: suspect code indent for conditional statements (24, 31)
< #1302: FILE: /tmp/f1-1703872/mgmt_txn.c:1302:
< ERROR: code indent should use tabs where possible
< #1307: FILE: /tmp/f1-1703872/mgmt_txn.c:1307:
< WARNING: please, no spaces at the start of a line
< #1307: FILE: /tmp/f1-1703872/mgmt_txn.c:1307:
< ERROR: code indent should use tabs where possible
< #1308: FILE: /tmp/f1-1703872/mgmt_txn.c:1308:
< WARNING: please, no spaces at the start of a line
< #1308: FILE: /tmp/f1-1703872/mgmt_txn.c:1308:
Report for mgmt_util.c | 4 issues
===============================================
ERROR: do not initialise statics to false
#491: FILE: /tmp/f1-1703872/mgmt_util.c:491:
+ static bool mgmt_util_vty_initialized = false;
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-1703872/mgmt_util.h:270:
+ * vty
+ * vty context.
CLANG Static Analyzer Summary
- Github Pull Request 14428, comparing to Git base SHA 8640fc9
- Base image data for Git 8640fc9 does not exist - compare skipped
3 Static Analyzer issues remaining.
See details at https://ci1.netdef.org/browse/FRR-PULLREQ2-14386/artifact/shared/static_analysis/index.html
Continuous Integration Result: FAILED
Continuous Integration Result: FAILED
See below for issues. CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14414/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Get source / Pull Request: Successful
Building Stage: Successful
Basic Tests: Failed
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14414/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14414/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Successful on other platforms/tests
- Addresssanitizer topotests part 2
- Topotests Ubuntu 18.04 amd64 part 5
- Topotests debian 10 amd64 part 5
- Topotests Ubuntu 18.04 arm8 part 2
- Topotests Ubuntu 18.04 i386 part 6
- Addresssanitizer topotests part 9
- Topotests Ubuntu 18.04 i386 part 1
- Topotests Ubuntu 18.04 amd64 part 4
- Topotests Ubuntu 18.04 arm8 part 6
- Topotests Ubuntu 18.04 arm8 part 1
- Topotests Ubuntu 18.04 arm8 part 7
- Topotests Ubuntu 18.04 i386 part 7
- Topotests Ubuntu 18.04 amd64 part 7
- Topotests debian 10 amd64 part 6
- Addresssanitizer topotests part 3
- Topotests Ubuntu 18.04 i386 part 2
- Topotests Ubuntu 18.04 arm8 part 8
- Addresssanitizer topotests part 7
- Topotests debian 10 amd64 part 0
- Topotests Ubuntu 18.04 i386 part 0
- Addresssanitizer topotests part 6
- Topotests debian 10 amd64 part 9
- CentOS 7 rpm pkg check
- Topotests Ubuntu 18.04 amd64 part 3
- Topotests Ubuntu 18.04 amd64 part 0
- Topotests debian 10 amd64 part 7
- Topotests Ubuntu 18.04 amd64 part 2
- Topotests debian 10 amd64 part 8
- Topotests Ubuntu 18.04 i386 part 5
- Topotests Ubuntu 18.04 arm8 part 4
- Ubuntu 18.04 deb pkg check
- Topotests Ubuntu 18.04 arm8 part 9
- Debian 9 deb pkg check
- Addresssanitizer topotests part 1
- Ubuntu 20.04 deb pkg check
- Topotests Ubuntu 18.04 i386 part 4
- Topotests Ubuntu 18.04 amd64 part 1
- Topotests Ubuntu 18.04 amd64 part 9
- Topotests Ubuntu 18.04 i386 part 3
- Topotests Ubuntu 18.04 i386 part 8
- Addresssanitizer topotests part 8
- Debian 10 deb pkg check
- Topotests Ubuntu 18.04 amd64 part 6
- Addresssanitizer topotests part 4
- Topotests Ubuntu 18.04 arm8 part 3
- Addresssanitizer topotests part 5
- Topotests Ubuntu 18.04 arm8 part 5
- Topotests debian 10 amd64 part 1
- Topotests debian 10 amd64 part 4
- Topotests Ubuntu 18.04 i386 part 9
- Topotests debian 10 amd64 part 2
- Topotests Ubuntu 18.04 amd64 part 8
- Addresssanitizer topotests part 0
- Topotests debian 10 amd64 part 3
- Static analyzer (clang)
Warnings Generated during build:
Checkout code: Successful with additional warnings
Topotests Ubuntu 18.04 arm8 part 0: Failed (click for details)
Topotests Ubuntu 18.04 arm8 part 0: Unknown LogTopology Test Results are at https://ci1.netdef.org/browse/FRR-PULLREQ2-TOPO0U18ARM8-14414/test
Topology Tests failed for Topotests Ubuntu 18.04 arm8 part 0 see full log at https://ci1.netdef.org/browse/FRR-PULLREQ2-14414/artifact/TOPO0U18ARM8/TopotestLogs/log_topotests.txt
Report for mgmt_be_adapter.c | 8 issues
===============================================
< ERROR: "foo* bar" should be "foo *bar"
< #608: FILE: /tmp/f1-326189/mgmt_be_adapter.c:608:
< ERROR: "foo* bar" should be "foo *bar"
< #616: FILE: /tmp/f1-326189/mgmt_be_adapter.c:616:
< WARNING: space prohibited between function name and open parenthesis '('
< #957: FILE: /tmp/f1-326189/mgmt_be_adapter.c:957:
< WARNING: unnecessary whitespace before a quoted newline
< #1002: FILE: /tmp/f1-326189/mgmt_be_adapter.c:1002:
Report for mgmt_txn.c | 10 issues
===============================================
< WARNING: suspect code indent for conditional statements (24, 31)
< #1302: FILE: /tmp/f1-326189/mgmt_txn.c:1302:
< ERROR: code indent should use tabs where possible
< #1307: FILE: /tmp/f1-326189/mgmt_txn.c:1307:
< WARNING: please, no spaces at the start of a line
< #1307: FILE: /tmp/f1-326189/mgmt_txn.c:1307:
< ERROR: code indent should use tabs where possible
< #1308: FILE: /tmp/f1-326189/mgmt_txn.c:1308:
< WARNING: please, no spaces at the start of a line
< #1308: FILE: /tmp/f1-326189/mgmt_txn.c:1308:
Report for mgmt_util.c | 4 issues
===============================================
ERROR: do not initialise statics to false
#491: FILE: /tmp/f1-326189/mgmt_util.c:491:
+ static bool mgmt_util_vty_initialized = false;
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-326189/mgmt_util.h:270:
+ * vty
+ * vty context.
Report for vty.c | 4 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #3648: FILE: /tmp/f1-326189/vty.c:3648:
< WARNING: braces {} are not necessary for single statement blocks
< #3656: FILE: /tmp/f1-326189/vty.c:3656:
CLANG Static Analyzer Summary
- Github Pull Request 14428, comparing to Git base SHA 3651803
- Base image data for Git 3651803 does not exist - compare skipped
3 Static Analyzer issues remaining.
See details at https://ci1.netdef.org/browse/FRR-PULLREQ2-14414/artifact/shared/static_analysis/index.html
ci:rerun
Continuous Integration Result: SUCCESSFUL
Congratulations, this patch passed basic tests
Tested-by: NetDEF / OpenSourceRouting.org CI System
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-PULLREQ2-14416/
This is a comment from an automated CI system. For questions and feedback in regards to this CI system, please feel free to email Martin Winter - mwinter (at) opensourcerouting.org.
Warnings Generated during build:
Checkout code: Successful with additional warnings
Report for mgmt_be_adapter.c | 8 issues
===============================================
< ERROR: "foo* bar" should be "foo *bar"
< #608: FILE: /tmp/f1-2042931/mgmt_be_adapter.c:608:
< ERROR: "foo* bar" should be "foo *bar"
< #616: FILE: /tmp/f1-2042931/mgmt_be_adapter.c:616:
< WARNING: space prohibited between function name and open parenthesis '('
< #957: FILE: /tmp/f1-2042931/mgmt_be_adapter.c:957:
< WARNING: unnecessary whitespace before a quoted newline
< #1002: FILE: /tmp/f1-2042931/mgmt_be_adapter.c:1002:
Report for mgmt_txn.c | 10 issues
===============================================
< WARNING: suspect code indent for conditional statements (24, 31)
< #1302: FILE: /tmp/f1-2042931/mgmt_txn.c:1302:
< ERROR: code indent should use tabs where possible
< #1307: FILE: /tmp/f1-2042931/mgmt_txn.c:1307:
< WARNING: please, no spaces at the start of a line
< #1307: FILE: /tmp/f1-2042931/mgmt_txn.c:1307:
< ERROR: code indent should use tabs where possible
< #1308: FILE: /tmp/f1-2042931/mgmt_txn.c:1308:
< WARNING: please, no spaces at the start of a line
< #1308: FILE: /tmp/f1-2042931/mgmt_txn.c:1308:
Report for mgmt_util.c | 4 issues
===============================================
ERROR: do not initialise statics to false
#491: FILE: /tmp/f1-2042931/mgmt_util.c:491:
+ static bool mgmt_util_vty_initialized = false;
Report for mgmt_util.h | 5 issues
===============================================
WARNING: Possible repeated word: 'vty'
#270: FILE: /tmp/f1-2042931/mgmt_util.h:270:
+ * vty
+ * vty context.
Report for vty.c | 4 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #3648: FILE: /tmp/f1-2042931/vty.c:3648:
< WARNING: braces {} are not necessary for single statement blocks
< #3656: FILE: /tmp/f1-2042931/vty.c:3656:
CLANG Static Analyzer Summary
- Github Pull Request 14428, comparing to Git base SHA 3651803
- Base image data for Git 3651803 does not exist - compare skipped
3 Static Analyzer issues remaining.
See details at https://ci1.netdef.org/browse/FRR-PULLREQ2-14416/artifact/shared/static_analysis/index.html
This pull request has conflicts, please resolve those before we can evaluate the pull request.
@pushpasis I think we can close this now, yes?