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.
7 * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
8 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
9 * Copyright (C) Tomi Manninen OH2BNS (oh2bns@sral.fi)
10 * Copyright (C) Darryl Miles G7LED (dlm@g7led.demon.co.uk)
11 * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
12 * Copyright (C) Frederic Rible F1OAT (frible@teaser.fr)
13 * Copyright (C) 2002 Ralf Baechle DO1GRB (ralf@gnu.org)
15 #include <linux/errno.h>
16 #include <linux/types.h>
17 #include <linux/socket.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/jiffies.h>
22 #include <linux/timer.h>
23 #include <linux/string.h>
24 #include <linux/sockios.h>
25 #include <linux/net.h>
27 #include <linux/inet.h>
28 #include <linux/netdevice.h>
29 #include <linux/skbuff.h>
31 #include <asm/uaccess.h>
32 #include <linux/fcntl.h>
34 #include <linux/interrupt.h>
36 static void ax25_heartbeat_expiry(unsigned long);
37 static void ax25_t1timer_expiry(unsigned long);
38 static void ax25_t2timer_expiry(unsigned long);
39 static void ax25_t3timer_expiry(unsigned long);
40 static void ax25_idletimer_expiry(unsigned long);
42 void ax25_setup_timers(ax25_cb
*ax25
)
44 setup_timer(&ax25
->timer
, ax25_heartbeat_expiry
, (unsigned long)ax25
);
45 setup_timer(&ax25
->t1timer
, ax25_t1timer_expiry
, (unsigned long)ax25
);
46 setup_timer(&ax25
->t2timer
, ax25_t2timer_expiry
, (unsigned long)ax25
);
47 setup_timer(&ax25
->t3timer
, ax25_t3timer_expiry
, (unsigned long)ax25
);
48 setup_timer(&ax25
->idletimer
, ax25_idletimer_expiry
,
52 void ax25_start_heartbeat(ax25_cb
*ax25
)
54 mod_timer(&ax25
->timer
, jiffies
+ 5 * HZ
);
57 void ax25_start_t1timer(ax25_cb
*ax25
)
59 mod_timer(&ax25
->t1timer
, jiffies
+ ax25
->t1
);
62 void ax25_start_t2timer(ax25_cb
*ax25
)
64 mod_timer(&ax25
->t2timer
, jiffies
+ ax25
->t2
);
67 void ax25_start_t3timer(ax25_cb
*ax25
)
70 mod_timer(&ax25
->t3timer
, jiffies
+ ax25
->t3
);
72 del_timer(&ax25
->t3timer
);
75 void ax25_start_idletimer(ax25_cb
*ax25
)
78 mod_timer(&ax25
->idletimer
, jiffies
+ ax25
->idle
);
80 del_timer(&ax25
->idletimer
);
83 void ax25_stop_heartbeat(ax25_cb
*ax25
)
85 del_timer(&ax25
->timer
);
88 void ax25_stop_t1timer(ax25_cb
*ax25
)
90 del_timer(&ax25
->t1timer
);
93 void ax25_stop_t2timer(ax25_cb
*ax25
)
95 del_timer(&ax25
->t2timer
);
98 void ax25_stop_t3timer(ax25_cb
*ax25
)
100 del_timer(&ax25
->t3timer
);
103 void ax25_stop_idletimer(ax25_cb
*ax25
)
105 del_timer(&ax25
->idletimer
);
108 int ax25_t1timer_running(ax25_cb
*ax25
)
110 return timer_pending(&ax25
->t1timer
);
113 unsigned long ax25_display_timer(struct timer_list
*timer
)
115 if (!timer_pending(timer
))
118 return timer
->expires
- jiffies
;
121 EXPORT_SYMBOL(ax25_display_timer
);
123 static void ax25_heartbeat_expiry(unsigned long param
)
125 int proto
= AX25_PROTO_STD_SIMPLEX
;
126 ax25_cb
*ax25
= (ax25_cb
*)param
;
129 proto
= ax25
->ax25_dev
->values
[AX25_VALUES_PROTOCOL
];
132 case AX25_PROTO_STD_SIMPLEX
:
133 case AX25_PROTO_STD_DUPLEX
:
134 ax25_std_heartbeat_expiry(ax25
);
137 #ifdef CONFIG_AX25_DAMA_SLAVE
138 case AX25_PROTO_DAMA_SLAVE
:
139 if (ax25
->ax25_dev
->dama
.slave
)
140 ax25_ds_heartbeat_expiry(ax25
);
142 ax25_std_heartbeat_expiry(ax25
);
148 static void ax25_t1timer_expiry(unsigned long param
)
150 ax25_cb
*ax25
= (ax25_cb
*)param
;
152 switch (ax25
->ax25_dev
->values
[AX25_VALUES_PROTOCOL
]) {
153 case AX25_PROTO_STD_SIMPLEX
:
154 case AX25_PROTO_STD_DUPLEX
:
155 ax25_std_t1timer_expiry(ax25
);
158 #ifdef CONFIG_AX25_DAMA_SLAVE
159 case AX25_PROTO_DAMA_SLAVE
:
160 if (!ax25
->ax25_dev
->dama
.slave
)
161 ax25_std_t1timer_expiry(ax25
);
167 static void ax25_t2timer_expiry(unsigned long param
)
169 ax25_cb
*ax25
= (ax25_cb
*)param
;
171 switch (ax25
->ax25_dev
->values
[AX25_VALUES_PROTOCOL
]) {
172 case AX25_PROTO_STD_SIMPLEX
:
173 case AX25_PROTO_STD_DUPLEX
:
174 ax25_std_t2timer_expiry(ax25
);
177 #ifdef CONFIG_AX25_DAMA_SLAVE
178 case AX25_PROTO_DAMA_SLAVE
:
179 if (!ax25
->ax25_dev
->dama
.slave
)
180 ax25_std_t2timer_expiry(ax25
);
186 static void ax25_t3timer_expiry(unsigned long param
)
188 ax25_cb
*ax25
= (ax25_cb
*)param
;
190 switch (ax25
->ax25_dev
->values
[AX25_VALUES_PROTOCOL
]) {
191 case AX25_PROTO_STD_SIMPLEX
:
192 case AX25_PROTO_STD_DUPLEX
:
193 ax25_std_t3timer_expiry(ax25
);
196 #ifdef CONFIG_AX25_DAMA_SLAVE
197 case AX25_PROTO_DAMA_SLAVE
:
198 if (ax25
->ax25_dev
->dama
.slave
)
199 ax25_ds_t3timer_expiry(ax25
);
201 ax25_std_t3timer_expiry(ax25
);
207 static void ax25_idletimer_expiry(unsigned long param
)
209 ax25_cb
*ax25
= (ax25_cb
*)param
;
211 switch (ax25
->ax25_dev
->values
[AX25_VALUES_PROTOCOL
]) {
212 case AX25_PROTO_STD_SIMPLEX
:
213 case AX25_PROTO_STD_DUPLEX
:
214 ax25_std_idletimer_expiry(ax25
);
217 #ifdef CONFIG_AX25_DAMA_SLAVE
218 case AX25_PROTO_DAMA_SLAVE
:
219 if (ax25
->ax25_dev
->dama
.slave
)
220 ax25_ds_idletimer_expiry(ax25
);
222 ax25_std_idletimer_expiry(ax25
);