diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-16 09:02:58 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-16 09:02:58 +0000 |
commit | 24c22aef90d8534ee2d016b37b2b302f1367d106 (patch) | |
tree | cecb9192f1a83f7232041cda58e83e1d94ac57b5 /source4/include | |
parent | 1413faae582949e7d12174df7102723eea914464 (diff) | |
download | samba-24c22aef90d8534ee2d016b37b2b302f1367d106.tar.gz samba-24c22aef90d8534ee2d016b37b2b302f1367d106.tar.bz2 samba-24c22aef90d8534ee2d016b37b2b302f1367d106.zip |
a fairly large commit!
This adds support for bigendian rpc in the client. I have installed
SUN pcnetlink locally and am using it to test the samba4 rpc
code. This allows us to easily find places where we have stuffed up
the types (such as 2 uint16 versus a uint32), as testing both
big-endian and little-endian easily shows which is correct. I have now
used this to fix several bugs like that in the samba4 IDL.
In order to make this work I also had to redefine a GUID as a true
structure, not a blob. From the pcnetlink wire it is clear that it is
indeed defined as a structure (the byte order changes). This required
changing lots of Samba code to use a GUID as a structure.
I also had to fix the if_version code in dcerpc syntax IDs, as it
turns out they are a single uint32 not two uint16s.
The big-endian support is a bit ugly at the moment, and breaks the
layering in some places. More work is needed, especially on the server
side.
(This used to be commit bb1af644a5a7b188290ce36232f255da0e5d66d2)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 1 | ||||
-rw-r--r-- | source4/include/rpc_secdes.h | 4 | ||||
-rw-r--r-- | source4/include/smb.h | 2 | ||||
-rw-r--r-- | source4/include/smb_interfaces.h | 8 |
4 files changed, 6 insertions, 9 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index b3f98d2f2c..6d796da6b3 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -768,7 +768,6 @@ extern int errno; #include "mutex.h" -#include "librpc/ndr/libndr.h" #include "librpc/rpc/dcerpc.h" #include "rpc_server/dcerpc_server.h" diff --git a/source4/include/rpc_secdes.h b/source4/include/rpc_secdes.h index 70191901c7..80cc71fccf 100644 --- a/source4/include/rpc_secdes.h +++ b/source4/include/rpc_secdes.h @@ -116,8 +116,8 @@ typedef struct security_ace_info /* this stuff may be present when type is XXXX_TYPE_XXXX_OBJECT */ uint32 obj_flags; /* xxxx_ACE_OBJECT_xxxx e.g present/inherited present etc */ - GUID obj_guid; /* object GUID */ - GUID inh_guid; /* inherited object GUID */ + struct GUID obj_guid; /* object GUID */ + struct GUID inh_guid; /* inherited object GUID */ /* eof object stuff */ DOM_SID trustee; diff --git a/source4/include/smb.h b/source4/include/smb.h index 9b8bc28614..89623895ed 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -421,7 +421,9 @@ struct vuid_cache { #include "smb_acls.h" #include "enums.h" #include "events.h" +#include "librpc/gen_ndr/ndr_misc.h" #include "smb_interfaces.h" +#include "librpc/ndr/libndr.h" typedef struct smb_vfs_handle_struct { diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 4bf557359e..6f820be536 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -24,10 +24,6 @@ typedef SMB_BIG_UINT large_t; /* Globally Unique ID */ #define GUID_SIZE 16 -typedef struct GUID -{ - uint8 info[GUID_SIZE]; -} GUID; /* 64 bit time (100 nanosec) 1601 - cifs6.txt, section 3.5, page 30 */ typedef struct nttime_info @@ -946,7 +942,7 @@ union smb_fsinfo { large_t quota_soft; large_t quota_hard; large_t quota_flags; - GUID guid; + struct GUID guid; char *volume_name; char *fs_type; } out; @@ -1074,7 +1070,7 @@ union smb_fsinfo { enum fsinfo_level level; struct { - GUID guid; + struct GUID guid; large_t unknown[6]; } out; } objectid_information; |