GNU Linux-libre 4.9.337-gnu1
[releases.git] / net / netrom / nr_timer.c
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 2 of the License, or
5  * (at your option) any later version.
6  *
7  * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
8  * Copyright (C) 2002 Ralf Baechle DO1GRB (ralf@gnu.org)
9  */
10 #include <linux/errno.h>
11 #include <linux/types.h>
12 #include <linux/socket.h>
13 #include <linux/in.h>
14 #include <linux/kernel.h>
15 #include <linux/jiffies.h>
16 #include <linux/timer.h>
17 #include <linux/string.h>
18 #include <linux/sockios.h>
19 #include <linux/net.h>
20 #include <net/ax25.h>
21 #include <linux/inet.h>
22 #include <linux/netdevice.h>
23 #include <linux/skbuff.h>
24 #include <net/sock.h>
25 #include <net/tcp_states.h>
26 #include <linux/uaccess.h>
27 #include <linux/fcntl.h>
28 #include <linux/mm.h>
29 #include <linux/interrupt.h>
30 #include <net/netrom.h>
31
32 static void nr_heartbeat_expiry(unsigned long);
33 static void nr_t1timer_expiry(unsigned long);
34 static void nr_t2timer_expiry(unsigned long);
35 static void nr_t4timer_expiry(unsigned long);
36 static void nr_idletimer_expiry(unsigned long);
37
38 void nr_init_timers(struct sock *sk)
39 {
40         struct nr_sock *nr = nr_sk(sk);
41
42         setup_timer(&nr->t1timer, nr_t1timer_expiry, (unsigned long)sk);
43         setup_timer(&nr->t2timer, nr_t2timer_expiry, (unsigned long)sk);
44         setup_timer(&nr->t4timer, nr_t4timer_expiry, (unsigned long)sk);
45         setup_timer(&nr->idletimer, nr_idletimer_expiry, (unsigned long)sk);
46
47         /* initialized by sock_init_data */
48         sk->sk_timer.data     = (unsigned long)sk;
49         sk->sk_timer.function = &nr_heartbeat_expiry;
50 }
51
52 void nr_start_t1timer(struct sock *sk)
53 {
54         struct nr_sock *nr = nr_sk(sk);
55
56         sk_reset_timer(sk, &nr->t1timer, jiffies + nr->t1);
57 }
58
59 void nr_start_t2timer(struct sock *sk)
60 {
61         struct nr_sock *nr = nr_sk(sk);
62
63         sk_reset_timer(sk, &nr->t2timer, jiffies + nr->t2);
64 }
65
66 void nr_start_t4timer(struct sock *sk)
67 {
68         struct nr_sock *nr = nr_sk(sk);
69
70         sk_reset_timer(sk, &nr->t4timer, jiffies + nr->t4);
71 }
72
73 void nr_start_idletimer(struct sock *sk)
74 {
75         struct nr_sock *nr = nr_sk(sk);
76
77         if (nr->idle > 0)
78                 sk_reset_timer(sk, &nr->idletimer, jiffies + nr->idle);
79 }
80
81 void nr_start_heartbeat(struct sock *sk)
82 {
83         sk_reset_timer(sk, &sk->sk_timer, jiffies + 5 * HZ);
84 }
85
86 void nr_stop_t1timer(struct sock *sk)
87 {
88         sk_stop_timer(sk, &nr_sk(sk)->t1timer);
89 }
90
91 void nr_stop_t2timer(struct sock *sk)
92 {
93         sk_stop_timer(sk, &nr_sk(sk)->t2timer);
94 }
95
96 void nr_stop_t4timer(struct sock *sk)
97 {
98         sk_stop_timer(sk, &nr_sk(sk)->t4timer);
99 }
100
101 void nr_stop_idletimer(struct sock *sk)
102 {
103         sk_stop_timer(sk, &nr_sk(sk)->idletimer);
104 }
105
106 void nr_stop_heartbeat(struct sock *sk)
107 {
108         sk_stop_timer(sk, &sk->sk_timer);
109 }
110
111 int nr_t1timer_running(struct sock *sk)
112 {
113         return timer_pending(&nr_sk(sk)->t1timer);
114 }
115
116 static void nr_heartbeat_expiry(unsigned long param)
117 {
118         struct sock *sk = (struct sock *)param;
119         struct nr_sock *nr = nr_sk(sk);
120
121         bh_lock_sock(sk);
122         switch (nr->state) {
123         case NR_STATE_0:
124                 /* Magic here: If we listen() and a new link dies before it
125                    is accepted() it isn't 'dead' so doesn't get removed. */
126                 if (sock_flag(sk, SOCK_DESTROY) ||
127                     (sk->sk_state == TCP_LISTEN && sock_flag(sk, SOCK_DEAD))) {
128                         bh_unlock_sock(sk);
129                         nr_destroy_socket(sk);
130                         goto out;
131                 }
132                 break;
133
134         case NR_STATE_3:
135                 /*
136                  * Check for the state of the receive buffer.
137                  */
138                 if (atomic_read(&sk->sk_rmem_alloc) < (sk->sk_rcvbuf / 2) &&
139                     (nr->condition & NR_COND_OWN_RX_BUSY)) {
140                         nr->condition &= ~NR_COND_OWN_RX_BUSY;
141                         nr->condition &= ~NR_COND_ACK_PENDING;
142                         nr->vl         = nr->vr;
143                         nr_write_internal(sk, NR_INFOACK);
144                         break;
145                 }
146                 break;
147         }
148
149         nr_start_heartbeat(sk);
150         bh_unlock_sock(sk);
151 out:
152         sock_put(sk);
153 }
154
155 static void nr_t2timer_expiry(unsigned long param)
156 {
157         struct sock *sk = (struct sock *)param;
158         struct nr_sock *nr = nr_sk(sk);
159
160         bh_lock_sock(sk);
161         if (nr->condition & NR_COND_ACK_PENDING) {
162                 nr->condition &= ~NR_COND_ACK_PENDING;
163                 nr_enquiry_response(sk);
164         }
165         bh_unlock_sock(sk);
166         sock_put(sk);
167 }
168
169 static void nr_t4timer_expiry(unsigned long param)
170 {
171         struct sock *sk = (struct sock *)param;
172
173         bh_lock_sock(sk);
174         nr_sk(sk)->condition &= ~NR_COND_PEER_RX_BUSY;
175         bh_unlock_sock(sk);
176         sock_put(sk);
177 }
178
179 static void nr_idletimer_expiry(unsigned long param)
180 {
181         struct sock *sk = (struct sock *)param;
182         struct nr_sock *nr = nr_sk(sk);
183
184         bh_lock_sock(sk);
185
186         nr_clear_queues(sk);
187
188         nr->n2count = 0;
189         nr_write_internal(sk, NR_DISCREQ);
190         nr->state = NR_STATE_2;
191
192         nr_start_t1timer(sk);
193         nr_stop_t2timer(sk);
194         nr_stop_t4timer(sk);
195
196         sk->sk_state     = TCP_CLOSE;
197         sk->sk_err       = 0;
198         sk->sk_shutdown |= SEND_SHUTDOWN;
199
200         if (!sock_flag(sk, SOCK_DEAD)) {
201                 sk->sk_state_change(sk);
202                 sock_set_flag(sk, SOCK_DEAD);
203         }
204         bh_unlock_sock(sk);
205         sock_put(sk);
206 }
207
208 static void nr_t1timer_expiry(unsigned long param)
209 {
210         struct sock *sk = (struct sock *)param;
211         struct nr_sock *nr = nr_sk(sk);
212
213         bh_lock_sock(sk);
214         switch (nr->state) {
215         case NR_STATE_1:
216                 if (nr->n2count == nr->n2) {
217                         nr_disconnect(sk, ETIMEDOUT);
218                         goto out;
219                 } else {
220                         nr->n2count++;
221                         nr_write_internal(sk, NR_CONNREQ);
222                 }
223                 break;
224
225         case NR_STATE_2:
226                 if (nr->n2count == nr->n2) {
227                         nr_disconnect(sk, ETIMEDOUT);
228                         goto out;
229                 } else {
230                         nr->n2count++;
231                         nr_write_internal(sk, NR_DISCREQ);
232                 }
233                 break;
234
235         case NR_STATE_3:
236                 if (nr->n2count == nr->n2) {
237                         nr_disconnect(sk, ETIMEDOUT);
238                         goto out;
239                 } else {
240                         nr->n2count++;
241                         nr_requeue_frames(sk);
242                 }
243                 break;
244         }
245
246         nr_start_t1timer(sk);
247 out:
248         bh_unlock_sock(sk);
249         sock_put(sk);
250 }