blob: e991bd0a27afcaa87c4afcb5622188b9b5070f30 [file] [log] [blame]
Patrick McHardyf01ffbd2007-12-17 22:38:49 -08001#ifndef _NF_LOG_H
2#define _NF_LOG_H
3
Eric Leblondca735b32009-03-16 14:54:21 +01004#include <linux/netfilter.h>
5
Patrick McHardyf01ffbd2007-12-17 22:38:49 -08006/* those NF_LOG_* defines and struct nf_loginfo are legacy definitios that will
7 * disappear once iptables is replaced with pkttables. Please DO NOT use them
8 * for any new code! */
9#define NF_LOG_TCPSEQ 0x01 /* Log TCP sequence numbers */
10#define NF_LOG_TCPOPT 0x02 /* Log TCP options */
11#define NF_LOG_IPOPT 0x04 /* Log IP options */
12#define NF_LOG_UID 0x08 /* Log UID owning local socket */
13#define NF_LOG_MASK 0x0f
14
15#define NF_LOG_TYPE_LOG 0x01
16#define NF_LOG_TYPE_ULOG 0x02
17
18struct nf_loginfo {
19 u_int8_t type;
20 union {
21 struct {
22 u_int32_t copy_len;
23 u_int16_t group;
24 u_int16_t qthreshold;
25 } ulog;
26 struct {
27 u_int8_t level;
28 u_int8_t logflags;
29 } log;
30 } u;
31};
32
Jan Engelhardt76108ce2008-10-08 11:35:00 +020033typedef void nf_logfn(u_int8_t pf,
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080034 unsigned int hooknum,
35 const struct sk_buff *skb,
36 const struct net_device *in,
37 const struct net_device *out,
38 const struct nf_loginfo *li,
39 const char *prefix);
40
41struct nf_logger {
42 struct module *me;
43 nf_logfn *logfn;
44 char *name;
Eric Leblondca735b32009-03-16 14:54:21 +010045 struct list_head list[NFPROTO_NUMPROTO];
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080046};
47
48/* Function to register/unregister log function. */
Eric Leblondca735b32009-03-16 14:54:21 +010049int nf_log_register(u_int8_t pf, struct nf_logger *logger);
50void nf_log_unregister(struct nf_logger *logger);
51
52int nf_log_bind_pf(u_int8_t pf, const struct nf_logger *logger);
53void nf_log_unbind_pf(u_int8_t pf);
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080054
55/* Calls the registered backend logging function */
Joe Perchesb9075fa2011-10-31 17:11:33 -070056__printf(7, 8)
Jan Engelhardt76108ce2008-10-08 11:35:00 +020057void nf_log_packet(u_int8_t pf,
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080058 unsigned int hooknum,
59 const struct sk_buff *skb,
60 const struct net_device *in,
61 const struct net_device *out,
Patrick McHardy7b2f9632007-12-17 22:39:08 -080062 const struct nf_loginfo *li,
Joe Perchesb9075fa2011-10-31 17:11:33 -070063 const char *fmt, ...);
Patrick McHardyf01ffbd2007-12-17 22:38:49 -080064
65#endif /* _NF_LOG_H */