Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Declarations of AX.25 type objects. |
| 4 | * |
| 5 | * Alan Cox (GW4PTS) 10/11/93 |
| 6 | */ |
| 7 | #ifndef _AX25_H |
| 8 | #define _AX25_H |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/ax25.h> |
| 11 | #include <linux/spinlock.h> |
| 12 | #include <linux/timer.h> |
| 13 | #include <linux/list.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Reshetova, Elena | 07f2282 | 2017-07-04 15:53:29 +0300 | [diff] [blame] | 15 | #include <linux/refcount.h> |
Eric W. Biederman | 3b6a94b | 2015-03-02 00:05:28 -0600 | [diff] [blame] | 16 | #include <net/neighbour.h> |
David Miller | 3200392 | 2015-06-25 06:19:07 -0700 | [diff] [blame] | 17 | #include <net/sock.h> |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 18 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | #define AX25_T1CLAMPLO 1 |
| 21 | #define AX25_T1CLAMPHI (30 * HZ) |
| 22 | |
| 23 | #define AX25_BPQ_HEADER_LEN 16 |
| 24 | #define AX25_KISS_HEADER_LEN 1 |
| 25 | |
| 26 | #define AX25_HEADER_LEN 17 |
| 27 | #define AX25_ADDR_LEN 7 |
| 28 | #define AX25_DIGI_HEADER_LEN (AX25_MAX_DIGIS * AX25_ADDR_LEN) |
| 29 | #define AX25_MAX_HEADER_LEN (AX25_HEADER_LEN + AX25_DIGI_HEADER_LEN) |
| 30 | |
| 31 | /* AX.25 Protocol IDs */ |
| 32 | #define AX25_P_ROSE 0x01 |
Ralf Baechle | 3bf0ae7 | 2005-09-12 14:22:30 -0700 | [diff] [blame] | 33 | #define AX25_P_VJCOMP 0x06 /* Compressed TCP/IP packet */ |
| 34 | /* Van Jacobsen (RFC 1144) */ |
| 35 | #define AX25_P_VJUNCOMP 0x07 /* Uncompressed TCP/IP packet */ |
| 36 | /* Van Jacobsen (RFC 1144) */ |
| 37 | #define AX25_P_SEGMENT 0x08 /* Segmentation fragment */ |
| 38 | #define AX25_P_TEXNET 0xc3 /* TEXTNET datagram protocol */ |
| 39 | #define AX25_P_LQ 0xc4 /* Link Quality Protocol */ |
| 40 | #define AX25_P_ATALK 0xca /* Appletalk */ |
| 41 | #define AX25_P_ATALK_ARP 0xcb /* Appletalk ARP */ |
| 42 | #define AX25_P_IP 0xcc /* ARPA Internet Protocol */ |
Joe Perches | f4ab2f72 | 2007-12-20 13:56:32 -0800 | [diff] [blame] | 43 | #define AX25_P_ARP 0xcd /* ARPA Address Resolution */ |
Ralf Baechle | 3bf0ae7 | 2005-09-12 14:22:30 -0700 | [diff] [blame] | 44 | #define AX25_P_FLEXNET 0xce /* FlexNet */ |
| 45 | #define AX25_P_NETROM 0xcf /* NET/ROM */ |
| 46 | #define AX25_P_TEXT 0xF0 /* No layer 3 protocol impl. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* AX.25 Segment control values */ |
| 49 | #define AX25_SEG_REM 0x7F |
| 50 | #define AX25_SEG_FIRST 0x80 |
| 51 | |
| 52 | #define AX25_CBIT 0x80 /* Command/Response bit */ |
| 53 | #define AX25_EBIT 0x01 /* HDLC Address Extension bit */ |
| 54 | #define AX25_HBIT 0x80 /* Has been repeated bit */ |
| 55 | |
| 56 | #define AX25_SSSID_SPARE 0x60 /* Unused bits in SSID for standard AX.25 */ |
| 57 | #define AX25_ESSID_SPARE 0x20 /* Unused bits in SSID for extended AX.25 */ |
| 58 | #define AX25_DAMA_FLAG 0x20 /* Well, it is *NOT* unused! (dl1bke 951121 */ |
| 59 | |
| 60 | #define AX25_COND_ACK_PENDING 0x01 |
| 61 | #define AX25_COND_REJECT 0x02 |
| 62 | #define AX25_COND_PEER_RX_BUSY 0x04 |
| 63 | #define AX25_COND_OWN_RX_BUSY 0x08 |
| 64 | #define AX25_COND_DAMA_MODE 0x10 |
| 65 | |
| 66 | #ifndef _LINUX_NETDEVICE_H |
| 67 | #include <linux/netdevice.h> |
| 68 | #endif |
| 69 | |
| 70 | /* Upper sub-layer (LAPB) definitions */ |
| 71 | |
| 72 | /* Control field templates */ |
| 73 | #define AX25_I 0x00 /* Information frames */ |
| 74 | #define AX25_S 0x01 /* Supervisory frames */ |
| 75 | #define AX25_RR 0x01 /* Receiver ready */ |
| 76 | #define AX25_RNR 0x05 /* Receiver not ready */ |
| 77 | #define AX25_REJ 0x09 /* Reject */ |
| 78 | #define AX25_U 0x03 /* Unnumbered frames */ |
| 79 | #define AX25_SABM 0x2f /* Set Asynchronous Balanced Mode */ |
| 80 | #define AX25_SABME 0x6f /* Set Asynchronous Balanced Mode Extended */ |
| 81 | #define AX25_DISC 0x43 /* Disconnect */ |
| 82 | #define AX25_DM 0x0f /* Disconnected mode */ |
| 83 | #define AX25_UA 0x63 /* Unnumbered acknowledge */ |
| 84 | #define AX25_FRMR 0x87 /* Frame reject */ |
| 85 | #define AX25_UI 0x03 /* Unnumbered information */ |
| 86 | #define AX25_XID 0xaf /* Exchange information */ |
| 87 | #define AX25_TEST 0xe3 /* Test */ |
| 88 | |
| 89 | #define AX25_PF 0x10 /* Poll/final bit for standard AX.25 */ |
| 90 | #define AX25_EPF 0x01 /* Poll/final bit for extended AX.25 */ |
| 91 | |
| 92 | #define AX25_ILLEGAL 0x100 /* Impossible to be a real frame type */ |
| 93 | |
| 94 | #define AX25_POLLOFF 0 |
| 95 | #define AX25_POLLON 1 |
| 96 | |
| 97 | /* AX25 L2 C-bit */ |
| 98 | #define AX25_COMMAND 1 |
| 99 | #define AX25_RESPONSE 2 |
| 100 | |
| 101 | /* Define Link State constants. */ |
| 102 | |
| 103 | enum { |
Ralf Baechle | b01ef8f | 2005-09-12 14:24:24 -0700 | [diff] [blame] | 104 | AX25_STATE_0, /* Listening */ |
| 105 | AX25_STATE_1, /* SABM sent */ |
| 106 | AX25_STATE_2, /* DISC sent */ |
| 107 | AX25_STATE_3, /* Established */ |
| 108 | AX25_STATE_4 /* Recovery */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | #define AX25_MODULUS 8 /* Standard AX.25 modulus */ |
| 112 | #define AX25_EMODULUS 128 /* Extended AX.25 modulus */ |
| 113 | |
| 114 | enum { |
| 115 | AX25_PROTO_STD_SIMPLEX, |
| 116 | AX25_PROTO_STD_DUPLEX, |
Ralf Baechle DL5RB | c7c694d | 2006-03-19 13:20:06 -0800 | [diff] [blame] | 117 | #ifdef CONFIG_AX25_DAMA_SLAVE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | AX25_PROTO_DAMA_SLAVE, |
Ralf Baechle DL5RB | c7c694d | 2006-03-19 13:20:06 -0800 | [diff] [blame] | 119 | #ifdef CONFIG_AX25_DAMA_MASTER |
| 120 | AX25_PROTO_DAMA_MASTER, |
| 121 | #define AX25_PROTO_MAX AX25_PROTO_DAMA_MASTER |
| 122 | #endif |
| 123 | #endif |
| 124 | __AX25_PROTO_MAX, |
| 125 | AX25_PROTO_MAX = __AX25_PROTO_MAX -1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | }; |
| 127 | |
| 128 | enum { |
| 129 | AX25_VALUES_IPDEFMODE, /* 0=DG 1=VC */ |
| 130 | AX25_VALUES_AXDEFMODE, /* 0=Normal 1=Extended Seq Nos */ |
| 131 | AX25_VALUES_BACKOFF, /* 0=None 1=Linear 2=Exponential */ |
| 132 | AX25_VALUES_CONMODE, /* Allow connected modes - 0=No 1=no "PID text" 2=all PIDs */ |
| 133 | AX25_VALUES_WINDOW, /* Default window size for standard AX.25 */ |
| 134 | AX25_VALUES_EWINDOW, /* Default window size for extended AX.25 */ |
| 135 | AX25_VALUES_T1, /* Default T1 timeout value */ |
| 136 | AX25_VALUES_T2, /* Default T2 timeout value */ |
| 137 | AX25_VALUES_T3, /* Default T3 timeout value */ |
| 138 | AX25_VALUES_IDLE, /* Connected mode idle timer */ |
| 139 | AX25_VALUES_N2, /* Default N2 value */ |
| 140 | AX25_VALUES_PACLEN, /* AX.25 MTU */ |
| 141 | AX25_VALUES_PROTOCOL, /* Std AX.25, DAMA Slave, DAMA Master */ |
| 142 | AX25_VALUES_DS_TIMEOUT, /* DAMA Slave timeout */ |
| 143 | AX25_MAX_VALUES /* THIS MUST REMAIN THE LAST ENTRY OF THIS LIST */ |
| 144 | }; |
| 145 | |
| 146 | #define AX25_DEF_IPDEFMODE 0 /* Datagram */ |
| 147 | #define AX25_DEF_AXDEFMODE 0 /* Normal */ |
| 148 | #define AX25_DEF_BACKOFF 1 /* Linear backoff */ |
| 149 | #define AX25_DEF_CONMODE 2 /* Connected mode allowed */ |
| 150 | #define AX25_DEF_WINDOW 2 /* Window=2 */ |
| 151 | #define AX25_DEF_EWINDOW 32 /* Module-128 Window=32 */ |
Ralf Baechle | e1fdb5b | 2006-05-03 23:27:16 -0700 | [diff] [blame] | 152 | #define AX25_DEF_T1 10000 /* T1=10s */ |
| 153 | #define AX25_DEF_T2 3000 /* T2=3s */ |
| 154 | #define AX25_DEF_T3 300000 /* T3=300s */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | #define AX25_DEF_N2 10 /* N2=10 */ |
Ralf Baechle | e1fdb5b | 2006-05-03 23:27:16 -0700 | [diff] [blame] | 156 | #define AX25_DEF_IDLE 0 /* Idle=None */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | #define AX25_DEF_PACLEN 256 /* Paclen=256 */ |
| 158 | #define AX25_DEF_PROTOCOL AX25_PROTO_STD_SIMPLEX /* Standard AX.25 */ |
Ralf Baechle | e1fdb5b | 2006-05-03 23:27:16 -0700 | [diff] [blame] | 159 | #define AX25_DEF_DS_TIMEOUT 180000 /* DAMA timeout 3 minutes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | typedef struct ax25_uid_assoc { |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 162 | struct hlist_node uid_node; |
Reshetova, Elena | 07f2282 | 2017-07-04 15:53:29 +0300 | [diff] [blame] | 163 | refcount_t refcount; |
Eric W. Biederman | d13fda8 | 2012-05-24 12:55:00 -0600 | [diff] [blame] | 164 | kuid_t uid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | ax25_address call; |
| 166 | } ax25_uid_assoc; |
| 167 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 168 | #define ax25_uid_for_each(__ax25, list) \ |
| 169 | hlist_for_each_entry(__ax25, list, uid_node) |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 170 | |
| 171 | #define ax25_uid_hold(ax25) \ |
Reshetova, Elena | 07f2282 | 2017-07-04 15:53:29 +0300 | [diff] [blame] | 172 | refcount_inc(&((ax25)->refcount)) |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 173 | |
| 174 | static inline void ax25_uid_put(ax25_uid_assoc *assoc) |
| 175 | { |
Reshetova, Elena | 07f2282 | 2017-07-04 15:53:29 +0300 | [diff] [blame] | 176 | if (refcount_dec_and_test(&assoc->refcount)) { |
Ralf Baechle | 01d7dd0 | 2005-08-23 10:11:45 -0700 | [diff] [blame] | 177 | kfree(assoc); |
| 178 | } |
| 179 | } |
| 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | typedef struct { |
| 182 | ax25_address calls[AX25_MAX_DIGIS]; |
| 183 | unsigned char repeated[AX25_MAX_DIGIS]; |
| 184 | unsigned char ndigi; |
Ralf Baechle | 4595f25 | 2005-10-14 21:29:56 +0100 | [diff] [blame] | 185 | signed char lastrepeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } ax25_digi; |
| 187 | |
| 188 | typedef struct ax25_route { |
| 189 | struct ax25_route *next; |
Reshetova, Elena | 39f25d4 | 2017-07-04 15:53:30 +0300 | [diff] [blame] | 190 | refcount_t refcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | ax25_address callsign; |
| 192 | struct net_device *dev; |
| 193 | ax25_digi *digipeat; |
| 194 | char ip_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } ax25_route; |
| 196 | |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 197 | static inline void ax25_hold_route(ax25_route *ax25_rt) |
| 198 | { |
Reshetova, Elena | 39f25d4 | 2017-07-04 15:53:30 +0300 | [diff] [blame] | 199 | refcount_inc(&ax25_rt->refcount); |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 202 | void __ax25_put_route(ax25_route *ax25_rt); |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 203 | |
Eric Dumazet | 63530ab | 2019-01-22 10:40:59 -0800 | [diff] [blame] | 204 | extern rwlock_t ax25_route_lock; |
| 205 | |
| 206 | static inline void ax25_route_lock_use(void) |
| 207 | { |
| 208 | read_lock(&ax25_route_lock); |
| 209 | } |
| 210 | |
| 211 | static inline void ax25_route_lock_unuse(void) |
| 212 | { |
| 213 | read_unlock(&ax25_route_lock); |
| 214 | } |
| 215 | |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 216 | static inline void ax25_put_route(ax25_route *ax25_rt) |
| 217 | { |
Reshetova, Elena | 39f25d4 | 2017-07-04 15:53:30 +0300 | [diff] [blame] | 218 | if (refcount_dec_and_test(&ax25_rt->refcount)) |
Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 219 | __ax25_put_route(ax25_rt); |
| 220 | } |
| 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | typedef struct { |
| 223 | char slave; /* slave_mode? */ |
| 224 | struct timer_list slave_timer; /* timeout timer */ |
| 225 | unsigned short slave_timeout; /* when? */ |
| 226 | } ax25_dama_info; |
| 227 | |
| 228 | struct ctl_table; |
| 229 | |
| 230 | typedef struct ax25_dev { |
| 231 | struct ax25_dev *next; |
Eric Dumazet | 66ce07f | 2021-12-06 17:30:33 -0800 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | struct net_device *dev; |
Eric Dumazet | 66ce07f | 2021-12-06 17:30:33 -0800 | [diff] [blame] | 234 | netdevice_tracker dev_tracker; |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | struct net_device *forward; |
Eric W. Biederman | 0ca7a4c | 2012-04-19 13:34:18 +0000 | [diff] [blame] | 237 | struct ctl_table_header *sysheader; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | int values[AX25_MAX_VALUES]; |
| 239 | #if defined(CONFIG_AX25_DAMA_SLAVE) || defined(CONFIG_AX25_DAMA_MASTER) |
| 240 | ax25_dama_info dama; |
| 241 | #endif |
| 242 | } ax25_dev; |
| 243 | |
| 244 | typedef struct ax25_cb { |
| 245 | struct hlist_node ax25_node; |
| 246 | ax25_address source_addr, dest_addr; |
| 247 | ax25_digi *digipeat; |
| 248 | ax25_dev *ax25_dev; |
| 249 | unsigned char iamdigi; |
| 250 | unsigned char state, modulus, pidincl; |
| 251 | unsigned short vs, vr, va; |
| 252 | unsigned char condition, backoff; |
| 253 | unsigned char n2, n2count; |
| 254 | struct timer_list t1timer, t2timer, t3timer, idletimer; |
| 255 | unsigned long t1, t2, t3, idle, rtt; |
| 256 | unsigned short paclen, fragno, fraglen; |
| 257 | struct sk_buff_head write_queue; |
| 258 | struct sk_buff_head reseq_queue; |
| 259 | struct sk_buff_head ack_queue; |
| 260 | struct sk_buff_head frag_queue; |
| 261 | unsigned char window; |
| 262 | struct timer_list timer, dtimer; |
| 263 | struct sock *sk; /* Backlink to socket */ |
Reshetova, Elena | b6d52ed | 2017-07-04 15:53:31 +0300 | [diff] [blame] | 264 | refcount_t refcount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } ax25_cb; |
| 266 | |
David Miller | 3200392 | 2015-06-25 06:19:07 -0700 | [diff] [blame] | 267 | struct ax25_sock { |
| 268 | struct sock sk; |
| 269 | struct ax25_cb *cb; |
| 270 | }; |
| 271 | |
| 272 | static inline struct ax25_sock *ax25_sk(const struct sock *sk) |
| 273 | { |
| 274 | return (struct ax25_sock *) sk; |
| 275 | } |
| 276 | |
| 277 | static inline struct ax25_cb *sk_to_ax25(const struct sock *sk) |
| 278 | { |
| 279 | return ax25_sk(sk)->cb; |
| 280 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 282 | #define ax25_for_each(__ax25, list) \ |
| 283 | hlist_for_each_entry(__ax25, list, ax25_node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | #define ax25_cb_hold(__ax25) \ |
Reshetova, Elena | b6d52ed | 2017-07-04 15:53:31 +0300 | [diff] [blame] | 286 | refcount_inc(&((__ax25)->refcount)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
| 288 | static __inline__ void ax25_cb_put(ax25_cb *ax25) |
| 289 | { |
Reshetova, Elena | b6d52ed | 2017-07-04 15:53:31 +0300 | [diff] [blame] | 290 | if (refcount_dec_and_test(&ax25->refcount)) { |
Jesper Juhl | b4558ea | 2005-10-28 16:53:13 -0400 | [diff] [blame] | 291 | kfree(ax25->digipeat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | kfree(ax25); |
| 293 | } |
| 294 | } |
| 295 | |
Alexey Dobriyan | f852640 | 2005-06-20 13:31:11 -0700 | [diff] [blame] | 296 | static inline __be16 ax25_type_trans(struct sk_buff *skb, struct net_device *dev) |
Arnaldo Carvalho de Melo | 56cb515 | 2005-04-24 18:53:06 -0700 | [diff] [blame] | 297 | { |
| 298 | skb->dev = dev; |
Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 299 | skb_reset_mac_header(skb); |
Arnaldo Carvalho de Melo | 56cb515 | 2005-04-24 18:53:06 -0700 | [diff] [blame] | 300 | skb->pkt_type = PACKET_HOST; |
Arnaldo Carvalho de Melo | 56cb515 | 2005-04-24 18:53:06 -0700 | [diff] [blame] | 301 | return htons(ETH_P_AX25); |
| 302 | } |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | /* af_ax25.c */ |
| 305 | extern struct hlist_head ax25_list; |
| 306 | extern spinlock_t ax25_list_lock; |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 307 | void ax25_cb_add(ax25_cb *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | struct sock *ax25_find_listener(ax25_address *, int, struct net_device *, int); |
| 309 | struct sock *ax25_get_socket(ax25_address *, ax25_address *, int); |
Jakub Kicinski | c045ad2 | 2021-10-12 08:58:35 -0700 | [diff] [blame] | 310 | ax25_cb *ax25_find_cb(const ax25_address *, ax25_address *, ax25_digi *, |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 311 | struct net_device *); |
| 312 | void ax25_send_to_raw(ax25_address *, struct sk_buff *, int); |
| 313 | void ax25_destroy_socket(ax25_cb *); |
| 314 | ax25_cb * __must_check ax25_create_cb(void); |
| 315 | void ax25_fillin_cb(ax25_cb *, ax25_dev *); |
| 316 | struct sock *ax25_make_new(struct sock *, struct ax25_dev *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | /* ax25_addr.c */ |
Ralf Baechle | 15b1c0e | 2006-12-07 15:47:08 -0800 | [diff] [blame] | 319 | extern const ax25_address ax25_bcast; |
| 320 | extern const ax25_address ax25_defaddr; |
| 321 | extern const ax25_address null_ax25_address; |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 322 | char *ax2asc(char *buf, const ax25_address *); |
| 323 | void asc2ax(ax25_address *addr, const char *callsign); |
| 324 | int ax25cmp(const ax25_address *, const ax25_address *); |
| 325 | int ax25digicmp(const ax25_digi *, const ax25_digi *); |
| 326 | const unsigned char *ax25_addr_parse(const unsigned char *, int, |
Ralf Baechle | e8cc49b | 2006-12-07 15:43:13 -0800 | [diff] [blame] | 327 | ax25_address *, ax25_address *, ax25_digi *, int *, int *); |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 328 | int ax25_addr_build(unsigned char *, const ax25_address *, |
| 329 | const ax25_address *, const ax25_digi *, int, int); |
| 330 | int ax25_addr_size(const ax25_digi *); |
| 331 | void ax25_digi_invert(const ax25_digi *, ax25_digi *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | /* ax25_dev.c */ |
| 334 | extern ax25_dev *ax25_dev_list; |
| 335 | extern spinlock_t ax25_dev_lock; |
| 336 | |
David Ahern | 19ff13f | 2018-02-13 08:52:01 -0800 | [diff] [blame] | 337 | #if IS_ENABLED(CONFIG_AX25) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | static inline ax25_dev *ax25_dev_ax25dev(struct net_device *dev) |
| 339 | { |
| 340 | return dev->ax25_ptr; |
| 341 | } |
David Ahern | 19ff13f | 2018-02-13 08:52:01 -0800 | [diff] [blame] | 342 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 344 | ax25_dev *ax25_addr_ax25dev(ax25_address *); |
| 345 | void ax25_dev_device_up(struct net_device *); |
| 346 | void ax25_dev_device_down(struct net_device *); |
| 347 | int ax25_fwd_ioctl(unsigned int, struct ax25_fwd_struct *); |
| 348 | struct net_device *ax25_fwd_dev(struct net_device *); |
| 349 | void ax25_dev_free(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | |
| 351 | /* ax25_ds_in.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 352 | int ax25_ds_frame_in(ax25_cb *, struct sk_buff *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* ax25_ds_subr.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 355 | void ax25_ds_nr_error_recovery(ax25_cb *); |
| 356 | void ax25_ds_enquiry_response(ax25_cb *); |
| 357 | void ax25_ds_establish_data_link(ax25_cb *); |
| 358 | void ax25_dev_dama_off(ax25_dev *); |
| 359 | void ax25_dama_on(ax25_cb *); |
| 360 | void ax25_dama_off(ax25_cb *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | /* ax25_ds_timer.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 363 | void ax25_ds_setup_timer(ax25_dev *); |
| 364 | void ax25_ds_set_timer(ax25_dev *); |
| 365 | void ax25_ds_del_timer(ax25_dev *); |
| 366 | void ax25_ds_timer(ax25_cb *); |
| 367 | void ax25_ds_t1_timeout(ax25_cb *); |
| 368 | void ax25_ds_heartbeat_expiry(ax25_cb *); |
| 369 | void ax25_ds_t3timer_expiry(ax25_cb *); |
| 370 | void ax25_ds_idletimer_expiry(ax25_cb *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
| 372 | /* ax25_iface.c */ |
Ralf Baechle | 8d5cf59 | 2006-12-14 15:50:01 -0800 | [diff] [blame] | 373 | |
| 374 | struct ax25_protocol { |
| 375 | struct ax25_protocol *next; |
| 376 | unsigned int pid; |
| 377 | int (*func)(struct sk_buff *, ax25_cb *); |
| 378 | }; |
| 379 | |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 380 | void ax25_register_pid(struct ax25_protocol *ap); |
| 381 | void ax25_protocol_release(unsigned int); |
Ralf Baechle | a428271 | 2006-12-14 15:51:23 -0800 | [diff] [blame] | 382 | |
| 383 | struct ax25_linkfail { |
| 384 | struct hlist_node lf_node; |
| 385 | void (*func)(ax25_cb *, int); |
| 386 | }; |
| 387 | |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 388 | void ax25_linkfail_register(struct ax25_linkfail *lf); |
| 389 | void ax25_linkfail_release(struct ax25_linkfail *lf); |
Jakub Kicinski | c045ad2 | 2021-10-12 08:58:35 -0700 | [diff] [blame] | 390 | int __must_check ax25_listen_register(const ax25_address *, |
| 391 | struct net_device *); |
| 392 | void ax25_listen_release(const ax25_address *, struct net_device *); |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 393 | int(*ax25_protocol_function(unsigned int))(struct sk_buff *, ax25_cb *); |
Jakub Kicinski | c045ad2 | 2021-10-12 08:58:35 -0700 | [diff] [blame] | 394 | int ax25_listen_mine(const ax25_address *, struct net_device *); |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 395 | void ax25_link_failed(ax25_cb *, int); |
| 396 | int ax25_protocol_is_registered(unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | /* ax25_in.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 399 | int ax25_rx_iframe(ax25_cb *, struct sk_buff *); |
| 400 | int ax25_kiss_rcv(struct sk_buff *, struct net_device *, struct packet_type *, |
| 401 | struct net_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | /* ax25_ip.c */ |
Eric W. Biederman | 1d5da75 | 2015-03-03 09:41:47 -0600 | [diff] [blame] | 404 | netdev_tx_t ax25_ip_xmit(struct sk_buff *skb); |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 405 | extern const struct header_ops ax25_header_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | /* ax25_out.c */ |
Jakub Kicinski | c045ad2 | 2021-10-12 08:58:35 -0700 | [diff] [blame] | 408 | ax25_cb *ax25_send_frame(struct sk_buff *, int, const ax25_address *, |
| 409 | ax25_address *, ax25_digi *, struct net_device *); |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 410 | void ax25_output(ax25_cb *, int, struct sk_buff *); |
| 411 | void ax25_kick(ax25_cb *); |
| 412 | void ax25_transmit_buffer(ax25_cb *, struct sk_buff *, int); |
| 413 | void ax25_queue_xmit(struct sk_buff *skb, struct net_device *dev); |
| 414 | int ax25_check_iframes_acked(ax25_cb *, unsigned short); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | /* ax25_route.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 417 | void ax25_rt_device_down(struct net_device *); |
| 418 | int ax25_rt_ioctl(unsigned int, void __user *); |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 419 | extern const struct seq_operations ax25_rt_seqops; |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 420 | ax25_route *ax25_get_route(ax25_address *addr, struct net_device *dev); |
| 421 | int ax25_rt_autobind(ax25_cb *, ax25_address *); |
| 422 | struct sk_buff *ax25_rt_build_path(struct sk_buff *, ax25_address *, |
| 423 | ax25_address *, ax25_digi *); |
| 424 | void ax25_rt_free(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | /* ax25_std_in.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 427 | int ax25_std_frame_in(ax25_cb *, struct sk_buff *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
| 429 | /* ax25_std_subr.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 430 | void ax25_std_nr_error_recovery(ax25_cb *); |
| 431 | void ax25_std_establish_data_link(ax25_cb *); |
| 432 | void ax25_std_transmit_enquiry(ax25_cb *); |
| 433 | void ax25_std_enquiry_response(ax25_cb *); |
| 434 | void ax25_std_timeout_response(ax25_cb *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
| 436 | /* ax25_std_timer.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 437 | void ax25_std_heartbeat_expiry(ax25_cb *); |
| 438 | void ax25_std_t1timer_expiry(ax25_cb *); |
| 439 | void ax25_std_t2timer_expiry(ax25_cb *); |
| 440 | void ax25_std_t3timer_expiry(ax25_cb *); |
| 441 | void ax25_std_idletimer_expiry(ax25_cb *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /* ax25_subr.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 444 | void ax25_clear_queues(ax25_cb *); |
| 445 | void ax25_frames_acked(ax25_cb *, unsigned short); |
| 446 | void ax25_requeue_frames(ax25_cb *); |
| 447 | int ax25_validate_nr(ax25_cb *, unsigned short); |
| 448 | int ax25_decode(ax25_cb *, struct sk_buff *, int *, int *, int *); |
| 449 | void ax25_send_control(ax25_cb *, int, int, int); |
| 450 | void ax25_return_dm(struct net_device *, ax25_address *, ax25_address *, |
| 451 | ax25_digi *); |
| 452 | void ax25_calculate_t1(ax25_cb *); |
| 453 | void ax25_calculate_rtt(ax25_cb *); |
| 454 | void ax25_disconnect(ax25_cb *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | |
| 456 | /* ax25_timer.c */ |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 457 | void ax25_setup_timers(ax25_cb *); |
| 458 | void ax25_start_heartbeat(ax25_cb *); |
| 459 | void ax25_start_t1timer(ax25_cb *); |
| 460 | void ax25_start_t2timer(ax25_cb *); |
| 461 | void ax25_start_t3timer(ax25_cb *); |
| 462 | void ax25_start_idletimer(ax25_cb *); |
| 463 | void ax25_stop_heartbeat(ax25_cb *); |
| 464 | void ax25_stop_t1timer(ax25_cb *); |
| 465 | void ax25_stop_t2timer(ax25_cb *); |
| 466 | void ax25_stop_t3timer(ax25_cb *); |
| 467 | void ax25_stop_idletimer(ax25_cb *); |
| 468 | int ax25_t1timer_running(ax25_cb *); |
| 469 | unsigned long ax25_display_timer(struct timer_list *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | /* ax25_uid.c */ |
| 472 | extern int ax25_uid_policy; |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 473 | ax25_uid_assoc *ax25_findbyuid(kuid_t); |
| 474 | int __must_check ax25_uid_ioctl(int, struct sockaddr_ax25 *); |
Christoph Hellwig | fddda2b | 2018-04-13 19:44:18 +0200 | [diff] [blame] | 475 | extern const struct seq_operations ax25_uid_seqops; |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 476 | void ax25_uid_free(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | /* sysctl_net_ax25.c */ |
| 479 | #ifdef CONFIG_SYSCTL |
Joe Perches | c1d8f80 | 2013-07-31 17:31:36 -0700 | [diff] [blame] | 480 | int ax25_register_dev_sysctl(ax25_dev *ax25_dev); |
| 481 | void ax25_unregister_dev_sysctl(ax25_dev *ax25_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | #else |
Eric W. Biederman | b989850 | 2012-04-23 14:25:49 +0000 | [diff] [blame] | 483 | static inline int ax25_register_dev_sysctl(ax25_dev *ax25_dev) { return 0; } |
| 484 | static inline void ax25_unregister_dev_sysctl(ax25_dev *ax25_dev) {} |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | #endif /* CONFIG_SYSCTL */ |
| 486 | |
| 487 | #endif |