mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-05-17 17:59:32 +02:00
245 lines
10 KiB
C#
245 lines
10 KiB
C#
/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
*
|
|
* You can redistribute this program and/or modify it under the terms of
|
|
* the GNU Lesser Public License as published by the Free Software Foundation,
|
|
* either version 3 of the License, or (at your option) any later version.
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using SMBLibrary.RPC;
|
|
using SMBLibrary.SMB1;
|
|
using SMBLibrary.Services;
|
|
using Utilities;
|
|
|
|
namespace SMBLibrary.Server.SMB1
|
|
{
|
|
public class ReadWriteResponseHelper
|
|
{
|
|
internal static SMB1Command GetReadResponse(SMB1Header header, ReadRequest request, ISMBShare share, SMB1ConnectionState state)
|
|
{
|
|
byte[] data = PerformRead(header, share, request.FID, request.ReadOffsetInBytes, request.CountOfBytesToRead, state);
|
|
if (header.Status != NTStatus.STATUS_SUCCESS)
|
|
{
|
|
return new ErrorResponse(CommandName.SMB_COM_READ);
|
|
}
|
|
|
|
ReadResponse response = new ReadResponse();
|
|
response.Bytes = data;
|
|
response.CountOfBytesReturned = (ushort)data.Length;
|
|
return response;
|
|
}
|
|
|
|
internal static SMB1Command GetReadResponse(SMB1Header header, ReadAndXRequest request, ISMBShare share, SMB1ConnectionState state)
|
|
{
|
|
uint maxCount = request.MaxCount;
|
|
if ((share is FileSystemShare) && state.LargeRead)
|
|
{
|
|
maxCount = request.MaxCountLarge;
|
|
}
|
|
byte[] data = PerformRead(header, share, request.FID, request.Offset, maxCount, state);
|
|
if (header.Status != NTStatus.STATUS_SUCCESS)
|
|
{
|
|
return new ErrorResponse(CommandName.SMB_COM_READ_ANDX);
|
|
}
|
|
|
|
ReadAndXResponse response = new ReadAndXResponse();
|
|
if (share is FileSystemShare)
|
|
{
|
|
// If the client reads from a disk file, this field MUST be set to -1 (0xFFFF)
|
|
response.Available = 0xFFFF;
|
|
}
|
|
response.Data = data;
|
|
return response;
|
|
}
|
|
|
|
public static byte[] PerformRead(SMB1Header header, ISMBShare share, ushort FID, ulong offset, uint maxCount, SMB1ConnectionState state)
|
|
{
|
|
if (offset > Int64.MaxValue || maxCount > Int32.MaxValue)
|
|
{
|
|
throw new NotImplementedException("Underlying filesystem does not support unsigned offset / read count");
|
|
}
|
|
return PerformRead(header, share, FID, (long)offset, (int)maxCount, state);
|
|
}
|
|
|
|
public static byte[] PerformRead(SMB1Header header, ISMBShare share, ushort FID, long offset, int maxCount, SMB1ConnectionState state)
|
|
{
|
|
OpenedFileObject openedFile = state.GetOpenedFileObject(FID);
|
|
if (openedFile == null)
|
|
{
|
|
header.Status = NTStatus.STATUS_INVALID_HANDLE;
|
|
return null;
|
|
}
|
|
string openedFilePath = openedFile.Path;
|
|
|
|
if (share is NamedPipeShare)
|
|
{
|
|
return state.RetrieveNamedPipeReply(FID);
|
|
}
|
|
else // FileSystemShare
|
|
{
|
|
FileSystemShare fileSystemShare = (FileSystemShare)share;
|
|
IFileSystem fileSystem = fileSystemShare.FileSystem;
|
|
Stream stream = openedFile.Stream;
|
|
|
|
if (stream == null)
|
|
{
|
|
header.Status = NTStatus.STATUS_ACCESS_DENIED;
|
|
return null;
|
|
}
|
|
|
|
int bytesRead;
|
|
byte[] data;
|
|
try
|
|
{
|
|
stream.Seek(offset, SeekOrigin.Begin);
|
|
data = new byte[maxCount];
|
|
bytesRead = stream.Read(data, 0, maxCount);
|
|
}
|
|
catch (IOException ex)
|
|
{
|
|
ushort errorCode = IOExceptionHelper.GetWin32ErrorCode(ex);
|
|
if (errorCode == (ushort)Win32Error.ERROR_SHARING_VIOLATION)
|
|
{
|
|
// Returning STATUS_SHARING_VIOLATION is undocumented but apparently valid
|
|
state.LogToServer(Severity.Debug, "ReadAndX: Cannot read '{0}'. Sharing Violation.", openedFilePath);
|
|
header.Status = NTStatus.STATUS_SHARING_VIOLATION;
|
|
return null;
|
|
}
|
|
else
|
|
{
|
|
state.LogToServer(Severity.Debug, "ReadAndX: Cannot read '{0}'. Data Error.", openedFilePath);
|
|
header.Status = NTStatus.STATUS_DATA_ERROR;
|
|
return null;
|
|
}
|
|
}
|
|
catch (ArgumentOutOfRangeException)
|
|
{
|
|
state.LogToServer(Severity.Debug, "ReadAndX: Cannot read '{0}'. Offset Out Of Range.", openedFilePath);
|
|
header.Status = NTStatus.STATUS_DATA_ERROR;
|
|
return null;
|
|
}
|
|
catch (UnauthorizedAccessException)
|
|
{
|
|
state.LogToServer(Severity.Debug, "ReadAndX: Cannot read '{0}', Access Denied.", openedFilePath);
|
|
header.Status = NTStatus.STATUS_ACCESS_DENIED;
|
|
return null;
|
|
}
|
|
|
|
if (bytesRead < maxCount)
|
|
{
|
|
// EOF, we must trim the response data array
|
|
data = ByteReader.ReadBytes(data, 0, bytesRead);
|
|
}
|
|
return data;
|
|
}
|
|
}
|
|
|
|
internal static SMB1Command GetWriteResponse(SMB1Header header, WriteRequest request, ISMBShare share, SMB1ConnectionState state)
|
|
{
|
|
ushort bytesWritten = (ushort)PerformWrite(header, share, request.FID, request.WriteOffsetInBytes, request.Data, state);
|
|
if (header.Status != NTStatus.STATUS_SUCCESS)
|
|
{
|
|
return new ErrorResponse(CommandName.SMB_COM_WRITE_ANDX);
|
|
}
|
|
WriteResponse response = new WriteResponse();
|
|
response.CountOfBytesWritten = bytesWritten;
|
|
|
|
return response;
|
|
}
|
|
|
|
internal static SMB1Command GetWriteResponse(SMB1Header header, WriteAndXRequest request, ISMBShare share, SMB1ConnectionState state)
|
|
{
|
|
uint bytesWritten = PerformWrite(header, share, request.FID, request.Offset, request.Data, state);
|
|
if (header.Status != NTStatus.STATUS_SUCCESS)
|
|
{
|
|
return new ErrorResponse(CommandName.SMB_COM_WRITE_ANDX);
|
|
}
|
|
WriteAndXResponse response = new WriteAndXResponse();
|
|
response.Count = bytesWritten;
|
|
|
|
if (share is FileSystemShare)
|
|
{
|
|
// If the client wrote to a disk file, this field MUST be set to 0xFFFF.
|
|
response.Available = 0xFFFF;
|
|
}
|
|
return response;
|
|
}
|
|
|
|
public static uint PerformWrite(SMB1Header header, ISMBShare share, ushort FID, ulong offset, byte[] data, SMB1ConnectionState state)
|
|
{
|
|
OpenedFileObject openedFile = state.GetOpenedFileObject(FID);
|
|
if (openedFile == null)
|
|
{
|
|
header.Status = NTStatus.STATUS_INVALID_HANDLE;
|
|
return 0;
|
|
}
|
|
string openedFilePath = openedFile.Path;
|
|
|
|
if (share is NamedPipeShare)
|
|
{
|
|
RemoteService service = ((NamedPipeShare)share).GetService(openedFilePath);
|
|
if (service != null)
|
|
{
|
|
RPCPDU rpcRequest = RPCPDU.GetPDU(data, 0);
|
|
RPCPDU rpcReply = RemoteServiceHelper.GetRPCReply(rpcRequest, service);
|
|
byte[] replyData = rpcReply.GetBytes();
|
|
state.StoreNamedPipeReply(FID, replyData);
|
|
return (uint)data.Length;
|
|
}
|
|
|
|
// This code should not execute unless the SMB request (sequence) is invalid
|
|
header.Status = NTStatus.STATUS_INVALID_SMB;
|
|
return 0;
|
|
}
|
|
else // FileSystemShare
|
|
{
|
|
Stream stream = openedFile.Stream;
|
|
if (stream == null)
|
|
{
|
|
header.Status = NTStatus.STATUS_ACCESS_DENIED;
|
|
return 0;
|
|
}
|
|
|
|
try
|
|
{
|
|
stream.Seek((long)offset, SeekOrigin.Begin);
|
|
stream.Write(data, 0, data.Length);
|
|
return (uint)data.Length;
|
|
}
|
|
catch (IOException ex)
|
|
{
|
|
ushort errorCode = IOExceptionHelper.GetWin32ErrorCode(ex);
|
|
if (errorCode == (ushort)Win32Error.ERROR_DISK_FULL)
|
|
{
|
|
header.Status = NTStatus.STATUS_DISK_FULL;
|
|
return 0;
|
|
}
|
|
else if (errorCode == (ushort)Win32Error.ERROR_SHARING_VIOLATION)
|
|
{
|
|
// Returning STATUS_SHARING_VIOLATION is undocumented but apparently valid
|
|
header.Status = NTStatus.STATUS_SHARING_VIOLATION;
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
header.Status = NTStatus.STATUS_DATA_ERROR;
|
|
return 0;
|
|
}
|
|
}
|
|
catch (ArgumentOutOfRangeException)
|
|
{
|
|
header.Status = NTStatus.STATUS_DATA_ERROR;
|
|
return 0;
|
|
}
|
|
catch (UnauthorizedAccessException)
|
|
{
|
|
// The user may have tried to write to a readonly file
|
|
header.Status = NTStatus.STATUS_ACCESS_DENIED;
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|