mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-06 14:39:42 +00:00

Allocation of a new netlink message with the two usual headers is reusable with other netlink netlink message types. Extract it into a helper, mnlu_msg_prepare(). Take the second header as an argument, instead of passing in parameters to initialize it, and copy it in. Signed-off-by: Petr Machata <me@pmachata.org> Signed-off-by: David Ahern <dsahern@gmail.com>
50 lines
1007 B
C
50 lines
1007 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* mnl_utils.c Helpers for working with libmnl.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <libmnl/libmnl.h>
|
|
|
|
#include "mnl_utils.h"
|
|
|
|
struct mnl_socket *mnlu_socket_open(int bus)
|
|
{
|
|
struct mnl_socket *nl;
|
|
int one = 1;
|
|
|
|
nl = mnl_socket_open(bus);
|
|
if (nl == NULL)
|
|
return NULL;
|
|
|
|
mnl_socket_setsockopt(nl, NETLINK_CAP_ACK, &one, sizeof(one));
|
|
mnl_socket_setsockopt(nl, NETLINK_EXT_ACK, &one, sizeof(one));
|
|
|
|
if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0)
|
|
goto err_bind;
|
|
|
|
return nl;
|
|
|
|
err_bind:
|
|
mnl_socket_close(nl);
|
|
return NULL;
|
|
}
|
|
|
|
struct nlmsghdr *mnlu_msg_prepare(void *buf, uint32_t nlmsg_type, uint16_t flags,
|
|
void *extra_header, size_t extra_header_size)
|
|
{
|
|
struct nlmsghdr *nlh;
|
|
void *eh;
|
|
|
|
nlh = mnl_nlmsg_put_header(buf);
|
|
nlh->nlmsg_type = nlmsg_type;
|
|
nlh->nlmsg_flags = flags;
|
|
nlh->nlmsg_seq = time(NULL);
|
|
|
|
eh = mnl_nlmsg_put_extra_header(nlh, extra_header_size);
|
|
memcpy(eh, extra_header, extra_header_size);
|
|
|
|
return nlh;
|
|
}
|