blob: 0230b272b7d1db9ef1864f4f6a57948593f61346 [file] [log] [blame]
Thomas Gleixneree5d8f42019-05-20 19:08:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * LAPB release 002
4 *
5 * This code REQUIRES 2.1.15 or higher/ NET3.038
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * History
8 * LAPB 001 Jonathan Naylor Started Coding
9 * LAPB 002 Jonathan Naylor New timer architecture.
10 */
11
Joe Perchesa508da62012-05-17 10:25:49 +000012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
15#include <linux/types.h>
16#include <linux/socket.h>
17#include <linux/in.h>
18#include <linux/kernel.h>
19#include <linux/jiffies.h>
20#include <linux/timer.h>
21#include <linux/string.h>
22#include <linux/sockios.h>
23#include <linux/net.h>
24#include <linux/inet.h>
25#include <linux/skbuff.h>
26#include <net/sock.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/fcntl.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31#include <net/lapb.h>
32
Kees Cook83a37b32017-10-16 17:28:46 -070033static void lapb_t1timer_expiry(struct timer_list *);
34static void lapb_t2timer_expiry(struct timer_list *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36void lapb_start_t1timer(struct lapb_cb *lapb)
37{
38 del_timer(&lapb->t1timer);
39
Kees Cook841b86f2017-10-23 09:40:42 +020040 lapb->t1timer.function = lapb_t1timer_expiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 lapb->t1timer.expires = jiffies + lapb->t1;
42
Xie Heb491e6a2021-01-25 20:09:39 -080043 lapb->t1timer_stop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 add_timer(&lapb->t1timer);
45}
46
47void lapb_start_t2timer(struct lapb_cb *lapb)
48{
49 del_timer(&lapb->t2timer);
50
Kees Cook841b86f2017-10-23 09:40:42 +020051 lapb->t2timer.function = lapb_t2timer_expiry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 lapb->t2timer.expires = jiffies + lapb->t2;
53
Xie Heb491e6a2021-01-25 20:09:39 -080054 lapb->t2timer_stop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 add_timer(&lapb->t2timer);
56}
57
58void lapb_stop_t1timer(struct lapb_cb *lapb)
59{
Xie Heb491e6a2021-01-25 20:09:39 -080060 lapb->t1timer_stop = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 del_timer(&lapb->t1timer);
62}
63
64void lapb_stop_t2timer(struct lapb_cb *lapb)
65{
Xie Heb491e6a2021-01-25 20:09:39 -080066 lapb->t2timer_stop = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 del_timer(&lapb->t2timer);
68}
69
70int lapb_t1timer_running(struct lapb_cb *lapb)
71{
72 return timer_pending(&lapb->t1timer);
73}
74
Kees Cook83a37b32017-10-16 17:28:46 -070075static void lapb_t2timer_expiry(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Kees Cook83a37b32017-10-16 17:28:46 -070077 struct lapb_cb *lapb = from_timer(lapb, t, t2timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Xie Heb491e6a2021-01-25 20:09:39 -080079 spin_lock_bh(&lapb->lock);
80 if (timer_pending(&lapb->t2timer)) /* A new timer has been set up */
81 goto out;
82 if (lapb->t2timer_stop) /* The timer has been stopped */
83 goto out;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (lapb->condition & LAPB_ACK_PENDING_CONDITION) {
86 lapb->condition &= ~LAPB_ACK_PENDING_CONDITION;
87 lapb_timeout_response(lapb);
88 }
Xie Heb491e6a2021-01-25 20:09:39 -080089
90out:
91 spin_unlock_bh(&lapb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Kees Cook83a37b32017-10-16 17:28:46 -070094static void lapb_t1timer_expiry(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Kees Cook83a37b32017-10-16 17:28:46 -070096 struct lapb_cb *lapb = from_timer(lapb, t, t1timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Xie Heb491e6a2021-01-25 20:09:39 -080098 spin_lock_bh(&lapb->lock);
99 if (timer_pending(&lapb->t1timer)) /* A new timer has been set up */
100 goto out;
101 if (lapb->t1timer_stop) /* The timer has been stopped */
102 goto out;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 switch (lapb->state) {
105
106 /*
Martin Schiller62480b92020-11-26 07:35:55 +0100107 * If we are a DCE, send DM up to N2 times, then switch to
108 * STATE_1 and send SABM(E).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
110 case LAPB_STATE_0:
Martin Schiller62480b92020-11-26 07:35:55 +0100111 if (lapb->mode & LAPB_DCE &&
112 lapb->n2count != lapb->n2) {
113 lapb->n2count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 lapb_send_control(lapb, LAPB_DM, LAPB_POLLOFF, LAPB_RESPONSE);
Martin Schiller62480b92020-11-26 07:35:55 +0100115 } else {
116 lapb->state = LAPB_STATE_1;
117 lapb_establish_data_link(lapb);
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120
121 /*
122 * Awaiting connection state, send SABM(E), up to N2 times.
123 */
YOSHIFUJI Hideaki56d6c3d2007-02-09 23:24:59 +0900124 case LAPB_STATE_1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (lapb->n2count == lapb->n2) {
126 lapb_clear_queues(lapb);
127 lapb->state = LAPB_STATE_0;
128 lapb_disconnect_indication(lapb, LAPB_TIMEDOUT);
Joe Perchesa508da62012-05-17 10:25:49 +0000129 lapb_dbg(0, "(%p) S1 -> S0\n", lapb->dev);
Xie Heb491e6a2021-01-25 20:09:39 -0800130 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } else {
132 lapb->n2count++;
133 if (lapb->mode & LAPB_EXTENDED) {
Joe Perchesa508da62012-05-17 10:25:49 +0000134 lapb_dbg(1, "(%p) S1 TX SABME(1)\n",
135 lapb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 lapb_send_control(lapb, LAPB_SABME, LAPB_POLLON, LAPB_COMMAND);
137 } else {
Joe Perchesa508da62012-05-17 10:25:49 +0000138 lapb_dbg(1, "(%p) S1 TX SABM(1)\n",
139 lapb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 lapb_send_control(lapb, LAPB_SABM, LAPB_POLLON, LAPB_COMMAND);
141 }
142 }
143 break;
144
145 /*
146 * Awaiting disconnection state, send DISC, up to N2 times.
147 */
148 case LAPB_STATE_2:
149 if (lapb->n2count == lapb->n2) {
150 lapb_clear_queues(lapb);
151 lapb->state = LAPB_STATE_0;
152 lapb_disconnect_confirmation(lapb, LAPB_TIMEDOUT);
Joe Perchesa508da62012-05-17 10:25:49 +0000153 lapb_dbg(0, "(%p) S2 -> S0\n", lapb->dev);
Xie Heb491e6a2021-01-25 20:09:39 -0800154 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 } else {
156 lapb->n2count++;
Joe Perchesa508da62012-05-17 10:25:49 +0000157 lapb_dbg(1, "(%p) S2 TX DISC(1)\n", lapb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 lapb_send_control(lapb, LAPB_DISC, LAPB_POLLON, LAPB_COMMAND);
159 }
160 break;
161
162 /*
163 * Data transfer state, restransmit I frames, up to N2 times.
164 */
165 case LAPB_STATE_3:
166 if (lapb->n2count == lapb->n2) {
167 lapb_clear_queues(lapb);
168 lapb->state = LAPB_STATE_0;
169 lapb_stop_t2timer(lapb);
170 lapb_disconnect_indication(lapb, LAPB_TIMEDOUT);
Joe Perchesa508da62012-05-17 10:25:49 +0000171 lapb_dbg(0, "(%p) S3 -> S0\n", lapb->dev);
Xie Heb491e6a2021-01-25 20:09:39 -0800172 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 } else {
174 lapb->n2count++;
175 lapb_requeue_frames(lapb);
josselin.costanzi@mobile-devices.fra224bd32013-09-18 12:00:35 +0200176 lapb_kick(lapb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178 break;
179
180 /*
181 * Frame reject state, restransmit FRMR frames, up to N2 times.
182 */
183 case LAPB_STATE_4:
184 if (lapb->n2count == lapb->n2) {
185 lapb_clear_queues(lapb);
186 lapb->state = LAPB_STATE_0;
187 lapb_disconnect_indication(lapb, LAPB_TIMEDOUT);
Joe Perchesa508da62012-05-17 10:25:49 +0000188 lapb_dbg(0, "(%p) S4 -> S0\n", lapb->dev);
Xie Heb491e6a2021-01-25 20:09:39 -0800189 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 } else {
191 lapb->n2count++;
192 lapb_transmit_frmr(lapb);
193 }
194 break;
195 }
196
197 lapb_start_t1timer(lapb);
Xie Heb491e6a2021-01-25 20:09:39 -0800198
199out:
200 spin_unlock_bh(&lapb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}