summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-02-07 14:07:17 +0100
committerVolker Lendecke <vl@samba.org>2010-02-20 18:59:30 +0100
commit8930a9c52008c7c9a755b213f857dfa2247f6823 (patch)
tree5442a339f200e0859d8fe901d97c9ac16c1431d6 /source3/libsmb
parentb69a74eeca6acbfb1be0ef3eb8f84e2f4700f2a9 (diff)
downloadsamba-8930a9c52008c7c9a755b213f857dfa2247f6823.tar.gz
samba-8930a9c52008c7c9a755b213f857dfa2247f6823.tar.bz2
samba-8930a9c52008c7c9a755b213f857dfa2247f6823.zip
s3: Convert cli_qpathinfo_basic to use cli_trans()
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/clidfs.c4
-rw-r--r--source3/libsmb/clirap.c65
2 files changed, 29 insertions, 40 deletions
diff --git a/source3/libsmb/clidfs.c b/source3/libsmb/clidfs.c
index d9e2b87d10..d5ae11ff8d 100644
--- a/source3/libsmb/clidfs.c
+++ b/source3/libsmb/clidfs.c
@@ -772,6 +772,7 @@ bool cli_resolve_path(TALLOC_CTX *ctx,
char *ppath = NULL;
SMB_STRUCT_STAT sbuf;
uint32 attributes;
+ NTSTATUS status;
if ( !rootcli || !path || !targetcli ) {
return false;
@@ -802,7 +803,8 @@ bool cli_resolve_path(TALLOC_CTX *ctx,
return false;
}
- if (cli_qpathinfo_basic( rootcli, dfs_path, &sbuf, &attributes)) {
+ status = cli_qpathinfo_basic( rootcli, dfs_path, &sbuf, &attributes);
+ if (NT_STATUS_IS_OK(status)) {
/* This is an ordinary path, just return it. */
*targetcli = rootcli;
*pp_targetpath = talloc_strdup(ctx, path);
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c
index 990b8063ca..55a783efd0 100644
--- a/source3/libsmb/clirap.c
+++ b/source3/libsmb/clirap.c
@@ -1047,24 +1047,24 @@ bool cli_qfileinfo(struct cli_state *cli, uint16_t fnum,
Send a qpathinfo BASIC_INFO call.
****************************************************************************/
-bool cli_qpathinfo_basic( struct cli_state *cli, const char *name,
- SMB_STRUCT_STAT *sbuf, uint32 *attributes )
+NTSTATUS cli_qpathinfo_basic(struct cli_state *cli, const char *name,
+ SMB_STRUCT_STAT *sbuf, uint32 *attributes)
{
unsigned int param_len = 0;
- unsigned int data_len = 0;
- uint16 setup = TRANSACT2_QPATHINFO;
- char *param;
- char *rparam=NULL, *rdata=NULL;
- char *p;
+ uint32_t rdata_len;
+ uint16_t setup[1];
+ uint8_t *param, *rdata;
+ uint8_t *p;
char *path;
int len;
size_t nlen;
TALLOC_CTX *frame = talloc_stackframe();
+ NTSTATUS status;
path = talloc_strdup(frame, name);
if (!path) {
TALLOC_FREE(frame);
- return false;
+ return NT_STATUS_NO_MEMORY;
}
/* cleanup */
@@ -1074,54 +1074,41 @@ bool cli_qpathinfo_basic( struct cli_state *cli, const char *name,
}
nlen = 2*(strlen(path)+1);
- param = TALLOC_ARRAY(frame,char,6+nlen+2);
+ param = TALLOC_ARRAY(frame, uint8_t, 6+nlen+2);
if (!param) {
- return false;
+ TALLOC_FREE(frame);
+ return NT_STATUS_NO_MEMORY;
}
p = param;
memset(param, '\0', 6);
+ SSVAL(setup, 0, TRANSACT2_QPATHINFO);
SSVAL(p, 0, SMB_QUERY_FILE_BASIC_INFO);
p += 6;
p += clistr_push(cli, p, path, nlen, STR_TERMINATE);
param_len = PTR_DIFF(p, param);
-
- if (!cli_send_trans(cli, SMBtrans2,
- NULL, /* name */
- -1, 0, /* fid, flags */
- &setup, 1, 0, /* setup, length, max */
- param, param_len, 2, /* param, length, max */
- NULL, 0, cli->max_xmit /* data, length, max */
- )) {
+ status = cli_trans(talloc_tos(), cli, SMBtrans2, NULL, -1, 0, 0,
+ setup, 1, 0,
+ param, param_len, 2,
+ NULL, 0, cli->max_xmit,
+ NULL, 0, NULL,
+ NULL, 0, NULL,
+ &rdata, 36, &rdata_len);
+ if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(frame);
- return False;
+ return status;
}
- TALLOC_FREE(frame);
-
- if (!cli_receive_trans(cli, SMBtrans2,
- &rparam, &param_len,
- &rdata, &data_len)) {
- return False;
- }
-
- if (data_len < 36) {
- SAFE_FREE(rdata);
- SAFE_FREE(rparam);
- return False;
- }
-
- sbuf->st_ex_atime = interpret_long_date( rdata+8 ); /* Access time. */
- sbuf->st_ex_mtime = interpret_long_date( rdata+16 ); /* Write time. */
- sbuf->st_ex_ctime = interpret_long_date( rdata+24 ); /* Change time. */
+ sbuf->st_ex_atime = interpret_long_date((char *)rdata+8);
+ sbuf->st_ex_mtime = interpret_long_date((char *)rdata+16);
+ sbuf->st_ex_ctime = interpret_long_date((char *)rdata+24);
*attributes = IVAL( rdata, 32 );
- SAFE_FREE(rparam);
- SAFE_FREE(rdata);
+ TALLOC_FREE(rdata);
- return True;
+ return NT_STATUS_OK;
}
/****************************************************************************