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/torture | |
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/torture')
-rw-r--r-- | source4/torture/rpc/epmapper.c | 2 | ||||
-rw-r--r-- | source4/torture/rpc/mgmt.c | 5 | ||||
-rw-r--r-- | source4/torture/rpc/scanner.c | 9 |
3 files changed, 7 insertions, 9 deletions
diff --git a/source4/torture/rpc/epmapper.c b/source4/torture/rpc/epmapper.c index afc83a512d..2b704659d6 100644 --- a/source4/torture/rpc/epmapper.c +++ b/source4/torture/rpc/epmapper.c @@ -104,7 +104,7 @@ static BOOL test_Map(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, { NTSTATUS status; struct epm_Map r; - GUID uuid; + struct GUID uuid; const char *uuid_str; struct policy_handle handle; int i; diff --git a/source4/torture/rpc/mgmt.c b/source4/torture/rpc/mgmt.c index 24bf080ffb..3a50732c7e 100644 --- a/source4/torture/rpc/mgmt.c +++ b/source4/torture/rpc/mgmt.c @@ -55,10 +55,9 @@ static BOOL test_inq_if_ids(struct dcerpc_pipe *p, uuid = GUID_string(mem_ctx, &id->uuid); - printf("\tuuid %s version 0x%04x:0x%04x '%s'\n", + printf("\tuuid %s version 0x%08x '%s'\n", uuid, - id->major_version, id->minor_version, - idl_pipe_name(uuid, id->major_version)); + id->if_version, idl_pipe_name(uuid, id->if_version)); } return True; diff --git a/source4/torture/rpc/scanner.c b/source4/torture/rpc/scanner.c index 3469294552..99c047bf2e 100644 --- a/source4/torture/rpc/scanner.c +++ b/source4/torture/rpc/scanner.c @@ -39,7 +39,7 @@ static BOOL test_num_calls(const struct dcerpc_interface_table *iface, uuid = GUID_string(mem_ctx, &id->uuid); status = torture_rpc_connection(&p, iface->name, - uuid, id->major_version); + uuid, id->if_version); if (!NT_STATUS_IS_OK(status)) { printf("Failed to connect to '%s' on '%s' - %s\n", uuid, iface->name, nt_errstr(status)); @@ -69,7 +69,7 @@ static BOOL test_num_calls(const struct dcerpc_interface_table *iface, } printf("\t%d calls available\n", i); - idl_calls = idl_num_calls(uuid, id->major_version); + idl_calls = idl_num_calls(uuid, id->if_version); if (idl_calls == -1) { printf("\tinterface not known in local IDL\n"); } else if (i != idl_calls) { @@ -117,10 +117,9 @@ static BOOL test_inq_if_ids(struct dcerpc_pipe *p, uuid = GUID_string(mem_ctx, &id->uuid), - printf("\n\tuuid %s version 0x%04x:0x%04x '%s'\n", + printf("\n\tuuid %s version 0x%08x '%s'\n", uuid, - id->major_version, id->minor_version, - idl_pipe_name(uuid, id->major_version)); + id->if_version, idl_pipe_name(uuid, id->if_version)); test_num_calls(iface, mem_ctx, id); } |