blob: 57dfb9c8c4f23f0a2ab132843b3b42fb2e2dc203 [file] [log] [blame]
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -07001/*
2 * net/dccp/ccid.c
3 *
4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
6 *
7 * CCID infrastructure
8 *
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.
12 */
13
14#include "ccid.h"
Gerrit Renker129fa442009-01-04 21:45:33 -080015#include "ccids/lib/tfrc.h"
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070016
Gerrit Renkerddebc972009-01-04 21:42:53 -080017static struct ccid_operations *ccids[] = {
18 &ccid2_ops,
19#ifdef CONFIG_IP_DCCP_CCID3
20 &ccid3_ops,
21#endif
22};
23
24static struct ccid_operations *ccid_by_number(const u8 id)
25{
26 int i;
27
28 for (i = 0; i < ARRAY_SIZE(ccids); i++)
29 if (ccids[i]->ccid_id == id)
30 return ccids[i];
31 return NULL;
32}
33
34/* check that up to @array_len members in @ccid_array are supported */
35bool ccid_support_check(u8 const *ccid_array, u8 array_len)
36{
37 while (array_len > 0)
38 if (ccid_by_number(ccid_array[--array_len]) == NULL)
39 return false;
40 return true;
41}
42
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.
48 */
49int ccid_get_builtin_ccids(u8 **ccid_array, u8 *array_len)
50{
51 *ccid_array = kmalloc(ARRAY_SIZE(ccids), gfp_any());
52 if (*ccid_array == NULL)
53 return -ENOBUFS;
54
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;
58}
59
60int ccid_getsockopt_builtin_ccids(struct sock *sk, int len,
61 char __user *optval, int __user *optlen)
62{
63 u8 *ccid_array, array_len;
64 int err = 0;
65
66 if (len < ARRAY_SIZE(ccids))
67 return -EINVAL;
68
69 if (ccid_get_builtin_ccids(&ccid_array, &array_len))
70 return -ENOBUFS;
71
72 if (put_user(array_len, optlen) ||
73 copy_to_user(optval, ccid_array, array_len))
74 err = -EFAULT;
75
76 kfree(ccid_array);
77 return err;
78}
79
Neil Hormande4ef862010-01-17 17:16:12 +000080static struct kmem_cache *ccid_kmem_cache_create(int obj_size, char *slab_name_fmt, const char *fmt,...)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -070081{
Christoph Lametere18b8902006-12-06 20:33:20 -080082 struct kmem_cache *slab;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -080083 va_list args;
84
85 va_start(args, fmt);
86 vsnprintf(slab_name_fmt, sizeof(slab_name_fmt), fmt, args);
87 va_end(args);
88
Neil Hormande4ef862010-01-17 17:16:12 +000089 slab = kmem_cache_create(slab_name_fmt, sizeof(struct ccid) + obj_size, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +090090 SLAB_HWCACHE_ALIGN, NULL);
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -080091 return slab;
92}
93
Christoph Lametere18b8902006-12-06 20:33:20 -080094static void ccid_kmem_cache_destroy(struct kmem_cache *slab)
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -080095{
Neil Hormande4ef862010-01-17 17:16:12 +000096 if (slab != NULL)
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -080097 kmem_cache_destroy(slab);
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -080098}
99
Gerrit Renkerddebc972009-01-04 21:42:53 -0800100static int ccid_activate(struct ccid_operations *ccid_ops)
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800101{
102 int err = -ENOBUFS;
103
104 ccid_ops->ccid_hc_rx_slab =
105 ccid_kmem_cache_create(ccid_ops->ccid_hc_rx_obj_size,
Neil Hormande4ef862010-01-17 17:16:12 +0000106 ccid_ops->ccid_hc_rx_slab_name,
Gerrit Renker84a97b02007-12-13 23:33:25 -0200107 "ccid%u_hc_rx_sock",
108 ccid_ops->ccid_id);
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800109 if (ccid_ops->ccid_hc_rx_slab == NULL)
110 goto out;
111
112 ccid_ops->ccid_hc_tx_slab =
113 ccid_kmem_cache_create(ccid_ops->ccid_hc_tx_obj_size,
Neil Hormande4ef862010-01-17 17:16:12 +0000114 ccid_ops->ccid_hc_tx_slab_name,
Gerrit Renker84a97b02007-12-13 23:33:25 -0200115 "ccid%u_hc_tx_sock",
116 ccid_ops->ccid_id);
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800117 if (ccid_ops->ccid_hc_tx_slab == NULL)
118 goto out_free_rx_slab;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700119
Gerrit Renkerddebc972009-01-04 21:42:53 -0800120 pr_info("CCID: Activated CCID %d (%s)\n",
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800121 ccid_ops->ccid_id, ccid_ops->ccid_name);
Gerrit Renkerddebc972009-01-04 21:42:53 -0800122 err = 0;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800123out:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700124 return err;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800125out_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;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700129}
130
Gerrit Renkerddebc972009-01-04 21:42:53 -0800131static void ccid_deactivate(struct ccid_operations *ccid_ops)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700132{
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800133 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;
137
Gerrit Renkerddebc972009-01-04 21:42:53 -0800138 pr_info("CCID: Deactivated CCID %d (%s)\n",
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800139 ccid_ops->ccid_id, ccid_ops->ccid_name);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700140}
141
Gerrit Renkere5fd56c2009-01-04 21:43:23 -0800142struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx)
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700143{
Gerrit Renkerddebc972009-01-04 21:42:53 -0800144 struct ccid_operations *ccid_ops = ccid_by_number(id);
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800145 struct ccid *ccid = NULL;
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700146
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800147 if (ccid_ops == NULL)
Gerrit Renkerddebc972009-01-04 21:42:53 -0800148 goto out;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800149
150 ccid = kmem_cache_alloc(rx ? ccid_ops->ccid_hc_rx_slab :
Gerrit Renkere5fd56c2009-01-04 21:43:23 -0800151 ccid_ops->ccid_hc_tx_slab, gfp_any());
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800152 if (ccid == NULL)
Gerrit Renkerddebc972009-01-04 21:42:53 -0800153 goto out;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800154 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;
165 }
166out:
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700167 return ccid;
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800168out_free_ccid:
169 kmem_cache_free(rx ? ccid_ops->ccid_hc_rx_slab :
170 ccid_ops->ccid_hc_tx_slab, ccid);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700171 ccid = NULL;
172 goto out;
173}
174
Gerrit Renkere5fd56c2009-01-04 21:43:23 -0800175void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk)
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800176{
Gerrit Renkere5fd56c2009-01-04 21:43:23 -0800177 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);
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700181 }
Arnaldo Carvalho de Melo7c657872005-08-09 20:14:34 -0700182}
183
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800184void ccid_hc_tx_delete(struct ccid *ccid, struct sock *sk)
185{
Gerrit Renkere5fd56c2009-01-04 21:43:23 -0800186 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);
190 }
Arnaldo Carvalho de Melo91f0ebf2006-03-20 19:21:44 -0800191}
192
Gerrit Renkerddebc972009-01-04 21:42:53 -0800193int __init ccid_initialize_builtins(void)
194{
Gerrit Renker129fa442009-01-04 21:45:33 -0800195 int i, err = tfrc_lib_init();
196
197 if (err)
198 return err;
Gerrit Renkerddebc972009-01-04 21:42:53 -0800199
200 for (i = 0; i < ARRAY_SIZE(ccids); i++) {
201 err = ccid_activate(ccids[i]);
202 if (err)
203 goto unwind_registrations;
204 }
205 return 0;
206
207unwind_registrations:
208 while(--i >= 0)
209 ccid_deactivate(ccids[i]);
Gerrit Renker129fa442009-01-04 21:45:33 -0800210 tfrc_lib_exit();
Gerrit Renkerddebc972009-01-04 21:42:53 -0800211 return err;
212}
213
214void ccid_cleanup_builtins(void)
215{
216 int i;
217
218 for (i = 0; i < ARRAY_SIZE(ccids); i++)
219 ccid_deactivate(ccids[i]);
Gerrit Renker129fa442009-01-04 21:45:33 -0800220 tfrc_lib_exit();
Gerrit Renkerddebc972009-01-04 21:42:53 -0800221}