/*******************************************************************************
* Copyright (C) 2004-2008 Intel Corp. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
*
* - Neither the name of Intel Corp. nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL Intel Corp. OR THE CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <cerrno>
#include "types.h"
#include "LMEConnection.h"
#include "LMS_if_compat.h"
#include "Lock.h"
#include "glue.h"
#ifdef _LINUX
#endif
const GUID LMEConnection::_guidCompat = {0x3d98d9b7, 0x1ce8, 0x4252, {0xb3, 0x37, 0x2e, 0xff, 0x10, 0x6e, 0xf2, 0x9f}};
{
if (!IsInitialized()) {
PRINT("[Compat]State: not connected to HECI.\n");
return -1;
}
if (len > 1024) {
return -1;
}
}
{
if (!IsInitialized()) {
PRINT("[Compat]State: not connected to HECI.\n");
return;
}
}
{
if (!IsInitialized()) {
PRINT("[Compat]State: not connected to HECI.\n");
return false;
}
msg.ConnectionId = 0;
PRINT("[Compat]Sending Protocol Version to LME\n");
return (bytesWritten == sizeof(msg));
}
{
if (!IsInitialized()) {
PRINT("[Compat]State: not connected to HECI.\n");
return false;
}
msg.ConnectionId = 0;
PRINT("[Compat]Sending IP_FQDN request to LME\n");
return (bytesWritten == sizeof(msg));
}
{
if (!IsInitialized()) {
PRINT("[Compat]State: not connected to HECI.\n");
return false;
}
bool ret = false;
int msgLen = 0;
if (protocolVer == LMS_PROCOL_VERSION_COMPAT) {
openConnectionExMsg.Flags = 0;
msg = (unsigned char *)&openConnectionExMsg;
msgLen = sizeof(openConnectionExMsg);
PRINT("[Compat]OpenConnectionEx %x (%d) p=%d mp=%d\n",
}
else {
msg = (unsigned char *)&openConnectionMsg;
msgLen = sizeof(openConnectionMsg);
PRINT("[Compat]OpenConnection %x (%d) p=%d mp=%d\n",
}
// save as pending request
int bytesWritten;
if (bytesWritten != msgLen) {
goto out;
}
// no response from FW
goto out;
}
ret = true;
out:
{
ret = false;
} else {
}
}
return ret;
}
{
unsigned int bytesRead;
while (true) {
if ((int)bytesRead < 0) {
PRINT("[Compat]Error receiving data from HECI\n");
Deinit();
break;
}
if (bytesRead == 0) {
// ERROR
continue;
}
if (bytesRead < 2) {
// ERROR
continue;
}
continue;
}
switch (rxBuffer[0]) {
break;
case LMS_MESSAGE_TYPE_IP_FQDN:
break;
{
PRINT("[Compat]Open connection reply %d %d =%d\n", repMsg->OpenRequestId, repMsg->ConnectionId, repMsg->Status);
}
}
break;
{
// report incoming connection request
continue;
} else {
}
}
PRINT("[Compat]Got client connection request %d for host %s, port %d\n",
}
else {
PRINT("[Compat]Got client connection request %d for IP %s, port %d\n",
}
if (status == 0) {
} else {
}
if (bytesWritten != sizeof(repMsg)) {
}
}
break;
default:
// Uknown request. Ignore
break;
}
if (IsInitialized()) {
}
}
delete[] rxBuffer;
}
}