/*1* INET An implementation of the TCP/IP protocol suite for the LINUX2* operating system. INET is implemented using the BSD Socket3* interface as the means of communication with the user level.4*5* FDDI-type device handling.6*7* Version: @(#)fddi.c 1.0.0 08/12/968*9* Authors: Lawrence V. Stefani, <[email protected]>10*11* fddi.c is based on previous eth.c and tr.c work by12* Ross Biro13* Fred N. van Kempen, <[email protected]>14* Mark Evans, <[email protected]>15* Florian La Roche, <[email protected]>16* Alan Cox, <[email protected]>17*18* This program is free software; you can redistribute it and/or19* modify it under the terms of the GNU General Public License20* as published by the Free Software Foundation; either version21* 2 of the License, or (at your option) any later version.22*23* Changes24* Alan Cox : New arp/rebuild header25* Maciej W. Rozycki : IPv6 support26*/2728#include <linux/module.h>29#include <asm/system.h>30#include <linux/types.h>31#include <linux/kernel.h>32#include <linux/string.h>33#include <linux/mm.h>34#include <linux/socket.h>35#include <linux/in.h>36#include <linux/inet.h>37#include <linux/netdevice.h>38#include <linux/fddidevice.h>39#include <linux/if_ether.h>40#include <linux/skbuff.h>41#include <linux/errno.h>42#include <net/arp.h>43#include <net/sock.h>4445/*46* Create the FDDI MAC header for an arbitrary protocol layer47*48* saddr=NULL means use device source address49* daddr=NULL means leave destination address (eg unresolved arp)50*/5152static int fddi_header(struct sk_buff *skb, struct net_device *dev,53unsigned short type,54const void *daddr, const void *saddr, unsigned len)55{56int hl = FDDI_K_SNAP_HLEN;57struct fddihdr *fddi;5859if(type != ETH_P_IP && type != ETH_P_IPV6 && type != ETH_P_ARP)60hl=FDDI_K_8022_HLEN-3;61fddi = (struct fddihdr *)skb_push(skb, hl);62fddi->fc = FDDI_FC_K_ASYNC_LLC_DEF;63if(type == ETH_P_IP || type == ETH_P_IPV6 || type == ETH_P_ARP)64{65fddi->hdr.llc_snap.dsap = FDDI_EXTENDED_SAP;66fddi->hdr.llc_snap.ssap = FDDI_EXTENDED_SAP;67fddi->hdr.llc_snap.ctrl = FDDI_UI_CMD;68fddi->hdr.llc_snap.oui[0] = 0x00;69fddi->hdr.llc_snap.oui[1] = 0x00;70fddi->hdr.llc_snap.oui[2] = 0x00;71fddi->hdr.llc_snap.ethertype = htons(type);72}7374/* Set the source and destination hardware addresses */7576if (saddr != NULL)77memcpy(fddi->saddr, saddr, dev->addr_len);78else79memcpy(fddi->saddr, dev->dev_addr, dev->addr_len);8081if (daddr != NULL)82{83memcpy(fddi->daddr, daddr, dev->addr_len);84return hl;85}8687return -hl;88}899091/*92* Rebuild the FDDI MAC header. This is called after an ARP93* (or in future other address resolution) has completed on94* this sk_buff. We now let ARP fill in the other fields.95*/9697static int fddi_rebuild_header(struct sk_buff *skb)98{99struct fddihdr *fddi = (struct fddihdr *)skb->data;100101#ifdef CONFIG_INET102if (fddi->hdr.llc_snap.ethertype == htons(ETH_P_IP))103/* Try to get ARP to resolve the header and fill destination address */104return arp_find(fddi->daddr, skb);105else106#endif107{108printk("%s: Don't know how to resolve type %04X addresses.\n",109skb->dev->name, ntohs(fddi->hdr.llc_snap.ethertype));110return 0;111}112}113114115/*116* Determine the packet's protocol ID and fill in skb fields.117* This routine is called before an incoming packet is passed118* up. It's used to fill in specific skb fields and to set119* the proper pointer to the start of packet data (skb->data).120*/121122__be16 fddi_type_trans(struct sk_buff *skb, struct net_device *dev)123{124struct fddihdr *fddi = (struct fddihdr *)skb->data;125__be16 type;126127/*128* Set mac.raw field to point to FC byte, set data field to point129* to start of packet data. Assume 802.2 SNAP frames for now.130*/131132skb->dev = dev;133skb_reset_mac_header(skb); /* point to frame control (FC) */134135if(fddi->hdr.llc_8022_1.dsap==0xe0)136{137skb_pull(skb, FDDI_K_8022_HLEN-3);138type = htons(ETH_P_802_2);139}140else141{142skb_pull(skb, FDDI_K_SNAP_HLEN); /* adjust for 21 byte header */143type=fddi->hdr.llc_snap.ethertype;144}145146/* Set packet type based on destination address and flag settings */147148if (*fddi->daddr & 0x01)149{150if (memcmp(fddi->daddr, dev->broadcast, FDDI_K_ALEN) == 0)151skb->pkt_type = PACKET_BROADCAST;152else153skb->pkt_type = PACKET_MULTICAST;154}155156else if (dev->flags & IFF_PROMISC)157{158if (memcmp(fddi->daddr, dev->dev_addr, FDDI_K_ALEN))159skb->pkt_type = PACKET_OTHERHOST;160}161162/* Assume 802.2 SNAP frames, for now */163164return type;165}166167EXPORT_SYMBOL(fddi_type_trans);168169int fddi_change_mtu(struct net_device *dev, int new_mtu)170{171if ((new_mtu < FDDI_K_SNAP_HLEN) || (new_mtu > FDDI_K_SNAP_DLEN))172return -EINVAL;173dev->mtu = new_mtu;174return 0;175}176EXPORT_SYMBOL(fddi_change_mtu);177178static const struct header_ops fddi_header_ops = {179.create = fddi_header,180.rebuild = fddi_rebuild_header,181};182183184static void fddi_setup(struct net_device *dev)185{186dev->header_ops = &fddi_header_ops;187dev->type = ARPHRD_FDDI;188dev->hard_header_len = FDDI_K_SNAP_HLEN+3; /* Assume 802.2 SNAP hdr len + 3 pad bytes */189dev->mtu = FDDI_K_SNAP_DLEN; /* Assume max payload of 802.2 SNAP frame */190dev->addr_len = FDDI_K_ALEN;191dev->tx_queue_len = 100; /* Long queues on FDDI */192dev->flags = IFF_BROADCAST | IFF_MULTICAST;193194memset(dev->broadcast, 0xFF, FDDI_K_ALEN);195}196197/**198* alloc_fddidev - Register FDDI device199* @sizeof_priv: Size of additional driver-private structure to be allocated200* for this FDDI device201*202* Fill in the fields of the device structure with FDDI-generic values.203*204* Constructs a new net device, complete with a private data area of205* size @sizeof_priv. A 32-byte (not bit) alignment is enforced for206* this private data area.207*/208struct net_device *alloc_fddidev(int sizeof_priv)209{210return alloc_netdev(sizeof_priv, "fddi%d", fddi_setup);211}212EXPORT_SYMBOL(alloc_fddidev);213214MODULE_LICENSE("GPL");215216217