blob: 5de06ab8ed7523f93a0b3cd4775a49fef275d32a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* net/atm/signaling.c - ATM signaling */
3
4/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
5
Joe Perches99824462010-01-26 11:40:00 +00006#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include <linux/errno.h> /* error codes */
9#include <linux/kernel.h> /* printk */
10#include <linux/skbuff.h>
11#include <linux/wait.h>
12#include <linux/sched.h> /* jiffies and HZ */
13#include <linux/atm.h> /* ATM stuff */
14#include <linux/atmsap.h>
15#include <linux/atmsvc.h>
16#include <linux/atmdev.h>
17#include <linux/bitops.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include "resources.h"
21#include "signaling.h"
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct atm_vcc *sigd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static void sigd_put_skb(struct sk_buff *skb)
26{
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 if (!sigd) {
Joe Perches99824462010-01-26 11:40:00 +000028 pr_debug("atmsvc: no signaling daemon\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 kfree_skb(skb);
30 return;
31 }
Joe Perches0ec96e62010-01-26 11:40:17 +000032 atm_force_charge(sigd, skb->truesize);
33 skb_queue_tail(&sk_atm(sigd)->sk_receive_queue, skb);
David S. Miller676d2362014-04-11 16:15:36 -040034 sk_atm(sigd)->sk_data_ready(sk_atm(sigd));
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Joe Perches0ec96e62010-01-26 11:40:17 +000037static void modify_qos(struct atm_vcc *vcc, struct atmsvc_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 struct sk_buff *skb;
40
Joe Perches0ec96e62010-01-26 11:40:17 +000041 if (test_bit(ATM_VF_RELEASED, &vcc->flags) ||
42 !test_bit(ATM_VF_READY, &vcc->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return;
44 msg->type = as_error;
Joe Perches0ec96e62010-01-26 11:40:17 +000045 if (!vcc->dev->ops->change_qos)
46 msg->reply = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 else {
48 /* should lock VCC */
Joe Perches0ec96e62010-01-26 11:40:17 +000049 msg->reply = vcc->dev->ops->change_qos(vcc, &msg->qos,
50 msg->reply);
51 if (!msg->reply)
52 msg->type = as_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 }
54 /*
Randy Dunlap563f63e2020-09-17 21:35:20 -070055 * Should probably just turn around the old skb. But then, the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * space accounting needs to follow the change too. Maybe later.
57 */
Joe Perches0ec96e62010-01-26 11:40:17 +000058 while (!(skb = alloc_skb(sizeof(struct atmsvc_msg), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 schedule();
Joe Perches0ec96e62010-01-26 11:40:17 +000060 *(struct atmsvc_msg *)skb_put(skb, sizeof(struct atmsvc_msg)) = *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 sigd_put_skb(skb);
62}
63
Joe Perches0ec96e62010-01-26 11:40:17 +000064static int sigd_send(struct atm_vcc *vcc, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct atmsvc_msg *msg;
67 struct atm_vcc *session_vcc;
68 struct sock *sk;
69
70 msg = (struct atmsvc_msg *) skb->data;
Reshetova, Elena14afee42017-06-30 13:08:00 +030071 WARN_ON(refcount_sub_and_test(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 vcc = *(struct atm_vcc **) &msg->vcc;
Joe Perches99824462010-01-26 11:40:00 +000073 pr_debug("%d (0x%lx)\n", (int)msg->type, (unsigned long)vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 sk = sk_atm(vcc);
75
76 switch (msg->type) {
Joe Perches0ec96e62010-01-26 11:40:17 +000077 case as_okay:
78 sk->sk_err = -msg->reply;
79 clear_bit(ATM_VF_WAITING, &vcc->flags);
80 if (!*vcc->local.sas_addr.prv && !*vcc->local.sas_addr.pub) {
81 vcc->local.sas_family = AF_ATMSVC;
82 memcpy(vcc->local.sas_addr.prv,
83 msg->local.sas_addr.prv, ATM_ESA_LEN);
84 memcpy(vcc->local.sas_addr.pub,
85 msg->local.sas_addr.pub, ATM_E164_LEN + 1);
86 }
87 session_vcc = vcc->session ? vcc->session : vcc;
88 if (session_vcc->vpi || session_vcc->vci)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
Joe Perches0ec96e62010-01-26 11:40:17 +000090 session_vcc->itf = msg->pvc.sap_addr.itf;
91 session_vcc->vpi = msg->pvc.sap_addr.vpi;
92 session_vcc->vci = msg->pvc.sap_addr.vci;
93 if (session_vcc->vpi || session_vcc->vci)
94 session_vcc->qos = msg->qos;
95 break;
96 case as_error:
97 clear_bit(ATM_VF_REGIS, &vcc->flags);
98 clear_bit(ATM_VF_READY, &vcc->flags);
99 sk->sk_err = -msg->reply;
100 clear_bit(ATM_VF_WAITING, &vcc->flags);
101 break;
102 case as_indicate:
103 vcc = *(struct atm_vcc **)&msg->listen_vcc;
104 sk = sk_atm(vcc);
105 pr_debug("as_indicate!!!\n");
106 lock_sock(sk);
107 if (sk_acceptq_is_full(sk)) {
108 sigd_enq(NULL, as_reject, vcc, NULL, NULL);
109 dev_kfree_skb(skb);
110 goto as_indicate_complete;
111 }
Eric Dumazet7976a112019-11-05 14:11:52 -0800112 sk_acceptq_added(sk);
Joe Perches0ec96e62010-01-26 11:40:17 +0000113 skb_queue_tail(&sk->sk_receive_queue, skb);
Eric Dumazetaa395142010-04-20 13:03:51 +0000114 pr_debug("waking sk_sleep(sk) 0x%p\n", sk_sleep(sk));
Joe Perches0ec96e62010-01-26 11:40:17 +0000115 sk->sk_state_change(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116as_indicate_complete:
Joe Perches0ec96e62010-01-26 11:40:17 +0000117 release_sock(sk);
118 return 0;
119 case as_close:
120 set_bit(ATM_VF_RELEASED, &vcc->flags);
121 vcc_release_async(vcc, msg->reply);
122 goto out;
123 case as_modify:
124 modify_qos(vcc, msg);
125 break;
126 case as_addparty:
127 case as_dropparty:
Stefan Hajnoczic6852932016-05-18 17:42:13 -0700128 sk->sk_err_soft = -msg->reply;
Joe Perches0ec96e62010-01-26 11:40:17 +0000129 /* < 0 failure, otherwise ep_ref */
130 clear_bit(ATM_VF_WAITING, &vcc->flags);
131 break;
132 default:
133 pr_alert("bad message type %d\n", (int)msg->type);
134 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 sk->sk_state_change(sk);
137out:
138 dev_kfree_skb(skb);
139 return 0;
140}
141
Joe Perches0ec96e62010-01-26 11:40:17 +0000142void sigd_enq2(struct atm_vcc *vcc, enum atmsvc_msg_type type,
143 struct atm_vcc *listen_vcc, const struct sockaddr_atmpvc *pvc,
144 const struct sockaddr_atmsvc *svc, const struct atm_qos *qos,
145 int reply)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct sk_buff *skb;
148 struct atmsvc_msg *msg;
Eric Dumazet95c96172012-04-15 05:58:06 +0000149 static unsigned int session = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Joe Perches99824462010-01-26 11:40:00 +0000151 pr_debug("%d (0x%p)\n", (int)type, vcc);
Joe Perches0ec96e62010-01-26 11:40:17 +0000152 while (!(skb = alloc_skb(sizeof(struct atmsvc_msg), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 schedule();
Johannes Bergb080db52017-06-16 14:29:19 +0200154 msg = skb_put_zero(skb, sizeof(struct atmsvc_msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 msg->type = type;
156 *(struct atm_vcc **) &msg->vcc = vcc;
157 *(struct atm_vcc **) &msg->listen_vcc = listen_vcc;
158 msg->reply = reply;
Joe Perches0ec96e62010-01-26 11:40:17 +0000159 if (qos)
160 msg->qos = *qos;
161 if (vcc)
162 msg->sap = vcc->sap;
163 if (svc)
164 msg->svc = *svc;
165 if (vcc)
166 msg->local = vcc->local;
167 if (pvc)
168 msg->pvc = *pvc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (vcc) {
170 if (type == as_connect && test_bit(ATM_VF_SESSION, &vcc->flags))
171 msg->session = ++session;
172 /* every new pmp connect gets the next session number */
173 }
174 sigd_put_skb(skb);
Joe Perches0ec96e62010-01-26 11:40:17 +0000175 if (vcc)
176 set_bit(ATM_VF_REGIS, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Joe Perches0ec96e62010-01-26 11:40:17 +0000179void sigd_enq(struct atm_vcc *vcc, enum atmsvc_msg_type type,
180 struct atm_vcc *listen_vcc, const struct sockaddr_atmpvc *pvc,
181 const struct sockaddr_atmsvc *svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Joe Perches0ec96e62010-01-26 11:40:17 +0000183 sigd_enq2(vcc, type, listen_vcc, pvc, svc, vcc ? &vcc->qos : NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* other ISP applications may use "reply" */
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static void purge_vcc(struct atm_vcc *vcc)
188{
189 if (sk_atm(vcc)->sk_family == PF_ATMSVC &&
Chas Williams9301e322005-09-28 16:35:01 -0700190 !test_bit(ATM_VF_META, &vcc->flags)) {
191 set_bit(ATM_VF_RELEASED, &vcc->flags);
192 clear_bit(ATM_VF_REGIS, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 vcc_release_async(vcc, -EUNATCH);
194 }
195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static void sigd_close(struct atm_vcc *vcc)
198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct sock *s;
200 int i;
201
Joe Perches99824462010-01-26 11:40:00 +0000202 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 sigd = NULL;
204 if (skb_peek(&sk_atm(vcc)->sk_receive_queue))
Joe Perches99824462010-01-26 11:40:00 +0000205 pr_err("closing with requests pending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 skb_queue_purge(&sk_atm(vcc)->sk_receive_queue);
207
208 read_lock(&vcc_sklist_lock);
Joe Perches0ec96e62010-01-26 11:40:17 +0000209 for (i = 0; i < VCC_HTABLE_SIZE; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct hlist_head *head = &vcc_hash[i];
211
Sasha Levinb67bfe02013-02-27 17:06:00 -0800212 sk_for_each(s, head) {
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700213 vcc = atm_sk(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Chas Williams9301e322005-09-28 16:35:01 -0700215 purge_vcc(vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217 }
218 read_unlock(&vcc_sklist_lock);
219}
220
Bhumika Goyal800bb472017-08-09 15:02:08 +0530221static const struct atmdev_ops sigd_dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .close = sigd_close,
223 .send = sigd_send
224};
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static struct atm_dev sigd_dev = {
227 .ops = &sigd_dev_ops,
228 .type = "sig",
229 .number = 999,
Milind Arun Choudhary4ef8d0a2007-04-26 01:37:44 -0700230 .lock = __SPIN_LOCK_UNLOCKED(sigd_dev.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233int sigd_attach(struct atm_vcc *vcc)
234{
Joe Perches0ec96e62010-01-26 11:40:17 +0000235 if (sigd)
236 return -EADDRINUSE;
Joe Perches99824462010-01-26 11:40:00 +0000237 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 sigd = vcc;
239 vcc->dev = &sigd_dev;
240 vcc_insert_socket(sk_atm(vcc));
Joe Perches0ec96e62010-01-26 11:40:17 +0000241 set_bit(ATM_VF_META, &vcc->flags);
242 set_bit(ATM_VF_READY, &vcc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244}