diff options
-rw-r--r-- | source4/rpc_server/echo/rpc_echo.c | 14 | ||||
-rw-r--r-- | source4/torture/rpc/echo.c | 35 |
2 files changed, 49 insertions, 0 deletions
diff --git a/source4/rpc_server/echo/rpc_echo.c b/source4/rpc_server/echo/rpc_echo.c index 28c9958c92..a2d2e552d6 100644 --- a/source4/rpc_server/echo/rpc_echo.c +++ b/source4/rpc_server/echo/rpc_echo.c @@ -137,6 +137,20 @@ static void echo_TestSleep_handler(struct event_context *ev, struct timed_event } } +static NTSTATUS echo_TestSurrounding(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestSurrounding *r) +{ + if (!r->in.data) { + r->out.data = NULL; + return NT_STATUS_OK; + } + + r->out.data = talloc(mem_ctx, struct echo_Surrounding); + r->out.data->x = 2 * r->in.data->x; + r->out.data->surrounding = talloc_zero_array(mem_ctx, uint16_t, r->out.data->x); + + return NT_STATUS_OK; +} + static long echo_TestSleep(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct echo_TestSleep *r) { struct echo_TestSleep_private *p; diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c index d01bda1f68..8284157bd2 100644 --- a/source4/torture/rpc/echo.c +++ b/source4/torture/rpc/echo.c @@ -319,6 +319,40 @@ static BOOL test_enum(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) return ret; } +/* + test surrounding conformant array handling +*/ +static BOOL test_surrounding(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) +{ + NTSTATUS status; + struct echo_TestSurrounding r; + BOOL ret = True; + + ZERO_STRUCT(r); + r.in.data = talloc(mem_ctx, struct echo_Surrounding); + + r.in.data->x = 20; + r.in.data->surrounding = talloc_zero_array(mem_ctx, uint16_t, r.in.data->x); + + r.out.data = talloc(mem_ctx, struct echo_Surrounding); + + printf("\nTesting TestSurrounding\n"); + status = dcerpc_echo_TestSurrounding(p, mem_ctx, &r); + if (!NT_STATUS_IS_OK(status)) { + printf("TestSurrounding failed - %s\n", nt_errstr(status)); + ret = False; + } + + if (r.out.data->x != 2 * r.in.data->x) { + printf("TestSurrounding did not make the array twice as large\n"); + ret = False; + } + + return ret; +} + + + BOOL torture_rpc_echo(void) { NTSTATUS status; @@ -344,6 +378,7 @@ BOOL torture_rpc_echo(void) ret &= test_testcall2(p, mem_ctx); ret &= test_enum(p, mem_ctx); ret &= test_sleep(p, mem_ctx); + ret &= test_surrounding(p, mem_ctx); printf("\n"); |