2007-07-30 04:37:10 +02:00
|
|
|
/** @file
|
2009-01-16 01:09:52 +01:00
|
|
|
IP4 input process.
|
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-07-30 04:37:10 +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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "Ip4Impl.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-11 10:23:25 +01:00
|
|
|
Create an empty assemble entry for the packet identified by
|
2007-07-30 04:37:10 +02:00
|
|
|
(Dst, Src, Id, Protocol). The default life for the packet is
|
|
|
|
120 seconds.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Dst The destination address
|
|
|
|
@param[in] Src The source address
|
|
|
|
@param[in] Id The ID field in IP header
|
|
|
|
@param[in] Protocol The protocol field in IP header
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@return NULL if failed to allocate memory for the entry, otherwise
|
2009-01-16 01:09:52 +01:00
|
|
|
the point to just created reassemble entry.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
IP4_ASSEMBLE_ENTRY *
|
|
|
|
Ip4CreateAssembleEntry (
|
|
|
|
IN IP4_ADDR Dst,
|
|
|
|
IN IP4_ADDR Src,
|
|
|
|
IN UINT16 Id,
|
|
|
|
IN UINT8 Protocol
|
|
|
|
)
|
|
|
|
{
|
|
|
|
|
|
|
|
IP4_ASSEMBLE_ENTRY *Assemble;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
Assemble = AllocatePool (sizeof (IP4_ASSEMBLE_ENTRY));
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
if (Assemble == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
InitializeListHead (&Assemble->Link);
|
|
|
|
InitializeListHead (&Assemble->Fragments);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
Assemble->Dst = Dst;
|
|
|
|
Assemble->Src = Src;
|
|
|
|
Assemble->Id = Id;
|
|
|
|
Assemble->Protocol = Protocol;
|
|
|
|
Assemble->TotalLen = 0;
|
|
|
|
Assemble->CurLen = 0;
|
|
|
|
Assemble->Head = NULL;
|
|
|
|
Assemble->Info = NULL;
|
|
|
|
Assemble->Life = IP4_FRAGMENT_LIFE;
|
|
|
|
|
|
|
|
return Assemble;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-11 10:23:25 +01:00
|
|
|
Release all the fragments of a packet, then free the assemble entry.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Assemble The assemble entry to free
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4FreeAssembleEntry (
|
|
|
|
IN IP4_ASSEMBLE_ENTRY *Assemble
|
|
|
|
)
|
|
|
|
{
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Entry;
|
|
|
|
LIST_ENTRY *Next;
|
2007-07-30 04:37:10 +02:00
|
|
|
NET_BUF *Fragment;
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH_SAFE (Entry, Next, &Assemble->Fragments) {
|
|
|
|
Fragment = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (Entry);
|
2007-07-30 04:37:10 +02:00
|
|
|
NetbufFree (Fragment);
|
|
|
|
}
|
|
|
|
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Assemble);
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Initialize an already allocated assemble table. This is generally
|
|
|
|
the assemble table embedded in the IP4 service instance.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in, out] Table The assemble table to initialize.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4InitAssembleTable (
|
2008-11-11 10:23:25 +01:00
|
|
|
IN OUT IP4_ASSEMBLE_TABLE *Table
|
2007-07-30 04:37:10 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
UINT32 Index;
|
|
|
|
|
|
|
|
for (Index = 0; Index < IP4_ASSEMLE_HASH_SIZE; Index++) {
|
2008-02-14 10:40:22 +01:00
|
|
|
InitializeListHead (&Table->Bucket[Index]);
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Clean up the assemble table: remove all the fragments
|
|
|
|
and assemble entries.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Table The assemble table to clean up
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4CleanAssembleTable (
|
|
|
|
IN IP4_ASSEMBLE_TABLE *Table
|
|
|
|
)
|
|
|
|
{
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Entry;
|
|
|
|
LIST_ENTRY *Next;
|
2007-07-30 04:37:10 +02:00
|
|
|
IP4_ASSEMBLE_ENTRY *Assemble;
|
|
|
|
UINT32 Index;
|
|
|
|
|
|
|
|
for (Index = 0; Index < IP4_ASSEMLE_HASH_SIZE; Index++) {
|
|
|
|
NET_LIST_FOR_EACH_SAFE (Entry, Next, &Table->Bucket[Index]) {
|
|
|
|
Assemble = NET_LIST_USER_STRUCT (Entry, IP4_ASSEMBLE_ENTRY, Link);
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (Entry);
|
2007-07-30 04:37:10 +02:00
|
|
|
Ip4FreeAssembleEntry (Assemble);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Trim the packet to fit in [Start, End), and update the per
|
|
|
|
packet information.
|
|
|
|
|
|
|
|
@param Packet Packet to trim
|
|
|
|
@param Start The sequence of the first byte to fit in
|
|
|
|
@param End One beyond the sequence of last byte to fit in.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4TrimPacket (
|
2008-11-11 10:23:25 +01:00
|
|
|
IN OUT NET_BUF *Packet,
|
|
|
|
IN INTN Start,
|
|
|
|
IN INTN End
|
2007-07-30 04:37:10 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_CLIP_INFO *Info;
|
|
|
|
INTN Len;
|
|
|
|
|
|
|
|
Info = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
|
|
|
|
ASSERT (Info->Start + Info->Length == Info->End);
|
|
|
|
ASSERT ((Info->Start < End) && (Start < Info->End));
|
|
|
|
|
|
|
|
if (Info->Start < Start) {
|
|
|
|
Len = Start - Info->Start;
|
|
|
|
|
|
|
|
NetbufTrim (Packet, (UINT32) Len, NET_BUF_HEAD);
|
|
|
|
Info->Start = Start;
|
|
|
|
Info->Length -= Len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (End < Info->End) {
|
|
|
|
Len = End - Info->End;
|
|
|
|
|
|
|
|
NetbufTrim (Packet, (UINT32) Len, NET_BUF_TAIL);
|
|
|
|
Info->End = End;
|
|
|
|
Info->Length -= Len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Release all the fragments of the packet. This is the callback for
|
|
|
|
the assembled packet's OnFree. It will free the assemble entry,
|
|
|
|
which in turn will free all the fragments of the packet.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] Arg The assemble entry to free
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
2010-04-17 01:24:45 +02:00
|
|
|
EFIAPI
|
2007-07-30 04:37:10 +02:00
|
|
|
Ip4OnFreeFragments (
|
|
|
|
IN VOID *Arg
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Ip4FreeAssembleEntry ((IP4_ASSEMBLE_ENTRY *) Arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Reassemble the IP fragments. If all the fragments of the packet
|
|
|
|
have been received, it will wrap the packet in a net buffer then
|
|
|
|
return it to caller. If the packet can't be assembled, NULL is
|
|
|
|
return.
|
|
|
|
|
2008-11-11 10:23:25 +01:00
|
|
|
@param Table The assemble table used. New assemble entry will be created
|
|
|
|
if the Packet is from a new chain of fragments.
|
|
|
|
@param Packet The fragment to assemble. It might be freed if the fragment
|
|
|
|
can't be re-assembled.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@return NULL if the packet can't be reassemble. The point to just assembled
|
2008-11-11 10:23:25 +01:00
|
|
|
packet if all the fragments of the packet have arrived.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
NET_BUF *
|
|
|
|
Ip4Reassemble (
|
2008-11-11 10:23:25 +01:00
|
|
|
IN OUT IP4_ASSEMBLE_TABLE *Table,
|
|
|
|
IN OUT NET_BUF *Packet
|
2007-07-30 04:37:10 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_HEAD *IpHead;
|
|
|
|
IP4_CLIP_INFO *This;
|
|
|
|
IP4_CLIP_INFO *Node;
|
|
|
|
IP4_ASSEMBLE_ENTRY *Assemble;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Head;
|
|
|
|
LIST_ENTRY *Prev;
|
|
|
|
LIST_ENTRY *Cur;
|
2007-07-30 04:37:10 +02:00
|
|
|
NET_BUF *Fragment;
|
|
|
|
NET_BUF *NewPacket;
|
|
|
|
INTN Index;
|
|
|
|
|
2009-11-04 09:18:34 +01:00
|
|
|
IpHead = Packet->Ip.Ip4;
|
2007-07-30 04:37:10 +02:00
|
|
|
This = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
|
|
|
|
ASSERT (IpHead != NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// First: find the related assemble entry
|
|
|
|
//
|
|
|
|
Assemble = NULL;
|
|
|
|
Index = IP4_ASSEMBLE_HASH (IpHead->Dst, IpHead->Src, IpHead->Id, IpHead->Protocol);
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Cur, &Table->Bucket[Index]) {
|
|
|
|
Assemble = NET_LIST_USER_STRUCT (Cur, IP4_ASSEMBLE_ENTRY, Link);
|
|
|
|
|
|
|
|
if ((Assemble->Dst == IpHead->Dst) && (Assemble->Src == IpHead->Src) &&
|
|
|
|
(Assemble->Id == IpHead->Id) && (Assemble->Protocol == IpHead->Protocol)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create a new assemble entry if no assemble entry is related to this packet
|
|
|
|
//
|
|
|
|
if (Cur == &Table->Bucket[Index]) {
|
|
|
|
Assemble = Ip4CreateAssembleEntry (
|
|
|
|
IpHead->Dst,
|
|
|
|
IpHead->Src,
|
|
|
|
IpHead->Id,
|
|
|
|
IpHead->Protocol
|
|
|
|
);
|
|
|
|
|
|
|
|
if (Assemble == NULL) {
|
|
|
|
goto DROP;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
InsertHeadList (&Table->Bucket[Index], &Assemble->Link);
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
2009-06-29 11:19:25 +02:00
|
|
|
//
|
|
|
|
// Assemble shouldn't be NULL here
|
|
|
|
//
|
|
|
|
ASSERT (Assemble != NULL);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Find the point to insert the packet: before the first
|
|
|
|
// fragment with THIS.Start < CUR.Start. the previous one
|
|
|
|
// has PREV.Start <= THIS.Start < CUR.Start.
|
|
|
|
//
|
|
|
|
Head = &Assemble->Fragments;
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Cur, Head) {
|
|
|
|
Fragment = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
|
|
|
|
|
|
|
|
if (This->Start < IP4_GET_CLIP_INFO (Fragment)->Start) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether the current fragment overlaps with the previous one.
|
|
|
|
// It holds that: PREV.Start <= THIS.Start < THIS.End. Only need to
|
|
|
|
// check whether THIS.Start < PREV.End for overlap. If two fragments
|
|
|
|
// overlaps, trim the overlapped part off THIS fragment.
|
|
|
|
//
|
2010-05-21 11:39:26 +02:00
|
|
|
if ((Cur != Head) && ((Prev = Cur->BackLink) != Head)) {
|
2007-07-30 04:37:10 +02:00
|
|
|
Fragment = NET_LIST_USER_STRUCT (Prev, NET_BUF, List);
|
|
|
|
Node = IP4_GET_CLIP_INFO (Fragment);
|
|
|
|
|
|
|
|
if (This->Start < Node->End) {
|
|
|
|
if (This->End <= Node->End) {
|
|
|
|
NetbufFree (Packet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ip4TrimPacket (Packet, Node->End, This->End);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Insert the fragment into the packet. The fragment may be removed
|
|
|
|
// from the list by the following checks.
|
|
|
|
//
|
|
|
|
NetListInsertBefore (Cur, &Packet->List);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check the packets after the insert point. It holds that:
|
|
|
|
// THIS.Start <= NODE.Start < NODE.End. The equality holds
|
|
|
|
// if PREV and NEXT are continuous. THIS fragment may fill
|
|
|
|
// several holes. Remove the completely overlapped fragments
|
|
|
|
//
|
|
|
|
while (Cur != Head) {
|
|
|
|
Fragment = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
|
|
|
|
Node = IP4_GET_CLIP_INFO (Fragment);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Remove fragments completely overlapped by this fragment
|
|
|
|
//
|
|
|
|
if (Node->End <= This->End) {
|
|
|
|
Cur = Cur->ForwardLink;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Fragment->List);
|
2007-07-30 04:37:10 +02:00
|
|
|
Assemble->CurLen -= Node->Length;
|
|
|
|
|
|
|
|
NetbufFree (Fragment);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// The conditions are: THIS.Start <= NODE.Start, and THIS.End <
|
|
|
|
// NODE.End. Two fragments overlaps if NODE.Start < THIS.End.
|
|
|
|
// If two fragments start at the same offset, remove THIS fragment
|
|
|
|
// because ((THIS.Start == NODE.Start) && (THIS.End < NODE.End)).
|
|
|
|
//
|
|
|
|
if (Node->Start < This->End) {
|
|
|
|
if (This->Start == Node->Start) {
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Packet->List);
|
2007-07-30 04:37:10 +02:00
|
|
|
goto DROP;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ip4TrimPacket (Packet, This->Start, Node->Start);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Update the assemble info: increase the current length. If it is
|
|
|
|
// the frist fragment, update the packet's IP head and per packet
|
|
|
|
// info. If it is the last fragment, update the total length.
|
|
|
|
//
|
|
|
|
Assemble->CurLen += This->Length;
|
|
|
|
|
|
|
|
if (This->Start == 0) {
|
|
|
|
//
|
|
|
|
// Once the first fragment is enqueued, it can't be removed
|
|
|
|
// from the fragment list. So, Assemble->Head always point
|
|
|
|
// to valid memory area.
|
|
|
|
//
|
|
|
|
ASSERT (Assemble->Head == NULL);
|
|
|
|
|
|
|
|
Assemble->Head = IpHead;
|
|
|
|
Assemble->Info = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Don't update the length more than once.
|
|
|
|
//
|
|
|
|
if (IP4_LAST_FRAGMENT (IpHead->Fragment) && (Assemble->TotalLen == 0)) {
|
|
|
|
Assemble->TotalLen = This->End;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Deliver the whole packet if all the fragments received.
|
|
|
|
// All fragments received if:
|
2008-11-11 10:23:25 +01:00
|
|
|
// 1. received the last one, so, the total length is know
|
2007-07-30 04:37:10 +02:00
|
|
|
// 2. received all the data. If the last fragment on the
|
|
|
|
// queue ends at the total length, all data is received.
|
|
|
|
//
|
|
|
|
if ((Assemble->TotalLen != 0) && (Assemble->CurLen >= Assemble->TotalLen)) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Assemble->Link);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// If the packet is properly formated, the last fragment's End
|
|
|
|
// equals to the packet's total length. Otherwise, the packet
|
|
|
|
// is a fake, drop it now.
|
|
|
|
//
|
|
|
|
Fragment = NET_LIST_USER_STRUCT (Head->BackLink, NET_BUF, List);
|
|
|
|
|
|
|
|
if (IP4_GET_CLIP_INFO (Fragment)->End != Assemble->TotalLen) {
|
|
|
|
Ip4FreeAssembleEntry (Assemble);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Wrap the packet in a net buffer then deliver it up
|
|
|
|
//
|
|
|
|
NewPacket = NetbufFromBufList (
|
|
|
|
&Assemble->Fragments,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
Ip4OnFreeFragments,
|
|
|
|
Assemble
|
|
|
|
);
|
|
|
|
|
|
|
|
if (NewPacket == NULL) {
|
|
|
|
Ip4FreeAssembleEntry (Assemble);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-04 09:18:34 +01:00
|
|
|
NewPacket->Ip.Ip4 = Assemble->Head;
|
2007-08-23 04:19:41 +02:00
|
|
|
CopyMem (IP4_GET_CLIP_INFO (NewPacket), Assemble->Info, sizeof (*IP4_GET_CLIP_INFO (NewPacket)));
|
2007-07-30 04:37:10 +02:00
|
|
|
return NewPacket;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
DROP:
|
|
|
|
NetbufFree (Packet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-11 08:06:27 +01:00
|
|
|
/**
|
|
|
|
The callback function for the net buffer which wraps the packet processed by
|
|
|
|
IPsec. It releases the wrap packet and also signals IPsec to free the resources.
|
|
|
|
|
|
|
|
@param[in] Arg The wrap context
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
2010-04-17 01:24:45 +02:00
|
|
|
EFIAPI
|
2009-11-11 08:06:27 +01:00
|
|
|
Ip4IpSecFree (
|
|
|
|
IN VOID *Arg
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_IPSEC_WRAP *Wrap;
|
|
|
|
|
|
|
|
Wrap = (IP4_IPSEC_WRAP *) Arg;
|
|
|
|
|
|
|
|
if (Wrap->IpSecRecycleSignal != NULL) {
|
|
|
|
gBS->SignalEvent (Wrap->IpSecRecycleSignal);
|
|
|
|
}
|
|
|
|
|
|
|
|
NetbufFree (Wrap->Packet);
|
|
|
|
|
|
|
|
FreePool (Wrap);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
The work function to locate IPsec protocol to process the inbound or
|
|
|
|
outbound IP packets. The process routine handls the packet with following
|
|
|
|
actions: bypass the packet, discard the packet, or protect the packet.
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
@param[in] IpSb The IP4 service instance.
|
|
|
|
@param[in, out] Head The The caller supplied IP4 header.
|
|
|
|
@param[in, out] Netbuf The IP4 packet to be processed by IPsec.
|
|
|
|
@param[in, out] Options The caller supplied options.
|
|
|
|
@param[in, out] OptionsLen The length of the option.
|
2009-11-11 08:06:27 +01:00
|
|
|
@param[in] Direction The directionality in an SPD entry,
|
2010-10-15 07:40:41 +02:00
|
|
|
EfiIPsecInBound or EfiIPsecOutBound.
|
|
|
|
@param[in] Context The token's wrap.
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS The IPsec protocol is not available or disabled.
|
|
|
|
@retval EFI_SUCCESS The packet was bypassed and all buffers remain the same.
|
|
|
|
@retval EFI_SUCCESS The packet was protected.
|
|
|
|
@retval EFI_ACCESS_DENIED The packet was discarded.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There is no suffcient resource to complete the operation.
|
|
|
|
@retval EFI_BUFFER_TOO_SMALL The number of non-empty block is bigger than the
|
|
|
|
number of input data blocks when build a fragment table.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
Ip4IpSecProcessPacket (
|
2010-10-15 07:40:41 +02:00
|
|
|
IN IP4_SERVICE *IpSb,
|
|
|
|
IN OUT IP4_HEAD **Head,
|
|
|
|
IN OUT NET_BUF **Netbuf,
|
|
|
|
IN OUT UINT8 **Options,
|
|
|
|
IN OUT UINT32 *OptionsLen,
|
|
|
|
IN EFI_IPSEC_TRAFFIC_DIR Direction,
|
|
|
|
IN VOID *Context
|
2009-11-11 08:06:27 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
NET_FRAGMENT *FragmentTable;
|
2010-10-15 07:40:41 +02:00
|
|
|
NET_FRAGMENT *OriginalFragmentTable;
|
2009-11-11 08:06:27 +01:00
|
|
|
UINT32 FragmentCount;
|
2010-10-15 07:40:41 +02:00
|
|
|
UINT32 OriginalFragmentCount;
|
2009-11-11 08:06:27 +01:00
|
|
|
EFI_EVENT RecycleEvent;
|
|
|
|
NET_BUF *Packet;
|
|
|
|
IP4_TXTOKEN_WRAP *TxWrap;
|
|
|
|
IP4_IPSEC_WRAP *IpSecWrap;
|
|
|
|
EFI_STATUS Status;
|
2010-10-15 07:40:41 +02:00
|
|
|
IP4_HEAD ZeroHead;
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
Packet = *Netbuf;
|
|
|
|
RecycleEvent = NULL;
|
|
|
|
IpSecWrap = NULL;
|
|
|
|
FragmentTable = NULL;
|
|
|
|
TxWrap = (IP4_TXTOKEN_WRAP *) Context;
|
|
|
|
FragmentCount = Packet->BlockOpNum;
|
2010-10-15 07:40:41 +02:00
|
|
|
|
|
|
|
ZeroMem (&ZeroHead, sizeof (IP4_HEAD));
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
if (mIpSec == NULL) {
|
2011-04-20 12:01:48 +02:00
|
|
|
gBS->LocateProtocol (&gEfiIpSec2ProtocolGuid, NULL, (VOID **) &mIpSec);
|
2010-08-20 08:29:55 +02:00
|
|
|
if (mIpSec == NULL) {
|
|
|
|
goto ON_EXIT;
|
2009-11-11 08:06:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether the IPsec enable variable is set.
|
|
|
|
//
|
|
|
|
if (mIpSec->DisabledFlag) {
|
|
|
|
//
|
|
|
|
// If IPsec is disabled, restore the original MTU
|
|
|
|
//
|
|
|
|
IpSb->MaxPacketSize = IpSb->OldMaxPacketSize;
|
|
|
|
goto ON_EXIT;
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// If IPsec is enabled, use the MTU which reduce the IPsec header length.
|
|
|
|
//
|
|
|
|
IpSb->MaxPacketSize = IpSb->OldMaxPacketSize - IP4_MAX_IPSEC_HEADLEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Rebuild fragment table from netbuf to ease IPsec process.
|
|
|
|
//
|
|
|
|
FragmentTable = AllocateZeroPool (FragmentCount * sizeof (NET_FRAGMENT));
|
|
|
|
|
|
|
|
if (FragmentTable == NULL) {
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status = NetbufBuildExt (Packet, FragmentTable, &FragmentCount);
|
2010-10-15 07:40:41 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Record the original FragmentTable and count.
|
|
|
|
//
|
|
|
|
OriginalFragmentTable = FragmentTable;
|
|
|
|
OriginalFragmentCount = FragmentCount;
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
FreePool (FragmentTable);
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Convert host byte order to network byte order
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
Ip4NtohHead (*Head);
|
2009-11-11 08:06:27 +01:00
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
Status = mIpSec->ProcessExt (
|
2009-11-11 08:06:27 +01:00
|
|
|
mIpSec,
|
|
|
|
IpSb->Controller,
|
|
|
|
IP_VERSION_4,
|
2010-10-15 07:40:41 +02:00
|
|
|
(VOID *) (*Head),
|
|
|
|
&(*Head)->Protocol,
|
2010-10-20 14:19:06 +02:00
|
|
|
(VOID **) Options,
|
2010-10-15 07:40:41 +02:00
|
|
|
OptionsLen,
|
2009-11-11 08:06:27 +01:00
|
|
|
(EFI_IPSEC_FRAGMENT_DATA **) (&FragmentTable),
|
|
|
|
&FragmentCount,
|
|
|
|
Direction,
|
|
|
|
&RecycleEvent
|
|
|
|
);
|
|
|
|
//
|
|
|
|
// Convert back to host byte order
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
Ip4NtohHead (*Head);
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
if (OriginalFragmentTable == FragmentTable && OriginalFragmentCount == FragmentCount) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2009-11-11 08:06:27 +01:00
|
|
|
if (Direction == EfiIPsecOutBound && TxWrap != NULL) {
|
|
|
|
|
|
|
|
TxWrap->IpSecRecycleSignal = RecycleEvent;
|
|
|
|
TxWrap->Packet = NetbufFromExt (
|
|
|
|
FragmentTable,
|
|
|
|
FragmentCount,
|
|
|
|
IP4_MAX_HEADLEN,
|
|
|
|
0,
|
|
|
|
Ip4FreeTxToken,
|
|
|
|
TxWrap
|
|
|
|
);
|
|
|
|
if (TxWrap->Packet == NULL) {
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
//
|
|
|
|
// Free orginal Netbuf.
|
|
|
|
//
|
|
|
|
NetIpSecNetbufFree (*Netbuf);
|
2009-11-11 08:06:27 +01:00
|
|
|
*Netbuf = TxWrap->Packet;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
IpSecWrap = AllocateZeroPool (sizeof (IP4_IPSEC_WRAP));
|
|
|
|
|
|
|
|
if (IpSecWrap == NULL) {
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
IpSecWrap->IpSecRecycleSignal = RecycleEvent;
|
|
|
|
IpSecWrap->Packet = Packet;
|
|
|
|
Packet = NetbufFromExt (
|
|
|
|
FragmentTable,
|
|
|
|
FragmentCount,
|
|
|
|
IP4_MAX_HEADLEN,
|
|
|
|
0,
|
|
|
|
Ip4IpSecFree,
|
|
|
|
IpSecWrap
|
|
|
|
);
|
|
|
|
|
|
|
|
if (Packet == NULL) {
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
if (Direction == EfiIPsecInBound && 0 != CompareMem (*Head, &ZeroHead, sizeof (IP4_HEAD))) {
|
|
|
|
Ip4PrependHead (Packet, *Head, *Options, *OptionsLen);
|
2009-11-11 08:06:27 +01:00
|
|
|
Ip4NtohHead (Packet->Ip.Ip4);
|
2010-10-15 07:40:41 +02:00
|
|
|
NetbufTrim (Packet, ((*Head)->HeadLen << 2), TRUE);
|
2009-11-11 08:06:27 +01:00
|
|
|
|
|
|
|
CopyMem (
|
|
|
|
IP4_GET_CLIP_INFO (Packet),
|
|
|
|
IP4_GET_CLIP_INFO (IpSecWrap->Packet),
|
|
|
|
sizeof (IP4_CLIP_INFO)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
*Netbuf = Packet;
|
|
|
|
}
|
|
|
|
|
|
|
|
ON_EXIT:
|
|
|
|
return Status;
|
|
|
|
}
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
/**
|
2010-10-15 07:40:41 +02:00
|
|
|
Pre-process the IPv4 packet. First validates the IPv4 packet, and
|
|
|
|
then reassembles packet if it is necessary.
|
|
|
|
|
|
|
|
@param[in] IpSb Pointer to IP4_SERVICE.
|
|
|
|
@param[in, out] Packet Pointer to the Packet to be processed.
|
|
|
|
@param[in] Head Pointer to the IP4_HEAD.
|
|
|
|
@param[in] Option Pointer to a buffer which contains the IPv4 option.
|
|
|
|
@param[in] OptionLen The length of Option in bytes.
|
|
|
|
@param[in] Flag The link layer flag for the packet received, such
|
|
|
|
as multicast.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
@retval EFI_SEUCCESS The recieved packet is in well form.
|
|
|
|
@retval EFI_INVAILD_PARAMETER The recieved packet is malformed.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
2010-10-15 07:40:41 +02:00
|
|
|
EFI_STATUS
|
|
|
|
Ip4PreProcessPacket (
|
|
|
|
IN IP4_SERVICE *IpSb,
|
|
|
|
IN OUT NET_BUF **Packet,
|
|
|
|
IN IP4_HEAD *Head,
|
|
|
|
IN UINT8 *Option,
|
|
|
|
IN UINT32 OptionLen,
|
|
|
|
IN UINT32 Flag
|
|
|
|
)
|
2007-07-30 04:37:10 +02:00
|
|
|
{
|
|
|
|
IP4_CLIP_INFO *Info;
|
|
|
|
UINT32 HeadLen;
|
|
|
|
UINT32 TotalLen;
|
|
|
|
UINT16 Checksum;
|
|
|
|
|
|
|
|
//
|
2008-11-11 10:23:25 +01:00
|
|
|
// Check that the IP4 header is correctly formatted
|
2007-07-30 04:37:10 +02:00
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
if ((*Packet)->TotalSize < IP4_MIN_HEADLEN) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
2010-10-15 07:40:41 +02:00
|
|
|
|
2007-07-30 04:37:10 +02:00
|
|
|
HeadLen = (Head->HeadLen << 2);
|
|
|
|
TotalLen = NTOHS (Head->TotalLen);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Mnp may deliver frame trailer sequence up, trim it off.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
if (TotalLen < (*Packet)->TotalSize) {
|
|
|
|
NetbufTrim (*Packet, (*Packet)->TotalSize - TotalLen, FALSE);
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((Head->Ver != 4) || (HeadLen < IP4_MIN_HEADLEN) ||
|
2010-10-15 07:40:41 +02:00
|
|
|
(TotalLen < HeadLen) || (TotalLen != (*Packet)->TotalSize)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Some OS may send IP packets without checksum.
|
|
|
|
//
|
2007-08-23 04:19:41 +02:00
|
|
|
Checksum = (UINT16) (~NetblockChecksum ((UINT8 *) Head, HeadLen));
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
if ((Head->Checksum != 0) && (Checksum != 0)) {
|
2010-10-15 07:40:41 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Convert the IP header to host byte order, then get the per packet info.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
(*Packet)->Ip.Ip4 = Ip4NtohHead (Head);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
Info = IP4_GET_CLIP_INFO (*Packet);
|
2007-07-30 04:37:10 +02:00
|
|
|
Info->LinkFlag = Flag;
|
|
|
|
Info->CastType = Ip4GetHostCast (IpSb, Head->Dst, Head->Src);
|
|
|
|
Info->Start = (Head->Fragment & IP4_HEAD_OFFSET_MASK) << 3;
|
|
|
|
Info->Length = Head->TotalLen - HeadLen;
|
|
|
|
Info->End = Info->Start + Info->Length;
|
|
|
|
Info->Status = EFI_SUCCESS;
|
|
|
|
|
|
|
|
//
|
|
|
|
// The packet is destinated to us if the CastType is non-zero.
|
|
|
|
//
|
|
|
|
if ((Info->CastType == 0) || (Info->End > IP4_MAX_PACKET_SIZE)) {
|
2010-10-15 07:40:41 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Validate the options. Don't call the Ip4OptionIsValid if
|
|
|
|
// there is no option to save some CPU process.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
|
|
|
|
if ((OptionLen > 0) && !Ip4OptionIsValid (Option, OptionLen, TRUE)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Trim the head off, after this point, the packet is headless.
|
|
|
|
// and Packet->TotalLen == Info->Length.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
NetbufTrim (*Packet, HeadLen, TRUE);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Reassemble the packet if this is a fragment. The packet is a
|
|
|
|
// fragment if its head has MF (more fragment) set, or it starts
|
|
|
|
// at non-zero byte.
|
|
|
|
//
|
2009-02-06 07:08:46 +01:00
|
|
|
if (((Head->Fragment & IP4_HEAD_MF_MASK) != 0) || (Info->Start != 0)) {
|
2007-07-30 04:37:10 +02:00
|
|
|
//
|
|
|
|
// Drop the fragment if DF is set but it is fragmented. Gateway
|
|
|
|
// need to send a type 4 destination unreache ICMP message here.
|
|
|
|
//
|
2009-02-06 07:08:46 +01:00
|
|
|
if ((Head->Fragment & IP4_HEAD_DF_MASK) != 0) {
|
2010-10-15 07:40:41 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// The length of all but the last fragments is in the unit of 8 bytes.
|
|
|
|
//
|
2009-02-06 07:08:46 +01:00
|
|
|
if (((Head->Fragment & IP4_HEAD_MF_MASK) != 0) && (Info->Length % 8 != 0)) {
|
2010-10-15 07:40:41 +02:00
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
*Packet = Ip4Reassemble (&IpSb->Assemble, *Packet);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Packet assembly isn't complete, start receive more packet.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
if (*Packet == NULL) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
}
|
2010-10-15 07:40:41 +02:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
The IP4 input routine. It is called by the IP4_INTERFACE when a
|
|
|
|
IP4 fragment is received from MNP.
|
|
|
|
|
|
|
|
@param[in] Ip4Instance The IP4 child that request the receive, most like
|
|
|
|
it is NULL.
|
|
|
|
@param[in] Packet The IP4 packet received.
|
|
|
|
@param[in] IoStatus The return status of receive request.
|
|
|
|
@param[in] Flag The link layer flag for the packet received, such
|
|
|
|
as multicast.
|
|
|
|
@param[in] Context The IP4 service instance that own the MNP.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4AccpetFrame (
|
|
|
|
IN IP4_PROTOCOL *Ip4Instance,
|
|
|
|
IN NET_BUF *Packet,
|
|
|
|
IN EFI_STATUS IoStatus,
|
|
|
|
IN UINT32 Flag,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_SERVICE *IpSb;
|
|
|
|
IP4_HEAD *Head;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
IP4_HEAD ZeroHead;
|
|
|
|
UINT8 *Option;
|
|
|
|
UINT32 OptionLen;
|
|
|
|
|
|
|
|
IpSb = (IP4_SERVICE *) Context;
|
|
|
|
Option = NULL;
|
|
|
|
|
|
|
|
if (EFI_ERROR (IoStatus) || (IpSb->State == IP4_SERVICE_DESTORY)) {
|
|
|
|
goto DROP;
|
|
|
|
}
|
|
|
|
|
|
|
|
Head = (IP4_HEAD *) NetbufGetByte (Packet, 0, NULL);
|
|
|
|
OptionLen = (Head->HeadLen << 2) - IP4_MIN_HEADLEN;
|
|
|
|
if (OptionLen > 0) {
|
|
|
|
Option = (UINT8 *) (Head + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Validate packet format and reassemble packet if it is necessary.
|
|
|
|
//
|
|
|
|
Status = Ip4PreProcessPacket (
|
|
|
|
IpSb,
|
|
|
|
&Packet,
|
|
|
|
Head,
|
|
|
|
Option,
|
|
|
|
OptionLen,
|
|
|
|
Flag
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto RESTART;
|
|
|
|
}
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
2009-11-11 08:06:27 +01:00
|
|
|
// After trim off, the packet is a esp/ah/udp/tcp/icmp6 net buffer,
|
|
|
|
// and no need consider any other ahead ext headers.
|
|
|
|
//
|
|
|
|
Status = Ip4IpSecProcessPacket (
|
|
|
|
IpSb,
|
2010-10-15 07:40:41 +02:00
|
|
|
&Head,
|
2009-11-11 08:06:27 +01:00
|
|
|
&Packet,
|
2010-10-15 07:40:41 +02:00
|
|
|
&Option,
|
|
|
|
&OptionLen,
|
2009-11-11 08:06:27 +01:00
|
|
|
EfiIPsecInBound,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
|
2010-10-15 07:40:41 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2009-11-11 08:06:27 +01:00
|
|
|
goto RESTART;
|
|
|
|
}
|
2010-10-15 07:40:41 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// If the packet is protected by tunnel mode, parse the inner Ip Packet.
|
|
|
|
//
|
|
|
|
ZeroMem (&ZeroHead, sizeof (IP4_HEAD));
|
|
|
|
if (0 == CompareMem (Head, &ZeroHead, sizeof (IP4_HEAD))) {
|
2007-07-30 04:37:10 +02:00
|
|
|
// Packet may have been changed. Head, HeadLen, TotalLen, and
|
|
|
|
// info must be reloaded bofore use. The ownership of the packet
|
|
|
|
// is transfered to the packet process logic.
|
|
|
|
//
|
2010-10-15 07:40:41 +02:00
|
|
|
Head = (IP4_HEAD *) NetbufGetByte (Packet, 0, NULL);
|
|
|
|
Status = Ip4PreProcessPacket (
|
|
|
|
IpSb,
|
|
|
|
&Packet,
|
|
|
|
Head,
|
|
|
|
Option,
|
|
|
|
OptionLen,
|
|
|
|
Flag
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto RESTART;
|
|
|
|
}
|
|
|
|
}
|
2010-10-18 13:33:26 +02:00
|
|
|
|
|
|
|
ASSERT (Packet != NULL);
|
2009-11-04 09:18:34 +01:00
|
|
|
Head = Packet->Ip.Ip4;
|
2007-07-30 04:37:10 +02:00
|
|
|
IP4_GET_CLIP_INFO (Packet)->Status = EFI_SUCCESS;
|
|
|
|
|
|
|
|
switch (Head->Protocol) {
|
2009-11-04 09:18:34 +01:00
|
|
|
case EFI_IP_PROTO_ICMP:
|
2007-07-30 04:37:10 +02:00
|
|
|
Ip4IcmpHandle (IpSb, Head, Packet);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IP4_PROTO_IGMP:
|
|
|
|
Ip4IgmpHandle (IpSb, Head, Packet);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Ip4Demultiplex (IpSb, Head, Packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
Packet = NULL;
|
|
|
|
|
2007-11-20 06:42:23 +01:00
|
|
|
//
|
|
|
|
// Dispatch the DPCs queued by the NotifyFunction of the rx token's events
|
|
|
|
// which are signaled with received data.
|
|
|
|
//
|
2009-07-12 00:51:51 +02:00
|
|
|
DispatchDpc ();
|
2007-11-20 06:42:23 +01:00
|
|
|
|
2007-07-30 04:37:10 +02:00
|
|
|
RESTART:
|
|
|
|
Ip4ReceiveFrame (IpSb->DefaultInterface, NULL, Ip4AccpetFrame, IpSb);
|
|
|
|
|
|
|
|
DROP:
|
|
|
|
if (Packet != NULL) {
|
|
|
|
NetbufFree (Packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Check whether this IP child accepts the packet.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpInstance The IP child to check
|
|
|
|
@param[in] Head The IP header of the packet
|
|
|
|
@param[in] Packet The data of the packet
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2008-11-11 10:23:25 +01:00
|
|
|
@retval TRUE If the child wants to receive the packet.
|
|
|
|
@retval FALSE Otherwise.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
Ip4InstanceFrameAcceptable (
|
|
|
|
IN IP4_PROTOCOL *IpInstance,
|
|
|
|
IN IP4_HEAD *Head,
|
|
|
|
IN NET_BUF *Packet
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_ICMP_ERROR_HEAD Icmp;
|
|
|
|
EFI_IP4_CONFIG_DATA *Config;
|
|
|
|
IP4_CLIP_INFO *Info;
|
|
|
|
UINT16 Proto;
|
|
|
|
UINT32 Index;
|
|
|
|
|
|
|
|
Config = &IpInstance->ConfigData;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Dirty trick for the Tiano UEFI network stack implmentation. If
|
|
|
|
// ReceiveTimeout == -1, the receive of the packet for this instance
|
2008-11-11 10:23:25 +01:00
|
|
|
// is disabled. The UEFI spec don't have such capability. We add
|
2007-07-30 04:37:10 +02:00
|
|
|
// this to improve the performance because IP will make a copy of
|
|
|
|
// the received packet for each accepting instance. Some IP instances
|
|
|
|
// used by UDP/TCP only send packets, they don't wants to receive.
|
|
|
|
//
|
|
|
|
if (Config->ReceiveTimeout == (UINT32)(-1)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config->AcceptPromiscuous) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Use protocol from the IP header embedded in the ICMP error
|
|
|
|
// message to filter, instead of ICMP itself. ICMP handle will
|
2010-01-25 04:07:49 +01:00
|
|
|
// call Ip4Demultiplex to deliver ICMP errors.
|
2007-07-30 04:37:10 +02:00
|
|
|
//
|
|
|
|
Proto = Head->Protocol;
|
|
|
|
|
2010-01-25 04:07:49 +01:00
|
|
|
if ((Proto == EFI_IP_PROTO_ICMP) && (!Config->AcceptAnyProtocol) && (Proto != Config->DefaultProtocol)) {
|
2007-07-30 04:37:10 +02:00
|
|
|
NetbufCopy (Packet, 0, sizeof (Icmp.Head), (UINT8 *) &Icmp.Head);
|
|
|
|
|
|
|
|
if (mIcmpClass[Icmp.Head.Type].IcmpClass == ICMP_ERROR_MESSAGE) {
|
|
|
|
if (!Config->AcceptIcmpErrors) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NetbufCopy (Packet, 0, sizeof (Icmp), (UINT8 *) &Icmp);
|
|
|
|
Proto = Icmp.IpHead.Protocol;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Match the protocol
|
|
|
|
//
|
|
|
|
if (!Config->AcceptAnyProtocol && (Proto != Config->DefaultProtocol)) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check for broadcast, the caller has computed the packet's
|
|
|
|
// cast type for this child's interface.
|
|
|
|
//
|
|
|
|
Info = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
|
|
|
|
if (IP4_IS_BROADCAST (Info->CastType)) {
|
|
|
|
return Config->AcceptBroadcast;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// If it is a multicast packet, check whether we are in the group.
|
|
|
|
//
|
|
|
|
if (Info->CastType == IP4_MULTICAST) {
|
|
|
|
//
|
|
|
|
// Receive the multicast if the instance wants to receive all packets.
|
|
|
|
//
|
|
|
|
if (!IpInstance->ConfigData.UseDefaultAddress && (IpInstance->Interface->Ip == 0)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Index = 0; Index < IpInstance->GroupCount; Index++) {
|
|
|
|
if (IpInstance->Groups[Index] == HTONL (Head->Dst)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (BOOLEAN)(Index < IpInstance->GroupCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Enqueue a shared copy of the packet to the IP4 child if the
|
|
|
|
packet is acceptable to it. Here the data of the packet is
|
|
|
|
shared, but the net buffer isn't.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpInstance The IP4 child to enqueue the packet to
|
|
|
|
@param[in] Head The IP header of the received packet
|
|
|
|
@param[in] Packet The data of the received packet
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@retval EFI_NOT_STARTED The IP child hasn't been configured.
|
|
|
|
@retval EFI_INVALID_PARAMETER The child doesn't want to receive the packet
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Failed to allocate some resource
|
|
|
|
@retval EFI_SUCCESS A shared copy the packet is enqueued to the child.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
Ip4InstanceEnquePacket (
|
|
|
|
IN IP4_PROTOCOL *IpInstance,
|
|
|
|
IN IP4_HEAD *Head,
|
|
|
|
IN NET_BUF *Packet
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_CLIP_INFO *Info;
|
|
|
|
NET_BUF *Clone;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Check whether the packet is acceptable to this instance.
|
|
|
|
//
|
|
|
|
if (IpInstance->State != IP4_STATE_CONFIGED) {
|
|
|
|
return EFI_NOT_STARTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Ip4InstanceFrameAcceptable (IpInstance, Head, Packet)) {
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Enque a shared copy of the packet.
|
|
|
|
//
|
|
|
|
Clone = NetbufClone (Packet);
|
|
|
|
|
|
|
|
if (Clone == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set the receive time out for the assembled packet. If it expires,
|
|
|
|
// packet will be removed from the queue.
|
|
|
|
//
|
|
|
|
Info = IP4_GET_CLIP_INFO (Clone);
|
|
|
|
Info->Life = IP4_US_TO_SEC (IpInstance->ConfigData.ReceiveTimeout);
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
InsertTailList (&IpInstance->Received, &Clone->List);
|
2007-07-30 04:37:10 +02:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
The signal handle of IP4's recycle event. It is called back
|
|
|
|
when the upper layer release the packet.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param Event The IP4's recycle event.
|
|
|
|
@param Context The context of the handle, which is a
|
|
|
|
IP4_RXDATA_WRAP
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
Ip4OnRecyclePacket (
|
|
|
|
IN EFI_EVENT Event,
|
|
|
|
IN VOID *Context
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_RXDATA_WRAP *Wrap;
|
|
|
|
|
|
|
|
Wrap = (IP4_RXDATA_WRAP *) Context;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
EfiAcquireLockOrFail (&Wrap->IpInstance->RecycleLock);
|
|
|
|
RemoveEntryList (&Wrap->Link);
|
|
|
|
EfiReleaseLock (&Wrap->IpInstance->RecycleLock);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
ASSERT (!NET_BUF_SHARED (Wrap->Packet));
|
|
|
|
NetbufFree (Wrap->Packet);
|
|
|
|
|
|
|
|
gBS->CloseEvent (Wrap->RxData.RecycleSignal);
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Wrap);
|
2007-07-30 04:37:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Wrap the received packet to a IP4_RXDATA_WRAP, which will be
|
|
|
|
delivered to the upper layer. Each IP4 child that accepts the
|
|
|
|
packet will get a not-shared copy of the packet which is wrapped
|
|
|
|
in the IP4_RXDATA_WRAP. The IP4_RXDATA_WRAP->RxData is passed
|
|
|
|
to the upper layer. Upper layer will signal the recycle event in
|
|
|
|
it when it is done with the packet.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpInstance The IP4 child to receive the packet
|
|
|
|
@param[in] Packet The packet to deliver up.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@retval Wrap if warp the packet succeed.
|
|
|
|
@retval NULL failed to wrap the packet .
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
IP4_RXDATA_WRAP *
|
|
|
|
Ip4WrapRxData (
|
|
|
|
IN IP4_PROTOCOL *IpInstance,
|
|
|
|
IN NET_BUF *Packet
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_RXDATA_WRAP *Wrap;
|
|
|
|
EFI_IP4_RECEIVE_DATA *RxData;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
Wrap = AllocatePool (IP4_RXDATA_WRAP_SIZE (Packet->BlockOpNum));
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
if (Wrap == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
InitializeListHead (&Wrap->Link);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
Wrap->IpInstance = IpInstance;
|
|
|
|
Wrap->Packet = Packet;
|
|
|
|
RxData = &Wrap->RxData;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
ZeroMem (&RxData->TimeStamp, sizeof (EFI_TIME));
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
Status = gBS->CreateEvent (
|
|
|
|
EVT_NOTIFY_SIGNAL,
|
2008-02-14 10:40:22 +01:00
|
|
|
TPL_NOTIFY,
|
2007-07-30 04:37:10 +02:00
|
|
|
Ip4OnRecyclePacket,
|
|
|
|
Wrap,
|
|
|
|
&RxData->RecycleSignal
|
|
|
|
);
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2009-11-13 07:13:59 +01:00
|
|
|
FreePool (Wrap);
|
2007-07-30 04:37:10 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-04 09:18:34 +01:00
|
|
|
ASSERT (Packet->Ip.Ip4 != NULL);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// The application expects a network byte order header.
|
|
|
|
//
|
2009-11-04 09:18:34 +01:00
|
|
|
RxData->HeaderLength = (Packet->Ip.Ip4->HeadLen << 2);
|
|
|
|
RxData->Header = (EFI_IP4_HEADER *) Ip4NtohHead (Packet->Ip.Ip4);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
RxData->OptionsLength = RxData->HeaderLength - IP4_MIN_HEADLEN;
|
|
|
|
RxData->Options = NULL;
|
|
|
|
|
|
|
|
if (RxData->OptionsLength != 0) {
|
|
|
|
RxData->Options = (VOID *) (RxData->Header + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
RxData->DataLength = Packet->TotalSize;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Build the fragment table to be delivered up.
|
|
|
|
//
|
|
|
|
RxData->FragmentCount = Packet->BlockOpNum;
|
|
|
|
NetbufBuildExt (Packet, (NET_FRAGMENT *) RxData->FragmentTable, &RxData->FragmentCount);
|
|
|
|
|
|
|
|
return Wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Deliver the received packets to upper layer if there are both received
|
|
|
|
requests and enqueued packets. If the enqueued packet is shared, it will
|
|
|
|
duplicate it to a non-shared packet, release the shared packet, then
|
|
|
|
deliver the non-shared packet up.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpInstance The IP child to deliver the packet up.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Failed to allocate resources to deliver the
|
|
|
|
packets.
|
|
|
|
@retval EFI_SUCCESS All the enqueued packets that can be delivered
|
|
|
|
are delivered up.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
Ip4InstanceDeliverPacket (
|
|
|
|
IN IP4_PROTOCOL *IpInstance
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_IP4_COMPLETION_TOKEN *Token;
|
|
|
|
IP4_RXDATA_WRAP *Wrap;
|
|
|
|
NET_BUF *Packet;
|
|
|
|
NET_BUF *Dup;
|
|
|
|
UINT8 *Head;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Deliver a packet if there are both a packet and a receive token.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
while (!IsListEmpty (&IpInstance->Received) &&
|
2007-07-30 04:37:10 +02:00
|
|
|
!NetMapIsEmpty (&IpInstance->RxTokens)) {
|
|
|
|
|
|
|
|
Packet = NET_LIST_HEAD (&IpInstance->Received, NET_BUF, List);
|
|
|
|
|
|
|
|
if (!NET_BUF_SHARED (Packet)) {
|
|
|
|
//
|
|
|
|
// If this is the only instance that wants the packet, wrap it up.
|
|
|
|
//
|
|
|
|
Wrap = Ip4WrapRxData (IpInstance, Packet);
|
|
|
|
|
|
|
|
if (Wrap == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Packet->List);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// Create a duplicated packet if this packet is shared
|
|
|
|
//
|
|
|
|
Dup = NetbufDuplicate (Packet, NULL, IP4_MAX_HEADLEN);
|
|
|
|
|
|
|
|
if (Dup == NULL) {
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Copy the IP head over. The packet to deliver up is
|
|
|
|
// headless. Trim the head off after copy. The IP head
|
|
|
|
// may be not continuous before the data.
|
|
|
|
//
|
|
|
|
Head = NetbufAllocSpace (Dup, IP4_MAX_HEADLEN, NET_BUF_HEAD);
|
2009-11-04 09:18:34 +01:00
|
|
|
Dup->Ip.Ip4 = (IP4_HEAD *) Head;
|
2007-07-30 04:37:10 +02:00
|
|
|
|
2009-11-04 09:18:34 +01:00
|
|
|
CopyMem (Head, Packet->Ip.Ip4, Packet->Ip.Ip4->HeadLen << 2);
|
2007-07-30 04:37:10 +02:00
|
|
|
NetbufTrim (Dup, IP4_MAX_HEADLEN, TRUE);
|
|
|
|
|
|
|
|
Wrap = Ip4WrapRxData (IpInstance, Dup);
|
|
|
|
|
|
|
|
if (Wrap == NULL) {
|
|
|
|
NetbufFree (Dup);
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Packet->List);
|
2007-07-30 04:37:10 +02:00
|
|
|
NetbufFree (Packet);
|
|
|
|
|
|
|
|
Packet = Dup;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Insert it into the delivered packet, then get a user's
|
|
|
|
// receive token, pass the wrapped packet up.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
EfiAcquireLockOrFail (&IpInstance->RecycleLock);
|
|
|
|
InsertHeadList (&IpInstance->Delivered, &Wrap->Link);
|
|
|
|
EfiReleaseLock (&IpInstance->RecycleLock);
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
Token = NetMapRemoveHead (&IpInstance->RxTokens, NULL);
|
|
|
|
Token->Status = IP4_GET_CLIP_INFO (Packet)->Status;
|
|
|
|
Token->Packet.RxData = &Wrap->RxData;
|
|
|
|
|
|
|
|
gBS->SignalEvent (Token->Event);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Enqueue a received packet to all the IP children that share
|
|
|
|
the same interface.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpSb The IP4 service instance that receive the packet
|
|
|
|
@param[in] Head The header of the received packet
|
|
|
|
@param[in] Packet The data of the received packet
|
|
|
|
@param[in] IpIf The interface to enqueue the packet to
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@return The number of the IP4 children that accepts the packet
|
|
|
|
|
|
|
|
**/
|
|
|
|
INTN
|
|
|
|
Ip4InterfaceEnquePacket (
|
|
|
|
IN IP4_SERVICE *IpSb,
|
|
|
|
IN IP4_HEAD *Head,
|
|
|
|
IN NET_BUF *Packet,
|
|
|
|
IN IP4_INTERFACE *IpIf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_PROTOCOL *IpInstance;
|
|
|
|
IP4_CLIP_INFO *Info;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Entry;
|
2007-07-30 04:37:10 +02:00
|
|
|
INTN Enqueued;
|
|
|
|
INTN LocalType;
|
|
|
|
INTN SavedType;
|
|
|
|
|
|
|
|
//
|
|
|
|
// First, check that the packet is acceptable to this interface
|
|
|
|
// and find the local cast type for the interface. A packet sent
|
|
|
|
// to say 192.168.1.1 should NOT be delliever to 10.0.0.1 unless
|
|
|
|
// promiscuous receiving.
|
|
|
|
//
|
|
|
|
LocalType = 0;
|
|
|
|
Info = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
|
|
|
|
if ((Info->CastType == IP4_MULTICAST) || (Info->CastType == IP4_LOCAL_BROADCAST)) {
|
|
|
|
//
|
|
|
|
// If the CastType is multicast, don't need to filter against
|
|
|
|
// the group address here, Ip4InstanceFrameAcceptable will do
|
|
|
|
// that later.
|
|
|
|
//
|
|
|
|
LocalType = Info->CastType;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
//
|
|
|
|
// Check the destination againist local IP. If the station
|
|
|
|
// address is 0.0.0.0, it means receiving all the IP destined
|
|
|
|
// to local non-zero IP. Otherwise, it is necessary to compare
|
|
|
|
// the destination to the interface's IP address.
|
|
|
|
//
|
|
|
|
if (IpIf->Ip == IP4_ALLZERO_ADDRESS) {
|
|
|
|
LocalType = IP4_LOCAL_HOST;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
LocalType = Ip4GetNetCast (Head->Dst, IpIf);
|
|
|
|
|
|
|
|
if ((LocalType == 0) && IpIf->PromiscRecv) {
|
|
|
|
LocalType = IP4_PROMISCUOUS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LocalType == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Iterate through the ip instances on the interface, enqueue
|
|
|
|
// the packet if filter passed. Save the original cast type,
|
|
|
|
// and pass the local cast type to the IP children on the
|
|
|
|
// interface. The global cast type will be restored later.
|
|
|
|
//
|
|
|
|
SavedType = Info->CastType;
|
|
|
|
Info->CastType = LocalType;
|
|
|
|
|
|
|
|
Enqueued = 0;
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Entry, &IpIf->IpInstances) {
|
|
|
|
IpInstance = NET_LIST_USER_STRUCT (Entry, IP4_PROTOCOL, AddrLink);
|
|
|
|
NET_CHECK_SIGNATURE (IpInstance, IP4_PROTOCOL_SIGNATURE);
|
|
|
|
|
|
|
|
if (Ip4InstanceEnquePacket (IpInstance, Head, Packet) == EFI_SUCCESS) {
|
|
|
|
Enqueued++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Info->CastType = SavedType;
|
|
|
|
return Enqueued;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Deliver the packet for each IP4 child on the interface.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpSb The IP4 service instance that received the packet
|
|
|
|
@param[in] IpIf The IP4 interface to deliver the packet.
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@retval EFI_SUCCESS It always returns EFI_SUCCESS now
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
Ip4InterfaceDeliverPacket (
|
|
|
|
IN IP4_SERVICE *IpSb,
|
|
|
|
IN IP4_INTERFACE *IpIf
|
|
|
|
)
|
|
|
|
{
|
|
|
|
IP4_PROTOCOL *Ip4Instance;
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Entry;
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Entry, &IpIf->IpInstances) {
|
|
|
|
Ip4Instance = NET_LIST_USER_STRUCT (Entry, IP4_PROTOCOL, AddrLink);
|
|
|
|
Ip4InstanceDeliverPacket (Ip4Instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Demultiple the packet. the packet delivery is processed in two
|
|
|
|
passes. The first pass will enque a shared copy of the packet
|
|
|
|
to each IP4 child that accepts the packet. The second pass will
|
|
|
|
deliver a non-shared copy of the packet to each IP4 child that
|
|
|
|
has pending receive requests. Data is copied if more than one
|
2008-11-11 10:23:25 +01:00
|
|
|
child wants to consume the packet because each IP child needs
|
2007-07-30 04:37:10 +02:00
|
|
|
its own copy of the packet to make changes.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpSb The IP4 service instance that received the packet
|
|
|
|
@param[in] Head The header of the received packet
|
|
|
|
@param[in] Packet The data of the received packet
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
@retval EFI_NOT_FOUND No IP child accepts the packet
|
|
|
|
@retval EFI_SUCCESS The packet is enqueued or delivered to some IP
|
|
|
|
children.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
Ip4Demultiplex (
|
|
|
|
IN IP4_SERVICE *IpSb,
|
|
|
|
IN IP4_HEAD *Head,
|
|
|
|
IN NET_BUF *Packet
|
|
|
|
)
|
|
|
|
{
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *Entry;
|
2007-07-30 04:37:10 +02:00
|
|
|
IP4_INTERFACE *IpIf;
|
|
|
|
INTN Enqueued;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Two pass delivery: first, enque a shared copy of the packet
|
|
|
|
// to each instance that accept the packet.
|
|
|
|
//
|
|
|
|
Enqueued = 0;
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {
|
|
|
|
IpIf = NET_LIST_USER_STRUCT (Entry, IP4_INTERFACE, Link);
|
|
|
|
|
|
|
|
if (IpIf->Configured) {
|
|
|
|
Enqueued += Ip4InterfaceEnquePacket (IpSb, Head, Packet, IpIf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Second: deliver a duplicate of the packet to each instance.
|
|
|
|
// Release the local reference first, so that the last instance
|
|
|
|
// getting the packet will not copy the data.
|
|
|
|
//
|
|
|
|
NetbufFree (Packet);
|
|
|
|
|
|
|
|
if (Enqueued == 0) {
|
|
|
|
return EFI_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (Entry, &IpSb->Interfaces) {
|
|
|
|
IpIf = NET_LIST_USER_STRUCT (Entry, IP4_INTERFACE, Link);
|
|
|
|
|
|
|
|
if (IpIf->Configured) {
|
|
|
|
Ip4InterfaceDeliverPacket (IpSb, IpIf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Timeout the fragment and enqueued packets.
|
|
|
|
|
2009-01-16 01:09:52 +01:00
|
|
|
@param[in] IpSb The IP4 service instance to timeout
|
2007-07-30 04:37:10 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
Ip4PacketTimerTicking (
|
|
|
|
IN IP4_SERVICE *IpSb
|
|
|
|
)
|
|
|
|
{
|
2008-02-14 10:40:22 +01:00
|
|
|
LIST_ENTRY *InstanceEntry;
|
|
|
|
LIST_ENTRY *Entry;
|
|
|
|
LIST_ENTRY *Next;
|
2007-07-30 04:37:10 +02:00
|
|
|
IP4_PROTOCOL *IpInstance;
|
|
|
|
IP4_ASSEMBLE_ENTRY *Assemble;
|
|
|
|
NET_BUF *Packet;
|
|
|
|
IP4_CLIP_INFO *Info;
|
|
|
|
UINT32 Index;
|
|
|
|
|
|
|
|
//
|
|
|
|
// First, time out the fragments. The packet's life is counting down
|
|
|
|
// once the first-arrived fragment was received.
|
|
|
|
//
|
|
|
|
for (Index = 0; Index < IP4_ASSEMLE_HASH_SIZE; Index++) {
|
|
|
|
NET_LIST_FOR_EACH_SAFE (Entry, Next, &IpSb->Assemble.Bucket[Index]) {
|
|
|
|
Assemble = NET_LIST_USER_STRUCT (Entry, IP4_ASSEMBLE_ENTRY, Link);
|
|
|
|
|
|
|
|
if ((Assemble->Life > 0) && (--Assemble->Life == 0)) {
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (Entry);
|
2007-07-30 04:37:10 +02:00
|
|
|
Ip4FreeAssembleEntry (Assemble);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NET_LIST_FOR_EACH (InstanceEntry, &IpSb->Children) {
|
|
|
|
IpInstance = NET_LIST_USER_STRUCT (InstanceEntry, IP4_PROTOCOL, Link);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Second, time out the assembled packets enqueued on each IP child.
|
|
|
|
//
|
|
|
|
NET_LIST_FOR_EACH_SAFE (Entry, Next, &IpInstance->Received) {
|
|
|
|
Packet = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
|
|
|
|
Info = IP4_GET_CLIP_INFO (Packet);
|
|
|
|
|
|
|
|
if ((Info->Life > 0) && (--Info->Life == 0)) {
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (Entry);
|
2007-07-30 04:37:10 +02:00
|
|
|
NetbufFree (Packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Third: time out the transmitted packets.
|
|
|
|
//
|
|
|
|
NetMapIterate (&IpInstance->TxTokens, Ip4SentPacketTicking, NULL);
|
|
|
|
}
|
|
|
|
}
|