1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Make cli_tcon_andx async

This commit is contained in:
Volker Lendecke 2009-01-26 08:37:13 +01:00
parent 7b934c6af3
commit 0bd92281e4
13 changed files with 211 additions and 102 deletions

View File

@ -432,10 +432,13 @@ smb_complete_connection(const char *myname,
return NULL; return NULL;
} }
if (!cli_send_tconX(cli, share, "?????", password, strlen(password) + 1)) { nt_status = cli_tcon_andx(cli, share, "?????", password,
fprintf(stderr, "ERROR: Tree connect failed (%s)\n", cli_errstr(cli)); strlen(password) + 1);
if (!NT_STATUS_IS_OK(nt_status)) {
fprintf(stderr, "ERROR: Tree connect failed (%s)\n",
nt_errstr(nt_status));
if (get_exit_code(cli, cli_nt_error(cli)) == 2) { if (get_exit_code(cli, nt_status) == 2) {
*need_auth = true; *need_auth = true;
} }

View File

@ -2328,8 +2328,14 @@ struct async_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
struct cli_state *cli); struct cli_state *cli);
NTSTATUS cli_session_setup_guest_recv(struct async_req *req); NTSTATUS cli_session_setup_guest_recv(struct async_req *req);
bool cli_ulogoff(struct cli_state *cli); bool cli_ulogoff(struct cli_state *cli);
bool cli_send_tconX(struct cli_state *cli, struct async_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
const char *share, const char *dev, const char *pass, int passlen); struct event_context *ev,
struct cli_state *cli,
const char *share, const char *dev,
const char *pass, int passlen);
NTSTATUS cli_tcon_andx_recv(struct async_req *req);
NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
const char *dev, const char *pass, int passlen);
bool cli_tdis(struct cli_state *cli); bool cli_tdis(struct cli_state *cli);
void cli_negprot_sendsync(struct cli_state *cli); void cli_negprot_sendsync(struct cli_state *cli);
NTSTATUS cli_negprot(struct cli_state *cli); NTSTATUS cli_negprot(struct cli_state *cli);

View File

@ -1173,13 +1173,17 @@ bool cli_ulogoff(struct cli_state *cli)
Send a tconX. Send a tconX.
****************************************************************************/ ****************************************************************************/
bool cli_send_tconX(struct cli_state *cli, struct async_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
const char *share, const char *dev, const char *pass, int passlen) struct event_context *ev,
struct cli_state *cli,
const char *share, const char *dev,
const char *pass, int passlen)
{ {
fstring fullshare, pword; fstring pword;
char *p; char *tmp = NULL;
memset(cli->outbuf,'\0',smb_size); struct async_req *result;
memset(cli->inbuf,'\0',smb_size); uint16_t vwv[4];
uint8_t *bytes;
fstrcpy(cli->share, share); fstrcpy(cli->share, share);
@ -1187,9 +1191,10 @@ bool cli_send_tconX(struct cli_state *cli,
if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) { if (cli->sec_mode & NEGOTIATE_SECURITY_USER_LEVEL) {
passlen = 1; passlen = 1;
pass = ""; pass = "";
} else if (!pass) { } else if (pass == NULL) {
DEBUG(1, ("Server not using user level security and no password supplied.\n")); DEBUG(1, ("Server not using user level security and no "
return False; "password supplied.\n"));
goto access_denied;
} }
if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) && if ((cli->sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE) &&
@ -1198,28 +1203,32 @@ bool cli_send_tconX(struct cli_state *cli,
DEBUG(1, ("Server requested LANMAN password " DEBUG(1, ("Server requested LANMAN password "
"(share-level security) but " "(share-level security) but "
"'client lanman auth' is disabled\n")); "'client lanman auth' is disabled\n"));
return False; goto access_denied;
} }
/* /*
* Non-encrypted passwords - convert to DOS codepage before encryption. * Non-encrypted passwords - convert to DOS codepage before
* encryption.
*/ */
passlen = 24; passlen = 24;
SMBencrypt(pass,cli->secblob.data,(uchar *)pword); SMBencrypt(pass, cli->secblob.data, (uchar *)pword);
} else { } else {
if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE)) == 0) { if((cli->sec_mode & (NEGOTIATE_SECURITY_USER_LEVEL
|NEGOTIATE_SECURITY_CHALLENGE_RESPONSE))
== 0) {
if (!lp_client_plaintext_auth() && (*pass)) { if (!lp_client_plaintext_auth() && (*pass)) {
DEBUG(1, ("Server requested plaintext " DEBUG(1, ("Server requested plaintext "
"password but 'client plaintext " "password but 'client plaintext "
"auth' is disabled\n")); "auth' is disabled\n"));
return False; goto access_denied;
} }
/* /*
* Non-encrypted passwords - convert to DOS codepage before using. * Non-encrypted passwords - convert to DOS codepage
* before using.
*/ */
passlen = clistr_push(cli, pword, pass, sizeof(pword), STR_TERMINATE); passlen = clistr_push(cli, pword, pass, sizeof(pword),
STR_TERMINATE);
} else { } else {
if (passlen) { if (passlen) {
memcpy(pword, pass, passlen); memcpy(pword, pass, passlen);
@ -1227,52 +1236,139 @@ bool cli_send_tconX(struct cli_state *cli,
} }
} }
slprintf(fullshare, sizeof(fullshare)-1, SCVAL(vwv+0, 0, 0xFF);
"\\\\%s\\%s", cli->desthost, share); SCVAL(vwv+0, 1, 0);
SSVAL(vwv+1, 0, 0);
SSVAL(vwv+2, 0, TCONX_FLAG_EXTENDED_RESPONSE);
SSVAL(vwv+3, 0, passlen);
cli_set_message(cli->outbuf,4, 0, True);
SCVAL(cli->outbuf,smb_com,SMBtconX);
cli_setup_packet(cli);
SSVAL(cli->outbuf,smb_vwv0,0xFF);
SSVAL(cli->outbuf,smb_vwv2,TCONX_FLAG_EXTENDED_RESPONSE);
SSVAL(cli->outbuf,smb_vwv3,passlen);
p = smb_buf(cli->outbuf);
if (passlen) { if (passlen) {
memcpy(p,pword,passlen); bytes = (uint8_t *)talloc_memdup(talloc_tos(), pword, passlen);
} else {
bytes = talloc_array(talloc_tos(), uint8_t, 0);
} }
p += passlen;
p += clistr_push(cli, p, fullshare, -1, STR_TERMINATE |STR_UPPER);
p += clistr_push(cli, p, dev, -1, STR_TERMINATE |STR_UPPER | STR_ASCII);
cli_setup_bcc(cli, p); /*
* Add the sharename
*/
tmp = talloc_asprintf_strupper_m(talloc_tos(), "\\\\%s\\%s",
cli->desthost, share);
if (tmp == NULL) {
TALLOC_FREE(bytes);
return NULL;
}
bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), tmp, strlen(tmp)+1,
NULL);
TALLOC_FREE(tmp);
cli_send_smb(cli); /*
if (!cli_receive_smb(cli)) * Add the devicetype
return False; */
tmp = talloc_strdup_upper(talloc_tos(), dev);
if (tmp == NULL) {
TALLOC_FREE(bytes);
return NULL;
}
bytes = smb_bytes_push_str(bytes, false, tmp, strlen(tmp)+1, NULL);
TALLOC_FREE(tmp);
if (cli_is_error(cli)) if (bytes == NULL) {
return False; return NULL;
}
clistr_pull(cli->inbuf, cli->dev, smb_buf(cli->inbuf), sizeof(fstring), result = cli_request_send(mem_ctx, ev, cli, SMBtconX, 0,
-1, STR_TERMINATE|STR_ASCII); 4, vwv, 0, talloc_get_size(bytes), bytes);
TALLOC_FREE(bytes);
return result;
if (cli->protocol >= PROTOCOL_NT1 && access_denied:
smb_buflen(cli->inbuf) == 3) { result = async_req_new(mem_ctx);
if (async_post_status(result, ev, NT_STATUS_ACCESS_DENIED)) {
return result;
}
TALLOC_FREE(result);
return NULL;
}
NTSTATUS cli_tcon_andx_recv(struct async_req *req)
{
struct cli_request *cli_req = talloc_get_type_abort(
req->private_data, struct cli_request);
struct cli_state *cli = cli_req->cli;
uint8_t wct;
uint16_t *vwv;
uint16_t num_bytes;
uint8_t *bytes;
NTSTATUS status;
if (async_req_is_error(req, &status)) {
return status;
}
status = cli_pull_reply(req, &wct, &vwv, &num_bytes, &bytes);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
clistr_pull(cli_req->inbuf, cli->dev, bytes, sizeof(fstring),
num_bytes, STR_TERMINATE|STR_ASCII);
if ((cli->protocol >= PROTOCOL_NT1) && (num_bytes == 3)) {
/* almost certainly win95 - enable bug fixes */ /* almost certainly win95 - enable bug fixes */
cli->win95 = True; cli->win95 = True;
} }
/* Make sure that we have the optional support 16-bit field. WCT > 2 */ /*
/* Avoids issues when connecting to Win9x boxes sharing files */ * Make sure that we have the optional support 16-bit field. WCT > 2.
* Avoids issues when connecting to Win9x boxes sharing files
*/
cli->dfsroot = False; cli->dfsroot = false;
if ( (CVAL(cli->inbuf, smb_wct))>2 && cli->protocol >= PROTOCOL_LANMAN2 )
cli->dfsroot = (SVAL( cli->inbuf, smb_vwv2 ) & SMB_SHARE_IN_DFS) ? True : False;
cli->cnum = SVAL(cli->inbuf,smb_tid); if ((wct > 2) && (cli->protocol >= PROTOCOL_LANMAN2)) {
return True; cli->dfsroot = ((SVAL(vwv+2, 0) & SMB_SHARE_IN_DFS) != 0);
}
cli->cnum = SVAL(cli_req->inbuf,smb_tid);
return NT_STATUS_OK;
}
NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
const char *dev, const char *pass, int passlen)
{
TALLOC_CTX *frame = talloc_stackframe();
struct event_context *ev;
struct async_req *req;
NTSTATUS status;
if (cli->fd_event != NULL) {
/*
* Can't use sync call while an async call is in flight
*/
status = NT_STATUS_INVALID_PARAMETER;
goto fail;
}
ev = event_context_init(frame);
if (ev == NULL) {
status = NT_STATUS_NO_MEMORY;
goto fail;
}
req = cli_tcon_andx_send(frame, ev, cli, share, dev, pass, passlen);
if (req == NULL) {
status = NT_STATUS_NO_MEMORY;
goto fail;
}
while (req->state < ASYNC_REQ_DONE) {
event_loop_once(ev);
}
status = cli_tcon_andx_recv(req);
fail:
TALLOC_FREE(frame);
return status;
} }
/**************************************************************************** /****************************************************************************
@ -1956,8 +2052,9 @@ NTSTATUS cli_full_connection(struct cli_state **output_cli,
} }
if (service) { if (service) {
if (!cli_send_tconX(cli, service, service_type, password, pw_len)) { nt_status = cli_tcon_andx(cli, service, service_type, password,
nt_status = cli_nt_error(cli); pw_len);
if (!NT_STATUS_IS_OK(nt_status)) {
DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status))); DEBUG(1,("failed tcon_X with %s\n", nt_errstr(nt_status)));
cli_shutdown(cli); cli_shutdown(cli);
if (NT_STATUS_IS_OK(nt_status)) { if (NT_STATUS_IS_OK(nt_status)) {

View File

@ -275,9 +275,10 @@ static struct cli_state *do_connect(TALLOC_CTX *ctx,
/* must be a normal share */ /* must be a normal share */
if (!cli_send_tconX(c, sharename, "?????", status = cli_tcon_andx(c, sharename, "?????",
password, strlen(password)+1)) { password, strlen(password)+1);
d_printf("tree connect failed: %s\n", cli_errstr(c)); if (!NT_STATUS_IS_OK(status)) {
d_printf("tree connect failed: %s\n", nt_errstr(status));
cli_shutdown(c); cli_shutdown(c);
return NULL; return NULL;
} }
@ -1077,7 +1078,7 @@ static bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
/* check for the referral */ /* check for the referral */
if (!cli_send_tconX(cli, "IPC$", "IPC", NULL, 0)) { if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, "IPC$", "IPC", NULL, 0))) {
return false; return false;
} }

View File

@ -300,11 +300,11 @@ SMBC_server(TALLOC_CTX *ctx,
* tid. * tid.
*/ */
if (!cli_send_tconX(srv->cli, share, "?????", status = cli_tcon_andx(srv->cli, share, "?????",
*pp_password, *pp_password,
strlen(*pp_password)+1)) { strlen(*pp_password)+1);
if (!NT_STATUS_IS_OK(status)) {
errno = SMBC_errno(context, srv->cli); errno = map_errno_from_nt_status(status);
cli_shutdown(srv->cli); cli_shutdown(srv->cli);
srv->cli = NULL; srv->cli = NULL;
smbc_getFunctionRemoveCachedServer(context)(context, smbc_getFunctionRemoveCachedServer(context)(context,
@ -501,9 +501,10 @@ again:
DEBUG(4,(" session setup ok\n")); DEBUG(4,(" session setup ok\n"));
if (!cli_send_tconX(c, share, "?????", status = cli_tcon_andx(c, share, "?????", *pp_password,
*pp_password, strlen(*pp_password)+1)) { strlen(*pp_password)+1);
errno = SMBC_errno(context, c); if (!NT_STATUS_IS_OK(status)) {
errno = map_errno_from_nt_status(status);
cli_shutdown(c); cli_shutdown(c);
return NULL; return NULL;
} }

View File

@ -138,13 +138,13 @@ NTSTATUS remote_password_change(const char *remote_machine, const char *user_nam
cli_init_creds(cli, user_name, "", old_passwd); cli_init_creds(cli, user_name, "", old_passwd);
} }
if (!cli_send_tconX(cli, "IPC$", "IPC", "", 1)) { result = cli_tcon_andx(cli, "IPC$", "IPC", "", 1);
if (asprintf(err_str, "machine %s rejected the tconX on the IPC$ " if (!NT_STATUS_IS_OK(result)) {
"share. Error was : %s.\n", if (asprintf(err_str, "machine %s rejected the tconX on the "
remote_machine, cli_errstr(cli)) == -1) { "IPC$ share. Error was : %s.\n",
remote_machine, nt_errstr(result))) {
*err_str = NULL; *err_str = NULL;
} }
result = cli_nt_error(cli);
cli_shutdown(cli); cli_shutdown(cli);
return result; return result;
} }

View File

@ -109,7 +109,7 @@ static void sync_child(char *name, int nm_type,
return; return;
} }
if (!cli_send_tconX(cli, "IPC$", "IPC", "", 1)) { if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, "IPC$", "IPC", "", 1))) {
cli_shutdown(cli); cli_shutdown(cli);
return; return;
} }

View File

@ -257,9 +257,10 @@ static struct cli_state *connect_one(char *share, int snum)
DEBUG(4,(" session setup ok\n")); DEBUG(4,(" session setup ok\n"));
if (!cli_send_tconX(c, share, "?????", status = cli_tcon_andx(c, share, "?????", password[snum],
password[snum], strlen(password[snum])+1)) { strlen(password[snum])+1);
DEBUG(0,("tree connect failed: %s\n", cli_errstr(c))); if (!NT_STATUS_IS_OK(status)) {
DEBUG(0,("tree connect failed: %s\n", nt_errstr(status)));
cli_shutdown(c); cli_shutdown(c);
return NULL; return NULL;
} }

View File

@ -249,9 +249,10 @@ static struct cli_state *connect_one(char *share)
DEBUG(4,(" session setup ok\n")); DEBUG(4,(" session setup ok\n"));
if (!cli_send_tconX(c, share, "?????", status = cli_tcon_andx(c, share, "?????", password,
password, strlen(password)+1)) { strlen(password)+1);
DEBUG(0,("tree connect failed: %s\n", cli_errstr(c))); if (!NT_STATUS_IS_OK(status)) {
DEBUG(0,("tree connect failed: %s\n", nt_errstr(status)));
cli_shutdown(c); cli_shutdown(c);
return NULL; return NULL;
} }

View File

@ -1101,6 +1101,7 @@ static bool run_tcon_test(int dummy)
uint16 vuid1, vuid2; uint16 vuid1, vuid2;
char buf[4]; char buf[4];
bool ret = True; bool ret = True;
NTSTATUS status;
memset(buf, '\0', sizeof(buf)); memset(buf, '\0', sizeof(buf));
@ -1127,10 +1128,11 @@ static bool run_tcon_test(int dummy)
return False; return False;
} }
if (!cli_send_tconX(cli, share, "?????", status = cli_tcon_andx(cli, share, "?????",
password, strlen(password)+1)) { password, strlen(password)+1);
if (!NT_STATUS_IS_OK(status)) {
printf("%s refused 2nd tree connect (%s)\n", host, printf("%s refused 2nd tree connect (%s)\n", host,
cli_errstr(cli)); nt_errstr(status));
cli_shutdown(cli); cli_shutdown(cli);
return False; return False;
} }
@ -1239,14 +1241,14 @@ static bool tcon_devtest(struct cli_state *cli,
const char *return_devtype, const char *return_devtype,
NTSTATUS expected_error) NTSTATUS expected_error)
{ {
bool status; NTSTATUS status;
bool ret; bool ret;
status = cli_send_tconX(cli, myshare, devtype, status = cli_tcon_andx(cli, myshare, devtype,
password, strlen(password)+1); password, strlen(password)+1);
if (NT_STATUS_IS_OK(expected_error)) { if (NT_STATUS_IS_OK(expected_error)) {
if (status) { if (NT_STATUS_IS_OK(status)) {
if (strcmp(cli->dev, return_devtype) == 0) { if (strcmp(cli->dev, return_devtype) == 0) {
ret = True; ret = True;
} else { } else {
@ -1264,7 +1266,7 @@ static bool tcon_devtest(struct cli_state *cli,
} }
cli_tdis(cli); cli_tdis(cli);
} else { } else {
if (status) { if (NT_STATUS_IS_OK(status)) {
printf("tconx to share %s with type %s " printf("tconx to share %s with type %s "
"should have failed but succeeded\n", "should have failed but succeeded\n",
myshare, devtype); myshare, devtype);
@ -2157,7 +2159,7 @@ static bool run_fdsesstest(int dummy)
return False; return False;
saved_cnum = cli->cnum; saved_cnum = cli->cnum;
if (!cli_send_tconX(cli, share, "?????", "", 1)) if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, share, "?????", "", 1)))
return False; return False;
new_cnum = cli->cnum; new_cnum = cli->cnum;
cli->cnum = saved_cnum; cli->cnum = saved_cnum;

View File

@ -3022,7 +3022,7 @@ static int rpc_share_list(struct net_context *c, int argc, const char **argv)
static bool check_share_availability(struct cli_state *cli, const char *netname) static bool check_share_availability(struct cli_state *cli, const char *netname)
{ {
if (!cli_send_tconX(cli, netname, "A:", "", 0)) { if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, netname, "A:", "", 0))) {
d_printf("skipping [%s]: not a file share.\n", netname); d_printf("skipping [%s]: not a file share.\n", netname);
return false; return false;
} }
@ -4281,7 +4281,7 @@ static void show_userlist(struct rpc_pipe_client *pipe_hnd,
cnum = cli->cnum; cnum = cli->cnum;
if (!cli_send_tconX(cli, netname, "A:", "", 0)) { if (!NT_STATUS_IS_OK(cli_tcon_andx(cli, netname, "A:", "", 0))) {
return; return;
} }

View File

@ -76,8 +76,9 @@ static NTSTATUS cli_lsa_lookup_sid(struct cli_state *cli,
char **domains; char **domains;
char **names; char **names;
if (!cli_send_tconX(cli, "IPC$", "?????", "", 0)) { status = cli_tcon_andx(cli, "IPC$", "?????", "", 0);
return cli_nt_error(cli); if (!NT_STATUS_IS_OK(status)) {
return status;
} }
status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id, status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
@ -124,8 +125,9 @@ static NTSTATUS cli_lsa_lookup_name(struct cli_state *cli,
DOM_SID *sids; DOM_SID *sids;
enum lsa_SidType *types; enum lsa_SidType *types;
if (!cli_send_tconX(cli, "IPC$", "?????", "", 0)) { status = cli_tcon_andx(cli, "IPC$", "?????", "", 0);
return cli_nt_error(cli); if (!NT_STATUS_IS_OK(status)) {
return status;
} }
status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id, status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,

View File

@ -961,15 +961,10 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain,
winbindd_set_locator_kdc_envs(domain); winbindd_set_locator_kdc_envs(domain);
if (!cli_send_tconX(*cli, "IPC$", "IPC", "", 0)) { result = cli_tcon_andx(*cli, "IPC$", "IPC", "", 0);
result = cli_nt_error(*cli);
if (!NT_STATUS_IS_OK(result)) {
DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result))); DEBUG(1,("failed tcon_X with %s\n", nt_errstr(result)));
if (NT_STATUS_IS_OK(result))
result = NT_STATUS_UNSUCCESSFUL;
goto done; goto done;
} }