2 Unix SMB/CIFS implementation.
3 ads (active directory) utility library
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Remus Koos 2001
6 Copyright (C) Andrew Bartlett 2001
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "libads/ads_status.h"
29 build a ADS_STATUS structure
31 ADS_STATUS
ads_build_error(enum ads_error_type etype
,
32 int rc
, int minor_status
)
36 if (etype
== ENUM_ADS_ERROR_NT
) {
37 DEBUG(0,("don't use ads_build_error with ENUM_ADS_ERROR_NT!\n"));
39 ret
.error_type
= ENUM_ADS_ERROR_SYSTEM
;
45 ret
.error_type
= etype
;
46 ret
.minor_status
= minor_status
;
50 ADS_STATUS
ads_build_nt_error(enum ads_error_type etype
,
55 if (etype
!= ENUM_ADS_ERROR_NT
) {
56 DEBUG(0,("don't use ads_build_nt_error without ENUM_ADS_ERROR_NT!\n"));
58 ret
.error_type
= ENUM_ADS_ERROR_SYSTEM
;
62 ret
.err
.nt_status
= nt_status
;
63 ret
.error_type
= etype
;
69 do a rough conversion between ads error codes and NT status codes
70 we'll need to fill this in more
72 NTSTATUS
ads_ntstatus(ADS_STATUS status
)
74 switch (status
.error_type
) {
75 case ENUM_ADS_ERROR_NT
:
76 return status
.err
.nt_status
;
77 case ENUM_ADS_ERROR_SYSTEM
:
78 return map_nt_error_from_unix(status
.err
.rc
);
80 case ENUM_ADS_ERROR_LDAP
:
81 if (status
.err
.rc
== LDAP_SUCCESS
) {
84 return NT_STATUS_LDAP(status
.err
.rc
);
87 case ENUM_ADS_ERROR_KRB5
:
88 return krb5_to_nt_status(status
.err
.rc
);
94 if (ADS_ERR_OK(status
)) {
97 return NT_STATUS_UNSUCCESSFUL
;
101 return a string for an error from a ads routine
103 const char *ads_errstr(ADS_STATUS status
)
105 switch (status
.error_type
) {
106 case ENUM_ADS_ERROR_SYSTEM
:
107 return strerror(status
.err
.rc
);
109 case ENUM_ADS_ERROR_LDAP
:
110 return ldap_err2string(status
.err
.rc
);
113 case ENUM_ADS_ERROR_KRB5
:
114 return error_message(status
.err
.rc
);
115 case ENUM_ADS_ERROR_GSS
:
120 gss_buffer_desc msg1
, msg2
;
126 gss_display_status(&minor
, status
.err
.rc
, GSS_C_GSS_CODE
,
127 GSS_C_NULL_OID
, &msg_ctx
, &msg1
);
128 gss_display_status(&minor
, status
.minor_status
, GSS_C_MECH_CODE
,
129 GSS_C_NULL_OID
, &msg_ctx
, &msg2
);
130 ret
= talloc_asprintf(talloc_tos(), "%s : %s",
131 (char *)msg1
.value
, (char *)msg2
.value
);
132 SMB_ASSERT(ret
!= NULL
);
133 gss_release_buffer(&minor
, &msg1
);
134 gss_release_buffer(&minor
, &msg2
);
138 case ENUM_ADS_ERROR_NT
:
139 return get_friendly_nt_error_msg(ads_ntstatus(status
));
141 return "Unknown ADS error type!? (not compiled in?)";
146 NTSTATUS
gss_err_to_ntstatus(uint32 maj
, uint32 min
)
148 ADS_STATUS adss
= ADS_ERROR_GSS(maj
, min
);
149 DEBUG(10,("gss_err_to_ntstatus: Error %s\n",
151 return ads_ntstatus(adss
);