Browse Source

SMB2: CloseHelper: An error response will be returned if the underlying file store was not able to close the handle

Tal Aloni 8 years ago
parent
commit
51201f6d42
1 changed files with 7 additions and 1 deletions
  1. 7 1
      SMBLibrary/Server/SMB2/CloseHelper.cs

+ 7 - 1
SMBLibrary/Server/SMB2/CloseHelper.cs

@@ -22,7 +22,13 @@ namespace SMBLibrary.Server.SMB2
             {
                 return new ErrorResponse(request.CommandName, NTStatus.STATUS_FILE_CLOSED);
             }
-            share.FileStore.CloseFile(openFile.Handle);
+
+            NTStatus closeStatus = share.FileStore.CloseFile(openFile.Handle);
+            if (closeStatus != NTStatus.STATUS_SUCCESS)
+            {
+                return new ErrorResponse(request.CommandName, closeStatus);
+            }
+
             session.RemoveOpenFile(request.FileId);
             CloseResponse response = new CloseResponse();
             if (request.PostQueryAttributes)