lin
2025-08-14 dae8bad597b6607a449b32bf76c523423f7720ed
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * src/nf-monitor.c     Monitor netfilter events
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License as published by the Free Software Foundation version 2.1
 *    of the License.
 *
 * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
 * Copyright (c) 2007 Philip Craig <philipc@snapgear.com>
 * Copyright (c) 2007 Secure Computing Corporation
 */
 
#include <netlink/cli/utils.h>
#include <netlink/netfilter/nfnl.h>
 
static void obj_input(struct nl_object *obj, void *arg)
{
   struct nl_dump_params dp = {
       .dp_type = NL_DUMP_STATS,
       .dp_fd = stdout,
       .dp_dump_msgtype = 1,
   };
 
   nl_object_dump(obj, &dp);
}
 
static int event_input(struct nl_msg *msg, void *arg)
{
   if (nl_msg_parse(msg, &obj_input, NULL) < 0)
       fprintf(stderr, "<<EVENT>> Unknown message type\n");
 
   /* Exit nl_recvmsgs_def() and return to the main select() */
   return NL_STOP;
}
 
int main(int argc, char *argv[])
{
   struct nl_sock *sock;
   int err;
   int i, idx;
 
   static const struct {
       enum nfnetlink_groups gr_id;
       const char* gr_name;
   } groups[] = {
       { NFNLGRP_CONNTRACK_NEW, "ct-new" },
       { NFNLGRP_CONNTRACK_UPDATE, "ct-update" },
       { NFNLGRP_CONNTRACK_DESTROY, "ct-destroy" },
       { NFNLGRP_NONE, NULL }
   };
 
   sock = nl_cli_alloc_socket();
   nl_socket_disable_seq_check(sock);
   nl_socket_modify_cb(sock, NL_CB_VALID, NL_CB_CUSTOM, event_input, NULL);
 
   if (argc > 1 && !strcasecmp(argv[1], "-h")) {
       printf("Usage: nf-monitor [<groups>]\n");
 
       printf("Known groups:");
       for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++)
           printf(" %s", groups[i].gr_name);
       printf("\n");
       return 2;
   }
 
   nl_cli_connect(sock, NETLINK_NETFILTER);
 
   for (idx = 1; argc > idx; idx++) {
       for (i = 0; groups[i].gr_id != NFNLGRP_NONE; i++) {
           if (strcmp(argv[idx], groups[i].gr_name))
               continue;
 
           err = nl_socket_add_membership(sock, groups[i].gr_id);
           if (err < 0)
               nl_cli_fatal(err,
                        "Unable to add membership: %s",
                        nl_geterror(err));
           break;
       }
 
       if (groups[i].gr_id == NFNLGRP_NONE)
           nl_cli_fatal(NLE_OBJ_NOTFOUND, "Unknown group: \"%s\"",
                    argv[idx]);
   }
 
   while (1) {
       fd_set rfds;
       int fd, retval;
 
       fd = nl_socket_get_fd(sock);
 
       FD_ZERO(&rfds);
       FD_SET(fd, &rfds);
       /* wait for an incoming message on the netlink socket */
       retval = select(fd+1, &rfds, NULL, NULL, NULL);
 
       if (retval) {
           /* FD_ISSET(fd, &rfds) will be true */
           nl_recvmsgs_default(sock);
       }
   }
 
   return 0;
}