svn commit: samba r13450 - in trunk/source: include rpc_server

jra at samba.org jra at samba.org
Sat Feb 11 00:05:00 GMT 2006


Author: jra
Date: 2006-02-11 00:04:59 +0000 (Sat, 11 Feb 2006)
New Revision: 13450

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13450

Log:
Ensure we don't crash if no dc struct on pipe.
Jeremy.

Modified:
   trunk/source/include/rpc_lsa.h
   trunk/source/rpc_server/srv_lsa_nt.c
   trunk/source/rpc_server/srv_netlog_nt.c


Changeset:
Modified: trunk/source/include/rpc_lsa.h
===================================================================
--- trunk/source/include/rpc_lsa.h	2006-02-11 00:04:39 UTC (rev 13449)
+++ trunk/source/include/rpc_lsa.h	2006-02-11 00:04:59 UTC (rev 13450)
@@ -78,7 +78,10 @@
 #define LSA_OPENTRUSTDOMBYNAME 0x37
 
 #define LSA_LOOKUPSIDS2        0x39
+#define LSA_LOOKUPNAMES2       0x3a
+#define LSA_LOOKUPNAMES3       0x44
 #define LSA_LOOKUPSIDS3        0x4c
+#define LSA_LOOKUPNAMES4       0x4d
 
 /* XXXX these are here to get a compile! */
 #define LSA_LOOKUPRIDS      0xFD

Modified: trunk/source/rpc_server/srv_lsa_nt.c
===================================================================
--- trunk/source/rpc_server/srv_lsa_nt.c	2006-02-11 00:04:39 UTC (rev 13449)
+++ trunk/source/rpc_server/srv_lsa_nt.c	2006-02-11 00:04:59 UTC (rev 13450)
@@ -858,6 +858,11 @@
 	}
 
 	/* No policy handle on this call. Restrict to crypto connections. */
+	if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
+		DEBUG(0,("_lsa_lookup_sids3: client %s not using schannel for netlogon\n",
+			get_remote_machine_name() ));
+		return NT_STATUS_INVALID_PARAMETER;
+	}
 
 	if (num_sids >  MAX_LOOKUP_SIDS) {
 		DEBUG(5,("_lsa_lookup_sids3: limit of %d exceeded, requested %d\n",

Modified: trunk/source/rpc_server/srv_netlog_nt.c
===================================================================
--- trunk/source/rpc_server/srv_netlog_nt.c	2006-02-11 00:04:39 UTC (rev 13449)
+++ trunk/source/rpc_server/srv_netlog_nt.c	2006-02-11 00:04:59 UTC (rev 13450)
@@ -937,7 +937,7 @@
 	/* Only allow this if the pipe is protected. */
 	if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
 		DEBUG(0,("_net_sam_logon_ex: client %s not using schannel for netlogon\n",
-			p->dc->remote_machine ));
+			get_remote_machine_name() ));
 		return NT_STATUS_INVALID_PARAMETER;
         }
 



More information about the samba-cvs mailing list