blob: 1b9c52a02cd31995c63040377d4e24443bad85a3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* net/atm/common.c - ATM sockets (common part for PVC and SVC) */
2
3/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
4
Joe Perches99824462010-01-26 11:40:00 +00005#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#include <linux/kmod.h>
9#include <linux/net.h> /* struct socket, struct proto_ops */
10#include <linux/atm.h> /* ATM stuff */
11#include <linux/atmdev.h>
12#include <linux/socket.h> /* SOL_SOCKET */
13#include <linux/errno.h> /* error codes */
14#include <linux/capability.h>
Jesper Juhle49332b2005-05-01 08:59:08 -070015#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/sched.h>
17#include <linux/time.h> /* struct timeval */
18#include <linux/skbuff.h>
19#include <linux/bitops.h>
20#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/sock.h> /* struct sock */
Joe Perchesa8147d72010-01-26 11:40:06 +000023#include <linux/uaccess.h>
24#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "resources.h" /* atm_find_dev */
29#include "common.h" /* prototypes */
30#include "protocols.h" /* atm_init_<transport> */
31#include "addr.h" /* address registry */
32#include "signaling.h" /* for WAITING and sigd_attach */
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct hlist_head vcc_hash[VCC_HTABLE_SIZE];
Joe Perchesa8147d72010-01-26 11:40:06 +000035EXPORT_SYMBOL(vcc_hash);
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037DEFINE_RWLOCK(vcc_sklist_lock);
Joe Perchesa8147d72010-01-26 11:40:06 +000038EXPORT_SYMBOL(vcc_sklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Karl Hiramoto7313bb82010-07-08 20:55:30 +000040static ATOMIC_NOTIFIER_HEAD(atm_dev_notify_chain);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static void __vcc_insert_socket(struct sock *sk)
43{
44 struct atm_vcc *vcc = atm_sk(sk);
Joe Perchesa8147d72010-01-26 11:40:06 +000045 struct hlist_head *head = &vcc_hash[vcc->vci & (VCC_HTABLE_SIZE - 1)];
Eric Dumazet81c3d542005-10-03 14:13:38 -070046 sk->sk_hash = vcc->vci & (VCC_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 sk_add_node(sk, head);
48}
49
50void vcc_insert_socket(struct sock *sk)
51{
52 write_lock_irq(&vcc_sklist_lock);
53 __vcc_insert_socket(sk);
54 write_unlock_irq(&vcc_sklist_lock);
55}
Joe Perchesa8147d72010-01-26 11:40:06 +000056EXPORT_SYMBOL(vcc_insert_socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58static void vcc_remove_socket(struct sock *sk)
59{
60 write_lock_irq(&vcc_sklist_lock);
61 sk_del_node_init(sk);
62 write_unlock_irq(&vcc_sklist_lock);
63}
64
Joe Perchesa8147d72010-01-26 11:40:06 +000065static struct sk_buff *alloc_tx(struct atm_vcc *vcc, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 struct sk_buff *skb;
68 struct sock *sk = sk_atm(vcc);
69
Eric Dumazet81e2a3d2009-06-17 19:06:12 -070070 if (sk_wmem_alloc_get(sk) && !atm_may_send(vcc, size)) {
Stephen Hemminger52240062007-08-28 15:22:09 -070071 pr_debug("Sorry: wmem_alloc = %d, size = %d, sndbuf = %d\n",
Joe Perches99824462010-01-26 11:40:00 +000072 sk_wmem_alloc_get(sk), size, sk->sk_sndbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return NULL;
74 }
Eric Dumazet81e2a3d2009-06-17 19:06:12 -070075 while (!(skb = alloc_skb(size, GFP_KERNEL)))
76 schedule();
Joe Perchesa8147d72010-01-26 11:40:06 +000077 pr_debug("%d += %d\n", sk_wmem_alloc_get(sk), skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 atomic_add(skb->truesize, &sk->sk_wmem_alloc);
79 return skb;
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static void vcc_sock_destruct(struct sock *sk)
83{
84 if (atomic_read(&sk->sk_rmem_alloc))
Joe Perchesa8147d72010-01-26 11:40:06 +000085 printk(KERN_DEBUG "%s: rmem leakage (%d bytes) detected.\n",
86 __func__, atomic_read(&sk->sk_rmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 if (atomic_read(&sk->sk_wmem_alloc))
Joe Perchesa8147d72010-01-26 11:40:06 +000089 printk(KERN_DEBUG "%s: wmem leakage (%d bytes) detected.\n",
90 __func__, atomic_read(&sk->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93static void vcc_def_wakeup(struct sock *sk)
94{
Eric Dumazet43815482010-04-29 11:01:49 +000095 struct socket_wq *wq;
96
97 rcu_read_lock();
98 wq = rcu_dereference(sk->sk_wq);
99 if (wq_has_sleeper(wq))
100 wake_up(&wq->wait);
101 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104static inline int vcc_writable(struct sock *sk)
105{
106 struct atm_vcc *vcc = atm_sk(sk);
107
108 return (vcc->qos.txtp.max_sdu +
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900109 atomic_read(&sk->sk_wmem_alloc)) <= sk->sk_sndbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112static void vcc_write_space(struct sock *sk)
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900113{
Eric Dumazet43815482010-04-29 11:01:49 +0000114 struct socket_wq *wq;
115
116 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (vcc_writable(sk)) {
Eric Dumazet43815482010-04-29 11:01:49 +0000119 wq = rcu_dereference(sk->sk_wq);
120 if (wq_has_sleeper(wq))
121 wake_up_interruptible(&wq->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Pavel Emelyanov8d8ad9d2007-11-26 20:10:50 +0800123 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Eric Dumazet43815482010-04-29 11:01:49 +0000126 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129static struct proto vcc_proto = {
130 .name = "VCC",
131 .owner = THIS_MODULE,
132 .obj_size = sizeof(struct atm_vcc),
133};
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900134
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700135int vcc_create(struct net *net, struct socket *sock, int protocol, int family)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct sock *sk;
138 struct atm_vcc *vcc;
139
140 sock->sk = NULL;
141 if (sock->type == SOCK_STREAM)
142 return -EINVAL;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700143 sk = sk_alloc(net, family, GFP_KERNEL, &vcc_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!sk)
145 return -ENOMEM;
146 sock_init_data(sock, sk);
147 sk->sk_state_change = vcc_def_wakeup;
148 sk->sk_write_space = vcc_write_space;
149
150 vcc = atm_sk(sk);
151 vcc->dev = NULL;
Joe Perchesa8147d72010-01-26 11:40:06 +0000152 memset(&vcc->local, 0, sizeof(struct sockaddr_atmsvc));
153 memset(&vcc->remote, 0, sizeof(struct sockaddr_atmsvc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 vcc->qos.txtp.max_sdu = 1 << 16; /* for meta VCs */
Eric Dumazet81e2a3d2009-06-17 19:06:12 -0700155 atomic_set(&sk->sk_wmem_alloc, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 atomic_set(&sk->sk_rmem_alloc, 0);
157 vcc->push = NULL;
158 vcc->pop = NULL;
159 vcc->push_oam = NULL;
160 vcc->vpi = vcc->vci = 0; /* no VCI/VPI yet */
161 vcc->atm_options = vcc->aal_options = 0;
162 sk->sk_destruct = vcc_sock_destruct;
163 return 0;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static void vcc_destroy_socket(struct sock *sk)
167{
168 struct atm_vcc *vcc = atm_sk(sk);
169 struct sk_buff *skb;
170
171 set_bit(ATM_VF_CLOSE, &vcc->flags);
172 clear_bit(ATM_VF_READY, &vcc->flags);
173 if (vcc->dev) {
174 if (vcc->dev->ops->close)
175 vcc->dev->ops->close(vcc);
176 if (vcc->push)
177 vcc->push(vcc, NULL); /* atmarpd has no push */
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000180 atm_return(vcc, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree_skb(skb);
182 }
183
184 module_put(vcc->dev->ops->owner);
185 atm_dev_put(vcc->dev);
186 }
Chas Williams9301e322005-09-28 16:35:01 -0700187
188 vcc_remove_socket(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191int vcc_release(struct socket *sock)
192{
193 struct sock *sk = sock->sk;
194
195 if (sk) {
196 lock_sock(sk);
197 vcc_destroy_socket(sock->sk);
198 release_sock(sk);
199 sock_put(sk);
200 }
201
202 return 0;
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205void vcc_release_async(struct atm_vcc *vcc, int reply)
206{
207 struct sock *sk = sk_atm(vcc);
208
209 set_bit(ATM_VF_CLOSE, &vcc->flags);
210 sk->sk_shutdown |= RCV_SHUTDOWN;
211 sk->sk_err = -reply;
212 clear_bit(ATM_VF_WAITING, &vcc->flags);
213 sk->sk_state_change(sk);
214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215EXPORT_SYMBOL(vcc_release_async);
216
Karl Hiramoto7313bb82010-07-08 20:55:30 +0000217void atm_dev_signal_change(struct atm_dev *dev, char signal)
218{
219 pr_debug("%s signal=%d dev=%p number=%d dev->signal=%d\n",
220 __func__, signal, dev, dev->number, dev->signal);
221
222 /* atm driver sending invalid signal */
223 WARN_ON(signal < ATM_PHY_SIG_LOST || signal > ATM_PHY_SIG_FOUND);
224
225 if (dev->signal == signal)
226 return; /* no change */
227
228 dev->signal = signal;
229
230 atomic_notifier_call_chain(&atm_dev_notify_chain, signal, dev);
231}
232EXPORT_SYMBOL(atm_dev_signal_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800234void atm_dev_release_vccs(struct atm_dev *dev)
235{
236 int i;
237
238 write_lock_irq(&vcc_sklist_lock);
239 for (i = 0; i < VCC_HTABLE_SIZE; i++) {
240 struct hlist_head *head = &vcc_hash[i];
241 struct hlist_node *node, *tmp;
242 struct sock *s;
243 struct atm_vcc *vcc;
244
245 sk_for_each_safe(s, node, tmp, head) {
246 vcc = atm_sk(s);
247 if (vcc->dev == dev) {
248 vcc_release_async(vcc, -EPIPE);
249 sk_del_node_init(s);
250 }
251 }
252 }
253 write_unlock_irq(&vcc_sklist_lock);
254}
255
Joe Perchesa8147d72010-01-26 11:40:06 +0000256static int adjust_tp(struct atm_trafprm *tp, unsigned char aal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 int max_sdu;
259
Joe Perchesa8147d72010-01-26 11:40:06 +0000260 if (!tp->traffic_class)
261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 switch (aal) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000263 case ATM_AAL0:
264 max_sdu = ATM_CELL_SIZE-1;
265 break;
266 case ATM_AAL34:
267 max_sdu = ATM_MAX_AAL34_PDU;
268 break;
269 default:
270 pr_warning("AAL problems ... (%d)\n", aal);
271 /* fall through */
272 case ATM_AAL5:
273 max_sdu = ATM_MAX_AAL5_PDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000275 if (!tp->max_sdu)
276 tp->max_sdu = max_sdu;
277 else if (tp->max_sdu > max_sdu)
278 return -EINVAL;
279 if (!tp->max_cdv)
280 tp->max_cdv = ATM_MAX_CDV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
282}
283
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700284static int check_ci(const struct atm_vcc *vcc, short vpi, int vci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Joe Perchesa8147d72010-01-26 11:40:06 +0000286 struct hlist_head *head = &vcc_hash[vci & (VCC_HTABLE_SIZE - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct hlist_node *node;
288 struct sock *s;
289 struct atm_vcc *walk;
290
291 sk_for_each(s, node, head) {
292 walk = atm_sk(s);
293 if (walk->dev != vcc->dev)
294 continue;
295 if (test_bit(ATM_VF_ADDR, &walk->flags) && walk->vpi == vpi &&
296 walk->vci == vci && ((walk->qos.txtp.traffic_class !=
297 ATM_NONE && vcc->qos.txtp.traffic_class != ATM_NONE) ||
298 (walk->qos.rxtp.traffic_class != ATM_NONE &&
299 vcc->qos.rxtp.traffic_class != ATM_NONE)))
300 return -EADDRINUSE;
301 }
302
303 /* allow VCCs with same VPI/VCI iff they don't collide on
304 TX/RX (but we may refuse such sharing for other reasons,
305 e.g. if protocol requires to have both channels) */
306
307 return 0;
308}
309
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700310static int find_ci(const struct atm_vcc *vcc, short *vpi, int *vci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 static short p; /* poor man's per-device cache */
313 static int c;
314 short old_p;
315 int old_c;
316 int err;
317
318 if (*vpi != ATM_VPI_ANY && *vci != ATM_VCI_ANY) {
319 err = check_ci(vcc, *vpi, *vci);
320 return err;
321 }
322 /* last scan may have left values out of bounds for current device */
323 if (*vpi != ATM_VPI_ANY)
324 p = *vpi;
325 else if (p >= 1 << vcc->dev->ci_range.vpi_bits)
326 p = 0;
327 if (*vci != ATM_VCI_ANY)
328 c = *vci;
329 else if (c < ATM_NOT_RSV_VCI || c >= 1 << vcc->dev->ci_range.vci_bits)
330 c = ATM_NOT_RSV_VCI;
331 old_p = p;
332 old_c = c;
333 do {
334 if (!check_ci(vcc, p, c)) {
335 *vpi = p;
336 *vci = c;
337 return 0;
338 }
339 if (*vci == ATM_VCI_ANY) {
340 c++;
341 if (c >= 1 << vcc->dev->ci_range.vci_bits)
342 c = ATM_NOT_RSV_VCI;
343 }
344 if ((c == ATM_NOT_RSV_VCI || *vci != ATM_VCI_ANY) &&
345 *vpi == ATM_VPI_ANY) {
346 p++;
Joe Perchesa8147d72010-01-26 11:40:06 +0000347 if (p >= 1 << vcc->dev->ci_range.vpi_bits)
348 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000350 } while (old_p != p || old_c != c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return -EADDRINUSE;
352}
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static int __vcc_connect(struct atm_vcc *vcc, struct atm_dev *dev, short vpi,
355 int vci)
356{
357 struct sock *sk = sk_atm(vcc);
358 int error;
359
360 if ((vpi != ATM_VPI_UNSPEC && vpi != ATM_VPI_ANY &&
361 vpi >> dev->ci_range.vpi_bits) || (vci != ATM_VCI_UNSPEC &&
362 vci != ATM_VCI_ANY && vci >> dev->ci_range.vci_bits))
363 return -EINVAL;
364 if (vci > 0 && vci < ATM_NOT_RSV_VCI && !capable(CAP_NET_BIND_SERVICE))
365 return -EPERM;
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800366 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!try_module_get(dev->ops->owner))
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800368 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 vcc->dev = dev;
370 write_lock_irq(&vcc_sklist_lock);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900371 if (test_bit(ATM_DF_REMOVED, &dev->flags) ||
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800372 (error = find_ci(vcc, &vpi, &vci))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 write_unlock_irq(&vcc_sklist_lock);
374 goto fail_module_put;
375 }
376 vcc->vpi = vpi;
377 vcc->vci = vci;
378 __vcc_insert_socket(sk);
379 write_unlock_irq(&vcc_sklist_lock);
380 switch (vcc->qos.aal) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000381 case ATM_AAL0:
382 error = atm_init_aal0(vcc);
383 vcc->stats = &dev->stats.aal0;
384 break;
385 case ATM_AAL34:
386 error = atm_init_aal34(vcc);
387 vcc->stats = &dev->stats.aal34;
388 break;
389 case ATM_NO_AAL:
390 /* ATM_AAL5 is also used in the "0 for default" case */
391 vcc->qos.aal = ATM_AAL5;
392 /* fall through */
393 case ATM_AAL5:
394 error = atm_init_aal5(vcc);
395 vcc->stats = &dev->stats.aal5;
396 break;
397 default:
398 error = -EPROTOTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000400 if (!error)
401 error = adjust_tp(&vcc->qos.txtp, vcc->qos.aal);
402 if (!error)
403 error = adjust_tp(&vcc->qos.rxtp, vcc->qos.aal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (error)
405 goto fail;
Joe Perches99824462010-01-26 11:40:00 +0000406 pr_debug("VCC %d.%d, AAL %d\n", vpi, vci, vcc->qos.aal);
407 pr_debug(" TX: %d, PCR %d..%d, SDU %d\n",
408 vcc->qos.txtp.traffic_class,
409 vcc->qos.txtp.min_pcr,
410 vcc->qos.txtp.max_pcr,
411 vcc->qos.txtp.max_sdu);
412 pr_debug(" RX: %d, PCR %d..%d, SDU %d\n",
413 vcc->qos.rxtp.traffic_class,
414 vcc->qos.rxtp.min_pcr,
415 vcc->qos.rxtp.max_pcr,
416 vcc->qos.rxtp.max_sdu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 if (dev->ops->open) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000419 error = dev->ops->open(vcc);
420 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 goto fail;
422 }
423 return 0;
424
425fail:
426 vcc_remove_socket(sk);
427fail_module_put:
428 module_put(dev->ops->owner);
429 /* ensure we get dev module ref count correct */
430 vcc->dev = NULL;
431 return error;
432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434int vcc_connect(struct socket *sock, int itf, short vpi, int vci)
435{
436 struct atm_dev *dev;
437 struct atm_vcc *vcc = ATM_SD(sock);
438 int error;
439
Joe Perches99824462010-01-26 11:40:00 +0000440 pr_debug("(vpi %d, vci %d)\n", vpi, vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (sock->state == SS_CONNECTED)
442 return -EISCONN;
443 if (sock->state != SS_UNCONNECTED)
444 return -EINVAL;
445 if (!(vpi || vci))
446 return -EINVAL;
447
448 if (vpi != ATM_VPI_UNSPEC && vci != ATM_VCI_UNSPEC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000449 clear_bit(ATM_VF_PARTIAL, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 else
Joe Perchesa8147d72010-01-26 11:40:06 +0000451 if (test_bit(ATM_VF_PARTIAL, &vcc->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -EINVAL;
Joe Perches99824462010-01-26 11:40:00 +0000453 pr_debug("(TX: cl %d,bw %d-%d,sdu %d; "
454 "RX: cl %d,bw %d-%d,sdu %d,AAL %s%d)\n",
455 vcc->qos.txtp.traffic_class, vcc->qos.txtp.min_pcr,
456 vcc->qos.txtp.max_pcr, vcc->qos.txtp.max_sdu,
457 vcc->qos.rxtp.traffic_class, vcc->qos.rxtp.min_pcr,
Joe Perchesa8147d72010-01-26 11:40:06 +0000458 vcc->qos.rxtp.max_pcr, vcc->qos.rxtp.max_sdu,
Joe Perches99824462010-01-26 11:40:00 +0000459 vcc->qos.aal == ATM_AAL5 ? "" :
460 vcc->qos.aal == ATM_AAL0 ? "" : " ??? code ",
461 vcc->qos.aal == ATM_AAL0 ? 0 : vcc->qos.aal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!test_bit(ATM_VF_HASQOS, &vcc->flags))
463 return -EBADFD;
464 if (vcc->qos.txtp.traffic_class == ATM_ANYCLASS ||
465 vcc->qos.rxtp.traffic_class == ATM_ANYCLASS)
466 return -EINVAL;
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800467 if (likely(itf != ATM_ITF_ANY)) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000468 dev = try_then_request_module(atm_dev_lookup(itf),
469 "atm-device-%d", itf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 dev = NULL;
Ingo Molnar57b47a52006-03-20 22:35:41 -0800472 mutex_lock(&atm_dev_mutex);
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800473 if (!list_empty(&atm_devs)) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000474 dev = list_entry(atm_devs.next,
475 struct atm_dev, dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 atm_dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Ingo Molnar57b47a52006-03-20 22:35:41 -0800478 mutex_unlock(&atm_dev_mutex);
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800479 }
480 if (!dev)
481 return -ENODEV;
482 error = __vcc_connect(vcc, dev, vpi, vci);
483 if (error) {
484 atm_dev_put(dev);
485 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 if (vpi == ATM_VPI_UNSPEC || vci == ATM_VCI_UNSPEC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000488 set_bit(ATM_VF_PARTIAL, &vcc->flags);
489 if (test_bit(ATM_VF_READY, &ATM_SD(sock)->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 sock->state = SS_CONNECTED;
491 return 0;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494int vcc_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
495 size_t size, int flags)
496{
497 struct sock *sk = sock->sk;
498 struct atm_vcc *vcc;
499 struct sk_buff *skb;
500 int copied, error = -EINVAL;
501
502 if (sock->state != SS_CONNECTED)
503 return -ENOTCONN;
504 if (flags & ~MSG_DONTWAIT) /* only handle MSG_DONTWAIT */
505 return -EOPNOTSUPP;
506 vcc = ATM_SD(sock);
Joe Perchesa8147d72010-01-26 11:40:06 +0000507 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
508 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 !test_bit(ATM_VF_READY, &vcc->flags))
510 return 0;
511
512 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &error);
513 if (!skb)
514 return error;
515
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900516 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (copied > size) {
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900518 copied = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 msg->msg_flags |= MSG_TRUNC;
520 }
521
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900522 error = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
523 if (error)
524 return error;
Neil Horman3b885782009-10-12 13:26:31 -0700525 sock_recv_ts_and_drops(msg, sk, skb);
Joe Perches99824462010-01-26 11:40:00 +0000526 pr_debug("%d -= %d\n", atomic_read(&sk->sk_rmem_alloc), skb->truesize);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900527 atm_return(vcc, skb->truesize);
528 skb_free_datagram(sk, skb);
529 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532int vcc_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
533 size_t total_len)
534{
535 struct sock *sk = sock->sk;
536 DEFINE_WAIT(wait);
537 struct atm_vcc *vcc;
538 struct sk_buff *skb;
Joe Perchesa8147d72010-01-26 11:40:06 +0000539 int eff, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 const void __user *buff;
541 int size;
542
543 lock_sock(sk);
544 if (sock->state != SS_CONNECTED) {
545 error = -ENOTCONN;
546 goto out;
547 }
548 if (m->msg_name) {
549 error = -EISCONN;
550 goto out;
551 }
552 if (m->msg_iovlen != 1) {
553 error = -ENOSYS; /* fix this later @@@ */
554 goto out;
555 }
556 buff = m->msg_iov->iov_base;
557 size = m->msg_iov->iov_len;
558 vcc = ATM_SD(sock);
559 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
560 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
561 !test_bit(ATM_VF_READY, &vcc->flags)) {
562 error = -EPIPE;
563 send_sig(SIGPIPE, current, 0);
564 goto out;
565 }
566 if (!size) {
567 error = 0;
568 goto out;
569 }
570 if (size < 0 || size > vcc->qos.txtp.max_sdu) {
571 error = -EMSGSIZE;
572 goto out;
573 }
Jesper Juhle49332b2005-05-01 08:59:08 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 eff = (size+3) & ~3; /* align to word boundary */
Eric Dumazetaa395142010-04-20 13:03:51 +0000576 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 error = 0;
Joe Perchesa8147d72010-01-26 11:40:06 +0000578 while (!(skb = alloc_tx(vcc, eff))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (m->msg_flags & MSG_DONTWAIT) {
580 error = -EAGAIN;
581 break;
582 }
583 schedule();
584 if (signal_pending(current)) {
585 error = -ERESTARTSYS;
586 break;
587 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000588 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
589 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
590 !test_bit(ATM_VF_READY, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 error = -EPIPE;
592 send_sig(SIGPIPE, current, 0);
593 break;
594 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000595 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000597 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (error)
599 goto out;
600 skb->dev = NULL; /* for paths shared with net_device interfaces */
601 ATM_SKB(skb)->atm_options = vcc->atm_options;
Joe Perchesa8147d72010-01-26 11:40:06 +0000602 if (copy_from_user(skb_put(skb, size), buff, size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 kfree_skb(skb);
604 error = -EFAULT;
605 goto out;
606 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000607 if (eff != size)
608 memset(skb->data + size, 0, eff-size);
609 error = vcc->dev->ops->send(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 error = error ? error : size;
611out:
612 release_sock(sk);
613 return error;
614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616unsigned int vcc_poll(struct file *file, struct socket *sock, poll_table *wait)
617{
618 struct sock *sk = sock->sk;
619 struct atm_vcc *vcc;
620 unsigned int mask;
621
Eric Dumazetaa395142010-04-20 13:03:51 +0000622 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 mask = 0;
624
625 vcc = ATM_SD(sock);
626
627 /* exceptional events */
628 if (sk->sk_err)
629 mask = POLLERR;
630
631 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
632 test_bit(ATM_VF_CLOSE, &vcc->flags))
633 mask |= POLLHUP;
634
635 /* readable? */
636 if (!skb_queue_empty(&sk->sk_receive_queue))
637 mask |= POLLIN | POLLRDNORM;
638
639 /* writable? */
640 if (sock->state == SS_CONNECTING &&
641 test_bit(ATM_VF_WAITING, &vcc->flags))
642 return mask;
643
644 if (vcc->qos.txtp.traffic_class != ATM_NONE &&
645 vcc_writable(sk))
646 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
647
648 return mask;
649}
650
Joe Perchesa8147d72010-01-26 11:40:06 +0000651static int atm_change_qos(struct atm_vcc *vcc, struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 int error;
654
655 /*
656 * Don't let the QoS change the already connected AAL type nor the
657 * traffic class.
658 */
659 if (qos->aal != vcc->qos.aal ||
660 qos->rxtp.traffic_class != vcc->qos.rxtp.traffic_class ||
661 qos->txtp.traffic_class != vcc->qos.txtp.traffic_class)
662 return -EINVAL;
Joe Perchesa8147d72010-01-26 11:40:06 +0000663 error = adjust_tp(&qos->txtp, qos->aal);
664 if (!error)
665 error = adjust_tp(&qos->rxtp, qos->aal);
666 if (error)
667 return error;
668 if (!vcc->dev->ops->change_qos)
669 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (sk_atm(vcc)->sk_family == AF_ATMPVC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000671 return vcc->dev->ops->change_qos(vcc, qos, ATM_MF_SET);
672 return svc_change_qos(vcc, qos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700675static int check_tp(const struct atm_trafprm *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 /* @@@ Should be merged with adjust_tp */
Joe Perchesa8147d72010-01-26 11:40:06 +0000678 if (!tp->traffic_class || tp->traffic_class == ATM_ANYCLASS)
679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (tp->traffic_class != ATM_UBR && !tp->min_pcr && !tp->pcr &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000681 !tp->max_pcr)
682 return -EINVAL;
683 if (tp->min_pcr == ATM_MAX_PCR)
684 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (tp->min_pcr && tp->max_pcr && tp->max_pcr != ATM_MAX_PCR &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000686 tp->min_pcr > tp->max_pcr)
687 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /*
689 * We allow pcr to be outside [min_pcr,max_pcr], because later
690 * adjustment may still push it in the valid range.
691 */
692 return 0;
693}
694
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700695static int check_qos(const struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 int error;
698
699 if (!qos->txtp.traffic_class && !qos->rxtp.traffic_class)
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900700 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (qos->txtp.traffic_class != qos->rxtp.traffic_class &&
702 qos->txtp.traffic_class && qos->rxtp.traffic_class &&
703 qos->txtp.traffic_class != ATM_ANYCLASS &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000704 qos->rxtp.traffic_class != ATM_ANYCLASS)
705 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 error = check_tp(&qos->txtp);
Joe Perchesa8147d72010-01-26 11:40:06 +0000707 if (error)
708 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return check_tp(&qos->rxtp);
710}
711
712int vcc_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700713 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct atm_vcc *vcc;
716 unsigned long value;
717 int error;
718
719 if (__SO_LEVEL_MATCH(optname, level) && optlen != __SO_SIZE(optname))
720 return -EINVAL;
721
722 vcc = ATM_SD(sock);
723 switch (optname) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000724 case SO_ATMQOS:
725 {
726 struct atm_qos qos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Joe Perchesa8147d72010-01-26 11:40:06 +0000728 if (copy_from_user(&qos, optval, sizeof(qos)))
729 return -EFAULT;
730 error = check_qos(&qos);
731 if (error)
732 return error;
733 if (sock->state == SS_CONNECTED)
734 return atm_change_qos(vcc, &qos);
735 if (sock->state != SS_UNCONNECTED)
736 return -EBADFD;
737 vcc->qos = qos;
738 set_bit(ATM_VF_HASQOS, &vcc->flags);
739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000741 case SO_SETCLP:
742 if (get_user(value, (unsigned long __user *)optval))
743 return -EFAULT;
744 if (value)
745 vcc->atm_options |= ATM_ATMOPT_CLP;
746 else
747 vcc->atm_options &= ~ATM_ATMOPT_CLP;
748 return 0;
749 default:
750 if (level == SOL_SOCKET)
751 return -EINVAL;
752 break;
753 }
754 if (!vcc->dev || !vcc->dev->ops->setsockopt)
755 return -EINVAL;
756 return vcc->dev->ops->setsockopt(vcc, level, optname, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759int vcc_getsockopt(struct socket *sock, int level, int optname,
760 char __user *optval, int __user *optlen)
761{
762 struct atm_vcc *vcc;
763 int len;
764
765 if (get_user(len, optlen))
766 return -EFAULT;
767 if (__SO_LEVEL_MATCH(optname, level) && len != __SO_SIZE(optname))
768 return -EINVAL;
769
770 vcc = ATM_SD(sock);
771 switch (optname) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000772 case SO_ATMQOS:
773 if (!test_bit(ATM_VF_HASQOS, &vcc->flags))
774 return -EINVAL;
775 return copy_to_user(optval, &vcc->qos, sizeof(vcc->qos))
776 ? -EFAULT : 0;
777 case SO_SETCLP:
778 return put_user(vcc->atm_options & ATM_ATMOPT_CLP ? 1 : 0,
779 (unsigned long __user *)optval) ? -EFAULT : 0;
780 case SO_ATMPVC:
781 {
782 struct sockaddr_atmpvc pvc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Joe Perchesa8147d72010-01-26 11:40:06 +0000784 if (!vcc->dev || !test_bit(ATM_VF_ADDR, &vcc->flags))
785 return -ENOTCONN;
786 pvc.sap_family = AF_ATMPVC;
787 pvc.sap_addr.itf = vcc->dev->number;
788 pvc.sap_addr.vpi = vcc->vpi;
789 pvc.sap_addr.vci = vcc->vci;
790 return copy_to_user(optval, &pvc, sizeof(pvc)) ? -EFAULT : 0;
791 }
792 default:
793 if (level == SOL_SOCKET)
794 return -EINVAL;
Julia Lawall510a05e2010-08-05 10:19:00 +0000795 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000797 if (!vcc->dev || !vcc->dev->ops->getsockopt)
798 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return vcc->dev->ops->getsockopt(vcc, level, optname, optval, len);
800}
801
Karl Hiramoto7313bb82010-07-08 20:55:30 +0000802int register_atmdevice_notifier(struct notifier_block *nb)
803{
804 return atomic_notifier_chain_register(&atm_dev_notify_chain, nb);
805}
806EXPORT_SYMBOL_GPL(register_atmdevice_notifier);
807
808void unregister_atmdevice_notifier(struct notifier_block *nb)
809{
810 atomic_notifier_chain_unregister(&atm_dev_notify_chain, nb);
811}
812EXPORT_SYMBOL_GPL(unregister_atmdevice_notifier);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814static int __init atm_init(void)
815{
816 int error;
817
Joe Perchesa8147d72010-01-26 11:40:06 +0000818 error = proto_register(&vcc_proto, 0);
819 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 goto out;
Joe Perchesa8147d72010-01-26 11:40:06 +0000821 error = atmpvc_init();
822 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000823 pr_err("atmpvc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto out_unregister_vcc_proto;
825 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000826 error = atmsvc_init();
827 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000828 pr_err("atmsvc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out_atmpvc_exit;
830 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000831 error = atm_proc_init();
832 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000833 pr_err("atm_proc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto out_atmsvc_exit;
835 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000836 error = atm_sysfs_init();
837 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000838 pr_err("atm_sysfs_init() failed with %d\n", error);
Roman Kagan656d98b2006-06-29 12:36:34 -0700839 goto out_atmproc_exit;
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841out:
842 return error;
Roman Kagan656d98b2006-06-29 12:36:34 -0700843out_atmproc_exit:
844 atm_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845out_atmsvc_exit:
846 atmsvc_exit();
847out_atmpvc_exit:
848 atmsvc_exit();
849out_unregister_vcc_proto:
850 proto_unregister(&vcc_proto);
851 goto out;
852}
853
854static void __exit atm_exit(void)
855{
856 atm_proc_exit();
Roman Kagan656d98b2006-06-29 12:36:34 -0700857 atm_sysfs_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 atmsvc_exit();
859 atmpvc_exit();
860 proto_unregister(&vcc_proto);
861}
862
Daniel Walker84ff6022007-02-05 18:04:06 -0800863subsys_initcall(atm_init);
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865module_exit(atm_exit);
866
867MODULE_LICENSE("GPL");
868MODULE_ALIAS_NETPROTO(PF_ATMPVC);
869MODULE_ALIAS_NETPROTO(PF_ATMSVC);