blob: a3fe3c334b09efa268198ab32cb6960605e33597 [file] [log] [blame]
James Morris100468e2006-06-09 00:32:39 -07001/*
2 * This module is used to copy security markings from packets
3 * to connections, and restore security markings from connections
4 * back to packets. This would normally be performed in conjunction
5 * with the SECMARK target and state match.
6 *
7 * Based somewhat on CONNMARK:
8 * Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
9 * by Henrik Nordstrom <hno@marasystems.com>
10 *
11 * (C) 2006 Red Hat, Inc., James Morris <jmorris@redhat.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 */
18#include <linux/module.h>
19#include <linux/skbuff.h>
20#include <linux/netfilter/x_tables.h>
21#include <linux/netfilter/xt_CONNSECMARK.h>
22#include <net/netfilter/nf_conntrack_compat.h>
23
24#define PFX "CONNSECMARK: "
25
26MODULE_LICENSE("GPL");
27MODULE_AUTHOR("James Morris <jmorris@redhat.com>");
28MODULE_DESCRIPTION("ip[6]tables CONNSECMARK module");
29MODULE_ALIAS("ipt_CONNSECMARK");
30MODULE_ALIAS("ip6t_CONNSECMARK");
31
32/*
33 * If the packet has a security mark and the connection does not, copy
34 * the security mark from the packet to the connection.
35 */
36static void secmark_save(struct sk_buff *skb)
37{
38 if (skb->secmark) {
39 u32 *connsecmark;
40 enum ip_conntrack_info ctinfo;
41
42 connsecmark = nf_ct_get_secmark(skb, &ctinfo);
43 if (connsecmark && !*connsecmark)
44 if (*connsecmark != skb->secmark)
45 *connsecmark = skb->secmark;
46 }
47}
48
49/*
50 * If packet has no security mark, and the connection does, restore the
51 * security mark from the connection to the packet.
52 */
53static void secmark_restore(struct sk_buff *skb)
54{
55 if (!skb->secmark) {
56 u32 *connsecmark;
57 enum ip_conntrack_info ctinfo;
58
59 connsecmark = nf_ct_get_secmark(skb, &ctinfo);
60 if (connsecmark && *connsecmark)
61 if (skb->secmark != *connsecmark)
62 skb->secmark = *connsecmark;
63 }
64}
65
66static unsigned int target(struct sk_buff **pskb, const struct net_device *in,
67 const struct net_device *out, unsigned int hooknum,
68 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -070069 const void *targinfo)
James Morris100468e2006-06-09 00:32:39 -070070{
71 struct sk_buff *skb = *pskb;
72 const struct xt_connsecmark_target_info *info = targinfo;
73
74 switch (info->mode) {
75 case CONNSECMARK_SAVE:
76 secmark_save(skb);
77 break;
78
79 case CONNSECMARK_RESTORE:
80 secmark_restore(skb);
81 break;
82
83 default:
84 BUG();
85 }
86
87 return XT_CONTINUE;
88}
89
90static int checkentry(const char *tablename, const void *entry,
91 const struct xt_target *target, void *targinfo,
Patrick McHardyefa74162006-08-22 00:36:37 -070092 unsigned int hook_mask)
James Morris100468e2006-06-09 00:32:39 -070093{
94 struct xt_connsecmark_target_info *info = targinfo;
95
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -080096 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
97 printk(KERN_WARNING "can't load conntrack support for "
98 "proto=%d\n", target->family);
99 return 0;
100 }
James Morris100468e2006-06-09 00:32:39 -0700101 switch (info->mode) {
102 case CONNSECMARK_SAVE:
103 case CONNSECMARK_RESTORE:
104 break;
105
106 default:
107 printk(KERN_INFO PFX "invalid mode: %hu\n", info->mode);
108 return 0;
109 }
110
111 return 1;
112}
113
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800114static void
115destroy(const struct xt_target *target, void *targinfo)
116{
117 nf_ct_l3proto_module_put(target->family);
118}
119
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700120static struct xt_target xt_connsecmark_target[] = {
121 {
122 .name = "CONNSECMARK",
123 .family = AF_INET,
124 .checkentry = checkentry,
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800125 .destroy = destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700126 .target = target,
127 .targetsize = sizeof(struct xt_connsecmark_target_info),
128 .table = "mangle",
129 .me = THIS_MODULE,
130 },
131 {
132 .name = "CONNSECMARK",
133 .family = AF_INET6,
134 .checkentry = checkentry,
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800135 .destroy = destroy,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700136 .target = target,
137 .targetsize = sizeof(struct xt_connsecmark_target_info),
138 .table = "mangle",
139 .me = THIS_MODULE,
140 },
James Morris100468e2006-06-09 00:32:39 -0700141};
142
143static int __init xt_connsecmark_init(void)
144{
Thomas Graf28094862006-08-22 13:52:17 -0700145 return xt_register_targets(xt_connsecmark_target,
146 ARRAY_SIZE(xt_connsecmark_target));
James Morris100468e2006-06-09 00:32:39 -0700147}
148
149static void __exit xt_connsecmark_fini(void)
150{
Thomas Graf28094862006-08-22 13:52:17 -0700151 xt_unregister_targets(xt_connsecmark_target,
152 ARRAY_SIZE(xt_connsecmark_target));
James Morris100468e2006-06-09 00:32:39 -0700153}
154
155module_init(xt_connsecmark_init);
156module_exit(xt_connsecmark_fini);