22 #include <sys/types.h>
23 #include <linux/netfilter/nfnetlink_log.h>
25 #include <netlink-local.h>
26 #include <netlink/attr.h>
27 #include <netlink/netfilter/nfnl.h>
28 #include <netlink/netfilter/log_msg.h>
30 #if __BYTE_ORDER == __BIG_ENDIAN
31 static uint64_t ntohll(uint64_t x)
35 #elif __BYTE_ORDER == __LITTLE_ENDIAN
36 static uint64_t ntohll(uint64_t x)
42 static struct nla_policy log_msg_policy[NFULA_MAX+1] = {
43 [NFULA_PACKET_HDR] = {
44 .
minlen =
sizeof(
struct nfulnl_msg_packet_hdr)
46 [NFULA_MARK] = { .type =
NLA_U32 },
48 .minlen =
sizeof(
struct nfulnl_msg_packet_timestamp)
50 [NFULA_IFINDEX_INDEV] = { .type =
NLA_U32 },
51 [NFULA_IFINDEX_OUTDEV] = { .type =
NLA_U32 },
52 [NFULA_IFINDEX_PHYSINDEV] = { .type =
NLA_U32 },
53 [NFULA_IFINDEX_PHYSOUTDEV] = { .type =
NLA_U32 },
55 .minlen =
sizeof(
struct nfulnl_msg_packet_hw)
59 [NFULA_UID] = { .type =
NLA_U32 },
60 [NFULA_GID] = { .type =
NLA_U32 },
61 [NFULA_SEQ] = { .type =
NLA_U32 },
62 [NFULA_SEQ_GLOBAL] = { .type =
NLA_U32 },
65 int nfnlmsg_log_msg_parse(
struct nlmsghdr *nlh,
struct nfnl_log_msg **result)
67 struct nfnl_log_msg *msg;
68 struct nlattr *tb[NFULA_MAX+1];
72 msg = nfnl_log_msg_alloc();
76 msg->ce_msgtype = nlh->nlmsg_type;
78 err =
nlmsg_parse(nlh,
sizeof(
struct nfgenmsg), tb, NFULA_MAX,
85 attr = tb[NFULA_PACKET_HDR];
87 struct nfulnl_msg_packet_hdr *hdr =
nla_data(attr);
90 nfnl_log_msg_set_hwproto(msg, hdr->hw_protocol);
91 nfnl_log_msg_set_hook(msg, hdr->hook);
94 attr = tb[NFULA_MARK];
96 nfnl_log_msg_set_mark(msg, ntohl(
nla_get_u32(attr)));
98 attr = tb[NFULA_TIMESTAMP];
100 struct nfulnl_msg_packet_timestamp *timestamp =
nla_data(attr);
103 tv.tv_sec = ntohll(timestamp->sec);
104 tv.tv_usec = ntohll(timestamp->usec);
105 nfnl_log_msg_set_timestamp(msg, &tv);
108 attr = tb[NFULA_IFINDEX_INDEV];
110 nfnl_log_msg_set_indev(msg, ntohl(
nla_get_u32(attr)));
112 attr = tb[NFULA_IFINDEX_OUTDEV];
114 nfnl_log_msg_set_outdev(msg, ntohl(
nla_get_u32(attr)));
116 attr = tb[NFULA_IFINDEX_PHYSINDEV];
118 nfnl_log_msg_set_physindev(msg, ntohl(
nla_get_u32(attr)));
120 attr = tb[NFULA_IFINDEX_PHYSOUTDEV];
122 nfnl_log_msg_set_physoutdev(msg, ntohl(
nla_get_u32(attr)));
124 attr = tb[NFULA_HWADDR];
126 struct nfulnl_msg_packet_hw *hw =
nla_data(attr);
128 nfnl_log_msg_set_hwaddr(msg, hw->hw_addr, ntohs(hw->hw_addrlen));
131 attr = tb[NFULA_PAYLOAD];
138 attr = tb[NFULA_PREFIX];
140 err = nfnl_log_msg_set_prefix(msg,
nla_data(attr));
145 attr = tb[NFULA_UID];
147 nfnl_log_msg_set_uid(msg, ntohl(
nla_get_u32(attr)));
149 attr = tb[NFULA_GID];
151 nfnl_log_msg_set_gid(msg, ntohl(
nla_get_u32(attr)));
153 attr = tb[NFULA_SEQ];
155 nfnl_log_msg_set_seq(msg, ntohl(
nla_get_u32(attr)));
157 attr = tb[NFULA_SEQ_GLOBAL];
159 nfnl_log_msg_set_seq_global(msg, ntohl(
nla_get_u32(attr)));
165 nfnl_log_msg_put(msg);
169 static int log_msg_parser(
struct nl_cache_ops *ops,
struct sockaddr_nl *who,
172 struct nfnl_log_msg *msg;
175 if ((err = nfnlmsg_log_msg_parse(nlh, &msg)) < 0)
180 nfnl_log_msg_put(msg);
186 #define NFNLMSG_LOG_TYPE(type) NFNLMSG_TYPE(NFNL_SUBSYS_ULOG, (type))
188 .
co_name =
"netfilter/log_msg",
189 .co_hdrsize = NFNL_HDRLEN,
191 { NFNLMSG_LOG_TYPE(NFULNL_MSG_PACKET), NL_ACT_NEW,
"new" },
192 END_OF_MSGTYPES_LIST,
194 .co_protocol = NETLINK_NETFILTER,
195 .co_msg_parser = log_msg_parser,
196 .co_obj_ops = &log_msg_obj_ops,
199 static void __init log_msg_init(
void)
204 static void __exit log_msg_exit(
void)