IOCtlHelper.cs 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.IO;
  10. using SMBLibrary.SMB2;
  11. using Utilities;
  12. namespace SMBLibrary.Server.SMB2
  13. {
  14. internal class IOCtlHelper
  15. {
  16. internal static SMB2Command GetIOCtlResponse(IOCtlRequest request, ISMBShare share, SMB2ConnectionState state)
  17. {
  18. SMB2Session session = state.GetSession(request.Header.SessionID);
  19. string ctlCode = Enum.IsDefined(typeof(IoControlCode), request.CtlCode) ? ((IoControlCode)request.CtlCode).ToString() : ("0x" + request.CtlCode.ToString("x"));
  20. if (!request.IsFSCtl)
  21. {
  22. // [MS-SMB2] If the Flags field of the request is not SMB2_0_IOCTL_IS_FSCTL the server MUST fail the request with STATUS_NOT_SUPPORTED.
  23. state.LogToServer(Severity.Verbose, "IOCTL: Non-FSCTL requests are not supported. CTL Code: {0}", ctlCode);
  24. return new ErrorResponse(request.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
  25. }
  26. if (request.CtlCode == (uint)IoControlCode.FSCTL_DFS_GET_REFERRALS ||
  27. request.CtlCode == (uint)IoControlCode.FSCTL_DFS_GET_REFERRALS_EX)
  28. {
  29. // [MS-SMB2] 3.3.5.15.2 Handling a DFS Referral Information Request
  30. state.LogToServer(Severity.Verbose, "IOCTL failed. CTL Code: {0}. NTStatus: STATUS_FS_DRIVER_REQUIRED.", ctlCode);
  31. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FS_DRIVER_REQUIRED);
  32. }
  33. object handle;
  34. if (request.CtlCode == (uint)IoControlCode.FSCTL_PIPE_WAIT ||
  35. request.CtlCode == (uint)IoControlCode.FSCTL_VALIDATE_NEGOTIATE_INFO ||
  36. request.CtlCode == (uint)IoControlCode.FSCTL_QUERY_NETWORK_INTERFACE_INFO)
  37. {
  38. // [MS-SMB2] 3.3.5.15 - FSCTL_PIPE_WAIT / FSCTL_QUERY_NETWORK_INTERFACE_INFO /
  39. // FSCTL_VALIDATE_NEGOTIATE_INFO requests MUST have FileId set to 0xFFFFFFFFFFFFFFFF.
  40. if (request.FileId.Persistent != 0xFFFFFFFFFFFFFFFF || request.FileId.Volatile != 0xFFFFFFFFFFFFFFFF)
  41. {
  42. state.LogToServer(Severity.Verbose, "IOCTL failed. CTL Code: {0}. FileId MUST be 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", ctlCode);
  43. return new ErrorResponse(request.CommandName, NTStatus.STATUS_INVALID_PARAMETER);
  44. }
  45. handle = null;
  46. }
  47. else
  48. {
  49. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  50. if (openFile == null)
  51. {
  52. state.LogToServer(Severity.Verbose, "IOCTL failed. CTL Code: {0}. Invalid FileId. (SessionID: {1}, TreeID: {2}, FileId: {3})", ctlCode, request.Header.SessionID, request.Header.TreeID, request.FileId.Volatile);
  53. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  54. }
  55. handle = openFile.Handle;
  56. }
  57. int maxOutputLength = (int)request.MaxOutputResponse;
  58. byte[] output;
  59. NTStatus status = share.FileStore.DeviceIOControl(handle, request.CtlCode, request.Input, out output, maxOutputLength);
  60. if (status != NTStatus.STATUS_SUCCESS && status != NTStatus.STATUS_BUFFER_OVERFLOW)
  61. {
  62. state.LogToServer(Severity.Verbose, "IOCTL failed. CTL Code: {0}. NTStatus: {1}.", ctlCode, status);
  63. return new ErrorResponse(request.CommandName, status);
  64. }
  65. state.LogToServer(Severity.Verbose, "IOCTL succeeded. CTL Code: {0}.", ctlCode);
  66. IOCtlResponse response = new IOCtlResponse();
  67. response.Header.Status = status;
  68. response.CtlCode = request.CtlCode;
  69. response.FileId = request.FileId;
  70. response.Output = output;
  71. return response;
  72. }
  73. }
  74. }