47b3ba93cf6b3077e1ac7186011186c187de9352
[samba.git] / source3 / lib / netapi / netapi.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  NetApi Support
4  *  Copyright (C) Guenther Deschner 2007-2008
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "includes.h"
21 #include "lib/netapi/netapi.h"
22
23 extern bool AllowDebugChange;
24
25 struct libnetapi_ctx *stat_ctx = NULL;
26 TALLOC_CTX *frame = NULL;
27 static bool libnetapi_initialized = false;
28
29 /****************************************************************
30 ****************************************************************/
31
32 NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context)
33 {
34         struct libnetapi_ctx *ctx = NULL;
35         char *krb5_cc_env = NULL;
36
37         if (stat_ctx && libnetapi_initialized) {
38                 *context = stat_ctx;
39                 return NET_API_STATUS_SUCCESS;
40         }
41
42 #ifdef DEVELOPER
43         talloc_enable_leak_report();
44 #endif
45         frame = talloc_stackframe();
46
47         ctx = talloc_zero(frame, struct libnetapi_ctx);
48         if (!ctx) {
49                 TALLOC_FREE(frame);
50                 return W_ERROR_V(WERR_NOMEM);
51         }
52
53         DEBUGLEVEL = 0;
54         setup_logging("libnetapi", true);
55
56         dbf = x_stderr;
57         x_setbuf(x_stderr, NULL);
58         AllowDebugChange = false;
59
60         load_case_tables();
61
62         if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, false)) {
63                 TALLOC_FREE(frame);
64                 return W_ERROR_V(WERR_GENERAL_FAILURE);
65         }
66
67         AllowDebugChange = true;
68
69         init_names();
70         load_interfaces();
71         reopen_logs();
72
73         BlockSignals(True, SIGPIPE);
74
75         krb5_cc_env = getenv(KRB5_ENV_CCNAME);
76         if (!krb5_cc_env || (strlen(krb5_cc_env) == 0)) {
77                 ctx->krb5_cc_env = talloc_strdup(frame, "MEMORY:libnetapi");
78                 setenv(KRB5_ENV_CCNAME, ctx->krb5_cc_env, 1);
79         }
80
81         libnetapi_initialized = true;
82
83         *context = stat_ctx = ctx;
84
85         return NET_API_STATUS_SUCCESS;
86 }
87
88 /****************************************************************
89 ****************************************************************/
90
91 NET_API_STATUS libnetapi_getctx(struct libnetapi_ctx **ctx)
92 {
93         if (stat_ctx) {
94                 *ctx = stat_ctx;
95                 return NET_API_STATUS_SUCCESS;
96         }
97
98         return libnetapi_init(ctx);
99 }
100
101 /****************************************************************
102 ****************************************************************/
103
104 NET_API_STATUS libnetapi_free(struct libnetapi_ctx *ctx)
105 {
106
107         if (ctx->krb5_cc_env) {
108                 char *env = getenv(KRB5_ENV_CCNAME);
109                 if (env && (strequal(ctx->krb5_cc_env, env))) {
110                         unsetenv(KRB5_ENV_CCNAME);
111                 }
112         }
113
114         gfree_names();
115         gfree_loadparm();
116         gfree_case_tables();
117         gfree_charcnv();
118         gfree_interfaces();
119
120         gencache_shutdown();
121         secrets_shutdown();
122
123         TALLOC_FREE(ctx);
124         TALLOC_FREE(frame);
125
126         gfree_debugsyms();
127
128         return NET_API_STATUS_SUCCESS;
129 }
130
131 /****************************************************************
132 ****************************************************************/
133
134 NET_API_STATUS libnetapi_set_debuglevel(struct libnetapi_ctx *ctx,
135                                         const char *debuglevel)
136 {
137         AllowDebugChange = true;
138         ctx->debuglevel = talloc_strdup(ctx, debuglevel);
139         if (!debug_parse_levels(debuglevel)) {
140                 return W_ERROR_V(WERR_GENERAL_FAILURE);
141         }
142         return NET_API_STATUS_SUCCESS;
143 }
144
145 /****************************************************************
146 ****************************************************************/
147
148 NET_API_STATUS libnetapi_get_debuglevel(struct libnetapi_ctx *ctx,
149                                         char **debuglevel)
150 {
151         *debuglevel = ctx->debuglevel;
152         return NET_API_STATUS_SUCCESS;
153 }
154
155 /****************************************************************
156 ****************************************************************/
157
158 NET_API_STATUS libnetapi_set_username(struct libnetapi_ctx *ctx,
159                                       const char *username)
160 {
161         TALLOC_FREE(ctx->username);
162         ctx->username = talloc_strdup(ctx, username);
163         if (!ctx->username) {
164                 return W_ERROR_V(WERR_NOMEM);
165         }
166         return NET_API_STATUS_SUCCESS;
167 }
168
169 NET_API_STATUS libnetapi_set_password(struct libnetapi_ctx *ctx,
170                                       const char *password)
171 {
172         TALLOC_FREE(ctx->password);
173         ctx->password = talloc_strdup(ctx, password);
174         if (!ctx->password) {
175                 return W_ERROR_V(WERR_NOMEM);
176         }
177         return NET_API_STATUS_SUCCESS;
178 }
179
180 NET_API_STATUS libnetapi_set_workgroup(struct libnetapi_ctx *ctx,
181                                        const char *workgroup)
182 {
183         TALLOC_FREE(ctx->workgroup);
184         ctx->workgroup = talloc_strdup(ctx, workgroup);
185         if (!ctx->workgroup) {
186                 return W_ERROR_V(WERR_NOMEM);
187         }
188         return NET_API_STATUS_SUCCESS;
189 }
190
191 /****************************************************************
192 ****************************************************************/
193
194 const char *libnetapi_errstr(NET_API_STATUS status)
195 {
196         if (status & 0xc0000000) {
197                 return get_friendly_nt_error_msg(NT_STATUS(status));
198         }
199
200         return get_friendly_werror_msg(W_ERROR(status));
201 }
202
203 /****************************************************************
204 ****************************************************************/
205
206 NET_API_STATUS libnetapi_set_error_string(struct libnetapi_ctx *ctx,
207                                           const char *format, ...)
208 {
209         va_list args;
210
211         TALLOC_FREE(ctx->error_string);
212
213         va_start(args, format);
214         ctx->error_string = talloc_vasprintf(ctx, format, args);
215         va_end(args);
216
217         if (!ctx->error_string) {
218                 return W_ERROR_V(WERR_NOMEM);
219         }
220         return NET_API_STATUS_SUCCESS;
221 }
222
223 /****************************************************************
224 ****************************************************************/
225
226 const char *libnetapi_get_error_string(struct libnetapi_ctx *ctx,
227                                        NET_API_STATUS status)
228 {
229         struct libnetapi_ctx *tmp_ctx = ctx;
230
231         if (!tmp_ctx) {
232                 status = libnetapi_getctx(&tmp_ctx);
233                 if (status != 0) {
234                         return NULL;
235                 }
236         }
237
238         if (tmp_ctx->error_string) {
239                 return tmp_ctx->error_string;
240         }
241
242         return libnetapi_errstr(status);
243 }
244
245 /****************************************************************
246 ****************************************************************/
247
248 NET_API_STATUS NetApiBufferFree(void *buffer)
249 {
250         if (!buffer) {
251                 return W_ERROR_V(WERR_INSUFFICIENT_BUFFER);
252         }
253
254         talloc_free(buffer);
255
256         return NET_API_STATUS_SUCCESS;
257 }