From 4fba936a8ab9afbdb7eaf2789d57850fbec35a77 Mon Sep 17 00:00:00 2001 From: cvs2svn Import User Date: Fri, 12 Apr 2002 03:54:15 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create tag 'samba-3-0-split'. --- source/python/mkpatch | 6 - source/python/py_spoolss_ports_conv.c | 58 ---------- source/torture/mangle_test.c | 201 ---------------------------------- 3 files changed, 265 deletions(-) delete mode 100755 source/python/mkpatch delete mode 100644 source/python/py_spoolss_ports_conv.c delete mode 100644 source/torture/mangle_test.c diff --git a/source/python/mkpatch b/source/python/mkpatch deleted file mode 100755 index ab5be1b6a2f..00000000000 --- a/source/python/mkpatch +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -# -# Make samba-head.patch. Must be run from samba source directory. -# - -cvs -z3 diff -u Makefile.in configure.in > python/samba-head.patch diff --git a/source/python/py_spoolss_ports_conv.c b/source/python/py_spoolss_ports_conv.c deleted file mode 100644 index 3f6d94bf7e7..00000000000 --- a/source/python/py_spoolss_ports_conv.c +++ /dev/null @@ -1,58 +0,0 @@ -/* - Python wrappers for DCERPC/SMB client routines. - - Copyright (C) Tim Potter, 2002 - - 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 "python/py_spoolss.h" -#include "python/py_conv.h" - -struct pyconv py_PORT_INFO_1[] = { - { "name", PY_UNISTR, offsetof(PORT_INFO_1, port_name) }, - { NULL } -}; - -struct pyconv py_PORT_INFO_2[] = { - { "name", PY_UNISTR, offsetof(PORT_INFO_2, port_name) }, - { "monitor_name", PY_UNISTR, offsetof(PORT_INFO_2, monitor_name) }, - { "description", PY_UNISTR, offsetof(PORT_INFO_2, description) }, - { "reserved", PY_UINT32, offsetof(PORT_INFO_2, reserved) }, - { "type", PY_UINT32, offsetof(PORT_INFO_2, port_type) }, - { NULL } -}; - -BOOL py_from_PORT_INFO_1(PyObject **dict, PORT_INFO_1 *info) -{ - *dict = from_struct(info, py_PORT_INFO_1); - return True; -} - -BOOL py_to_PORT_INFO_1(PORT_INFO_1 *info, PyObject *dict) -{ - return False; -} - -BOOL py_from_PORT_INFO_2(PyObject **dict, PORT_INFO_2 *info) -{ - *dict = from_struct(info, py_PORT_INFO_2); - return True; -} - -BOOL py_to_PORT_INFO_2(PORT_INFO_2 *info, PyObject *dict) -{ - return False; -} diff --git a/source/torture/mangle_test.c b/source/torture/mangle_test.c deleted file mode 100644 index 2d5b3610d55..00000000000 --- a/source/torture/mangle_test.c +++ /dev/null @@ -1,201 +0,0 @@ -/* - Unix SMB/CIFS implementation. - SMB torture tester - mangling test - Copyright (C) Andrew Tridgell 2002 - - 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" - -static TDB_CONTEXT *tdb; - -#define NAME_LENGTH 20 - -static unsigned total, collisions, failures; - -static BOOL test_one(struct cli_state *cli, const char *name) -{ - int fnum; - fstring shortname; - fstring name2; - NTSTATUS status; - TDB_DATA data; - - total++; - - fnum = cli_open(cli, name, O_RDWR|O_CREAT|O_EXCL, DENY_NONE); - if (fnum == -1) { - printf("open of %s failed (%s)\n", name, cli_errstr(cli)); - return False; - } - - if (!cli_close(cli, fnum)) { - printf("close of %s failed (%s)\n", name, cli_errstr(cli)); - return False; - } - - /* get the short name */ - status = cli_qpathinfo_alt_name(cli, name, shortname); - if (!NT_STATUS_IS_OK(status)) { - printf("query altname of %s failed (%s)\n", name, cli_errstr(cli)); - return False; - } - - snprintf(name2, sizeof(name2), "\\mangle_test\\%s", shortname); - if (!cli_unlink(cli, name2)) { - printf("unlink of %s (%s) failed (%s)\n", - name2, name, cli_errstr(cli)); - return False; - } - - /* recreate by short name */ - fnum = cli_open(cli, name2, O_RDWR|O_CREAT|O_EXCL, DENY_NONE); - if (fnum == -1) { - printf("open2 of %s failed (%s)\n", name2, cli_errstr(cli)); - return False; - } - if (!cli_close(cli, fnum)) { - printf("close of %s failed (%s)\n", name, cli_errstr(cli)); - return False; - } - - /* and unlink by long name */ - if (!cli_unlink(cli, name)) { - printf("unlink2 of %s (%s) failed (%s)\n", - name, name2, cli_errstr(cli)); - failures++; - cli_unlink(cli, name2); - return True; - } - - /* see if the short name is already in the tdb */ - data = tdb_fetch_by_string(tdb, shortname); - if (data.dptr) { - /* maybe its a duplicate long name? */ - if (strcasecmp(name, data.dptr) != 0) { - /* we have a collision */ - collisions++; - printf("Collision between %s and %s -> %s\n", - name, data.dptr, shortname); - } - free(data.dptr); - } else { - /* store it for later */ - tdb_store_by_string(tdb, shortname, name, strlen(name)+1); - } - - return True; -} - - -static void gen_name(char *name) -{ - const char *chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz._-$~..."; - unsigned max_idx = strlen(chars); - unsigned len; - int i; - char *p; - - fstrcpy(name, "\\mangle_test\\"); - p = name + strlen(name); - - len = 1 + random() % NAME_LENGTH; - - for (i=0;i