The SELinux module sends out a netlink broadcast to any listening sockets. I'm wondering if it's possible to listen for netlink broadcast from within another kernel module?
From SELinux netlink code:
netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER);
I found that you can listen for netlink data through the use of regular sockets. And, yes, it's possible in kernel-space.
You basically need to create and bind to a socket:
To receive the data: