#include <smbsrv/smb_kproto.h>
#include <smbsrv/smb_fsops.h>
extern int smb_nt_create_enable_extended_response;
smb_sdrc_t
smb_pre_nt_transact_create(smb_request_t *sr, smb_xa_t *xa)
{
struct open_param *op = &sr->arg.open;
uint8_t SecurityFlags;
uint32_t EaLength;
uint32_t ImpersonationLevel;
uint32_t NameLength;
uint32_t sd_len;
uint32_t status;
smb_sd_t sd;
int rc;
bzero(op, sizeof (sr->arg.open));
rc = smb_mbc_decodef(&xa->req_param_mb, "%lllqllllllllb",
sr,
&op->nt_flags,
&op->rootdirfid,
&op->desired_access,
&op->dsize,
&op->dattr,
&op->share_access,
&op->create_disposition,
&op->create_options,
&sd_len,
&EaLength,
&NameLength,
&ImpersonationLevel,
&SecurityFlags);
if (rc == 0) {
if (NameLength == 0) {
op->fqi.fq_path.pn_path = "\\";
} else if (NameLength >= SMB_MAXPATHLEN) {
smbsr_error(sr, NT_STATUS_OBJECT_NAME_INVALID,
ERRDOS, ERROR_INVALID_NAME);
rc = -1;
} else {
rc = smb_mbc_decodef(&xa->req_param_mb, "%#u",
sr, NameLength, &op->fqi.fq_path.pn_path);
}
}
op->op_oplock_level = SMB_OPLOCK_NONE;
if (op->nt_flags & NT_CREATE_FLAG_REQUEST_OPLOCK) {
if (op->nt_flags & NT_CREATE_FLAG_REQUEST_OPBATCH)
op->op_oplock_level = SMB_OPLOCK_BATCH;
else
op->op_oplock_level = SMB_OPLOCK_EXCLUSIVE;
}
if (sd_len) {
status = smb_decode_sd(&xa->req_data_mb, &sd);
if (status != NT_STATUS_SUCCESS) {
smbsr_error(sr, status, 0, 0);
return (SDRC_ERROR);
}
op->sd = kmem_alloc(sizeof (smb_sd_t), KM_SLEEP);
*op->sd = sd;
} else {
op->sd = NULL;
}
DTRACE_SMB_START(op__NtTransactCreate, smb_request_t *, sr);
return ((rc == 0) ? SDRC_SUCCESS : SDRC_ERROR);
}
void
smb_post_nt_transact_create(smb_request_t *sr, smb_xa_t *xa)
{
smb_sd_t *sd = sr->arg.open.sd;
_NOTE(ARGUNUSED(xa))
DTRACE_SMB_DONE(op__NtTransactCreate, smb_request_t *, sr);
if (sd) {
smb_sd_term(sd);
kmem_free(sd, sizeof (smb_sd_t));
}
if (sr->arg.open.dir != NULL) {
smb_ofile_release(sr->arg.open.dir);
sr->arg.open.dir = NULL;
}
}
smb_sdrc_t
smb_nt_transact_create(smb_request_t *sr, smb_xa_t *xa)
{
struct open_param *op = &sr->arg.open;
smb_attr_t *ap = &op->fqi.fq_fattr;
smb_ofile_t *of;
int rc;
uint8_t DirFlag;
uint32_t status;
if (op->create_options & ~SMB_NTCREATE_VALID_OPTIONS) {
smbsr_error(sr, NT_STATUS_INVALID_PARAMETER,
ERRDOS, ERROR_INVALID_PARAMETER);
return (SDRC_ERROR);
}
if (op->create_options & FILE_OPEN_BY_FILE_ID) {
smbsr_error(sr, NT_STATUS_NOT_SUPPORTED,
ERRDOS, ERROR_NOT_SUPPORTED);
return (SDRC_ERROR);
}
if ((op->create_options & FILE_DELETE_ON_CLOSE) &&
!(op->desired_access & DELETE)) {
smbsr_error(sr, NT_STATUS_INVALID_PARAMETER,
ERRDOS, ERRbadaccess);
return (SDRC_ERROR);
}
if (op->create_disposition > FILE_MAXIMUM_DISPOSITION) {
smbsr_error(sr, NT_STATUS_INVALID_PARAMETER,
ERRDOS, ERRbadaccess);
return (SDRC_ERROR);
}
if (op->dattr & FILE_FLAG_WRITE_THROUGH)
op->create_options |= FILE_WRITE_THROUGH;
if (op->dattr & FILE_FLAG_DELETE_ON_CLOSE)
op->create_options |= FILE_DELETE_ON_CLOSE;
if (op->dattr & FILE_FLAG_BACKUP_SEMANTICS)
op->create_options |= FILE_OPEN_FOR_BACKUP_INTENT;
if (op->create_options & FILE_OPEN_FOR_BACKUP_INTENT)
sr->user_cr = smb_user_getprivcred(sr->uid_user);
if (op->rootdirfid == 0) {
op->fqi.fq_dnode = sr->tid_tree->t_snode;
} else {
op->dir = smb_ofile_lookup_by_fid(sr, (uint16_t)op->rootdirfid);
if (op->dir == NULL) {
smbsr_error(sr, NT_STATUS_INVALID_HANDLE,
ERRDOS, ERRbadfid);
return (SDRC_ERROR);
}
op->fqi.fq_dnode = op->dir->f_node;
}
status = smb_common_open(sr);
if (status != NT_STATUS_SUCCESS) {
smbsr_status(sr, status, 0, 0);
return (SDRC_ERROR);
}
if (op->op_oplock_level != SMB_OPLOCK_NONE) {
smb1_oplock_acquire(sr, B_TRUE);
}
of = sr->fid_ofile;
switch (sr->tid_tree->t_res_type & STYPE_MASK) {
case STYPE_DISKTREE:
case STYPE_PRINTQ:
if (op->create_options & FILE_DELETE_ON_CLOSE)
smb_ofile_set_delete_on_close(sr, of);
DirFlag = smb_node_is_dir(of->f_node) ? 1 : 0;
break;
case STYPE_IPC:
DirFlag = 0;
break;
default:
smbsr_error(sr, NT_STATUS_INVALID_DEVICE_REQUEST,
ERRDOS, ERROR_INVALID_FUNCTION);
goto errout;
}
if ((op->nt_flags & NT_CREATE_FLAG_EXTENDED_RESPONSE) != 0 &&
smb_nt_create_enable_extended_response != 0) {
uint32_t MaxAccess = 0;
if (of->f_node != NULL) {
smb_fsop_eaccess(sr, of->f_cr, of->f_node, &MaxAccess);
}
MaxAccess |= of->f_granted_access;
rc = smb_mbc_encodef(
&xa->rep_param_mb, "bbwllTTTTlqqwwb16.qll",
op->op_oplock_level,
1,
sr->smb_fid,
op->action_taken,
0,
&ap->sa_crtime,
&ap->sa_vattr.va_atime,
&ap->sa_vattr.va_mtime,
&ap->sa_vattr.va_ctime,
op->dattr & FILE_ATTRIBUTE_MASK,
ap->sa_allocsz,
ap->sa_vattr.va_size,
op->ftype,
op->devstate,
DirFlag,
op->fileid,
MaxAccess,
0);
} else {
rc = smb_mbc_encodef(
&xa->rep_param_mb, "bbwllTTTTlqqwwb",
op->op_oplock_level,
0,
sr->smb_fid,
op->action_taken,
0,
&ap->sa_crtime,
&ap->sa_vattr.va_atime,
&ap->sa_vattr.va_mtime,
&ap->sa_vattr.va_ctime,
op->dattr & FILE_ATTRIBUTE_MASK,
ap->sa_allocsz,
ap->sa_vattr.va_size,
op->ftype,
op->devstate,
DirFlag);
}
if (rc == 0)
return (SDRC_SUCCESS);
errout:
smb_ofile_close(of, 0);
return (SDRC_ERROR);
}