libnl 3.11.0
nf-monitor.c
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
4 * Copyright (c) 2007 Philip Craig <philipc@snapgear.com>
5 * Copyright (c) 2007 Secure Computing Corporation
6 */
7
8#include "nl-default.h"
9
10#include <linux/netlink.h>
11#include <linux/netfilter/nfnetlink.h>
12
13#include <netlink/cli/utils.h>
14#include <netlink/netfilter/nfnl.h>
15
16static void obj_input(struct nl_object *obj, void *arg)
17{
18 struct nl_dump_params dp = {
20 .dp_fd = stdout,
21 .dp_dump_msgtype = 1,
22 };
23
24 nl_object_dump(obj, &dp);
25}
26
27static int event_input(struct nl_msg *msg, void *arg)
28{
29 if (nl_msg_parse(msg, &obj_input, NULL) < 0)
30 fprintf(stderr, "<<EVENT>> Unknown message type\n");
31
32 /* Exit nl_recvmsgs_def() and return to the main select() */
33 return NL_STOP;
34}
35
36int main(int argc, char *argv[])
37{
38 struct nl_sock *sock;
39 int err;
40 int i, idx;
41
42 static const struct {
43 enum nfnetlink_groups gr_id;
44 const char* gr_name;
45 } groups[] = {
46 { NFNLGRP_CONNTRACK_NEW, "ct-new" },
47 { NFNLGRP_CONNTRACK_UPDATE, "ct-update" },
48 { NFNLGRP_CONNTRACK_DESTROY, "ct-destroy" },
49 { NFNLGRP_NONE, NULL }
50 };
51
52 sock = nl_cli_alloc_socket();
54 nl_socket_modify_cb(sock, NL_CB_VALID, NL_CB_CUSTOM, event_input, NULL);
55
56 if (argc > 1 && !strcasecmp(argv[1], "-h")) {
57 printf("Usage: nf-monitor [<groups>]\n");
58
59 printf("Known groups:");
60 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++)
61 printf(" %s", groups[i].gr_name);
62 printf("\n");
63 return 2;
64 }
65
66 nl_cli_connect(sock, NETLINK_NETFILTER);
67
68 for (idx = 1; argc > idx; idx++) {
69 for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++) {
70 if (strcmp(argv[idx], groups[i].gr_name))
71 continue;
72
73 err = nl_socket_add_membership(sock, groups[i].gr_id);
74 if (err < 0)
75 nl_cli_fatal(err,
76 "Unable to add membership: %s",
77 nl_geterror(err));
78 break;
79 }
80
81 if (groups[i].gr_id == NFNLGRP_NONE)
82 nl_cli_fatal(NLE_OBJ_NOTFOUND, "Unknown group: \"%s\"",
83 argv[idx]);
84 }
85
86 while (1) {
87 fd_set rfds;
88 int fd, retval;
89
90 fd = nl_socket_get_fd(sock);
91
92 FD_ZERO(&rfds);
93 FD_SET(fd, &rfds);
94 /* wait for an incoming message on the netlink socket */
95 retval = select(fd+1, &rfds, NULL, NULL, NULL);
96
97 if (retval) {
98 /* FD_ISSET(fd, &rfds) will be true */
100 }
101 }
102
103 return 0;
104}
@ NL_STOP
Stop parsing altogether and discard remaining messages.
Definition handlers.h:62
@ NL_CB_VALID
Message is valid.
Definition handlers.h:89
@ NL_CB_CUSTOM
Customized handler specified by the user.
Definition handlers.h:77
void nl_cli_fatal(int err, const char *fmt,...)
Print error message and quit application.
Definition utils.c:71
void nl_object_dump(struct nl_object *obj, struct nl_dump_params *params)
Dump this object according to the specified parameters.
Definition object.c:294
int nl_recvmsgs_default(struct nl_sock *sk)
Receive a set of message from a netlink socket using handlers in nl_sock.
Definition nl.c:1093
int nl_socket_get_fd(const struct nl_sock *sk)
Return the file descriptor of the backing socket.
Definition socket.c:608
void nl_socket_disable_seq_check(struct nl_sock *sk)
Disable sequence number checking.
Definition socket.c:303
int nl_socket_modify_cb(struct nl_sock *sk, enum nl_cb_type type, enum nl_cb_kind kind, nl_recvmsg_msg_cb_t func, void *arg)
Modify the callback handler associated with the socket.
Definition socket.c:795
@ NL_DUMP_STATS
Dump all attributes including statistics.
Definition types.h:22
Dumping parameters.
Definition types.h:32
enum nl_dump_type dp_type
Specifies the type of dump that is requested.
Definition types.h:36