blob: 754ee4791d966d46843798be0f5b5865ed0f519d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* net/atm/svc.c - ATM SVC sockets */
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
7#include <linux/string.h>
8#include <linux/net.h> /* struct socket, struct proto_ops */
9#include <linux/errno.h> /* error codes */
10#include <linux/kernel.h> /* printk */
11#include <linux/skbuff.h>
12#include <linux/wait.h>
13#include <linux/sched.h> /* jiffies and HZ */
14#include <linux/fcntl.h> /* O_NONBLOCK */
15#include <linux/init.h>
16#include <linux/atm.h> /* ATM stuff */
17#include <linux/atmsap.h>
18#include <linux/atmsvc.h>
19#include <linux/atmdev.h>
20#include <linux/bitops.h>
21#include <net/sock.h> /* for sock_no_* */
Joe Perchesb7d93712010-01-26 11:40:18 +000022#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "resources.h"
25#include "common.h" /* common for PVCs and SVCs */
26#include "signaling.h"
27#include "addr.h"
28
Joe Perchesb7d93712010-01-26 11:40:18 +000029static int svc_create(struct net *net, struct socket *sock, int protocol,
30 int kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032/*
33 * Note: since all this is still nicely synchronized with the signaling demon,
34 * there's no need to protect sleep loops with clis. If signaling is
35 * moved into the kernel, that would change.
36 */
37
38
Joe Perchesb7d93712010-01-26 11:40:18 +000039static int svc_shutdown(struct socket *sock, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 return 0;
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static void svc_disconnect(struct atm_vcc *vcc)
45{
46 DEFINE_WAIT(wait);
47 struct sk_buff *skb;
48 struct sock *sk = sk_atm(vcc);
49
Joe Perchesb7d93712010-01-26 11:40:18 +000050 pr_debug("%p\n", vcc);
51 if (test_bit(ATM_VF_REGIS, &vcc->flags)) {
Eric Dumazetaa395142010-04-20 13:03:51 +000052 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +000053 sigd_enq(vcc, as_close, NULL, NULL, NULL);
54 while (!test_bit(ATM_VF_RELEASED, &vcc->flags) && sigd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +000056 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +000057 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 }
Eric Dumazetaa395142010-04-20 13:03:51 +000059 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
61 /* beware - socket is still in use by atmsigd until the last
62 as_indicate has been answered */
63 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
64 atm_return(vcc, skb->truesize);
Stephen Hemminger52240062007-08-28 15:22:09 -070065 pr_debug("LISTEN REL\n");
Joe Perchesb7d93712010-01-26 11:40:18 +000066 sigd_enq2(NULL, as_reject, vcc, NULL, NULL, &vcc->qos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 dev_kfree_skb(skb);
68 }
69 clear_bit(ATM_VF_REGIS, &vcc->flags);
70 /* ... may retry later */
71}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static int svc_release(struct socket *sock)
74{
75 struct sock *sk = sock->sk;
76 struct atm_vcc *vcc;
77
Joe Perchesb7d93712010-01-26 11:40:18 +000078 if (sk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 vcc = ATM_SD(sock);
Joe Perches99824462010-01-26 11:40:00 +000080 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 clear_bit(ATM_VF_READY, &vcc->flags);
Joe Perchesb7d93712010-01-26 11:40:18 +000082 /*
83 * VCC pointer is used as a reference,
84 * so we must not free it (thereby subjecting it to re-use)
85 * before all pending connections are closed
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 svc_disconnect(vcc);
88 vcc_release(sock);
89 }
90 return 0;
91}
92
Joe Perchesb7d93712010-01-26 11:40:18 +000093static int svc_bind(struct socket *sock, struct sockaddr *sockaddr,
94 int sockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 DEFINE_WAIT(wait);
97 struct sock *sk = sock->sk;
98 struct sockaddr_atmsvc *addr;
99 struct atm_vcc *vcc;
100 int error;
101
102 if (sockaddr_len != sizeof(struct sockaddr_atmsvc))
103 return -EINVAL;
104 lock_sock(sk);
105 if (sock->state == SS_CONNECTED) {
106 error = -EISCONN;
107 goto out;
108 }
109 if (sock->state != SS_UNCONNECTED) {
110 error = -EINVAL;
111 goto out;
112 }
113 vcc = ATM_SD(sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 addr = (struct sockaddr_atmsvc *) sockaddr;
115 if (addr->sas_family != AF_ATMSVC) {
116 error = -EAFNOSUPPORT;
117 goto out;
118 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000119 clear_bit(ATM_VF_BOUND, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* failing rebind will kill old binding */
121 /* @@@ check memory (de)allocation on rebind */
Joe Perchesb7d93712010-01-26 11:40:18 +0000122 if (!test_bit(ATM_VF_HASQOS, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 error = -EBADFD;
124 goto out;
125 }
126 vcc->local = *addr;
127 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000128 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000129 sigd_enq(vcc, as_bind, NULL, NULL, &vcc->local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
131 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000132 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000134 finish_wait(sk_sleep(sk), &wait);
Joe Perchesb7d93712010-01-26 11:40:18 +0000135 clear_bit(ATM_VF_REGIS, &vcc->flags); /* doesn't count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (!sigd) {
137 error = -EUNATCH;
138 goto out;
139 }
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900140 if (!sk->sk_err)
Joe Perchesb7d93712010-01-26 11:40:18 +0000141 set_bit(ATM_VF_BOUND, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 error = -sk->sk_err;
143out:
144 release_sock(sk);
145 return error;
146}
147
Joe Perchesb7d93712010-01-26 11:40:18 +0000148static int svc_connect(struct socket *sock, struct sockaddr *sockaddr,
149 int sockaddr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 DEFINE_WAIT(wait);
152 struct sock *sk = sock->sk;
153 struct sockaddr_atmsvc *addr;
154 struct atm_vcc *vcc = ATM_SD(sock);
155 int error;
156
Joe Perchesb7d93712010-01-26 11:40:18 +0000157 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 lock_sock(sk);
159 if (sockaddr_len != sizeof(struct sockaddr_atmsvc)) {
160 error = -EINVAL;
161 goto out;
162 }
163
164 switch (sock->state) {
165 default:
166 error = -EINVAL;
167 goto out;
168 case SS_CONNECTED:
169 error = -EISCONN;
170 goto out;
171 case SS_CONNECTING:
172 if (test_bit(ATM_VF_WAITING, &vcc->flags)) {
173 error = -EALREADY;
174 goto out;
175 }
176 sock->state = SS_UNCONNECTED;
177 if (sk->sk_err) {
178 error = -sk->sk_err;
179 goto out;
180 }
181 break;
182 case SS_UNCONNECTED:
183 addr = (struct sockaddr_atmsvc *) sockaddr;
184 if (addr->sas_family != AF_ATMSVC) {
185 error = -EAFNOSUPPORT;
186 goto out;
187 }
188 if (!test_bit(ATM_VF_HASQOS, &vcc->flags)) {
189 error = -EBADFD;
190 goto out;
191 }
192 if (vcc->qos.txtp.traffic_class == ATM_ANYCLASS ||
193 vcc->qos.rxtp.traffic_class == ATM_ANYCLASS) {
194 error = -EINVAL;
195 goto out;
196 }
197 if (!vcc->qos.txtp.traffic_class &&
198 !vcc->qos.rxtp.traffic_class) {
199 error = -EINVAL;
200 goto out;
201 }
202 vcc->remote = *addr;
203 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000204 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000205 sigd_enq(vcc, as_connect, NULL, NULL, &vcc->remote);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (flags & O_NONBLOCK) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000207 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 sock->state = SS_CONNECTING;
209 error = -EINPROGRESS;
210 goto out;
211 }
212 error = 0;
213 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
214 schedule();
215 if (!signal_pending(current)) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000216 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000217 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 continue;
219 }
Stephen Hemminger52240062007-08-28 15:22:09 -0700220 pr_debug("*ABORT*\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /*
222 * This is tricky:
223 * Kernel ---close--> Demon
224 * Kernel <--close--- Demon
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900225 * or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * Kernel ---close--> Demon
227 * Kernel <--error--- Demon
228 * or
229 * Kernel ---close--> Demon
230 * Kernel <--okay---- Demon
231 * Kernel <--close--- Demon
232 */
Joe Perchesb7d93712010-01-26 11:40:18 +0000233 sigd_enq(vcc, as_close, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000235 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000236 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 schedule();
238 }
239 if (!sk->sk_err)
Joe Perchesb7d93712010-01-26 11:40:18 +0000240 while (!test_bit(ATM_VF_RELEASED, &vcc->flags) &&
241 sigd) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000242 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000243 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 schedule();
245 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000246 clear_bit(ATM_VF_REGIS, &vcc->flags);
247 clear_bit(ATM_VF_RELEASED, &vcc->flags);
248 clear_bit(ATM_VF_CLOSE, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 /* we're gone now but may connect later */
250 error = -EINTR;
251 break;
252 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000253 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (error)
255 goto out;
256 if (!sigd) {
257 error = -EUNATCH;
258 goto out;
259 }
260 if (sk->sk_err) {
261 error = -sk->sk_err;
262 goto out;
263 }
264 }
265/*
266 * Not supported yet
267 *
268 * #ifndef CONFIG_SINGLE_SIGITF
269 */
270 vcc->qos.txtp.max_pcr = SELECT_TOP_PCR(vcc->qos.txtp);
271 vcc->qos.txtp.pcr = 0;
272 vcc->qos.txtp.min_pcr = 0;
273/*
274 * #endif
275 */
Joe Perchesb7d93712010-01-26 11:40:18 +0000276 error = vcc_connect(sock, vcc->itf, vcc->vpi, vcc->vci);
277 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 sock->state = SS_CONNECTED;
279 else
Joe Perchesb7d93712010-01-26 11:40:18 +0000280 (void)svc_disconnect(vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281out:
282 release_sock(sk);
283 return error;
284}
285
Joe Perchesb7d93712010-01-26 11:40:18 +0000286static int svc_listen(struct socket *sock, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 DEFINE_WAIT(wait);
289 struct sock *sk = sock->sk;
290 struct atm_vcc *vcc = ATM_SD(sock);
291 int error;
292
Joe Perches99824462010-01-26 11:40:00 +0000293 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 lock_sock(sk);
295 /* let server handle listen on unbound sockets */
Joe Perchesb7d93712010-01-26 11:40:18 +0000296 if (test_bit(ATM_VF_SESSION, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 error = -EINVAL;
298 goto out;
299 }
Chas Williams17b24b32008-12-04 14:58:13 -0800300 if (test_bit(ATM_VF_LISTEN, &vcc->flags)) {
301 error = -EADDRINUSE;
302 goto out;
Joe Perchesb7d93712010-01-26 11:40:18 +0000303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000305 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000306 sigd_enq(vcc, as_listen, NULL, NULL, &vcc->local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
308 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000309 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000311 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (!sigd) {
313 error = -EUNATCH;
314 goto out;
315 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000316 set_bit(ATM_VF_LISTEN, &vcc->flags);
Chas Williams17b24b32008-12-04 14:58:13 -0800317 vcc_insert_socket(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 sk->sk_max_ack_backlog = backlog > 0 ? backlog : ATM_BACKLOG_DEFAULT;
319 error = -sk->sk_err;
320out:
321 release_sock(sk);
322 return error;
323}
324
Joe Perchesb7d93712010-01-26 11:40:18 +0000325static int svc_accept(struct socket *sock, struct socket *newsock, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct sock *sk = sock->sk;
328 struct sk_buff *skb;
329 struct atmsvc_msg *msg;
330 struct atm_vcc *old_vcc = ATM_SD(sock);
331 struct atm_vcc *new_vcc;
332 int error;
333
334 lock_sock(sk);
335
Eric Paris3f378b62009-11-05 22:18:14 -0800336 error = svc_create(sock_net(sk), newsock, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (error)
338 goto out;
339
340 new_vcc = ATM_SD(newsock);
341
Joe Perches99824462010-01-26 11:40:00 +0000342 pr_debug("%p -> %p\n", old_vcc, new_vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 while (1) {
344 DEFINE_WAIT(wait);
345
Eric Dumazetaa395142010-04-20 13:03:51 +0000346 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 while (!(skb = skb_dequeue(&sk->sk_receive_queue)) &&
348 sigd) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000349 if (test_bit(ATM_VF_RELEASED, &old_vcc->flags))
350 break;
351 if (test_bit(ATM_VF_CLOSE, &old_vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 error = -sk->sk_err;
353 break;
354 }
355 if (flags & O_NONBLOCK) {
356 error = -EAGAIN;
357 break;
358 }
359 release_sock(sk);
360 schedule();
361 lock_sock(sk);
362 if (signal_pending(current)) {
363 error = -ERESTARTSYS;
364 break;
365 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000366 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000367 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000369 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (error)
371 goto out;
372 if (!skb) {
373 error = -EUNATCH;
374 goto out;
375 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000376 msg = (struct atmsvc_msg *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 new_vcc->qos = msg->qos;
Joe Perchesb7d93712010-01-26 11:40:18 +0000378 set_bit(ATM_VF_HASQOS, &new_vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 new_vcc->remote = msg->svc;
380 new_vcc->local = msg->local;
381 new_vcc->sap = msg->sap;
382 error = vcc_connect(newsock, msg->pvc.sap_addr.itf,
Joe Perchesb7d93712010-01-26 11:40:18 +0000383 msg->pvc.sap_addr.vpi,
384 msg->pvc.sap_addr.vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dev_kfree_skb(skb);
386 sk->sk_ack_backlog--;
387 if (error) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000388 sigd_enq2(NULL, as_reject, old_vcc, NULL, NULL,
389 &old_vcc->qos, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 error = error == -EAGAIN ? -EBUSY : error;
391 goto out;
392 }
393 /* wait should be short, so we ignore the non-blocking flag */
394 set_bit(ATM_VF_WAITING, &new_vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000395 prepare_to_wait(sk_sleep(sk_atm(new_vcc)), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000396 TASK_UNINTERRUPTIBLE);
397 sigd_enq(new_vcc, as_accept, old_vcc, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 while (test_bit(ATM_VF_WAITING, &new_vcc->flags) && sigd) {
399 release_sock(sk);
400 schedule();
401 lock_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000402 prepare_to_wait(sk_sleep(sk_atm(new_vcc)), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000403 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000405 finish_wait(sk_sleep(sk_atm(new_vcc)), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (!sigd) {
407 error = -EUNATCH;
408 goto out;
409 }
410 if (!sk_atm(new_vcc)->sk_err)
411 break;
412 if (sk_atm(new_vcc)->sk_err != ERESTARTSYS) {
413 error = -sk_atm(new_vcc)->sk_err;
414 goto out;
415 }
416 }
417 newsock->state = SS_CONNECTED;
418out:
419 release_sock(sk);
420 return error;
421}
422
Joe Perchesb7d93712010-01-26 11:40:18 +0000423static int svc_getname(struct socket *sock, struct sockaddr *sockaddr,
424 int *sockaddr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 struct sockaddr_atmsvc *addr;
427
428 *sockaddr_len = sizeof(struct sockaddr_atmsvc);
429 addr = (struct sockaddr_atmsvc *) sockaddr;
Joe Perchesb7d93712010-01-26 11:40:18 +0000430 memcpy(addr, peer ? &ATM_SD(sock)->remote : &ATM_SD(sock)->local,
431 sizeof(struct sockaddr_atmsvc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433}
434
Joe Perchesb7d93712010-01-26 11:40:18 +0000435int svc_change_qos(struct atm_vcc *vcc, struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct sock *sk = sk_atm(vcc);
438 DEFINE_WAIT(wait);
439
440 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000441 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000442 sigd_enq2(vcc, as_modify, NULL, NULL, &vcc->local, qos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 while (test_bit(ATM_VF_WAITING, &vcc->flags) &&
444 !test_bit(ATM_VF_RELEASED, &vcc->flags) && sigd) {
445 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000446 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000448 finish_wait(sk_sleep(sk), &wait);
Joe Perchesb7d93712010-01-26 11:40:18 +0000449 if (!sigd)
450 return -EUNATCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return -sk->sk_err;
452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static int svc_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700455 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct sock *sk = sock->sk;
458 struct atm_vcc *vcc = ATM_SD(sock);
459 int value, error = 0;
460
461 lock_sock(sk);
462 switch (optname) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000463 case SO_ATMSAP:
464 if (level != SOL_ATM || optlen != sizeof(struct atm_sap)) {
465 error = -EINVAL;
466 goto out;
467 }
468 if (copy_from_user(&vcc->sap, optval, optlen)) {
469 error = -EFAULT;
470 goto out;
471 }
472 set_bit(ATM_VF_HASSAP, &vcc->flags);
473 break;
474 case SO_MULTIPOINT:
475 if (level != SOL_ATM || optlen != sizeof(int)) {
476 error = -EINVAL;
477 goto out;
478 }
479 if (get_user(value, (int __user *)optval)) {
480 error = -EFAULT;
481 goto out;
482 }
483 if (value == 1)
484 set_bit(ATM_VF_SESSION, &vcc->flags);
485 else if (value == 0)
486 clear_bit(ATM_VF_SESSION, &vcc->flags);
487 else
488 error = -EINVAL;
489 break;
490 default:
491 error = vcc_setsockopt(sock, level, optname, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494out:
495 release_sock(sk);
496 return error;
497}
498
Joe Perchesb7d93712010-01-26 11:40:18 +0000499static int svc_getsockopt(struct socket *sock, int level, int optname,
500 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct sock *sk = sock->sk;
503 int error = 0, len;
504
505 lock_sock(sk);
506 if (!__SO_LEVEL_MATCH(optname, level) || optname != SO_ATMSAP) {
507 error = vcc_getsockopt(sock, level, optname, optval, optlen);
508 goto out;
509 }
510 if (get_user(len, optlen)) {
511 error = -EFAULT;
512 goto out;
513 }
514 if (len != sizeof(struct atm_sap)) {
515 error = -EINVAL;
516 goto out;
517 }
518 if (copy_to_user(optval, &ATM_SD(sock)->sap, sizeof(struct atm_sap))) {
519 error = -EFAULT;
520 goto out;
521 }
522out:
523 release_sock(sk);
524 return error;
525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527static int svc_addparty(struct socket *sock, struct sockaddr *sockaddr,
528 int sockaddr_len, int flags)
529{
530 DEFINE_WAIT(wait);
531 struct sock *sk = sock->sk;
532 struct atm_vcc *vcc = ATM_SD(sock);
533 int error;
534
535 lock_sock(sk);
536 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000537 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 sigd_enq(vcc, as_addparty, NULL, NULL,
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900539 (struct sockaddr_atmsvc *) sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (flags & O_NONBLOCK) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000541 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 error = -EINPROGRESS;
543 goto out;
544 }
Joe Perches99824462010-01-26 11:40:00 +0000545 pr_debug("added wait queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
547 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000548 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000550 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 error = xchg(&sk->sk_err_soft, 0);
552out:
553 release_sock(sk);
554 return error;
555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557static int svc_dropparty(struct socket *sock, int ep_ref)
558{
559 DEFINE_WAIT(wait);
560 struct sock *sk = sock->sk;
561 struct atm_vcc *vcc = ATM_SD(sock);
562 int error;
563
564 lock_sock(sk);
565 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000566 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 sigd_enq2(vcc, as_dropparty, NULL, NULL, NULL, NULL, ep_ref);
568 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
569 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000570 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000572 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!sigd) {
574 error = -EUNATCH;
575 goto out;
576 }
577 error = xchg(&sk->sk_err_soft, 0);
578out:
579 release_sock(sk);
580 return error;
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static int svc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
584{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900585 int error, ep_ref;
586 struct sockaddr_atmsvc sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct atm_vcc *vcc = ATM_SD(sock);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 switch (cmd) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000590 case ATM_ADDPARTY:
591 if (!test_bit(ATM_VF_SESSION, &vcc->flags))
592 return -EINVAL;
593 if (copy_from_user(&sa, (void __user *) arg, sizeof(sa)))
594 return -EFAULT;
595 error = svc_addparty(sock, (struct sockaddr *)&sa, sizeof(sa),
596 0);
597 break;
598 case ATM_DROPPARTY:
599 if (!test_bit(ATM_VF_SESSION, &vcc->flags))
600 return -EINVAL;
601 if (copy_from_user(&ep_ref, (void __user *) arg, sizeof(int)))
602 return -EFAULT;
603 error = svc_dropparty(sock, ep_ref);
604 break;
605 default:
606 error = vcc_ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
609 return error;
610}
611
David Woodhouse8865c412008-12-03 22:12:38 -0800612#ifdef CONFIG_COMPAT
Joe Perchesb7d93712010-01-26 11:40:18 +0000613static int svc_compat_ioctl(struct socket *sock, unsigned int cmd,
614 unsigned long arg)
David Woodhouse8865c412008-12-03 22:12:38 -0800615{
616 /* The definition of ATM_ADDPARTY uses the size of struct atm_iobuf.
617 But actually it takes a struct sockaddr_atmsvc, which doesn't need
618 compat handling. So all we have to do is fix up cmd... */
619 if (cmd == COMPAT_ATM_ADDPARTY)
620 cmd = ATM_ADDPARTY;
621
622 if (cmd == ATM_ADDPARTY || cmd == ATM_DROPPARTY)
623 return svc_ioctl(sock, cmd, arg);
624 else
625 return vcc_compat_ioctl(sock, cmd, arg);
626}
627#endif /* CONFIG_COMPAT */
628
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800629static const struct proto_ops svc_proto_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 .family = PF_ATMSVC,
631 .owner = THIS_MODULE,
632
633 .release = svc_release,
634 .bind = svc_bind,
635 .connect = svc_connect,
636 .socketpair = sock_no_socketpair,
637 .accept = svc_accept,
638 .getname = svc_getname,
639 .poll = vcc_poll,
640 .ioctl = svc_ioctl,
David Woodhouse8865c412008-12-03 22:12:38 -0800641#ifdef CONFIG_COMPAT
642 .compat_ioctl = svc_compat_ioctl,
643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 .listen = svc_listen,
645 .shutdown = svc_shutdown,
646 .setsockopt = svc_setsockopt,
647 .getsockopt = svc_getsockopt,
648 .sendmsg = vcc_sendmsg,
649 .recvmsg = vcc_recvmsg,
650 .mmap = sock_no_mmap,
651 .sendpage = sock_no_sendpage,
652};
653
654
Eric Paris3f378b62009-11-05 22:18:14 -0800655static int svc_create(struct net *net, struct socket *sock, int protocol,
656 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 int error;
659
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800660 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700661 return -EAFNOSUPPORT;
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 sock->ops = &svc_proto_ops;
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700664 error = vcc_create(net, sock, protocol, AF_ATMSVC);
Joe Perchesb7d93712010-01-26 11:40:18 +0000665 if (error)
666 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 ATM_SD(sock)->local.sas_family = AF_ATMSVC;
668 ATM_SD(sock)->remote.sas_family = AF_ATMSVC;
669 return 0;
670}
671
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000672static const struct net_proto_family svc_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .family = PF_ATMSVC,
674 .create = svc_create,
675 .owner = THIS_MODULE,
676};
677
678
679/*
680 * Initialize the ATM SVC protocol family
681 */
682
683int __init atmsvc_init(void)
684{
685 return sock_register(&svc_family_ops);
686}
687
688void atmsvc_exit(void)
689{
690 sock_unregister(PF_ATMSVC);
691}