CancelHelper.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 SMBLibrary.SMB2;
  10. using Utilities;
  11. namespace SMBLibrary.Server.SMB2
  12. {
  13. internal class CancelHelper
  14. {
  15. internal static SMB2Command GetCancelResponse(CancelRequest request, SMB2ConnectionState state)
  16. {
  17. SMB2Session session = state.GetSession(request.Header.SessionID);
  18. if (request.Header.IsAsync)
  19. {
  20. SMB2AsyncContext context = state.GetAsyncContext(request.Header.AsyncID);
  21. if (context != null)
  22. {
  23. ISMBShare share = session.GetConnectedTree(context.TreeID);
  24. OpenFileObject openFile = session.GetOpenFileObject(context.FileID);
  25. NTStatus status = share.FileStore.Cancel(context.IORequest);
  26. if (openFile != null)
  27. {
  28. state.LogToServer(Severity.Information, "Cancel: Requested cancel on '{0}{1}'. NTStatus: {2}, AsyncID: {3}.", share.Name, openFile.Path, status, context.AsyncID);
  29. }
  30. if (status == NTStatus.STATUS_SUCCESS || status == NTStatus.STATUS_CANCELLED)
  31. {
  32. state.RemoveAsyncContext(context);
  33. // [MS-SMB2] If the target request is successfully canceled, the target request MUST be failed by sending
  34. // an ERROR response packet [..] with the status field of the SMB2 header set to STATUS_CANCELLED.
  35. ErrorResponse response = new ErrorResponse(request.CommandName, NTStatus.STATUS_CANCELLED);
  36. response.Header.IsAsync = true;
  37. response.Header.AsyncID = context.AsyncID;
  38. return response;
  39. }
  40. // [MS-SMB2] If the target request is not successfully canceled [..] no response is sent.
  41. return null;
  42. }
  43. else
  44. {
  45. // [MS-SMB2] If a request is not found [..] no response is sent.
  46. return null;
  47. }
  48. }
  49. else
  50. {
  51. // [MS-SMB2] the SMB2 CANCEL Request MUST use an ASYNC header for canceling requests that have received an interim response.
  52. // [MS-SMB2] If the target request is not successfully canceled [..] no response is sent.
  53. return null;
  54. }
  55. }
  56. }
  57. }