blob: 2de12814ab810882e16ffbba617192811ab3e9df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_INET_IPX_H_
2#define _NET_INET_IPX_H_
3/*
4 * The following information is in its entirety obtained from:
5 *
6 * Novell 'IPX Router Specification' Version 1.10
7 * Part No. 107-000029-001
8 *
9 * Which is available from ftp.novell.com
10 */
11
12#include <linux/netdevice.h>
13#include <net/datalink.h>
14#include <linux/ipx.h>
15#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Reshetova, Elenad25189c2017-07-04 15:53:09 +030017#include <linux/refcount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19struct ipx_address {
Al Viro4833ed02006-11-03 00:27:06 -080020 __be32 net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 __u8 node[IPX_NODE_LEN];
Al Viro4833ed02006-11-03 00:27:06 -080022 __be16 sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
25#define ipx_broadcast_node "\377\377\377\377\377\377"
26#define ipx_this_node "\0\0\0\0\0\0"
27
28#define IPX_MAX_PPROP_HOPS 8
29
30struct ipxhdr {
Eric Dumazetbc105022010-06-03 03:21:52 -070031 __be16 ipx_checksum __packed;
Harvey Harrisonf3a7c662009-02-14 22:58:35 -080032#define IPX_NO_CHECKSUM cpu_to_be16(0xFFFF)
Eric Dumazetbc105022010-06-03 03:21:52 -070033 __be16 ipx_pktsize __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 __u8 ipx_tctrl;
35 __u8 ipx_type;
36#define IPX_TYPE_UNKNOWN 0x00
37#define IPX_TYPE_RIP 0x01 /* may also be 0 */
38#define IPX_TYPE_SAP 0x04 /* may also be 0 */
39#define IPX_TYPE_SPX 0x05 /* SPX protocol */
40#define IPX_TYPE_NCP 0x11 /* $lots for docs on this (SPIT) */
41#define IPX_TYPE_PPROP 0x14 /* complicated flood fill brdcast */
Eric Dumazetbc105022010-06-03 03:21:52 -070042 struct ipx_address ipx_dest __packed;
43 struct ipx_address ipx_source __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
Fabian Frederick5e96d782014-10-27 20:00:41 +010046/* From af_ipx.c */
47extern int sysctl_ipx_pprop_broadcasting;
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static __inline__ struct ipxhdr *ipx_hdr(struct sk_buff *skb)
50{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -070051 return (struct ipxhdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54struct ipx_interface {
55 /* IPX address */
Al Viro4833ed02006-11-03 00:27:06 -080056 __be32 if_netnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 unsigned char if_node[IPX_NODE_LEN];
Reshetova, Elenad25189c2017-07-04 15:53:09 +030058 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /* physical device info */
61 struct net_device *if_dev;
62 struct datalink_proto *if_dlink;
Al Viro4833ed02006-11-03 00:27:06 -080063 __be16 if_dlink_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* socket support */
66 unsigned short if_sknum;
67 struct hlist_head if_sklist;
68 spinlock_t if_sklist_lock;
69
70 /* administrative overhead */
71 int if_ipx_offset;
72 unsigned char if_internal;
73 unsigned char if_primary;
74
75 struct list_head node; /* node in ipx_interfaces list */
76};
77
78struct ipx_route {
Al Viro4833ed02006-11-03 00:27:06 -080079 __be32 ir_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct ipx_interface *ir_intrfc;
81 unsigned char ir_routed;
82 unsigned char ir_router_node[IPX_NODE_LEN];
83 struct list_head node; /* node in ipx_routes list */
84 atomic_t refcnt;
85};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct ipx_cb {
88 u8 ipx_tctrl;
Al Viro4833ed02006-11-03 00:27:06 -080089 __be32 ipx_dest_net;
90 __be32 ipx_source_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct {
Al Viro4833ed02006-11-03 00:27:06 -080092 __be32 netnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 int index;
94 } last_hop;
95};
96
97#include <net/sock.h>
98
99struct ipx_sock {
100 /* struct sock has to be the first member of ipx_sock */
101 struct sock sk;
102 struct ipx_address dest_addr;
103 struct ipx_interface *intrfc;
Al Viro4833ed02006-11-03 00:27:06 -0800104 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#ifdef CONFIG_IPX_INTERN
106 unsigned char node[IPX_NODE_LEN];
107#endif
108 unsigned short type;
109 /*
110 * To handle special ncp connection-handling sockets for mars_nwe,
111 * the connection number must be stored in the socket.
112 */
113 unsigned short ipx_ncp_conn;
114};
115
116static inline struct ipx_sock *ipx_sk(struct sock *sk)
117{
118 return (struct ipx_sock *)sk;
119}
120
121#define IPX_SKB_CB(__skb) ((struct ipx_cb *)&((__skb)->cb[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123#define IPX_MIN_EPHEMERAL_SOCKET 0x4000
124#define IPX_MAX_EPHEMERAL_SOCKET 0x7fff
125
126extern struct list_head ipx_routes;
127extern rwlock_t ipx_routes_lock;
128
129extern struct list_head ipx_interfaces;
Joe Perches9d036262013-09-21 10:22:43 -0700130struct ipx_interface *ipx_interfaces_head(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131extern spinlock_t ipx_interfaces_lock;
132
133extern struct ipx_interface *ipx_primary_net;
134
Joe Perches9d036262013-09-21 10:22:43 -0700135int ipx_proc_init(void);
136void ipx_proc_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Joe Perches9d036262013-09-21 10:22:43 -0700138const char *ipx_frame_name(__be16);
139const char *ipx_device_name(struct ipx_interface *intrfc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141static __inline__ void ipxitf_hold(struct ipx_interface *intrfc)
142{
Reshetova, Elenad25189c2017-07-04 15:53:09 +0300143 refcount_inc(&intrfc->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Joe Perches9d036262013-09-21 10:22:43 -0700146void ipxitf_down(struct ipx_interface *intrfc);
Rashika Kheria493cc5e2014-02-09 22:24:33 +0530147struct ipx_interface *ipxitf_find_using_net(__be32 net);
148int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node);
149__be16 ipx_cksum(struct ipxhdr *packet, int length);
Rashika Kheria578efbc2014-02-09 22:26:32 +0530150int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc,
151 unsigned char *node);
152void ipxrtr_del_routes(struct ipx_interface *intrfc);
153int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx,
Al Viroe1693712014-04-06 21:28:01 -0400154 struct msghdr *msg, size_t len, int noblock);
Rashika Kheria578efbc2014-02-09 22:26:32 +0530155int ipxrtr_route_skb(struct sk_buff *skb);
156struct ipx_route *ipxrtr_lookup(__be32 net);
157int ipxrtr_ioctl(unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159static __inline__ void ipxitf_put(struct ipx_interface *intrfc)
160{
Reshetova, Elenad25189c2017-07-04 15:53:09 +0300161 if (refcount_dec_and_test(&intrfc->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 ipxitf_down(intrfc);
163}
164
165static __inline__ void ipxrtr_hold(struct ipx_route *rt)
166{
167 atomic_inc(&rt->refcnt);
168}
169
170static __inline__ void ipxrtr_put(struct ipx_route *rt)
171{
172 if (atomic_dec_and_test(&rt->refcnt))
173 kfree(rt);
174}
175#endif /* _NET_INET_IPX_H_ */