blob: b4b44dbed645f74046ae4663a31b805a0ed72b52 [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
Arun Sharma600634972011-07-26 16:09:06 -070026#include <linux/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
Jorge Boncompte [DTI2]4e55f572011-11-21 10:25:57 +0000217void vcc_process_recv_queue(struct atm_vcc *vcc)
218{
219 struct sk_buff_head queue, *rq;
220 struct sk_buff *skb, *tmp;
221 unsigned long flags;
222
223 __skb_queue_head_init(&queue);
224 rq = &sk_atm(vcc)->sk_receive_queue;
225
226 spin_lock_irqsave(&rq->lock, flags);
227 skb_queue_splice_init(rq, &queue);
228 spin_unlock_irqrestore(&rq->lock, flags);
229
230 skb_queue_walk_safe(&queue, skb, tmp) {
231 __skb_unlink(skb, &queue);
232 vcc->push(vcc, skb);
233 }
234}
235EXPORT_SYMBOL(vcc_process_recv_queue);
236
Karl Hiramoto7313bb82010-07-08 20:55:30 +0000237void atm_dev_signal_change(struct atm_dev *dev, char signal)
238{
239 pr_debug("%s signal=%d dev=%p number=%d dev->signal=%d\n",
240 __func__, signal, dev, dev->number, dev->signal);
241
242 /* atm driver sending invalid signal */
243 WARN_ON(signal < ATM_PHY_SIG_LOST || signal > ATM_PHY_SIG_FOUND);
244
245 if (dev->signal == signal)
246 return; /* no change */
247
248 dev->signal = signal;
249
250 atomic_notifier_call_chain(&atm_dev_notify_chain, signal, dev);
251}
252EXPORT_SYMBOL(atm_dev_signal_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800254void atm_dev_release_vccs(struct atm_dev *dev)
255{
256 int i;
257
258 write_lock_irq(&vcc_sklist_lock);
259 for (i = 0; i < VCC_HTABLE_SIZE; i++) {
260 struct hlist_head *head = &vcc_hash[i];
261 struct hlist_node *node, *tmp;
262 struct sock *s;
263 struct atm_vcc *vcc;
264
265 sk_for_each_safe(s, node, tmp, head) {
266 vcc = atm_sk(s);
267 if (vcc->dev == dev) {
268 vcc_release_async(vcc, -EPIPE);
269 sk_del_node_init(s);
270 }
271 }
272 }
273 write_unlock_irq(&vcc_sklist_lock);
274}
Philip A. Prindevillec0312352011-03-30 13:17:04 +0000275EXPORT_SYMBOL(atm_dev_release_vccs);
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800276
Joe Perchesa8147d72010-01-26 11:40:06 +0000277static int adjust_tp(struct atm_trafprm *tp, unsigned char aal)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 int max_sdu;
280
Joe Perchesa8147d72010-01-26 11:40:06 +0000281 if (!tp->traffic_class)
282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 switch (aal) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000284 case ATM_AAL0:
285 max_sdu = ATM_CELL_SIZE-1;
286 break;
287 case ATM_AAL34:
288 max_sdu = ATM_MAX_AAL34_PDU;
289 break;
290 default:
291 pr_warning("AAL problems ... (%d)\n", aal);
292 /* fall through */
293 case ATM_AAL5:
294 max_sdu = ATM_MAX_AAL5_PDU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000296 if (!tp->max_sdu)
297 tp->max_sdu = max_sdu;
298 else if (tp->max_sdu > max_sdu)
299 return -EINVAL;
300 if (!tp->max_cdv)
301 tp->max_cdv = ATM_MAX_CDV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return 0;
303}
304
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700305static int check_ci(const struct atm_vcc *vcc, short vpi, int vci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Joe Perchesa8147d72010-01-26 11:40:06 +0000307 struct hlist_head *head = &vcc_hash[vci & (VCC_HTABLE_SIZE - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct hlist_node *node;
309 struct sock *s;
310 struct atm_vcc *walk;
311
312 sk_for_each(s, node, head) {
313 walk = atm_sk(s);
314 if (walk->dev != vcc->dev)
315 continue;
316 if (test_bit(ATM_VF_ADDR, &walk->flags) && walk->vpi == vpi &&
317 walk->vci == vci && ((walk->qos.txtp.traffic_class !=
318 ATM_NONE && vcc->qos.txtp.traffic_class != ATM_NONE) ||
319 (walk->qos.rxtp.traffic_class != ATM_NONE &&
320 vcc->qos.rxtp.traffic_class != ATM_NONE)))
321 return -EADDRINUSE;
322 }
323
324 /* allow VCCs with same VPI/VCI iff they don't collide on
325 TX/RX (but we may refuse such sharing for other reasons,
326 e.g. if protocol requires to have both channels) */
327
328 return 0;
329}
330
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700331static int find_ci(const struct atm_vcc *vcc, short *vpi, int *vci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 static short p; /* poor man's per-device cache */
334 static int c;
335 short old_p;
336 int old_c;
337 int err;
338
339 if (*vpi != ATM_VPI_ANY && *vci != ATM_VCI_ANY) {
340 err = check_ci(vcc, *vpi, *vci);
341 return err;
342 }
343 /* last scan may have left values out of bounds for current device */
344 if (*vpi != ATM_VPI_ANY)
345 p = *vpi;
346 else if (p >= 1 << vcc->dev->ci_range.vpi_bits)
347 p = 0;
348 if (*vci != ATM_VCI_ANY)
349 c = *vci;
350 else if (c < ATM_NOT_RSV_VCI || c >= 1 << vcc->dev->ci_range.vci_bits)
351 c = ATM_NOT_RSV_VCI;
352 old_p = p;
353 old_c = c;
354 do {
355 if (!check_ci(vcc, p, c)) {
356 *vpi = p;
357 *vci = c;
358 return 0;
359 }
360 if (*vci == ATM_VCI_ANY) {
361 c++;
362 if (c >= 1 << vcc->dev->ci_range.vci_bits)
363 c = ATM_NOT_RSV_VCI;
364 }
365 if ((c == ATM_NOT_RSV_VCI || *vci != ATM_VCI_ANY) &&
366 *vpi == ATM_VPI_ANY) {
367 p++;
Joe Perchesa8147d72010-01-26 11:40:06 +0000368 if (p >= 1 << vcc->dev->ci_range.vpi_bits)
369 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000371 } while (old_p != p || old_c != c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -EADDRINUSE;
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375static int __vcc_connect(struct atm_vcc *vcc, struct atm_dev *dev, short vpi,
376 int vci)
377{
378 struct sock *sk = sk_atm(vcc);
379 int error;
380
381 if ((vpi != ATM_VPI_UNSPEC && vpi != ATM_VPI_ANY &&
382 vpi >> dev->ci_range.vpi_bits) || (vci != ATM_VCI_UNSPEC &&
383 vci != ATM_VCI_ANY && vci >> dev->ci_range.vci_bits))
384 return -EINVAL;
385 if (vci > 0 && vci < ATM_NOT_RSV_VCI && !capable(CAP_NET_BIND_SERVICE))
386 return -EPERM;
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800387 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!try_module_get(dev->ops->owner))
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800389 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 vcc->dev = dev;
391 write_lock_irq(&vcc_sklist_lock);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900392 if (test_bit(ATM_DF_REMOVED, &dev->flags) ||
Stanislaw Gruszka64bf69d2005-11-29 16:16:41 -0800393 (error = find_ci(vcc, &vpi, &vci))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 write_unlock_irq(&vcc_sklist_lock);
395 goto fail_module_put;
396 }
397 vcc->vpi = vpi;
398 vcc->vci = vci;
399 __vcc_insert_socket(sk);
400 write_unlock_irq(&vcc_sklist_lock);
401 switch (vcc->qos.aal) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000402 case ATM_AAL0:
403 error = atm_init_aal0(vcc);
404 vcc->stats = &dev->stats.aal0;
405 break;
406 case ATM_AAL34:
407 error = atm_init_aal34(vcc);
408 vcc->stats = &dev->stats.aal34;
409 break;
410 case ATM_NO_AAL:
411 /* ATM_AAL5 is also used in the "0 for default" case */
412 vcc->qos.aal = ATM_AAL5;
413 /* fall through */
414 case ATM_AAL5:
415 error = atm_init_aal5(vcc);
416 vcc->stats = &dev->stats.aal5;
417 break;
418 default:
419 error = -EPROTOTYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000421 if (!error)
422 error = adjust_tp(&vcc->qos.txtp, vcc->qos.aal);
423 if (!error)
424 error = adjust_tp(&vcc->qos.rxtp, vcc->qos.aal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (error)
426 goto fail;
Joe Perches99824462010-01-26 11:40:00 +0000427 pr_debug("VCC %d.%d, AAL %d\n", vpi, vci, vcc->qos.aal);
428 pr_debug(" TX: %d, PCR %d..%d, SDU %d\n",
429 vcc->qos.txtp.traffic_class,
430 vcc->qos.txtp.min_pcr,
431 vcc->qos.txtp.max_pcr,
432 vcc->qos.txtp.max_sdu);
433 pr_debug(" RX: %d, PCR %d..%d, SDU %d\n",
434 vcc->qos.rxtp.traffic_class,
435 vcc->qos.rxtp.min_pcr,
436 vcc->qos.rxtp.max_pcr,
437 vcc->qos.rxtp.max_sdu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 if (dev->ops->open) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000440 error = dev->ops->open(vcc);
441 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 goto fail;
443 }
444 return 0;
445
446fail:
447 vcc_remove_socket(sk);
448fail_module_put:
449 module_put(dev->ops->owner);
450 /* ensure we get dev module ref count correct */
451 vcc->dev = NULL;
452 return error;
453}
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455int vcc_connect(struct socket *sock, int itf, short vpi, int vci)
456{
457 struct atm_dev *dev;
458 struct atm_vcc *vcc = ATM_SD(sock);
459 int error;
460
Joe Perches99824462010-01-26 11:40:00 +0000461 pr_debug("(vpi %d, vci %d)\n", vpi, vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (sock->state == SS_CONNECTED)
463 return -EISCONN;
464 if (sock->state != SS_UNCONNECTED)
465 return -EINVAL;
466 if (!(vpi || vci))
467 return -EINVAL;
468
469 if (vpi != ATM_VPI_UNSPEC && vci != ATM_VCI_UNSPEC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000470 clear_bit(ATM_VF_PARTIAL, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 else
Joe Perchesa8147d72010-01-26 11:40:06 +0000472 if (test_bit(ATM_VF_PARTIAL, &vcc->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return -EINVAL;
Joe Perches99824462010-01-26 11:40:00 +0000474 pr_debug("(TX: cl %d,bw %d-%d,sdu %d; "
475 "RX: cl %d,bw %d-%d,sdu %d,AAL %s%d)\n",
476 vcc->qos.txtp.traffic_class, vcc->qos.txtp.min_pcr,
477 vcc->qos.txtp.max_pcr, vcc->qos.txtp.max_sdu,
478 vcc->qos.rxtp.traffic_class, vcc->qos.rxtp.min_pcr,
Joe Perchesa8147d72010-01-26 11:40:06 +0000479 vcc->qos.rxtp.max_pcr, vcc->qos.rxtp.max_sdu,
Joe Perches99824462010-01-26 11:40:00 +0000480 vcc->qos.aal == ATM_AAL5 ? "" :
481 vcc->qos.aal == ATM_AAL0 ? "" : " ??? code ",
482 vcc->qos.aal == ATM_AAL0 ? 0 : vcc->qos.aal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (!test_bit(ATM_VF_HASQOS, &vcc->flags))
484 return -EBADFD;
485 if (vcc->qos.txtp.traffic_class == ATM_ANYCLASS ||
486 vcc->qos.rxtp.traffic_class == ATM_ANYCLASS)
487 return -EINVAL;
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800488 if (likely(itf != ATM_ITF_ANY)) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000489 dev = try_then_request_module(atm_dev_lookup(itf),
490 "atm-device-%d", itf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 dev = NULL;
Ingo Molnar57b47a52006-03-20 22:35:41 -0800493 mutex_lock(&atm_dev_mutex);
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800494 if (!list_empty(&atm_devs)) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000495 dev = list_entry(atm_devs.next,
496 struct atm_dev, dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 atm_dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Ingo Molnar57b47a52006-03-20 22:35:41 -0800499 mutex_unlock(&atm_dev_mutex);
Mitchell Blank Jrc9933d02005-11-29 16:13:32 -0800500 }
501 if (!dev)
502 return -ENODEV;
503 error = __vcc_connect(vcc, dev, vpi, vci);
504 if (error) {
505 atm_dev_put(dev);
506 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 if (vpi == ATM_VPI_UNSPEC || vci == ATM_VCI_UNSPEC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000509 set_bit(ATM_VF_PARTIAL, &vcc->flags);
510 if (test_bit(ATM_VF_READY, &ATM_SD(sock)->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 sock->state = SS_CONNECTED;
512 return 0;
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515int vcc_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
516 size_t size, int flags)
517{
518 struct sock *sk = sock->sk;
519 struct atm_vcc *vcc;
520 struct sk_buff *skb;
521 int copied, error = -EINVAL;
522
523 if (sock->state != SS_CONNECTED)
524 return -ENOTCONN;
Jorge Boncompte [DTI2]40ba8492011-11-21 10:25:58 +0000525
526 /* only handle MSG_DONTWAIT and MSG_PEEK */
527 if (flags & ~(MSG_DONTWAIT | MSG_PEEK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return -EOPNOTSUPP;
Jorge Boncompte [DTI2]40ba8492011-11-21 10:25:58 +0000529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 vcc = ATM_SD(sock);
Joe Perchesa8147d72010-01-26 11:40:06 +0000531 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
532 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 !test_bit(ATM_VF_READY, &vcc->flags))
534 return 0;
535
536 skb = skb_recv_datagram(sk, flags, flags & MSG_DONTWAIT, &error);
537 if (!skb)
538 return error;
539
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900540 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (copied > size) {
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900542 copied = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 msg->msg_flags |= MSG_TRUNC;
544 }
545
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900546 error = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
547 if (error)
548 return error;
Neil Horman3b885782009-10-12 13:26:31 -0700549 sock_recv_ts_and_drops(msg, sk, skb);
Jorge Boncompte [DTI2]40ba8492011-11-21 10:25:58 +0000550
551 if (!(flags & MSG_PEEK)) {
552 pr_debug("%d -= %d\n", atomic_read(&sk->sk_rmem_alloc),
553 skb->truesize);
554 atm_return(vcc, skb->truesize);
555 }
556
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900557 skb_free_datagram(sk, skb);
558 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561int vcc_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
562 size_t total_len)
563{
564 struct sock *sk = sock->sk;
565 DEFINE_WAIT(wait);
566 struct atm_vcc *vcc;
567 struct sk_buff *skb;
Joe Perchesa8147d72010-01-26 11:40:06 +0000568 int eff, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 const void __user *buff;
570 int size;
571
572 lock_sock(sk);
573 if (sock->state != SS_CONNECTED) {
574 error = -ENOTCONN;
575 goto out;
576 }
577 if (m->msg_name) {
578 error = -EISCONN;
579 goto out;
580 }
581 if (m->msg_iovlen != 1) {
582 error = -ENOSYS; /* fix this later @@@ */
583 goto out;
584 }
585 buff = m->msg_iov->iov_base;
586 size = m->msg_iov->iov_len;
587 vcc = ATM_SD(sock);
588 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
589 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
590 !test_bit(ATM_VF_READY, &vcc->flags)) {
591 error = -EPIPE;
592 send_sig(SIGPIPE, current, 0);
593 goto out;
594 }
595 if (!size) {
596 error = 0;
597 goto out;
598 }
599 if (size < 0 || size > vcc->qos.txtp.max_sdu) {
600 error = -EMSGSIZE;
601 goto out;
602 }
Jesper Juhle49332b2005-05-01 08:59:08 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 eff = (size+3) & ~3; /* align to word boundary */
Eric Dumazetaa395142010-04-20 13:03:51 +0000605 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 error = 0;
Joe Perchesa8147d72010-01-26 11:40:06 +0000607 while (!(skb = alloc_tx(vcc, eff))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (m->msg_flags & MSG_DONTWAIT) {
609 error = -EAGAIN;
610 break;
611 }
612 schedule();
613 if (signal_pending(current)) {
614 error = -ERESTARTSYS;
615 break;
616 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000617 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
618 test_bit(ATM_VF_CLOSE, &vcc->flags) ||
619 !test_bit(ATM_VF_READY, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 error = -EPIPE;
621 send_sig(SIGPIPE, current, 0);
622 break;
623 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000624 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000626 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (error)
628 goto out;
629 skb->dev = NULL; /* for paths shared with net_device interfaces */
630 ATM_SKB(skb)->atm_options = vcc->atm_options;
Joe Perchesa8147d72010-01-26 11:40:06 +0000631 if (copy_from_user(skb_put(skb, size), buff, size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 kfree_skb(skb);
633 error = -EFAULT;
634 goto out;
635 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000636 if (eff != size)
637 memset(skb->data + size, 0, eff-size);
638 error = vcc->dev->ops->send(vcc, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 error = error ? error : size;
640out:
641 release_sock(sk);
642 return error;
643}
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645unsigned int vcc_poll(struct file *file, struct socket *sock, poll_table *wait)
646{
647 struct sock *sk = sock->sk;
648 struct atm_vcc *vcc;
649 unsigned int mask;
650
Eric Dumazetaa395142010-04-20 13:03:51 +0000651 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 mask = 0;
653
654 vcc = ATM_SD(sock);
655
656 /* exceptional events */
657 if (sk->sk_err)
658 mask = POLLERR;
659
660 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
661 test_bit(ATM_VF_CLOSE, &vcc->flags))
662 mask |= POLLHUP;
663
664 /* readable? */
665 if (!skb_queue_empty(&sk->sk_receive_queue))
666 mask |= POLLIN | POLLRDNORM;
667
668 /* writable? */
669 if (sock->state == SS_CONNECTING &&
670 test_bit(ATM_VF_WAITING, &vcc->flags))
671 return mask;
672
673 if (vcc->qos.txtp.traffic_class != ATM_NONE &&
674 vcc_writable(sk))
675 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
676
677 return mask;
678}
679
Joe Perchesa8147d72010-01-26 11:40:06 +0000680static int atm_change_qos(struct atm_vcc *vcc, struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 int error;
683
684 /*
685 * Don't let the QoS change the already connected AAL type nor the
686 * traffic class.
687 */
688 if (qos->aal != vcc->qos.aal ||
689 qos->rxtp.traffic_class != vcc->qos.rxtp.traffic_class ||
690 qos->txtp.traffic_class != vcc->qos.txtp.traffic_class)
691 return -EINVAL;
Joe Perchesa8147d72010-01-26 11:40:06 +0000692 error = adjust_tp(&qos->txtp, qos->aal);
693 if (!error)
694 error = adjust_tp(&qos->rxtp, qos->aal);
695 if (error)
696 return error;
697 if (!vcc->dev->ops->change_qos)
698 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (sk_atm(vcc)->sk_family == AF_ATMPVC)
Joe Perchesa8147d72010-01-26 11:40:06 +0000700 return vcc->dev->ops->change_qos(vcc, qos, ATM_MF_SET);
701 return svc_change_qos(vcc, qos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700704static int check_tp(const struct atm_trafprm *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 /* @@@ Should be merged with adjust_tp */
Joe Perchesa8147d72010-01-26 11:40:06 +0000707 if (!tp->traffic_class || tp->traffic_class == ATM_ANYCLASS)
708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (tp->traffic_class != ATM_UBR && !tp->min_pcr && !tp->pcr &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000710 !tp->max_pcr)
711 return -EINVAL;
712 if (tp->min_pcr == ATM_MAX_PCR)
713 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (tp->min_pcr && tp->max_pcr && tp->max_pcr != ATM_MAX_PCR &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000715 tp->min_pcr > tp->max_pcr)
716 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /*
718 * We allow pcr to be outside [min_pcr,max_pcr], because later
719 * adjustment may still push it in the valid range.
720 */
721 return 0;
722}
723
Mitchell Blank Jr61c33e02008-06-17 16:20:06 -0700724static int check_qos(const struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 int error;
727
728 if (!qos->txtp.traffic_class && !qos->rxtp.traffic_class)
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900729 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (qos->txtp.traffic_class != qos->rxtp.traffic_class &&
731 qos->txtp.traffic_class && qos->rxtp.traffic_class &&
732 qos->txtp.traffic_class != ATM_ANYCLASS &&
Joe Perchesa8147d72010-01-26 11:40:06 +0000733 qos->rxtp.traffic_class != ATM_ANYCLASS)
734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 error = check_tp(&qos->txtp);
Joe Perchesa8147d72010-01-26 11:40:06 +0000736 if (error)
737 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return check_tp(&qos->rxtp);
739}
740
741int vcc_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700742 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 struct atm_vcc *vcc;
745 unsigned long value;
746 int error;
747
748 if (__SO_LEVEL_MATCH(optname, level) && optlen != __SO_SIZE(optname))
749 return -EINVAL;
750
751 vcc = ATM_SD(sock);
752 switch (optname) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000753 case SO_ATMQOS:
754 {
755 struct atm_qos qos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Joe Perchesa8147d72010-01-26 11:40:06 +0000757 if (copy_from_user(&qos, optval, sizeof(qos)))
758 return -EFAULT;
759 error = check_qos(&qos);
760 if (error)
761 return error;
762 if (sock->state == SS_CONNECTED)
763 return atm_change_qos(vcc, &qos);
764 if (sock->state != SS_UNCONNECTED)
765 return -EBADFD;
766 vcc->qos = qos;
767 set_bit(ATM_VF_HASQOS, &vcc->flags);
768 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000770 case SO_SETCLP:
771 if (get_user(value, (unsigned long __user *)optval))
772 return -EFAULT;
773 if (value)
774 vcc->atm_options |= ATM_ATMOPT_CLP;
775 else
776 vcc->atm_options &= ~ATM_ATMOPT_CLP;
777 return 0;
778 default:
779 if (level == SOL_SOCKET)
780 return -EINVAL;
781 break;
782 }
783 if (!vcc->dev || !vcc->dev->ops->setsockopt)
784 return -EINVAL;
785 return vcc->dev->ops->setsockopt(vcc, level, optname, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788int vcc_getsockopt(struct socket *sock, int level, int optname,
789 char __user *optval, int __user *optlen)
790{
791 struct atm_vcc *vcc;
792 int len;
793
794 if (get_user(len, optlen))
795 return -EFAULT;
796 if (__SO_LEVEL_MATCH(optname, level) && len != __SO_SIZE(optname))
797 return -EINVAL;
798
799 vcc = ATM_SD(sock);
800 switch (optname) {
Joe Perchesa8147d72010-01-26 11:40:06 +0000801 case SO_ATMQOS:
802 if (!test_bit(ATM_VF_HASQOS, &vcc->flags))
803 return -EINVAL;
804 return copy_to_user(optval, &vcc->qos, sizeof(vcc->qos))
805 ? -EFAULT : 0;
806 case SO_SETCLP:
807 return put_user(vcc->atm_options & ATM_ATMOPT_CLP ? 1 : 0,
808 (unsigned long __user *)optval) ? -EFAULT : 0;
809 case SO_ATMPVC:
810 {
811 struct sockaddr_atmpvc pvc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Joe Perchesa8147d72010-01-26 11:40:06 +0000813 if (!vcc->dev || !test_bit(ATM_VF_ADDR, &vcc->flags))
814 return -ENOTCONN;
815 pvc.sap_family = AF_ATMPVC;
816 pvc.sap_addr.itf = vcc->dev->number;
817 pvc.sap_addr.vpi = vcc->vpi;
818 pvc.sap_addr.vci = vcc->vci;
819 return copy_to_user(optval, &pvc, sizeof(pvc)) ? -EFAULT : 0;
820 }
821 default:
822 if (level == SOL_SOCKET)
823 return -EINVAL;
Julia Lawall510a05e2010-08-05 10:19:00 +0000824 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000826 if (!vcc->dev || !vcc->dev->ops->getsockopt)
827 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return vcc->dev->ops->getsockopt(vcc, level, optname, optval, len);
829}
830
Karl Hiramoto7313bb82010-07-08 20:55:30 +0000831int register_atmdevice_notifier(struct notifier_block *nb)
832{
833 return atomic_notifier_chain_register(&atm_dev_notify_chain, nb);
834}
835EXPORT_SYMBOL_GPL(register_atmdevice_notifier);
836
837void unregister_atmdevice_notifier(struct notifier_block *nb)
838{
839 atomic_notifier_chain_unregister(&atm_dev_notify_chain, nb);
840}
841EXPORT_SYMBOL_GPL(unregister_atmdevice_notifier);
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843static int __init atm_init(void)
844{
845 int error;
846
Joe Perchesa8147d72010-01-26 11:40:06 +0000847 error = proto_register(&vcc_proto, 0);
848 if (error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto out;
Joe Perchesa8147d72010-01-26 11:40:06 +0000850 error = atmpvc_init();
851 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000852 pr_err("atmpvc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 goto out_unregister_vcc_proto;
854 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000855 error = atmsvc_init();
856 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000857 pr_err("atmsvc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto out_atmpvc_exit;
859 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000860 error = atm_proc_init();
861 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000862 pr_err("atm_proc_init() failed with %d\n", error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto out_atmsvc_exit;
864 }
Joe Perchesa8147d72010-01-26 11:40:06 +0000865 error = atm_sysfs_init();
866 if (error < 0) {
Joe Perches99824462010-01-26 11:40:00 +0000867 pr_err("atm_sysfs_init() failed with %d\n", error);
Roman Kagan656d98b2006-06-29 12:36:34 -0700868 goto out_atmproc_exit;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870out:
871 return error;
Roman Kagan656d98b2006-06-29 12:36:34 -0700872out_atmproc_exit:
873 atm_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874out_atmsvc_exit:
875 atmsvc_exit();
876out_atmpvc_exit:
877 atmsvc_exit();
878out_unregister_vcc_proto:
879 proto_unregister(&vcc_proto);
880 goto out;
881}
882
883static void __exit atm_exit(void)
884{
885 atm_proc_exit();
Roman Kagan656d98b2006-06-29 12:36:34 -0700886 atm_sysfs_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 atmsvc_exit();
888 atmpvc_exit();
889 proto_unregister(&vcc_proto);
890}
891
Daniel Walker84ff6022007-02-05 18:04:06 -0800892subsys_initcall(atm_init);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894module_exit(atm_exit);
895
896MODULE_LICENSE("GPL");
897MODULE_ALIAS_NETPROTO(PF_ATMPVC);
898MODULE_ALIAS_NETPROTO(PF_ATMSVC);