2 Unix SMB/Netbios implementation.
5 Copyright (C) Andrew Tridgell 1994-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 /****************************************************************************
28 Call a remote api on an arbitrary pipe. takes param, data and setup buffers.
29 ****************************************************************************/
30 BOOL
cli_api_pipe(struct cli_state
*cli
, char *pipe_name
, int pipe_name_len
,
31 uint16
*setup
, uint32 setup_count
, uint32 max_setup_count
,
32 char *params
, uint32 param_count
, uint32 max_param_count
,
33 char *data
, uint32 data_count
, uint32 max_data_count
,
34 char **rparam
, uint32
*rparam_count
,
35 char **rdata
, uint32
*rdata_count
)
37 if (pipe_name_len
== 0)
38 pipe_name_len
= strlen(pipe_name
);
40 cli_send_trans(cli
, SMBtrans
,
41 pipe_name
, pipe_name_len
,
43 setup
, setup_count
, max_setup_count
,
44 params
, param_count
, max_param_count
,
45 data
, data_count
, max_data_count
);
47 return (cli_receive_trans(cli
, SMBtrans
,
48 rparam
, (int *)rparam_count
,
49 rdata
, (int *)rdata_count
));
52 /****************************************************************************
54 ****************************************************************************/
55 BOOL
cli_api(struct cli_state
*cli
,
56 char *param
, int prcnt
, int mprcnt
,
57 char *data
, int drcnt
, int mdrcnt
,
58 char **rparam
, int *rprcnt
,
59 char **rdata
, int *rdrcnt
)
61 cli_send_trans(cli
,SMBtrans
,
62 PIPE_LANMAN
,strlen(PIPE_LANMAN
), /* Name, length */
64 NULL
,0,0, /* Setup, length, max */
65 param
, prcnt
, mprcnt
, /* Params, length, max */
66 data
, drcnt
, mdrcnt
/* Data, length, max */
69 return (cli_receive_trans(cli
,SMBtrans
,
75 /****************************************************************************
76 perform a NetWkstaUserLogon
77 ****************************************************************************/
78 BOOL
cli_NetWkstaUserLogon(struct cli_state
*cli
,char *user
, char *workstation
)
86 memset(param
, 0, sizeof(param
));
88 /* send a SMBtrans command with api NetWkstaUserLogon */
90 SSVAL(p
,0,132); /* api number */
92 pstrcpy(p
,"OOWb54WrLh");
94 pstrcpy(p
,"WB21BWDWWDDDDDDDzzzD");
104 pstrcpy(p
, workstation
);
107 SSVAL(p
, 0, CLI_BUFFER_SIZE
);
109 SSVAL(p
, 0, CLI_BUFFER_SIZE
);
113 param
, PTR_DIFF(p
,param
),1024, /* param, length, max */
114 NULL
, 0, CLI_BUFFER_SIZE
, /* data, length, max */
115 &rparam
, &rprcnt
, /* return params, return size */
116 &rdata
, &rdrcnt
/* return data, return size */
118 cli
->rap_error
= rparam
? SVAL(rparam
,0) : -1;
121 if (cli
->rap_error
== 0) {
122 DEBUG(4,("NetWkstaUserLogon success\n"));
123 cli
->privileges
= SVAL(p
, 24);
124 fstrcpy(cli
->eff_name
,p
+2);
126 DEBUG(1,("NetwkstaUserLogon gave error %d\n", cli
->rap_error
));
134 return (cli
->rap_error
== 0);
137 /****************************************************************************
138 call a NetShareEnum - try and browse available connections on a host
139 ****************************************************************************/
140 int cli_RNetShareEnum(struct cli_state
*cli
, void (*fn
)(const char *, uint32
, const char *, void *), void *state
)
149 /* now send a SMBtrans command with api RNetShareEnum */
151 SSVAL(p
,0,0); /* api number */
154 p
= skip_string(p
,1);
156 p
= skip_string(p
,1);
159 * Win2k needs a *smaller* buffer than 0xFFFF here -
160 * it returns "out of server memory" with 0xFFFF !!! JRA.
166 param
, PTR_DIFF(p
,param
), 1024, /* Param, length, maxlen */
167 NULL
, 0, 0xFFE0, /* data, length, maxlen - Win2k needs a small buffer here too ! */
168 &rparam
, &rprcnt
, /* return params, length */
169 &rdata
, &rdrcnt
)) /* return data, length */
171 int res
= rparam
? SVAL(rparam
,0) : -1;
173 if (res
== 0 || res
== ERRmoredata
) {
174 int converter
=SVAL(rparam
,2);
177 count
=SVAL(rparam
,4);
180 for (i
=0;i
<count
;i
++,p
+=20) {
182 int type
= SVAL(p
,14);
183 int comment_offset
= IVAL(p
,16) & 0xFFFF;
184 char *cmnt
= comment_offset
?(rdata
+comment_offset
-converter
):"";
185 dos_to_unix(sname
,True
);
186 dos_to_unix(cmnt
,True
);
187 fn(sname
, type
, cmnt
, state
);
190 DEBUG(4,("NetShareEnum res=%d\n", res
));
193 DEBUG(4,("NetShareEnum failed\n"));
205 /****************************************************************************
206 call a NetServerEnum for the specified workgroup and servertype mask.
207 This function then calls the specified callback function for each name returned.
209 The callback function takes 3 arguments: the machine name, the server type and
211 ****************************************************************************/
212 BOOL
cli_NetServerEnum(struct cli_state
*cli
, char *workgroup
, uint32 stype
,
213 void (*fn
)(const char *, uint32
, const char *, void *),
225 * First, check that the stype is reasonable ...
228 if (stype
&0x80000000 && stype
&0x7FFFFFFF) {
230 /* Set an error here ... */
236 /* send a SMBtrans command with api NetServerEnum */
238 SSVAL(p
,0,0x68); /* api number */
240 if (!(stype
&0x80000000))
241 pstrcpy(p
,"WrLehDz");
243 pstrcpy(p
,"WrLehDO");
244 p
= skip_string(p
,1);
246 if (!(stype
&0x80000000)) {
247 pstrcpy(p
,"B16BBDz");
255 p
= skip_string(p
,1);
257 SSVAL(p
,2,CLI_BUFFER_SIZE
);
262 pstrcpy(p
, workgroup
);
263 unix_to_dos(p
, True
);
264 p
= skip_string(p
,1);
267 param
, PTR_DIFF(p
,param
), 8, /* params, length, max */
268 NULL
, 0, CLI_BUFFER_SIZE
, /* data, length, max */
269 &rparam
, &rprcnt
, /* return params, return size */
270 &rdata
, &rdrcnt
/* return data, return size */
272 int res
= rparam
? SVAL(rparam
,0) : -1;
274 if (res
== 0 || res
== ERRmoredata
) {
276 int converter
=SVAL(rparam
,2);
278 count
=SVAL(rparam
,4);
282 if (!(stype
&0x80000000)) {
283 for (i
= 0;i
< count
;i
++, p
+= 26) {
285 int comment_offset
= (IVAL(p
,22) & 0xFFFF)-converter
;
286 char *cmnt
= comment_offset
?(rdata
+comment_offset
):"";
287 if (comment_offset
< 0 || comment_offset
> rdrcnt
) continue;
289 stype
= IVAL(p
,18) & ~SV_TYPE_LOCAL_LIST_ONLY
;
291 dos_to_unix(sname
, True
);
292 dos_to_unix(cmnt
, True
);
293 fn(sname
, stype
, cmnt
, state
);
297 for (i
= 0; i
< count
; i
++, p
+= 16) {
300 dos_to_unix(sname
, True
);
302 fn(sname
, stype
, NULL
, state
);
319 /****************************************************************************
320 Send a SamOEMChangePassword command
321 ****************************************************************************/
322 BOOL
cli_oem_change_password(struct cli_state
*cli
, const char *user
, const char *new_password
,
323 const char *old_password
)
325 char param
[16+sizeof(fstring
)];
328 fstring upper_case_old_pw
;
329 fstring upper_case_new_pw
;
330 unsigned char old_pw_hash
[16];
331 unsigned char new_pw_hash
[16];
337 pstring dos_new_password
;
339 if (strlen(user
) >= sizeof(fstring
)-1) {
340 DEBUG(0,("cli_oem_change_password: user name %s is too long.\n", user
));
344 SSVAL(p
,0,214); /* SamOEMChangePassword command. */
347 p
= skip_string(p
,1);
348 pstrcpy(p
, "B516B16");
349 p
= skip_string(p
,1);
351 p
= skip_string(p
,1);
355 param_len
= PTR_DIFF(p
,param
);
358 * Get the Lanman hash of the old password, we
359 * use this as the key to make_oem_passwd_hash().
361 memset(upper_case_old_pw
, '\0', sizeof(upper_case_old_pw
));
362 fstrcpy(upper_case_old_pw
, old_password
);
363 unix_to_dos(upper_case_old_pw
,True
);
364 strupper(upper_case_old_pw
);
365 E_P16((uchar
*)upper_case_old_pw
, old_pw_hash
);
367 pstrcpy(dos_new_password
, new_password
);
368 unix_to_dos(dos_new_password
, True
);
370 if (!make_oem_passwd_hash( data
, dos_new_password
, old_pw_hash
, False
))
374 * Now place the old password hash in the data.
376 memset(upper_case_new_pw
, '\0', sizeof(upper_case_new_pw
));
377 fstrcpy(upper_case_new_pw
, new_password
);
378 unix_to_dos(upper_case_new_pw
,True
);
379 strupper(upper_case_new_pw
);
381 E_P16((uchar
*)upper_case_new_pw
, new_pw_hash
);
383 E_old_pw_hash( new_pw_hash
, old_pw_hash
, (uchar
*)&data
[516]);
387 if (cli_send_trans(cli
,SMBtrans
,
388 PIPE_LANMAN
,strlen(PIPE_LANMAN
), /* name, length */
389 0,0, /* fid, flags */
390 NULL
,0,0, /* setup, length, max */
391 param
,param_len
,2, /* param, length, max */
392 data
,data_len
,0 /* data, length, max */
394 DEBUG(0,("cli_oem_change_password: Failed to send password change for user %s\n",
399 if (cli_receive_trans(cli
,SMBtrans
,
403 cli
->rap_error
= SVAL(rparam
,0);
411 return (cli
->rap_error
== 0);
415 /****************************************************************************
416 send a qpathinfo call
417 ****************************************************************************/
418 BOOL
cli_qpathinfo(struct cli_state
*cli
, const char *fname
,
419 time_t *c_time
, time_t *a_time
, time_t *m_time
,
420 size_t *size
, uint16
*mode
)
424 uint16 setup
= TRANSACT2_QPATHINFO
;
426 char *rparam
=NULL
, *rdata
=NULL
;
429 time_t (*date_fn
)(void *);
431 param_len
= strlen(fname
) + 7;
433 memset(param
, 0, param_len
);
434 SSVAL(param
, 0, SMB_INFO_STANDARD
);
435 pstrcpy(¶m
[6], fname
);
436 unix_to_dos(¶m
[6],True
);
439 ret
= (cli_send_trans(cli
, SMBtrans2
,
440 NULL
, 0, /* Name, length */
441 -1, 0, /* fid, flags */
442 &setup
, 1, 0, /* setup, length, max */
443 param
, param_len
, 10, /* param, length, max */
444 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
446 cli_receive_trans(cli
, SMBtrans2
,
450 /* we need to work around a Win95 bug - sometimes
451 it gives ERRSRV/ERRerror temprarily */
454 cli_error(cli
, &eclass
, &ecode
, NULL
);
455 if (eclass
!= ERRSRV
|| ecode
!= ERRerror
) break;
458 } while (count
-- && ret
==False
);
460 if (!ret
|| !rdata
|| data_len
< 22) {
465 date_fn
= make_unix_date
;
467 date_fn
= make_unix_date2
;
471 *c_time
= date_fn(rdata
+0);
474 *a_time
= date_fn(rdata
+4);
477 *m_time
= date_fn(rdata
+8);
480 *size
= IVAL(rdata
, 12);
483 *mode
= SVAL(rdata
,l1_attrFile
);
486 if (rdata
) free(rdata
);
487 if (rparam
) free(rparam
);
491 /****************************************************************************
492 send a qpathinfo call with the SMB_QUERY_FILE_ALL_INFO info level
493 ****************************************************************************/
494 BOOL
cli_qpathinfo2(struct cli_state
*cli
, const char *fname
,
495 time_t *c_time
, time_t *a_time
, time_t *m_time
,
496 time_t *w_time
, size_t *size
, uint16
*mode
,
501 uint16 setup
= TRANSACT2_QPATHINFO
;
503 char *rparam
=NULL
, *rdata
=NULL
;
505 param_len
= strlen(fname
) + 7;
507 memset(param
, 0, param_len
);
508 SSVAL(param
, 0, SMB_QUERY_FILE_ALL_INFO
);
509 pstrcpy(¶m
[6], fname
);
510 unix_to_dos(¶m
[6],True
);
512 if (!cli_send_trans(cli
, SMBtrans2
,
513 NULL
, 0, /* name, length */
514 -1, 0, /* fid, flags */
515 &setup
, 1, 0, /* setup, length, max */
516 param
, param_len
, 10, /* param, length, max */
517 NULL
, data_len
, cli
->max_xmit
/* data, length, max */
522 if (!cli_receive_trans(cli
, SMBtrans2
,
524 &rdata
, &data_len
)) {
528 if (!rdata
|| data_len
< 22) {
533 *c_time
= interpret_long_date(rdata
+0) - cli
->serverzone
;
536 *a_time
= interpret_long_date(rdata
+8) - cli
->serverzone
;
539 *m_time
= interpret_long_date(rdata
+16) - cli
->serverzone
;
542 *w_time
= interpret_long_date(rdata
+24) - cli
->serverzone
;
545 *mode
= SVAL(rdata
, 32);
548 *size
= IVAL(rdata
, 48);
551 *ino
= IVAL(rdata
, 64);
554 if (rdata
) free(rdata
);
555 if (rparam
) free(rparam
);
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
)
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
,
585 NULL
, 0, /* name, length */
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);
626 if (rdata
) free(rdata
);
627 if (rparam
) free(rparam
);