summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_netlog_nt.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2009-06-30 17:18:47 +0200
committerGünther Deschner <gd@samba.org>2009-06-30 22:21:09 +0200
commit78519b65007d87870ea406315b7f233eba69e155 (patch)
treeeec48be41c79b07a95366d6a955467f030d84112 /source3/rpc_server/srv_netlog_nt.c
parentf7250144ed06b00fc1fbf1854d38483c427fad87 (diff)
downloadsamba-78519b65007d87870ea406315b7f233eba69e155.tar.gz
samba-78519b65007d87870ea406315b7f233eba69e155.tar.bz2
samba-78519b65007d87870ea406315b7f233eba69e155.zip
s3-netlogon: remove unneeded fstrings from netlogon server.
Guenther
Diffstat (limited to 'source3/rpc_server/srv_netlog_nt.c')
-rw-r--r--source3/rpc_server/srv_netlog_nt.c34
1 files changed, 12 insertions, 22 deletions
diff --git a/source3/rpc_server/srv_netlog_nt.c b/source3/rpc_server/srv_netlog_nt.c
index c74d2acc4a..79ff7b1e0b 100644
--- a/source3/rpc_server/srv_netlog_nt.c
+++ b/source3/rpc_server/srv_netlog_nt.c
@@ -661,7 +661,6 @@ NTSTATUS _netr_ServerPasswordSet(pipes_struct *p,
struct netr_ServerPasswordSet *r)
{
NTSTATUS status = NT_STATUS_OK;
- fstring remote_machine;
struct samu *sampass=NULL;
bool ret = False;
unsigned char pwd[16];
@@ -672,22 +671,19 @@ NTSTATUS _netr_ServerPasswordSet(pipes_struct *p,
DEBUG(5,("_netr_ServerPasswordSet: %d\n", __LINE__));
- /* We need the remote machine name for the creds lookup. */
- fstrcpy(remote_machine, r->in.computer_name);
-
if ( (lp_server_schannel() == True) && (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) ) {
/* 'server schannel = yes' should enforce use of
schannel, the client did offer it in auth2, but
obviously did not use it. */
DEBUG(0,("_netr_ServerPasswordSet: client %s not using schannel for netlogon\n",
- remote_machine ));
+ r->in.computer_name));
return NT_STATUS_ACCESS_DENIED;
}
if (!p->dc) {
/* Restore the saved state of the netlogon creds. */
become_root();
- ret = secrets_restore_schannel_session_info(p, remote_machine,
+ ret = secrets_restore_schannel_session_info(p, r->in.computer_name,
&p->dc);
unbecome_root();
if (!ret) {
@@ -700,13 +696,13 @@ NTSTATUS _netr_ServerPasswordSet(pipes_struct *p,
}
DEBUG(3,("_netr_ServerPasswordSet: Server Password Set by remote machine:[%s] on account [%s]\n",
- remote_machine, p->dc->mach_acct));
+ r->in.computer_name, p->dc->mach_acct));
/* Step the creds chain forward. */
if (!netlogon_creds_server_step(p->dc, r->in.credential, &cred_out)) {
DEBUG(2,("_netr_ServerPasswordSet: netlogon_creds_server_step failed. Rejecting auth "
"request from client %s machine account %s\n",
- remote_machine, p->dc->mach_acct ));
+ r->in.computer_name, p->dc->mach_acct ));
return NT_STATUS_INVALID_PARAMETER;
}
@@ -717,7 +713,7 @@ NTSTATUS _netr_ServerPasswordSet(pipes_struct *p,
}
become_root();
- secrets_store_schannel_session_info(p, remote_machine, p->dc);
+ secrets_store_schannel_session_info(p, r->in.computer_name, p->dc);
ret = pdb_getsampwnam(sampass, p->dc->mach_acct);
unbecome_root();
@@ -852,7 +848,7 @@ NTSTATUS _netr_LogonSamLogon(pipes_struct *p,
{
NTSTATUS status = NT_STATUS_OK;
union netr_LogonLevel *logon = r->in.logon;
- fstring nt_username, nt_domain, nt_workstation;
+ const char *nt_username, *nt_domain, *nt_workstation;
auth_usersupplied_info *user_info = NULL;
auth_serversupplied_info *server_info = NULL;
struct auth_context *auth_context = NULL;
@@ -942,22 +938,16 @@ NTSTATUS _netr_LogonSamLogon(pipes_struct *p,
switch (r->in.logon_level) {
case NetlogonInteractiveInformation:
- fstrcpy(nt_username,
- logon->password->identity_info.account_name.string);
- fstrcpy(nt_domain,
- logon->password->identity_info.domain_name.string);
- fstrcpy(nt_workstation,
- logon->password->identity_info.workstation.string);
+ nt_username = logon->password->identity_info.account_name.string;
+ nt_domain = logon->password->identity_info.domain_name.string;
+ nt_workstation = logon->password->identity_info.workstation.string;
DEBUG(3,("SAM Logon (Interactive). Domain:[%s]. ", lp_workgroup()));
break;
case NetlogonNetworkInformation:
- fstrcpy(nt_username,
- logon->network->identity_info.account_name.string);
- fstrcpy(nt_domain,
- logon->network->identity_info.domain_name.string);
- fstrcpy(nt_workstation,
- logon->network->identity_info.workstation.string);
+ nt_username = logon->network->identity_info.account_name.string;
+ nt_domain = logon->network->identity_info.domain_name.string;
+ nt_workstation = logon->network->identity_info.workstation.string;
DEBUG(3,("SAM Logon (Network). Domain:[%s]. ", lp_workgroup()));
break;