hippi.c 4.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10
/*
 * INET		An implementation of the TCP/IP protocol suite for the LINUX
 *		operating system.  INET is implemented using the  BSD Socket
 *		interface as the means of communication with the user level.
 *
 *		HIPPI-type device handling.
 *
 * Version:	@(#)hippi.c	1.0.0	05/29/97
 *
11
 * Authors:	Ross Biro
L
Linus Torvalds 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
 *		Mark Evans, <evansmp@uhura.aston.ac.uk>
 *		Florian  La Roche, <rzsfl@rz.uni-sb.de>
 *		Alan Cox, <gw4pts@gw4pts.ampr.org>
 *		Jes Sorensen, <Jes.Sorensen@cern.ch>
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/hippidevice.h>
#include <linux/skbuff.h>
#include <linux/errno.h>
#include <net/arp.h>
#include <net/sock.h>
33
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
34 35

/*
36
 * Create the HIPPI MAC header for an arbitrary protocol layer
L
Linus Torvalds 已提交
37 38 39 40 41 42
 *
 * saddr=NULL	means use device source address
 * daddr=NULL	means leave destination address (eg unresolved arp)
 */

static int hippi_header(struct sk_buff *skb, struct net_device *dev,
43
			unsigned short type,
44
			const void *daddr, const void *saddr, unsigned int len)
L
Linus Torvalds 已提交
45
{
46
	struct hippi_hdr *hip = skb_push(skb, HIPPI_HLEN);
47
	struct hippi_cb *hcb = (struct hippi_cb *) skb->cb;
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57

	if (!len){
		len = skb->len - HIPPI_HLEN;
		printk("hippi_header(): length not supplied\n");
	}

	/*
	 * Due to the stupidity of the little endian byte-order we
	 * have to set the fp field this way.
	 */
58
	hip->fp.fixed		= htonl(0x04800018);
L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
	hip->fp.d2_size		= htonl(len + 8);
	hip->le.fc		= 0;
	hip->le.double_wide	= 0;	/* only HIPPI 800 for the time being */
	hip->le.message_type	= 0;	/* Data PDU */

	hip->le.dest_addr_type	= 2;	/* 12 bit SC address */
	hip->le.src_addr_type	= 2;	/* 12 bit SC address */

	memcpy(hip->le.src_switch_addr, dev->dev_addr + 3, 3);
	memset(&hip->le.reserved, 0, 16);

	hip->snap.dsap		= HIPPI_EXTENDED_SAP;
	hip->snap.ssap		= HIPPI_EXTENDED_SAP;
	hip->snap.ctrl		= HIPPI_UI_CMD;
	hip->snap.oui[0]	= 0x00;
	hip->snap.oui[1]	= 0x00;
	hip->snap.oui[2]	= 0x00;
	hip->snap.ethertype	= htons(type);

	if (daddr)
	{
		memcpy(hip->le.dest_switch_addr, daddr + 3, 3);
81
		memcpy(&hcb->ifield, daddr + 2, 4);
L
Linus Torvalds 已提交
82 83
		return HIPPI_HLEN;
	}
84
	hcb->ifield = 0;
L
Linus Torvalds 已提交
85 86 87 88 89 90 91
	return -((int)HIPPI_HLEN);
}


/*
 *	Determine the packet's protocol ID.
 */
92

93
__be16 hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
94 95
{
	struct hippi_hdr *hip;
96

L
Linus Torvalds 已提交
97 98 99 100
	/*
	 * This is actually wrong ... question is if we really should
	 * set the raw address here.
	 */
101
	skb->dev = dev;
102
	skb_reset_mac_header(skb);
103
	hip = (struct hippi_hdr *)skb_mac_header(skb);
104
	skb_pull(skb, HIPPI_HLEN);
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118

	/*
	 * No fancy promisc stuff here now.
	 */

	return hip->snap.ethertype;
}

EXPORT_SYMBOL(hippi_type_trans);

/*
 * For HIPPI we will actually use the lower 4 bytes of the hardware
 * address as the I-FIELD rather than the actual hardware address.
 */
119
int hippi_mac_addr(struct net_device *dev, void *p)
L
Linus Torvalds 已提交
120 121 122 123
{
	struct sockaddr *addr = p;
	if (netif_running(dev))
		return -EBUSY;
J
Jakub Kicinski 已提交
124
	dev_addr_set(dev, addr->sa_data);
L
Linus Torvalds 已提交
125 126
	return 0;
}
127
EXPORT_SYMBOL(hippi_mac_addr);
L
Linus Torvalds 已提交
128

129
int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
L
Linus Torvalds 已提交
130 131
{
	/* Never send broadcast/multicast ARP messages */
132
	NEIGH_VAR_INIT(p, MCAST_PROBES, 0);
133

L
Linus Torvalds 已提交
134 135
	/* In IPv6 unicast probes are valid even on NBMA,
	* because they are encapsulated in normal IPv6 protocol.
136
	* Should be a generic flag.
L
Linus Torvalds 已提交
137 138
	*/
	if (p->tbl->family != AF_INET6)
139
		NEIGH_VAR_INIT(p, UCAST_PROBES, 0);
L
Linus Torvalds 已提交
140 141
	return 0;
}
142
EXPORT_SYMBOL(hippi_neigh_setup_dev);
L
Linus Torvalds 已提交
143

144 145 146 147 148
static const struct header_ops hippi_header_ops = {
	.create		= hippi_header,
};


L
Linus Torvalds 已提交
149 150
static void hippi_setup(struct net_device *dev)
{
151
	dev->header_ops			= &hippi_header_ops;
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160

	/*
	 * We don't support HIPPI `ARP' for the time being, and probably
	 * never will unless someone else implements it. However we
	 * still need a fake ARPHRD to make ifconfig and friends play ball.
	 */
	dev->type		= ARPHRD_HIPPI;
	dev->hard_header_len 	= HIPPI_HLEN;
	dev->mtu		= 65280;
161 162
	dev->min_mtu		= 68;
	dev->max_mtu		= 65280;
L
Linus Torvalds 已提交
163 164 165 166 167 168 169
	dev->addr_len		= HIPPI_ALEN;
	dev->tx_queue_len	= 25 /* 5 */;
	memset(dev->broadcast, 0xFF, HIPPI_ALEN);


	/*
	 * HIPPI doesn't support broadcast+multicast and we only use
170
	 * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
L
Linus Torvalds 已提交
171
	 */
172
	dev->flags = 0;
L
Linus Torvalds 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
}

/**
 * alloc_hippi_dev - Register HIPPI device
 * @sizeof_priv: Size of additional driver-private structure to be allocated
 *	for this HIPPI device
 *
 * Fill in the fields of the device structure with HIPPI-generic values.
 *
 * Constructs a new net device, complete with a private data area of
 * size @sizeof_priv.  A 32-byte (not bit) alignment is enforced for
 * this private data area.
 */

struct net_device *alloc_hippi_dev(int sizeof_priv)
{
189 190
	return alloc_netdev(sizeof_priv, "hip%d", NET_NAME_UNKNOWN,
			    hippi_setup);
L
Linus Torvalds 已提交
191 192 193
}

EXPORT_SYMBOL(alloc_hippi_dev);