As per a suggestion by Olivier Biot, note that objects pointed to by
[obnox/wireshark/wip.git] / packet-rpc.h
index b1a3a4eecb08c628ffa35fab58f9bc8adb95e0d1..b01f2b469aad133ff5c2d18a5871d3b0168403ea 100644 (file)
@@ -1,24 +1,23 @@
 /* packet-rpc.h
  *
- * $Id: packet-rpc.h,v 1.26 2001/02/09 07:59:00 guy Exp $
+ * $Id: packet-rpc.h,v 1.43 2003/09/05 10:26:43 sahlberg Exp $
  *
  * (c) 1999 Uwe Girlich
  *
  * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * 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.
 #define __PACKET_RPC_H__
 
 #include <glib.h>
-#include "packet.h"
-#include "conversation.h"
-
-#define EXTRACT_UINT(p,o)    pntohl(&p[o])
+#include <epan/packet.h>
+#include <epan/conversation.h>
 
 #define RPC_CALL 0
 #define RPC_REPLY 1
@@ -41,6 +38,7 @@
 #define AUTH_SHORT 2
 #define AUTH_DES 3
 #define RPCSEC_GSS 6
+#define AUTH_GSSAPI 300001
 
 #define MSG_ACCEPTED 0
 #define MSG_DENIED 1
 #define RPCSEC_GSS_CONTINUE_INIT 2
 #define RPCSEC_GSS_DESTROY 3
 
+#define        AUTH_GSSAPI_EXIT 0
+#define        AUTH_GSSAPI_INIT 1
+#define        AUTH_GSSAPI_CONTINUE_INIT 2
+#define        AUTH_GSSAPI_MSG 3
+#define        AUTH_GSSAPI_DESTROY 4
+
 #define RPCSEC_GSS_SVC_NONE 1
 #define RPCSEC_GSS_SVC_INTEGRITY 2
 #define RPCSEC_GSS_SVC_PRIVACY 3
 
-typedef int (old_dissect_function_t)(const u_char* pd, int offset, frame_data* fd, proto_tree* tree);
-typedef int (dissect_function_t)(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree);
+#define AUTHDES_NAMEKIND_FULLNAME 0
+#define AUTHDES_NAMEKIND_NICKNAME 1
+
+extern value_string rpc_authgss_svc[];
+typedef enum {
+       FLAVOR_UNKNOWN,         /* authentication flavor unknown */
+       FLAVOR_NOT_GSSAPI,      /* flavor isn't GSSAPI */
+       FLAVOR_GSSAPI_NO_INFO,  /* flavor is GSSAPI, procedure & service unknown */
+       FLAVOR_GSSAPI,          /* flavor is GSSAPI, procedure & service known */
+       FLAVOR_AUTHGSSAPI,      /* AUTH_GSSAPI flavor */
+       FLAVOR_AUTHGSSAPI_MSG   /* AUTH_GSSAPI flavor, AUTH_GSSAPI message */
+} flavor_t;
+
+typedef struct _rpc_call_info_value {
+       guint32 req_num;        /* frame number of first request seen */
+       guint32 rep_num;        /* frame number of first reply seen */
+       guint32 prog;
+       guint32 vers;
+       guint32 proc;
+       guint32 xid;
+       flavor_t flavor;
+       guint32 gss_proc;
+       guint32 gss_svc;
+       struct _rpc_proc_info_value*    proc_info;
+       gboolean request;       /* Is this a request or not ?*/
+       nstime_t req_time;
+       void *private_data;
+} rpc_call_info_value;
 
-typedef struct _old_vsff {
-       guint32 value;
-       gchar   *strptr;
-       old_dissect_function_t *dissect_call;
-       old_dissect_function_t *dissect_reply;
-} old_vsff;
+
+typedef int (dissect_function_t)(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree);
 
 typedef struct _vsff {
        guint32 value;
@@ -90,36 +116,38 @@ typedef struct _vsff {
 
 extern const value_string rpc_auth_flavor[];
 
-extern void old_rpc_init_proc_table(guint prog, guint vers, const old_vsff *proc_table);
-extern void rpc_init_proc_table(guint prog, guint vers, const vsff *proc_table);
+extern void rpc_init_proc_table(guint prog, guint vers, const vsff *proc_table,
+    int procedure_hf);
 extern void rpc_init_prog(int proto, guint32 prog, int ett);
 extern char *rpc_prog_name(guint32 prog);
 extern char *rpc_proc_name(guint32 prog, guint32 vers, guint32 proc);
+extern int rpc_prog_hf(guint32 prog, guint32 vers);
 
 extern unsigned int rpc_roundup(unsigned int a);
-extern int dissect_rpc_bool(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, int hfindex);
-extern int dissect_rpc_bool_tvb(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_bool(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
-extern int dissect_rpc_string(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, int hfindex, char **string_buffer_ret);
-extern int dissect_rpc_string_tvb(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_string(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset, char **string_buffer_ret);
-extern int dissect_rpc_data(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, int hfindex);
-extern int dissect_rpc_data_tvb(tvbuff_t *tvb, packet_info *pinfo,
+int dissect_rpc_opaque_data(tvbuff_t *tvb, int offset,
+    proto_tree *tree,
+    packet_info *pinfo,
+    int hfindex,
+    gboolean fixed_length, guint32 length,
+    gboolean string_data, char **string_buffer_ret,
+    dissect_function_t *dissect_it);
+extern int dissect_rpc_data(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
-extern int dissect_rpc_list(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, old_dissect_function_t *rpc_list_dissector);
-extern int dissect_rpc_list_tvb(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_bytes(tvbuff_t *tvb,
+       proto_tree *tree, int hfindex, int offset, guint32 length,
+       gboolean string_data, char **string_buffer_ret);
+extern int dissect_rpc_list(tvbuff_t *tvb, packet_info *pinfo,
        proto_tree *tree, int offset, dissect_function_t *rpc_list_dissector);
-extern int dissect_rpc_uint32(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, char* name);
-extern int dissect_rpc_uint32_tvb(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo,
+       proto_tree *tree, int offset, dissect_function_t *rpc_array_dissector,
+       int hfindex);
+extern int dissect_rpc_uint32(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
-extern int dissect_rpc_uint64(const u_char *pd, int offset, frame_data *fd,
-       proto_tree *tree, char* name);
-extern int dissect_rpc_uint64_tvb(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_uint64(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
 
 extern int dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo,
@@ -129,5 +157,33 @@ extern int dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo,
        proto_tree *tree, int offset, int result_id, int prog_id, int vers_id,
        int proc_id);
 
+
+typedef struct _rpc_prog_info_key {
+       guint32 prog;
+} rpc_prog_info_key;
+
+typedef struct _rpc_prog_info_value {
+       int proto;
+       int ett;
+       char* progname;
+       GArray *procedure_hfs;
+} rpc_prog_info_value;
+
+extern GHashTable *rpc_progs;
+
+typedef struct _rpc_proc_info_key {
+       guint32 prog;
+       guint32 vers;
+       guint32 proc;
+} rpc_proc_info_key;
+
+typedef struct _rpc_proc_info_value {
+       gchar           *name;
+       dissect_function_t *dissect_call;
+       dissect_function_t *dissect_reply;
+} rpc_proc_info_value;
+
+extern GHashTable *rpc_procs;
+
 #endif /* packet-rpc.h */