/* Copyright (C) 2014-2017 Tal Aloni . 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.Text; using Utilities; namespace SMBLibrary.Services { /// /// [MS-SRVS] /// public class ServerService : RemoteService { public const int MaxPreferredLength = -1; // MAX_PREFERRED_LENGTH private PlatformName m_platformID; private string m_serverName; private uint m_verMajor; private uint m_verMinor; private ServerType m_serverType; private List m_shares; public ServerService(string serverName, List shares) { m_platformID = PlatformName.NT; m_serverName = serverName; m_verMajor = 5; m_verMinor = 2; m_serverType = ServerType.Workstation | ServerType.Server | ServerType.WindowsNT | ServerType.ServerNT | ServerType.MasterBrowser; m_shares = shares; } public override byte[] GetResponseBytes(ushort opNum, byte[] requestBytes) { switch (opNum) { case 15: { NetrShareEnumRequest request = new NetrShareEnumRequest(requestBytes); NetrShareEnumResponse response = GetNetrShareEnumResponse(request); return response.GetBytes(); } case 16: { NetrShareGetInfoRequest request = new NetrShareGetInfoRequest(requestBytes); NetrShareGetInfoResponse response = GetNetrShareGetInfoResponse(request); return response.GetBytes(); } case 21: { NetrServerGetInfoRequest request = new NetrServerGetInfoRequest(requestBytes); NetrServerGetInfoResponse response = GetNetrWkstaGetInfoResponse(request); return response.GetBytes(); } default: throw new NotImplementedException(); } } public NetrShareEnumResponse GetNetrShareEnumResponse(NetrShareEnumRequest request) { NetrShareEnumResponse response = new NetrShareEnumResponse(); if (request.InfoStruct.Level == 0) { // We ignore request.PreferedMaximumLength ShareInfo0Container info = new ShareInfo0Container(); foreach (string shareName in m_shares) { info.Add(new ShareInfo0Entry(shareName)); } response.InfoStruct = new ShareEnum(info); response.TotalEntries = (uint)m_shares.Count; } else if (request.InfoStruct.Level == 1) { // We ignore request.PreferedMaximumLength ShareInfo1Container info = new ShareInfo1Container(); foreach (string shareName in m_shares) { info.Add(new ShareInfo1Entry(shareName, new ShareTypeExtended(ShareType.DiskDrive))); } response.InfoStruct = new ShareEnum(info); response.TotalEntries = (uint)m_shares.Count; } else { throw new NotImplementedException(); } response.Result = Win32Error.ERROR_SUCCESS; return response; } public NetrShareGetInfoResponse GetNetrShareGetInfoResponse(NetrShareGetInfoRequest request) { int shareIndex = IndexOfShare(request.NetName); NetrShareGetInfoResponse response = new NetrShareGetInfoResponse(); if (shareIndex == -1) { response.InfoStruct = new ShareInfo(request.Level); response.Result = Win32Error.NERR_NetNameNotFound; return response; } if (request.Level == 0) { ShareInfo0Entry info = new ShareInfo0Entry(m_shares[shareIndex]); response.InfoStruct = new ShareInfo(info); } else if (request.Level == 1) { ShareInfo1Entry info = new ShareInfo1Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive)); response.InfoStruct = new ShareInfo(info); } else if (request.Level == 2) { ShareInfo2Entry info = new ShareInfo2Entry(m_shares[shareIndex], new ShareTypeExtended(ShareType.DiskDrive)); response.InfoStruct = new ShareInfo(info); } else { throw new NotImplementedException(); } response.Result = Win32Error.ERROR_SUCCESS; return response; } public NetrServerGetInfoResponse GetNetrWkstaGetInfoResponse(NetrServerGetInfoRequest request) { NetrServerGetInfoResponse response = new NetrServerGetInfoResponse(); if (request.Level == 100) { ServerInfo100 info = new ServerInfo100(); info.PlatformID = m_platformID; info.ServerName.Value = m_serverName; response.InfoStruct = new ServerInfo(info); } else if (request.Level == 101) { ServerInfo101 info = new ServerInfo101(); info.PlatformID = m_platformID; info.ServerName.Value = m_serverName; info.VerMajor = m_verMajor; info.VerMinor = m_verMinor; info.Type = m_serverType; info.Comment.Value = String.Empty; response.InfoStruct = new ServerInfo(info); } else { throw new NotImplementedException(); } response.Result = Win32Error.ERROR_SUCCESS; return response; } private int IndexOfShare(string shareName) { for (int index = 0; index < m_shares.Count; index++) { if (m_shares[index].Equals(shareName, StringComparison.OrdinalIgnoreCase)) { return index; } } return -1; } public override Guid InterfaceGuid { get { return new Guid("4B324FC8-1670-01D3-1278-5A47BF6EE188"); } } public override string PipeName { get { return "srvsvc"; } } } }