SMB Quota updates
[obnox/wireshark/wip.git] / packet-rpc.h
1 /* packet-rpc.h
2  *
3  * $Id: packet-rpc.h,v 1.32 2002/01/21 07:36:41 guy 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  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef __PACKET_RPC_H__
28 #define __PACKET_RPC_H__
29
30 #include <glib.h>
31 #include <epan/packet.h>
32 #include <epan/conversation.h>
33
34 #define EXTRACT_UINT(p,o)    pntohl(&p[o])
35
36 #define RPC_CALL 0
37 #define RPC_REPLY 1
38
39 #define AUTH_NULL 0
40 #define AUTH_UNIX 1
41 #define AUTH_SHORT 2
42 #define AUTH_DES 3
43 #define RPCSEC_GSS 6
44
45 #define MSG_ACCEPTED 0
46 #define MSG_DENIED 1
47
48 #define SUCCESS 0
49 #define PROG_UNAVAIL 1
50 #define PROG_MISMATCH 2
51 #define PROC_UNAVAIL 3
52 #define GARBAGE_ARGS 4
53
54 #define RPC_MISMATCH 0
55 #define AUTH_ERROR 1
56
57 #define AUTH_BADCRED 1
58 #define AUTH_REJECTEDCRED 2
59 #define AUTH_BADVERF 3
60 #define AUTH_REJECTEDVERF 4
61 #define AUTH_TOOWEAK 5
62 #define RPCSEC_GSSCREDPROB 13
63 #define RPCSEC_GSSCTXPROB 14
64
65 #define RPCSEC_GSS_DATA 0
66 #define RPCSEC_GSS_INIT 1
67 #define RPCSEC_GSS_CONTINUE_INIT 2
68 #define RPCSEC_GSS_DESTROY 3
69
70 #define RPCSEC_GSS_SVC_NONE 1
71 #define RPCSEC_GSS_SVC_INTEGRITY 2
72 #define RPCSEC_GSS_SVC_PRIVACY 3
73
74 #define AUTHDES_NAMEKIND_FULLNAME 0
75 #define AUTHDES_NAMEKIND_NICKNAME 1
76
77 extern value_string rpc_authgss_svc[];
78 typedef enum {
79         FLAVOR_UNKNOWN,         /* authentication flavor unknown */
80         FLAVOR_NOT_GSSAPI,      /* flavor isn't GSSAPI */
81         FLAVOR_GSSAPI_NO_INFO,  /* flavor is GSSAPI, procedure & service unknown */
82         FLAVOR_GSSAPI           /* flavor is GSSAPI, procedure & service known */
83 } flavor_t;
84
85 typedef struct _rpc_call_info_value {
86         guint32 req_num;        /* frame number of first request seen */
87         guint32 rep_num;        /* frame number of first reply seen */
88         guint32 prog;
89         guint32 vers;
90         guint32 proc;
91         guint32 xid;
92         flavor_t flavor;
93         guint32 gss_proc;
94         guint32 gss_svc;
95         struct _rpc_proc_info_value*    proc_info;
96         gboolean request;       /* Is this a request or not ?*/
97         nstime_t req_time;
98 } rpc_call_info_value;
99
100
101 typedef int (old_dissect_function_t)(const u_char* pd, int offset, frame_data* fd, proto_tree* tree);
102 typedef int (dissect_function_t)(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree);
103
104 typedef struct _old_vsff {
105         guint32 value;
106         gchar   *strptr;
107         old_dissect_function_t *dissect_call;
108         old_dissect_function_t *dissect_reply;
109 } old_vsff;
110
111 typedef struct _vsff {
112         guint32 value;
113         gchar   *strptr;
114         dissect_function_t *dissect_call;
115         dissect_function_t *dissect_reply;
116 } vsff;
117
118 extern const value_string rpc_auth_flavor[];
119
120 extern void old_rpc_init_proc_table(guint prog, guint vers, const old_vsff *proc_table);
121 extern void rpc_init_proc_table(guint prog, guint vers, const vsff *proc_table);
122 extern void rpc_init_prog(int proto, guint32 prog, int ett);
123 extern char *rpc_prog_name(guint32 prog);
124 extern char *rpc_proc_name(guint32 prog, guint32 vers, guint32 proc);
125
126 extern unsigned int rpc_roundup(unsigned int a);
127 extern int dissect_rpc_bool(tvbuff_t *tvb, packet_info *pinfo,
128         proto_tree *tree, int hfindex, int offset);
129 extern int dissect_rpc_string(tvbuff_t *tvb, packet_info *pinfo,
130         proto_tree *tree, int hfindex, int offset, char **string_buffer_ret);
131 extern int dissect_rpc_data(tvbuff_t *tvb, packet_info *pinfo,
132         proto_tree *tree, int hfindex, int offset);
133 extern int dissect_rpc_list(tvbuff_t *tvb, packet_info *pinfo,
134         proto_tree *tree, int offset, dissect_function_t *rpc_list_dissector);
135 extern int dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo,
136         proto_tree *tree, int offset, dissect_function_t *rpc_array_dissector,
137         int hfindex);
138 extern int dissect_rpc_uint32(tvbuff_t *tvb, packet_info *pinfo,
139         proto_tree *tree, int hfindex, int offset);
140 extern int dissect_rpc_uint64(tvbuff_t *tvb, packet_info *pinfo,
141         proto_tree *tree, int hfindex, int offset);
142
143 extern int dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo,
144         proto_tree *tree, int offset, int args_id, guint32 prog, guint32 vers,
145         guint32 proc);
146 extern int dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo,
147         proto_tree *tree, int offset, int result_id, int prog_id, int vers_id,
148         int proc_id);
149
150 #endif /* packet-rpc.h */
151