2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 /****************************************************************************
27 Call a remote api on an arbitrary pipe. takes param, data and setup buffers.
28 ****************************************************************************/
29 BOOL
cli_api_pipe(struct cli_state
*cli
, const char *pipe_name
,
30 uint16
*setup
, uint32 setup_count
, uint32 max_setup_count
,
31 char *params
, uint32 param_count
, uint32 max_param_count
,
32 char *data
, uint32 data_count
, uint32 max_data_count
,
33 char **rparam
, uint32
*rparam_count
,
34 char **rdata
, uint32
*rdata_count
)
36 cli_send_trans(cli
, SMBtrans
,
39 setup
, setup_count
, max_setup_count
,
40 params
, param_count
, max_param_count
,
41 data
, data_count
, max_data_count
);
43 return (cli_receive_trans(cli
, SMBtrans
,
44 rparam
, (unsigned int *)rparam_count
,
45 rdata
, (unsigned int *)rdata_count
));
48 /****************************************************************************
50 ****************************************************************************/
51 BOOL
cli_api(struct cli_state
*cli
,
52 char *param
, int prcnt
, int mprcnt
,
53 char *data
, int drcnt
, int mdrcnt
,
54 char **rparam
, unsigned int *rprcnt
,
55 char **rdata
, unsigned int *rdrcnt
)
57 cli_send_trans(cli
,SMBtrans
,
58 PIPE_LANMAN
, /* Name */
60 NULL
,0,0, /* Setup, length, max */
61 param
, prcnt
, mprcnt
, /* Params, length, max */
62 data
, drcnt
, mdrcnt
/* Data, length, max */
65 return (cli_receive_trans(cli
,SMBtrans
,
71 /****************************************************************************
72 perform a NetWkstaUserLogon
73 ****************************************************************************/
74 BOOL
cli_NetWkstaUserLogon(struct cli_state
*cli
,char *user
, char *workstation
)
79 unsigned int rdrcnt
,rprcnt
;
82 memset(param
, 0, sizeof(param
));
84 /* send a SMBtrans command with api NetWkstaUserLogon */
86 SSVAL(p
,0,132); /* api number */
88 pstrcpy_base(p
,"OOWb54WrLh",param
);
90 pstrcpy_base(p
,"WB21BWDWWDDDDDDDzzzD",param
);
94 pstrcpy_base(p
,user
,param
);
100 pstrcpy_base(p
, workstation
, param
);
103 SSVAL(p
, 0, CLI_BUFFER_SIZE
);
105 SSVAL(p
, 0, CLI_BUFFER_SIZE
);
109 param
, PTR_DIFF(p
,param
),1024, /* param, length, max */
110 NULL
, 0, CLI_BUFFER_SIZE
, /* data, length, max */
111 &rparam
, &rprcnt
, /* return params, return size */
112 &rdata
, &rdrcnt
/* return data, return size */
114 cli
->rap_error
= rparam
? SVAL(rparam
,0) : -1;
117 if (cli
->rap_error
== 0) {
118 DEBUG(4,("NetWkstaUserLogon success\n"));
119 cli
->privileges
= SVAL(p
, 24);
120 /* The cli->eff_name field used to be set here
121 but it wasn't used anywhere else. */
123 DEBUG(1,("NetwkstaUserLogon gave error %d\n", cli
->rap_error
));
129 return (cli
->rap_error
== 0);
132 /****************************************************************************
133 call a NetShareEnum - try and browse available connections on a host
134 ****************************************************************************/
135 int cli_RNetShareEnum(struct cli_state
*cli
, void (*fn
)(const char *, uint32
, const char *, void *), void *state
)
140 unsigned int rdrcnt
,rprcnt
;
144 /* now send a SMBtrans command with api RNetShareEnum */
146 SSVAL(p
,0,0); /* api number */
148 pstrcpy_base(p
,"WrLeh",param
);
149 p
= skip_string(p
,1);
150 pstrcpy_base(p
,"B13BWz",param
);
151 p
= skip_string(p
,1);
154 * Win2k needs a *smaller* buffer than 0xFFFF here -
155 * it returns "out of server memory" with 0xFFFF !!! JRA.
161 param
, PTR_DIFF(p
,param
), 1024, /* Param, length, maxlen */
162 NULL
, 0, 0xFFE0, /* data, length, maxlen - Win2k needs a small buffer here too ! */
163 &rparam
, &rprcnt
, /* return params, length */
164 &rdata
, &rdrcnt
)) /* return data, length */
166 int res
= rparam
? SVAL(rparam
,0) : -1;
168 if (res
== 0 || res
== ERRmoredata
) {
169 int converter
=SVAL(rparam
,2);
172 count
=SVAL(rparam
,4);
175 for (i
=0;i
<count
;i
++,p
+=20) {
177 int type
= SVAL(p
,14);
178 int comment_offset
= IVAL(p
,16) & 0xFFFF;
179 const char *cmnt
= comment_offset
?(rdata
+comment_offset
-converter
):"";
182 pull_ascii_pstring(s1
, sname
);
183 pull_ascii_pstring(s2
, cmnt
);
185 fn(s1
, type
, s2
, state
);
188 DEBUG(4,("NetShareEnum res=%d\n", res
));
191 DEBUG(4,("NetShareEnum failed\n"));
201 /****************************************************************************
202 call a NetServerEnum for the specified workgroup and servertype mask. This
203 function then calls the specified callback function for each name returned.
205 The callback function takes 4 arguments: the machine name, the server type,
206 the comment and a state pointer.
207 ****************************************************************************/
208 BOOL
cli_NetServerEnum(struct cli_state
*cli
, char *workgroup
, uint32 stype
,
209 void (*fn
)(const char *, uint32
, const char *, void *),
214 unsigned int rdrcnt
,rprcnt
;
220 /* send a SMBtrans command with api NetServerEnum */
222 SSVAL(p
,0,0x68); /* api number */
224 pstrcpy_base(p
,"WrLehDz", param
);
225 p
= skip_string(p
,1);
227 pstrcpy_base(p
,"B16BBDz", param
);
229 p
= skip_string(p
,1);
231 SSVAL(p
,2,CLI_BUFFER_SIZE
);
236 p
+= push_ascii(p
, workgroup
, sizeof(pstring
)-PTR_DIFF(p
,param
)-1, STR_TERMINATE
|STR_UPPER
);
239 param
, PTR_DIFF(p
,param
), 8, /* params, length, max */
240 NULL
, 0, CLI_BUFFER_SIZE
, /* data, length, max */
241 &rparam
, &rprcnt
, /* return params, return size */
242 &rdata
, &rdrcnt
/* return data, return size */
244 int res
= rparam
? SVAL(rparam
,0) : -1;
246 if (res
== 0 || res
== ERRmoredata
) {
248 int converter
=SVAL(rparam
,2);
250 count
=SVAL(rparam
,4);
253 for (i
= 0;i
< count
;i
++, p
+= 26) {
255 int comment_offset
= (IVAL(p
,22) & 0xFFFF)-converter
;
256 const char *cmnt
= comment_offset
?(rdata
+comment_offset
):"";
259 if (comment_offset
< 0 || comment_offset
> (int)rdrcnt
) continue;
261 stype
= IVAL(p
,18) & ~SV_TYPE_LOCAL_LIST_ONLY
;
263 pull_ascii_pstring(s1
, sname
);
264 pull_ascii_pstring(s2
, cmnt
);
265 fn(s1
, stype
, s2
, state
);
278 /****************************************************************************
279 Send a SamOEMChangePassword command
280 ****************************************************************************/
281 BOOL
cli_oem_change_password(struct cli_state
*cli
, const char *user
, const char *new_password
,
282 const char *old_password
)
287 unsigned char old_pw_hash
[16];
288 unsigned char new_pw_hash
[16];
289 unsigned int data_len
;
290 unsigned int param_len
= 0;
293 unsigned int rprcnt
, rdrcnt
;
295 if (strlen(user
) >= sizeof(fstring
)-1) {
296 DEBUG(0,("cli_oem_change_password: user name %s is too long.\n", user
));
300 SSVAL(p
,0,214); /* SamOEMChangePassword command. */
302 pstrcpy_base(p
, "zsT", param
);
303 p
= skip_string(p
,1);
304 pstrcpy_base(p
, "B516B16", param
);
305 p
= skip_string(p
,1);
306 pstrcpy_base(p
,user
, param
);
307 p
= skip_string(p
,1);
311 param_len
= PTR_DIFF(p
,param
);
314 * Get the Lanman hash of the old password, we
315 * use this as the key to make_oem_passwd_hash().
317 E_deshash(old_password
, old_pw_hash
);
319 encode_pw_buffer(data
, new_password
, STR_ASCII
);
321 #ifdef DEBUG_PASSWORD
322 DEBUG(100,("make_oem_passwd_hash\n"));
323 dump_data(100, data
, 516);
325 SamOEMhash( (unsigned char *)data
, (unsigned char *)old_pw_hash
, 516);
328 * Now place the old password hash in the data.
330 E_deshash(new_password
, new_pw_hash
);
332 E_old_pw_hash( new_pw_hash
, old_pw_hash
, (uchar
*)&data
[516]);
336 if (cli_send_trans(cli
,SMBtrans
,
337 PIPE_LANMAN
, /* name */
338 0,0, /* fid, flags */
339 NULL
,0,0, /* setup, length, max */
340 param
,param_len
,2, /* param, length, max */
341 data
,data_len
,0 /* data, length, max */
343 DEBUG(0,("cli_oem_change_password: Failed to send password change for user %s\n",
348 if (!cli_receive_trans(cli
,SMBtrans
,
351 DEBUG(0,("cli_oem_change_password: Failed to recieve reply to password change for user %s\n",
357 cli
->rap_error
= SVAL(rparam
,0);
362 return (cli
->rap_error
== 0);
366 /****************************************************************************
367 send a qpathinfo call
368 ****************************************************************************/
369 BOOL
cli_qpathinfo(struct cli_state
*cli
, const char *fname
,
370 time_t *c_time
, time_t *a_time
, time_t *m_time
,
371 size_t *size
, uint16
*mode
)
373 unsigned int data_len
= 0;
374 unsigned int param_len
= 0;
375 unsigned int rparam_len
, rdata_len
;
376 uint16 setup
= TRANSACT2_QPATHINFO
;
378 char *rparam
=NULL
, *rdata
=NULL
;
381 time_t (*date_fn
)(void *);
386 SSVAL(p
, 0, SMB_INFO_STANDARD
);
388 p
+= clistr_push(cli
, p
, fname
, sizeof(pstring
)-6, STR_TERMINATE
);
390 param_len
= PTR_DIFF(p
, param
);
393 ret
= (cli_send_trans(cli
, SMBtrans2
,
395 -1, 0, /* fid, flags */
396 &setup
, 1, 0, /* setup, length, max */
397 param
, param_len
, 10, /* param, length, max */
398 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
400 cli_receive_trans(cli
, SMBtrans2
,
401 &rparam
, &rparam_len
,
402 &rdata
, &rdata_len
));
403 if (!cli_is_dos_error(cli
)) break;
405 /* we need to work around a Win95 bug - sometimes
406 it gives ERRSRV/ERRerror temprarily */
409 cli_dos_error(cli
, &eclass
, &ecode
);
410 if (eclass
!= ERRSRV
|| ecode
!= ERRerror
) break;
413 } while (count
-- && ret
==False
);
415 if (!ret
|| !rdata
|| rdata_len
< 22) {
420 date_fn
= make_unix_date
;
422 date_fn
= make_unix_date2
;
426 *c_time
= date_fn(rdata
+0);
429 *a_time
= date_fn(rdata
+4);
432 *m_time
= date_fn(rdata
+8);
435 *size
= IVAL(rdata
, 12);
438 *mode
= SVAL(rdata
,l1_attrFile
);
446 /****************************************************************************
447 send a qpathinfo call with the SMB_QUERY_FILE_ALL_INFO info level
448 ****************************************************************************/
449 BOOL
cli_qpathinfo2(struct cli_state
*cli
, const char *fname
,
450 time_t *c_time
, time_t *a_time
, time_t *m_time
,
451 time_t *w_time
, size_t *size
, uint16
*mode
,
454 unsigned int data_len
= 0;
455 unsigned int param_len
= 0;
456 uint16 setup
= TRANSACT2_QPATHINFO
;
458 char *rparam
=NULL
, *rdata
=NULL
;
463 SSVAL(p
, 0, SMB_QUERY_FILE_ALL_INFO
);
465 p
+= clistr_push(cli
, p
, fname
, sizeof(pstring
)-6, STR_TERMINATE
);
467 param_len
= PTR_DIFF(p
, param
);
469 if (!cli_send_trans(cli
, SMBtrans2
,
471 -1, 0, /* fid, flags */
472 &setup
, 1, 0, /* setup, length, max */
473 param
, param_len
, 10, /* param, length, max */
474 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
479 if (!cli_receive_trans(cli
, SMBtrans2
,
481 &rdata
, &data_len
)) {
485 if (!rdata
|| data_len
< 22) {
490 *c_time
= interpret_long_date(rdata
+0) - cli
->serverzone
;
493 *a_time
= interpret_long_date(rdata
+8) - cli
->serverzone
;
496 *m_time
= interpret_long_date(rdata
+16) - cli
->serverzone
;
499 *w_time
= interpret_long_date(rdata
+24) - cli
->serverzone
;
502 *mode
= SVAL(rdata
, 32);
505 *size
= IVAL(rdata
, 48);
508 *ino
= IVAL(rdata
, 64);
517 /****************************************************************************
518 send a qfileinfo QUERY_FILE_NAME_INFO call
519 ****************************************************************************/
520 BOOL
cli_qfilename(struct cli_state
*cli
, int fnum
,
523 unsigned int data_len
= 0;
524 unsigned int param_len
= 0;
525 uint16 setup
= TRANSACT2_QFILEINFO
;
527 char *rparam
=NULL
, *rdata
=NULL
;
530 memset(param
, 0, param_len
);
531 SSVAL(param
, 0, fnum
);
532 SSVAL(param
, 2, SMB_QUERY_FILE_NAME_INFO
);
534 if (!cli_send_trans(cli
, SMBtrans2
,
536 -1, 0, /* fid, flags */
537 &setup
, 1, 0, /* setup, length, max */
538 param
, param_len
, 2, /* param, length, max */
539 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
544 if (!cli_receive_trans(cli
, SMBtrans2
,
546 &rdata
, &data_len
)) {
550 if (!rdata
|| data_len
< 4) {
554 clistr_pull(cli
, name
, rdata
+4, sizeof(pstring
), IVAL(rdata
, 0), STR_UNICODE
);
560 /****************************************************************************
561 send a qfileinfo call
562 ****************************************************************************/
563 BOOL
cli_qfileinfo(struct cli_state
*cli
, int fnum
,
564 uint16
*mode
, size_t *size
,
565 time_t *c_time
, time_t *a_time
, time_t *m_time
,
566 time_t *w_time
, SMB_INO_T
*ino
)
568 unsigned int data_len
= 0;
569 unsigned int param_len
= 0;
570 uint16 setup
= TRANSACT2_QFILEINFO
;
572 char *rparam
=NULL
, *rdata
=NULL
;
574 /* if its a win95 server then fail this - win95 totally screws it
576 if (cli
->win95
) return False
;
580 memset(param
, 0, param_len
);
581 SSVAL(param
, 0, fnum
);
582 SSVAL(param
, 2, SMB_QUERY_FILE_ALL_INFO
);
584 if (!cli_send_trans(cli
, SMBtrans2
,
586 -1, 0, /* fid, flags */
587 &setup
, 1, 0, /* setup, length, max */
588 param
, param_len
, 2, /* param, length, max */
589 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
594 if (!cli_receive_trans(cli
, SMBtrans2
,
596 &rdata
, &data_len
)) {
600 if (!rdata
|| data_len
< 68) {
605 *c_time
= interpret_long_date(rdata
+0) - cli
->serverzone
;
608 *a_time
= interpret_long_date(rdata
+8) - cli
->serverzone
;
611 *m_time
= interpret_long_date(rdata
+16) - cli
->serverzone
;
614 *w_time
= interpret_long_date(rdata
+24) - cli
->serverzone
;
617 *mode
= SVAL(rdata
, 32);
620 *size
= IVAL(rdata
, 48);
623 *ino
= IVAL(rdata
, 64);
631 /****************************************************************************
632 send a qfileinfo call
633 ****************************************************************************/
634 BOOL
cli_qfileinfo_test(struct cli_state
*cli
, int fnum
, int level
, char **poutdata
, uint32
*poutlen
)
636 unsigned int data_len
= 0;
637 unsigned int param_len
= 0;
638 uint16 setup
= TRANSACT2_QFILEINFO
;
640 char *rparam
=NULL
, *rdata
=NULL
;
645 /* if its a win95 server then fail this - win95 totally screws it
652 memset(param
, 0, param_len
);
653 SSVAL(param
, 0, fnum
);
654 SSVAL(param
, 2, level
);
656 if (!cli_send_trans(cli
, SMBtrans2
,
658 -1, 0, /* fid, flags */
659 &setup
, 1, 0, /* setup, length, max */
660 param
, param_len
, 2, /* param, length, max */
661 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
666 if (!cli_receive_trans(cli
, SMBtrans2
,
668 &rdata
, &data_len
)) {
672 *poutdata
= memdup(rdata
, data_len
);
682 /****************************************************************************
683 send a qpathinfo SMB_QUERY_FILE_ALT_NAME_INFO call
684 ****************************************************************************/
685 NTSTATUS
cli_qpathinfo_alt_name(struct cli_state
*cli
, const char *fname
, fstring alt_name
)
687 unsigned int data_len
= 0;
688 unsigned int param_len
= 0;
689 uint16 setup
= TRANSACT2_QPATHINFO
;
691 char *rparam
=NULL
, *rdata
=NULL
;
699 SSVAL(p
, 0, SMB_QUERY_FILE_ALT_NAME_INFO
);
701 p
+= clistr_push(cli
, p
, fname
, sizeof(pstring
)-6, STR_TERMINATE
);
703 param_len
= PTR_DIFF(p
, param
);
706 ret
= (cli_send_trans(cli
, SMBtrans2
,
708 -1, 0, /* fid, flags */
709 &setup
, 1, 0, /* setup, length, max */
710 param
, param_len
, 10, /* param, length, max */
711 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
713 cli_receive_trans(cli
, SMBtrans2
,
716 if (!ret
&& cli_is_dos_error(cli
)) {
717 /* we need to work around a Win95 bug - sometimes
718 it gives ERRSRV/ERRerror temprarily */
721 cli_dos_error(cli
, &eclass
, &ecode
);
722 if (eclass
!= ERRSRV
|| ecode
!= ERRerror
) break;
725 } while (count
-- && ret
==False
);
727 if (!ret
|| !rdata
|| data_len
< 4) {
728 return NT_STATUS_UNSUCCESSFUL
;
731 len
= IVAL(rdata
, 0);
733 if (len
> data_len
- 4) {
734 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
737 clistr_pull(cli
, alt_name
, rdata
+4, sizeof(fstring
), len
, STR_UNICODE
);