svn commit: samba r12635 - in branches/SAMBA_4_0/source/librpc/idl: .

tridge at samba.org tridge at samba.org
Sat Dec 31 04:31:03 GMT 2005


Author: tridge
Date: 2005-12-31 04:31:02 +0000 (Sat, 31 Dec 2005)
New Revision: 12635

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

Log:

use the new [validate] value() checking to fix the string types for
the LSA pipe. Strangely, windows is not consistent for the LookupSids
call. Sometimes the name is terminated and sometimes not?! It might
depend on the type of rid (alias, group etc) ?

Modified:
   branches/SAMBA_4_0/source/librpc/idl/lsa.idl


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/lsa.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/lsa.idl	2005-12-31 04:29:34 UTC (rev 12634)
+++ branches/SAMBA_4_0/source/librpc/idl/lsa.idl	2005-12-31 04:31:02 UTC (rev 12635)
@@ -23,7 +23,7 @@
 	typedef [public] struct {
 		[value(2*strlen_m(string))] uint16 length;
 		[value(2*(strlen_m(string)+1))] uint16 size;
-		[flag(STR_SIZE4|STR_LEN4|STR_NOTERM|STR_LARGE_SIZE)] string *string;
+		[charset(UTF16),size_is(size/2),length_is(length/2)] uint16 *string;
 	} lsa_StringLarge;
 
 	typedef [public] struct {
@@ -59,7 +59,7 @@
 	} lsa_LUID;
 	
 	typedef struct {
-		lsa_String name;
+		lsa_StringLarge name;
 		lsa_LUID luid;
 	} lsa_PrivEntry;
 
@@ -144,7 +144,7 @@
 	} lsa_AuditEventsInfo;
 
 	typedef struct {
-		lsa_String name;
+		lsa_StringLarge name;
 		dom_sid2 *sid;
 	} lsa_DomainInfo;
 
@@ -279,7 +279,7 @@
 	/* Function: 0x0c                                */
 
 	typedef struct {
-		lsa_String name;
+		lsa_StringLarge name;
 		dom_sid2  *sid;
 	} lsa_TrustInformation;
 
@@ -298,7 +298,7 @@
 	const int LSA_ENUM_TRUST_DOMAIN_MULTIPLIER = 60;
 
 	typedef struct {
-		lsa_String name;
+		lsa_StringLarge name;
 		dom_sid2 *sid;
 	} lsa_DomainInformation;
 
@@ -480,7 +480,7 @@
 	} lsa_TrustDomInfoEnum;
 
 	typedef struct {
-		lsa_String     netbios_name;
+		lsa_StringLarge  netbios_name;
 	} lsa_TrustDomainInfoName;
 
 	typedef struct {
@@ -498,8 +498,8 @@
 	} lsa_TrustDomainInfoBasic;
 
 	typedef struct {
-		lsa_String     domain_name;
-		lsa_String     netbios_name;
+		lsa_StringLarge     domain_name;
+		lsa_StringLarge     netbios_name;
 		dom_sid2      *sid;
 		uint32         trust_direction;
 		uint32         trust_type;
@@ -602,7 +602,7 @@
 	NTSTATUS lsa_LookupPrivName (
 		[in]     policy_handle *handle,
 		[in]     lsa_LUID *luid,
-		[out,unique]        lsa_String *name
+		[out,unique]        lsa_StringLarge *name
 		);
 
 
@@ -611,7 +611,7 @@
 	NTSTATUS lsa_LookupPrivDisplayName (
 		[in]     policy_handle *handle,
 		[in]     lsa_String *name,
-		[out,unique]        lsa_String *disp_name,
+		[out,unique]        lsa_StringLarge *disp_name,
 		/* see http://www.microsoft.com/globaldev/nlsweb/ for
 		   language definitions */
 		[in,out] uint16 *language_id,
@@ -637,7 +637,7 @@
 	
 	typedef struct {
 		uint32 count;
-		[size_is(count)] lsa_String *names;
+		[size_is(count)] lsa_StringLarge *names;
 	} lsa_RightSet;
 	
 	NTSTATUS lsa_EnumAccountRights (



More information about the samba-cvs mailing list