blob: 690308b9b94a03360edfadddf54db1b1cb94ac65 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * HIPPI-type device handling.
7 *
8 * Version: @(#)hippi.c 1.0.0 05/29/97
9 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 * Florian La Roche, <rzsfl@rz.uni-sb.de>
14 * Alan Cox, <gw4pts@gw4pts.ampr.org>
15 * Jes Sorensen, <Jes.Sorensen@cern.ch>
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
23#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/string.h>
27#include <linux/mm.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/inet.h>
31#include <linux/netdevice.h>
32#include <linux/hippidevice.h>
33#include <linux/skbuff.h>
34#include <linux/errno.h>
35#include <net/arp.h>
36#include <net/sock.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080037#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090040 * Create the HIPPI MAC header for an arbitrary protocol layer
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 *
42 * saddr=NULL means use device source address
43 * daddr=NULL means leave destination address (eg unresolved arp)
44 */
45
46static int hippi_header(struct sk_buff *skb, struct net_device *dev,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070047 unsigned short type,
Eric Dumazet95c96172012-04-15 05:58:06 +000048 const void *daddr, const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Johannes Bergd58ff352017-06-16 14:29:23 +020050 struct hippi_hdr *hip = skb_push(skb, HIPPI_HLEN);
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070051 struct hippi_cb *hcb = (struct hippi_cb *) skb->cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 if (!len){
54 len = skb->len - HIPPI_HLEN;
55 printk("hippi_header(): length not supplied\n");
56 }
57
58 /*
59 * Due to the stupidity of the little endian byte-order we
60 * have to set the fp field this way.
61 */
YOSHIFUJI Hideaki2953fd22007-03-25 20:11:55 -070062 hip->fp.fixed = htonl(0x04800018);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 hip->fp.d2_size = htonl(len + 8);
64 hip->le.fc = 0;
65 hip->le.double_wide = 0; /* only HIPPI 800 for the time being */
66 hip->le.message_type = 0; /* Data PDU */
67
68 hip->le.dest_addr_type = 2; /* 12 bit SC address */
69 hip->le.src_addr_type = 2; /* 12 bit SC address */
70
71 memcpy(hip->le.src_switch_addr, dev->dev_addr + 3, 3);
72 memset(&hip->le.reserved, 0, 16);
73
74 hip->snap.dsap = HIPPI_EXTENDED_SAP;
75 hip->snap.ssap = HIPPI_EXTENDED_SAP;
76 hip->snap.ctrl = HIPPI_UI_CMD;
77 hip->snap.oui[0] = 0x00;
78 hip->snap.oui[1] = 0x00;
79 hip->snap.oui[2] = 0x00;
80 hip->snap.ethertype = htons(type);
81
82 if (daddr)
83 {
84 memcpy(hip->le.dest_switch_addr, daddr + 3, 3);
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070085 memcpy(&hcb->ifield, daddr + 2, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return HIPPI_HLEN;
87 }
Stephen Hemminger6f1cf162005-08-09 19:31:17 -070088 hcb->ifield = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return -((int)HIPPI_HLEN);
90}
91
92
93/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Determine the packet's protocol ID.
95 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090096
Alexey Dobriyan57bf1452005-08-25 16:06:19 -070097__be16 hippi_type_trans(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct hippi_hdr *hip;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /*
102 * This is actually wrong ... question is if we really should
103 * set the raw address here.
104 */
Arnaldo Carvalho de Melo0a4f23f2007-03-10 10:57:13 -0300105 skb->dev = dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700106 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700107 hip = (struct hippi_hdr *)skb_mac_header(skb);
Arnaldo Carvalho de Melo0a4f23f2007-03-10 10:57:13 -0300108 skb_pull(skb, HIPPI_HLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /*
111 * No fancy promisc stuff here now.
112 */
113
114 return hip->snap.ethertype;
115}
116
117EXPORT_SYMBOL(hippi_type_trans);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * For HIPPI we will actually use the lower 4 bytes of the hardware
121 * address as the I-FIELD rather than the actual hardware address.
122 */
Stephen Hemminger748ff682008-11-20 20:32:15 -0800123int hippi_mac_addr(struct net_device *dev, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct sockaddr *addr = p;
126 if (netif_running(dev))
127 return -EBUSY;
128 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
129 return 0;
130}
Stephen Hemminger748ff682008-11-20 20:32:15 -0800131EXPORT_SYMBOL(hippi_mac_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Stephen Hemminger748ff682008-11-20 20:32:15 -0800133int hippi_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 /* Never send broadcast/multicast ARP messages */
Jiri Pirko89740ca2014-01-09 14:13:47 +0100136 NEIGH_VAR_INIT(p, MCAST_PROBES, 0);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* In IPv6 unicast probes are valid even on NBMA,
139 * because they are encapsulated in normal IPv6 protocol.
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900140 * Should be a generic flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142 if (p->tbl->family != AF_INET6)
Jiri Pirko89740ca2014-01-09 14:13:47 +0100143 NEIGH_VAR_INIT(p, UCAST_PROBES, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145}
Stephen Hemminger748ff682008-11-20 20:32:15 -0800146EXPORT_SYMBOL(hippi_neigh_setup_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700148static const struct header_ops hippi_header_ops = {
149 .create = hippi_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700150};
151
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static void hippi_setup(struct net_device *dev)
154{
Stephen Hemminger748ff682008-11-20 20:32:15 -0800155 dev->header_ops = &hippi_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /*
158 * We don't support HIPPI `ARP' for the time being, and probably
159 * never will unless someone else implements it. However we
160 * still need a fake ARPHRD to make ifconfig and friends play ball.
161 */
162 dev->type = ARPHRD_HIPPI;
163 dev->hard_header_len = HIPPI_HLEN;
164 dev->mtu = 65280;
Jarod Wilsonb3e38932016-10-20 13:55:22 -0400165 dev->min_mtu = 68;
166 dev->max_mtu = 65280;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 dev->addr_len = HIPPI_ALEN;
168 dev->tx_queue_len = 25 /* 5 */;
169 memset(dev->broadcast, 0xFF, HIPPI_ALEN);
170
171
172 /*
173 * HIPPI doesn't support broadcast+multicast and we only use
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900174 * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900176 dev->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/**
180 * alloc_hippi_dev - Register HIPPI device
181 * @sizeof_priv: Size of additional driver-private structure to be allocated
182 * for this HIPPI device
183 *
184 * Fill in the fields of the device structure with HIPPI-generic values.
185 *
186 * Constructs a new net device, complete with a private data area of
187 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
188 * this private data area.
189 */
190
191struct net_device *alloc_hippi_dev(int sizeof_priv)
192{
Tom Gundersenc835a672014-07-14 16:37:24 +0200193 return alloc_netdev(sizeof_priv, "hip%d", NET_NAME_UNKNOWN,
194 hippi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197EXPORT_SYMBOL(alloc_hippi_dev);