blob: 4605c947dcc49e751478aaffb816e17470998185 [file] [log] [blame]
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -07001/* Structure dynamic extension infrastructure
2 * Copyright (C) 2004 Rusty Russell IBM Corporation
3 * Copyright (C) 2007 Netfilter Core Team <coreteam@netfilter.org>
4 * Copyright (C) 2007 USAGI/WIDE Project <http://www.linux-ipv6.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/mutex.h>
14#include <linux/rcupdate.h>
15#include <linux/slab.h>
16#include <linux/skbuff.h>
17#include <net/netfilter/nf_conntrack_extend.h>
18
Arnd Bergmann0906a372010-03-09 20:59:15 +010019static struct nf_ct_ext_type __rcu *nf_ct_ext_types[NF_CT_EXT_NUM];
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070020static DEFINE_MUTEX(nf_ct_ext_type_mutex);
21
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070022void __nf_ct_ext_destroy(struct nf_conn *ct)
23{
24 unsigned int i;
25 struct nf_ct_ext_type *t;
Changli Gaoee92d372010-08-02 17:06:19 +020026 struct nf_ct_ext *ext = ct->ext;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070027
28 for (i = 0; i < NF_CT_EXT_NUM; i++) {
Changli Gaoee92d372010-08-02 17:06:19 +020029 if (!__nf_ct_ext_exist(ext, i))
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070030 continue;
31
32 rcu_read_lock();
33 t = rcu_dereference(nf_ct_ext_types[i]);
34
35 /* Here the nf_ct_ext_type might have been unregisterd.
36 * I.e., it has responsible to cleanup private
37 * area in all conntracks when it is unregisterd.
38 */
39 if (t && t->destroy)
40 t->destroy(ct);
41 rcu_read_unlock();
42 }
43}
44EXPORT_SYMBOL(__nf_ct_ext_destroy);
45
46static void *
47nf_ct_ext_create(struct nf_ct_ext **ext, enum nf_ct_ext_id id, gfp_t gfp)
48{
Pekka Enberg019f6922008-03-10 16:43:41 -070049 unsigned int off, len;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070050 struct nf_ct_ext_type *t;
Eric Dumazet15cdead2010-09-21 21:17:32 +000051 size_t alloc_size;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070052
53 rcu_read_lock();
54 t = rcu_dereference(nf_ct_ext_types[id]);
55 BUG_ON(t == NULL);
56 off = ALIGN(sizeof(struct nf_ct_ext), t->align);
57 len = off + t->len;
Eric Dumazet15cdead2010-09-21 21:17:32 +000058 alloc_size = t->alloc_size;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070059 rcu_read_unlock();
60
Eric Dumazet15cdead2010-09-21 21:17:32 +000061 *ext = kzalloc(alloc_size, gfp);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070062 if (!*ext)
63 return NULL;
64
65 (*ext)->offset[id] = off;
66 (*ext)->len = len;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070067
68 return (void *)(*ext) + off;
69}
70
71void *__nf_ct_ext_add(struct nf_conn *ct, enum nf_ct_ext_id id, gfp_t gfp)
72{
Changli Gaoee92d372010-08-02 17:06:19 +020073 struct nf_ct_ext *old, *new;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070074 int i, newlen, newoff;
75 struct nf_ct_ext_type *t;
76
Patrick McHardy55871d02008-04-14 11:15:51 +020077 /* Conntrack must not be confirmed to avoid races on reallocation. */
78 NF_CT_ASSERT(!nf_ct_is_confirmed(ct));
79
Changli Gaoee92d372010-08-02 17:06:19 +020080 old = ct->ext;
81 if (!old)
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070082 return nf_ct_ext_create(&ct->ext, id, gfp);
83
Changli Gaoee92d372010-08-02 17:06:19 +020084 if (__nf_ct_ext_exist(old, id))
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070085 return NULL;
86
87 rcu_read_lock();
88 t = rcu_dereference(nf_ct_ext_types[id]);
89 BUG_ON(t == NULL);
90
Changli Gaoee92d372010-08-02 17:06:19 +020091 newoff = ALIGN(old->len, t->align);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070092 newlen = newoff + t->len;
93 rcu_read_unlock();
94
Changli Gaoee92d372010-08-02 17:06:19 +020095 new = __krealloc(old, newlen, gfp);
Pekka Enberg31d85192008-06-09 15:58:39 -070096 if (!new)
97 return NULL;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -070098
Changli Gaoee92d372010-08-02 17:06:19 +020099 if (new != old) {
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700100 for (i = 0; i < NF_CT_EXT_NUM; i++) {
Changli Gaoee92d372010-08-02 17:06:19 +0200101 if (!__nf_ct_ext_exist(old, i))
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700102 continue;
103
104 rcu_read_lock();
105 t = rcu_dereference(nf_ct_ext_types[i]);
106 if (t && t->move)
Patrick McHardy86577c62008-02-07 17:56:34 -0800107 t->move((void *)new + new->offset[i],
Changli Gaoee92d372010-08-02 17:06:19 +0200108 (void *)old + old->offset[i]);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700109 rcu_read_unlock();
110 }
Lai Jiangshan1f8d36a2011-03-18 12:07:09 +0800111 kfree_rcu(old, rcu);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700112 ct->ext = new;
113 }
114
Patrick McHardy6c648252008-07-26 17:50:05 -0700115 new->offset[id] = newoff;
116 new->len = newlen;
117 memset((void *)new + newoff, 0, newlen - newoff);
118 return (void *)new + newoff;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700119}
120EXPORT_SYMBOL(__nf_ct_ext_add);
121
122static void update_alloc_size(struct nf_ct_ext_type *type)
123{
124 int i, j;
125 struct nf_ct_ext_type *t1, *t2;
126 enum nf_ct_ext_id min = 0, max = NF_CT_EXT_NUM - 1;
127
128 /* unnecessary to update all types */
129 if ((type->flags & NF_CT_EXT_F_PREALLOC) == 0) {
130 min = type->id;
131 max = type->id;
132 }
133
134 /* This assumes that extended areas in conntrack for the types
135 whose NF_CT_EXT_F_PREALLOC bit set are allocated in order */
136 for (i = min; i <= max; i++) {
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100137 t1 = rcu_dereference_protected(nf_ct_ext_types[i],
138 lockdep_is_held(&nf_ct_ext_type_mutex));
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700139 if (!t1)
140 continue;
141
Changli Gao3b236882010-11-15 11:47:52 +0100142 t1->alloc_size = ALIGN(sizeof(struct nf_ct_ext), t1->align) +
143 t1->len;
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700144 for (j = 0; j < NF_CT_EXT_NUM; j++) {
Eric Dumazetc5d277d2010-11-15 19:45:13 +0100145 t2 = rcu_dereference_protected(nf_ct_ext_types[j],
146 lockdep_is_held(&nf_ct_ext_type_mutex));
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700147 if (t2 == NULL || t2 == t1 ||
148 (t2->flags & NF_CT_EXT_F_PREALLOC) == 0)
149 continue;
150
151 t1->alloc_size = ALIGN(t1->alloc_size, t2->align)
152 + t2->len;
153 }
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700154 }
155}
156
157/* This MUST be called in process context. */
158int nf_ct_extend_register(struct nf_ct_ext_type *type)
159{
160 int ret = 0;
161
162 mutex_lock(&nf_ct_ext_type_mutex);
163 if (nf_ct_ext_types[type->id]) {
164 ret = -EBUSY;
165 goto out;
166 }
167
168 /* This ensures that nf_ct_ext_create() can allocate enough area
169 before updating alloc_size */
170 type->alloc_size = ALIGN(sizeof(struct nf_ct_ext), type->align)
171 + type->len;
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000172 RCU_INIT_POINTER(nf_ct_ext_types[type->id], type);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700173 update_alloc_size(type);
174out:
175 mutex_unlock(&nf_ct_ext_type_mutex);
176 return ret;
177}
178EXPORT_SYMBOL_GPL(nf_ct_extend_register);
179
180/* This MUST be called in process context. */
181void nf_ct_extend_unregister(struct nf_ct_ext_type *type)
182{
183 mutex_lock(&nf_ct_ext_type_mutex);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000184 RCU_INIT_POINTER(nf_ct_ext_types[type->id], NULL);
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700185 update_alloc_size(type);
186 mutex_unlock(&nf_ct_ext_type_mutex);
Jesper Dangaard Brouer308ff822009-06-25 16:32:52 +0200187 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Yasuyuki Kozakaiecfab2c2007-07-07 22:23:21 -0700188}
189EXPORT_SYMBOL_GPL(nf_ct_extend_unregister);