Merge git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm
[linux-2.6/linux-2.6-openrd.git] / net / dccp / ccid.c
blobff16e9df196972fef0c097c3aa464438a2ad556b
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"
15 #include "ccids/lib/tfrc.h"
17 static struct ccid_operations *ccids[] = {
18 &ccid2_ops,
19 #ifdef CONFIG_IP_DCCP_CCID3
20 &ccid3_ops,
21 #endif
24 static struct ccid_operations *ccid_by_number(const u8 id)
26 int i;
28 for (i = 0; i < ARRAY_SIZE(ccids); i++)
29 if (ccids[i]->ccid_id == id)
30 return ccids[i];
31 return NULL;
34 /* check that up to @array_len members in @ccid_array are supported */
35 bool ccid_support_check(u8 const *ccid_array, u8 array_len)
37 while (array_len > 0)
38 if (ccid_by_number(ccid_array[--array_len]) == NULL)
39 return false;
40 return true;
43 /**
44 * ccid_get_builtin_ccids - Populate a list of built-in CCIDs
45 * @ccid_array: pointer to copy into
46 * @array_len: value to return length into
47 * This function allocates memory - caller must see that it is freed after use.
49 int ccid_get_builtin_ccids(u8 **ccid_array, u8 *array_len)
51 *ccid_array = kmalloc(ARRAY_SIZE(ccids), gfp_any());
52 if (*ccid_array == NULL)
53 return -ENOBUFS;
55 for (*array_len = 0; *array_len < ARRAY_SIZE(ccids); *array_len += 1)
56 (*ccid_array)[*array_len] = ccids[*array_len]->ccid_id;
57 return 0;
60 int ccid_getsockopt_builtin_ccids(struct sock *sk, int len,
61 char __user *optval, int __user *optlen)
63 u8 *ccid_array, array_len;
64 int err = 0;
66 if (len < ARRAY_SIZE(ccids))
67 return -EINVAL;
69 if (ccid_get_builtin_ccids(&ccid_array, &array_len))
70 return -ENOBUFS;
72 if (put_user(array_len, optlen) ||
73 copy_to_user(optval, ccid_array, array_len))
74 err = -EFAULT;
76 kfree(ccid_array);
77 return err;
80 static struct kmem_cache *ccid_kmem_cache_create(int obj_size, char *slab_name_fmt, const char *fmt,...)
82 struct kmem_cache *slab;
83 va_list args;
85 va_start(args, fmt);
86 vsnprintf(slab_name_fmt, CCID_SLAB_NAME_LENGTH, fmt, args);
87 va_end(args);
89 slab = kmem_cache_create(slab_name_fmt, sizeof(struct ccid) + obj_size, 0,
90 SLAB_HWCACHE_ALIGN, NULL);
91 return slab;
94 static void ccid_kmem_cache_destroy(struct kmem_cache *slab)
96 if (slab != NULL)
97 kmem_cache_destroy(slab);
100 static int ccid_activate(struct ccid_operations *ccid_ops)
102 int err = -ENOBUFS;
104 ccid_ops->ccid_hc_rx_slab =
105 ccid_kmem_cache_create(ccid_ops->ccid_hc_rx_obj_size,
106 ccid_ops->ccid_hc_rx_slab_name,
107 "ccid%u_hc_rx_sock",
108 ccid_ops->ccid_id);
109 if (ccid_ops->ccid_hc_rx_slab == NULL)
110 goto out;
112 ccid_ops->ccid_hc_tx_slab =
113 ccid_kmem_cache_create(ccid_ops->ccid_hc_tx_obj_size,
114 ccid_ops->ccid_hc_tx_slab_name,
115 "ccid%u_hc_tx_sock",
116 ccid_ops->ccid_id);
117 if (ccid_ops->ccid_hc_tx_slab == NULL)
118 goto out_free_rx_slab;
120 pr_info("CCID: Activated CCID %d (%s)\n",
121 ccid_ops->ccid_id, ccid_ops->ccid_name);
122 err = 0;
123 out:
124 return err;
125 out_free_rx_slab:
126 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
127 ccid_ops->ccid_hc_rx_slab = NULL;
128 goto out;
131 static void ccid_deactivate(struct ccid_operations *ccid_ops)
133 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_tx_slab);
134 ccid_ops->ccid_hc_tx_slab = NULL;
135 ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
136 ccid_ops->ccid_hc_rx_slab = NULL;
138 pr_info("CCID: Deactivated CCID %d (%s)\n",
139 ccid_ops->ccid_id, ccid_ops->ccid_name);
142 struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx)
144 struct ccid_operations *ccid_ops = ccid_by_number(id);
145 struct ccid *ccid = NULL;
147 if (ccid_ops == NULL)
148 goto out;
150 ccid = kmem_cache_alloc(rx ? ccid_ops->ccid_hc_rx_slab :
151 ccid_ops->ccid_hc_tx_slab, gfp_any());
152 if (ccid == NULL)
153 goto out;
154 ccid->ccid_ops = ccid_ops;
155 if (rx) {
156 memset(ccid + 1, 0, ccid_ops->ccid_hc_rx_obj_size);
157 if (ccid->ccid_ops->ccid_hc_rx_init != NULL &&
158 ccid->ccid_ops->ccid_hc_rx_init(ccid, sk) != 0)
159 goto out_free_ccid;
160 } else {
161 memset(ccid + 1, 0, ccid_ops->ccid_hc_tx_obj_size);
162 if (ccid->ccid_ops->ccid_hc_tx_init != NULL &&
163 ccid->ccid_ops->ccid_hc_tx_init(ccid, sk) != 0)
164 goto out_free_ccid;
166 out:
167 return ccid;
168 out_free_ccid:
169 kmem_cache_free(rx ? ccid_ops->ccid_hc_rx_slab :
170 ccid_ops->ccid_hc_tx_slab, ccid);
171 ccid = NULL;
172 goto out;
175 void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk)
177 if (ccid != NULL) {
178 if (ccid->ccid_ops->ccid_hc_rx_exit != NULL)
179 ccid->ccid_ops->ccid_hc_rx_exit(sk);
180 kmem_cache_free(ccid->ccid_ops->ccid_hc_rx_slab, ccid);
184 void ccid_hc_tx_delete(struct ccid *ccid, struct sock *sk)
186 if (ccid != NULL) {
187 if (ccid->ccid_ops->ccid_hc_tx_exit != NULL)
188 ccid->ccid_ops->ccid_hc_tx_exit(sk);
189 kmem_cache_free(ccid->ccid_ops->ccid_hc_tx_slab, ccid);
193 int __init ccid_initialize_builtins(void)
195 int i, err = tfrc_lib_init();
197 if (err)
198 return err;
200 for (i = 0; i < ARRAY_SIZE(ccids); i++) {
201 err = ccid_activate(ccids[i]);
202 if (err)
203 goto unwind_registrations;
205 return 0;
207 unwind_registrations:
208 while(--i >= 0)
209 ccid_deactivate(ccids[i]);
210 tfrc_lib_exit();
211 return err;
214 void ccid_cleanup_builtins(void)
216 int i;
218 for (i = 0; i < ARRAY_SIZE(ccids); i++)
219 ccid_deactivate(ccids[i]);
220 tfrc_lib_exit();