Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
/** @file
|
|
|
|
Implement the connection to the EFI socket library
|
|
|
|
|
|
|
|
Copyright (c) 2011, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2011-08-02 22:52:36 +02:00
|
|
|
#include "Socket.h"
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
/**
|
|
|
|
The following GUID values are only used when an application links
|
|
|
|
against EfiSocketLib. An alternative set of values exists in
|
|
|
|
SocketDxe\EntryUnload.c which the SocketDxe driver uses to coexist
|
|
|
|
with socket applications.
|
|
|
|
|
|
|
|
Tag GUID - IPv4 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslIp4ServiceGuid __attribute__((weak)) = {
|
2011-10-01 01:02:35 +02:00
|
|
|
0x9c756011, 0x5d44, 0x4ee0, { 0xbc, 0xe7, 0xc3, 0x82, 0x18, 0xfe, 0x39, 0x8d }
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
};
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
|
2012-02-09 20:16:44 +01:00
|
|
|
/**
|
|
|
|
Tag GUID - IPv6 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslIp6ServiceGuid __attribute__((weak)) = {
|
2012-02-09 20:16:44 +01:00
|
|
|
0xc51b2761, 0xc476, 0x45fe, { 0xbe, 0x61, 0xba, 0x4b, 0xcc, 0x32, 0xf2, 0x34 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
/**
|
|
|
|
Tag GUID - TCPv4 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslTcp4ServiceGuid __attribute__((weak)) = {
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
0xffc659c2, 0x4ef2, 0x4532, { 0xb8, 0x75, 0xcd, 0x9a, 0xa4, 0x27, 0x4c, 0xde }
|
|
|
|
};
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
|
2012-02-09 20:16:44 +01:00
|
|
|
/**
|
|
|
|
Tag GUID - TCPv6 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslTcp6ServiceGuid __attribute__((weak)) = {
|
2012-02-09 20:16:44 +01:00
|
|
|
0x279858a4, 0x4e9e, 0x4e53, { 0x93, 0x22, 0xf2, 0x54, 0xe0, 0x7e, 0xef, 0xd4 }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
/**
|
|
|
|
Tag GUID - UDPv4 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslUdp4ServiceGuid __attribute__((weak)) = {
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
0x44e03a55, 0x8d97, 0x4511, { 0xbf, 0xef, 0xa, 0x8b, 0xc6, 0x2c, 0x25, 0xae }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-09 20:16:44 +01:00
|
|
|
/**
|
|
|
|
Tag GUID - UDPv6 in use by an application using EfiSocketLib
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_GUID mEslUdp6ServiceGuid __attribute__((weak)) = {
|
2012-02-09 20:16:44 +01:00
|
|
|
0xaa4af677, 0x6efe, 0x477c, { 0x96, 0x68, 0xe8, 0x13, 0x9d, 0x2, 0xfd, 0x9b }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-10-08 23:39:35 +02:00
|
|
|
/**
|
|
|
|
Free the socket resources
|
|
|
|
|
|
|
|
This releases the socket resources allocated by calling
|
|
|
|
EslServiceGetProtocol.
|
|
|
|
|
|
|
|
This routine is called from the ::close routine in BsdSocketLib
|
|
|
|
to release the socket resources.
|
|
|
|
|
|
|
|
@param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL
|
|
|
|
structure
|
|
|
|
|
|
|
|
@return Value for ::errno, zero (0) indicates success.
|
|
|
|
|
|
|
|
**/
|
|
|
|
int
|
|
|
|
EslServiceFreeProtocol (
|
|
|
|
IN EFI_SOCKET_PROTOCOL * pSocketProtocol
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int RetVal;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Release the socket resources
|
|
|
|
//
|
|
|
|
EslSocketFree ( pSocketProtocol, &RetVal );
|
|
|
|
|
|
|
|
//
|
|
|
|
// Return the operation status
|
|
|
|
//
|
|
|
|
return RetVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
/**
|
|
|
|
Connect to the EFI socket library
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
This routine creates the ::ESL_SOCKET structure and returns
|
|
|
|
the API (::EFI_SOCKET_PROTOCOL address) to the socket file
|
|
|
|
system layer in BsdSocketLib.
|
|
|
|
|
|
|
|
This routine is called from the ::socket routine in BsdSocketLib
|
|
|
|
to create the data structure and initialize the API for a socket.
|
|
|
|
Note that this implementation is only used by socket applications
|
|
|
|
that link directly to EslSocketLib.
|
|
|
|
|
|
|
|
@param [in] ppSocketProtocol Address to receive the ::EFI_SOCKET_PROTOCOL
|
|
|
|
structure address
|
|
|
|
|
|
|
|
@return Value for ::errno, zero (0) indicates success.
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
int
|
|
|
|
EslServiceGetProtocol (
|
|
|
|
IN EFI_SOCKET_PROTOCOL ** ppSocketProtocol
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_HANDLE ChildHandle;
|
2011-10-01 01:02:35 +02:00
|
|
|
ESL_SOCKET * pSocket;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
int RetVal;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
DBG_ENTER ( );
|
|
|
|
|
|
|
|
//
|
|
|
|
// Assume success
|
|
|
|
//
|
|
|
|
RetVal = 0;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Locate the socket protocol
|
|
|
|
//
|
|
|
|
ChildHandle = NULL;
|
|
|
|
Status = EslSocketAllocate ( &ChildHandle,
|
|
|
|
DEBUG_SOCKET,
|
|
|
|
&pSocket );
|
|
|
|
if ( !EFI_ERROR ( Status )) {
|
|
|
|
*ppSocketProtocol = &pSocket->SocketProtocol;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//
|
|
|
|
// No resources
|
|
|
|
//
|
|
|
|
RetVal = ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Return the operation status
|
|
|
|
//
|
|
|
|
DBG_EXIT_DEC ( RetVal );
|
|
|
|
return RetVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Connect to the network layer
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
This routine is the constructor for the EfiSocketLib when the
|
|
|
|
library is linked directly to an application. This routine
|
|
|
|
walks the ::cEslSocketBinding table to create ::ESL_SERVICE
|
|
|
|
structures, associated with the network adapters, which this
|
|
|
|
routine links to the ::ESL_LAYER structure.
|
|
|
|
|
|
|
|
This routine is called from ::EslConstructor as a result of the
|
|
|
|
constructor redirection in ::mpfnEslConstructor at the end of this
|
|
|
|
file.
|
|
|
|
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
@retval EFI_SUCCESS Successfully connected to the network layer
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EslServiceNetworkConnect (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2011-10-01 01:02:35 +02:00
|
|
|
BOOLEAN bSomethingFound;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
UINTN HandleCount;
|
|
|
|
UINTN Index;
|
2011-10-01 01:02:35 +02:00
|
|
|
CONST ESL_SOCKET_BINDING * pEnd;
|
|
|
|
EFI_HANDLE * pHandles;
|
|
|
|
CONST ESL_SOCKET_BINDING * pSocketBinding;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
DBG_ENTER ( );
|
|
|
|
|
|
|
|
//
|
|
|
|
// Initialize the socket layer
|
|
|
|
//
|
|
|
|
Status = EFI_SUCCESS;
|
2011-10-01 01:02:35 +02:00
|
|
|
bSomethingFound = FALSE;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
EslServiceLoad ( gImageHandle );
|
|
|
|
|
|
|
|
//
|
|
|
|
// Connect the network devices
|
|
|
|
//
|
2011-10-01 01:02:35 +02:00
|
|
|
pSocketBinding = &cEslSocketBinding[0];
|
|
|
|
pEnd = &pSocketBinding[ cEslSocketBindingEntries ];
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
while ( pEnd > pSocketBinding ) {
|
|
|
|
//
|
|
|
|
// Attempt to locate the network adapters
|
|
|
|
//
|
|
|
|
HandleCount = 0;
|
|
|
|
pHandles = NULL;
|
|
|
|
Status = gBS->LocateHandleBuffer ( ByProtocol,
|
|
|
|
pSocketBinding->pNetworkBinding,
|
|
|
|
NULL,
|
|
|
|
&HandleCount,
|
|
|
|
&pHandles );
|
|
|
|
if ( EFI_ERROR ( Status )) {
|
2011-10-01 01:02:35 +02:00
|
|
|
DEBUG (( DEBUG_ERROR,
|
|
|
|
"ERROR with %s layer, Status: %r\r\n",
|
|
|
|
pSocketBinding->pName,
|
|
|
|
Status ));
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
}
|
2011-10-01 01:02:35 +02:00
|
|
|
else {
|
|
|
|
if ( NULL != pHandles ) {
|
|
|
|
//
|
|
|
|
// Attempt to connect to this network adapter
|
|
|
|
//
|
|
|
|
for ( Index = 0; HandleCount > Index; Index++ ) {
|
|
|
|
Status = EslServiceConnect ( gImageHandle,
|
|
|
|
pHandles[ Index ]);
|
2012-06-01 22:01:30 +02:00
|
|
|
if ( !EFI_ERROR ( Status )) {
|
|
|
|
bSomethingFound = TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ( EFI_OUT_OF_RESOURCES == Status ) {
|
|
|
|
//
|
|
|
|
// Pointless to continue without memory
|
|
|
|
//
|
|
|
|
break;
|
|
|
|
}
|
2011-10-01 01:02:35 +02:00
|
|
|
}
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
//
|
|
|
|
// Done with the handles
|
|
|
|
//
|
|
|
|
gBS->FreePool ( pHandles );
|
|
|
|
}
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set the next network protocol
|
|
|
|
//
|
|
|
|
pSocketBinding += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Return the network connection status
|
|
|
|
//
|
2011-10-01 01:02:35 +02:00
|
|
|
if ( bSomethingFound ) {
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
}
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
DBG_EXIT_STATUS ( Status );
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Disconnect from the network layer
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
Destructor for the EfiSocketLib when the library is linked
|
|
|
|
directly to an application. This routine walks the
|
|
|
|
::cEslSocketBinding table to remove the ::ESL_SERVICE
|
|
|
|
structures (network connections) from the ::ESL_LAYER structure.
|
|
|
|
|
|
|
|
This routine is called from ::EslDestructor as a result of the
|
|
|
|
destructor redirection in ::mpfnEslDestructor at the end of this
|
|
|
|
file.
|
|
|
|
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
@retval EFI_SUCCESS Successfully disconnected from the network layer
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EslServiceNetworkDisconnect (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
UINTN HandleCount;
|
|
|
|
UINTN Index;
|
2011-10-01 01:02:35 +02:00
|
|
|
CONST ESL_SOCKET_BINDING * pEnd;
|
|
|
|
EFI_HANDLE * pHandles;
|
|
|
|
CONST ESL_SOCKET_BINDING * pSocketBinding;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
DBG_ENTER ( );
|
|
|
|
|
|
|
|
//
|
|
|
|
// Assume success
|
|
|
|
//
|
|
|
|
Status = EFI_SUCCESS;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Disconnect the network devices
|
|
|
|
//
|
2011-10-01 01:02:35 +02:00
|
|
|
pSocketBinding = &cEslSocketBinding[0];
|
|
|
|
pEnd = &pSocketBinding[ cEslSocketBindingEntries ];
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
while ( pEnd > pSocketBinding ) {
|
|
|
|
//
|
|
|
|
// Attempt to locate the network adapters
|
|
|
|
//
|
|
|
|
HandleCount = 0;
|
|
|
|
pHandles = NULL;
|
|
|
|
Status = gBS->LocateHandleBuffer ( ByProtocol,
|
|
|
|
pSocketBinding->pNetworkBinding,
|
|
|
|
NULL,
|
|
|
|
&HandleCount,
|
|
|
|
&pHandles );
|
2012-02-09 20:16:44 +01:00
|
|
|
if (( !EFI_ERROR ( Status ))
|
|
|
|
&& ( NULL != pHandles )) {
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
//
|
|
|
|
// Attempt to disconnect from this network adapter
|
|
|
|
//
|
|
|
|
for ( Index = 0; HandleCount > Index; Index++ ) {
|
|
|
|
Status = EslServiceDisconnect ( gImageHandle,
|
2011-10-01 01:02:35 +02:00
|
|
|
pHandles[ Index ]);
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
if ( EFI_ERROR ( Status )) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Done with the handles
|
|
|
|
//
|
|
|
|
gBS->FreePool ( pHandles );
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Set the next network protocol
|
|
|
|
//
|
|
|
|
pSocketBinding += 1;
|
2012-02-09 20:16:44 +01:00
|
|
|
Status = EFI_SUCCESS;
|
Add Socket Libraries.
Add Posix functions for porting compatibility.
Fix compliance issues with ISO/IEC 9899:199409
New Functions:
setenv(), fparseln(), GetFileNameFromPath(), rename(),
realpath(), setprogname(), getprogname(), strlcat(), strlcpy(),
strsep(), setitimer(), getitimer(), timegm(), getopt(), basename(),
mkstemp(), ffs(), vsnprintf(), snprintf(), getpass(), usleep(), select(),
writev(), strcasecmp(), getcwd(), chdir(), tcgetpgrp(), getpgrp(), gettimeofday(),
bcopy(),
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12061 6f19259b-4bc3-4df7-8a09-765794883524
2011-07-30 02:30:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Finish the disconnect operation
|
|
|
|
//
|
|
|
|
if ( !EFI_ERROR ( Status )) {
|
|
|
|
EslServiceUnload ( );
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Return the network connection status
|
|
|
|
//
|
|
|
|
DBG_EXIT_STATUS ( Status );
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-01 01:02:35 +02:00
|
|
|
/**
|
|
|
|
Socket layer's service binding protocol delcaration.
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
CONST EFI_SERVICE_BINDING_PROTOCOL mEfiServiceBinding __attribute__((weak)) = {
|
2011-10-01 01:02:35 +02:00
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
The following entries redirect the constructor and destructor
|
|
|
|
for any socket application that links against the EfiSocketLib.
|
|
|
|
Note that the SocketDxe driver uses different redirection.
|
|
|
|
**/
|
2012-06-26 19:45:56 +02:00
|
|
|
PFN_ESL_xSTRUCTOR mpfnEslConstructor __attribute__((weak)) = EslServiceNetworkConnect; ///< Constructor for EfiSocketLib
|
|
|
|
PFN_ESL_xSTRUCTOR mpfnEslDestructor __attribute__((weak)) = EslServiceNetworkDisconnect; ///< Destructor for EfiSocketLib
|