/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * * -*- mode: c, c-basic-offset: 4 -*- */ /* * Copyright Likewise Software * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. You should have received a copy of the GNU General * Public License along with this program. If not, see * . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * wire_open.c * * Abstract: * * Likewise SMB Subsystem (LWIO) * * SMB OPEN "wire" API * * Author: Sriram Nambakam (snambakam@likewise.com) * */ #include "includes.h" NTSTATUS WireUnmarshallOpenRequest( PBYTE pParams, ULONG ulBytesAvailable, ULONG ulOffset, POPEN_REQUEST_HEADER* ppHeader, PWSTR* ppwszFilename ) { NTSTATUS ntStatus = 0; PBYTE pDataCursor = pParams; POPEN_REQUEST_HEADER pHeader = NULL; PWSTR pwszFilename = NULL; UCHAR ucBufferFormat = 0; USHORT usByteCountAvailable = 0; if (ulBytesAvailable < sizeof(OPEN_REQUEST_HEADER)) { ntStatus = STATUS_INVALID_BUFFER_SIZE; BAIL_ON_NT_STATUS(ntStatus); } pHeader = (POPEN_REQUEST_HEADER)pParams; pDataCursor += sizeof(OPEN_REQUEST_HEADER); ulOffset += sizeof(OPEN_REQUEST_HEADER); ulBytesAvailable -= sizeof(OPEN_REQUEST_HEADER); if (ulBytesAvailable < pHeader->usByteCount) { ntStatus = STATUS_INVALID_BUFFER_SIZE; BAIL_ON_NT_STATUS(ntStatus); } usByteCountAvailable = pHeader->usByteCount; if (ulBytesAvailable < sizeof(ucBufferFormat)) { ntStatus = STATUS_INVALID_BUFFER_SIZE; BAIL_ON_NT_STATUS(ntStatus); } ucBufferFormat = *pDataCursor; if (ucBufferFormat != SMB_BUFFER_FORMAT_ASCII) { /* Technically we should fail here but the Samba client libs fail to set the buffer format properly. WinXP doesn't care so it was never caught. */ ntStatus = STATUS_SUCCESS; } pDataCursor += sizeof(ucBufferFormat); ulOffset += sizeof(ucBufferFormat); ulBytesAvailable -= sizeof(ucBufferFormat); usByteCountAvailable -= sizeof(ucBufferFormat); if (ulOffset % 2) { USHORT usAlignment = ulOffset % 2; if (ulBytesAvailable < usAlignment) { ntStatus = STATUS_INVALID_BUFFER_SIZE; BAIL_ON_NT_STATUS(ntStatus); } ulOffset += usAlignment; pDataCursor += usAlignment; ulBytesAvailable -= usAlignment; usByteCountAvailable -= usAlignment; } if (ulBytesAvailable && usByteCountAvailable) { PWSTR pwszCursor = NULL; pwszFilename = pwszCursor = (PWSTR)pDataCursor; usByteCountAvailable -= sizeof(wchar16_t); while (usByteCountAvailable && *pwszCursor) { pwszCursor++; usByteCountAvailable -= sizeof(wchar16_t); } // Ensure null termination if (*pwszCursor) { ntStatus = STATUS_DATA_ERROR; BAIL_ON_NT_STATUS(ntStatus); } } *ppHeader = pHeader; *ppwszFilename = pwszFilename; cleanup: return ntStatus; error: *ppHeader = NULL; *ppwszFilename = NULL; goto cleanup; }