OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [net/] [802/] [fc.c] - Diff between revs 1275 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1275 Rev 1765
/*
/*
 * NET3:        Fibre Channel device handling subroutines
 * NET3:        Fibre Channel device handling subroutines
 *
 *
 *              This program is free software; you can redistribute it and/or
 *              This program is free software; you can redistribute it and/or
 *              modify it under the terms of the GNU General Public License
 *              modify it under the terms of the GNU General Public License
 *              as published by the Free Software Foundation; either version
 *              as published by the Free Software Foundation; either version
 *              2 of the License, or (at your option) any later version.
 *              2 of the License, or (at your option) any later version.
 *
 *
 *              Vineet Abraham <vma@iol.unh.edu>
 *              Vineet Abraham <vma@iol.unh.edu>
 *              v 1.0 03/22/99
 *              v 1.0 03/22/99
 */
 */
 
 
#include <linux/config.h>
#include <linux/config.h>
#include <linux/module.h>
#include <linux/module.h>
 
 
#include <asm/uaccess.h>
#include <asm/uaccess.h>
#include <asm/system.h>
#include <asm/system.h>
#include <linux/types.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/mm.h>
#include <linux/socket.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/netdevice.h>
#include <linux/fcdevice.h>
#include <linux/fcdevice.h>
#include <linux/skbuff.h>
#include <linux/skbuff.h>
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/timer.h>
#include <linux/timer.h>
#include <linux/net.h>
#include <linux/net.h>
#include <linux/proc_fs.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/init.h>
#include <net/arp.h>
#include <net/arp.h>
 
 
/*
/*
 *      Put the headers on a Fibre Channel packet.
 *      Put the headers on a Fibre Channel packet.
 */
 */
 
 
int fc_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
int fc_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
              void *daddr, void *saddr, unsigned len)
              void *daddr, void *saddr, unsigned len)
{
{
        struct fch_hdr *fch;
        struct fch_hdr *fch;
        int hdr_len;
        int hdr_len;
 
 
        /*
        /*
         * Add the 802.2 SNAP header if IP as the IPv4 code calls
         * Add the 802.2 SNAP header if IP as the IPv4 code calls
         * dev->hard_header directly.
         * dev->hard_header directly.
         */
         */
        if (type == ETH_P_IP || type == ETH_P_ARP)
        if (type == ETH_P_IP || type == ETH_P_ARP)
        {
        {
                struct fcllc *fcllc=(struct fcllc *)(fch+1);
                struct fcllc *fcllc=(struct fcllc *)(fch+1);
 
 
                hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
                hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
                fch = (struct fch_hdr *)skb_push(skb, hdr_len);
                fch = (struct fch_hdr *)skb_push(skb, hdr_len);
                fcllc = (struct fcllc *)(fch+1);
                fcllc = (struct fcllc *)(fch+1);
                fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
                fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
                fcllc->llc = UI_CMD;
                fcllc->llc = UI_CMD;
                fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
                fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
                fcllc->ethertype = htons(type);
                fcllc->ethertype = htons(type);
        }
        }
        else
        else
        {
        {
                hdr_len = sizeof(struct fch_hdr);
                hdr_len = sizeof(struct fch_hdr);
                fch = (struct fch_hdr *)skb_push(skb, hdr_len);
                fch = (struct fch_hdr *)skb_push(skb, hdr_len);
        }
        }
 
 
        if(saddr)
        if(saddr)
                memcpy(fch->saddr,saddr,dev->addr_len);
                memcpy(fch->saddr,saddr,dev->addr_len);
        else
        else
                memcpy(fch->saddr,dev->dev_addr,dev->addr_len);
                memcpy(fch->saddr,dev->dev_addr,dev->addr_len);
 
 
        if(daddr)
        if(daddr)
        {
        {
                memcpy(fch->daddr,daddr,dev->addr_len);
                memcpy(fch->daddr,daddr,dev->addr_len);
                return(hdr_len);
                return(hdr_len);
        }
        }
        return -hdr_len;
        return -hdr_len;
}
}
 
 
/*
/*
 *      A neighbour discovery of some species (eg arp) has completed. We
 *      A neighbour discovery of some species (eg arp) has completed. We
 *      can now send the packet.
 *      can now send the packet.
 */
 */
 
 
int fc_rebuild_header(struct sk_buff *skb)
int fc_rebuild_header(struct sk_buff *skb)
{
{
        struct fch_hdr *fch=(struct fch_hdr *)skb->data;
        struct fch_hdr *fch=(struct fch_hdr *)skb->data;
        struct fcllc *fcllc=(struct fcllc *)(skb->data+sizeof(struct fch_hdr));
        struct fcllc *fcllc=(struct fcllc *)(skb->data+sizeof(struct fch_hdr));
        if(fcllc->ethertype != htons(ETH_P_IP)) {
        if(fcllc->ethertype != htons(ETH_P_IP)) {
                printk("fc_rebuild_header: Don't know how to resolve type %04X addresses ?\n",(unsigned int)htons(fcllc->ethertype));
                printk("fc_rebuild_header: Don't know how to resolve type %04X addresses ?\n",(unsigned int)htons(fcllc->ethertype));
                return 0;
                return 0;
        }
        }
#ifdef CONFIG_INET
#ifdef CONFIG_INET
        return arp_find(fch->daddr, skb);
        return arp_find(fch->daddr, skb);
#else
#else
        return 0;
        return 0;
#endif
#endif
}
}
 
 
EXPORT_SYMBOL(fc_type_trans);
EXPORT_SYMBOL(fc_type_trans);
 
 
unsigned short
unsigned short
fc_type_trans(struct sk_buff *skb, struct net_device *dev)
fc_type_trans(struct sk_buff *skb, struct net_device *dev)
{
{
        struct fch_hdr *fch = (struct fch_hdr *)skb->data;
        struct fch_hdr *fch = (struct fch_hdr *)skb->data;
        struct fcllc *fcllc;
        struct fcllc *fcllc;
 
 
        skb->mac.raw = skb->data;
        skb->mac.raw = skb->data;
        fcllc = (struct fcllc *)(skb->data + sizeof (struct fch_hdr) + 2);
        fcllc = (struct fcllc *)(skb->data + sizeof (struct fch_hdr) + 2);
        skb_pull(skb, sizeof (struct fch_hdr) + 2);
        skb_pull(skb, sizeof (struct fch_hdr) + 2);
 
 
        if (*fch->daddr & 1) {
        if (*fch->daddr & 1) {
                if (!memcmp(fch->daddr, dev->broadcast, FC_ALEN))
                if (!memcmp(fch->daddr, dev->broadcast, FC_ALEN))
                        skb->pkt_type = PACKET_BROADCAST;
                        skb->pkt_type = PACKET_BROADCAST;
                else
                else
                        skb->pkt_type = PACKET_MULTICAST;
                        skb->pkt_type = PACKET_MULTICAST;
        } else if (dev->flags & IFF_PROMISC) {
        } else if (dev->flags & IFF_PROMISC) {
                if (memcmp(fch->daddr, dev->dev_addr, FC_ALEN))
                if (memcmp(fch->daddr, dev->dev_addr, FC_ALEN))
                        skb->pkt_type = PACKET_OTHERHOST;
                        skb->pkt_type = PACKET_OTHERHOST;
        }
        }
 
 
        /*
        /*
         * Strip the SNAP header from ARP packets since we don't pass
         * Strip the SNAP header from ARP packets since we don't pass
         * them through to the 802.2/SNAP layers.
         * them through to the 802.2/SNAP layers.
         */
         */
        if (fcllc->dsap == EXTENDED_SAP &&
        if (fcllc->dsap == EXTENDED_SAP &&
            (fcllc->ethertype == ntohs(ETH_P_IP) ||
            (fcllc->ethertype == ntohs(ETH_P_IP) ||
             fcllc->ethertype == ntohs(ETH_P_ARP))) {
             fcllc->ethertype == ntohs(ETH_P_ARP))) {
                skb_pull(skb, sizeof (struct fcllc));
                skb_pull(skb, sizeof (struct fcllc));
                return fcllc->ethertype;
                return fcllc->ethertype;
        }
        }
 
 
        return ntohs(ETH_P_802_2);
        return ntohs(ETH_P_802_2);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.