Browse Source

SMB1: Improved logging of Transaction2 subcommands

Tal Aloni 8 years ago
parent
commit
941429d75e
1 changed files with 7 additions and 1 deletions
  1. 7 1
      SMBLibrary/Server/SMB1/Transaction2SubcommandHelper.cs

+ 7 - 1
SMBLibrary/Server/SMB1/Transaction2SubcommandHelper.cs

@@ -146,6 +146,7 @@ namespace SMBLibrary.Server.SMB1
                 header.Status = queryStatus;
                 return null;
             }
+            state.LogToServer(Severity.Information, "GetFileSystemInformation on '{0}' succeeded. Information level: {1}", share.Name, subcommand.InformationLevel);
             response.SetQueryFSInformation(queryFSInformation, header.UnicodeFlag);
             return response;
         }
@@ -173,6 +174,7 @@ namespace SMBLibrary.Server.SMB1
                 header.Status = queryStatus;
                 return null;
             }
+            state.LogToServer(Severity.Information, "GetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, path, subcommand.InformationLevel);
             response.SetQueryInformation(queryInformation);
             return response;
         }
@@ -206,6 +208,7 @@ namespace SMBLibrary.Server.SMB1
                 header.Status = queryStatus;
                 return null;
             }
+            state.LogToServer(Severity.Information, "GetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, openFile.Path, subcommand.InformationLevel);
             response.SetQueryInformation(queryInformation);
             return response;
         }
@@ -237,11 +240,13 @@ namespace SMBLibrary.Server.SMB1
             }
             catch(UnsupportedInformationLevelException)
             {
+                state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: STATUS_OS2_INVALID_LEVEL", share.Name, openFile.Path, subcommand.InformationLevel);
                 header.Status = NTStatus.STATUS_OS2_INVALID_LEVEL;
                 return null;
             }
             catch(Exception)
             {
+                state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: STATUS_INVALID_PARAMETER", share.Name, openFile.Path, subcommand.InformationLevel);
                 header.Status = NTStatus.STATUS_INVALID_PARAMETER;
                 return null;
             }
@@ -249,10 +254,11 @@ namespace SMBLibrary.Server.SMB1
             NTStatus status = SMB1FileStoreHelper.SetFileInformation(share.FileStore, openFile.Handle, information);
             if (status != NTStatus.STATUS_SUCCESS)
             {
-                state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: {3}", share.Name, openFile.Path, information.InformationLevel, status);
+                state.LogToServer(Severity.Verbose, "SetFileInformation on '{0}{1}' failed. Information level: {2}, NTStatus: {3}", share.Name, openFile.Path, subcommand.InformationLevel, status);
                 header.Status = status;
                 return null;
             }
+            state.LogToServer(Severity.Information, "SetFileInformation on '{0}{1}' succeeded. Information level: {2}", share.Name, openFile.Path, subcommand.InformationLevel);
             Transaction2SetFileInformationResponse response = new Transaction2SetFileInformationResponse();
             return response;
         }