s3-nterr: add NT_STATUS_RPC_NT_PROTOCOL_ERROR to nt_errstr().
[ira/wip.git] / source3 / libsmb / nterr.c
index 4f97379ee07168e587452f33b437f9e58707c070..a684f8d66e030ead28731394f75b61a05245e34b 100644 (file)
@@ -5,7 +5,7 @@
  *  
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation; either version 3 of the License, or
  *  (at your option) any later version.
  *  
  *  This program is distributed in the hope that it will be useful,
  *  GNU General Public License for more details.
  *  
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 /* NT error codes.  please read nterr.h */
 
 #include "includes.h"
 
-typedef const struct
+typedef struct
 {
        const char *nt_errstr;
        NTSTATUS nt_errcode;
 } nt_err_code_struct;
 
-static nt_err_code_struct nt_errs[] =
+static const nt_err_code_struct nt_errs[] =
 {
        { "NT_STATUS_OK", NT_STATUS_OK },
        { "NT_STATUS_UNSUCCESSFUL", NT_STATUS_UNSUCCESSFUL },
@@ -533,11 +532,16 @@ static nt_err_code_struct nt_errs[] =
        { "NT_STATUS_TOO_MANY_LINKS", NT_STATUS_TOO_MANY_LINKS },
        { "NT_STATUS_QUOTA_LIST_INCONSISTENT", NT_STATUS_QUOTA_LIST_INCONSISTENT },
        { "NT_STATUS_FILE_IS_OFFLINE", NT_STATUS_FILE_IS_OFFLINE },
+       { "NT_STATUS_DS_NO_MORE_RIDS", NT_STATUS_DS_NO_MORE_RIDS },
        { "NT_STATUS_NOT_A_REPARSE_POINT", NT_STATUS_NOT_A_REPARSE_POINT },
+       { "NT_STATUS_DOWNGRADE_DETECTED", NT_STATUS_DOWNGRADE_DETECTED },
         { "NT_STATUS_NO_MORE_ENTRIES", NT_STATUS_NO_MORE_ENTRIES },
        { "STATUS_MORE_ENTRIES", STATUS_MORE_ENTRIES },
        { "STATUS_SOME_UNMAPPED", STATUS_SOME_UNMAPPED },
        { "STATUS_NO_MORE_FILES", STATUS_NO_MORE_FILES },
+       { "NT_STATUS_RPC_CANNOT_SUPPORT", NT_STATUS_RPC_CANNOT_SUPPORT },
+       { "NT_STATUS_RPC_NT_CALL_FAILED", NT_STATUS_RPC_NT_CALL_FAILED },
+       { "NT_STATUS_RPC_NT_PROTOCOL_ERROR", NT_STATUS_RPC_NT_PROTOCOL_ERROR },
        { NULL, NT_STATUS(0) }
 };
 
@@ -569,10 +573,8 @@ nt_err_code_struct nt_err_desc[] =
        { "Invalid workstation",                NT_STATUS_INVALID_WORKSTATION },
        { "Password expired",                   NT_STATUS_PASSWORD_EXPIRED },
        { "Account disabled",                   NT_STATUS_ACCOUNT_DISABLED },
-       { "Unexpected information received",    NT_STATUS_INVALID_PARAMETER },
        { "Memory allocation error",            NT_STATUS_NO_MEMORY },
        { "No domain controllers located",      NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND },
-       { "Account locked out",                 NT_STATUS_ACCOUNT_LOCKED_OUT },
        { "Named pipe not available",           NT_STATUS_PIPE_NOT_AVAILABLE },
        { "Not implemented",                    NT_STATUS_NOT_IMPLEMENTED },
        { "Invalid information class",          NT_STATUS_INVALID_INFO_CLASS },
@@ -583,7 +585,6 @@ nt_err_code_struct nt_err_desc[] =
        { "No memory",                          NT_STATUS_NO_MEMORY },
        { "Buffer too small",                   NT_STATUS_BUFFER_TOO_SMALL },
        { "Revision mismatch",                  NT_STATUS_REVISION_MISMATCH },
-       { "No logon servers",                   NT_STATUS_NO_LOGON_SERVERS },
        { "No such logon session",              NT_STATUS_NO_SUCH_LOGON_SESSION },
        { "No such privilege",                  NT_STATUS_NO_SUCH_PRIVILEGE },
        { "Procedure not found",                NT_STATUS_PROCEDURE_NOT_FOUND },
@@ -650,20 +651,31 @@ nt_err_code_struct nt_err_desc[] =
 
 const char *nt_errstr(NTSTATUS nt_code)
 {
-        static pstring msg;
         int idx = 0;
+       char *result;
+
+#ifdef HAVE_LDAP
+        if (NT_STATUS_IS_LDAP(nt_code)) {
+                return ldap_err2string(NT_STATUS_LDAP_CODE(nt_code));
+       }
+#endif
 
-       slprintf(msg, sizeof(msg), "NT code 0x%08x", NT_STATUS_V(nt_code));
+       if (NT_STATUS_IS_DOS(nt_code)) {
+               return smb_dos_err_name(NT_STATUS_DOS_CLASS(nt_code),
+                                       NT_STATUS_DOS_CODE(nt_code));
+       }
 
        while (nt_errs[idx].nt_errstr != NULL) {
-               if (NT_STATUS_V(nt_errs[idx].nt_errcode) == 
-                    NT_STATUS_V(nt_code)) {
+               if (NT_STATUS_EQUAL(nt_errs[idx].nt_errcode, nt_code)) {
                         return nt_errs[idx].nt_errstr;
                }
                idx++;
        }
 
-        return msg;
+       result = talloc_asprintf(talloc_tos(), "NT code 0x%08x",
+                                NT_STATUS_V(nt_code));
+       SMB_ASSERT(result != NULL);
+       return result;
 }
 
 /************************************************************************
@@ -692,7 +704,7 @@ const char *get_friendly_nt_error_msg(NTSTATUS nt_code)
 
 const char *get_nt_error_c_code(NTSTATUS nt_code)
 {
-        static pstring out;
+       char *result;
         int idx = 0;
 
        while (nt_errs[idx].nt_errstr != NULL) {
@@ -703,16 +715,17 @@ const char *get_nt_error_c_code(NTSTATUS nt_code)
                idx++;
        }
 
-       slprintf(out, sizeof(out), "NT_STATUS(0x%08x)", NT_STATUS_V(nt_code));
-
-        return out;
+       result = talloc_asprintf(talloc_tos(), "NT_STATUS(0x%08x)",
+                                NT_STATUS_V(nt_code));
+       SMB_ASSERT(result);
+       return result;
 }
 
 /*****************************************************************************
  Returns the NT_STATUS constant matching the string supplied (as an NTSTATUS)
  *****************************************************************************/
 
-NTSTATUS nt_status_string_to_code(char *nt_status_str)
+NTSTATUS nt_status_string_to_code(const char *nt_status_str)
 {
         int idx = 0;