1 /* This is a module which is used for setting the NFMARK field of an skb. */
3 /* (C) 1999-2001 Marc Boucher <marc@mbsi.ca>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
13 #include <net/checksum.h>
15 #include <linux/netfilter_ipv4/ip_tables.h>
16 #include <linux/netfilter_ipv4/ipt_MARK.h>
18 MODULE_LICENSE("GPL");
19 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
20 MODULE_DESCRIPTION("iptables MARK modification module");
23 target_v0(struct sk_buff **pskb,
24 const struct net_device *in,
25 const struct net_device *out,
30 const struct ipt_mark_target_info *markinfo = targinfo;
32 if((*pskb)->nfmark != markinfo->mark) {
33 (*pskb)->nfmark = markinfo->mark;
34 (*pskb)->nfcache |= NFC_ALTERED;
40 target_v1(struct sk_buff **pskb,
41 const struct net_device *in,
42 const struct net_device *out,
47 const struct ipt_mark_target_info_v1 *markinfo = targinfo;
50 switch (markinfo->mode) {
52 mark = markinfo->mark;
56 mark = (*pskb)->nfmark & markinfo->mark;
60 mark = (*pskb)->nfmark | markinfo->mark;
64 if((*pskb)->nfmark != mark) {
65 (*pskb)->nfmark = mark;
66 (*pskb)->nfcache |= NFC_ALTERED;
73 checkentry_v0(const char *tablename,
74 const struct ipt_entry *e,
76 unsigned int targinfosize,
77 unsigned int hook_mask)
79 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_mark_target_info))) {
80 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
82 IPT_ALIGN(sizeof(struct ipt_mark_target_info)));
86 if (strcmp(tablename, "mangle") != 0) {
87 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
95 checkentry_v1(const char *tablename,
96 const struct ipt_entry *e,
98 unsigned int targinfosize,
99 unsigned int hook_mask)
101 struct ipt_mark_target_info_v1 *markinfo = targinfo;
103 if (targinfosize != IPT_ALIGN(sizeof(struct ipt_mark_target_info_v1))){
104 printk(KERN_WARNING "MARK: targinfosize %u != %Zu\n",
106 IPT_ALIGN(sizeof(struct ipt_mark_target_info_v1)));
110 if (strcmp(tablename, "mangle") != 0) {
111 printk(KERN_WARNING "MARK: can only be called from \"mangle\" table, not \"%s\"\n", tablename);
115 if (markinfo->mode != IPT_MARK_SET
116 && markinfo->mode != IPT_MARK_AND
117 && markinfo->mode != IPT_MARK_OR) {
118 printk(KERN_WARNING "MARK: unknown mode %u\n",
126 static struct ipt_target ipt_mark_reg_v0 = {
129 .checkentry = checkentry_v0,
134 static struct ipt_target ipt_mark_reg_v1 = {
137 .checkentry = checkentry_v1,
142 static int __init init(void)
146 err = ipt_register_target(&ipt_mark_reg_v0);
148 err = ipt_register_target(&ipt_mark_reg_v1);
150 ipt_unregister_target(&ipt_mark_reg_v0);
155 static void __exit fini(void)
157 ipt_unregister_target(&ipt_mark_reg_v0);
158 ipt_unregister_target(&ipt_mark_reg_v1);