python/samba: Another object.next() to next(object) py2/py3 converstion
[Samba.git] / source3 / lib / filename_util.c
blob8a16bacddbea52edb899ec14d88abf79b003a948
1 /*
2 Unix SMB/CIFS implementation.
3 Filename utility functions.
4 Copyright (C) Tim Prouty 2009
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.
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.
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/>.
19 #include "includes.h"
21 /**
22 * XXX: This is temporary and there should be no callers of this outside of
23 * this file once smb_filename is plumbed through all path based operations.
24 * The one legitimate caller currently is smb_fname_str_dbg(), which this
25 * could be made static for.
27 NTSTATUS get_full_smb_filename(TALLOC_CTX *ctx,
28 const struct smb_filename *smb_fname,
29 char **full_name)
31 if (smb_fname->stream_name) {
32 /* stream_name must always be NULL if there is no stream. */
33 SMB_ASSERT(smb_fname->stream_name[0] != '\0');
35 *full_name = talloc_asprintf(ctx, "%s%s", smb_fname->base_name,
36 smb_fname->stream_name);
37 } else {
38 *full_name = talloc_strdup(ctx, smb_fname->base_name);
41 if (!*full_name) {
42 return NT_STATUS_NO_MEMORY;
45 return NT_STATUS_OK;
48 /**
49 * There are actually legitimate callers of this such as functions that
50 * enumerate streams using the vfs_streaminfo interface and then want to
51 * operate on each stream.
53 struct smb_filename *synthetic_smb_fname(TALLOC_CTX *mem_ctx,
54 const char *base_name,
55 const char *stream_name,
56 const SMB_STRUCT_STAT *psbuf,
57 uint32_t flags)
59 struct smb_filename smb_fname_loc = { 0, };
61 /* Setup the base_name/stream_name. */
62 smb_fname_loc.base_name = discard_const_p(char, base_name);
63 smb_fname_loc.stream_name = discard_const_p(char, stream_name);
64 smb_fname_loc.flags = flags;
66 /* Copy the psbuf if one was given. */
67 if (psbuf)
68 smb_fname_loc.st = *psbuf;
70 /* Let cp_smb_filename() do the heavy lifting. */
71 return cp_smb_filename(mem_ctx, &smb_fname_loc);
74 /**
75 * Utility function used by VFS calls that must *NOT* operate
76 * on a stream filename, only the base_name.
78 struct smb_filename *cp_smb_filename_nostream(TALLOC_CTX *mem_ctx,
79 const struct smb_filename *smb_fname_in)
81 struct smb_filename *smb_fname = cp_smb_filename(mem_ctx,
82 smb_fname_in);
83 if (smb_fname == NULL) {
84 return NULL;
86 TALLOC_FREE(smb_fname->stream_name);
87 return smb_fname;
90 /**
91 * There are a few legitimate users of this.
93 struct smb_filename *synthetic_smb_fname_split(TALLOC_CTX *ctx,
94 const char *fname,
95 bool posix_path)
97 char *stream_name = NULL;
98 char *base_name = NULL;
99 struct smb_filename *ret;
100 bool ok;
102 if (posix_path) {
103 /* No stream name looked for. */
104 return synthetic_smb_fname(ctx,
105 fname,
106 NULL,
107 NULL,
108 SMB_FILENAME_POSIX_PATH);
111 ok = split_stream_filename(ctx,
112 fname,
113 &base_name,
114 &stream_name);
115 if (!ok) {
116 return NULL;
119 ret = synthetic_smb_fname(ctx, base_name, stream_name, NULL, 0);
120 TALLOC_FREE(base_name);
121 TALLOC_FREE(stream_name);
122 return ret;
126 * Return a string using the talloc_tos()
128 const char *smb_fname_str_dbg(const struct smb_filename *smb_fname)
130 char *fname = NULL;
131 NTSTATUS status;
133 if (smb_fname == NULL) {
134 return "";
136 status = get_full_smb_filename(talloc_tos(), smb_fname, &fname);
137 if (!NT_STATUS_IS_OK(status)) {
138 return "";
140 return fname;
144 * Return a debug string of the path name of an fsp using the talloc_tos().
146 const char *fsp_str_dbg(const struct files_struct *fsp)
148 return smb_fname_str_dbg(fsp->fsp_name);
152 * Create a debug string for the fnum of an fsp.
154 * This is allocated to talloc_tos() or a string constant
155 * in certain corner cases. The returned string should
156 * hence not be free'd directly but only via the talloc stack.
158 const char *fsp_fnum_dbg(const struct files_struct *fsp)
160 char *str;
162 if (fsp == NULL) {
163 return "fnum [fsp is NULL]";
166 if (fsp->fnum == FNUM_FIELD_INVALID) {
167 return "fnum [invalid value]";
170 str = talloc_asprintf(talloc_tos(), "fnum %llu",
171 (unsigned long long)fsp->fnum);
172 if (str == NULL) {
173 DEBUG(1, ("%s: talloc_asprintf failed\n", __FUNCTION__));
174 return "fnum [talloc failed!]";
177 return str;
180 struct smb_filename *cp_smb_filename(TALLOC_CTX *mem_ctx,
181 const struct smb_filename *in)
183 struct smb_filename *out;
184 size_t base_len = 0;
185 size_t stream_len = 0;
186 size_t lcomp_len = 0;
187 int num = 0;
189 /* stream_name must always be NULL if there is no stream. */
190 if (in->stream_name) {
191 SMB_ASSERT(in->stream_name[0] != '\0');
194 if (in->base_name != NULL) {
195 base_len = strlen(in->base_name) + 1;
196 num += 1;
198 if (in->stream_name != NULL) {
199 stream_len = strlen(in->stream_name) + 1;
200 num += 1;
202 if (in->original_lcomp != NULL) {
203 lcomp_len = strlen(in->original_lcomp) + 1;
204 num += 1;
207 out = talloc_pooled_object(mem_ctx, struct smb_filename,
208 num, stream_len + base_len + lcomp_len);
209 if (out == NULL) {
210 return NULL;
212 ZERO_STRUCTP(out);
215 * The following allocations cannot fail as we
216 * pre-allocated space for them in the out pooled
217 * object.
219 if (in->base_name != NULL) {
220 out->base_name = talloc_memdup(
221 out, in->base_name, base_len);
222 talloc_set_name_const(out->base_name,
223 out->base_name);
225 if (in->stream_name != NULL) {
226 out->stream_name = talloc_memdup(
227 out, in->stream_name, stream_len);
228 talloc_set_name_const(out->stream_name,
229 out->stream_name);
231 if (in->original_lcomp != NULL) {
232 out->original_lcomp = talloc_memdup(
233 out, in->original_lcomp, lcomp_len);
234 talloc_set_name_const(out->original_lcomp,
235 out->original_lcomp);
237 out->flags = in->flags;
238 out->st = in->st;
239 return out;
242 /****************************************************************************
243 Simple check to determine if the filename is a stream.
244 ***************************************************************************/
245 bool is_ntfs_stream_smb_fname(const struct smb_filename *smb_fname)
247 /* stream_name must always be NULL if there is no stream. */
248 if (smb_fname->stream_name) {
249 SMB_ASSERT(smb_fname->stream_name[0] != '\0');
252 if (smb_fname->flags & SMB_FILENAME_POSIX_PATH) {
253 return false;
256 return smb_fname->stream_name != NULL;
259 /****************************************************************************
260 Returns true if the filename's stream == "::$DATA"
261 ***************************************************************************/
262 bool is_ntfs_default_stream_smb_fname(const struct smb_filename *smb_fname)
264 if (!is_ntfs_stream_smb_fname(smb_fname)) {
265 return false;
268 return strcasecmp_m(smb_fname->stream_name, "::$DATA") == 0;
271 /****************************************************************************
272 Filter out Windows invalid EA names (list probed from Windows 2012).
273 ****************************************************************************/
275 static char bad_ea_name_chars[] = "\"*+,/:;<=>?[\\]|";
277 bool is_invalid_windows_ea_name(const char *name)
279 int i;
280 /* EA name is pulled as ascii so we can examine
281 individual bytes here. */
282 for (i = 0; name[i] != 0; i++) {
283 int val = (name[i] & 0xff);
284 if (val < ' ' || strchr(bad_ea_name_chars, val)) {
285 return true;
288 return false;
291 bool ea_list_has_invalid_name(struct ea_list *ea_list)
293 for (;ea_list; ea_list = ea_list->next) {
294 if (is_invalid_windows_ea_name(ea_list->ea.name)) {
295 return true;
298 return false;
301 /****************************************************************************
302 Split an incoming name into tallocd filename and stream components.
303 Returns true on success, false on out of memory.
304 ****************************************************************************/
306 bool split_stream_filename(TALLOC_CTX *ctx,
307 const char *filename_in,
308 char **filename_out,
309 char **streamname_out)
311 const char *stream_name = NULL;
312 char *stream_out = NULL;
313 char *file_out = NULL;
315 stream_name = strchr_m(filename_in, ':');
317 if (stream_name) {
318 stream_out = talloc_strdup(ctx, stream_name);
319 if (stream_out == NULL) {
320 return false;
322 file_out = talloc_strndup(ctx,
323 filename_in,
324 PTR_DIFF(stream_name, filename_in));
325 } else {
326 file_out = talloc_strdup(ctx, filename_in);
329 if (file_out == NULL) {
330 TALLOC_FREE(stream_out);
331 return false;
334 if (filename_out) {
335 *filename_out = file_out;
337 if (streamname_out) {
338 *streamname_out = stream_out;
340 return true;