forked from ibm-s390-linux/smc-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libnetlink.h
68 lines (64 loc) · 2.06 KB
/
libnetlink.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* SMC Tools - Shared Memory Communication Tools
*
* Copyright IBM Corp. 2020
*
* Author(s): Ursula Braun <[email protected]>
* Guvenc Gulce <[email protected]>
*
*
* Userspace program for SMC Information display
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
#ifndef SMC_LIBNETLINK_H_
#define SMC_LIBNETLINK_H_
#include <linux/sock_diag.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <arpa/inet.h>
#include <netlink/genl/genl.h>
#include <netlink/handlers.h>
#include <netlink/attr.h>
static const struct nla_policy smc_gen_net_policy[SMC_GEN_MAX + 1] = {
[SMC_GEN_UNSPEC] = { .type = NLA_UNSPEC, },
[SMC_GEN_STATS] = { .type = NLA_NESTED, },
[SMC_GEN_FBACK_STATS] = { .type = NLA_NESTED, },
};
struct rtnl_handle {
int fd;
struct sockaddr_nl local;
struct sockaddr_nl peer;
__u32 seq;
__u32 dump;
int proto;
FILE *dump_fp;
int flags;
};
#define DIAG_REQUEST(_req, _r, _seq) \
struct { \
struct nlmsghdr nlh; \
_r; \
} _req = { \
.nlh = { \
.nlmsg_type = SOCK_DIAG_BY_FAMILY, \
.nlmsg_flags = NLM_F_ROOT|NLM_F_REQUEST, \
.nlmsg_seq = _seq, \
.nlmsg_len = sizeof(_req), \
}, \
}
int rtnl_open(struct rtnl_handle *rth);
void rtnl_close(struct rtnl_handle *rth);
int rtnl_dump(struct rtnl_handle *rth, void (*handler)(struct nlmsghdr *nlh));
void parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
int sockdiag_send(int fd, unsigned char cmd);
void set_extension(int ext);
int gen_nl_open();
void gen_nl_close();
int gen_nl_handle(int cmd, int nlmsg_flags,
int (*cb_handler)(struct nl_msg *msg, void *arg), void *arg);
int gen_nl_handle_dump(int cmd, int (*cb_handler)(struct nl_msg *msg, void *arg), void *arg);
#endif /* SMC_LIBNETLINK_H_ */