blob: 9d1342807b597058c268cf84ac57eac77798bf37 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _NET_INET_IPX_H_
3#define _NET_INET_IPX_H_
4/*
5 * The following information is in its entirety obtained from:
6 *
7 * Novell 'IPX Router Specification' Version 1.10
8 * Part No. 107-000029-001
9 *
10 * Which is available from ftp.novell.com
11 */
12
13#include <linux/netdevice.h>
14#include <net/datalink.h>
15#include <linux/ipx.h>
16#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Reshetova, Elenad25189c2017-07-04 15:53:09 +030018#include <linux/refcount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20struct ipx_address {
Al Viro4833ed02006-11-03 00:27:06 -080021 __be32 net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 __u8 node[IPX_NODE_LEN];
Al Viro4833ed02006-11-03 00:27:06 -080023 __be16 sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
25
26#define ipx_broadcast_node "\377\377\377\377\377\377"
27#define ipx_this_node "\0\0\0\0\0\0"
28
29#define IPX_MAX_PPROP_HOPS 8
30
31struct ipxhdr {
Eric Dumazetbc105022010-06-03 03:21:52 -070032 __be16 ipx_checksum __packed;
Harvey Harrisonf3a7c662009-02-14 22:58:35 -080033#define IPX_NO_CHECKSUM cpu_to_be16(0xFFFF)
Eric Dumazetbc105022010-06-03 03:21:52 -070034 __be16 ipx_pktsize __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 __u8 ipx_tctrl;
36 __u8 ipx_type;
37#define IPX_TYPE_UNKNOWN 0x00
38#define IPX_TYPE_RIP 0x01 /* may also be 0 */
39#define IPX_TYPE_SAP 0x04 /* may also be 0 */
40#define IPX_TYPE_SPX 0x05 /* SPX protocol */
41#define IPX_TYPE_NCP 0x11 /* $lots for docs on this (SPIT) */
42#define IPX_TYPE_PPROP 0x14 /* complicated flood fill brdcast */
Eric Dumazetbc105022010-06-03 03:21:52 -070043 struct ipx_address ipx_dest __packed;
44 struct ipx_address ipx_source __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Fabian Frederick5e96d782014-10-27 20:00:41 +010047/* From af_ipx.c */
48extern int sysctl_ipx_pprop_broadcasting;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050struct ipx_interface {
51 /* IPX address */
Al Viro4833ed02006-11-03 00:27:06 -080052 __be32 if_netnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 unsigned char if_node[IPX_NODE_LEN];
Reshetova, Elenad25189c2017-07-04 15:53:09 +030054 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 /* physical device info */
57 struct net_device *if_dev;
58 struct datalink_proto *if_dlink;
Al Viro4833ed02006-11-03 00:27:06 -080059 __be16 if_dlink_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 /* socket support */
62 unsigned short if_sknum;
63 struct hlist_head if_sklist;
64 spinlock_t if_sklist_lock;
65
66 /* administrative overhead */
67 int if_ipx_offset;
68 unsigned char if_internal;
69 unsigned char if_primary;
70
71 struct list_head node; /* node in ipx_interfaces list */
72};
73
74struct ipx_route {
Al Viro4833ed02006-11-03 00:27:06 -080075 __be32 ir_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct ipx_interface *ir_intrfc;
77 unsigned char ir_routed;
78 unsigned char ir_router_node[IPX_NODE_LEN];
79 struct list_head node; /* node in ipx_routes list */
Reshetova, Elena16f73c92017-07-04 15:53:10 +030080 refcount_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct ipx_cb {
84 u8 ipx_tctrl;
Al Viro4833ed02006-11-03 00:27:06 -080085 __be32 ipx_dest_net;
86 __be32 ipx_source_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct {
Al Viro4833ed02006-11-03 00:27:06 -080088 __be32 netnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 int index;
90 } last_hop;
91};
92
93#include <net/sock.h>
94
95struct ipx_sock {
96 /* struct sock has to be the first member of ipx_sock */
97 struct sock sk;
98 struct ipx_address dest_addr;
99 struct ipx_interface *intrfc;
Al Viro4833ed02006-11-03 00:27:06 -0800100 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifdef CONFIG_IPX_INTERN
102 unsigned char node[IPX_NODE_LEN];
103#endif
104 unsigned short type;
105 /*
106 * To handle special ncp connection-handling sockets for mars_nwe,
107 * the connection number must be stored in the socket.
108 */
109 unsigned short ipx_ncp_conn;
110};
111
112static inline struct ipx_sock *ipx_sk(struct sock *sk)
113{
114 return (struct ipx_sock *)sk;
115}
116
117#define IPX_SKB_CB(__skb) ((struct ipx_cb *)&((__skb)->cb[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119#define IPX_MIN_EPHEMERAL_SOCKET 0x4000
120#define IPX_MAX_EPHEMERAL_SOCKET 0x7fff
121
122extern struct list_head ipx_routes;
123extern rwlock_t ipx_routes_lock;
124
125extern struct list_head ipx_interfaces;
Joe Perches9d036262013-09-21 10:22:43 -0700126struct ipx_interface *ipx_interfaces_head(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127extern spinlock_t ipx_interfaces_lock;
128
129extern struct ipx_interface *ipx_primary_net;
130
Joe Perches9d036262013-09-21 10:22:43 -0700131int ipx_proc_init(void);
132void ipx_proc_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Joe Perches9d036262013-09-21 10:22:43 -0700134const char *ipx_frame_name(__be16);
135const char *ipx_device_name(struct ipx_interface *intrfc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137static __inline__ void ipxitf_hold(struct ipx_interface *intrfc)
138{
Reshetova, Elenad25189c2017-07-04 15:53:09 +0300139 refcount_inc(&intrfc->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Joe Perches9d036262013-09-21 10:22:43 -0700142void ipxitf_down(struct ipx_interface *intrfc);
Rashika Kheria493cc5e2014-02-09 22:24:33 +0530143struct ipx_interface *ipxitf_find_using_net(__be32 net);
144int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node);
145__be16 ipx_cksum(struct ipxhdr *packet, int length);
Rashika Kheria578efbc2014-02-09 22:26:32 +0530146int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc,
147 unsigned char *node);
148void ipxrtr_del_routes(struct ipx_interface *intrfc);
149int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx,
Al Viroe1693712014-04-06 21:28:01 -0400150 struct msghdr *msg, size_t len, int noblock);
Rashika Kheria578efbc2014-02-09 22:26:32 +0530151int ipxrtr_route_skb(struct sk_buff *skb);
152struct ipx_route *ipxrtr_lookup(__be32 net);
153int ipxrtr_ioctl(unsigned int cmd, void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155static __inline__ void ipxitf_put(struct ipx_interface *intrfc)
156{
Reshetova, Elenad25189c2017-07-04 15:53:09 +0300157 if (refcount_dec_and_test(&intrfc->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 ipxitf_down(intrfc);
159}
160
161static __inline__ void ipxrtr_hold(struct ipx_route *rt)
162{
Reshetova, Elena16f73c92017-07-04 15:53:10 +0300163 refcount_inc(&rt->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166static __inline__ void ipxrtr_put(struct ipx_route *rt)
167{
Reshetova, Elena16f73c92017-07-04 15:53:10 +0300168 if (refcount_dec_and_test(&rt->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 kfree(rt);
170}
171#endif /* _NET_INET_IPX_H_ */