Merge branch 'v3-2-test' of git://git.samba.org/samba into v3-2-test
[metze/samba/wip.git] / source3 / lib / netapi / netapi.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  NetApi Support
4  *  Copyright (C) Guenther Deschner 2007
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 NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context)
30 {
31         struct libnetapi_ctx *ctx = NULL;
32
33         if (stat_ctx && libnetapi_initialized) {
34                 *context = stat_ctx;
35                 return W_ERROR_V(WERR_OK);
36         }
37
38         frame = talloc_stackframe();
39
40         ctx = talloc_zero(frame, struct libnetapi_ctx);
41         if (!ctx) {
42                 TALLOC_FREE(frame);
43                 return W_ERROR_V(WERR_NOMEM);
44         }
45
46         DEBUGLEVEL = 0;
47         setup_logging("libnetapi", true);
48
49         dbf = x_stderr;
50         x_setbuf(x_stderr, NULL);
51         AllowDebugChange = false;
52
53         load_case_tables();
54
55         if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, false)) {
56                 TALLOC_FREE(frame);
57                 return W_ERROR_V(WERR_GENERAL_FAILURE);
58         }
59
60         AllowDebugChange = true;
61
62         init_names();
63         load_interfaces();
64         reopen_logs();
65
66         BlockSignals(True, SIGPIPE);
67
68         libnetapi_initialized = true;
69
70         *context = stat_ctx = ctx;
71
72         return W_ERROR_V(WERR_OK);
73 }
74
75 NET_API_STATUS libnetapi_getctx(struct libnetapi_ctx **ctx)
76 {
77         if (stat_ctx) {
78                 *ctx = stat_ctx;
79                 return W_ERROR_V(WERR_OK);
80         }
81
82         return libnetapi_init(ctx);
83 }
84
85 NET_API_STATUS libnetapi_free(struct libnetapi_ctx *ctx)
86 {
87         gfree_names();
88         gfree_loadparm();
89         gfree_case_tables();
90         gfree_charcnv();
91         gfree_interfaces();
92
93         TALLOC_FREE(ctx);
94         TALLOC_FREE(frame);
95
96         gfree_debugsyms();
97
98         return W_ERROR_V(WERR_OK);
99 }
100
101 NET_API_STATUS libnetapi_set_debuglevel(struct libnetapi_ctx *ctx,
102                                         const char *debuglevel)
103 {
104         AllowDebugChange = true;
105         ctx->debuglevel = debuglevel;
106         if (!debug_parse_levels(debuglevel)) {
107                 return W_ERROR_V(WERR_GENERAL_FAILURE);
108         }
109         return W_ERROR_V(WERR_OK);
110 }
111
112 NET_API_STATUS libnetapi_get_debuglevel(struct libnetapi_ctx *ctx,
113                                         const char **debuglevel)
114 {
115         *debuglevel = ctx->debuglevel;
116         return W_ERROR_V(WERR_OK);
117 }
118
119 NET_API_STATUS libnetapi_set_username(struct libnetapi_ctx *ctx,
120                                       const char *username)
121 {
122         TALLOC_FREE(ctx->username);
123         ctx->username = talloc_strdup(ctx, username);
124         if (!ctx->username) {
125                 return W_ERROR_V(WERR_NOMEM);
126         }
127         return W_ERROR_V(WERR_OK);
128 }
129
130 NET_API_STATUS libnetapi_set_password(struct libnetapi_ctx *ctx,
131                                       const char *password)
132 {
133         TALLOC_FREE(ctx->password);
134         ctx->password = talloc_strdup(ctx, password);
135         if (!ctx->password) {
136                 return W_ERROR_V(WERR_NOMEM);
137         }
138         return W_ERROR_V(WERR_OK);
139 }
140
141 NET_API_STATUS libnetapi_set_workgroup(struct libnetapi_ctx *ctx,
142                                        const char *workgroup)
143 {
144         TALLOC_FREE(ctx->workgroup);
145         ctx->workgroup = talloc_strdup(ctx, workgroup);
146         if (!ctx->workgroup) {
147                 return W_ERROR_V(WERR_NOMEM);
148         }
149         return W_ERROR_V(WERR_OK);
150 }
151
152 const char *libnetapi_errstr(struct libnetapi_ctx *ctx,
153                              NET_API_STATUS status)
154 {
155         if (status & 0xc0000000) {
156                 return get_friendly_nt_error_msg(NT_STATUS(status));
157         }
158
159         return get_friendly_werror_msg(W_ERROR(status));
160 }