1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * X.25 Packet Layer release 002
5 * This is ALPHA test software. This code may break your machine,
6 * randomly fail to work with new releases, misbehave and/or generally
7 * screw up. It might even work.
9 * This code REQUIRES 2.1.15 or higher
12 * X.25 001 Jonathan Naylor Started coding.
13 * X.25 002 Jonathan Naylor New timer architecture.
14 * Centralised disconnection processing.
17 #include <linux/errno.h>
18 #include <linux/jiffies.h>
19 #include <linux/timer.h>
21 #include <net/tcp_states.h>
24 static void x25_heartbeat_expiry(struct timer_list
*t
);
25 static void x25_timer_expiry(struct timer_list
*t
);
27 void x25_init_timers(struct sock
*sk
)
29 struct x25_sock
*x25
= x25_sk(sk
);
31 timer_setup(&x25
->timer
, x25_timer_expiry
, 0);
33 /* initialized by sock_init_data */
34 sk
->sk_timer
.function
= x25_heartbeat_expiry
;
37 void x25_start_heartbeat(struct sock
*sk
)
39 mod_timer(&sk
->sk_timer
, jiffies
+ 5 * HZ
);
42 void x25_stop_heartbeat(struct sock
*sk
)
44 del_timer(&sk
->sk_timer
);
47 void x25_start_t2timer(struct sock
*sk
)
49 struct x25_sock
*x25
= x25_sk(sk
);
51 mod_timer(&x25
->timer
, jiffies
+ x25
->t2
);
54 void x25_start_t21timer(struct sock
*sk
)
56 struct x25_sock
*x25
= x25_sk(sk
);
58 mod_timer(&x25
->timer
, jiffies
+ x25
->t21
);
61 void x25_start_t22timer(struct sock
*sk
)
63 struct x25_sock
*x25
= x25_sk(sk
);
65 mod_timer(&x25
->timer
, jiffies
+ x25
->t22
);
68 void x25_start_t23timer(struct sock
*sk
)
70 struct x25_sock
*x25
= x25_sk(sk
);
72 mod_timer(&x25
->timer
, jiffies
+ x25
->t23
);
75 void x25_stop_timer(struct sock
*sk
)
77 del_timer(&x25_sk(sk
)->timer
);
80 unsigned long x25_display_timer(struct sock
*sk
)
82 struct x25_sock
*x25
= x25_sk(sk
);
84 if (!timer_pending(&x25
->timer
))
87 return x25
->timer
.expires
- jiffies
;
90 static void x25_heartbeat_expiry(struct timer_list
*t
)
92 struct sock
*sk
= from_timer(sk
, t
, sk_timer
);
95 if (sock_owned_by_user(sk
)) /* can currently only occur in state 3 */
96 goto restart_heartbeat
;
98 switch (x25_sk(sk
)->state
) {
102 * Magic here: If we listen() and a new link dies
103 * before it is accepted() it isn't 'dead' so doesn't
106 if (sock_flag(sk
, SOCK_DESTROY
) ||
107 (sk
->sk_state
== TCP_LISTEN
&&
108 sock_flag(sk
, SOCK_DEAD
))) {
110 x25_destroy_socket_from_timer(sk
);
117 * Check for the state of the receive buffer.
123 x25_start_heartbeat(sk
);
128 * Timer has expired, it may have been T2, T21, T22, or T23. We can tell
129 * by the state machine state.
131 static inline void x25_do_timer_expiry(struct sock
* sk
)
133 struct x25_sock
*x25
= x25_sk(sk
);
135 switch (x25
->state
) {
137 case X25_STATE_3
: /* T2 */
138 if (x25
->condition
& X25_COND_ACK_PENDING
) {
139 x25
->condition
&= ~X25_COND_ACK_PENDING
;
140 x25_enquiry_response(sk
);
144 case X25_STATE_1
: /* T21 */
145 case X25_STATE_4
: /* T22 */
146 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
147 x25
->state
= X25_STATE_2
;
148 x25_start_t23timer(sk
);
151 case X25_STATE_2
: /* T23 */
152 x25_disconnect(sk
, ETIMEDOUT
, 0, 0);
157 static void x25_timer_expiry(struct timer_list
*t
)
159 struct x25_sock
*x25
= from_timer(x25
, t
, timer
);
160 struct sock
*sk
= &x25
->sk
;
163 if (sock_owned_by_user(sk
)) { /* can currently only occur in state 3 */
164 if (x25_sk(sk
)->state
== X25_STATE_3
)
165 x25_start_t2timer(sk
);
167 x25_do_timer_expiry(sk
);