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.
6 * HIPPI-type device handling.
8 * Version: @(#)hippi.c 1.0.0 05/29/97
11 * 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>
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.
23 #include <linux/module.h>
24 #include <linux/types.h>
25 #include <linux/kernel.h>
26 #include <linux/string.h>
28 #include <linux/socket.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>
37 #include <linux/uaccess.h>
40 * Create the HIPPI MAC header for an arbitrary protocol layer
42 * saddr=NULL means use device source address
43 * daddr=NULL means leave destination address (eg unresolved arp)
46 static int hippi_header(struct sk_buff
*skb
, struct net_device
*dev
,
48 const void *daddr
, const void *saddr
, unsigned int len
)
50 struct hippi_hdr
*hip
= skb_push(skb
, HIPPI_HLEN
);
51 struct hippi_cb
*hcb
= (struct hippi_cb
*) skb
->cb
;
54 len
= skb
->len
- HIPPI_HLEN
;
55 printk("hippi_header(): length not supplied\n");
59 * Due to the stupidity of the little endian byte-order we
60 * have to set the fp field this way.
62 hip
->fp
.fixed
= htonl(0x04800018);
63 hip
->fp
.d2_size
= htonl(len
+ 8);
65 hip
->le
.double_wide
= 0; /* only HIPPI 800 for the time being */
66 hip
->le
.message_type
= 0; /* Data PDU */
68 hip
->le
.dest_addr_type
= 2; /* 12 bit SC address */
69 hip
->le
.src_addr_type
= 2; /* 12 bit SC address */
71 memcpy(hip
->le
.src_switch_addr
, dev
->dev_addr
+ 3, 3);
72 memset(&hip
->le
.reserved
, 0, 16);
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
);
84 memcpy(hip
->le
.dest_switch_addr
, daddr
+ 3, 3);
85 memcpy(&hcb
->ifield
, daddr
+ 2, 4);
89 return -((int)HIPPI_HLEN
);
94 * Determine the packet's protocol ID.
97 __be16
hippi_type_trans(struct sk_buff
*skb
, struct net_device
*dev
)
99 struct hippi_hdr
*hip
;
102 * This is actually wrong ... question is if we really should
103 * set the raw address here.
106 skb_reset_mac_header(skb
);
107 hip
= (struct hippi_hdr
*)skb_mac_header(skb
);
108 skb_pull(skb
, HIPPI_HLEN
);
111 * No fancy promisc stuff here now.
114 return hip
->snap
.ethertype
;
117 EXPORT_SYMBOL(hippi_type_trans
);
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.
123 int hippi_mac_addr(struct net_device
*dev
, void *p
)
125 struct sockaddr
*addr
= p
;
126 if (netif_running(dev
))
128 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
131 EXPORT_SYMBOL(hippi_mac_addr
);
133 int hippi_neigh_setup_dev(struct net_device
*dev
, struct neigh_parms
*p
)
135 /* Never send broadcast/multicast ARP messages */
136 NEIGH_VAR_INIT(p
, MCAST_PROBES
, 0);
138 /* In IPv6 unicast probes are valid even on NBMA,
139 * because they are encapsulated in normal IPv6 protocol.
140 * Should be a generic flag.
142 if (p
->tbl
->family
!= AF_INET6
)
143 NEIGH_VAR_INIT(p
, UCAST_PROBES
, 0);
146 EXPORT_SYMBOL(hippi_neigh_setup_dev
);
148 static const struct header_ops hippi_header_ops
= {
149 .create
= hippi_header
,
153 static void hippi_setup(struct net_device
*dev
)
155 dev
->header_ops
= &hippi_header_ops
;
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.
162 dev
->type
= ARPHRD_HIPPI
;
163 dev
->hard_header_len
= HIPPI_HLEN
;
166 dev
->max_mtu
= 65280;
167 dev
->addr_len
= HIPPI_ALEN
;
168 dev
->tx_queue_len
= 25 /* 5 */;
169 memset(dev
->broadcast
, 0xFF, HIPPI_ALEN
);
173 * HIPPI doesn't support broadcast+multicast and we only use
174 * static ARP tables. ARP is disabled by hippi_neigh_setup_dev.
180 * alloc_hippi_dev - Register HIPPI device
181 * @sizeof_priv: Size of additional driver-private structure to be allocated
182 * for this HIPPI device
184 * Fill in the fields of the device structure with HIPPI-generic values.
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.
191 struct net_device
*alloc_hippi_dev(int sizeof_priv
)
193 return alloc_netdev(sizeof_priv
, "hip%d", NET_NAME_UNKNOWN
,
197 EXPORT_SYMBOL(alloc_hippi_dev
);