blob: 7533ce26ba5f82b4a3dfa29fbdda6b36e115a45d [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 * FDDI-type device handling.
8 *
9 * Version: @(#)fddi.c 1.0.0 08/12/96
10 *
11 * Authors: Lawrence V. Stefani, <stefani@lkg.dec.com>
12 *
13 * fddi.c is based on previous eth.c and tr.c work by
Jesper Juhl02c30a82005-05-05 16:16:16 -070014 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
16 * Mark Evans, <evansmp@uhura.aston.ac.uk>
17 * Florian La Roche, <rzsfl@rz.uni-sb.de>
18 * Alan Cox, <gw4pts@gw4pts.ampr.org>
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090019 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * Changes
21 * Alan Cox : New arp/rebuild header
22 * Maciej W. Rozycki : IPv6 support
23 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/types.h>
27#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/string.h>
29#include <linux/mm.h>
30#include <linux/socket.h>
31#include <linux/in.h>
32#include <linux/inet.h>
33#include <linux/netdevice.h>
34#include <linux/fddidevice.h>
35#include <linux/if_ether.h>
36#include <linux/skbuff.h>
37#include <linux/errno.h>
38#include <net/arp.h>
39#include <net/sock.h>
40
41/*
42 * Create the FDDI MAC header for an arbitrary protocol layer
43 *
44 * saddr=NULL means use device source address
45 * daddr=NULL means leave destination address (eg unresolved arp)
46 */
47
48static int fddi_header(struct sk_buff *skb, struct net_device *dev,
49 unsigned short type,
Eric Dumazet95c96172012-04-15 05:58:06 +000050 const void *daddr, const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 int hl = FDDI_K_SNAP_HLEN;
53 struct fddihdr *fddi;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 if(type != ETH_P_IP && type != ETH_P_IPV6 && type != ETH_P_ARP)
56 hl=FDDI_K_8022_HLEN-3;
Johannes Bergd58ff352017-06-16 14:29:23 +020057 fddi = skb_push(skb, hl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 fddi->fc = FDDI_FC_K_ASYNC_LLC_DEF;
59 if(type == ETH_P_IP || type == ETH_P_IPV6 || type == ETH_P_ARP)
60 {
61 fddi->hdr.llc_snap.dsap = FDDI_EXTENDED_SAP;
62 fddi->hdr.llc_snap.ssap = FDDI_EXTENDED_SAP;
63 fddi->hdr.llc_snap.ctrl = FDDI_UI_CMD;
64 fddi->hdr.llc_snap.oui[0] = 0x00;
65 fddi->hdr.llc_snap.oui[1] = 0x00;
66 fddi->hdr.llc_snap.oui[2] = 0x00;
67 fddi->hdr.llc_snap.ethertype = htons(type);
68 }
69
70 /* Set the source and destination hardware addresses */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (saddr != NULL)
73 memcpy(fddi->saddr, saddr, dev->addr_len);
74 else
75 memcpy(fddi->saddr, dev->dev_addr, dev->addr_len);
76
77 if (daddr != NULL)
78 {
79 memcpy(fddi->daddr, daddr, dev->addr_len);
Eric Dumazeta02cec22010-09-22 20:43:57 +000080 return hl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82
Eric Dumazeta02cec22010-09-22 20:43:57 +000083 return -hl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/*
87 * Determine the packet's protocol ID and fill in skb fields.
88 * This routine is called before an incoming packet is passed
89 * up. It's used to fill in specific skb fields and to set
90 * the proper pointer to the start of packet data (skb->data).
91 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090092
Alexey Dobriyanab611482005-07-12 12:08:43 -070093__be16 fddi_type_trans(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct fddihdr *fddi = (struct fddihdr *)skb->data;
Alexey Dobriyanab611482005-07-12 12:08:43 -070096 __be16 type;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /*
99 * Set mac.raw field to point to FC byte, set data field to point
100 * to start of packet data. Assume 802.2 SNAP frames for now.
101 */
102
Arnaldo Carvalho de Melo0a4f23f2007-03-10 10:57:13 -0300103 skb->dev = dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700104 skb_reset_mac_header(skb); /* point to frame control (FC) */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if(fddi->hdr.llc_8022_1.dsap==0xe0)
107 {
108 skb_pull(skb, FDDI_K_8022_HLEN-3);
YOSHIFUJI Hideaki2953fd22007-03-25 20:11:55 -0700109 type = htons(ETH_P_802_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 else
112 {
113 skb_pull(skb, FDDI_K_SNAP_HLEN); /* adjust for 21 byte header */
114 type=fddi->hdr.llc_snap.ethertype;
115 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* Set packet type based on destination address and flag settings */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (*fddi->daddr & 0x01)
120 {
121 if (memcmp(fddi->daddr, dev->broadcast, FDDI_K_ALEN) == 0)
122 skb->pkt_type = PACKET_BROADCAST;
123 else
124 skb->pkt_type = PACKET_MULTICAST;
125 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 else if (dev->flags & IFF_PROMISC)
128 {
129 if (memcmp(fddi->daddr, dev->dev_addr, FDDI_K_ALEN))
130 skb->pkt_type = PACKET_OTHERHOST;
131 }
132
133 /* Assume 802.2 SNAP frames, for now */
134
Eric Dumazeta02cec22010-09-22 20:43:57 +0000135 return type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138EXPORT_SYMBOL(fddi_type_trans);
139
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700140static const struct header_ops fddi_header_ops = {
141 .create = fddi_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700142};
143
Stephen Hemminger145186a32008-11-20 20:29:48 -0800144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static void fddi_setup(struct net_device *dev)
146{
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700147 dev->header_ops = &fddi_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 dev->type = ARPHRD_FDDI;
149 dev->hard_header_len = FDDI_K_SNAP_HLEN+3; /* Assume 802.2 SNAP hdr len + 3 pad bytes */
150 dev->mtu = FDDI_K_SNAP_DLEN; /* Assume max payload of 802.2 SNAP frame */
Jarod Wilsonb3e38932016-10-20 13:55:22 -0400151 dev->min_mtu = FDDI_K_SNAP_HLEN;
152 dev->max_mtu = FDDI_K_SNAP_DLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 dev->addr_len = FDDI_K_ALEN;
154 dev->tx_queue_len = 100; /* Long queues on FDDI */
155 dev->flags = IFF_BROADCAST | IFF_MULTICAST;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 memset(dev->broadcast, 0xFF, FDDI_K_ALEN);
158}
159
160/**
161 * alloc_fddidev - Register FDDI device
162 * @sizeof_priv: Size of additional driver-private structure to be allocated
163 * for this FDDI device
164 *
165 * Fill in the fields of the device structure with FDDI-generic values.
166 *
167 * Constructs a new net device, complete with a private data area of
168 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
169 * this private data area.
170 */
171struct net_device *alloc_fddidev(int sizeof_priv)
172{
Tom Gundersenc835a672014-07-14 16:37:24 +0200173 return alloc_netdev(sizeof_priv, "fddi%d", NET_NAME_UNKNOWN,
174 fddi_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176EXPORT_SYMBOL(alloc_fddidev);
Adrian Bunkd9677a42009-04-05 06:36:21 +0000177
178MODULE_LICENSE("GPL");