- Implement ProtocolResetComplete
[reactos.git] / dll / win32 / rpcrt4 / rpc_defs.h
1 /*
2 * RPC definitions
3 *
4 * Copyright 2001-2002 Ove Kåven, TransGaming Technologies
5 * Copyright 2004 Filip Navara
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #ifndef __WINE_RPC_DEFS_H
23 #define __WINE_RPC_DEFS_H
24
25 /* info from http://www.microsoft.com/msj/0398/dcomtextfigs.htm */
26
27 typedef struct
28 {
29 unsigned char rpc_ver; /* RPC major version (5) */
30 unsigned char rpc_ver_minor; /* RPC minor version (0) */
31 unsigned char ptype; /* Packet type (PKT_*) */
32 unsigned char flags;
33 unsigned char drep[4]; /* Data representation */
34 unsigned short frag_len; /* Data size in bytes including header and tail. */
35 unsigned short auth_len; /* Authentication length */
36 unsigned long call_id; /* Call identifier. */
37 } RpcPktCommonHdr;
38
39 typedef struct
40 {
41 RpcPktCommonHdr common;
42 unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */
43 unsigned short context_id; /* Presentation context identifier */
44 unsigned short opnum;
45 } RpcPktRequestHdr;
46
47 typedef struct
48 {
49 RpcPktCommonHdr common;
50 unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */
51 unsigned short context_id; /* Presentation context identifier */
52 unsigned char cancel_count;
53 unsigned char reserved;
54 } RpcPktResponseHdr;
55
56 typedef struct
57 {
58 RpcPktCommonHdr common;
59 unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */
60 unsigned short context_id; /* Presentation context identifier */
61 unsigned char cancel_count; /* Received cancel count */
62 unsigned char reserved; /* Force alignment! */
63 unsigned long status; /* Runtime fault code (RPC_STATUS) */
64 unsigned long reserved2;
65 } RpcPktFaultHdr;
66
67 typedef struct
68 {
69 RpcPktCommonHdr common;
70 unsigned short max_tsize; /* Maximum transmission fragment size */
71 unsigned short max_rsize; /* Maximum receive fragment size */
72 unsigned long assoc_gid; /* Associated group id */
73 unsigned char num_elements; /* Number of elements */
74 unsigned char padding[3]; /* Force alignment! */
75 unsigned short context_id; /* Presentation context identifier */
76 unsigned char num_syntaxes; /* Number of syntaxes */
77 RPC_SYNTAX_IDENTIFIER abstract;
78 RPC_SYNTAX_IDENTIFIER transfer;
79 } RpcPktBindHdr;
80
81 #include "pshpack1.h"
82 typedef struct
83 {
84 unsigned short length; /* Length of the string including null terminator */
85 char string[1]; /* String data in single byte, null terminated form */
86 } RpcAddressString;
87 #include "poppack.h"
88
89 typedef struct
90 {
91 unsigned char num_results; /* Number of results */
92 unsigned char reserved[3]; /* Force alignment! */
93 struct {
94 unsigned short result;
95 unsigned short reason;
96 } results[1];
97 } RpcResults;
98
99 typedef struct
100 {
101 RpcPktCommonHdr common;
102 unsigned short max_tsize; /* Maximum transmission fragment size */
103 unsigned short max_rsize; /* Maximum receive fragment size */
104 unsigned long assoc_gid; /* Associated group id */
105 /*
106 * Following this header are these fields:
107 * RpcAddressString server_address;
108 * [0 - 3 bytes of padding so that results is 4-byte aligned]
109 * RpcResults results;
110 * RPC_SYNTAX_IDENTIFIER transfer;
111 */
112 } RpcPktBindAckHdr;
113
114 typedef struct
115 {
116 RpcPktCommonHdr common;
117 unsigned short reject_reason;
118 unsigned char protocols_count;
119 struct {
120 unsigned char rpc_ver;
121 unsigned char rpc_ver_minor;
122 } protocols[1];
123 } RpcPktBindNAckHdr;
124
125 /* Union representing all possible packet headers */
126 typedef union
127 {
128 RpcPktCommonHdr common;
129 RpcPktRequestHdr request;
130 RpcPktResponseHdr response;
131 RpcPktFaultHdr fault;
132 RpcPktBindHdr bind;
133 RpcPktBindAckHdr bind_ack;
134 RpcPktBindNAckHdr bind_nack;
135 } RpcPktHdr;
136
137 typedef struct
138 {
139 unsigned char auth_type; /* authentication scheme in use */
140 unsigned char auth_level; /* RPC_C_AUTHN_LEVEL* */
141 unsigned char auth_pad_length; /* length of padding to restore n % 4 alignment */
142 unsigned char auth_reserved; /* reserved, must be zero */
143 unsigned long auth_context_id; /* unique value for the authenticated connection */
144 } RpcAuthVerifier;
145
146 #define RPC_AUTH_VERIFIER_LEN(common_hdr) \
147 ((common_hdr)->auth_len ? (common_hdr)->auth_len + sizeof(RpcAuthVerifier) : 0)
148
149 #define RPC_VER_MAJOR 5
150 #define RPC_VER_MINOR 0
151
152 #define RPC_FLG_FIRST 1
153 #define RPC_FLG_LAST 2
154 #define RPC_FLG_OBJECT_UUID 0x80
155
156 #define RPC_MIN_PACKET_SIZE 0x1000
157 #define RPC_MAX_PACKET_SIZE 0x16D0
158
159 #define PKT_REQUEST 0
160 #define PKT_PING 1
161 #define PKT_RESPONSE 2
162 #define PKT_FAULT 3
163 #define PKT_WORKING 4
164 #define PKT_NOCALL 5
165 #define PKT_REJECT 6
166 #define PKT_ACK 7
167 #define PKT_CL_CANCEL 8
168 #define PKT_FACK 9
169 #define PKT_CANCEL_ACK 10
170 #define PKT_BIND 11
171 #define PKT_BIND_ACK 12
172 #define PKT_BIND_NACK 13
173 #define PKT_ALTER_CONTEXT 14
174 #define PKT_ALTER_CONTEXT_RESP 15
175 #define PKT_AUTH3 16
176 #define PKT_SHUTDOWN 17
177 #define PKT_CO_CANCEL 18
178 #define PKT_ORPHANED 19
179
180 #define RESULT_ACCEPT 0
181 #define RESULT_USER_REJECTION 1
182 #define RESULT_PROVIDER_REJECTION 2
183
184 #define REASON_NONE 0
185 #define REASON_ABSTRACT_SYNTAX_NOT_SUPPORTED 1
186 #define REASON_TRANSFER_SYNTAXES_NOT_SUPPORTED 2
187 #define REASON_LOCAL_LIMIT_EXCEEDED 3
188
189 #define REJECT_REASON_NOT_SPECIFIED 0
190 #define REJECT_TEMPORARY_CONGESTION 1
191 #define REJECT_LOCAL_LIMIT_EXCEEDED 2
192 #define REJECT_CALLED_PADDR_UNKNOWN 3 /* not used */
193 #define REJECT_PROTOCOL_VERSION_NOT_SUPPORTED 4
194 #define REJECT_DEFAULT_CONTEXT_NOT_SUPPORTED 5 /* not used */
195 #define REJECT_USER_DATA_NOT_READABLE 6 /* not used */
196 #define REJECT_NO_PSAP_AVAILABLE 7 /* not used */
197 #define REJECT_UNKNOWN_AUTHN_SERVICE 8
198 #define REJECT_INVALID_CHECKSUM 9
199
200 #define NCADG_IP_UDP 0x08
201 #define NCACN_IP_TCP 0x07
202 #define NCADG_IPX 0x0E
203 #define NCACN_SPX 0x0C
204 #define NCACN_NB_NB 0x12
205 #define NCACN_NB_IPX 0x0D
206 #define NCACN_DNET_NSP 0x04
207 #define NCACN_HTTP 0x1F
208
209 /* FreeDCE: TWR_C_FLR_PROT_ID_IP */
210 #define TWR_IP 0x09
211
212 #endif /* __WINE_RPC_DEFS_H */