mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
2b4791ae73
There is now a new --debug-stderr option to enable debug to STDERR. popt isn't perfect, but the callbacks are used in all the main Samba binaries, and should be used in the rest. This avoids duplicated code, and ensures every binary is setup correctly. This also ensures the setup happens early enough to have -s function, and have a correct impact on the credentials code. (Fixing a bug that frustrated tridge earlier today). The only 'subtle' aspect of all this is that I'm pretty sure that the SAMBA_COMMON popt code must be above the CREDENTIALS code, in the popt tables. Andrew Bartlett (This used to be commit 50f3c2b3a22971f40e0d3a88127b5120bfc47591)
263 lines
5.7 KiB
C
263 lines
5.7 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
SMB torture tester
|
|
Copyright (C) Andrew Tridgell 2003
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "lib/cmdline/popt_common.h"
|
|
#include "system/iconv.h"
|
|
#include "system/filesys.h"
|
|
|
|
static const struct dcerpc_interface_call *find_function(
|
|
const struct dcerpc_interface_table *p,
|
|
const char *function)
|
|
{
|
|
int i;
|
|
if (isdigit(function[0])) {
|
|
i = strtol(function, NULL, 0);
|
|
return &p->calls[i];
|
|
}
|
|
for (i=0;i<p->num_calls;i++) {
|
|
if (strcmp(p->calls[i].name, function) == 0) {
|
|
break;
|
|
}
|
|
}
|
|
if (i == p->num_calls) {
|
|
printf("Function '%s' not found\n", function);
|
|
exit(1);
|
|
}
|
|
return &p->calls[i];
|
|
}
|
|
|
|
|
|
static void show_pipes(void)
|
|
{
|
|
const struct dcerpc_interface_list *l;
|
|
printf("\nYou must specify a pipe\n");
|
|
printf("known pipes are:\n");
|
|
for (l=librpc_dcerpc_pipes();l;l=l->next) {
|
|
if(l->table->helpstring) {
|
|
printf("\t%s - %s\n", l->table->name, l->table->helpstring);
|
|
} else {
|
|
printf("\t%s\n", l->table->name);
|
|
}
|
|
}
|
|
exit(1);
|
|
}
|
|
|
|
static void show_functions(const struct dcerpc_interface_table *p)
|
|
{
|
|
int i;
|
|
printf("\nYou must specify a function\n");
|
|
printf("known functions on '%s' are:\n", p->name);
|
|
for (i=0;i<p->num_calls;i++) {
|
|
printf("\t0x%02x (%2d) %s\n", i, i, p->calls[i].name);
|
|
}
|
|
exit(1);
|
|
}
|
|
|
|
static char *stdin_load(TALLOC_CTX *mem_ctx, size_t *size)
|
|
{
|
|
int num_read, total_len = 0;
|
|
char buf[255];
|
|
char *result = NULL;
|
|
|
|
while((num_read = read(STDIN_FILENO, buf, 255)) > 0) {
|
|
|
|
if (result) {
|
|
result = (char *) talloc_realloc(
|
|
mem_ctx, result, char *, total_len + num_read);
|
|
} else {
|
|
result = talloc_size(mem_ctx, num_read);
|
|
}
|
|
|
|
memcpy(result + total_len, buf, num_read);
|
|
|
|
total_len += num_read;
|
|
}
|
|
|
|
if (size)
|
|
*size = total_len;
|
|
|
|
return result;
|
|
}
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
const struct dcerpc_interface_table *p;
|
|
const struct dcerpc_interface_call *f;
|
|
const char *pipe_name, *function, *inout, *filename;
|
|
uint8_t *data;
|
|
size_t size;
|
|
DATA_BLOB blob;
|
|
struct ndr_pull *ndr;
|
|
TALLOC_CTX *mem_ctx;
|
|
int flags;
|
|
poptContext pc;
|
|
NTSTATUS status;
|
|
void *st;
|
|
const char *ctx_filename = NULL;
|
|
int opt;
|
|
struct ndr_print *pr;
|
|
struct poptOption long_options[] = {
|
|
{"context-file", 'c', POPT_ARG_STRING, &ctx_filename, 0, "In-filename to parse first", "CTX-FILE" },
|
|
POPT_COMMON_SAMBA
|
|
POPT_AUTOHELP
|
|
POPT_TABLEEND
|
|
};
|
|
|
|
ndrdump_init_subsystems;
|
|
|
|
pc = poptGetContext("ndrdump", argc, argv, long_options, 0);
|
|
|
|
poptSetOtherOptionHelp(
|
|
pc, "<pipe|uuid> <function> <inout> [<filename>]");
|
|
|
|
while ((opt = poptGetNextOpt(pc)) != -1) {
|
|
}
|
|
|
|
pipe_name = poptGetArg(pc);
|
|
|
|
if (!pipe_name) {
|
|
poptPrintUsage(pc, stderr, 0);
|
|
show_pipes();
|
|
exit(1);
|
|
}
|
|
|
|
p = idl_iface_by_name(pipe_name);
|
|
|
|
if (!p) {
|
|
|
|
p = idl_iface_by_uuid(pipe_name);
|
|
|
|
if (!p) {
|
|
printf("Unknown pipe or UUID '%s'\n", pipe_name);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
function = poptGetArg(pc);
|
|
inout = poptGetArg(pc);
|
|
filename = poptGetArg(pc);
|
|
|
|
if (!function || !inout) {
|
|
poptPrintUsage(pc, stderr, 0);
|
|
show_functions(p);
|
|
exit(1);
|
|
}
|
|
|
|
if (strcmp(inout, "in") == 0 ||
|
|
strcmp(inout, "request") == 0) {
|
|
flags = NDR_IN;
|
|
} else if (strcmp(inout, "out") == 0 ||
|
|
strcmp(inout, "response") == 0) {
|
|
flags = NDR_OUT;
|
|
} else {
|
|
printf("Bad inout value '%s'\n", inout);
|
|
exit(1);
|
|
}
|
|
|
|
f = find_function(p, function);
|
|
|
|
mem_ctx = talloc_init("ndrdump");
|
|
|
|
st = talloc_zero_size(mem_ctx, f->struct_size);
|
|
if (!st) {
|
|
printf("Unable to allocate %d bytes\n", f->struct_size);
|
|
exit(1);
|
|
}
|
|
|
|
if (ctx_filename) {
|
|
if (flags == NDR_IN) {
|
|
printf("Context file can only be used for \"out\" packages\n");
|
|
exit(1);
|
|
}
|
|
|
|
data = (uint8_t *)file_load(ctx_filename, &size);
|
|
if (!data) {
|
|
perror(ctx_filename);
|
|
exit(1);
|
|
}
|
|
|
|
blob.data = data;
|
|
blob.length = size;
|
|
|
|
ndr = ndr_pull_init_blob(&blob, mem_ctx);
|
|
ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
|
|
|
|
status = f->ndr_pull(ndr, NDR_IN, st);
|
|
|
|
if (ndr->offset != ndr->data_size) {
|
|
printf("WARNING! %d unread bytes while parsing context file\n", ndr->data_size - ndr->offset);
|
|
}
|
|
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
printf("pull for context file returned %s\n", nt_errstr(status));
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if (filename)
|
|
data = (uint8_t *)file_load(filename, &size);
|
|
else
|
|
data = (uint8_t *)stdin_load(mem_ctx, &size);
|
|
|
|
if (!data) {
|
|
if (filename)
|
|
perror(filename);
|
|
else
|
|
perror("stdin");
|
|
exit(1);
|
|
}
|
|
|
|
blob.data = data;
|
|
blob.length = size;
|
|
|
|
ndr = ndr_pull_init_blob(&blob, mem_ctx);
|
|
ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
|
|
|
|
status = f->ndr_pull(ndr, flags, st);
|
|
|
|
printf("pull returned %s\n", nt_errstr(status));
|
|
|
|
if (ndr->offset != ndr->data_size) {
|
|
printf("WARNING! %d unread bytes\n", ndr->data_size - ndr->offset);
|
|
dump_data(0, ndr->data+ndr->offset, ndr->data_size - ndr->offset);
|
|
}
|
|
|
|
pr = talloc(NULL, struct ndr_print);
|
|
pr->print = ndr_print_debug_helper;
|
|
pr->depth = 1;
|
|
pr->flags = 0;
|
|
f->ndr_print(pr, function, flags, st);
|
|
|
|
if (!NT_STATUS_IS_OK(status) ||
|
|
ndr->offset != ndr->data_size) {
|
|
printf("dump FAILED\n");
|
|
exit(1);
|
|
}
|
|
|
|
printf("dump OK\n");
|
|
|
|
talloc_free(pr);
|
|
|
|
poptFreeContext(pc);
|
|
|
|
return 0;
|
|
}
|