aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS6
-rw-r--r--Makefile.am3
-rw-r--r--Makefile.nmake3
-rw-r--r--packet-dcerpc-butc.c119
4 files changed, 126 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 69dd9bdbd6..437d78e807 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1386,12 +1386,12 @@ Solomon Peachy <pizza[AT]shaftnet.org> {
Jaime Fournier <jafour1[AT]yahoo.com> {
Handle DCE RPC connectionless CANCEL PDUs with no body
- DCE/RPC dissectors for RSEC_LOGIN, RS_ACCT, RS_ATTR, RS_MISC, RS_PGO,
- RS_REPLIST, RS_UNIX, RPRIV, ROVERRIDE, RS_REPADM,
+ DCE/RPC stub dissectors for RSEC_LOGIN, RS_ACCT, RS_ATTR, RS_MISC,
+ RS_PGO, RS_REPLIST, RS_UNIX, RPRIV, ROVERRIDE, RS_REPADM,
DTSSTIME_REQ, CDS_SOLICIT, CPRPC_SERVER, DTSPROVIDER,
UBIKDISK, UBIKVOTE, BOSSVR, FTSERVER, CDS_CLERKSERVER,
KRB5RPC, REP_PROC, SECIDMAP, TKN4INT, FLDB, AFS4INT,
- UPDATE
+ UPDATE, BUTC
}
Markus Steinmann <ms[AT]seh.de> {
diff --git a/Makefile.am b/Makefile.am
index fe7d3f8f9f..7792942d90 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
-# $Id: Makefile.am,v 1.640 2003/10/15 19:40:39 guy Exp $
+# $Id: Makefile.am,v 1.641 2003/10/22 02:03:44 sahlberg Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@@ -133,6 +133,7 @@ DISSECTOR_SRC = \
packet-dcerpc-atsvc.c \
packet-dcerpc-bossvr.c \
packet-dcerpc-browser.c \
+ packet-dcerpc-butc.c \
packet-dcerpc-cds_clerkserver.c \
packet-dcerpc-cds_solicit.c \
packet-dcerpc-conv.c \
diff --git a/Makefile.nmake b/Makefile.nmake
index c3b8bcdc99..811b76729f 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
-# $Id: Makefile.nmake,v 1.347 2003/10/10 21:31:46 guy Exp $
+# $Id: Makefile.nmake,v 1.348 2003/10/22 02:03:44 sahlberg Exp $
include config.nmake
include <win32.mak>
@@ -73,6 +73,7 @@ DISSECTOR_SRC = \
packet-dcerpc-atsvc.c \
packet-dcerpc-bossvr.c \
packet-dcerpc-browser.c \
+ packet-dcerpc-butc.c \
packet-dcerpc-cds_clerkserver.c \
packet-dcerpc-cds_solicit.c \
packet-dcerpc-conv.c \
diff --git a/packet-dcerpc-butc.c b/packet-dcerpc-butc.c
new file mode 100644
index 0000000000..a398b03b6f
--- /dev/null
+++ b/packet-dcerpc-butc.c
@@ -0,0 +1,119 @@
+/* packet-dcerpc-butc.c
+ * Routines for butc dissection
+ * Copyright 2002, Jaime Fournier <jafour1@yahoo.com>
+ * This information is based off the released idl files from opengroup.
+ * ftp://ftp.opengroup.org/pub/dce122/dce/src/file.tar.gz bubasics/butc.idl
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+
+#include <string.h>
+
+#include <glib.h>
+#include <epan/packet.h>
+#include "packet-dcerpc.h"
+
+static int proto_butc = -1;
+static int hf_butc_opnum = -1;
+
+
+static gint ett_butc = -1;
+
+
+static e_uuid_t uuid_butc = { 0x1d193c08, 0x000b, 0x11ca, { 0xba, 0x1d, 0x02, 0x60, 0x8c, 0x2e, 0xa9, 0x6e } };
+static guint16 ver_butc = 4;
+
+
+#define TC_DEFAULT_STACK_SIZE (150*1024) /* stack size for tc threads */
+#define TC_MAXGENNAMELEN 512 /* length of generic name */
+#define TC_MAXDUMPPATH 256 /* dump path names*/
+#define TC_MAXNAMELEN 128 /* name length */
+#define TC_MAXFORMATLEN 100 /*size of the format statement */
+#define TC_MAXHOSTLEN 128 /*for server/machine names */
+#define TC_MAXTAPELEN 256 /*max tape name allowed */
+#define TC_STAT_DONE 1 /* all done */
+#define TC_STAT_OPRWAIT 2 /* waiting for user interaction */
+#define TC_STAT_DUMP 4 /* true if dump, false if restore */
+#define TC_STAT_ABORTED 8 /* the operation was aborted */
+#define TC_STAT_ERROR 16 /* error ocuured in the operation */
+#define TSK_STAT_FIRST 0x1 /* get id of first task */
+#define TSK_STAT_END 0x2 /* no more tasks */
+#define TSK_STAT_NOTFOUND 0x4 /* couldn't find task id requested */
+
+#define TCOP_NONE 0
+#define TCOP_READLABEL 1
+#define TCOP_LABELTAPE 2
+#define TCOP_DUMP 3
+#define TCOP_RESTORE 4
+#define TCOP_SCANTAPE 5
+#define TCOP_SAVEDB 6
+#define TCOP_RESTOREDB 7
+#define TCOP_STATUS 8
+#define TCOP_SPARE 9
+
+
+static dcerpc_sub_dissector butc_dissectors[] = {
+ { 0, "PerformDump", NULL, NULL},
+ { 1, "PerformRestore", NULL, NULL},
+ { 2, "AbortDump", NULL, NULL},
+ { 3, "LabelTape", NULL, NULL},
+ { 4, "ReadLabel", NULL, NULL},
+ { 5, "ScanDumps", NULL, NULL},
+ { 6, "TCInfo", NULL, NULL},
+ { 7, "SaveDb", NULL, NULL},
+ { 8, "RestoreDb", NULL, NULL},
+ { 9, "EndStatus", NULL, NULL},
+ { 10, "GetStatus", NULL, NULL},
+ { 11, "RequestAbort", NULL, NULL},
+ { 12, "ScanStatus", NULL, NULL},
+ { 13, "GetServerInterfaces", NULL, NULL},
+ { 0, NULL, NULL, NULL }
+};
+
+void
+proto_register_butc (void)
+{
+ static hf_register_info hf[] = {
+ { &hf_butc_opnum,
+ { "Operation", "butc.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, "Operation", HFILL }},
+ };
+
+ static gint *ett[] = {
+ &ett_butc,
+ };
+ proto_butc = proto_register_protocol ("DCE/RPC BUTC", "BUTC", "butc");
+ proto_register_field_array (proto_butc, hf, array_length (hf));
+ proto_register_subtree_array (ett, array_length (ett));
+}
+
+void
+proto_reg_handoff_butc (void)
+{
+ /* Register the protocol as dcerpc */
+ dcerpc_init_uuid (proto_butc, ett_butc, &uuid_butc, ver_butc, butc_dissectors, hf_butc_opnum);
+}