Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add respondd-module-lldp #189

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions net/respondd-module-lldp/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=respondd-module-lldp
PKG_VERSION:=1
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk

define Package/respondd-module-lldp
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=adds lldp usage neighbours provider to respondd
DEPENDS:=+respondd +lldpd
endef

define Package/respondd-module-lldp/install
$(INSTALL_DIR) $(1)/usr/lib/respondd
$(CP) $(PKG_BUILD_DIR)/respondd.so $(1)/usr/lib/respondd/lldp.so
endef

$(eval $(call BuildPackage,respondd-module-lldp))
12 changes: 12 additions & 0 deletions net/respondd-module-lldp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
This module adds a respondd lldp usage neighbours provider.
The format is the following:

```json
{
"neighbours": {
"lldp": {
"01:00:00:00:00:01": [ "02:00:00:00:00:01" ]
}
}
}
```
6 changes: 6 additions & 0 deletions net/respondd-module-lldp/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
all: respondd.so

CFLAGS += -Wall

respondd.so: respondd.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -std=c11 -shared -fPIC -D_GNU_SOURCE -o $@ $^ $(LDLIBS) -llldpctl
53 changes: 53 additions & 0 deletions net/respondd-module-lldp/src/respondd.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#include <respondd.h>
#include <json-c/json.h>
#include <lldpctl.h>
#include <lldp-const.h>

static struct json_object * respondd_provider_neighbours(void) {
lldpctl_conn_t *conn;
lldpctl_atom_t *ifaces, *iface, *port, *neighbors, *neighbor;
const char *ctlname, *neighmac, *portmac;
struct json_object *ret, *ret_lldp, *neighbors_array;

ret_lldp = json_object_new_object();

ctlname = lldpctl_get_default_transport();
conn = lldpctl_new_name(ctlname, NULL, NULL, NULL);
ifaces = lldpctl_get_interfaces(conn);
lldpctl_atom_foreach(ifaces, iface) {
port = lldpctl_get_port(iface);
// check if Port ID Subtype is MAC address
if (lldpctl_atom_get_int(port, lldpctl_k_port_id_subtype) != LLDP_PORTID_SUBTYPE_LLADDR)
continue;

portmac = lldpctl_atom_get_str(port, lldpctl_k_port_id);
if (!portmac)
continue;

neighbors_array = json_object_new_array();
neighbors = lldpctl_atom_get(port, lldpctl_k_port_neighbors);
lldpctl_atom_foreach(neighbors, neighbor) {
// check if Chassis ID Subtype is MAC address
if (lldpctl_atom_get_int(neighbor, lldpctl_k_chassis_id_subtype) != LLDP_CHASSISID_SUBTYPE_LLADDR)
continue;

neighmac = lldpctl_atom_get_str(neighbor, lldpctl_k_chassis_id);
if (!neighmac)
continue;

json_object_array_add(neighbors_array, json_object_new_string(neighmac));
}
lldpctl_atom_dec_ref(neighbors);
json_object_object_add(ret_lldp, portmac, neighbors_array);
}
lldpctl_release(conn);

ret = json_object_new_object();
json_object_object_add(ret, "lldp", ret_lldp);
return ret;
}

const struct respondd_provider_info respondd_providers[] = {
{"neighbours", respondd_provider_neighbours},
{}
};