Fix two memleaks in libnetapi.
[metze/samba/wip.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 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         gencache_shutdown();
94         secrets_shutdown();
95
96         TALLOC_FREE(ctx);
97         TALLOC_FREE(frame);
98
99         gfree_debugsyms();
100
101         return W_ERROR_V(WERR_OK);
102 }
103
104 NET_API_STATUS libnetapi_set_debuglevel(struct libnetapi_ctx *ctx,
105                                         const char *debuglevel)
106 {
107         AllowDebugChange = true;
108         ctx->debuglevel = debuglevel;
109         if (!debug_parse_levels(debuglevel)) {
110                 return W_ERROR_V(WERR_GENERAL_FAILURE);
111         }
112         return W_ERROR_V(WERR_OK);
113 }
114
115 NET_API_STATUS libnetapi_get_debuglevel(struct libnetapi_ctx *ctx,
116                                         const char **debuglevel)
117 {
118         *debuglevel = ctx->debuglevel;
119         return W_ERROR_V(WERR_OK);
120 }
121
122 NET_API_STATUS libnetapi_set_username(struct libnetapi_ctx *ctx,
123                                       const char *username)
124 {
125         TALLOC_FREE(ctx->username);
126         ctx->username = talloc_strdup(ctx, username);
127         if (!ctx->username) {
128                 return W_ERROR_V(WERR_NOMEM);
129         }
130         return W_ERROR_V(WERR_OK);
131 }
132
133 NET_API_STATUS libnetapi_set_password(struct libnetapi_ctx *ctx,
134                                       const char *password)
135 {
136         TALLOC_FREE(ctx->password);
137         ctx->password = talloc_strdup(ctx, password);
138         if (!ctx->password) {
139                 return W_ERROR_V(WERR_NOMEM);
140         }
141         return W_ERROR_V(WERR_OK);
142 }
143
144 NET_API_STATUS libnetapi_set_workgroup(struct libnetapi_ctx *ctx,
145                                        const char *workgroup)
146 {
147         TALLOC_FREE(ctx->workgroup);
148         ctx->workgroup = talloc_strdup(ctx, workgroup);
149         if (!ctx->workgroup) {
150                 return W_ERROR_V(WERR_NOMEM);
151         }
152         return W_ERROR_V(WERR_OK);
153 }
154
155 const char *libnetapi_errstr(struct libnetapi_ctx *ctx,
156                              NET_API_STATUS status)
157 {
158         if (status & 0xc0000000) {
159                 return get_friendly_nt_error_msg(NT_STATUS(status));
160         }
161
162         return get_friendly_werror_msg(W_ERROR(status));
163 }