blob: d8e5d0c2ebbc2acb9a084581f5fa9f99fbd904da [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>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040023#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "resources.h"
26#include "common.h" /* common for PVCs and SVCs */
27#include "signaling.h"
28#include "addr.h"
29
Joe Perchesb7d93712010-01-26 11:40:18 +000030static int svc_create(struct net *net, struct socket *sock, int protocol,
31 int kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
34 * Note: since all this is still nicely synchronized with the signaling demon,
35 * there's no need to protect sleep loops with clis. If signaling is
36 * moved into the kernel, that would change.
37 */
38
39
Joe Perchesb7d93712010-01-26 11:40:18 +000040static int svc_shutdown(struct socket *sock, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 return 0;
43}
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static void svc_disconnect(struct atm_vcc *vcc)
46{
47 DEFINE_WAIT(wait);
48 struct sk_buff *skb;
49 struct sock *sk = sk_atm(vcc);
50
Joe Perchesb7d93712010-01-26 11:40:18 +000051 pr_debug("%p\n", vcc);
52 if (test_bit(ATM_VF_REGIS, &vcc->flags)) {
Eric Dumazetaa395142010-04-20 13:03:51 +000053 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +000054 sigd_enq(vcc, as_close, NULL, NULL, NULL);
55 while (!test_bit(ATM_VF_RELEASED, &vcc->flags) && sigd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +000057 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +000058 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 }
Eric Dumazetaa395142010-04-20 13:03:51 +000060 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 }
62 /* beware - socket is still in use by atmsigd until the last
63 as_indicate has been answered */
64 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
65 atm_return(vcc, skb->truesize);
Stephen Hemminger52240062007-08-28 15:22:09 -070066 pr_debug("LISTEN REL\n");
Joe Perchesb7d93712010-01-26 11:40:18 +000067 sigd_enq2(NULL, as_reject, vcc, NULL, NULL, &vcc->qos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 dev_kfree_skb(skb);
69 }
70 clear_bit(ATM_VF_REGIS, &vcc->flags);
71 /* ... may retry later */
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static int svc_release(struct socket *sock)
75{
76 struct sock *sk = sock->sk;
77 struct atm_vcc *vcc;
78
Joe Perchesb7d93712010-01-26 11:40:18 +000079 if (sk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 vcc = ATM_SD(sock);
Joe Perches99824462010-01-26 11:40:00 +000081 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 clear_bit(ATM_VF_READY, &vcc->flags);
Joe Perchesb7d93712010-01-26 11:40:18 +000083 /*
84 * VCC pointer is used as a reference,
85 * so we must not free it (thereby subjecting it to re-use)
86 * before all pending connections are closed
87 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 svc_disconnect(vcc);
89 vcc_release(sock);
90 }
91 return 0;
92}
93
Joe Perchesb7d93712010-01-26 11:40:18 +000094static int svc_bind(struct socket *sock, struct sockaddr *sockaddr,
95 int sockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 DEFINE_WAIT(wait);
98 struct sock *sk = sock->sk;
99 struct sockaddr_atmsvc *addr;
100 struct atm_vcc *vcc;
101 int error;
102
103 if (sockaddr_len != sizeof(struct sockaddr_atmsvc))
104 return -EINVAL;
105 lock_sock(sk);
106 if (sock->state == SS_CONNECTED) {
107 error = -EISCONN;
108 goto out;
109 }
110 if (sock->state != SS_UNCONNECTED) {
111 error = -EINVAL;
112 goto out;
113 }
114 vcc = ATM_SD(sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 addr = (struct sockaddr_atmsvc *) sockaddr;
116 if (addr->sas_family != AF_ATMSVC) {
117 error = -EAFNOSUPPORT;
118 goto out;
119 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000120 clear_bit(ATM_VF_BOUND, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /* failing rebind will kill old binding */
122 /* @@@ check memory (de)allocation on rebind */
Joe Perchesb7d93712010-01-26 11:40:18 +0000123 if (!test_bit(ATM_VF_HASQOS, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 error = -EBADFD;
125 goto out;
126 }
127 vcc->local = *addr;
128 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000129 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000130 sigd_enq(vcc, as_bind, NULL, NULL, &vcc->local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
132 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000133 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000135 finish_wait(sk_sleep(sk), &wait);
Joe Perchesb7d93712010-01-26 11:40:18 +0000136 clear_bit(ATM_VF_REGIS, &vcc->flags); /* doesn't count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (!sigd) {
138 error = -EUNATCH;
139 goto out;
140 }
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900141 if (!sk->sk_err)
Joe Perchesb7d93712010-01-26 11:40:18 +0000142 set_bit(ATM_VF_BOUND, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 error = -sk->sk_err;
144out:
145 release_sock(sk);
146 return error;
147}
148
Joe Perchesb7d93712010-01-26 11:40:18 +0000149static int svc_connect(struct socket *sock, struct sockaddr *sockaddr,
150 int sockaddr_len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 DEFINE_WAIT(wait);
153 struct sock *sk = sock->sk;
154 struct sockaddr_atmsvc *addr;
155 struct atm_vcc *vcc = ATM_SD(sock);
156 int error;
157
Joe Perchesb7d93712010-01-26 11:40:18 +0000158 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 lock_sock(sk);
160 if (sockaddr_len != sizeof(struct sockaddr_atmsvc)) {
161 error = -EINVAL;
162 goto out;
163 }
164
165 switch (sock->state) {
166 default:
167 error = -EINVAL;
168 goto out;
169 case SS_CONNECTED:
170 error = -EISCONN;
171 goto out;
172 case SS_CONNECTING:
173 if (test_bit(ATM_VF_WAITING, &vcc->flags)) {
174 error = -EALREADY;
175 goto out;
176 }
177 sock->state = SS_UNCONNECTED;
178 if (sk->sk_err) {
179 error = -sk->sk_err;
180 goto out;
181 }
182 break;
183 case SS_UNCONNECTED:
184 addr = (struct sockaddr_atmsvc *) sockaddr;
185 if (addr->sas_family != AF_ATMSVC) {
186 error = -EAFNOSUPPORT;
187 goto out;
188 }
189 if (!test_bit(ATM_VF_HASQOS, &vcc->flags)) {
190 error = -EBADFD;
191 goto out;
192 }
193 if (vcc->qos.txtp.traffic_class == ATM_ANYCLASS ||
194 vcc->qos.rxtp.traffic_class == ATM_ANYCLASS) {
195 error = -EINVAL;
196 goto out;
197 }
198 if (!vcc->qos.txtp.traffic_class &&
199 !vcc->qos.rxtp.traffic_class) {
200 error = -EINVAL;
201 goto out;
202 }
203 vcc->remote = *addr;
204 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000205 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000206 sigd_enq(vcc, as_connect, NULL, NULL, &vcc->remote);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (flags & O_NONBLOCK) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000208 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 sock->state = SS_CONNECTING;
210 error = -EINPROGRESS;
211 goto out;
212 }
213 error = 0;
214 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
215 schedule();
216 if (!signal_pending(current)) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000217 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000218 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 continue;
220 }
Stephen Hemminger52240062007-08-28 15:22:09 -0700221 pr_debug("*ABORT*\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /*
223 * This is tricky:
224 * Kernel ---close--> Demon
225 * Kernel <--close--- Demon
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900226 * or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * Kernel ---close--> Demon
228 * Kernel <--error--- Demon
229 * or
230 * Kernel ---close--> Demon
231 * Kernel <--okay---- Demon
232 * Kernel <--close--- Demon
233 */
Joe Perchesb7d93712010-01-26 11:40:18 +0000234 sigd_enq(vcc, as_close, NULL, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000236 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000237 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 schedule();
239 }
240 if (!sk->sk_err)
Joe Perchesb7d93712010-01-26 11:40:18 +0000241 while (!test_bit(ATM_VF_RELEASED, &vcc->flags) &&
242 sigd) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000243 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000244 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 schedule();
246 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000247 clear_bit(ATM_VF_REGIS, &vcc->flags);
248 clear_bit(ATM_VF_RELEASED, &vcc->flags);
249 clear_bit(ATM_VF_CLOSE, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* we're gone now but may connect later */
251 error = -EINTR;
252 break;
253 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000254 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (error)
256 goto out;
257 if (!sigd) {
258 error = -EUNATCH;
259 goto out;
260 }
261 if (sk->sk_err) {
262 error = -sk->sk_err;
263 goto out;
264 }
265 }
Paul Bolle391296c2014-05-27 17:07:12 +0200266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 vcc->qos.txtp.max_pcr = SELECT_TOP_PCR(vcc->qos.txtp);
268 vcc->qos.txtp.pcr = 0;
269 vcc->qos.txtp.min_pcr = 0;
Paul Bolle391296c2014-05-27 17:07:12 +0200270
Joe Perchesb7d93712010-01-26 11:40:18 +0000271 error = vcc_connect(sock, vcc->itf, vcc->vpi, vcc->vci);
272 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 sock->state = SS_CONNECTED;
274 else
Joe Perchesb7d93712010-01-26 11:40:18 +0000275 (void)svc_disconnect(vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276out:
277 release_sock(sk);
278 return error;
279}
280
Joe Perchesb7d93712010-01-26 11:40:18 +0000281static int svc_listen(struct socket *sock, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 DEFINE_WAIT(wait);
284 struct sock *sk = sock->sk;
285 struct atm_vcc *vcc = ATM_SD(sock);
286 int error;
287
Joe Perches99824462010-01-26 11:40:00 +0000288 pr_debug("%p\n", vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 lock_sock(sk);
290 /* let server handle listen on unbound sockets */
Joe Perchesb7d93712010-01-26 11:40:18 +0000291 if (test_bit(ATM_VF_SESSION, &vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 error = -EINVAL;
293 goto out;
294 }
Chas Williams17b24b32008-12-04 14:58:13 -0800295 if (test_bit(ATM_VF_LISTEN, &vcc->flags)) {
296 error = -EADDRINUSE;
297 goto out;
Joe Perchesb7d93712010-01-26 11:40:18 +0000298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000300 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000301 sigd_enq(vcc, as_listen, NULL, NULL, &vcc->local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
303 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000304 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000306 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!sigd) {
308 error = -EUNATCH;
309 goto out;
310 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000311 set_bit(ATM_VF_LISTEN, &vcc->flags);
Chas Williams17b24b32008-12-04 14:58:13 -0800312 vcc_insert_socket(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 sk->sk_max_ack_backlog = backlog > 0 ? backlog : ATM_BACKLOG_DEFAULT;
314 error = -sk->sk_err;
315out:
316 release_sock(sk);
317 return error;
318}
319
Joe Perchesb7d93712010-01-26 11:40:18 +0000320static int svc_accept(struct socket *sock, struct socket *newsock, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 struct sock *sk = sock->sk;
323 struct sk_buff *skb;
324 struct atmsvc_msg *msg;
325 struct atm_vcc *old_vcc = ATM_SD(sock);
326 struct atm_vcc *new_vcc;
327 int error;
328
329 lock_sock(sk);
330
Eric Paris3f378b62009-11-05 22:18:14 -0800331 error = svc_create(sock_net(sk), newsock, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (error)
333 goto out;
334
335 new_vcc = ATM_SD(newsock);
336
Joe Perches99824462010-01-26 11:40:00 +0000337 pr_debug("%p -> %p\n", old_vcc, new_vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 while (1) {
339 DEFINE_WAIT(wait);
340
Eric Dumazetaa395142010-04-20 13:03:51 +0000341 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 while (!(skb = skb_dequeue(&sk->sk_receive_queue)) &&
343 sigd) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000344 if (test_bit(ATM_VF_RELEASED, &old_vcc->flags))
345 break;
346 if (test_bit(ATM_VF_CLOSE, &old_vcc->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 error = -sk->sk_err;
348 break;
349 }
350 if (flags & O_NONBLOCK) {
351 error = -EAGAIN;
352 break;
353 }
354 release_sock(sk);
355 schedule();
356 lock_sock(sk);
357 if (signal_pending(current)) {
358 error = -ERESTARTSYS;
359 break;
360 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000361 prepare_to_wait(sk_sleep(sk), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000362 TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000364 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (error)
366 goto out;
367 if (!skb) {
368 error = -EUNATCH;
369 goto out;
370 }
Joe Perchesb7d93712010-01-26 11:40:18 +0000371 msg = (struct atmsvc_msg *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 new_vcc->qos = msg->qos;
Joe Perchesb7d93712010-01-26 11:40:18 +0000373 set_bit(ATM_VF_HASQOS, &new_vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 new_vcc->remote = msg->svc;
375 new_vcc->local = msg->local;
376 new_vcc->sap = msg->sap;
377 error = vcc_connect(newsock, msg->pvc.sap_addr.itf,
Joe Perchesb7d93712010-01-26 11:40:18 +0000378 msg->pvc.sap_addr.vpi,
379 msg->pvc.sap_addr.vci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 dev_kfree_skb(skb);
381 sk->sk_ack_backlog--;
382 if (error) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000383 sigd_enq2(NULL, as_reject, old_vcc, NULL, NULL,
384 &old_vcc->qos, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 error = error == -EAGAIN ? -EBUSY : error;
386 goto out;
387 }
388 /* wait should be short, so we ignore the non-blocking flag */
389 set_bit(ATM_VF_WAITING, &new_vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000390 prepare_to_wait(sk_sleep(sk_atm(new_vcc)), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000391 TASK_UNINTERRUPTIBLE);
392 sigd_enq(new_vcc, as_accept, old_vcc, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 while (test_bit(ATM_VF_WAITING, &new_vcc->flags) && sigd) {
394 release_sock(sk);
395 schedule();
396 lock_sock(sk);
Eric Dumazetaa395142010-04-20 13:03:51 +0000397 prepare_to_wait(sk_sleep(sk_atm(new_vcc)), &wait,
Joe Perchesb7d93712010-01-26 11:40:18 +0000398 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000400 finish_wait(sk_sleep(sk_atm(new_vcc)), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (!sigd) {
402 error = -EUNATCH;
403 goto out;
404 }
405 if (!sk_atm(new_vcc)->sk_err)
406 break;
407 if (sk_atm(new_vcc)->sk_err != ERESTARTSYS) {
408 error = -sk_atm(new_vcc)->sk_err;
409 goto out;
410 }
411 }
412 newsock->state = SS_CONNECTED;
413out:
414 release_sock(sk);
415 return error;
416}
417
Joe Perchesb7d93712010-01-26 11:40:18 +0000418static int svc_getname(struct socket *sock, struct sockaddr *sockaddr,
419 int *sockaddr_len, int peer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct sockaddr_atmsvc *addr;
422
423 *sockaddr_len = sizeof(struct sockaddr_atmsvc);
424 addr = (struct sockaddr_atmsvc *) sockaddr;
Joe Perchesb7d93712010-01-26 11:40:18 +0000425 memcpy(addr, peer ? &ATM_SD(sock)->remote : &ATM_SD(sock)->local,
426 sizeof(struct sockaddr_atmsvc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
Joe Perchesb7d93712010-01-26 11:40:18 +0000430int svc_change_qos(struct atm_vcc *vcc, struct atm_qos *qos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
432 struct sock *sk = sk_atm(vcc);
433 DEFINE_WAIT(wait);
434
435 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000436 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Joe Perchesb7d93712010-01-26 11:40:18 +0000437 sigd_enq2(vcc, as_modify, NULL, NULL, &vcc->local, qos, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 while (test_bit(ATM_VF_WAITING, &vcc->flags) &&
439 !test_bit(ATM_VF_RELEASED, &vcc->flags) && sigd) {
440 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000441 prepare_to_wait(sk_sleep(sk), &wait, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000443 finish_wait(sk_sleep(sk), &wait);
Joe Perchesb7d93712010-01-26 11:40:18 +0000444 if (!sigd)
445 return -EUNATCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return -sk->sk_err;
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static int svc_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700450 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 struct sock *sk = sock->sk;
453 struct atm_vcc *vcc = ATM_SD(sock);
454 int value, error = 0;
455
456 lock_sock(sk);
457 switch (optname) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000458 case SO_ATMSAP:
459 if (level != SOL_ATM || optlen != sizeof(struct atm_sap)) {
460 error = -EINVAL;
461 goto out;
462 }
463 if (copy_from_user(&vcc->sap, optval, optlen)) {
464 error = -EFAULT;
465 goto out;
466 }
467 set_bit(ATM_VF_HASSAP, &vcc->flags);
468 break;
469 case SO_MULTIPOINT:
470 if (level != SOL_ATM || optlen != sizeof(int)) {
471 error = -EINVAL;
472 goto out;
473 }
474 if (get_user(value, (int __user *)optval)) {
475 error = -EFAULT;
476 goto out;
477 }
478 if (value == 1)
479 set_bit(ATM_VF_SESSION, &vcc->flags);
480 else if (value == 0)
481 clear_bit(ATM_VF_SESSION, &vcc->flags);
482 else
483 error = -EINVAL;
484 break;
485 default:
486 error = vcc_setsockopt(sock, level, optname, optval, optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
489out:
490 release_sock(sk);
491 return error;
492}
493
Joe Perchesb7d93712010-01-26 11:40:18 +0000494static int svc_getsockopt(struct socket *sock, int level, int optname,
495 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 struct sock *sk = sock->sk;
498 int error = 0, len;
499
500 lock_sock(sk);
501 if (!__SO_LEVEL_MATCH(optname, level) || optname != SO_ATMSAP) {
502 error = vcc_getsockopt(sock, level, optname, optval, optlen);
503 goto out;
504 }
505 if (get_user(len, optlen)) {
506 error = -EFAULT;
507 goto out;
508 }
509 if (len != sizeof(struct atm_sap)) {
510 error = -EINVAL;
511 goto out;
512 }
513 if (copy_to_user(optval, &ATM_SD(sock)->sap, sizeof(struct atm_sap))) {
514 error = -EFAULT;
515 goto out;
516 }
517out:
518 release_sock(sk);
519 return error;
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static int svc_addparty(struct socket *sock, struct sockaddr *sockaddr,
523 int sockaddr_len, int flags)
524{
525 DEFINE_WAIT(wait);
526 struct sock *sk = sock->sk;
527 struct atm_vcc *vcc = ATM_SD(sock);
528 int error;
529
530 lock_sock(sk);
531 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000532 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 sigd_enq(vcc, as_addparty, NULL, NULL,
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900534 (struct sockaddr_atmsvc *) sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (flags & O_NONBLOCK) {
Eric Dumazetaa395142010-04-20 13:03:51 +0000536 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 error = -EINPROGRESS;
538 goto out;
539 }
Joe Perches99824462010-01-26 11:40:00 +0000540 pr_debug("added wait queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
542 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000543 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000545 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 error = xchg(&sk->sk_err_soft, 0);
547out:
548 release_sock(sk);
549 return error;
550}
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static int svc_dropparty(struct socket *sock, int ep_ref)
553{
554 DEFINE_WAIT(wait);
555 struct sock *sk = sock->sk;
556 struct atm_vcc *vcc = ATM_SD(sock);
557 int error;
558
559 lock_sock(sk);
560 set_bit(ATM_VF_WAITING, &vcc->flags);
Eric Dumazetaa395142010-04-20 13:03:51 +0000561 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 sigd_enq2(vcc, as_dropparty, NULL, NULL, NULL, NULL, ep_ref);
563 while (test_bit(ATM_VF_WAITING, &vcc->flags) && sigd) {
564 schedule();
Eric Dumazetaa395142010-04-20 13:03:51 +0000565 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
Eric Dumazetaa395142010-04-20 13:03:51 +0000567 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (!sigd) {
569 error = -EUNATCH;
570 goto out;
571 }
572 error = xchg(&sk->sk_err_soft, 0);
573out:
574 release_sock(sk);
575 return error;
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static int svc_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
579{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900580 int error, ep_ref;
581 struct sockaddr_atmsvc sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct atm_vcc *vcc = ATM_SD(sock);
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 switch (cmd) {
Joe Perchesb7d93712010-01-26 11:40:18 +0000585 case ATM_ADDPARTY:
586 if (!test_bit(ATM_VF_SESSION, &vcc->flags))
587 return -EINVAL;
588 if (copy_from_user(&sa, (void __user *) arg, sizeof(sa)))
589 return -EFAULT;
590 error = svc_addparty(sock, (struct sockaddr *)&sa, sizeof(sa),
591 0);
592 break;
593 case ATM_DROPPARTY:
594 if (!test_bit(ATM_VF_SESSION, &vcc->flags))
595 return -EINVAL;
596 if (copy_from_user(&ep_ref, (void __user *) arg, sizeof(int)))
597 return -EFAULT;
598 error = svc_dropparty(sock, ep_ref);
599 break;
600 default:
601 error = vcc_ioctl(sock, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603
604 return error;
605}
606
David Woodhouse8865c412008-12-03 22:12:38 -0800607#ifdef CONFIG_COMPAT
Joe Perchesb7d93712010-01-26 11:40:18 +0000608static int svc_compat_ioctl(struct socket *sock, unsigned int cmd,
609 unsigned long arg)
David Woodhouse8865c412008-12-03 22:12:38 -0800610{
611 /* The definition of ATM_ADDPARTY uses the size of struct atm_iobuf.
612 But actually it takes a struct sockaddr_atmsvc, which doesn't need
613 compat handling. So all we have to do is fix up cmd... */
614 if (cmd == COMPAT_ATM_ADDPARTY)
615 cmd = ATM_ADDPARTY;
616
617 if (cmd == ATM_ADDPARTY || cmd == ATM_DROPPARTY)
618 return svc_ioctl(sock, cmd, arg);
619 else
620 return vcc_compat_ioctl(sock, cmd, arg);
621}
622#endif /* CONFIG_COMPAT */
623
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800624static const struct proto_ops svc_proto_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 .family = PF_ATMSVC,
626 .owner = THIS_MODULE,
627
628 .release = svc_release,
629 .bind = svc_bind,
630 .connect = svc_connect,
631 .socketpair = sock_no_socketpair,
632 .accept = svc_accept,
633 .getname = svc_getname,
634 .poll = vcc_poll,
635 .ioctl = svc_ioctl,
David Woodhouse8865c412008-12-03 22:12:38 -0800636#ifdef CONFIG_COMPAT
637 .compat_ioctl = svc_compat_ioctl,
638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .listen = svc_listen,
640 .shutdown = svc_shutdown,
641 .setsockopt = svc_setsockopt,
642 .getsockopt = svc_getsockopt,
643 .sendmsg = vcc_sendmsg,
644 .recvmsg = vcc_recvmsg,
645 .mmap = sock_no_mmap,
646 .sendpage = sock_no_sendpage,
647};
648
649
Eric Paris3f378b62009-11-05 22:18:14 -0800650static int svc_create(struct net *net, struct socket *sock, int protocol,
651 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 int error;
654
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800655 if (!net_eq(net, &init_net))
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700656 return -EAFNOSUPPORT;
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 sock->ops = &svc_proto_ops;
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700659 error = vcc_create(net, sock, protocol, AF_ATMSVC);
Joe Perchesb7d93712010-01-26 11:40:18 +0000660 if (error)
661 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 ATM_SD(sock)->local.sas_family = AF_ATMSVC;
663 ATM_SD(sock)->remote.sas_family = AF_ATMSVC;
664 return 0;
665}
666
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000667static const struct net_proto_family svc_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .family = PF_ATMSVC,
669 .create = svc_create,
670 .owner = THIS_MODULE,
671};
672
673
674/*
675 * Initialize the ATM SVC protocol family
676 */
677
678int __init atmsvc_init(void)
679{
680 return sock_register(&svc_family_ops);
681}
682
683void atmsvc_exit(void)
684{
685 sock_unregister(PF_ATMSVC);
686}