s3:smb2_break: make use of file_fsp_smb2()
[Samba/gebeck_regimport.git] / lib / param / util.c
blobf60abb9773279963f0b6a938e48a25e4f6d63cbb
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2001-2002
6 Copyright (C) Simo Sorce 2001
7 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
8 Copyright (C) James J Myers 2003
9 Copyright (C) Jelmer Vernooij 2005-2007
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "dynconfig/dynconfig.h"
27 #include "system/network.h"
28 #include "system/filesys.h"
29 #include "system/dir.h"
30 #include "param/param.h"
32 /**
33 * @file
34 * @brief Misc utility functions
38 bool lpcfg_is_mydomain(struct loadparm_context *lp_ctx,
39 const char *domain)
41 return strequal(lpcfg_workgroup(lp_ctx), domain);
44 bool lpcfg_is_my_domain_or_realm(struct loadparm_context *lp_ctx,
45 const char *domain)
47 return strequal(lpcfg_workgroup(lp_ctx), domain) ||
48 strequal(lpcfg_realm(lp_ctx), domain);
51 /**
52 see if a string matches either our primary or one of our secondary
53 netbios aliases. do a case insensitive match
55 bool lpcfg_is_myname(struct loadparm_context *lp_ctx, const char *name)
57 const char **aliases;
58 int i;
60 if (strcasecmp_m(name, lpcfg_netbios_name(lp_ctx)) == 0) {
61 return true;
64 aliases = lpcfg_netbios_aliases(lp_ctx);
65 for (i=0; aliases && aliases[i]; i++) {
66 if (strcasecmp_m(name, aliases[i]) == 0) {
67 return true;
71 return false;
75 /**
76 A useful function for returning a path in the Samba lock directory.
77 **/
78 char *lpcfg_lock_path(TALLOC_CTX* mem_ctx, struct loadparm_context *lp_ctx,
79 const char *name)
81 char *fname, *dname;
82 if (name == NULL) {
83 return NULL;
85 if (name[0] == 0 || name[0] == '/' || strstr(name, ":/")) {
86 return talloc_strdup(mem_ctx, name);
89 dname = talloc_strdup(mem_ctx, lpcfg_lockdir(lp_ctx));
90 trim_string(dname,"","/");
92 if (!directory_exist(dname)) {
93 if (!mkdir(dname,0755))
94 DEBUG(1, ("Unable to create directory %s for file %s. "
95 "Error was %s\n", dname, name, strerror(errno)));
98 fname = talloc_asprintf(mem_ctx, "%s/%s", dname, name);
100 talloc_free(dname);
102 return fname;
106 A useful function for returning a path in the Samba state directory.
108 char *lpcfg_state_path(TALLOC_CTX* mem_ctx, struct loadparm_context *lp_ctx,
109 const char *name)
111 char *fname, *dname;
112 if (name == NULL) {
113 return NULL;
115 if (name[0] == 0 || name[0] == '/' || strstr(name, ":/")) {
116 return talloc_strdup(mem_ctx, name);
119 dname = talloc_strdup(mem_ctx, lpcfg_statedir(lp_ctx));
120 trim_string(dname,"","/");
122 if (!directory_exist(dname)) {
123 mkdir(dname,0755);
126 fname = talloc_asprintf(mem_ctx, "%s/%s", dname, name);
128 talloc_free(dname);
130 return fname;
134 A useful function for returning a path in the Samba cache directory.
136 char *lpcfg_cache_path(TALLOC_CTX* mem_ctx, struct loadparm_context *lp_ctx,
137 const char *name)
139 char *fname, *dname;
140 if (name == NULL) {
141 return NULL;
143 if (name[0] == 0 || name[0] == '/' || strstr(name, ":/")) {
144 return talloc_strdup(mem_ctx, name);
147 dname = talloc_strdup(mem_ctx, lpcfg_cachedir(lp_ctx));
148 trim_string(dname,"","/");
150 if (!directory_exist(dname)) {
151 mkdir(dname,0755);
154 fname = talloc_asprintf(mem_ctx, "%s/%s", dname, name);
156 talloc_free(dname);
158 return fname;
162 * @brief Returns an absolute path to a file in the directory containing the current config file
164 * @param name File to find, relative to the config file directory.
166 * @retval Pointer to a talloc'ed string containing the full path.
169 char *lpcfg_config_path(TALLOC_CTX* mem_ctx, struct loadparm_context *lp_ctx,
170 const char *name)
172 char *fname, *config_dir, *p;
173 config_dir = talloc_strdup(mem_ctx, lpcfg_configfile(lp_ctx));
174 if (config_dir == NULL) {
175 config_dir = talloc_strdup(mem_ctx, lp_default_path());
177 p = strrchr(config_dir, '/');
178 if (p == NULL) {
179 talloc_free(config_dir);
180 config_dir = talloc_strdup(mem_ctx, ".");
181 if (config_dir == NULL) {
182 return NULL;
184 } else {
185 p[0] = '\0';
187 fname = talloc_asprintf(mem_ctx, "%s/%s", config_dir, name);
188 talloc_free(config_dir);
189 return fname;
193 * @brief Returns an absolute path to a file in the Samba private directory.
195 * @param name File to find, relative to PRIVATEDIR.
196 * if name is not relative, then use it as-is
198 * @retval Pointer to a talloc'ed string containing the full path.
200 char *lpcfg_private_path(TALLOC_CTX* mem_ctx,
201 struct loadparm_context *lp_ctx,
202 const char *name)
204 char *fname;
205 if (name == NULL) {
206 return NULL;
208 if (name[0] == 0 || name[0] == '/' || strstr(name, ":/")) {
209 return talloc_strdup(mem_ctx, name);
211 fname = talloc_asprintf(mem_ctx, "%s/%s", lpcfg_private_dir(lp_ctx), name);
212 return fname;
216 return a path in the smbd.tmp directory, where all temporary file
217 for smbd go. If NULL is passed for name then return the directory
218 path itself
220 char *smbd_tmp_path(TALLOC_CTX *mem_ctx,
221 struct loadparm_context *lp_ctx,
222 const char *name)
224 char *fname, *dname;
226 dname = lpcfg_private_path(mem_ctx, lp_ctx, "smbd.tmp");
227 if (!directory_exist(dname)) {
228 mkdir(dname,0755);
231 if (name == NULL) {
232 return dname;
235 fname = talloc_asprintf(mem_ctx, "%s/%s", dname, name);
236 talloc_free(dname);
238 return fname;
241 const char *lpcfg_imessaging_path(TALLOC_CTX *mem_ctx,
242 struct loadparm_context *lp_ctx)
244 return smbd_tmp_path(mem_ctx, lp_ctx, "msg");
247 struct smb_iconv_handle *smb_iconv_handle_reinit_lp(TALLOC_CTX *mem_ctx,
248 struct loadparm_context *lp_ctx,
249 struct smb_iconv_handle *old_ic)
251 return smb_iconv_handle_reinit(mem_ctx, lpcfg_dos_charset(lp_ctx),
252 lpcfg_unix_charset(lp_ctx),
253 true,
254 old_ic);
258 const char *lpcfg_sam_name(struct loadparm_context *lp_ctx)
260 switch (lpcfg_server_role(lp_ctx)) {
261 case ROLE_DOMAIN_BDC:
262 case ROLE_DOMAIN_PDC:
263 return lpcfg_workgroup(lp_ctx);
264 default:
265 return lpcfg_netbios_name(lp_ctx);
269 void lpcfg_default_kdc_policy(struct loadparm_context *lp_ctx,
270 time_t *svc_tkt_lifetime,
271 time_t *usr_tkt_lifetime,
272 time_t *renewal_lifetime)
274 long val;
276 val = lpcfg_parm_long(lp_ctx, NULL,
277 "kdc", "service ticket lifetime", 10);
278 *svc_tkt_lifetime = val * 60 * 60;
280 val = lpcfg_parm_long(lp_ctx, NULL,
281 "kdc", "user ticket lifetime", 10);
282 *usr_tkt_lifetime = val * 60 * 60;
284 val = lpcfg_parm_long(lp_ctx, NULL,
285 "kdc", "renewal lifetime", 24 * 7);
286 *renewal_lifetime = val * 60 * 60;