2007-09-30 05:08:02 +02:00
|
|
|
/** @file
|
2009-01-16 01:09:52 +01:00
|
|
|
Definition for IP4 pesudo interface structure.
|
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-09-30 05:08:02 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __EFI_IP4_IF_H__
|
|
|
|
#define __EFI_IP4_IF_H__
|
|
|
|
|
2009-11-04 09:18:34 +01:00
|
|
|
#define IP4_FRAME_RX_SIGNATURE SIGNATURE_32 ('I', 'P', 'F', 'R')
|
|
|
|
#define IP4_FRAME_TX_SIGNATURE SIGNATURE_32 ('I', 'P', 'F', 'T')
|
|
|
|
#define IP4_FRAME_ARP_SIGNATURE SIGNATURE_32 ('I', 'P', 'F', 'A')
|
|
|
|
#define IP4_INTERFACE_SIGNATURE SIGNATURE_32 ('I', 'P', 'I', 'F')
|
2008-11-11 03:44:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
This prototype is used by both receive and transmission.
|
|
|
|
When receiving Netbuf is allocated by IP4_INTERFACE, and
|
|
|
|
released by IP4. Flag shows whether the frame is received
|
|
|
|
as link broadcast/multicast...
|
|
|
|
|
|
|
|
When transmitting, the Netbuf is from IP4, and provided
|
|
|
|
to the callback as a reference. Flag isn't used.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpInstance The instance that sent or received the packet.
|
|
|
|
IpInstance can be NULL which means that it is the IP4 driver
|
|
|
|
itself sending the packets. IP4 driver may send packets that
|
|
|
|
don't belong to any instance, such as ICMP errors, ICMP echo
|
|
|
|
responses, or IGMP packets. IpInstance is used as a tag in
|
|
|
|
this module.
|
|
|
|
@param[in] Packet The sent or received packet.
|
|
|
|
@param[in] IoStatus Status of sending or receiving.
|
|
|
|
@param[in] LinkFlag Indicate if the frame is received as link broadcast/multicast.
|
|
|
|
When transmitting, it is not used.
|
|
|
|
@param[in] Context Additional data for callback.
|
|
|
|
|
|
|
|
@retval None.
|
2008-11-11 03:44:30 +01:00
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
typedef
|
|
|
|
VOID
|
2008-11-11 03:44:30 +01:00
|
|
|
(*IP4_FRAME_CALLBACK)(
|
2009-01-16 01:09:52 +01:00
|
|
|
IN IP4_PROTOCOL *IpInstance OPTIONAL,
|
2008-11-11 03:44:30 +01:00
|
|
|
IN NET_BUF *Packet,
|
|
|
|
IN EFI_STATUS IoStatus,
|
|
|
|
IN UINT32 LinkFlag,
|
|
|
|
IN VOID *Context
|
2007-09-30 05:08:02 +02:00
|
|
|
);
|
|
|
|
|
2008-11-11 10:23:25 +01:00
|
|
|
///
|
|
|
|
/// Each receive request is wrapped in an IP4_LINK_RX_TOKEN.
|
|
|
|
/// Upon completion, the Callback will be called. Only one
|
|
|
|
/// receive request is send to MNP. IpInstance is always NULL.
|
|
|
|
/// Reference MNP's spec for information.
|
|
|
|
///
|
2007-09-30 05:08:02 +02:00
|
|
|
typedef struct {
|
|
|
|
UINT32 Signature;
|
|
|
|
IP4_INTERFACE *Interface;
|
|
|
|
|
|
|
|
IP4_PROTOCOL *IpInstance;
|
|
|
|
IP4_FRAME_CALLBACK CallBack;
|
|
|
|
VOID *Context;
|
|
|
|
|
|
|
|
EFI_MANAGED_NETWORK_COMPLETION_TOKEN MnpToken;
|
|
|
|
} IP4_LINK_RX_TOKEN;
|
|
|
|
|
2008-11-11 10:23:25 +01:00
|
|
|
///
|
|
|
|
/// Each transmit request is wrapped in an IP4_LINK_TX_TOKEN.
|
|
|
|
/// Upon completion, the Callback will be called.
|
|
|
|
///
|
2007-09-30 05:08:02 +02:00
|
|
|
typedef struct {
|
|
|
|
UINT32 Signature;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY Link;
|
2007-09-30 05:08:02 +02:00
|
|
|
|
|
|
|
IP4_INTERFACE *Interface;
|
|
|
|
|
|
|
|
IP4_PROTOCOL *IpInstance;
|
|
|
|
IP4_FRAME_CALLBACK CallBack;
|
|
|
|
NET_BUF *Packet;
|
|
|
|
VOID *Context;
|
|
|
|
|
|
|
|
EFI_MAC_ADDRESS DstMac;
|
|
|
|
EFI_MAC_ADDRESS SrcMac;
|
|
|
|
|
|
|
|
EFI_MANAGED_NETWORK_COMPLETION_TOKEN MnpToken;
|
|
|
|
EFI_MANAGED_NETWORK_TRANSMIT_DATA MnpTxData;
|
|
|
|
} IP4_LINK_TX_TOKEN;
|
|
|
|
|
2008-11-11 10:23:25 +01:00
|
|
|
///
|
|
|
|
/// Only one ARP request is requested for all the frames in
|
|
|
|
/// a time. It is started for the first frames to the Ip. Any
|
|
|
|
/// subsequent transmission frame will be linked to Frames, and
|
|
|
|
/// be sent all at once the ARP requests succeed.
|
|
|
|
///
|
2007-09-30 05:08:02 +02:00
|
|
|
typedef struct {
|
|
|
|
UINT32 Signature;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY Link;
|
2007-09-30 05:08:02 +02:00
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY Frames;
|
2007-09-30 05:08:02 +02:00
|
|
|
IP4_INTERFACE *Interface;
|
|
|
|
|
|
|
|
//
|
|
|
|
// ARP requesting staffs
|
|
|
|
//
|
|
|
|
EFI_EVENT OnResolved;
|
|
|
|
IP4_ADDR Ip;
|
|
|
|
EFI_MAC_ADDRESS Mac;
|
|
|
|
} IP4_ARP_QUE;
|
|
|
|
|
2008-11-11 03:44:30 +01:00
|
|
|
/**
|
|
|
|
Callback to select which frame to cancel. Caller can cancel a
|
|
|
|
single frame, or all the frame from an IP instance.
|
|
|
|
|
|
|
|
@param Frame The sending frame to check for cancellation.
|
|
|
|
@param Context Additional data for callback.
|
|
|
|
|
|
|
|
@retval TRUE The sending of the frame should be cancelled.
|
|
|
|
@retval FALSE Do not cancel the frame sending.
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
typedef
|
|
|
|
BOOLEAN
|
2008-11-11 03:44:30 +01:00
|
|
|
(*IP4_FRAME_TO_CANCEL)(
|
2007-09-30 05:08:02 +02:00
|
|
|
IP4_LINK_TX_TOKEN *Frame,
|
|
|
|
VOID *Context
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Each IP4 instance has its own station address. All the instances
|
|
|
|
// with the same station address share a single interface structure.
|
|
|
|
// Each interface has its own ARP child, and shares one MNP child.
|
|
|
|
// Notice the special cases that DHCP can configure the interface
|
|
|
|
// with 0.0.0.0/0.0.0.0.
|
|
|
|
//
|
2008-11-12 02:14:36 +01:00
|
|
|
struct _IP4_INTERFACE {
|
2007-09-30 05:08:02 +02:00
|
|
|
UINT32 Signature;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY Link;
|
2007-09-30 05:08:02 +02:00
|
|
|
INTN RefCnt;
|
|
|
|
|
|
|
|
//
|
|
|
|
// IP address and subnet mask of the interface. It also contains
|
|
|
|
// the subnet/net broadcast address for quick access. The fileds
|
|
|
|
// are invalid if (Configured == FALSE)
|
|
|
|
//
|
|
|
|
IP4_ADDR Ip;
|
|
|
|
IP4_ADDR SubnetMask;
|
|
|
|
IP4_ADDR SubnetBrdcast;
|
|
|
|
IP4_ADDR NetBrdcast;
|
|
|
|
BOOLEAN Configured;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Handle used to create/destory ARP child. All the IP children
|
|
|
|
// share one MNP which is owned by IP service binding.
|
|
|
|
//
|
|
|
|
EFI_HANDLE Controller;
|
|
|
|
EFI_HANDLE Image;
|
|
|
|
|
|
|
|
EFI_MANAGED_NETWORK_PROTOCOL *Mnp;
|
|
|
|
EFI_ARP_PROTOCOL *Arp;
|
|
|
|
EFI_HANDLE ArpHandle;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Queues to keep the frames sent and waiting ARP request.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY ArpQues;
|
|
|
|
LIST_ENTRY SentFrames;
|
2007-09-30 05:08:02 +02:00
|
|
|
IP4_LINK_RX_TOKEN *RecvRequest;
|
|
|
|
|
|
|
|
//
|
|
|
|
// The interface's MAC and broadcast MAC address.
|
|
|
|
//
|
|
|
|
EFI_MAC_ADDRESS Mac;
|
|
|
|
EFI_MAC_ADDRESS BroadcastMac;
|
|
|
|
UINT32 HwaddrLen;
|
|
|
|
|
|
|
|
//
|
|
|
|
// All the IP instances that have the same IP/SubnetMask are linked
|
|
|
|
// together through IpInstances. If any of the instance enables
|
|
|
|
// promiscuous receive, PromiscRecv is true.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY IpInstances;
|
2007-09-30 05:08:02 +02:00
|
|
|
BOOLEAN PromiscRecv;
|
2008-11-12 02:14:36 +01:00
|
|
|
};
|
2007-09-30 05:08:02 +02:00
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Create an IP4_INTERFACE. Delay the creation of ARP instance until
|
|
|
|
the interface is configured.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Mnp The shared MNP child of this IP4 service binding
|
2008-11-18 10:29:44 +01:00
|
|
|
instance
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Controller The controller this IP4 service binding instance
|
2008-11-18 10:29:44 +01:00
|
|
|
is installed. Most like the UNDI handle.
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] ImageHandle This driver's image handle
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
@return Point to the created IP4_INTERFACE, otherwise NULL.
|
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
IP4_INTERFACE *
|
|
|
|
Ip4CreateInterface (
|
|
|
|
IN EFI_MANAGED_NETWORK_PROTOCOL *Mnp,
|
|
|
|
IN EFI_HANDLE Controller,
|
|
|
|
IN EFI_HANDLE ImageHandle
|
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Set the interface's address, create and configure
|
|
|
|
the ARP child if necessary.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param Interface The interface to set the address
|
|
|
|
@param IpAddr The interface's IP address
|
|
|
|
@param SubnetMask The interface's netmask
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS The interface is configured with Ip/netmask pair,
|
|
|
|
and a ARP is created for it.
|
|
|
|
@retval Others Failed to set the interface's address.
|
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
EFI_STATUS
|
|
|
|
Ip4SetAddress (
|
2008-11-18 10:29:44 +01:00
|
|
|
IN OUT IP4_INTERFACE *Interface,
|
|
|
|
IN IP4_ADDR IpAddr,
|
|
|
|
IN IP4_ADDR SubnetMask
|
2007-09-30 05:08:02 +02:00
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Free the interface used by IpInstance. All the IP instance with
|
|
|
|
the same Ip/Netmask pair share the same interface. It is reference
|
|
|
|
counted. All the frames haven't been sent will be cancelled.
|
|
|
|
Because the IpInstance is optional, the caller must remove
|
|
|
|
IpInstance from the interface's instance list itself.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Interface The interface used by the IpInstance
|
|
|
|
@param[in] IpInstance The Ip instance that free the interface. NULL if
|
2008-11-18 10:29:44 +01:00
|
|
|
the Ip driver is releasing the default interface.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The interface use IpInstance is freed.
|
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
EFI_STATUS
|
|
|
|
Ip4FreeInterface (
|
|
|
|
IN IP4_INTERFACE *Interface,
|
2008-11-18 10:29:44 +01:00
|
|
|
IN IP4_PROTOCOL *IpInstance OPTIONAL
|
2007-09-30 05:08:02 +02:00
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Send a frame from the interface. If the next hop is broadcast or
|
|
|
|
multicast address, it is transmitted immediately. If the next hop
|
|
|
|
is a unicast, it will consult ARP to resolve the NextHop's MAC.
|
|
|
|
If some error happened, the CallBack won't be called. So, the caller
|
|
|
|
must test the return value, and take action when there is an error.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Interface The interface to send the frame from
|
|
|
|
@param[in] IpInstance The IP child that request the transmission. NULL
|
2008-11-18 10:29:44 +01:00
|
|
|
if it is the IP4 driver itself.
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Packet The packet to transmit.
|
|
|
|
@param[in] NextHop The immediate destination to transmit the packet
|
2008-11-18 10:29:44 +01:00
|
|
|
to.
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] CallBack Function to call back when transmit finished.
|
|
|
|
@param[in] Context Opaque parameter to the call back.
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Failed to allocate resource to send the frame
|
|
|
|
@retval EFI_NO_MAPPING Can't resolve the MAC for the nexthop
|
|
|
|
@retval EFI_SUCCESS The packet is successfully transmitted.
|
|
|
|
@retval other Other error occurs.
|
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
EFI_STATUS
|
|
|
|
Ip4SendFrame (
|
|
|
|
IN IP4_INTERFACE *Interface,
|
2009-01-16 01:16:17 +01:00
|
|
|
IN IP4_PROTOCOL *IpInstance OPTIONAL,
|
2007-09-30 05:08:02 +02:00
|
|
|
IN NET_BUF *Packet,
|
|
|
|
IN IP4_ADDR NextHop,
|
|
|
|
IN IP4_FRAME_CALLBACK CallBack,
|
|
|
|
IN VOID *Context
|
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Remove all the frames on the interface that pass the FrameToCancel,
|
|
|
|
either queued on ARP queues or that have already been delivered to
|
|
|
|
MNP and not yet recycled.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Interface Interface to remove the frames from
|
|
|
|
@param[in] IoStatus The transmit status returned to the frames'
|
2008-11-18 10:29:44 +01:00
|
|
|
callback
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] FrameToCancel Function to select the frame to cancel, NULL to
|
2008-11-18 10:29:44 +01:00
|
|
|
select all
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Context Opaque parameters passed to FrameToCancel
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
VOID
|
|
|
|
Ip4CancelFrames (
|
|
|
|
IN IP4_INTERFACE *Interface,
|
|
|
|
IN EFI_STATUS IoStatus,
|
2009-01-16 01:16:17 +01:00
|
|
|
IN IP4_FRAME_TO_CANCEL FrameToCancel OPTIONAL,
|
2007-09-30 05:08:02 +02:00
|
|
|
IN VOID *Context
|
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
If there is a pending receive request, cancel it. Don't call
|
|
|
|
the receive request's callback because this function can be only
|
|
|
|
called if the instance or driver is tearing itself down. It
|
|
|
|
doesn't make sense to call it back. But it is necessary to call
|
|
|
|
the transmit token's callback to give it a chance to free the
|
|
|
|
packet and update the upper layer's transmit request status, say
|
|
|
|
that from the UDP.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Interface The interface used by the IpInstance
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
VOID
|
|
|
|
Ip4CancelReceive (
|
|
|
|
IN IP4_INTERFACE *Interface
|
|
|
|
);
|
|
|
|
|
2008-11-18 10:29:44 +01:00
|
|
|
/**
|
|
|
|
Request to receive the packet from the interface.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Interface The interface to receive the frames from
|
|
|
|
@param[in] IpInstance The instance that requests the receive. NULL for
|
2008-11-18 10:29:44 +01:00
|
|
|
the driver itself.
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] CallBack Function to call when receive finished.
|
|
|
|
@param[in] Context Opaque parameter to the callback
|
2008-11-18 10:29:44 +01:00
|
|
|
|
|
|
|
@retval EFI_ALREADY_STARTED There is already a pending receive request.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Failed to allocate resource to receive
|
|
|
|
@retval EFI_SUCCESS The recieve request has been started.
|
|
|
|
@retval other Other error occurs.
|
|
|
|
|
|
|
|
**/
|
2007-09-30 05:08:02 +02:00
|
|
|
EFI_STATUS
|
|
|
|
Ip4ReceiveFrame (
|
|
|
|
IN IP4_INTERFACE *Interface,
|
2009-01-16 01:16:17 +01:00
|
|
|
IN IP4_PROTOCOL *IpInstance OPTIONAL,
|
2007-09-30 05:08:02 +02:00
|
|
|
IN IP4_FRAME_CALLBACK CallBack,
|
|
|
|
IN VOID *Context
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|