blob: 8f04396ab9925fd94954f5c7a3dc4ca5c369e4e4 [file] [log] [blame]
/*************************************************************************/ /*!
@File
@Title Server side connection management
@Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
@Description Handles connections coming from the client and the management
connection based information
@License Dual MIT/GPLv2
The contents of this file are subject to the MIT license as set out below.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 ("GPL") in which case the provisions
of GPL are applicable instead of those above.
If you wish to allow use of your version of this file only under the terms of
GPL, and not to allow others to use your version of this file under the terms
of the MIT license, indicate your decision by deleting the provisions above
and replace them with the notice and other provisions required by GPL as set
out in the file called "GPL-COPYING" included in this distribution. If you do
not delete the provisions above, a recipient may use your version of this file
under the terms of either the MIT license or GPL.
This License is also included in this distribution in the file called
"MIT-COPYING".
EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ /**************************************************************************/
#include "handle.h"
#include "pvrsrv.h"
#include "connection_server.h"
#include "osconnection_server.h"
#include "allocmem.h"
#include "pvr_debug.h"
#include "sync_server.h"
#include "process_stats.h"
#include "pdump_km.h"
#include "osfunc.h"
#include "tlstream.h"
/* PID associated with Connection currently being purged by Cleanup thread */
static IMG_PID gCurrentPurgeConnectionPid;
static PVRSRV_ERROR ConnectionDataDestroy(CONNECTION_DATA *psConnection)
{
PVRSRV_ERROR eError;
PROCESS_HANDLE_BASE *psProcessHandleBase;
IMG_UINT64 ui64MaxBridgeTime;
PVRSRV_DATA *psPVRSRVData = PVRSRVGetPVRSRVData();
if (psPVRSRVData->bUnload)
{
/* driver is unloading so do not allow the bridge lock to be released */
ui64MaxBridgeTime = 0;
}
else
{
ui64MaxBridgeTime = CONNECTION_DEFERRED_CLEANUP_TIMESLICE_NS;
}
if (psConnection == NULL)
{
PVR_DPF((PVR_DBG_ERROR, "%s: Missing connection!", __func__));
PVR_ASSERT(0);
return PVRSRV_ERROR_INVALID_PARAMS;
}
/* Close HWPerfClient stream here even though we created it in
* PVRSRVConnectKM(). */
if (psConnection->hClientTLStream)
{
TLStreamClose(psConnection->hClientTLStream);
psConnection->hClientTLStream = NULL;
PVR_DPF((PVR_DBG_MESSAGE, "Destroyed private stream."));
}
/* Get process handle base to decrement the refcount */
psProcessHandleBase = psConnection->psProcessHandleBase;
if (psProcessHandleBase != NULL)
{
/* acquire the lock now to ensure unref and removal from the
* hash table is atomic.
* if the refcount becomes zero then the lock needs to be held
* until the entry is removed from the hash table.
*/
OSLockAcquire(psPVRSRVData->hProcessHandleBase_Lock);
/* In case the refcount becomes 0 we can remove the process handle base */
if (OSAtomicDecrement(&psProcessHandleBase->iRefCount) == 0)
{
uintptr_t uiHashValue;
uiHashValue = HASH_Remove(psPVRSRVData->psProcessHandleBase_Table, psConnection->pid);
OSLockRelease(psPVRSRVData->hProcessHandleBase_Lock);
if (!uiHashValue)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Failed to remove handle base from hash table.",
__func__));
return PVRSRV_ERROR_UNABLE_TO_REMOVE_HASH_VALUE;
}
eError = PVRSRVFreeKernelHandles(psProcessHandleBase->psHandleBase);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't free kernel handles for process (%s)",
__func__, PVRSRVGetErrorString(eError)));
return eError;
}
eError = PVRSRVFreeHandleBase(psProcessHandleBase->psHandleBase, ui64MaxBridgeTime);
if (eError != PVRSRV_OK)
{
if (eError != PVRSRV_ERROR_RETRY)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't free handle base for process (%s)",
__func__, PVRSRVGetErrorString(eError)));
}
return eError;
}
OSFreeMem(psProcessHandleBase);
}
else
{
OSLockRelease(psPVRSRVData->hProcessHandleBase_Lock);
}
psConnection->psProcessHandleBase = NULL;
}
/* Free handle base for this connection */
if (psConnection->psHandleBase != NULL)
{
eError = PVRSRVFreeHandleBase(psConnection->psHandleBase, ui64MaxBridgeTime);
if (eError != PVRSRV_OK)
{
if (eError != PVRSRV_ERROR_RETRY)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't free handle base for connection (%s)",
__func__, PVRSRVGetErrorString(eError)));
}
return eError;
}
psConnection->psHandleBase = NULL;
}
if (psConnection->psSyncConnectionData != NULL)
{
SyncUnregisterConnection(psConnection->psSyncConnectionData);
psConnection->psSyncConnectionData = NULL;
}
if (psConnection->psPDumpConnectionData != NULL)
{
PDumpUnregisterConnection(psConnection->psPDumpConnectionData);
psConnection->psPDumpConnectionData = NULL;
}
/* Call environment specific connection data deinit function */
if (psConnection->hOsPrivateData != NULL)
{
eError = OSConnectionPrivateDataDeInit(psConnection->hOsPrivateData);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: OSConnectionPrivateDataDeInit failed (%s)",
__func__, PVRSRVGetErrorString(eError)));
return eError;
}
psConnection->hOsPrivateData = NULL;
}
/* Close the PID stats entry as late as possible to catch all frees */
#if defined(PVRSRV_ENABLE_PROCESS_STATS) && !defined(PVRSRV_DEBUG_LINUX_MEMORY_STATS)
if (psConnection->hProcessStats != NULL)
{
PVRSRVStatsDeregisterProcess(psConnection->hProcessStats);
psConnection->hProcessStats = NULL;
}
#endif
OSFreeMemNoStats(psConnection);
return PVRSRV_OK;
}
PVRSRV_ERROR PVRSRVConnectionConnect(void **ppvPrivData, void *pvOSData)
{
CONNECTION_DATA *psConnection;
PVRSRV_ERROR eError;
PROCESS_HANDLE_BASE *psProcessHandleBase;
PVRSRV_DATA *psPVRSRVData = PVRSRVGetPVRSRVData();
/* Allocate connection data area, no stats since process not registered yet */
psConnection = OSAllocZMemNoStats(sizeof(*psConnection));
if (psConnection == NULL)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't allocate connection data",
__func__));
return PVRSRV_ERROR_OUT_OF_MEMORY;
}
/* Allocate process statistics as early as possible to catch all allocs */
#if defined(PVRSRV_ENABLE_PROCESS_STATS) && !defined(PVRSRV_DEBUG_LINUX_MEMORY_STATS)
eError = PVRSRVStatsRegisterProcess(&psConnection->hProcessStats);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't register process statistics (%s)",
__func__, PVRSRVGetErrorString(eError)));
goto failure;
}
#endif
/* Call environment specific connection data init function */
eError = OSConnectionPrivateDataInit(&psConnection->hOsPrivateData, pvOSData);
PVR_LOGG_IF_ERROR(eError, "OSConnectionPrivateDataInit", failure);
psConnection->pid = OSGetCurrentClientProcessIDKM();
OSStringLCopy(psConnection->pszProcName, OSGetCurrentClientProcessNameKM(), PVRSRV_CONNECTION_PROCESS_NAME_LEN);
#if defined(DEBUG) || defined(PDUMP)
PVR_LOG(("%s connected", psConnection->pszProcName));
#endif
/* Register this connection with the sync core */
eError = SyncRegisterConnection(&psConnection->psSyncConnectionData);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't register the sync data", __func__));
goto failure;
}
/*
* Register this connection and Sync PDump callback with
* the pdump core. Pass in the Sync connection data.
*/
eError = PDumpRegisterConnection(psConnection->psSyncConnectionData,
SyncConnectionPDumpSyncBlocks,
&psConnection->psPDumpConnectionData);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't register the PDump data",
__func__));
goto failure;
}
/* Allocate handle base for this connection */
eError = PVRSRVAllocHandleBase(&psConnection->psHandleBase,
PVRSRV_HANDLE_BASE_TYPE_CONNECTION);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't allocate handle base for connection (%s)",
__func__, PVRSRVGetErrorString(eError)));
goto failure;
}
/* Try to get process handle base if it already exists */
OSLockAcquire(psPVRSRVData->hProcessHandleBase_Lock);
psProcessHandleBase = (PROCESS_HANDLE_BASE*) HASH_Retrieve(PVRSRVGetPVRSRVData()->psProcessHandleBase_Table,
psConnection->pid);
/* In case there is none we are going to allocate one */
if (psProcessHandleBase == NULL)
{
psProcessHandleBase = OSAllocZMem(sizeof(PROCESS_HANDLE_BASE));
if (psProcessHandleBase == NULL)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Failed to allocate handle base, oom.",
__func__));
eError = PVRSRV_ERROR_OUT_OF_MEMORY;
goto failureLock;
}
OSAtomicWrite(&psProcessHandleBase->iRefCount, 0);
/* Allocate handle base for this process */
eError = PVRSRVAllocHandleBase(&psProcessHandleBase->psHandleBase,
PVRSRV_HANDLE_BASE_TYPE_PROCESS);
if (eError != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Couldn't allocate handle base for process (%s)",
__func__,
PVRSRVGetErrorString(eError)));
OSFreeMem(psProcessHandleBase);
goto failureLock;
}
/* Insert the handle base into the global hash table */
if (!HASH_Insert(PVRSRVGetPVRSRVData()->psProcessHandleBase_Table,
psConnection->pid,
(uintptr_t) psProcessHandleBase))
{
eError = PVRSRV_ERROR_UNABLE_TO_INSERT_HASH_VALUE;
PVRSRVFreeHandleBase(psProcessHandleBase->psHandleBase, 0);
OSFreeMem(psProcessHandleBase);
goto failureLock;
}
}
OSAtomicIncrement(&psProcessHandleBase->iRefCount);
OSLockRelease(psPVRSRVData->hProcessHandleBase_Lock);
OSLockAcquire(psPVRSRVData->hConnectionsLock);
dllist_add_to_tail(&psPVRSRVData->sConnections, &psConnection->sConnectionListNode);
OSLockRelease(psPVRSRVData->hConnectionsLock);
psConnection->psProcessHandleBase = psProcessHandleBase;
*ppvPrivData = psConnection;
return eError;
failureLock:
OSLockRelease(psPVRSRVData->hProcessHandleBase_Lock);
failure:
ConnectionDataDestroy(psConnection);
return eError;
}
static PVRSRV_ERROR _CleanupThreadPurgeConnectionData(void *pvConnectionData)
{
PVRSRV_ERROR eErrorConnection, eErrorKernel;
CONNECTION_DATA *psConnectionData = pvConnectionData;
#if defined(PVRSRV_USE_BRIDGE_LOCK)
OSAcquireBridgeLock();
#endif
gCurrentPurgeConnectionPid = psConnectionData->pid;
eErrorConnection = ConnectionDataDestroy(psConnectionData);
if (eErrorConnection != PVRSRV_OK)
{
if (eErrorConnection == PVRSRV_ERROR_RETRY)
{
PVR_DPF((PVR_DBG_MESSAGE,
"%s: Failed to purge connection data %p "
"(deferring destruction)",
__func__,
psConnectionData));
}
}
else
{
PVR_DPF((PVR_DBG_MESSAGE,
"%s: Connection data %p deferred destruction finished",
__func__,
psConnectionData));
}
/* Check if possible resize the global handle base */
eErrorKernel = PVRSRVPurgeHandles(KERNEL_HANDLE_BASE);
if (eErrorKernel != PVRSRV_OK)
{
PVR_DPF((PVR_DBG_ERROR,
"%s: Purge of global handle pool failed (%s)",
__func__,
PVRSRVGetErrorString(eErrorKernel)));
}
gCurrentPurgeConnectionPid = 0;
#if defined(PVRSRV_USE_BRIDGE_LOCK)
OSReleaseBridgeLock();
#endif
return eErrorConnection;
}
void PVRSRVConnectionDisconnect(void *pvDataPtr)
{
CONNECTION_DATA *psConnectionData = pvDataPtr;
PVRSRV_DATA *psPVRSRVData = PVRSRVGetPVRSRVData();
OSLockAcquire(psPVRSRVData->hConnectionsLock);
dllist_remove_node(&psConnectionData->sConnectionListNode);
OSLockRelease(psPVRSRVData->hConnectionsLock);
/* Notify the PDump core if the pdump control client is disconnecting */
if (psConnectionData->ui32ClientFlags & SRV_FLAGS_PDUMPCTRL)
{
PDumpDisconnectionNotify();
}
#if defined(DEBUG) || defined(PDUMP)
PVR_LOG(("%s disconnected", psConnectionData->pszProcName));
#endif
#if defined(PVRSRV_FORCE_UNLOAD_IF_BAD_STATE)
if (PVRSRVGetPVRSRVData()->eServicesState == PVRSRV_SERVICES_STATE_OK)
#endif
{
/* Defer the release of the connection data */
psConnectionData->sCleanupThreadFn.pfnFree = _CleanupThreadPurgeConnectionData;
psConnectionData->sCleanupThreadFn.pvData = psConnectionData;
psConnectionData->sCleanupThreadFn.bDependsOnHW = IMG_FALSE;
CLEANUP_THREAD_SET_RETRY_COUNT(&psConnectionData->sCleanupThreadFn,
CLEANUP_THREAD_RETRY_COUNT_DEFAULT);
PVRSRVCleanupThreadAddWork(&psConnectionData->sCleanupThreadFn);
}
}
IMG_PID PVRSRVGetPurgeConnectionPid(void)
{
return gCurrentPurgeConnectionPid;
}
/* Prefix for debug messages about Active Connections */
#define ACTIVE_PREFIX "Active connects:"
void PVRSRVConnectionDebugNotify(DUMPDEBUG_PRINTF_FUNC *pfnDumpDebugPrintf,
void *pvDumpDebugFile)
{
PDLLIST_NODE pNext, pNode;
PVRSRV_DATA *psPVRSRVData = PVRSRVGetPVRSRVData();
OSLockAcquire(psPVRSRVData->hConnectionsLock);
if (dllist_is_empty(&psPVRSRVData->sConnections))
{
PVR_DUMPDEBUG_LOG(ACTIVE_PREFIX " No active connections");
}
else
{
#define MAX_DEBUG_DUMP_STRING_LEN 150
#define MAX_DEBUG_DUMP_CONNECTION_STR_LEN 26
IMG_CHAR sActiveConnections[MAX_DEBUG_DUMP_STRING_LEN];
IMG_UINT16 i, uiPos = 0;
IMG_BOOL bPrinted = IMG_FALSE;
size_t uiSize = sizeof (sActiveConnections);
OSStringLCopy(sActiveConnections, ACTIVE_PREFIX, uiSize);
uiPos = sizeof (ACTIVE_PREFIX) - 1; /* Next buffer location to fill */
uiSize -= uiPos; /* Remaining space to use in sActiveConnections[] */
dllist_foreach_node(&psPVRSRVData->sConnections, pNode, pNext)
{
CONNECTION_DATA *sData = IMG_CONTAINER_OF(pNode, CONNECTION_DATA, sConnectionListNode);
IMG_CHAR sTmpBuff[MAX_DEBUG_DUMP_CONNECTION_STR_LEN];
i = OSSNPrintf(sTmpBuff, MAX_DEBUG_DUMP_CONNECTION_STR_LEN, " %d (%s),", sData->pid, sData->pszProcName);
i = MIN(MAX_DEBUG_DUMP_CONNECTION_STR_LEN, i);
bPrinted = IMG_FALSE;
OSStringLCopy(sActiveConnections+uiPos, sTmpBuff, uiSize);
// Move the write offset to the end of the current string
uiPos += i;
// Update the amount of remaining space available to copy into
uiSize -= i;
// If there is not enough space to add another connection to this line, output the line
if (uiSize <= MAX_DEBUG_DUMP_CONNECTION_STR_LEN)
{
PVR_DUMPDEBUG_LOG("%s", sActiveConnections);
/*
* Remove the "Active connects:" prefix from the buffer.
* Leave the subsequent buffer contents indented by the same
* amount to aid in interpreting the debug output.
*/
OSCachedMemSet(sActiveConnections, ' ', sizeof (ACTIVE_PREFIX));
uiPos = sizeof (ACTIVE_PREFIX) - 1;
// Reset the amount of space available to copy into
uiSize = MAX_DEBUG_DUMP_STRING_LEN - uiPos;
bPrinted = IMG_TRUE;
}
}
// Only print the current line if it hasn't already been printed
if (!bPrinted)
{
// Strip of the final comma
sActiveConnections[OSStringNLength(sActiveConnections, MAX_DEBUG_DUMP_STRING_LEN) - 1] = '\0';
PVR_DUMPDEBUG_LOG("%s", sActiveConnections);
}
#undef MAX_DEBUG_DUMP_STRING_LEN
#undef MAX_DEBUG_DUMP_CONNECTIONS_PER_LINE
}
OSLockRelease(psPVRSRVData->hConnectionsLock);
}