IOCtlHelper.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
  40. }
  41. }
  42. else
  43. {
  44. handle = openFile.Handle;
  45. }
  46. int maxOutputLength = (int)request.MaxOutputResponse;
  47. byte[] output;
  48. NTStatus status = share.FileStore.DeviceIOControl(handle, request.CtlCode, request.Input, out output, maxOutputLength);
  49. if (status != NTStatus.STATUS_SUCCESS && status != NTStatus.STATUS_BUFFER_OVERFLOW)
  50. {
  51. return new ErrorResponse(request.CommandName, status);
  52. }
  53. IOCtlResponse response = new IOCtlResponse();
  54. response.Header.Status = status;
  55. response.CtlCode = request.CtlCode;
  56. response.FileId = request.FileId;
  57. response.Output = output;
  58. return response;
  59. }
  60. }
  61. }