diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-29 19:46:57 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-29 19:46:57 +0000 |
commit | 44dd3efa6380544e9a515e91960f9271498cefaf (patch) | |
tree | e03471c108ee21e724fc03f5cf4a102e95d40a2b /source/libsmb/clienttrust.c | |
parent | 8b92be25bd7d630a18c36bcd5d983386d6cd1d53 (diff) | |
download | samba-44dd3efa6380544e9a515e91960f9271498cefaf.tar.gz samba-44dd3efa6380544e9a515e91960f9271498cefaf.tar.xz samba-44dd3efa6380544e9a515e91960f9271498cefaf.zip |
first attempt at getting \PIPE\NETLOGON working. it's pretty horrible.
Diffstat (limited to 'source/libsmb/clienttrust.c')
-rw-r--r-- | source/libsmb/clienttrust.c | 108 |
1 files changed, 12 insertions, 96 deletions
diff --git a/source/libsmb/clienttrust.c b/source/libsmb/clienttrust.c index 81855585e6e..b223750529f 100644 --- a/source/libsmb/clienttrust.c +++ b/source/libsmb/clienttrust.c @@ -42,117 +42,33 @@ static BOOL modify_trust_password( char *domain, char *remote_machine, unsigned char new_trust_passwd_hash[16], uint16 sec_chan) { - uint16 nt_pipe_fnum; - struct cli_state cli; struct nmb_name calling, called; + fstring trust_acct; + fstring srv_name; - make_nmb_name(&calling, global_myname , 0x0 , scope); - make_nmb_name(&called , remote_machine, 0x20, scope); - - ZERO_STRUCT(cli); - if(cli_initialise(&cli) == NULL) - { - DEBUG(0,("modify_trust_password: unable to initialize client \ -connection.\n")); - return False; - } - - if(!resolve_name( remote_machine, &cli.dest_ip, 0x20)) - { - DEBUG(0,("modify_trust_password: Can't resolve address for \ -%s\n", remote_machine)); - return False; - } - - if (ismyip(cli.dest_ip)) - { - DEBUG(0,("modify_trust_password: Machine %s is one of our \ -addresses. Cannot add to ourselves.\n", remote_machine)); - return False; - } + fstrcpy(srv_name, "\\\\"); + fstrcat(srv_name, remote_machine); + strupper(srv_name); - cli.protocol = PROTOCOL_NT1; + fstrcpy(trust_acct, global_myname); + fstrcat(trust_acct, "$"); - pwd_set_nullpwd(&cli.usr.pwd); - - if (!cli_establish_connection(&cli, remote_machine, &cli.dest_ip, - &calling, &called, - "IPC$", "IPC", False, True)) - { - fstring errstr; - cli_safe_errstr(&cli, errstr, sizeof(errstr)); - DEBUG(0,("modify_trust_password: machine %s rejected the SMB \ -session. Error was : %s.\n", remote_machine, errstr )); - cli_shutdown(&cli); - return False; - } - - - if (cli.protocol != PROTOCOL_NT1) - { - DEBUG(0,("modify_trust_password: machine %s didn't negotiate \ -NT protocol.\n", remote_machine)); - cli_shutdown(&cli); - return False; - } - - if (!(IS_BITS_SET_ALL(cli.sec_mode, 1))) - { - DEBUG(0,("modify_trust_password: machine %s isn't in user \ -level security mode\n", remote_machine)); - cli_shutdown(&cli); - return False; - } - - /* - * Ok - we have an anonymous connection to the IPC$ share. - * Now start the NT Domain stuff :-). - */ - - if (!cli_nt_session_open(&cli, PIPE_NETLOGON, &nt_pipe_fnum)) - { - fstring errstr; - cli_safe_errstr(&cli, errstr, sizeof(errstr)); - DEBUG(0,("modify_trust_password: unable to open the domain \ -client session to server %s. Error was : %s.\n", remote_machine, errstr )); - cli_nt_session_close(&cli, nt_pipe_fnum); - cli_ulogoff(&cli); - cli_shutdown(&cli); - return False; - } + make_nmb_name(&calling, global_myname , 0x0 , scope); + make_nmb_name(&called , remote_machine, 0x20, scope); - if (cli_nt_setup_creds(&cli, nt_pipe_fnum, - cli.mach_acct, global_myname, + if (cli_nt_setup_creds(srv_name, global_myname, trust_acct, orig_trust_passwd_hash, sec_chan) != 0x0) { - fstring errstr; - cli_safe_errstr(&cli, errstr, sizeof(errstr)); - DEBUG(0,("modify_trust_password: unable to setup the PDC \ -credentials to server %s. Error was : %s.\n", remote_machine, errstr )); - cli_nt_session_close(&cli, nt_pipe_fnum); - cli_ulogoff(&cli); - cli_shutdown(&cli); return False; } - if (!cli_nt_srv_pwset( &cli, nt_pipe_fnum, new_trust_passwd_hash, + if (!cli_nt_srv_pwset( srv_name, global_myname, trust_acct, + new_trust_passwd_hash, sec_chan ) ) { - fstring errstr; - cli_safe_errstr(&cli, errstr, sizeof(errstr)); - DEBUG(0,("modify_trust_password: unable to change password for \ -workstation %s in domain %s to Domain controller %s. Error was %s.\n", - global_myname, domain, remote_machine, errstr )); - cli_nt_session_close(&cli, nt_pipe_fnum); - cli_ulogoff(&cli); - cli_shutdown(&cli); return False; } - cli_nt_session_close(&cli, nt_pipe_fnum); - cli_ulogoff(&cli); - cli_shutdown(&cli); - return True; } |