Browse Source

IOCtlHelper: Pass FSCTL_VALIDATE_NEGOTIATE_INFO / FSCTL_QUERY_NETWORK_INTERFACE_INFO to the INTFileStore layer, set response FileId

Tal Aloni 8 years ago
parent
commit
18979ae15f
1 changed files with 6 additions and 2 deletions
  1. 6 2
      SMBLibrary/Server/SMB2/IOCtlHelper.cs

+ 6 - 2
SMBLibrary/Server/SMB2/IOCtlHelper.cs

@@ -28,9 +28,12 @@ namespace SMBLibrary.Server.SMB2
             object handle;
             object handle;
             if (openFile == null)
             if (openFile == null)
             {
             {
-                if (request.CtlCode == (uint)IoControlCode.FSCTL_PIPE_WAIT)
+                if (request.CtlCode == (uint)IoControlCode.FSCTL_PIPE_WAIT ||
+                    request.CtlCode == (uint)IoControlCode.FSCTL_VALIDATE_NEGOTIATE_INFO ||
+                    request.CtlCode == (uint)IoControlCode.FSCTL_QUERY_NETWORK_INTERFACE_INFO)
                 {
                 {
-                    // [MS-SMB2] 3.2.4.20.9 - FSCTL_PIPE_WAIT request has FileId set to 0xFFFFFFFFFFFFFFFF
+                    // [MS-SMB2] 3.3.5.1.5 - FSCTL_PIPE_WAIT / FSCTL_QUERY_NETWORK_INTERFACE_INFO /
+                    // FSCTL_VALIDATE_NEGOTIATE_INFO requests have FileId set to 0xFFFFFFFFFFFFFFFF.
                     handle = null;
                     handle = null;
                 }
                 }
                 else
                 else
@@ -53,6 +56,7 @@ namespace SMBLibrary.Server.SMB2
 
 
             IOCtlResponse response = new IOCtlResponse();
             IOCtlResponse response = new IOCtlResponse();
             response.CtlCode = request.CtlCode;
             response.CtlCode = request.CtlCode;
+            response.FileId = request.FileId;
             response.Output = output;
             response.Output = output;
             return response;
             return response;
         }
         }