1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

s3: VFS: Modify mkdir to take a const struct smb_filename * instead of const char *

Preparing to reduce use of lp_posix_pathnames().

Uses the same techniques as commit 616d068f0cebb8e50a855b6e30f36fccb7f5a3c8
(synthetic_smb_fname()) to cope with modules that
modify the incoming pathname.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Uri Simchoni <uri@samba.org>

Autobuild-User(master): Uri Simchoni <uri@samba.org>
Autobuild-Date(master): Wed Feb 24 16:05:55 CET 2016 on sn-devel-144
This commit is contained in:
Jeremy Allison 2016-02-23 13:14:03 -08:00 committed by Uri Simchoni
parent d7f552cbbd
commit 873df9a8a5
22 changed files with 221 additions and 88 deletions

View File

@ -157,7 +157,9 @@ static void skel_rewind_dir(vfs_handle_struct *handle, DIR *dirp)
; ;
} }
static int skel_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int skel_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
errno = ENOSYS; errno = ENOSYS;
return -1; return -1;

View File

@ -157,9 +157,11 @@ static void skel_rewind_dir(vfs_handle_struct *handle, DIR *dirp)
SMB_VFS_NEXT_REWINDDIR(handle, dirp); SMB_VFS_NEXT_REWINDDIR(handle, dirp);
} }
static int skel_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int skel_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
return SMB_VFS_NEXT_MKDIR(handle, path, mode); return SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
} }
static int skel_rmdir(vfs_handle_struct *handle, const char *path) static int skel_rmdir(vfs_handle_struct *handle, const char *path)

View File

@ -173,6 +173,8 @@
/* Bump to version 35 - Samba 4.5 will ship with that */ /* Bump to version 35 - Samba 4.5 will ship with that */
/* Version 35 - Change get_nt_acl_fn from const char *, to /* Version 35 - Change get_nt_acl_fn from const char *, to
const struct smb_filename * */ const struct smb_filename * */
/* Version 35 - Change mkdir from const char *, to
const struct smb_filename * */
#define SMB_VFS_INTERFACE_VERSION 35 #define SMB_VFS_INTERFACE_VERSION 35
@ -554,7 +556,9 @@ struct vfs_fn_pointers {
void (*seekdir_fn)(struct vfs_handle_struct *handle, DIR *dirp, long offset); void (*seekdir_fn)(struct vfs_handle_struct *handle, DIR *dirp, long offset);
long (*telldir_fn)(struct vfs_handle_struct *handle, DIR *dirp); long (*telldir_fn)(struct vfs_handle_struct *handle, DIR *dirp);
void (*rewind_dir_fn)(struct vfs_handle_struct *handle, DIR *dirp); void (*rewind_dir_fn)(struct vfs_handle_struct *handle, DIR *dirp);
int (*mkdir_fn)(struct vfs_handle_struct *handle, const char *path, mode_t mode); int (*mkdir_fn)(struct vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode);
int (*rmdir_fn)(struct vfs_handle_struct *handle, const char *path); int (*rmdir_fn)(struct vfs_handle_struct *handle, const char *path);
int (*closedir_fn)(struct vfs_handle_struct *handle, DIR *dir); int (*closedir_fn)(struct vfs_handle_struct *handle, DIR *dir);
void (*init_search_op_fn)(struct vfs_handle_struct *handle, DIR *dirp); void (*init_search_op_fn)(struct vfs_handle_struct *handle, DIR *dirp);
@ -971,8 +975,9 @@ long smb_vfs_call_telldir(struct vfs_handle_struct *handle,
DIR *dirp); DIR *dirp);
void smb_vfs_call_rewind_dir(struct vfs_handle_struct *handle, void smb_vfs_call_rewind_dir(struct vfs_handle_struct *handle,
DIR *dirp); DIR *dirp);
int smb_vfs_call_mkdir(struct vfs_handle_struct *handle, const char *path, int smb_vfs_call_mkdir(struct vfs_handle_struct *handle,
mode_t mode); const struct smb_filename *smb_fname,
mode_t mode);
int smb_vfs_call_rmdir(struct vfs_handle_struct *handle, const char *path); int smb_vfs_call_rmdir(struct vfs_handle_struct *handle, const char *path);
int smb_vfs_call_closedir(struct vfs_handle_struct *handle, int smb_vfs_call_closedir(struct vfs_handle_struct *handle,
DIR *dir); DIR *dir);

View File

@ -109,10 +109,10 @@
#define SMB_VFS_NEXT_REWINDDIR(handle, dirp) \ #define SMB_VFS_NEXT_REWINDDIR(handle, dirp) \
smb_vfs_call_rewind_dir((handle)->next, (dirp)) smb_vfs_call_rewind_dir((handle)->next, (dirp))
#define SMB_VFS_MKDIR(conn, path, mode) \ #define SMB_VFS_MKDIR(conn, smb_fname, mode) \
smb_vfs_call_mkdir((conn)->vfs_handles,(path), (mode)) smb_vfs_call_mkdir((conn)->vfs_handles,(smb_fname), (mode))
#define SMB_VFS_NEXT_MKDIR(handle, path, mode) \ #define SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode) \
smb_vfs_call_mkdir((handle)->next,(path), (mode)) smb_vfs_call_mkdir((handle)->next,(smb_fname), (mode))
#define SMB_VFS_RMDIR(conn, path) \ #define SMB_VFS_RMDIR(conn, path) \
smb_vfs_call_rmdir((conn)->vfs_handles, (path)) smb_vfs_call_rmdir((conn)->vfs_handles, (path))

View File

@ -120,14 +120,16 @@ static DIR *audit_opendir(vfs_handle_struct *handle, const char *fname, const ch
return result; return result;
} }
static int audit_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int audit_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
int result; int result;
result = SMB_VFS_NEXT_MKDIR(handle, path, mode); result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n", syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n",
path, smb_fname->base_name,
(result < 0) ? "failed: " : "", (result < 0) ? "failed: " : "",
(result < 0) ? strerror(errno) : ""); (result < 0) ? strerror(errno) : "");

View File

@ -97,15 +97,29 @@ static struct dirent *cap_readdir(vfs_handle_struct *handle,
return newdirent; return newdirent;
} }
static int cap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int cap_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
char *cappath = capencode(talloc_tos(), path); char *cappath = capencode(talloc_tos(), smb_fname->base_name);
struct smb_filename *cap_smb_fname = NULL;
if (!cappath) { if (!cappath) {
errno = ENOMEM; errno = ENOMEM;
return -1; return -1;
} }
return SMB_VFS_NEXT_MKDIR(handle, cappath, mode);
cap_smb_fname = synthetic_smb_fname(talloc_tos(),
cappath,
NULL,
NULL);
if (cap_smb_fname == NULL) {
TALLOC_FREE(cappath);
errno = ENOMEM;
return -1;
}
return SMB_VFS_NEXT_MKDIR(handle, cap_smb_fname, mode);
} }
static int cap_rmdir(vfs_handle_struct *handle, const char *path) static int cap_rmdir(vfs_handle_struct *handle, const char *path)

View File

@ -590,22 +590,35 @@ static int catia_rmdir(vfs_handle_struct *handle,
} }
static int catia_mkdir(vfs_handle_struct *handle, static int catia_mkdir(vfs_handle_struct *handle,
const char *path, const struct smb_filename *smb_fname,
mode_t mode) mode_t mode)
{ {
char *name = NULL; char *name = NULL;
NTSTATUS status; NTSTATUS status;
int ret; int ret;
struct smb_filename *catia_smb_fname = NULL;
status = catia_string_replace_allocate(handle->conn, path, status = catia_string_replace_allocate(handle->conn,
&name, vfs_translate_to_unix); smb_fname->base_name,
&name,
vfs_translate_to_unix);
if (!NT_STATUS_IS_OK(status)) { if (!NT_STATUS_IS_OK(status)) {
errno = map_errno_from_nt_status(status); errno = map_errno_from_nt_status(status);
return -1; return -1;
} }
catia_smb_fname = synthetic_smb_fname(talloc_tos(),
name,
NULL,
NULL);
if (catia_smb_fname == NULL) {
TALLOC_FREE(name);
errno = ENOMEM;
return -1;
}
ret = SMB_VFS_NEXT_MKDIR(handle, name, mode); ret = SMB_VFS_NEXT_MKDIR(handle, catia_smb_fname, mode);
TALLOC_FREE(name); TALLOC_FREE(name);
TALLOC_FREE(catia_smb_fname);
return ret; return ret;
} }

View File

@ -465,10 +465,13 @@ static void vfswrap_rewinddir(vfs_handle_struct *handle, DIR *dirp)
END_PROFILE(syscall_rewinddir); END_PROFILE(syscall_rewinddir);
} }
static int vfswrap_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int vfswrap_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
int result; int result;
bool has_dacl = False; bool has_dacl = False;
const char *path = smb_fname->base_name;
char *parent = NULL; char *parent = NULL;
START_PROFILE(syscall_mkdir); START_PROFILE(syscall_mkdir);

View File

@ -136,20 +136,22 @@ static DIR *audit_opendir(vfs_handle_struct *handle, const char *fname, const ch
return result; return result;
} }
static int audit_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int audit_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
int result; int result;
result = SMB_VFS_NEXT_MKDIR(handle, path, mode); result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
if (lp_syslog() > 0) { if (lp_syslog() > 0) {
syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n", syslog(audit_syslog_priority(handle), "mkdir %s %s%s\n",
path, smb_fname->base_name,
(result < 0) ? "failed: " : "", (result < 0) ? "failed: " : "",
(result < 0) ? strerror(errno) : ""); (result < 0) ? strerror(errno) : "");
} }
DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n", DEBUG(0, ("vfs_extd_audit: mkdir %s %s %s\n",
path, smb_fname->base_name,
(result < 0) ? "failed: " : "", (result < 0) ? "failed: " : "",
(result < 0) ? strerror(errno) : "")); (result < 0) ? strerror(errno) : ""));

View File

@ -844,13 +844,14 @@ static void smb_full_audit_rewinddir(vfs_handle_struct *handle,
} }
static int smb_full_audit_mkdir(vfs_handle_struct *handle, static int smb_full_audit_mkdir(vfs_handle_struct *handle,
const char *path, mode_t mode) const struct smb_filename *smb_fname, mode_t mode)
{ {
int result; int result;
result = SMB_VFS_NEXT_MKDIR(handle, path, mode); result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s", path); do_log(SMB_VFS_OP_MKDIR, (result >= 0), handle, "%s",
smb_fname->base_name);
return result; return result;
} }

View File

@ -22,22 +22,27 @@
#include "system/filesys.h" #include "system/filesys.h"
#include "smbd/smbd.h" #include "smbd/smbd.h"
static int linux_xfs_sgid_mkdir(vfs_handle_struct *handle, const char *path, mode_t mode) static int linux_xfs_sgid_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
struct smb_filename fname = { 0, }; struct smb_filename fname = { 0, };
int mkdir_res; int mkdir_res;
int res; int res;
DEBUG(10, ("Calling linux_xfs_sgid_mkdir(%s)\n", path)); DEBUG(10, ("Calling linux_xfs_sgid_mkdir(%s)\n", smb_fname->base_name));
mkdir_res = SMB_VFS_NEXT_MKDIR(handle, path, mode); mkdir_res = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
if (mkdir_res == -1) { if (mkdir_res == -1) {
DEBUG(10, ("SMB_VFS_NEXT_MKDIR returned error: %s\n", DEBUG(10, ("SMB_VFS_NEXT_MKDIR returned error: %s\n",
strerror(errno))); strerror(errno)));
return mkdir_res; return mkdir_res;
} }
if (!parent_dirname(talloc_tos(), path, &fname.base_name, NULL)) { if (!parent_dirname(talloc_tos(),
smb_fname->base_name,
&fname.base_name,
NULL)) {
DEBUG(1, ("parent_dirname failed\n")); DEBUG(1, ("parent_dirname failed\n"));
/* return success, we did the mkdir */ /* return success, we did the mkdir */
return mkdir_res; return mkdir_res;
@ -57,12 +62,13 @@ static int linux_xfs_sgid_mkdir(vfs_handle_struct *handle, const char *path, mo
return mkdir_res; return mkdir_res;
} }
fname.base_name = discard_const_p(char, path); fname.base_name = discard_const_p(char, smb_fname->base_name);
res = SMB_VFS_NEXT_STAT(handle, &fname); res = SMB_VFS_NEXT_STAT(handle, &fname);
if (res == -1) { if (res == -1) {
DEBUG(2, ("Could not stat just created dir %s: %s\n", path, DEBUG(2, ("Could not stat just created dir %s: %s\n",
strerror(errno))); smb_fname->base_name,
strerror(errno)));
/* return success, we did the mkdir */ /* return success, we did the mkdir */
return mkdir_res; return mkdir_res;
} }
@ -75,11 +81,13 @@ static int linux_xfs_sgid_mkdir(vfs_handle_struct *handle, const char *path, mo
* return success. What can you do... * return success. What can you do...
*/ */
become_root(); become_root();
res = SMB_VFS_NEXT_CHMOD(handle, path, fname.st.st_ex_mode); res = SMB_VFS_NEXT_CHMOD(handle,
smb_fname->base_name,
fname.st.st_ex_mode);
unbecome_root(); unbecome_root();
if (res == -1) { if (res == -1) {
DEBUG(2, ("CHMOD(%s, %o) failed: %s\n", path, DEBUG(2, ("CHMOD(%s, %o) failed: %s\n", smb_fname->base_name,
(int)fname.st.st_ex_mode, strerror(errno))); (int)fname.st.st_ex_mode, strerror(errno)));
/* return success, we did the mkdir */ /* return success, we did the mkdir */
return mkdir_res; return mkdir_res;

View File

@ -1033,35 +1033,32 @@ static void mh_rewinddir(vfs_handle_struct *handle,
* Failure: set errno, return -1 * Failure: set errno, return -1
*/ */
static int mh_mkdir(vfs_handle_struct *handle, static int mh_mkdir(vfs_handle_struct *handle,
const char *path, const struct smb_filename *smb_fname,
mode_t mode) mode_t mode)
{ {
int status; int status;
char *clientPath; struct smb_filename *clientFname = NULL;
TALLOC_CTX *ctx; const char *path = smb_fname->base_name;
DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path)); DEBUG(MH_INFO_DEBUG, ("Entering with path '%s'\n", path));
if (!is_in_media_files(path)) if (!is_in_media_files(path))
{ {
status = SMB_VFS_NEXT_MKDIR(handle, path, mode); status = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
goto out; goto out;
} }
clientPath = NULL; status = alloc_get_client_smb_fname(handle,
ctx = talloc_tos(); talloc_tos(),
smb_fname,
if ((status = alloc_get_client_path(handle, ctx, &clientFname);
path, if (status != 0) {
&clientPath)))
{
goto err; goto err;
} }
status = SMB_VFS_NEXT_MKDIR(handle, clientPath, mode); status = SMB_VFS_NEXT_MKDIR(handle, clientFname, mode);
err: err:
TALLOC_FREE(clientPath); TALLOC_FREE(clientFname);
out: out:
DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n", path)); DEBUG(MH_INFO_DEBUG, ("Leaving with path '%s'\n", path));
return status; return status;

View File

@ -292,12 +292,25 @@ static bool recycle_create_dir(vfs_handle_struct *handle, const char *dname)
if (recycle_directory_exist(handle, new_dir)) if (recycle_directory_exist(handle, new_dir))
DEBUG(10, ("recycle: dir %s already exists\n", new_dir)); DEBUG(10, ("recycle: dir %s already exists\n", new_dir));
else { else {
struct smb_filename *smb_fname = NULL;
DEBUG(5, ("recycle: creating new dir %s\n", new_dir)); DEBUG(5, ("recycle: creating new dir %s\n", new_dir));
if (SMB_VFS_NEXT_MKDIR(handle, new_dir, mode) != 0) {
smb_fname = synthetic_smb_fname(talloc_tos(),
new_dir,
NULL,
NULL);
if (smb_fname == NULL) {
goto done;
}
if (SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode) != 0) {
DEBUG(1,("recycle: mkdir failed for %s with error: %s\n", new_dir, strerror(errno))); DEBUG(1,("recycle: mkdir failed for %s with error: %s\n", new_dir, strerror(errno)));
TALLOC_FREE(smb_fname);
ret = False; ret = False;
goto done; goto done;
} }
TALLOC_FREE(smb_fname);
} }
if (strlcat(new_dir, "/", len+1) >= len+1) { if (strlcat(new_dir, "/", len+1) >= len+1) {
goto done; goto done;

View File

@ -1543,28 +1543,42 @@ static NTSTATUS shadow_copy2_get_nt_acl(vfs_handle_struct *handle,
} }
static int shadow_copy2_mkdir(vfs_handle_struct *handle, static int shadow_copy2_mkdir(vfs_handle_struct *handle,
const char *fname, mode_t mode) const struct smb_filename *smb_fname,
mode_t mode)
{ {
time_t timestamp; time_t timestamp;
char *stripped; char *stripped;
int ret, saved_errno; int ret, saved_errno;
char *conv; char *conv;
struct smb_filename *conv_smb_fname = NULL;
if (!shadow_copy2_strip_snapshot(talloc_tos(), handle, fname, if (!shadow_copy2_strip_snapshot(talloc_tos(),
&timestamp, &stripped)) { handle,
smb_fname->base_name,
&timestamp,
&stripped)) {
return -1; return -1;
} }
if (timestamp == 0) { if (timestamp == 0) {
return SMB_VFS_NEXT_MKDIR(handle, fname, mode); return SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
} }
conv = shadow_copy2_convert(talloc_tos(), handle, stripped, timestamp); conv = shadow_copy2_convert(talloc_tos(), handle, stripped, timestamp);
TALLOC_FREE(stripped); TALLOC_FREE(stripped);
if (conv == NULL) { if (conv == NULL) {
return -1; return -1;
} }
ret = SMB_VFS_NEXT_MKDIR(handle, conv, mode); conv_smb_fname = synthetic_smb_fname(talloc_tos(),
conv,
NULL,
NULL);
if (conv_smb_fname == NULL) {
TALLOC_FREE(conv);
return -1;
}
ret = SMB_VFS_NEXT_MKDIR(handle, conv_smb_fname, mode);
saved_errno = errno; saved_errno = errno;
TALLOC_FREE(conv); TALLOC_FREE(conv);
TALLOC_FREE(conv_smb_fname);
errno = saved_errno; errno = saved_errno;
return ret; return ret;
} }

View File

@ -2489,14 +2489,16 @@ static NTSTATUS snapper_gmt_get_nt_acl(vfs_handle_struct *handle,
} }
static int snapper_gmt_mkdir(vfs_handle_struct *handle, static int snapper_gmt_mkdir(vfs_handle_struct *handle,
const char *fname, mode_t mode) const struct smb_filename *fname,
mode_t mode)
{ {
time_t timestamp; time_t timestamp;
char *stripped; char *stripped;
int ret, saved_errno; int ret, saved_errno;
char *conv; char *conv;
struct smb_filename *smb_fname = NULL;
if (!snapper_gmt_strip_snapshot(talloc_tos(), handle, fname, if (!snapper_gmt_strip_snapshot(talloc_tos(), handle, fname->base_name,
&timestamp, &stripped)) { &timestamp, &stripped)) {
return -1; return -1;
} }
@ -2508,9 +2510,19 @@ static int snapper_gmt_mkdir(vfs_handle_struct *handle,
if (conv == NULL) { if (conv == NULL) {
return -1; return -1;
} }
ret = SMB_VFS_NEXT_MKDIR(handle, conv, mode); smb_fname = synthetic_smb_fname(talloc_tos(),
saved_errno = errno; conv,
NULL,
NULL);
TALLOC_FREE(conv); TALLOC_FREE(conv);
if (smb_fname == NULL) {
errno = ENOMEM;
return -1;
}
ret = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
saved_errno = errno;
TALLOC_FREE(smb_fname);
errno = saved_errno; errno = saved_errno;
return ret; return ret;
} }

View File

@ -124,6 +124,8 @@ static char *stream_dir(vfs_handle_struct *handle,
uint8_t id_buf[16]; uint8_t id_buf[16];
bool check_valid; bool check_valid;
const char *rootdir; const char *rootdir;
struct smb_filename *rootdir_fname = NULL;
struct smb_filename *tmp_fname = NULL;
check_valid = lp_parm_bool(SNUM(handle->conn), check_valid = lp_parm_bool(SNUM(handle->conn),
"streams_depot", "check_valid", true); "streams_depot", "check_valid", true);
@ -139,6 +141,15 @@ static char *stream_dir(vfs_handle_struct *handle,
SNUM(handle->conn), "streams_depot", "directory", SNUM(handle->conn), "streams_depot", "directory",
tmp); tmp);
rootdir_fname = synthetic_smb_fname(talloc_tos(),
rootdir,
NULL,
NULL);
if (rootdir_fname == NULL) {
errno = ENOMEM;
goto fail;
}
/* Stat the base file if it hasn't already been done. */ /* Stat the base file if it hasn't already been done. */
if (base_sbuf == NULL) { if (base_sbuf == NULL) {
struct smb_filename *smb_fname_base; struct smb_filename *smb_fname_base;
@ -261,7 +272,7 @@ static char *stream_dir(vfs_handle_struct *handle,
goto fail; goto fail;
} }
if ((SMB_VFS_NEXT_MKDIR(handle, rootdir, 0755) != 0) if ((SMB_VFS_NEXT_MKDIR(handle, rootdir_fname, 0755) != 0)
&& (errno != EEXIST)) { && (errno != EEXIST)) {
goto fail; goto fail;
} }
@ -272,12 +283,19 @@ static char *stream_dir(vfs_handle_struct *handle,
goto fail; goto fail;
} }
if ((SMB_VFS_NEXT_MKDIR(handle, tmp, 0755) != 0) tmp_fname = synthetic_smb_fname(talloc_tos(), tmp, NULL, NULL);
if (tmp_fname == NULL) {
errno = ENOMEM;
goto fail;
}
if ((SMB_VFS_NEXT_MKDIR(handle, tmp_fname, 0755) != 0)
&& (errno != EEXIST)) { && (errno != EEXIST)) {
goto fail; goto fail;
} }
TALLOC_FREE(tmp); TALLOC_FREE(tmp);
TALLOC_FREE(tmp_fname);
tmp = talloc_asprintf(result, "%s/%2.2X/%2.2X", rootdir, first, tmp = talloc_asprintf(result, "%s/%2.2X/%2.2X", rootdir, first,
second); second);
@ -286,14 +304,22 @@ static char *stream_dir(vfs_handle_struct *handle,
goto fail; goto fail;
} }
if ((SMB_VFS_NEXT_MKDIR(handle, tmp, 0755) != 0) tmp_fname = synthetic_smb_fname(talloc_tos(), tmp, NULL, NULL);
if (tmp_fname == NULL) {
errno = ENOMEM;
goto fail;
}
if ((SMB_VFS_NEXT_MKDIR(handle, tmp_fname, 0755) != 0)
&& (errno != EEXIST)) { && (errno != EEXIST)) {
goto fail; goto fail;
} }
TALLOC_FREE(tmp); TALLOC_FREE(tmp);
TALLOC_FREE(tmp_fname);
if ((SMB_VFS_NEXT_MKDIR(handle, result, 0755) != 0) /* smb_fname_hash is the struct smb_filename version of 'result' */
if ((SMB_VFS_NEXT_MKDIR(handle, smb_fname_hash, 0755) != 0)
&& (errno != EEXIST)) { && (errno != EEXIST)) {
goto fail; goto fail;
} }
@ -302,10 +328,14 @@ static char *stream_dir(vfs_handle_struct *handle,
goto fail; goto fail;
} }
TALLOC_FREE(rootdir_fname);
TALLOC_FREE(tmp_fname);
TALLOC_FREE(smb_fname_hash); TALLOC_FREE(smb_fname_hash);
return result; return result;
fail: fail:
TALLOC_FREE(rootdir_fname);
TALLOC_FREE(tmp_fname);
TALLOC_FREE(smb_fname_hash); TALLOC_FREE(smb_fname_hash);
TALLOC_FREE(result); TALLOC_FREE(result);
return NULL; return NULL;

View File

@ -217,9 +217,11 @@ static int syncops_mknod(vfs_handle_struct *handle,
SYNCOPS_NEXT(MKNOD, fname, (handle, fname, mode, dev)); SYNCOPS_NEXT(MKNOD, fname, (handle, fname, mode, dev));
} }
static int syncops_mkdir(vfs_handle_struct *handle, const char *fname, mode_t mode) static int syncops_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
{ {
SYNCOPS_NEXT(MKDIR, fname, (handle, fname, mode)); SYNCOPS_NEXT_SMB_FNAME(MKDIR, smb_fname, (handle, smb_fname, mode));
} }
static int syncops_rmdir(vfs_handle_struct *handle, const char *fname) static int syncops_rmdir(vfs_handle_struct *handle, const char *fname)

View File

@ -460,19 +460,22 @@ static void smb_time_audit_rewinddir(vfs_handle_struct *handle,
} }
static int smb_time_audit_mkdir(vfs_handle_struct *handle, static int smb_time_audit_mkdir(vfs_handle_struct *handle,
const char *path, mode_t mode) const struct smb_filename *smb_fname,
mode_t mode)
{ {
int result; int result;
struct timespec ts1,ts2; struct timespec ts1,ts2;
double timediff; double timediff;
clock_gettime_mono(&ts1); clock_gettime_mono(&ts1);
result = SMB_VFS_NEXT_MKDIR(handle, path, mode); result = SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
clock_gettime_mono(&ts2); clock_gettime_mono(&ts2);
timediff = nsec_time_diff(&ts2,&ts1)*1.0e-9; timediff = nsec_time_diff(&ts2,&ts1)*1.0e-9;
if (timediff > audit_timeout) { if (timediff > audit_timeout) {
smb_time_audit_log_fname("mkdir", timediff, path); smb_time_audit_log_smb_fname("mkdir",
timediff,
smb_fname);
} }
return result; return result;

View File

@ -766,32 +766,30 @@ static void um_rewinddir(vfs_handle_struct *handle,
} }
static int um_mkdir(vfs_handle_struct *handle, static int um_mkdir(vfs_handle_struct *handle,
const char *path, const struct smb_filename *smb_fname,
mode_t mode) mode_t mode)
{ {
int status; int status;
char *clientPath; const char *path = smb_fname->base_name;
TALLOC_CTX *ctx; struct smb_filename *client_fname = NULL;
DEBUG(10, ("Entering with path '%s'\n", path)); DEBUG(10, ("Entering with path '%s'\n", path));
if (!is_in_media_files(path) || !is_in_media_dir(path)) { if (!is_in_media_files(path) || !is_in_media_dir(path)) {
return SMB_VFS_NEXT_MKDIR(handle, path, mode); return SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode);
} }
clientPath = NULL; status = alloc_get_client_smb_fname(handle,
ctx = talloc_tos(); talloc_tos(),
smb_fname,
if ((status = alloc_get_client_path(handle, ctx, &client_fname);
path, if (status != 0) {
&clientPath))) {
goto err; goto err;
} }
status = SMB_VFS_NEXT_MKDIR(handle, clientPath, mode); status = SMB_VFS_NEXT_MKDIR(handle, client_fname, mode);
err: err:
TALLOC_FREE(clientPath); TALLOC_FREE(client_fname);
DEBUG(10, ("Leaving with path '%s'\n", path)); DEBUG(10, ("Leaving with path '%s'\n", path));
return status; return status;
} }

View File

@ -3302,7 +3302,7 @@ static NTSTATUS mkdir_internal(connection_struct *conn,
return status; return status;
} }
if (SMB_VFS_MKDIR(conn, smb_dname->base_name, mode) != 0) { if (SMB_VFS_MKDIR(conn, smb_dname, mode) != 0) {
return map_nt_error_from_unix(errno); return map_nt_error_from_unix(errno);
} }

View File

@ -1497,11 +1497,12 @@ void smb_vfs_call_rewind_dir(struct vfs_handle_struct *handle,
handle->fns->rewind_dir_fn(handle, dirp); handle->fns->rewind_dir_fn(handle, dirp);
} }
int smb_vfs_call_mkdir(struct vfs_handle_struct *handle, const char *path, int smb_vfs_call_mkdir(struct vfs_handle_struct *handle,
mode_t mode) const struct smb_filename *smb_fname,
mode_t mode)
{ {
VFS_FIND(mkdir); VFS_FIND(mkdir);
return handle->fns->mkdir_fn(handle, path, mode); return handle->fns->mkdir_fn(handle, smb_fname, mode);
} }
int smb_vfs_call_rmdir(struct vfs_handle_struct *handle, const char *path) int smb_vfs_call_rmdir(struct vfs_handle_struct *handle, const char *path)

View File

@ -200,12 +200,23 @@ static NTSTATUS cmd_readdir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc
static NTSTATUS cmd_mkdir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv) static NTSTATUS cmd_mkdir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, const char **argv)
{ {
struct smb_filename *smb_fname = NULL;
if (argc != 2) { if (argc != 2) {
printf("Usage: mkdir <path>\n"); printf("Usage: mkdir <path>\n");
return NT_STATUS_OK; return NT_STATUS_OK;
} }
if (SMB_VFS_MKDIR(vfs->conn, argv[1], 00755) == -1) { smb_fname = synthetic_smb_fname(talloc_tos(),
argv[1],
NULL,
NULL);
if (smb_fname == NULL) {
return NT_STATUS_NO_MEMORY;
}
if (SMB_VFS_MKDIR(vfs->conn, smb_fname, 00755) == -1) {
printf("mkdir error=%d (%s)\n", errno, strerror(errno)); printf("mkdir error=%d (%s)\n", errno, strerror(errno));
return NT_STATUS_UNSUCCESSFUL; return NT_STATUS_UNSUCCESSFUL;
} }