diff options
author | Jeremy Allison <jra@samba.org> | 2009-06-18 13:13:38 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-06-18 13:13:38 -0700 |
commit | 34267482d53cb559cc40c4ec2bee929c21b7886b (patch) | |
tree | dae973a4b11a0a7f3dd51e07a30f7a1065d7c6a6 /source3/include | |
parent | e7e98ba4807f3c4e0538b24ae0092f69383ae2d7 (diff) | |
download | samba-34267482d53cb559cc40c4ec2bee929c21b7886b.tar.gz samba-34267482d53cb559cc40c4ec2bee929c21b7886b.tar.bz2 samba-34267482d53cb559cc40c4ec2bee929c21b7886b.zip |
Replace the boilerplate calls to :
resolve_dfspath() -> unix_convert() -> get_full_smb_filename() -> check_name()
with a new function filename_convert().
This restores the check_name() calls that had gone missing
since the default create_file was changed. All "standard"
pathname processing now goes through filename_convert().
I'll take a look at the non-standard pathname processing
next. As a benefit, fixed a missing resolve_dfspath()
in the trans2 mkdir call.
Jeremy.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4ae141e89d..6fc28259d6 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6384,6 +6384,12 @@ NTSTATUS check_name(connection_struct *conn, const char *name); int get_real_filename(connection_struct *conn, const char *path, const char *name, TALLOC_CTX *mem_ctx, char **found_name); +NTSTATUS filename_convert(TALLOC_CTX *mem_ctx, + connection_struct *conn, + bool dfs_path, + const char *name_in, + struct smb_filename **pp_smb_fname, + char **pp_name); /* The following definitions come from smbd/files.c */ @@ -7078,8 +7084,8 @@ void send_trans2_replies(connection_struct *conn, unsigned char *create_volume_objectid(connection_struct *conn, unsigned char objid[16]); NTSTATUS hardlink_internals(TALLOC_CTX *ctx, connection_struct *conn, - const char *oldname_in, - const char *newname_in); + const struct smb_filename *smb_fname_old, + const struct smb_filename *smb_fname_new); NTSTATUS smb_set_file_time(connection_struct *conn, files_struct *fsp, const char *fname, |