From: Varsha Rao <[email protected]>

Subscribe nft monitor to both NFNLGRP_NFTABLES and NFNLGRP_NFTRACE.
nft monitor trace subscribes only to NFNLGRP_NFTRACE. Other event
reporting options to only NFNLGRP_NFTABLES.

Joint work with Pablo Neira.

Signed-off-by: Varsha Rao <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
---
 src/netlink.c | 36 ++++++++++++++++++++----------------
 1 file changed, 20 insertions(+), 16 deletions(-)

diff --git a/src/netlink.c b/src/netlink.c
index 9cef4c48f805..c1f194e9b008 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -3080,22 +3080,26 @@ int netlink_monitor(struct netlink_mon_handler 
*monhandler,
 {
        int group;
 
-       group = NFNLGRP_NFTABLES;
-       if (mnl_socket_setsockopt(nf_sock, NETLINK_ADD_MEMBERSHIP, &group,
-                                 sizeof(int)) < 0)
-               return netlink_io_error(monhandler->ctx, monhandler->loc,
-                                       "Could not bind to netlink socket %s",
-                                       strerror(errno));
-
-       group = NFNLGRP_NFTRACE;
-       if (mnl_socket_setsockopt(nf_sock, NETLINK_ADD_MEMBERSHIP, &group,
-                                 sizeof(int)) < 0)
-               return netlink_io_error(monhandler->ctx, monhandler->loc,
-                                       "Could not bind to netlink socket %s",
-                                       strerror(errno));
-
-       return mnl_nft_event_listener(nf_sock, netlink_events_cb,
-                                     monhandler);
+       if (monhandler->monitor_flags & (1 << NFT_MSG_TRACE)) {
+               group = NFNLGRP_NFTRACE;
+               if (mnl_socket_setsockopt(nf_sock, NETLINK_ADD_MEMBERSHIP,
+                                         &group, sizeof(int)) < 0)
+                       return netlink_io_error(monhandler->ctx,
+                                               monhandler->loc,
+                                               "Could not bind to netlink 
socket %s",
+                                               strerror(errno));
+       }
+       if (monhandler->monitor_flags & ~(1 << NFT_MSG_TRACE)) {
+               group = NFNLGRP_NFTABLES;
+               if (mnl_socket_setsockopt(nf_sock, NETLINK_ADD_MEMBERSHIP,
+                                         &group, sizeof(int)) < 0)
+                       return netlink_io_error(monhandler->ctx,
+                                               monhandler->loc,
+                                               "Could not bind to netlink 
socket %s",
+                                               strerror(errno));
+       }
+
+       return mnl_nft_event_listener(nf_sock, netlink_events_cb, monhandler);
 }
 
 bool netlink_batch_supported(struct mnl_socket *nf_sock)
-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to