IOCtlHelper.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. if (request.CtlCode == (uint)IoControlCode.FSCTL_DFS_GET_REFERRALS ||
  20. request.CtlCode == (uint)IoControlCode.FSCTL_DFS_GET_REFERRALS_EX)
  21. {
  22. // [MS-SMB2] 3.3.5.15.2 Handling a DFS Referral Information Request
  23. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FS_DRIVER_REQUIRED);
  24. }
  25. OpenFileObject openFile = session.GetOpenFileObject(request.FileId);
  26. object handle;
  27. if (openFile == null)
  28. {
  29. if (request.CtlCode == (uint)IoControlCode.FSCTL_PIPE_WAIT ||
  30. request.CtlCode == (uint)IoControlCode.FSCTL_VALIDATE_NEGOTIATE_INFO ||
  31. request.CtlCode == (uint)IoControlCode.FSCTL_QUERY_NETWORK_INTERFACE_INFO)
  32. {
  33. // [MS-SMB2] 3.3.5.1.5 - FSCTL_PIPE_WAIT / FSCTL_QUERY_NETWORK_INTERFACE_INFO /
  34. // FSCTL_VALIDATE_NEGOTIATE_INFO requests have FileId set to 0xFFFFFFFFFFFFFFFF.
  35. handle = null;
  36. }
  37. else
  38. {
  39. state.LogToServer(Severity.Verbose, "IOCTL failed. Invalid FileId.");
  40. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  41. }
  42. }
  43. else
  44. {
  45. handle = openFile.Handle;
  46. }
  47. int maxOutputLength = (int)request.MaxOutputResponse;
  48. byte[] output;
  49. NTStatus status = share.FileStore.DeviceIOControl(handle, request.CtlCode, request.Input, out output, maxOutputLength);
  50. if (status != NTStatus.STATUS_SUCCESS && status != NTStatus.STATUS_BUFFER_OVERFLOW)
  51. {
  52. state.LogToServer(Severity.Verbose, "IOCTL failed. CTL Code: 0x{0}. NTStatus: {1}.", request.CtlCode.ToString("x"), status);
  53. return new ErrorResponse(request.CommandName, status);
  54. }
  55. state.LogToServer(Severity.Verbose, "IOCTL succeeded. CTL Code: 0x{0}.", request.CtlCode.ToString("x"));
  56. IOCtlResponse response = new IOCtlResponse();
  57. response.Header.Status = status;
  58. response.CtlCode = request.CtlCode;
  59. response.FileId = request.FileId;
  60. response.Output = output;
  61. return response;
  62. }
  63. }
  64. }