blob: f80b33a8f7e0dd95f148af944d0ac09710cfe83a [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * HIPPI-type device handling.
8 *
9 * Version: @(#)hippi.c 1.0.0 05/29/97
10 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070011 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
13 * Mark Evans, <evansmp@uhura.aston.ac.uk>
14 * Florian La Roche, <rzsfl@rz.uni-sb.de>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Jes Sorensen, <Jes.Sorensen@cern.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
19#include <linux/module.h>
20#include <linux/types.h>
21#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/string.h>
23#include <linux/mm.h>
24#include <linux/socket.h>
25#include <linux/in.h>
26#include <linux/inet.h>
27#include <linux/netdevice.h>
28#include <linux/hippidevice.h>
29#include <linux/skbuff.h>
30#include <linux/errno.h>
31#include <net/arp.h>
32#include <net/sock.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090036 * Create the HIPPI MAC header for an arbitrary protocol layer
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
38 * saddr=NULL means use device source address
39 * daddr=NULL means leave destination address (eg unresolved arp)
40 */
41
42static int hippi_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070043 unsigned short type,
Eric Dumazet95c96172012-04-15 05:58:06 +000044 const void *daddr, const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Johannes Bergd58ff352017-06-16 14:29:23 +020046 struct hippi_hdr *hip = skb_push(skb, HIPPI_HLEN);
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070047 struct hippi_cb *hcb = (struct hippi_cb *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 if (!len){
50 len = skb->len - HIPPI_HLEN;
51 printk("hippi_header(): length not supplied\n");
52 }
53
54 /*
55 * Due to the stupidity of the little endian byte-order we
56 * have to set the fp field this way.
57 */
YOSHIFUJI Hideaki2953fd22007-03-25 20:11:55 -070058 hip->fp.fixed = htonl(0x04800018);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 hip->fp.d2_size = htonl(len + 8);
60 hip->le.fc = 0;
61 hip->le.double_wide = 0; /* only HIPPI 800 for the time being */
62 hip->le.message_type = 0; /* Data PDU */
63
64 hip->le.dest_addr_type = 2; /* 12 bit SC address */
65 hip->le.src_addr_type = 2; /* 12 bit SC address */
66
67 memcpy(hip->le.src_switch_addr, dev->dev_addr + 3, 3);
68 memset(&hip->le.reserved, 0, 16);
69
70 hip->snap.dsap = HIPPI_EXTENDED_SAP;
71 hip->snap.ssap = HIPPI_EXTENDED_SAP;
72 hip->snap.ctrl = HIPPI_UI_CMD;
73 hip->snap.oui[0] = 0x00;
74 hip->snap.oui[1] = 0x00;
75 hip->snap.oui[2] = 0x00;
76 hip->snap.ethertype = htons(type);
77
78 if (daddr)
79 {
80 memcpy(hip->le.dest_switch_addr, daddr + 3, 3);
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070081 memcpy(&hcb->ifield, daddr + 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return HIPPI_HLEN;
83 }
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070084 hcb->ifield = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return -((int)HIPPI_HLEN);
86}
87
88
89/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * Determine the packet's protocol ID.
91 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090092
Alexey Dobriyan57bf1452005-08-25 16:06:19 -070093__be16 hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct hippi_hdr *hip;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /*
98 * This is actually wrong ... question is if we really should
99 * set the raw address here.
100 */
Arnaldo Carvalho de Melo0a4f23f2007-03-10 10:57:13 -0300101 skb->dev = dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700102 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700103 hip = (struct hippi_hdr *)skb_mac_header(skb);
Arnaldo Carvalho de Melo0a4f23f2007-03-10 10:57:13 -0300104 skb_pull(skb, HIPPI_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 /*
107 * No fancy promisc stuff here now.
108 */
109
110 return hip->snap.ethertype;
111}
112
113EXPORT_SYMBOL(hippi_type_trans);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * For HIPPI we will actually use the lower 4 bytes of the hardware
117 * address as the I-FIELD rather than the actual hardware address.
118 */
Stephen Hemminger748ff682008-11-20 20:32:15 -0800119int hippi_mac_addr(struct net_device *dev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct sockaddr *addr = p;
122 if (netif_running(dev))
123 return -EBUSY;
124 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
125 return 0;
126}
Stephen Hemminger748ff682008-11-20 20:32:15 -0800127EXPORT_SYMBOL(hippi_mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Stephen Hemminger748ff682008-11-20 20:32:15 -0800129int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 /* Never send broadcast/multicast ARP messages */
Jiri Pirko89740ca2014-01-09 14:13:47 +0100132 NEIGH_VAR_INIT(p, MCAST_PROBES, 0);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* In IPv6 unicast probes are valid even on NBMA,
135 * because they are encapsulated in normal IPv6 protocol.
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900136 * Should be a generic flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
138 if (p->tbl->family != AF_INET6)
Jiri Pirko89740ca2014-01-09 14:13:47 +0100139 NEIGH_VAR_INIT(p, UCAST_PROBES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
Stephen Hemminger748ff682008-11-20 20:32:15 -0800142EXPORT_SYMBOL(hippi_neigh_setup_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700144static const struct header_ops hippi_header_ops = {
145 .create = hippi_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700146};
147
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static void hippi_setup(struct net_device *dev)
150{
Stephen Hemminger748ff682008-11-20 20:32:15 -0800151 dev->header_ops = &hippi_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /*
154 * We don't support HIPPI `ARP' for the time being, and probably
155 * never will unless someone else implements it. However we
156 * still need a fake ARPHRD to make ifconfig and friends play ball.
157 */
158 dev->type = ARPHRD_HIPPI;
159 dev->hard_header_len = HIPPI_HLEN;
160 dev->mtu = 65280;
Jarod Wilsonb3e38932016-10-20 13:55:22 -0400161 dev->min_mtu = 68;
162 dev->max_mtu = 65280;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 dev->addr_len = HIPPI_ALEN;
164 dev->tx_queue_len = 25 /* 5 */;
165 memset(dev->broadcast, 0xFF, HIPPI_ALEN);
166
167
168 /*
169 * HIPPI doesn't support broadcast+multicast and we only use
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900170 * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900172 dev->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/**
176 * alloc_hippi_dev - Register HIPPI device
177 * @sizeof_priv: Size of additional driver-private structure to be allocated
178 * for this HIPPI device
179 *
180 * Fill in the fields of the device structure with HIPPI-generic values.
181 *
182 * Constructs a new net device, complete with a private data area of
183 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
184 * this private data area.
185 */
186
187struct net_device *alloc_hippi_dev(int sizeof_priv)
188{
Tom Gundersenc835a672014-07-14 16:37:24 +0200189 return alloc_netdev(sizeof_priv, "hip%d", NET_NAME_UNKNOWN,
190 hippi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193EXPORT_SYMBOL(alloc_hippi_dev);