123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- /* 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.Text;
- using Utilities;
- namespace SMBLibrary.Services
- {
- /// <summary>
- /// [MS-SRVS]
- /// </summary>
- 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<string> m_shares;
- public ServerService(string serverName, List<string> 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";
- }
- }
- }
- }
|