mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-25 01:57:02 +01:00
update sharpcifs
This commit is contained in:
@@ -19,136 +19,138 @@ using SharpCifs.Util.Sharpen;
|
||||
|
||||
namespace SharpCifs.Netbios
|
||||
{
|
||||
public abstract class SessionServicePacket
|
||||
{
|
||||
internal const int SessionMessage = unchecked(0x00);
|
||||
public abstract class SessionServicePacket
|
||||
{
|
||||
internal const int SessionMessage = unchecked(0x00);
|
||||
|
||||
internal const int SessionRequest = unchecked(0x81);
|
||||
internal const int SessionRequest = unchecked(0x81);
|
||||
|
||||
public const int PositiveSessionResponse = unchecked(0x82);
|
||||
public const int PositiveSessionResponse = unchecked(0x82);
|
||||
|
||||
public const int NegativeSessionResponse = unchecked(0x83);
|
||||
public const int NegativeSessionResponse = unchecked(0x83);
|
||||
|
||||
internal const int SessionRetargetResponse = unchecked(0x84);
|
||||
internal const int SessionRetargetResponse = unchecked(0x84);
|
||||
|
||||
internal const int SessionKeepAlive = unchecked(0x85);
|
||||
internal const int SessionKeepAlive = unchecked(0x85);
|
||||
|
||||
internal const int MaxMessageSize = unchecked(0x0001FFFF);
|
||||
internal const int MaxMessageSize = unchecked(0x0001FFFF);
|
||||
|
||||
internal const int HeaderLength = 4;
|
||||
internal const int HeaderLength = 4;
|
||||
|
||||
// session service packet types
|
||||
internal static void WriteInt2(int val, byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 8) & unchecked(0xFF)));
|
||||
dst[dstIndex] = unchecked((byte)(val & unchecked(0xFF)));
|
||||
}
|
||||
// session service packet types
|
||||
internal static void WriteInt2(int val, byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 8) & unchecked(0xFF)));
|
||||
dst[dstIndex] = unchecked((byte)(val & unchecked(0xFF)));
|
||||
}
|
||||
|
||||
internal static void WriteInt4(int val, byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 24) & unchecked(0xFF)));
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 16) & unchecked(0xFF)));
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 8) & unchecked(0xFF)));
|
||||
dst[dstIndex] = unchecked((byte)(val & unchecked(0xFF)));
|
||||
}
|
||||
internal static void WriteInt4(int val, byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 24) & unchecked(0xFF)));
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 16) & unchecked(0xFF)));
|
||||
dst[dstIndex++] = unchecked((byte)((val >> 8) & unchecked(0xFF)));
|
||||
dst[dstIndex] = unchecked((byte)(val & unchecked(0xFF)));
|
||||
}
|
||||
|
||||
internal static int ReadInt2(byte[] src, int srcIndex)
|
||||
{
|
||||
return ((src[srcIndex] & unchecked(0xFF)) << 8)
|
||||
+ (src[srcIndex + 1] & unchecked(0xFF));
|
||||
}
|
||||
internal static int ReadInt2(byte[] src, int srcIndex)
|
||||
{
|
||||
return ((src[srcIndex] & unchecked(0xFF)) << 8) + (src[srcIndex + 1] & unchecked(
|
||||
0xFF));
|
||||
}
|
||||
|
||||
internal static int ReadInt4(byte[] src, int srcIndex)
|
||||
{
|
||||
return ((src[srcIndex] & unchecked(0xFF)) << 24)
|
||||
+ ((src[srcIndex + 1] & unchecked(0xFF)) << 16)
|
||||
+ ((src[srcIndex + 2] & unchecked(0xFF)) << 8)
|
||||
+ (src[srcIndex + 3] & unchecked(0xFF));
|
||||
}
|
||||
internal static int ReadInt4(byte[] src, int srcIndex)
|
||||
{
|
||||
return ((src[srcIndex] & unchecked(0xFF)) << 24) + ((src[srcIndex + 1] & unchecked(
|
||||
0xFF)) << 16) + ((src[srcIndex + 2] & unchecked(0xFF)) << 8) + (src
|
||||
[srcIndex + 3] & unchecked(0xFF));
|
||||
}
|
||||
|
||||
internal static int ReadLength(byte[] src, int srcIndex)
|
||||
{
|
||||
srcIndex++;
|
||||
return ((src[srcIndex++] & unchecked(0x01)) << 16)
|
||||
+ ((src[srcIndex++] & unchecked(0xFF)) << 8)
|
||||
+ (src[srcIndex++] & unchecked(0xFF));
|
||||
}
|
||||
internal static int ReadLength(byte[] src, int srcIndex)
|
||||
{
|
||||
srcIndex++;
|
||||
return ((src[srcIndex++] & unchecked(0x01)) << 16) + ((src[srcIndex++] & unchecked(
|
||||
0xFF)) << 8) + (src[srcIndex++] & unchecked(0xFF));
|
||||
}
|
||||
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal static int Readn(InputStream @in, byte[] b, int off, int len)
|
||||
{
|
||||
int i = 0;
|
||||
int n;
|
||||
while (i < len)
|
||||
{
|
||||
n = @in.Read(b, off + i, len - i);
|
||||
if (n <= 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
i += n;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal static int Readn(InputStream @in, byte[] b, int off, int len)
|
||||
{
|
||||
int i = 0;
|
||||
int n;
|
||||
while (i < len)
|
||||
{
|
||||
n = @in.Read(b, off + i, len - i);
|
||||
if (n <= 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
i += n;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal static int ReadPacketType(InputStream @in, byte[] buffer, int bufferIndex)
|
||||
{
|
||||
int n;
|
||||
if ((n = Readn(@in, buffer, bufferIndex, HeaderLength)) != HeaderLength)
|
||||
{
|
||||
if (n == -1)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
throw new IOException("unexpected EOF reading netbios session header");
|
||||
}
|
||||
int t = buffer[bufferIndex] & unchecked(0xFF);
|
||||
return t;
|
||||
}
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal static int ReadPacketType(InputStream @in, byte[] buffer, int bufferIndex
|
||||
)
|
||||
{
|
||||
int n;
|
||||
if ((n = Readn(@in, buffer, bufferIndex, HeaderLength)) != HeaderLength)
|
||||
{
|
||||
if (n == -1)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
throw new IOException("unexpected EOF reading netbios session header");
|
||||
}
|
||||
int t = buffer[bufferIndex] & unchecked(0xFF);
|
||||
return t;
|
||||
}
|
||||
|
||||
internal int Type;
|
||||
internal int Type;
|
||||
|
||||
internal int Length;
|
||||
internal int Length;
|
||||
|
||||
public virtual int WriteWireFormat(byte[] dst, int dstIndex)
|
||||
{
|
||||
Length = WriteTrailerWireFormat(dst, dstIndex + HeaderLength);
|
||||
WriteHeaderWireFormat(dst, dstIndex);
|
||||
return HeaderLength + Length;
|
||||
}
|
||||
public virtual int WriteWireFormat(byte[] dst, int dstIndex)
|
||||
{
|
||||
Length = WriteTrailerWireFormat(dst, dstIndex + HeaderLength);
|
||||
WriteHeaderWireFormat(dst, dstIndex);
|
||||
return HeaderLength + Length;
|
||||
}
|
||||
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal virtual int ReadWireFormat(InputStream @in, byte[] buffer, int bufferIndex)
|
||||
{
|
||||
ReadHeaderWireFormat(@in, buffer, bufferIndex);
|
||||
return HeaderLength + ReadTrailerWireFormat(@in, buffer, bufferIndex);
|
||||
}
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal virtual int ReadWireFormat(InputStream @in, byte[] buffer, int bufferIndex
|
||||
)
|
||||
{
|
||||
ReadHeaderWireFormat(@in, buffer, bufferIndex);
|
||||
return HeaderLength + ReadTrailerWireFormat(@in, buffer, bufferIndex);
|
||||
}
|
||||
|
||||
internal virtual int WriteHeaderWireFormat(byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)Type);
|
||||
if (Length > unchecked(0x0000FFFF))
|
||||
{
|
||||
dst[dstIndex] = unchecked(unchecked(0x01));
|
||||
}
|
||||
dstIndex++;
|
||||
WriteInt2(Length, dst, dstIndex);
|
||||
return HeaderLength;
|
||||
}
|
||||
internal virtual int WriteHeaderWireFormat(byte[] dst, int dstIndex)
|
||||
{
|
||||
dst[dstIndex++] = unchecked((byte)Type);
|
||||
if (Length > unchecked(0x0000FFFF))
|
||||
{
|
||||
dst[dstIndex] = unchecked(unchecked(0x01));
|
||||
}
|
||||
dstIndex++;
|
||||
WriteInt2(Length, dst, dstIndex);
|
||||
return HeaderLength;
|
||||
}
|
||||
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal virtual int ReadHeaderWireFormat(InputStream @in, byte[] buffer, int bufferIndex)
|
||||
{
|
||||
Type = buffer[bufferIndex++] & unchecked(0xFF);
|
||||
Length = ((buffer[bufferIndex] & unchecked(0x01)) << 16)
|
||||
+ ReadInt2(buffer, bufferIndex + 1);
|
||||
return HeaderLength;
|
||||
}
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal virtual int ReadHeaderWireFormat(InputStream @in, byte[] buffer, int bufferIndex
|
||||
)
|
||||
{
|
||||
Type = buffer[bufferIndex++] & unchecked(0xFF);
|
||||
Length = ((buffer[bufferIndex] & unchecked(0x01)) << 16) + ReadInt2(buffer
|
||||
, bufferIndex + 1);
|
||||
return HeaderLength;
|
||||
}
|
||||
|
||||
internal abstract int WriteTrailerWireFormat(byte[] dst, int dstIndex);
|
||||
internal abstract int WriteTrailerWireFormat(byte[] dst, int dstIndex);
|
||||
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal abstract int ReadTrailerWireFormat(InputStream @in, byte[] buffer, int bufferIndex);
|
||||
}
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
internal abstract int ReadTrailerWireFormat(InputStream @in, byte[] buffer, int bufferIndex
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user