svn commit: samba r24560 - in branches/SAMBA_4_0/source: lib/messaging libcli libcli/util librpc/rpc pidl/lib/Parse/Pidl/Samba3 pidl/lib/Parse/Pidl/Samba4 pidl/lib/Parse/Pidl/Samba4/NDR pidl/tests torture/rpc

metze at samba.org metze at samba.org
Sun Aug 19 22:09:23 GMT 2007


Author: metze
Date: 2007-08-19 22:09:21 +0000 (Sun, 19 Aug 2007)
New Revision: 24560

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

Log:
rename some DCERPC_ prefixes into NDR_

metze
Modified:
   branches/SAMBA_4_0/source/lib/messaging/irpc.h
   branches/SAMBA_4_0/source/libcli/finddcs.c
   branches/SAMBA_4_0/source/libcli/util/clilsa.c
   branches/SAMBA_4_0/source/librpc/rpc/dcerpc_schannel.c
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/EJS.pm
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm
   branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
   branches/SAMBA_4_0/source/pidl/tests/samba3-cli.pl
   branches/SAMBA_4_0/source/torture/rpc/samlogon.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/messaging/irpc.h
===================================================================
--- branches/SAMBA_4_0/source/lib/messaging/irpc.h	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/lib/messaging/irpc.h	2007-08-19 22:09:21 UTC (rev 24560)
@@ -46,15 +46,15 @@
 /* register a server function with the irpc messaging system */
 #define IRPC_REGISTER(msg_ctx, pipename, funcname, function, private) \
    irpc_register(msg_ctx, &ndr_table_ ## pipename, \
-                          DCERPC_ ## funcname, \
+                          NDR_ ## funcname, \
 			  (irpc_function_t)function, private)
 
 /* make a irpc call */
 #define IRPC_CALL(msg_ctx, server_id, pipename, funcname, ptr, ctx) \
-   irpc_call(msg_ctx, server_id, &ndr_table_ ## pipename, DCERPC_ ## funcname, ptr, ctx)
+   irpc_call(msg_ctx, server_id, &ndr_table_ ## pipename, NDR_ ## funcname, ptr, ctx)
 
 #define IRPC_CALL_SEND(msg_ctx, server_id, pipename, funcname, ptr, ctx) \
-   irpc_call_send(msg_ctx, server_id, &ndr_table_ ## pipename, DCERPC_ ## funcname, ptr, ctx)
+   irpc_call_send(msg_ctx, server_id, &ndr_table_ ## pipename, NDR_ ## funcname, ptr, ctx)
 
 
 /*

Modified: branches/SAMBA_4_0/source/libcli/finddcs.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/finddcs.c	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/libcli/finddcs.c	2007-08-19 22:09:21 UTC (rev 24560)
@@ -151,7 +151,7 @@
 	state->r.in.domain_sid = state->domain_sid;
 
 	ireq = irpc_call_send(state->msg_ctx, nbt_servers[0],
-			      &ndr_table_irpc, DCERPC_NBTD_GETDCNAME,
+			      &ndr_table_irpc, NDR_NBTD_GETDCNAME,
 			      &state->r, state);
 	if (!ireq) {
 		fallback_node_status(state);

Modified: branches/SAMBA_4_0/source/libcli/util/clilsa.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/util/clilsa.c	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/libcli/util/clilsa.c	2007-08-19 22:09:21 UTC (rev 24560)
@@ -85,7 +85,7 @@
 	}
 
 	/* open the LSA pipe */
-	status = dcerpc_pipe_open_smb(lsa->pipe, lsa->ipc_tree, DCERPC_LSARPC_NAME);
+	status = dcerpc_pipe_open_smb(lsa->pipe, lsa->ipc_tree, NDR_LSARPC_NAME);
 	if (!NT_STATUS_IS_OK(status)) {
 		talloc_free(lsa);
 		return status;

Modified: branches/SAMBA_4_0/source/librpc/rpc/dcerpc_schannel.c
===================================================================
--- branches/SAMBA_4_0/source/librpc/rpc/dcerpc_schannel.c	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/librpc/rpc/dcerpc_schannel.c	2007-08-19 22:09:21 UTC (rev 24560)
@@ -68,7 +68,7 @@
 	c->status = dcerpc_epm_map_binding_recv(ctx);
 	if (!NT_STATUS_IS_OK(c->status)) {
 		DEBUG(0,("Failed to map DCERPC/TCP NCACN_NP pipe for '%s' - %s\n",
-			 DCERPC_NETLOGON_UUID, nt_errstr(c->status)));
+			 NDR_NETLOGON_UUID, nt_errstr(c->status)));
 		composite_error(c, c->status);
 		return;
 	}

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm	2007-08-19 22:09:21 UTC (rev 24560)
@@ -40,7 +40,7 @@
 
 	my $inargs = "";
 	my $defargs = "";
-	my $ufn = "DCERPC_".uc($fn->{NAME});
+	my $ufn = "NDR_".uc($fn->{NAME});
 
 	foreach (@{$fn->{ELEMENTS}}) {
 		$defargs .= ", " . DeclLong($_);

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba3/ServerNDR.pm	2007-08-19 22:09:21 UTC (rev 24560)
@@ -199,7 +199,7 @@
 	indent;
 
 	foreach (@{$if->{FUNCTIONS}}) {
-		pidl "{\"" . uc($_->{NAME}) . "\", DCERPC_" . uc($_->{NAME}) . ", api_$_->{NAME}},";
+		pidl "{\"" . uc($_->{NAME}) . "\", NDR_" . uc($_->{NAME}) . ", api_$_->{NAME}},";
 	}
 
 	deindent;

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/EJS.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/EJS.pm	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/EJS.pm	2007-08-19 22:09:21 UTC (rev 24560)
@@ -689,7 +689,7 @@
 {
 	my ($self, $d, $iface) = @_;
 	my $name = $d->{NAME};
-	my $callnum = uc("DCERPC_$name");
+	my $callnum = uc("NDR_$name");
 	my $table = "&ndr_table_$iface";
 
 	$self->pidl("static int ejs_$name(int eid, int argc, struct MprVar **argv)");

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm	2007-08-19 22:09:21 UTC (rev 24560)
@@ -34,7 +34,7 @@
 		NDR_PRINT_IN_DEBUG($name, r);
 	}
 	
-	return dcerpc_ndr_request_send(p, NULL, &ndr_table_$interface->{NAME}, DCERPC_$uname, mem_ctx, r);
+	return dcerpc_ndr_request_send(p, NULL, &ndr_table_$interface->{NAME}, NDR_$uname, mem_ctx, r);
 }
 
 NTSTATUS dcerpc_$name(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct $name *r)

Modified: branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
===================================================================
--- branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm	2007-08-19 22:09:21 UTC (rev 24560)
@@ -2337,9 +2337,9 @@
 	$self->pidl("\t.name\t\t= \"$interface->{NAME}\",");
 	$self->pidl("\t.syntax_id\t= {");
 	$self->pidl("\t\t" . print_uuid($interface->{UUID}) .",");
-	$self->pidl("\t\tDCERPC_$uname\_VERSION");
+	$self->pidl("\t\tNDR_$uname\_VERSION");
 	$self->pidl("\t},");
-	$self->pidl("\t.helpstring\t= DCERPC_$uname\_HELPSTRING,");
+	$self->pidl("\t.helpstring\t= NDR_$uname\_HELPSTRING,");
 	$self->pidl("\t.num_calls\t= $count,");
 	$self->pidl("\t.calls\t\t= $interface->{NAME}\_calls,");
 	$self->pidl("\t.endpoints\t= &$interface->{NAME}\_endpoints,");
@@ -2395,16 +2395,16 @@
 
 	if (defined $interface->{PROPERTIES}->{uuid}) {
 		my $name = uc $interface->{NAME};
-		$self->pidl_hdr("#define DCERPC_$name\_UUID " . 
+		$self->pidl_hdr("#define NDR_$name\_UUID " . 
 		Parse::Pidl::Util::make_str(lc($interface->{PROPERTIES}->{uuid})));
 
 		if(!defined $interface->{PROPERTIES}->{version}) { $interface->{PROPERTIES}->{version} = "0.0"; }
-		$self->pidl_hdr("#define DCERPC_$name\_VERSION $interface->{PROPERTIES}->{version}");
+		$self->pidl_hdr("#define NDR_$name\_VERSION $interface->{PROPERTIES}->{version}");
 
-		$self->pidl_hdr("#define DCERPC_$name\_NAME \"$interface->{NAME}\"");
+		$self->pidl_hdr("#define NDR_$name\_NAME \"$interface->{NAME}\"");
 
 		if(!defined $interface->{PROPERTIES}->{helpstring}) { $interface->{PROPERTIES}->{helpstring} = "NULL"; }
-		$self->pidl_hdr("#define DCERPC_$name\_HELPSTRING $interface->{PROPERTIES}->{helpstring}");
+		$self->pidl_hdr("#define NDR_$name\_HELPSTRING $interface->{PROPERTIES}->{helpstring}");
 
 		$self->pidl_hdr("extern const struct ndr_interface_table ndr_table_$interface->{NAME};");
 		$self->pidl_hdr("NTSTATUS dcerpc_server_$interface->{NAME}_init(void);");
@@ -2417,10 +2417,10 @@
 	
 		my $val = sprintf("0x%02x", $count);
 		if (defined($interface->{BASE})) {
-			$val .= " + DCERPC_" . uc $interface->{BASE} . "_CALL_COUNT";
+			$val .= " + NDR_" . uc $interface->{BASE} . "_CALL_COUNT";
 		}
 		
-		$self->pidl_hdr("#define DCERPC_$u_name ($val)");
+		$self->pidl_hdr("#define NDR_$u_name ($val)");
 
 		$self->pidl_hdr("");
 		$count++;
@@ -2429,10 +2429,10 @@
 	my $val = $count;
 
 	if (defined($interface->{BASE})) {
-		$val .= " + DCERPC_" . uc $interface->{BASE} . "_CALL_COUNT";
+		$val .= " + NDR_" . uc $interface->{BASE} . "_CALL_COUNT";
 	}
 
-	$self->pidl_hdr("#define DCERPC_" . uc $interface->{NAME} . "_CALL_COUNT ($val)");
+	$self->pidl_hdr("#define NDR_" . uc $interface->{NAME} . "_CALL_COUNT ($val)");
 
 }
 

Modified: branches/SAMBA_4_0/source/pidl/tests/samba3-cli.pl
===================================================================
--- branches/SAMBA_4_0/source/pidl/tests/samba3-cli.pl	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/pidl/tests/samba3-cli.pl	2007-08-19 22:09:21 UTC (rev 24560)
@@ -39,7 +39,7 @@
 \tif (DEBUGLEVEL >= 10)
 \t\tNDR_PRINT_IN_DEBUG(bar, &r);
 \t
-\tstatus = cli_do_rpc_ndr(cli, mem_ctx, PI_foo, DCERPC_BAR, &r, (ndr_pull_flags_fn_t)ndr_pull_bar, (ndr_push_flags_fn_t)ndr_push_bar);
+\tstatus = cli_do_rpc_ndr(cli, mem_ctx, PI_foo, NDR_BAR, &r, (ndr_pull_flags_fn_t)ndr_pull_bar, (ndr_push_flags_fn_t)ndr_push_bar);
 \t
 \tif (!NT_STATUS_IS_OK(status)) {
 \t\treturn status;

Modified: branches/SAMBA_4_0/source/torture/rpc/samlogon.c
===================================================================
--- branches/SAMBA_4_0/source/torture/rpc/samlogon.c	2007-08-19 21:24:13 UTC (rev 24559)
+++ branches/SAMBA_4_0/source/torture/rpc/samlogon.c	2007-08-19 22:09:21 UTC (rev 24560)
@@ -146,7 +146,7 @@
 	}
 	
 	switch (samlogon_state->function_level) {
-	case DCERPC_NETR_LOGONSAMLOGON: 
+	case NDR_NETR_LOGONSAMLOGON: 
 		ZERO_STRUCT(samlogon_state->auth2);
 		creds_client_authenticator(samlogon_state->creds, &samlogon_state->auth);
 
@@ -179,7 +179,7 @@
 			break;
 		}
 		break;
-	case DCERPC_NETR_LOGONSAMLOGONEX: 
+	case NDR_NETR_LOGONSAMLOGONEX: 
 		status = dcerpc_netr_LogonSamLogonEx(samlogon_state->p, samlogon_state->mem_ctx, r_ex);
 		if (!NT_STATUS_IS_OK(status)) {
 			if (error_string) {
@@ -204,7 +204,7 @@
 			break;
 		}
 		break;
-	case DCERPC_NETR_LOGONSAMLOGONWITHFLAGS: 
+	case NDR_NETR_LOGONSAMLOGONWITHFLAGS: 
 		ZERO_STRUCT(samlogon_state->auth2);
 		creds_client_authenticator(samlogon_state->creds, &samlogon_state->auth);
 
@@ -1320,9 +1320,9 @@
 	int validation_levels[] = {2,3,6};
 	int logon_levels[] = { 2, 6 };
 	int function_levels[] = { 
-		DCERPC_NETR_LOGONSAMLOGON,
-		DCERPC_NETR_LOGONSAMLOGONEX,
-		DCERPC_NETR_LOGONSAMLOGONWITHFLAGS };
+		NDR_NETR_LOGONSAMLOGON,
+		NDR_NETR_LOGONSAMLOGONEX,
+		NDR_NETR_LOGONSAMLOGONWITHFLAGS };
 	struct samlogon_state samlogon_state;
 	
 	d_printf("testing netr_LogonSamLogon and netr_LogonSamLogonWithFlags\n");
@@ -1594,7 +1594,7 @@
 	b->flags |= DCERPC_SCHANNEL | DCERPC_SIGN | DCERPC_SCHANNEL_128;
 
 	status = dcerpc_pipe_connect_b(mem_ctx, &p, b, 
-								   &ndr_table_netlogon,
+				       &ndr_table_netlogon,
 				       machine_credentials, NULL);
 
 	if (!NT_STATUS_IS_OK(status)) {



More information about the samba-cvs mailing list