4 * An implementation of the DCCP protocol
5 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
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.
16 static struct ccid_operations
*ccids
[CCID_MAX
];
17 #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
18 static atomic_t ccids_lockct
= ATOMIC_INIT(0);
19 static DEFINE_SPINLOCK(ccids_lock
);
22 * The strategy is: modifications ccids vector are short, do not sleep and
23 * veeery rare, but read access should be free of any exclusive locks.
25 static void ccids_write_lock(void)
27 spin_lock(&ccids_lock
);
28 while (atomic_read(&ccids_lockct
) != 0) {
29 spin_unlock(&ccids_lock
);
31 spin_lock(&ccids_lock
);
35 static inline void ccids_write_unlock(void)
37 spin_unlock(&ccids_lock
);
40 static inline void ccids_read_lock(void)
42 atomic_inc(&ccids_lockct
);
43 spin_unlock_wait(&ccids_lock
);
46 static inline void ccids_read_unlock(void)
48 atomic_dec(&ccids_lockct
);
52 #define ccids_write_lock() do { } while(0)
53 #define ccids_write_unlock() do { } while(0)
54 #define ccids_read_lock() do { } while(0)
55 #define ccids_read_unlock() do { } while(0)
58 static kmem_cache_t
*ccid_kmem_cache_create(int obj_size
, const char *fmt
,...)
61 char slab_name_fmt
[32], *slab_name
;
65 vsnprintf(slab_name_fmt
, sizeof(slab_name_fmt
), fmt
, args
);
68 slab_name
= kstrdup(slab_name_fmt
, GFP_KERNEL
);
69 if (slab_name
== NULL
)
71 slab
= kmem_cache_create(slab_name
, sizeof(struct ccid
) + obj_size
, 0,
72 SLAB_HWCACHE_ALIGN
, NULL
, NULL
);
78 static void ccid_kmem_cache_destroy(kmem_cache_t
*slab
)
81 const char *name
= kmem_cache_name(slab
);
83 kmem_cache_destroy(slab
);
88 int ccid_register(struct ccid_operations
*ccid_ops
)
92 ccid_ops
->ccid_hc_rx_slab
=
93 ccid_kmem_cache_create(ccid_ops
->ccid_hc_rx_obj_size
,
96 if (ccid_ops
->ccid_hc_rx_slab
== NULL
)
99 ccid_ops
->ccid_hc_tx_slab
=
100 ccid_kmem_cache_create(ccid_ops
->ccid_hc_tx_obj_size
,
102 ccid_ops
->ccid_name
);
103 if (ccid_ops
->ccid_hc_tx_slab
== NULL
)
104 goto out_free_rx_slab
;
108 if (ccids
[ccid_ops
->ccid_id
] == NULL
) {
109 ccids
[ccid_ops
->ccid_id
] = ccid_ops
;
112 ccids_write_unlock();
114 goto out_free_tx_slab
;
116 pr_info("CCID: Registered CCID %d (%s)\n",
117 ccid_ops
->ccid_id
, ccid_ops
->ccid_name
);
121 ccid_kmem_cache_destroy(ccid_ops
->ccid_hc_tx_slab
);
122 ccid_ops
->ccid_hc_tx_slab
= NULL
;
125 ccid_kmem_cache_destroy(ccid_ops
->ccid_hc_rx_slab
);
126 ccid_ops
->ccid_hc_rx_slab
= NULL
;
130 EXPORT_SYMBOL_GPL(ccid_register
);
132 int ccid_unregister(struct ccid_operations
*ccid_ops
)
135 ccids
[ccid_ops
->ccid_id
] = NULL
;
136 ccids_write_unlock();
138 ccid_kmem_cache_destroy(ccid_ops
->ccid_hc_tx_slab
);
139 ccid_ops
->ccid_hc_tx_slab
= NULL
;
140 ccid_kmem_cache_destroy(ccid_ops
->ccid_hc_rx_slab
);
141 ccid_ops
->ccid_hc_rx_slab
= NULL
;
143 pr_info("CCID: Unregistered CCID %d (%s)\n",
144 ccid_ops
->ccid_id
, ccid_ops
->ccid_name
);
148 EXPORT_SYMBOL_GPL(ccid_unregister
);
150 struct ccid
*ccid_new(unsigned char id
, struct sock
*sk
, int rx
, gfp_t gfp
)
152 struct ccid_operations
*ccid_ops
;
153 struct ccid
*ccid
= NULL
;
157 if (ccids
[id
] == NULL
) {
158 /* We only try to load if in process context */
160 if (gfp
& GFP_ATOMIC
)
162 request_module("net-dccp-ccid-%d", id
);
166 ccid_ops
= ccids
[id
];
167 if (ccid_ops
== NULL
)
170 if (!try_module_get(ccid_ops
->ccid_owner
))
175 ccid
= kmem_cache_alloc(rx
? ccid_ops
->ccid_hc_rx_slab
:
176 ccid_ops
->ccid_hc_tx_slab
, gfp
);
179 ccid
->ccid_ops
= ccid_ops
;
181 memset(ccid
+ 1, 0, ccid_ops
->ccid_hc_rx_obj_size
);
182 if (ccid
->ccid_ops
->ccid_hc_rx_init
!= NULL
&&
183 ccid
->ccid_ops
->ccid_hc_rx_init(ccid
, sk
) != 0)
186 memset(ccid
+ 1, 0, ccid_ops
->ccid_hc_tx_obj_size
);
187 if (ccid
->ccid_ops
->ccid_hc_tx_init
!= NULL
&&
188 ccid
->ccid_ops
->ccid_hc_tx_init(ccid
, sk
) != 0)
197 kmem_cache_free(rx
? ccid_ops
->ccid_hc_rx_slab
:
198 ccid_ops
->ccid_hc_tx_slab
, ccid
);
201 module_put(ccid_ops
->ccid_owner
);
205 EXPORT_SYMBOL_GPL(ccid_new
);
207 struct ccid
*ccid_hc_rx_new(unsigned char id
, struct sock
*sk
, gfp_t gfp
)
209 return ccid_new(id
, sk
, 1, gfp
);
212 EXPORT_SYMBOL_GPL(ccid_hc_rx_new
);
214 struct ccid
*ccid_hc_tx_new(unsigned char id
,struct sock
*sk
, gfp_t gfp
)
216 return ccid_new(id
, sk
, 0, gfp
);
219 EXPORT_SYMBOL_GPL(ccid_hc_tx_new
);
221 static void ccid_delete(struct ccid
*ccid
, struct sock
*sk
, int rx
)
223 struct ccid_operations
*ccid_ops
;
228 ccid_ops
= ccid
->ccid_ops
;
230 if (ccid_ops
->ccid_hc_rx_exit
!= NULL
)
231 ccid_ops
->ccid_hc_rx_exit(sk
);
232 kmem_cache_free(ccid_ops
->ccid_hc_rx_slab
, ccid
);
234 if (ccid_ops
->ccid_hc_tx_exit
!= NULL
)
235 ccid_ops
->ccid_hc_tx_exit(sk
);
236 kmem_cache_free(ccid_ops
->ccid_hc_tx_slab
, ccid
);
239 if (ccids
[ccid_ops
->ccid_id
] != NULL
)
240 module_put(ccid_ops
->ccid_owner
);
244 void ccid_hc_rx_delete(struct ccid
*ccid
, struct sock
*sk
)
246 ccid_delete(ccid
, sk
, 1);
249 EXPORT_SYMBOL_GPL(ccid_hc_rx_delete
);
251 void ccid_hc_tx_delete(struct ccid
*ccid
, struct sock
*sk
)
253 ccid_delete(ccid
, sk
, 0);
256 EXPORT_SYMBOL_GPL(ccid_hc_tx_delete
);