summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-19 12:03:11 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-19 12:03:11 +0000
commit1941b5cef04c39ddf89fb236d1d81167c0b25e6b (patch)
tree04aec2a2e8fdcfd61ad0ff418287951ea098d31a /source4/librpc/ndr
parent4e18040236c0f51a526383800fb1de8a65ab3175 (diff)
downloadsamba-1941b5cef04c39ddf89fb236d1d81167c0b25e6b.tar.gz
samba-1941b5cef04c39ddf89fb236d1d81167c0b25e6b.tar.bz2
samba-1941b5cef04c39ddf89fb236d1d81167c0b25e6b.zip
started to expand the echo tests to include more interesting test
cases. We fail one of the alignment tests. (This used to be commit 5bb21e57b844e98cc8f1dc264bc45097c08329e3)
Diffstat (limited to 'source4/librpc/ndr')
-rw-r--r--source4/librpc/ndr/ndr_echo.c299
-rw-r--r--source4/librpc/ndr/ndr_echo.h58
2 files changed, 333 insertions, 24 deletions
diff --git a/source4/librpc/ndr/ndr_echo.c b/source4/librpc/ndr/ndr_echo.c
index 7377f845c8..8e4690de52 100644
--- a/source4/librpc/ndr/ndr_echo.c
+++ b/source4/librpc/ndr/ndr_echo.c
@@ -40,6 +40,16 @@ NTSTATUS ndr_push_echo_SourceData(struct ndr_push *ndr, struct echo_SourceData *
NTSTATUS ndr_push_TestCall(struct ndr_push *ndr, struct TestCall *r)
{
+ NDR_CHECK(ndr_push_ptr(ndr, r->in.s1));
+ if (r->in.s1) {
+ NDR_CHECK(ndr_push_unistr(ndr, r->in.s1));
+ }
+
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_push_TestCall2(struct ndr_push *ndr, struct TestCall2 *r)
+{
NDR_CHECK(ndr_push_uint16(ndr, r->in.level));
return NT_STATUS_OK;
@@ -91,12 +101,41 @@ NTSTATUS ndr_pull_echo_SourceData(struct ndr_pull *ndr, struct echo_SourceData *
return NT_STATUS_OK;
}
-NTSTATUS ndr_pull_echo_ServerRole(struct ndr_pull *ndr, int ndr_flags, struct echo_ServerRole *r)
+NTSTATUS ndr_pull_TestCall(struct ndr_pull *ndr, struct TestCall *r)
+{
+ uint32 _ptr_s2;
+ NDR_CHECK(ndr_pull_uint32(ndr, &_ptr_s2));
+ if (_ptr_s2) {
+ NDR_ALLOC(ndr, r->out.s2);
+ } else {
+ r->out.s2 = NULL;
+ }
+ if (r->out.s2) {
+ NDR_CHECK(ndr_pull_unistr(ndr, &r->out.s2));
+ }
+
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info1(struct ndr_pull *ndr, int ndr_flags, struct echo_info1 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 1));
+ NDR_CHECK(ndr_pull_uint8(ndr, &r->v));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info2(struct ndr_pull *ndr, int ndr_flags, struct echo_info2 *r)
{
NDR_CHECK(ndr_pull_struct_start(ndr));
if (!(ndr_flags & NDR_SCALARS)) goto buffers;
NDR_CHECK(ndr_pull_align(ndr, 2));
- NDR_CHECK(ndr_pull_uint16(ndr, &r->role));
+ NDR_CHECK(ndr_pull_uint16(ndr, &r->v));
ndr_pull_struct_end(ndr);
buffers:
if (!(ndr_flags & NDR_BUFFERS)) goto done;
@@ -104,14 +143,108 @@ done:
return NT_STATUS_OK;
}
-NTSTATUS ndr_pull_echo_PolicyInformation(struct ndr_pull *ndr, int ndr_flags, uint16 *level, union echo_PolicyInformation *r)
+NTSTATUS ndr_pull_echo_info3(struct ndr_pull *ndr, int ndr_flags, struct echo_info3 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 4));
+ NDR_CHECK(ndr_pull_uint32(ndr, &r->v));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info4(struct ndr_pull *ndr, int ndr_flags, struct echo_info4 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 8));
+ NDR_CHECK(ndr_pull_HYPER_T(ndr, &r->v));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info5(struct ndr_pull *ndr, int ndr_flags, struct echo_info5 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 8));
+ NDR_CHECK(ndr_pull_uint8(ndr, &r->v1));
+ NDR_CHECK(ndr_pull_HYPER_T(ndr, &r->v2));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info6(struct ndr_pull *ndr, int ndr_flags, struct echo_info6 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 4));
+ NDR_CHECK(ndr_pull_uint8(ndr, &r->v1));
+ NDR_CHECK(ndr_pull_echo_info1(ndr, NDR_SCALARS, &r->info1));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+ NDR_CHECK(ndr_pull_echo_info1(ndr, NDR_BUFFERS, &r->info1));
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_info7(struct ndr_pull *ndr, int ndr_flags, struct echo_info7 *r)
+{
+ NDR_CHECK(ndr_pull_struct_start(ndr));
+ if (!(ndr_flags & NDR_SCALARS)) goto buffers;
+ NDR_CHECK(ndr_pull_align(ndr, 4));
+ NDR_CHECK(ndr_pull_uint8(ndr, &r->v1));
+ NDR_CHECK(ndr_pull_echo_info4(ndr, NDR_SCALARS, &r->info4));
+ ndr_pull_struct_end(ndr);
+buffers:
+ if (!(ndr_flags & NDR_BUFFERS)) goto done;
+ NDR_CHECK(ndr_pull_echo_info4(ndr, NDR_BUFFERS, &r->info4));
+done:
+ return NT_STATUS_OK;
+}
+
+NTSTATUS ndr_pull_echo_Info(struct ndr_pull *ndr, int ndr_flags, uint16 *level, union echo_Info *r)
{
if (!(ndr_flags & NDR_SCALARS)) goto buffers;
NDR_CHECK(ndr_pull_struct_start(ndr));
NDR_CHECK(ndr_pull_uint16(ndr, level));
switch (*level) {
+ case 1: {
+ NDR_CHECK(ndr_pull_echo_info1(ndr, NDR_SCALARS, &r->info1));
+ break; }
+
+ case 2: {
+ NDR_CHECK(ndr_pull_echo_info2(ndr, NDR_SCALARS, &r->info2));
+ break; }
+
+ case 3: {
+ NDR_CHECK(ndr_pull_echo_info3(ndr, NDR_SCALARS, &r->info3));
+ break; }
+
+ case 4: {
+ NDR_CHECK(ndr_pull_echo_info4(ndr, NDR_SCALARS, &r->info4));
+ break; }
+
+ case 5: {
+ NDR_CHECK(ndr_pull_echo_info5(ndr, NDR_SCALARS, &r->info5));
+ break; }
+
case 6: {
- NDR_CHECK(ndr_pull_echo_ServerRole(ndr, NDR_SCALARS, &r->role));
+ NDR_CHECK(ndr_pull_echo_info6(ndr, NDR_SCALARS, &r->info6));
+ break; }
+
+ case 7: {
+ NDR_CHECK(ndr_pull_echo_info7(ndr, NDR_SCALARS, &r->info7));
break; }
default:
@@ -121,8 +254,32 @@ NTSTATUS ndr_pull_echo_PolicyInformation(struct ndr_pull *ndr, int ndr_flags, ui
buffers:
if (!(ndr_flags & NDR_BUFFERS)) goto done;
switch (*level) {
+ case 1:
+ NDR_CHECK(ndr_pull_echo_info1(ndr, NDR_BUFFERS, &r->info1));
+ break;
+
+ case 2:
+ NDR_CHECK(ndr_pull_echo_info2(ndr, NDR_BUFFERS, &r->info2));
+ break;
+
+ case 3:
+ NDR_CHECK(ndr_pull_echo_info3(ndr, NDR_BUFFERS, &r->info3));
+ break;
+
+ case 4:
+ NDR_CHECK(ndr_pull_echo_info4(ndr, NDR_BUFFERS, &r->info4));
+ break;
+
+ case 5:
+ NDR_CHECK(ndr_pull_echo_info5(ndr, NDR_BUFFERS, &r->info5));
+ break;
+
case 6:
- NDR_CHECK(ndr_pull_echo_ServerRole(ndr, NDR_BUFFERS, &r->role));
+ NDR_CHECK(ndr_pull_echo_info6(ndr, NDR_BUFFERS, &r->info6));
+ break;
+
+ case 7:
+ NDR_CHECK(ndr_pull_echo_info7(ndr, NDR_BUFFERS, &r->info7));
break;
default:
@@ -132,7 +289,7 @@ done:
return NT_STATUS_OK;
}
-NTSTATUS ndr_pull_TestCall(struct ndr_pull *ndr, struct TestCall *r)
+NTSTATUS ndr_pull_TestCall2(struct ndr_pull *ndr, struct TestCall2 *r)
{
uint32 _ptr_info;
NDR_CHECK(ndr_pull_uint32(ndr, &_ptr_info));
@@ -143,10 +300,11 @@ NTSTATUS ndr_pull_TestCall(struct ndr_pull *ndr, struct TestCall *r)
}
if (r->out.info) {
{ uint16 _level = r->in.level;
- NDR_CHECK(ndr_pull_echo_PolicyInformation(ndr, NDR_SCALARS|NDR_BUFFERS, &_level, r->out.info));
+ NDR_CHECK(ndr_pull_echo_Info(ndr, NDR_SCALARS|NDR_BUFFERS, &_level, r->out.info));
if (((NDR_SCALARS|NDR_BUFFERS) & NDR_SCALARS) && (_level != r->in.level)) return ndr_pull_error(ndr, NDR_ERR_BAD_SWITCH, "Bad switch value %u in info");
}
}
+ NDR_CHECK(ndr_pull_NTSTATUS(ndr, &r->out.result));
return NT_STATUS_OK;
}
@@ -246,20 +404,124 @@ void ndr_print_echo_SourceData(struct ndr_print *ndr, const char *name, int flag
ndr->depth--;
}
-void ndr_print_echo_ServerRole(struct ndr_print *ndr, const char *name, struct echo_ServerRole *r)
+void ndr_print_TestCall(struct ndr_print *ndr, const char *name, int flags, struct TestCall *r)
+{
+ ndr_print_struct(ndr, name, "TestCall");
+ ndr->depth++;
+ if (flags & NDR_IN) {
+ ndr_print_struct(ndr, "in", "TestCall");
+ ndr->depth++;
+ ndr_print_ptr(ndr, "s1", r->in.s1);
+ ndr->depth++;
+ if (r->in.s1) {
+ ndr_print_unistr(ndr, "s1", r->in.s1);
+ }
+ ndr->depth--;
+ ndr->depth--;
+ }
+ if (flags & NDR_OUT) {
+ ndr_print_struct(ndr, "out", "TestCall");
+ ndr->depth++;
+ ndr_print_ptr(ndr, "s2", r->out.s2);
+ ndr->depth++;
+ if (r->out.s2) {
+ ndr_print_unistr(ndr, "s2", r->out.s2);
+ }
+ ndr->depth--;
+ ndr->depth--;
+ }
+ ndr->depth--;
+}
+
+void ndr_print_echo_info1(struct ndr_print *ndr, const char *name, struct echo_info1 *r)
+{
+ ndr_print_struct(ndr, name, "echo_info1");
+ ndr->depth++;
+ ndr_print_uint8(ndr, "v", r->v);
+ ndr->depth--;
+}
+
+void ndr_print_echo_info2(struct ndr_print *ndr, const char *name, struct echo_info2 *r)
+{
+ ndr_print_struct(ndr, name, "echo_info2");
+ ndr->depth++;
+ ndr_print_uint16(ndr, "v", r->v);
+ ndr->depth--;
+}
+
+void ndr_print_echo_info3(struct ndr_print *ndr, const char *name, struct echo_info3 *r)
+{
+ ndr_print_struct(ndr, name, "echo_info3");
+ ndr->depth++;
+ ndr_print_uint32(ndr, "v", r->v);
+ ndr->depth--;
+}
+
+void ndr_print_echo_info4(struct ndr_print *ndr, const char *name, struct echo_info4 *r)
+{
+ ndr_print_struct(ndr, name, "echo_info4");
+ ndr->depth++;
+ ndr_print_HYPER_T(ndr, "v", r->v);
+ ndr->depth--;
+}
+
+void ndr_print_echo_info5(struct ndr_print *ndr, const char *name, struct echo_info5 *r)
+{
+ ndr_print_struct(ndr, name, "echo_info5");
+ ndr->depth++;
+ ndr_print_uint8(ndr, "v1", r->v1);
+ ndr_print_HYPER_T(ndr, "v2", r->v2);
+ ndr->depth--;
+}
+
+void ndr_print_echo_info6(struct ndr_print *ndr, const char *name, struct echo_info6 *r)
{
- ndr_print_struct(ndr, name, "echo_ServerRole");
+ ndr_print_struct(ndr, name, "echo_info6");
ndr->depth++;
- ndr_print_uint16(ndr, "role", r->role);
+ ndr_print_uint8(ndr, "v1", r->v1);
+ ndr_print_echo_info1(ndr, "info1", &r->info1);
ndr->depth--;
}
-void ndr_print_echo_PolicyInformation(struct ndr_print *ndr, const char *name, uint16 level, union echo_PolicyInformation *r)
+void ndr_print_echo_info7(struct ndr_print *ndr, const char *name, struct echo_info7 *r)
{
- ndr_print_union(ndr, name, level, "echo_PolicyInformation");
+ ndr_print_struct(ndr, name, "echo_info7");
+ ndr->depth++;
+ ndr_print_uint8(ndr, "v1", r->v1);
+ ndr_print_echo_info4(ndr, "info4", &r->info4);
+ ndr->depth--;
+}
+
+void ndr_print_echo_Info(struct ndr_print *ndr, const char *name, uint16 level, union echo_Info *r)
+{
+ ndr_print_union(ndr, name, level, "echo_Info");
switch (level) {
+ case 1:
+ ndr_print_echo_info1(ndr, "info1", &r->info1);
+ break;
+
+ case 2:
+ ndr_print_echo_info2(ndr, "info2", &r->info2);
+ break;
+
+ case 3:
+ ndr_print_echo_info3(ndr, "info3", &r->info3);
+ break;
+
+ case 4:
+ ndr_print_echo_info4(ndr, "info4", &r->info4);
+ break;
+
+ case 5:
+ ndr_print_echo_info5(ndr, "info5", &r->info5);
+ break;
+
case 6:
- ndr_print_echo_ServerRole(ndr, "role", &r->role);
+ ndr_print_echo_info6(ndr, "info6", &r->info6);
+ break;
+
+ case 7:
+ ndr_print_echo_info7(ndr, "info7", &r->info7);
break;
default:
@@ -267,25 +529,26 @@ void ndr_print_echo_PolicyInformation(struct ndr_print *ndr, const char *name, u
}
}
-void ndr_print_TestCall(struct ndr_print *ndr, const char *name, int flags, struct TestCall *r)
+void ndr_print_TestCall2(struct ndr_print *ndr, const char *name, int flags, struct TestCall2 *r)
{
- ndr_print_struct(ndr, name, "TestCall");
+ ndr_print_struct(ndr, name, "TestCall2");
ndr->depth++;
if (flags & NDR_IN) {
- ndr_print_struct(ndr, "in", "TestCall");
+ ndr_print_struct(ndr, "in", "TestCall2");
ndr->depth++;
ndr_print_uint16(ndr, "level", r->in.level);
ndr->depth--;
}
if (flags & NDR_OUT) {
- ndr_print_struct(ndr, "out", "TestCall");
+ ndr_print_struct(ndr, "out", "TestCall2");
ndr->depth++;
ndr_print_ptr(ndr, "info", r->out.info);
ndr->depth++;
if (r->out.info) {
- ndr_print_echo_PolicyInformation(ndr, "info", r->in.level, r->out.info);
+ ndr_print_echo_Info(ndr, "info", r->in.level, r->out.info);
}
ndr->depth--;
+ ndr_print_NTSTATUS(ndr, "result", &r->out.result);
ndr->depth--;
}
ndr->depth--;
diff --git a/source4/librpc/ndr/ndr_echo.h b/source4/librpc/ndr/ndr_echo.h
index a5f6a2998e..5b5d118e19 100644
--- a/source4/librpc/ndr/ndr_echo.h
+++ b/source4/librpc/ndr/ndr_echo.h
@@ -9,6 +9,7 @@
#define DCERPC_ECHO_SINKDATA 2
#define DCERPC_ECHO_SOURCEDATA 3
#define DCERPC_TESTCALL 4
+#define DCERPC_TESTCALL2 5
struct echo_AddOne {
@@ -56,21 +57,66 @@ struct echo_SourceData {
};
-struct echo_ServerRole {
- uint16 role;
+struct TestCall {
+ struct {
+ const char *s1;
+ } in;
+
+ struct {
+ const char *s2;
+ } out;
+
};
-union echo_PolicyInformation {
-/* [case(6)] */ struct echo_ServerRole role;
+struct echo_info1 {
+ uint8 v;
};
-struct TestCall {
+struct echo_info2 {
+ uint16 v;
+};
+
+struct echo_info3 {
+ uint32 v;
+};
+
+struct echo_info4 {
+ HYPER_T v;
+};
+
+struct echo_info5 {
+ uint8 v1;
+ HYPER_T v2;
+};
+
+struct echo_info6 {
+ uint8 v1;
+ struct echo_info1 info1;
+};
+
+struct echo_info7 {
+ uint8 v1;
+ struct echo_info4 info4;
+};
+
+union echo_Info {
+/* [case(1)] */ struct echo_info1 info1;
+/* [case(2)] */ struct echo_info2 info2;
+/* [case(3)] */ struct echo_info3 info3;
+/* [case(4)] */ struct echo_info4 info4;
+/* [case(5)] */ struct echo_info5 info5;
+/* [case(6)] */ struct echo_info6 info6;
+/* [case(7)] */ struct echo_info7 info7;
+};
+
+struct TestCall2 {
struct {
uint16 level;
} in;
struct {
- union echo_PolicyInformation *info;
+ union echo_Info *info;
+ NTSTATUS result;
} out;
};