blob: bd345f3d29f855f9792c4ebdf69c2aabee2d0021 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET3: Fibre Channel device handling subroutines
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +09003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Vineet Abraham <vma@iol.unh.edu>
10 * v 1.0 03/22/99
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/uaccess.h>
14#include <asm/system.h>
15#include <linux/types.h>
16#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/string.h>
18#include <linux/mm.h>
19#include <linux/socket.h>
20#include <linux/in.h>
21#include <linux/inet.h>
22#include <linux/netdevice.h>
23#include <linux/fcdevice.h>
24#include <linux/skbuff.h>
25#include <linux/errno.h>
26#include <linux/timer.h>
27#include <linux/net.h>
28#include <linux/proc_fs.h>
29#include <linux/init.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040030#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <net/arp.h>
32
33/*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090034 * Put the headers on a Fibre Channel packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static int fc_header(struct sk_buff *skb, struct net_device *dev,
38 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070039 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 struct fch_hdr *fch;
42 int hdr_len;
43
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090044 /*
45 * Add the 802.2 SNAP header if IP as the IPv4 code calls
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * dev->hard_header directly.
47 */
48 if (type == ETH_P_IP || type == ETH_P_ARP)
49 {
50 struct fcllc *fcllc;
51
52 hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
53 fch = (struct fch_hdr *)skb_push(skb, hdr_len);
54 fcllc = (struct fcllc *)(fch+1);
55 fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
56 fcllc->llc = UI_CMD;
57 fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
58 fcllc->ethertype = htons(type);
59 }
60 else
61 {
62 hdr_len = sizeof(struct fch_hdr);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090063 fch = (struct fch_hdr *)skb_push(skb, hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
66 if(saddr)
67 memcpy(fch->saddr,saddr,dev->addr_len);
68 else
69 memcpy(fch->saddr,dev->dev_addr,dev->addr_len);
70
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090071 if(daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 {
73 memcpy(fch->daddr,daddr,dev->addr_len);
Eric Dumazeta02cec22010-09-22 20:43:57 +000074 return hdr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76 return -hdr_len;
77}
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * A neighbour discovery of some species (eg arp) has completed. We
81 * can now send the packet.
82 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090083
84static int fc_rebuild_header(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Manish Katiyardeb28d92008-10-15 00:13:53 -070086#ifdef CONFIG_INET
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 struct fch_hdr *fch=(struct fch_hdr *)skb->data;
88 struct fcllc *fcllc=(struct fcllc *)(skb->data+sizeof(struct fch_hdr));
89 if(fcllc->ethertype != htons(ETH_P_IP)) {
Alexey Dobriyan57bf1452005-08-25 16:06:19 -070090 printk("fc_rebuild_header: Don't know how to resolve type %04X addresses ?\n", ntohs(fcllc->ethertype));
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return 0;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return arp_find(fch->daddr, skb);
94#else
95 return 0;
96#endif
97}
98
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -070099static const struct header_ops fc_header_ops = {
100 .create = fc_header,
101 .rebuild = fc_rebuild_header,
102};
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static void fc_setup(struct net_device *dev)
105{
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700106 dev->header_ops = &fc_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 dev->type = ARPHRD_IEEE802;
108 dev->hard_header_len = FC_HLEN;
109 dev->mtu = 2024;
110 dev->addr_len = FC_ALEN;
111 dev->tx_queue_len = 100; /* Long queues on fc */
112 dev->flags = IFF_BROADCAST;
113
114 memset(dev->broadcast, 0xFF, FC_ALEN);
115}
116
117/**
118 * alloc_fcdev - Register fibre channel device
119 * @sizeof_priv: Size of additional driver-private structure to be allocated
120 * for this fibre channel device
121 *
122 * Fill in the fields of the device structure with fibre channel-generic values.
123 *
124 * Constructs a new net device, complete with a private data area of
125 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
126 * this private data area.
127 */
128struct net_device *alloc_fcdev(int sizeof_priv)
129{
130 return alloc_netdev(sizeof_priv, "fc%d", fc_setup);
131}
132EXPORT_SYMBOL(alloc_fcdev);