Add endpoint talkers support for FDDI to ethereal and tethereal
[obnox/wireshark/wip.git] / packet-rpc.h
1 /* packet-rpc.h
2  *
3  * $Id: packet-rpc.h,v 1.42 2003/05/21 02:48:40 sharpe Exp $
4  *
5  * (c) 1999 Uwe Girlich
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifndef __PACKET_RPC_H__
27 #define __PACKET_RPC_H__
28
29 #include <glib.h>
30 #include <epan/packet.h>
31 #include <epan/conversation.h>
32
33 #define RPC_CALL 0
34 #define RPC_REPLY 1
35
36 #define AUTH_NULL 0
37 #define AUTH_UNIX 1
38 #define AUTH_SHORT 2
39 #define AUTH_DES 3
40 #define RPCSEC_GSS 6
41 #define AUTH_GSSAPI 300001
42
43 #define MSG_ACCEPTED 0
44 #define MSG_DENIED 1
45
46 #define SUCCESS 0
47 #define PROG_UNAVAIL 1
48 #define PROG_MISMATCH 2
49 #define PROC_UNAVAIL 3
50 #define GARBAGE_ARGS 4
51
52 #define RPC_MISMATCH 0
53 #define AUTH_ERROR 1
54
55 #define AUTH_BADCRED 1
56 #define AUTH_REJECTEDCRED 2
57 #define AUTH_BADVERF 3
58 #define AUTH_REJECTEDVERF 4
59 #define AUTH_TOOWEAK 5
60 #define RPCSEC_GSSCREDPROB 13
61 #define RPCSEC_GSSCTXPROB 14
62
63 #define RPCSEC_GSS_DATA 0
64 #define RPCSEC_GSS_INIT 1
65 #define RPCSEC_GSS_CONTINUE_INIT 2
66 #define RPCSEC_GSS_DESTROY 3
67
68 #define AUTH_GSSAPI_EXIT 0
69 #define AUTH_GSSAPI_INIT 1
70 #define AUTH_GSSAPI_CONTINUE_INIT 2
71 #define AUTH_GSSAPI_MSG 3
72 #define AUTH_GSSAPI_DESTROY 4
73
74 #define RPCSEC_GSS_SVC_NONE 1
75 #define RPCSEC_GSS_SVC_INTEGRITY 2
76 #define RPCSEC_GSS_SVC_PRIVACY 3
77
78 #define AUTHDES_NAMEKIND_FULLNAME 0
79 #define AUTHDES_NAMEKIND_NICKNAME 1
80
81 extern value_string rpc_authgss_svc[];
82 typedef enum {
83         FLAVOR_UNKNOWN,         /* authentication flavor unknown */
84         FLAVOR_NOT_GSSAPI,      /* flavor isn't GSSAPI */
85         FLAVOR_GSSAPI_NO_INFO,  /* flavor is GSSAPI, procedure & service unknown */
86         FLAVOR_GSSAPI,          /* flavor is GSSAPI, procedure & service known */
87         FLAVOR_AUTHGSSAPI,      /* AUTH_GSSAPI flavor */
88         FLAVOR_AUTHGSSAPI_MSG   /* AUTH_GSSAPI flavor, AUTH_GSSAPI message */
89 } flavor_t;
90
91 typedef struct _rpc_call_info_value {
92         guint32 req_num;        /* frame number of first request seen */
93         guint32 rep_num;        /* frame number of first reply seen */
94         guint32 prog;
95         guint32 vers;
96         guint32 proc;
97         guint32 xid;
98         flavor_t flavor;
99         guint32 gss_proc;
100         guint32 gss_svc;
101         struct _rpc_proc_info_value*    proc_info;
102         gboolean request;       /* Is this a request or not ?*/
103         nstime_t req_time;
104         void *private_data;
105 } rpc_call_info_value;
106
107
108 typedef int (dissect_function_t)(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree);
109
110 typedef struct _vsff {
111         guint32 value;
112         gchar   *strptr;
113         dissect_function_t *dissect_call;
114         dissect_function_t *dissect_reply;
115 } vsff;
116
117 extern const value_string rpc_auth_flavor[];
118
119 extern void rpc_init_proc_table(guint prog, guint vers, const vsff *proc_table,
120     int procedure_hf);
121 extern void rpc_init_prog(int proto, guint32 prog, int ett);
122 extern char *rpc_prog_name(guint32 prog);
123 extern char *rpc_proc_name(guint32 prog, guint32 vers, guint32 proc);
124
125 extern unsigned int rpc_roundup(unsigned int a);
126 extern int dissect_rpc_bool(tvbuff_t *tvb,
127         proto_tree *tree, int hfindex, int offset);
128 extern int dissect_rpc_string(tvbuff_t *tvb,
129         proto_tree *tree, int hfindex, int offset, char **string_buffer_ret);
130 int dissect_rpc_opaque_data(tvbuff_t *tvb, int offset,
131     proto_tree *tree,
132     packet_info *pinfo,
133     int hfindex,
134     gboolean fixed_length, guint32 length,
135     gboolean string_data, char **string_buffer_ret,
136     dissect_function_t *dissect_it);
137 extern int dissect_rpc_data(tvbuff_t *tvb,
138         proto_tree *tree, int hfindex, int offset);
139 extern int dissect_rpc_bytes(tvbuff_t *tvb,
140         proto_tree *tree, int hfindex, int offset, guint32 length,
141         gboolean string_data, char **string_buffer_ret);
142 extern int dissect_rpc_list(tvbuff_t *tvb, packet_info *pinfo,
143         proto_tree *tree, int offset, dissect_function_t *rpc_list_dissector);
144 extern int dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo,
145         proto_tree *tree, int offset, dissect_function_t *rpc_array_dissector,
146         int hfindex);
147 extern int dissect_rpc_uint32(tvbuff_t *tvb,
148         proto_tree *tree, int hfindex, int offset);
149 extern int dissect_rpc_uint64(tvbuff_t *tvb,
150         proto_tree *tree, int hfindex, int offset);
151
152 extern int dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo,
153         proto_tree *tree, int offset, int args_id, guint32 prog, guint32 vers,
154         guint32 proc);
155 extern int dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo,
156         proto_tree *tree, int offset, int result_id, int prog_id, int vers_id,
157         int proc_id);
158
159
160 typedef struct _rpc_prog_info_key {
161         guint32 prog;
162 } rpc_prog_info_key;
163
164 typedef struct _rpc_prog_info_value {
165         int proto;
166         int ett;
167         char* progname;
168         GArray *procedure_hfs;
169 } rpc_prog_info_value;
170
171 extern GHashTable *rpc_progs;
172
173 typedef struct _rpc_proc_info_key {
174         guint32 prog;
175         guint32 vers;
176         guint32 proc;
177 } rpc_proc_info_key;
178
179 typedef struct _rpc_proc_info_value {
180         gchar           *name;
181         dissect_function_t *dissect_call;
182         dissect_function_t *dissect_reply;
183 } rpc_proc_info_value;
184
185 extern GHashTable *rpc_procs;
186
187 #endif /* packet-rpc.h */
188