Skip to content

Commit

Permalink
interfaces-plugin: implement modify functionality for IPv4 neighbor l…
Browse files Browse the repository at this point in the history
…ink-layer-address leaf
  • Loading branch information
zinccyy committed Oct 11, 2022
1 parent 7610ffb commit b412a85
Showing 1 changed file with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "plugin/context.h"

#include <assert.h>
#include <linux/netlink.h>
#include <sysrepo.h>

#include <netlink/route/addr.h>
Expand All @@ -21,17 +22,64 @@ int interfaces_interface_ipv4_neighbor_change_link_layer_address_init(void* priv
int interfaces_interface_ipv4_neighbor_change_link_layer_address(void* priv, sr_session_ctx_t* session, const srpc_change_ctx_t* change_ctx)
{
int error = 0;
void* error_ptr = NULL;

// strings and buffers
const char* node_name = LYD_NAME(change_ctx->node);
const char* node_value = lyd_get_value(change_ctx->node);
char path_buffer[PATH_MAX] = { 0 };
char interface_name_buffer[100] = { 0 };
char ip_buffer[100] = { 0 };

// app context
interfaces_ctx_t* ctx = priv;

// mod changes context
interfaces_mod_changes_ctx_t* mod_ctx = &ctx->mod_ctx;

// libnl
struct rtnl_neigh* request_neigh = NULL;
struct rtnl_link* current_link = NULL;
struct nl_addr* dst_addr = NULL;
struct nl_addr* ll_addr = NULL;

SRPLG_LOG_INF(PLUGIN_NAME, "Node Name: %s; Previous Value: %s, Value: %s; Operation: %d", node_name, change_ctx->previous_value, node_value, change_ctx->operation);

// get node path
SRPC_SAFE_CALL_PTR(error_ptr, lyd_path(change_ctx->node, LYD_PATH_STD, path_buffer, sizeof(path_buffer)), error_out);

// get interface name
SRPC_SAFE_CALL_ERR(error, srpc_extract_xpath_key_value(path_buffer, "interface", "name", interface_name_buffer, sizeof(interface_name_buffer)), error_out);

// get IP
SRPC_SAFE_CALL_ERR(error, srpc_extract_xpath_key_value(path_buffer, "neighbor", "ip", ip_buffer, sizeof(ip_buffer)), error_out);

SRPLG_LOG_INF(PLUGIN_NAME, "Node Path: %s; Interface Name: %s; Neighbor IP: %s", path_buffer, interface_name_buffer, ip_buffer);

// get link
SRPC_SAFE_CALL_PTR(current_link, rtnl_link_get_by_name(mod_ctx->nl_ctx.link_cache, interface_name_buffer), error_out);

switch (change_ctx->operation) {
case SR_OP_CREATED:
// not used - used only in IP change callback
break;
case SR_OP_MODIFIED:
// change lladdr
request_neigh = rtnl_neigh_alloc();

// set interface
rtnl_neigh_set_ifindex(request_neigh, rtnl_link_get_ifindex(current_link));

// parse destination and LL address
SRPC_SAFE_CALL_ERR(error, nl_addr_parse(ip_buffer, AF_INET, &dst_addr), error_out);
SRPC_SAFE_CALL_ERR(error, nl_addr_parse(node_value, AF_LLC, &ll_addr), error_out);

// set destination and LL address
SRPC_SAFE_CALL_ERR(error, rtnl_neigh_set_dst(request_neigh, dst_addr), error_out);
rtnl_neigh_set_lladdr(request_neigh, ll_addr);

// change neighbor
SRPC_SAFE_CALL_ERR(error, rtnl_neigh_add(mod_ctx->nl_ctx.socket, request_neigh, NLM_F_REPLACE), error_out);

break;
case SR_OP_DELETED:
Expand All @@ -41,6 +89,13 @@ int interfaces_interface_ipv4_neighbor_change_link_layer_address(void* priv, sr_
break;
}

goto out;

error_out:
error = -1;

out:

return error;
}

Expand Down

0 comments on commit b412a85

Please sign in to comment.