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