dccp: Clean up ccid.c after integration of CCID plugins
[linux-2.6.git] / net / dccp / ccid.c
blob19b214ad5e062a984c4961a44b1356bd1b106377
1 /*
2 * net/dccp/ccid.c
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 * CCID infrastructure
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include "ccid.h"
16 static struct ccid_operations *ccids[] = {
17 &ccid2_ops,
18 #ifdef CONFIG_IP_DCCP_CCID3
19 &ccid3_ops,
20 #endif
23 static struct ccid_operations *ccid_by_number(const u8 id)
25 int i;
27 for (i = 0; i < ARRAY_SIZE(ccids); i++)
28 if (ccids[i]->ccid_id == id)
29 return ccids[i];
30 return NULL;
33 /* check that up to @array_len members in @ccid_array are supported */
34 bool ccid_support_check(u8 const *ccid_array, u8 array_len)
36 while (array_len > 0)
37 if (ccid_by_number(ccid_array[--array_len]) == NULL)
38 return false;
39 return true;
42 /**
43 * ccid_get_builtin_ccids - Populate a list of built-in CCIDs
44 * @ccid_array: pointer to copy into
45 * @array_len: value to return length into
46 * This function allocates memory - caller must see that it is freed after use.
48 int ccid_get_builtin_ccids(u8 **ccid_array, u8 *array_len)
50 *ccid_array = kmalloc(ARRAY_SIZE(ccids), gfp_any());
51 if (*ccid_array == NULL)
52 return -ENOBUFS;
54 for (*array_len = 0; *array_len < ARRAY_SIZE(ccids); *array_len += 1)
55 (*ccid_array)[*array_len] = ccids[*array_len]->ccid_id;
56 return 0;
59 int ccid_getsockopt_builtin_ccids(struct sock *sk, int len,
60 char __user *optval, int __user *optlen)
62 u8 *ccid_array, array_len;
63 int err = 0;
65 if (len < ARRAY_SIZE(ccids))
66 return -EINVAL;
68 if (ccid_get_builtin_ccids(&ccid_array, &array_len))
69 return -ENOBUFS;
71 if (put_user(array_len, optlen) ||
72 copy_to_user(optval, ccid_array, array_len))
73 err = -EFAULT;
75 kfree(ccid_array);
76 return err;
79 static struct kmem_cache *ccid_kmem_cache_create(int obj_size, const char *fmt,...)
81 struct kmem_cache *slab;
82 char slab_name_fmt[32], *slab_name;
83 va_list args;
85 va_start(args, fmt);
86 vsnprintf(slab_name_fmt, sizeof(slab_name_fmt), fmt, args);
87 va_end(args);
89 slab_name = kstrdup(slab_name_fmt, GFP_KERNEL);
90 if (slab_name == NULL)
91 return NULL;
92 slab = kmem_cache_create(slab_name, sizeof(struct ccid) + obj_size, 0,
93 SLAB_HWCACHE_ALIGN, NULL);
94 if (slab == NULL)
95 kfree(slab_name);
96 return slab;
99 static void ccid_kmem_cache_destroy(struct kmem_cache *slab)
101 if (slab != NULL) {
102 const char *name = kmem_cache_name(slab);
104 kmem_cache_destroy(slab);
105 kfree(name);
109 static int ccid_activate(struct ccid_operations *ccid_ops)
111 int err = -ENOBUFS;
113 ccid_ops->ccid_hc_rx_slab =
114 ccid_kmem_cache_create(ccid_ops->ccid_hc_rx_obj_size,
115 "ccid%u_hc_rx_sock",
116 ccid_ops->ccid_id);
117 if (ccid_ops->ccid_hc_rx_slab == NULL)
118 goto out;
120 ccid_ops->ccid_hc_tx_slab =
121 ccid_kmem_cache_create(ccid_ops->ccid_hc_tx_obj_size,
122 "ccid%u_hc_tx_sock",
123 ccid_ops->ccid_id);
124 if (ccid_ops->ccid_hc_tx_slab == NULL)
125 goto out_free_rx_slab;
127 pr_info("CCID: Activated CCID %d (%s)\n",
128 ccid_ops->ccid_id, ccid_ops->ccid_name);
129 err = 0;
130 out:
131 return err;
132 out_free_rx_slab:
133 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
134 ccid_ops->ccid_hc_rx_slab = NULL;
135 goto out;
138 static void ccid_deactivate(struct ccid_operations *ccid_ops)
140 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_tx_slab);
141 ccid_ops->ccid_hc_tx_slab = NULL;
142 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
143 ccid_ops->ccid_hc_rx_slab = NULL;
145 pr_info("CCID: Deactivated CCID %d (%s)\n",
146 ccid_ops->ccid_id, ccid_ops->ccid_name);
149 struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx)
151 struct ccid_operations *ccid_ops = ccid_by_number(id);
152 struct ccid *ccid = NULL;
154 if (ccid_ops == NULL)
155 goto out;
157 ccid = kmem_cache_alloc(rx ? ccid_ops->ccid_hc_rx_slab :
158 ccid_ops->ccid_hc_tx_slab, gfp_any());
159 if (ccid == NULL)
160 goto out;
161 ccid->ccid_ops = ccid_ops;
162 if (rx) {
163 memset(ccid + 1, 0, ccid_ops->ccid_hc_rx_obj_size);
164 if (ccid->ccid_ops->ccid_hc_rx_init != NULL &&
165 ccid->ccid_ops->ccid_hc_rx_init(ccid, sk) != 0)
166 goto out_free_ccid;
167 } else {
168 memset(ccid + 1, 0, ccid_ops->ccid_hc_tx_obj_size);
169 if (ccid->ccid_ops->ccid_hc_tx_init != NULL &&
170 ccid->ccid_ops->ccid_hc_tx_init(ccid, sk) != 0)
171 goto out_free_ccid;
173 out:
174 return ccid;
175 out_free_ccid:
176 kmem_cache_free(rx ? ccid_ops->ccid_hc_rx_slab :
177 ccid_ops->ccid_hc_tx_slab, ccid);
178 ccid = NULL;
179 goto out;
182 void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk)
184 if (ccid != NULL) {
185 if (ccid->ccid_ops->ccid_hc_rx_exit != NULL)
186 ccid->ccid_ops->ccid_hc_rx_exit(sk);
187 kmem_cache_free(ccid->ccid_ops->ccid_hc_rx_slab, ccid);
191 void ccid_hc_tx_delete(struct ccid *ccid, struct sock *sk)
193 if (ccid != NULL) {
194 if (ccid->ccid_ops->ccid_hc_tx_exit != NULL)
195 ccid->ccid_ops->ccid_hc_tx_exit(sk);
196 kmem_cache_free(ccid->ccid_ops->ccid_hc_tx_slab, ccid);
200 int __init ccid_initialize_builtins(void)
202 int i, err;
204 for (i = 0; i < ARRAY_SIZE(ccids); i++) {
205 err = ccid_activate(ccids[i]);
206 if (err)
207 goto unwind_registrations;
209 return 0;
211 unwind_registrations:
212 while(--i >= 0)
213 ccid_deactivate(ccids[i]);
214 return err;
217 void ccid_cleanup_builtins(void)
219 int i;
221 for (i = 0; i < ARRAY_SIZE(ccids); i++)
222 ccid_deactivate(ccids[i]);