4 * Copyright 2001-2002 Ove Kåven, TransGaming Technologies
5 * Copyright 2004 Filip Navara
6 * Copyright 2006 CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
36 #include "wine/debug.h"
38 #include "rpc_binding.h"
40 #include "rpc_message.h"
41 #include "ncastatus.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(rpc
);
45 /* note: the DCE/RPC spec says the alignment amount should be 4, but
46 * MS/RPC servers seem to always use 16 */
47 #define AUTH_ALIGNMENT 16
49 /* gets the amount needed to round a value up to the specified alignment */
50 #define ROUND_UP_AMOUNT(value, alignment) \
51 (((alignment) - (((value) % (alignment)))) % (alignment))
52 #define ROUND_UP(value, alignment) (((value) + ((alignment) - 1)) & ~((alignment)-1))
54 enum secure_packet_direction
60 static RPC_STATUS
I_RpcReAllocateBuffer(PRPC_MESSAGE pMsg
);
62 DWORD
RPCRT4_GetHeaderSize(const RpcPktHdr
*Header
)
64 static const DWORD header_sizes
[] = {
65 sizeof(Header
->request
), 0, sizeof(Header
->response
),
66 sizeof(Header
->fault
), 0, 0, 0, 0, 0, 0, 0, sizeof(Header
->bind
),
67 sizeof(Header
->bind_ack
), sizeof(Header
->bind_nack
),
68 0, 0, 0, 0, 0, 0, sizeof(Header
->http
)
72 if (Header
->common
.ptype
< sizeof(header_sizes
) / sizeof(header_sizes
[0])) {
73 ret
= header_sizes
[Header
->common
.ptype
];
75 FIXME("unhandled packet type\n");
76 if (Header
->common
.flags
& RPC_FLG_OBJECT_UUID
)
79 WARN("invalid packet type %u\n", Header
->common
.ptype
);
85 static int packet_has_body(const RpcPktHdr
*Header
)
87 return (Header
->common
.ptype
== PKT_FAULT
) ||
88 (Header
->common
.ptype
== PKT_REQUEST
) ||
89 (Header
->common
.ptype
== PKT_RESPONSE
);
92 static int packet_has_auth_verifier(const RpcPktHdr
*Header
)
94 return !(Header
->common
.ptype
== PKT_BIND_NACK
) &&
95 !(Header
->common
.ptype
== PKT_SHUTDOWN
);
98 static VOID
RPCRT4_BuildCommonHeader(RpcPktHdr
*Header
, unsigned char PacketType
,
99 ULONG DataRepresentation
)
101 Header
->common
.rpc_ver
= RPC_VER_MAJOR
;
102 Header
->common
.rpc_ver_minor
= RPC_VER_MINOR
;
103 Header
->common
.ptype
= PacketType
;
104 Header
->common
.drep
[0] = LOBYTE(LOWORD(DataRepresentation
));
105 Header
->common
.drep
[1] = HIBYTE(LOWORD(DataRepresentation
));
106 Header
->common
.drep
[2] = LOBYTE(HIWORD(DataRepresentation
));
107 Header
->common
.drep
[3] = HIBYTE(HIWORD(DataRepresentation
));
108 Header
->common
.auth_len
= 0;
109 Header
->common
.call_id
= 1;
110 Header
->common
.flags
= 0;
111 /* Flags and fragment length are computed in RPCRT4_Send. */
114 static RpcPktHdr
*RPCRT4_BuildRequestHeader(ULONG DataRepresentation
,
116 unsigned short ProcNum
,
123 has_object
= (ObjectUuid
!= NULL
&& !UuidIsNil(ObjectUuid
, &status
));
124 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
125 sizeof(header
->request
) + (has_object
? sizeof(UUID
) : 0));
126 if (header
== NULL
) {
130 RPCRT4_BuildCommonHeader(header
, PKT_REQUEST
, DataRepresentation
);
131 header
->common
.frag_len
= sizeof(header
->request
);
132 header
->request
.alloc_hint
= BufferLength
;
133 header
->request
.context_id
= 0;
134 header
->request
.opnum
= ProcNum
;
136 header
->common
.flags
|= RPC_FLG_OBJECT_UUID
;
137 header
->common
.frag_len
+= sizeof(UUID
);
138 memcpy(&header
->request
+ 1, ObjectUuid
, sizeof(UUID
));
144 RpcPktHdr
*RPCRT4_BuildResponseHeader(ULONG DataRepresentation
, ULONG BufferLength
)
148 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(header
->response
));
149 if (header
== NULL
) {
153 RPCRT4_BuildCommonHeader(header
, PKT_RESPONSE
, DataRepresentation
);
154 header
->common
.frag_len
= sizeof(header
->response
);
155 header
->response
.alloc_hint
= BufferLength
;
160 RpcPktHdr
*RPCRT4_BuildFaultHeader(ULONG DataRepresentation
, RPC_STATUS Status
)
164 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(header
->fault
));
165 if (header
== NULL
) {
169 RPCRT4_BuildCommonHeader(header
, PKT_FAULT
, DataRepresentation
);
170 header
->common
.frag_len
= sizeof(header
->fault
);
171 header
->fault
.status
= Status
;
176 RpcPktHdr
*RPCRT4_BuildBindHeader(ULONG DataRepresentation
,
177 unsigned short MaxTransmissionSize
,
178 unsigned short MaxReceiveSize
,
180 const RPC_SYNTAX_IDENTIFIER
*AbstractId
,
181 const RPC_SYNTAX_IDENTIFIER
*TransferId
)
185 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(header
->bind
));
186 if (header
== NULL
) {
190 RPCRT4_BuildCommonHeader(header
, PKT_BIND
, DataRepresentation
);
191 header
->common
.frag_len
= sizeof(header
->bind
);
192 header
->bind
.max_tsize
= MaxTransmissionSize
;
193 header
->bind
.max_rsize
= MaxReceiveSize
;
194 header
->bind
.assoc_gid
= AssocGroupId
;
195 header
->bind
.num_elements
= 1;
196 header
->bind
.num_syntaxes
= 1;
197 header
->bind
.abstract
= *AbstractId
;
198 header
->bind
.transfer
= *TransferId
;
203 static RpcPktHdr
*RPCRT4_BuildAuthHeader(ULONG DataRepresentation
)
207 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
208 sizeof(header
->common
) + 12);
212 RPCRT4_BuildCommonHeader(header
, PKT_AUTH3
, DataRepresentation
);
213 header
->common
.frag_len
= 0x14;
214 header
->common
.auth_len
= 0;
219 RpcPktHdr
*RPCRT4_BuildBindNackHeader(ULONG DataRepresentation
,
220 unsigned char RpcVersion
,
221 unsigned char RpcVersionMinor
)
225 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(header
->bind_nack
));
226 if (header
== NULL
) {
230 RPCRT4_BuildCommonHeader(header
, PKT_BIND_NACK
, DataRepresentation
);
231 header
->common
.frag_len
= sizeof(header
->bind_nack
);
232 header
->bind_nack
.reject_reason
= REJECT_REASON_NOT_SPECIFIED
;
233 header
->bind_nack
.protocols_count
= 1;
234 header
->bind_nack
.protocols
[0].rpc_ver
= RpcVersion
;
235 header
->bind_nack
.protocols
[0].rpc_ver_minor
= RpcVersionMinor
;
240 RpcPktHdr
*RPCRT4_BuildBindAckHeader(ULONG DataRepresentation
,
241 unsigned short MaxTransmissionSize
,
242 unsigned short MaxReceiveSize
,
244 LPCSTR ServerAddress
,
245 unsigned short Result
,
246 unsigned short Reason
,
247 const RPC_SYNTAX_IDENTIFIER
*TransferId
)
251 RpcAddressString
*server_address
;
253 RPC_SYNTAX_IDENTIFIER
*transfer_id
;
255 header_size
= sizeof(header
->bind_ack
) +
256 ROUND_UP(FIELD_OFFSET(RpcAddressString
, string
[strlen(ServerAddress
) + 1]), 4) +
258 sizeof(RPC_SYNTAX_IDENTIFIER
);
260 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, header_size
);
261 if (header
== NULL
) {
265 RPCRT4_BuildCommonHeader(header
, PKT_BIND_ACK
, DataRepresentation
);
266 header
->common
.frag_len
= header_size
;
267 header
->bind_ack
.max_tsize
= MaxTransmissionSize
;
268 header
->bind_ack
.max_rsize
= MaxReceiveSize
;
269 header
->bind_ack
.assoc_gid
= AssocGroupId
;
270 server_address
= (RpcAddressString
*)(&header
->bind_ack
+ 1);
271 server_address
->length
= strlen(ServerAddress
) + 1;
272 strcpy(server_address
->string
, ServerAddress
);
273 /* results is 4-byte aligned */
274 results
= (RpcResults
*)((ULONG_PTR
)server_address
+ ROUND_UP(FIELD_OFFSET(RpcAddressString
, string
[server_address
->length
]), 4));
275 results
->num_results
= 1;
276 results
->results
[0].result
= Result
;
277 results
->results
[0].reason
= Reason
;
278 transfer_id
= (RPC_SYNTAX_IDENTIFIER
*)(results
+ 1);
279 *transfer_id
= *TransferId
;
284 RpcPktHdr
*RPCRT4_BuildHttpHeader(ULONG DataRepresentation
,
285 unsigned short flags
,
286 unsigned short num_data_items
,
287 unsigned int payload_size
)
291 header
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(header
->http
) + payload_size
);
292 if (header
== NULL
) {
293 ERR("failed to allocate memory\n");
297 RPCRT4_BuildCommonHeader(header
, PKT_HTTP
, DataRepresentation
);
298 /* since the packet isn't current sent using RPCRT4_Send, set the flags
300 header
->common
.flags
= RPC_FLG_FIRST
|RPC_FLG_LAST
;
301 header
->common
.call_id
= 0;
302 header
->common
.frag_len
= sizeof(header
->http
) + payload_size
;
303 header
->http
.flags
= flags
;
304 header
->http
.num_data_items
= num_data_items
;
309 #define WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload, type, value) \
311 *(unsigned int *)(payload) = (type); \
313 *(unsigned int *)(payload) = (value); \
317 #define WRITE_HTTP_PAYLOAD_FIELD_UUID(payload, type, uuid) \
319 *(unsigned int *)(payload) = (type); \
321 *(UUID *)(payload) = (uuid); \
322 (payload) += sizeof(UUID); \
325 #define WRITE_HTTP_PAYLOAD_FIELD_FLOW_CONTROL(payload, bytes_transmitted, flow_control_increment, uuid) \
327 *(unsigned int *)(payload) = 0x00000001; \
329 *(unsigned int *)(payload) = (bytes_transmitted); \
331 *(unsigned int *)(payload) = (flow_control_increment); \
333 *(UUID *)(payload) = (uuid); \
334 (payload) += sizeof(UUID); \
337 RpcPktHdr
*RPCRT4_BuildHttpConnectHeader(unsigned short flags
, int out_pipe
,
338 const UUID
*connection_uuid
,
339 const UUID
*pipe_uuid
,
340 const UUID
*association_uuid
)
346 size
= 8 + 4 + sizeof(UUID
) + 4 + sizeof(UUID
) + 8;
348 size
+= 8 + 4 + sizeof(UUID
);
350 header
= RPCRT4_BuildHttpHeader(NDR_LOCAL_DATA_REPRESENTATION
, flags
,
351 out_pipe
? 4 : 6, size
);
352 if (!header
) return NULL
;
353 payload
= (char *)(&header
->http
+1);
355 /* FIXME: what does this part of the payload do? */
356 WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload
, 0x00000006, 0x00000001);
358 WRITE_HTTP_PAYLOAD_FIELD_UUID(payload
, 0x00000003, *connection_uuid
);
359 WRITE_HTTP_PAYLOAD_FIELD_UUID(payload
, 0x00000003, *pipe_uuid
);
362 /* FIXME: what does this part of the payload do? */
363 WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload
, 0x00000000, 0x00010000);
366 /* FIXME: what does this part of the payload do? */
367 WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload
, 0x00000004, 0x40000000);
368 /* FIXME: what does this part of the payload do? */
369 WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload
, 0x00000005, 0x000493e0);
371 WRITE_HTTP_PAYLOAD_FIELD_UUID(payload
, 0x0000000c, *association_uuid
);
377 RpcPktHdr
*RPCRT4_BuildHttpFlowControlHeader(BOOL server
, ULONG bytes_transmitted
,
378 ULONG flow_control_increment
,
379 const UUID
*pipe_uuid
)
384 header
= RPCRT4_BuildHttpHeader(NDR_LOCAL_DATA_REPRESENTATION
, 0x2, 2,
385 5 * sizeof(ULONG
) + sizeof(UUID
));
386 if (!header
) return NULL
;
387 payload
= (char *)(&header
->http
+1);
389 WRITE_HTTP_PAYLOAD_FIELD_UINT32(payload
, 0x0000000d, (server
? 0x0 : 0x3));
391 WRITE_HTTP_PAYLOAD_FIELD_FLOW_CONTROL(payload
, bytes_transmitted
,
392 flow_control_increment
, *pipe_uuid
);
396 VOID
RPCRT4_FreeHeader(RpcPktHdr
*Header
)
398 HeapFree(GetProcessHeap(), 0, Header
);
401 NCA_STATUS
RPC2NCA_STATUS(RPC_STATUS status
)
405 case ERROR_INVALID_HANDLE
: return NCA_S_FAULT_CONTEXT_MISMATCH
;
406 case ERROR_OUTOFMEMORY
: return NCA_S_FAULT_REMOTE_NO_MEMORY
;
407 case RPC_S_NOT_LISTENING
: return NCA_S_SERVER_TOO_BUSY
;
408 case RPC_S_UNKNOWN_IF
: return NCA_S_UNK_IF
;
409 case RPC_S_SERVER_TOO_BUSY
: return NCA_S_SERVER_TOO_BUSY
;
410 case RPC_S_CALL_FAILED
: return NCA_S_FAULT_UNSPEC
;
411 case RPC_S_CALL_FAILED_DNE
: return NCA_S_MANAGER_NOT_ENTERED
;
412 case RPC_S_PROTOCOL_ERROR
: return NCA_S_PROTO_ERROR
;
413 case RPC_S_UNSUPPORTED_TYPE
: return NCA_S_UNSUPPORTED_TYPE
;
414 case RPC_S_INVALID_TAG
: return NCA_S_FAULT_INVALID_TAG
;
415 case RPC_S_INVALID_BOUND
: return NCA_S_FAULT_INVALID_BOUND
;
416 case RPC_S_PROCNUM_OUT_OF_RANGE
: return NCA_S_OP_RNG_ERROR
;
417 case RPC_X_SS_HANDLES_MISMATCH
: return NCA_S_FAULT_CONTEXT_MISMATCH
;
418 case RPC_S_CALL_CANCELLED
: return NCA_S_FAULT_CANCEL
;
419 case RPC_S_COMM_FAILURE
: return NCA_S_COMM_FAILURE
;
420 case RPC_X_WRONG_PIPE_ORDER
: return NCA_S_FAULT_PIPE_ORDER
;
421 case RPC_X_PIPE_CLOSED
: return NCA_S_FAULT_PIPE_CLOSED
;
422 case RPC_X_PIPE_DISCIPLINE_ERROR
: return NCA_S_FAULT_PIPE_DISCIPLINE
;
423 case RPC_X_PIPE_EMPTY
: return NCA_S_FAULT_PIPE_EMPTY
;
424 case STATUS_FLOAT_DIVIDE_BY_ZERO
: return NCA_S_FAULT_FP_DIV_ZERO
;
425 case STATUS_FLOAT_INVALID_OPERATION
: return NCA_S_FAULT_FP_ERROR
;
426 case STATUS_FLOAT_OVERFLOW
: return NCA_S_FAULT_FP_OVERFLOW
;
427 case STATUS_FLOAT_UNDERFLOW
: return NCA_S_FAULT_FP_UNDERFLOW
;
428 case STATUS_INTEGER_DIVIDE_BY_ZERO
: return NCA_S_FAULT_INT_DIV_BY_ZERO
;
429 case STATUS_INTEGER_OVERFLOW
: return NCA_S_FAULT_INT_OVERFLOW
;
430 default: return status
;
434 static RPC_STATUS
NCA2RPC_STATUS(NCA_STATUS status
)
438 case NCA_S_COMM_FAILURE
: return RPC_S_COMM_FAILURE
;
439 case NCA_S_OP_RNG_ERROR
: return RPC_S_PROCNUM_OUT_OF_RANGE
;
440 case NCA_S_UNK_IF
: return RPC_S_UNKNOWN_IF
;
441 case NCA_S_YOU_CRASHED
: return RPC_S_CALL_FAILED
;
442 case NCA_S_PROTO_ERROR
: return RPC_S_PROTOCOL_ERROR
;
443 case NCA_S_OUT_ARGS_TOO_BIG
: return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
444 case NCA_S_SERVER_TOO_BUSY
: return RPC_S_SERVER_TOO_BUSY
;
445 case NCA_S_UNSUPPORTED_TYPE
: return RPC_S_UNSUPPORTED_TYPE
;
446 case NCA_S_FAULT_INT_DIV_BY_ZERO
: return RPC_S_ZERO_DIVIDE
;
447 case NCA_S_FAULT_ADDR_ERROR
: return RPC_S_ADDRESS_ERROR
;
448 case NCA_S_FAULT_FP_DIV_ZERO
: return RPC_S_FP_DIV_ZERO
;
449 case NCA_S_FAULT_FP_UNDERFLOW
: return RPC_S_FP_UNDERFLOW
;
450 case NCA_S_FAULT_FP_OVERFLOW
: return RPC_S_FP_OVERFLOW
;
451 case NCA_S_FAULT_INVALID_TAG
: return RPC_S_INVALID_TAG
;
452 case NCA_S_FAULT_INVALID_BOUND
: return RPC_S_INVALID_BOUND
;
453 case NCA_S_RPC_VERSION_MISMATCH
: return RPC_S_PROTOCOL_ERROR
;
454 case NCA_S_UNSPEC_REJECT
: return RPC_S_CALL_FAILED_DNE
;
455 case NCA_S_BAD_ACTID
: return RPC_S_CALL_FAILED_DNE
;
456 case NCA_S_WHO_ARE_YOU_FAILED
: return RPC_S_CALL_FAILED
;
457 case NCA_S_MANAGER_NOT_ENTERED
: return RPC_S_CALL_FAILED_DNE
;
458 case NCA_S_FAULT_CANCEL
: return RPC_S_CALL_CANCELLED
;
459 case NCA_S_FAULT_ILL_INST
: return RPC_S_ADDRESS_ERROR
;
460 case NCA_S_FAULT_FP_ERROR
: return RPC_S_FP_OVERFLOW
;
461 case NCA_S_FAULT_INT_OVERFLOW
: return RPC_S_ADDRESS_ERROR
;
462 case NCA_S_FAULT_UNSPEC
: return RPC_S_CALL_FAILED
;
463 case NCA_S_FAULT_PIPE_EMPTY
: return RPC_X_PIPE_EMPTY
;
464 case NCA_S_FAULT_PIPE_CLOSED
: return RPC_X_PIPE_CLOSED
;
465 case NCA_S_FAULT_PIPE_ORDER
: return RPC_X_WRONG_PIPE_ORDER
;
466 case NCA_S_FAULT_PIPE_DISCIPLINE
: return RPC_X_PIPE_DISCIPLINE_ERROR
;
467 case NCA_S_FAULT_PIPE_COMM_ERROR
: return RPC_S_COMM_FAILURE
;
468 case NCA_S_FAULT_PIPE_MEMORY
: return ERROR_OUTOFMEMORY
;
469 case NCA_S_FAULT_CONTEXT_MISMATCH
: return ERROR_INVALID_HANDLE
;
470 case NCA_S_FAULT_REMOTE_NO_MEMORY
: return ERROR_NOT_ENOUGH_SERVER_MEMORY
;
471 default: return status
;
475 /* assumes the common header fields have already been validated */
476 BOOL
RPCRT4_IsValidHttpPacket(RpcPktHdr
*hdr
, unsigned char *data
,
477 unsigned short data_len
)
482 for (i
= 0; i
< hdr
->http
.num_data_items
; i
++)
486 if (data_len
< sizeof(ULONG
))
491 data_len
-= sizeof(ULONG
);
497 if (data_len
< sizeof(GUID
))
500 data_len
-= sizeof(GUID
);
508 if (data_len
< sizeof(ULONG
))
511 data_len
-= sizeof(ULONG
);
520 FIXME("unimplemented type 0x%x\n", type
);
527 /* assumes the HTTP packet has been validated */
528 static unsigned char *RPCRT4_NextHttpHeaderField(unsigned char *data
)
532 type
= *(ULONG
*)data
;
533 data
+= sizeof(ULONG
);
539 return data
+ sizeof(GUID
);
546 return data
+ sizeof(ULONG
);
550 FIXME("unimplemented type 0x%x\n", type
);
555 #define READ_HTTP_PAYLOAD_FIELD_TYPE(data) *(ULONG *)(data)
556 #define GET_HTTP_PAYLOAD_FIELD_DATA(data) ((data) + sizeof(ULONG))
558 /* assumes the HTTP packet has been validated */
559 RPC_STATUS
RPCRT4_ParseHttpPrepareHeader1(RpcPktHdr
*header
,
560 unsigned char *data
, ULONG
*field1
)
563 if (header
->http
.flags
!= 0x0)
565 ERR("invalid flags 0x%x\n", header
->http
.flags
);
566 return RPC_S_PROTOCOL_ERROR
;
568 if (header
->http
.num_data_items
!= 1)
570 ERR("invalid number of data items %d\n", header
->http
.num_data_items
);
571 return RPC_S_PROTOCOL_ERROR
;
573 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
574 if (type
!= 0x00000002)
576 ERR("invalid type 0x%08x\n", type
);
577 return RPC_S_PROTOCOL_ERROR
;
579 *field1
= *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
);
583 /* assumes the HTTP packet has been validated */
584 RPC_STATUS
RPCRT4_ParseHttpPrepareHeader2(RpcPktHdr
*header
,
585 unsigned char *data
, ULONG
*field1
,
586 ULONG
*bytes_until_next_packet
,
590 if (header
->http
.flags
!= 0x0)
592 ERR("invalid flags 0x%x\n", header
->http
.flags
);
593 return RPC_S_PROTOCOL_ERROR
;
595 if (header
->http
.num_data_items
!= 3)
597 ERR("invalid number of data items %d\n", header
->http
.num_data_items
);
598 return RPC_S_PROTOCOL_ERROR
;
601 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
602 if (type
!= 0x00000006)
604 ERR("invalid type for field 1: 0x%08x\n", type
);
605 return RPC_S_PROTOCOL_ERROR
;
607 *field1
= *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
);
608 data
= RPCRT4_NextHttpHeaderField(data
);
610 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
611 if (type
!= 0x00000000)
613 ERR("invalid type for field 2: 0x%08x\n", type
);
614 return RPC_S_PROTOCOL_ERROR
;
616 *bytes_until_next_packet
= *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
);
617 data
= RPCRT4_NextHttpHeaderField(data
);
619 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
620 if (type
!= 0x00000002)
622 ERR("invalid type for field 3: 0x%08x\n", type
);
623 return RPC_S_PROTOCOL_ERROR
;
625 *field3
= *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
);
630 RPC_STATUS
RPCRT4_ParseHttpFlowControlHeader(RpcPktHdr
*header
,
631 unsigned char *data
, BOOL server
,
632 ULONG
*bytes_transmitted
,
633 ULONG
*flow_control_increment
,
637 if (header
->http
.flags
!= 0x2)
639 ERR("invalid flags 0x%x\n", header
->http
.flags
);
640 return RPC_S_PROTOCOL_ERROR
;
642 if (header
->http
.num_data_items
!= 2)
644 ERR("invalid number of data items %d\n", header
->http
.num_data_items
);
645 return RPC_S_PROTOCOL_ERROR
;
648 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
649 if (type
!= 0x0000000d)
651 ERR("invalid type for field 1: 0x%08x\n", type
);
652 return RPC_S_PROTOCOL_ERROR
;
654 if (*(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
) != (server
? 0x3 : 0x0))
656 ERR("invalid type for 0xd field data: 0x%08x\n", *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
));
657 return RPC_S_PROTOCOL_ERROR
;
659 data
= RPCRT4_NextHttpHeaderField(data
);
661 type
= READ_HTTP_PAYLOAD_FIELD_TYPE(data
);
662 if (type
!= 0x00000001)
664 ERR("invalid type for field 2: 0x%08x\n", type
);
665 return RPC_S_PROTOCOL_ERROR
;
667 *bytes_transmitted
= *(ULONG
*)GET_HTTP_PAYLOAD_FIELD_DATA(data
);
668 *flow_control_increment
= *(ULONG
*)(GET_HTTP_PAYLOAD_FIELD_DATA(data
) + 4);
669 *pipe_uuid
= *(UUID
*)(GET_HTTP_PAYLOAD_FIELD_DATA(data
) + 8);
675 static RPC_STATUS
RPCRT4_SecurePacket(RpcConnection
*Connection
,
676 enum secure_packet_direction dir
,
677 RpcPktHdr
*hdr
, unsigned int hdr_size
,
678 unsigned char *stub_data
, unsigned int stub_data_size
,
679 RpcAuthVerifier
*auth_hdr
,
680 unsigned char *auth_value
, unsigned int auth_value_size
)
682 SecBufferDesc message
;
683 SecBuffer buffers
[4];
684 SECURITY_STATUS sec_status
;
686 message
.ulVersion
= SECBUFFER_VERSION
;
687 message
.cBuffers
= sizeof(buffers
)/sizeof(buffers
[0]);
688 message
.pBuffers
= buffers
;
690 buffers
[0].cbBuffer
= hdr_size
;
691 buffers
[0].BufferType
= SECBUFFER_DATA
|SECBUFFER_READONLY_WITH_CHECKSUM
;
692 buffers
[0].pvBuffer
= hdr
;
693 buffers
[1].cbBuffer
= stub_data_size
;
694 buffers
[1].BufferType
= SECBUFFER_DATA
;
695 buffers
[1].pvBuffer
= stub_data
;
696 buffers
[2].cbBuffer
= sizeof(*auth_hdr
);
697 buffers
[2].BufferType
= SECBUFFER_DATA
|SECBUFFER_READONLY_WITH_CHECKSUM
;
698 buffers
[2].pvBuffer
= auth_hdr
;
699 buffers
[3].cbBuffer
= auth_value_size
;
700 buffers
[3].BufferType
= SECBUFFER_TOKEN
;
701 buffers
[3].pvBuffer
= auth_value
;
703 if (dir
== SECURE_PACKET_SEND
)
705 if ((auth_hdr
->auth_level
== RPC_C_AUTHN_LEVEL_PKT_PRIVACY
) && packet_has_body(hdr
))
707 sec_status
= EncryptMessage(&Connection
->ctx
, 0, &message
, 0 /* FIXME */);
708 if (sec_status
!= SEC_E_OK
)
710 ERR("EncryptMessage failed with 0x%08x\n", sec_status
);
711 return RPC_S_SEC_PKG_ERROR
;
714 else if (auth_hdr
->auth_level
!= RPC_C_AUTHN_LEVEL_NONE
)
716 sec_status
= MakeSignature(&Connection
->ctx
, 0, &message
, 0 /* FIXME */);
717 if (sec_status
!= SEC_E_OK
)
719 ERR("MakeSignature failed with 0x%08x\n", sec_status
);
720 return RPC_S_SEC_PKG_ERROR
;
724 else if (dir
== SECURE_PACKET_RECEIVE
)
726 if ((auth_hdr
->auth_level
== RPC_C_AUTHN_LEVEL_PKT_PRIVACY
) && packet_has_body(hdr
))
728 sec_status
= DecryptMessage(&Connection
->ctx
, &message
, 0 /* FIXME */, 0);
729 if (sec_status
!= SEC_E_OK
)
731 ERR("DecryptMessage failed with 0x%08x\n", sec_status
);
732 return RPC_S_SEC_PKG_ERROR
;
735 else if (auth_hdr
->auth_level
!= RPC_C_AUTHN_LEVEL_NONE
)
737 sec_status
= VerifySignature(&Connection
->ctx
, &message
, 0 /* FIXME */, NULL
);
738 if (sec_status
!= SEC_E_OK
)
740 ERR("VerifySignature failed with 0x%08x\n", sec_status
);
741 return RPC_S_SEC_PKG_ERROR
;
749 /***********************************************************************
750 * RPCRT4_SendWithAuth (internal)
752 * Transmit a packet with authorization data over connection in acceptable fragments.
754 static RPC_STATUS
RPCRT4_SendWithAuth(RpcConnection
*Connection
, RpcPktHdr
*Header
,
755 void *Buffer
, unsigned int BufferLength
,
756 const void *Auth
, unsigned int AuthLength
)
765 RPCRT4_SetThreadCurrentConnection(Connection
);
768 /* The packet building functions save the packet header size, so we can use it. */
769 hdr_size
= Header
->common
.frag_len
;
771 Header
->common
.auth_len
= AuthLength
;
772 else if (Connection
->AuthInfo
&& packet_has_auth_verifier(Header
))
774 if ((Connection
->AuthInfo
->AuthnLevel
== RPC_C_AUTHN_LEVEL_PKT_PRIVACY
) && packet_has_body(Header
))
775 Header
->common
.auth_len
= Connection
->encryption_auth_len
;
777 Header
->common
.auth_len
= Connection
->signature_auth_len
;
780 Header
->common
.auth_len
= 0;
781 Header
->common
.flags
|= RPC_FLG_FIRST
;
782 Header
->common
.flags
&= ~RPC_FLG_LAST
;
784 alen
= RPC_AUTH_VERIFIER_LEN(&Header
->common
);
786 while (!(Header
->common
.flags
& RPC_FLG_LAST
)) {
787 unsigned char auth_pad_len
= Header
->common
.auth_len
? ROUND_UP_AMOUNT(BufferLength
, AUTH_ALIGNMENT
) : 0;
788 unsigned int pkt_size
= BufferLength
+ hdr_size
+ alen
+ auth_pad_len
;
790 /* decide if we need to split the packet into fragments */
791 if (pkt_size
<= Connection
->MaxTransmissionSize
) {
792 Header
->common
.flags
|= RPC_FLG_LAST
;
793 Header
->common
.frag_len
= pkt_size
;
796 /* make sure packet payload will be a multiple of 16 */
797 Header
->common
.frag_len
=
798 ((Connection
->MaxTransmissionSize
- hdr_size
- alen
) & ~(AUTH_ALIGNMENT
-1)) +
802 pkt
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, Header
->common
.frag_len
);
804 memcpy(pkt
, Header
, hdr_size
);
806 /* fragment consisted of header only and is the last one */
807 if (hdr_size
== Header
->common
.frag_len
)
810 memcpy(pkt
+ hdr_size
, buffer_pos
, Header
->common
.frag_len
- hdr_size
- auth_pad_len
- alen
);
812 /* add the authorization info */
813 if (Connection
->AuthInfo
&& packet_has_auth_verifier(Header
))
815 RpcAuthVerifier
*auth_hdr
= (RpcAuthVerifier
*)&pkt
[Header
->common
.frag_len
- alen
];
817 auth_hdr
->auth_type
= Connection
->AuthInfo
->AuthnSvc
;
818 auth_hdr
->auth_level
= Connection
->AuthInfo
->AuthnLevel
;
819 auth_hdr
->auth_pad_length
= auth_pad_len
;
820 auth_hdr
->auth_reserved
= 0;
821 /* a unique number... */
822 auth_hdr
->auth_context_id
= Connection
->auth_context_id
;
825 memcpy(auth_hdr
+ 1, Auth
, AuthLength
);
828 status
= RPCRT4_SecurePacket(Connection
, SECURE_PACKET_SEND
,
829 (RpcPktHdr
*)pkt
, hdr_size
,
830 pkt
+ hdr_size
, Header
->common
.frag_len
- hdr_size
- alen
,
832 (unsigned char *)(auth_hdr
+ 1), Header
->common
.auth_len
);
833 if (status
!= RPC_S_OK
)
835 HeapFree(GetProcessHeap(), 0, pkt
);
836 RPCRT4_SetThreadCurrentConnection(NULL
);
843 count
= rpcrt4_conn_write(Connection
, pkt
, Header
->common
.frag_len
);
844 HeapFree(GetProcessHeap(), 0, pkt
);
846 WARN("rpcrt4_conn_write failed (auth)\n");
847 RPCRT4_SetThreadCurrentConnection(NULL
);
848 return RPC_S_CALL_FAILED
;
851 buffer_pos
+= Header
->common
.frag_len
- hdr_size
- alen
- auth_pad_len
;
852 BufferLength
-= Header
->common
.frag_len
- hdr_size
- alen
- auth_pad_len
;
853 Header
->common
.flags
&= ~RPC_FLG_FIRST
;
856 RPCRT4_SetThreadCurrentConnection(NULL
);
860 /***********************************************************************
861 * RPCRT4_ClientAuthorize (internal)
863 * Authorize a client connection. A NULL in param signifies a new connection.
865 static RPC_STATUS
RPCRT4_ClientAuthorize(RpcConnection
*conn
, SecBuffer
*in
,
869 SecBufferDesc out_desc
;
870 SecBufferDesc inp_desc
;
871 SecPkgContext_Sizes secctx_sizes
;
872 BOOL continue_needed
;
873 ULONG context_req
= ISC_REQ_CONNECTION
| ISC_REQ_USE_DCE_STYLE
|
874 ISC_REQ_MUTUAL_AUTH
| ISC_REQ_DELEGATE
;
876 if (conn
->AuthInfo
->AuthnLevel
== RPC_C_AUTHN_LEVEL_PKT_INTEGRITY
)
877 context_req
|= ISC_REQ_INTEGRITY
;
878 else if (conn
->AuthInfo
->AuthnLevel
== RPC_C_AUTHN_LEVEL_PKT_PRIVACY
)
879 context_req
|= ISC_REQ_CONFIDENTIALITY
| ISC_REQ_INTEGRITY
;
881 out
->BufferType
= SECBUFFER_TOKEN
;
882 out
->cbBuffer
= conn
->AuthInfo
->cbMaxToken
;
883 out
->pvBuffer
= HeapAlloc(GetProcessHeap(), 0, out
->cbBuffer
);
884 if (!out
->pvBuffer
) return ERROR_OUTOFMEMORY
;
886 out_desc
.ulVersion
= 0;
887 out_desc
.cBuffers
= 1;
888 out_desc
.pBuffers
= out
;
890 inp_desc
.cBuffers
= 1;
891 inp_desc
.pBuffers
= in
;
892 inp_desc
.ulVersion
= 0;
894 r
= InitializeSecurityContextW(&conn
->AuthInfo
->cred
, in
? &conn
->ctx
: NULL
,
895 in
? NULL
: conn
->AuthInfo
->server_principal_name
, context_req
, 0,
896 SECURITY_NETWORK_DREP
, in
? &inp_desc
: NULL
, 0, &conn
->ctx
,
897 &out_desc
, &conn
->attr
, &conn
->exp
);
900 WARN("InitializeSecurityContext failed with error 0x%08x\n", r
);
904 TRACE("r = 0x%08x, attr = 0x%08x\n", r
, conn
->attr
);
905 continue_needed
= ((r
== SEC_I_CONTINUE_NEEDED
) ||
906 (r
== SEC_I_COMPLETE_AND_CONTINUE
));
908 if ((r
== SEC_I_COMPLETE_NEEDED
) || (r
== SEC_I_COMPLETE_AND_CONTINUE
))
910 TRACE("complete needed\n");
911 r
= CompleteAuthToken(&conn
->ctx
, &out_desc
);
914 WARN("CompleteAuthToken failed with error 0x%08x\n", r
);
919 TRACE("cbBuffer = %d\n", out
->cbBuffer
);
921 if (!continue_needed
)
923 r
= QueryContextAttributesA(&conn
->ctx
, SECPKG_ATTR_SIZES
, &secctx_sizes
);
926 WARN("QueryContextAttributes failed with error 0x%08x\n", r
);
929 conn
->signature_auth_len
= secctx_sizes
.cbMaxSignature
;
930 conn
->encryption_auth_len
= secctx_sizes
.cbSecurityTrailer
;
936 HeapFree(GetProcessHeap(), 0, out
->pvBuffer
);
937 out
->pvBuffer
= NULL
;
938 return ERROR_ACCESS_DENIED
; /* FIXME: is this correct? */
941 /***********************************************************************
942 * RPCRT4_AuthorizeBinding (internal)
944 RPC_STATUS
RPCRT4_AuthorizeConnection(RpcConnection
* conn
, BYTE
*challenge
,
951 TRACE("challenge %s, %d bytes\n", challenge
, count
);
953 inp
.BufferType
= SECBUFFER_TOKEN
;
954 inp
.pvBuffer
= challenge
;
955 inp
.cbBuffer
= count
;
957 status
= RPCRT4_ClientAuthorize(conn
, &inp
, &out
);
958 if (status
) return status
;
960 resp_hdr
= RPCRT4_BuildAuthHeader(NDR_LOCAL_DATA_REPRESENTATION
);
962 return E_OUTOFMEMORY
;
964 status
= RPCRT4_SendWithAuth(conn
, resp_hdr
, NULL
, 0, out
.pvBuffer
, out
.cbBuffer
);
966 HeapFree(GetProcessHeap(), 0, out
.pvBuffer
);
967 RPCRT4_FreeHeader(resp_hdr
);
972 /***********************************************************************
973 * RPCRT4_Send (internal)
975 * Transmit a packet over connection in acceptable fragments.
977 RPC_STATUS
RPCRT4_Send(RpcConnection
*Connection
, RpcPktHdr
*Header
,
978 void *Buffer
, unsigned int BufferLength
)
983 if (!Connection
->AuthInfo
|| SecIsValidHandle(&Connection
->ctx
))
985 return RPCRT4_SendWithAuth(Connection
, Header
, Buffer
, BufferLength
, NULL
, 0);
988 /* tack on a negotiate packet */
989 r
= RPCRT4_ClientAuthorize(Connection
, NULL
, &out
);
992 r
= RPCRT4_SendWithAuth(Connection
, Header
, Buffer
, BufferLength
, out
.pvBuffer
, out
.cbBuffer
);
993 HeapFree(GetProcessHeap(), 0, out
.pvBuffer
);
999 /* validates version and frag_len fields */
1000 RPC_STATUS
RPCRT4_ValidateCommonHeader(const RpcPktCommonHdr
*hdr
)
1004 /* verify if the header really makes sense */
1005 if (hdr
->rpc_ver
!= RPC_VER_MAJOR
||
1006 hdr
->rpc_ver_minor
!= RPC_VER_MINOR
)
1008 WARN("unhandled packet version\n");
1009 return RPC_S_PROTOCOL_ERROR
;
1012 hdr_length
= RPCRT4_GetHeaderSize((const RpcPktHdr
*)hdr
);
1013 if (hdr_length
== 0)
1015 WARN("header length == 0\n");
1016 return RPC_S_PROTOCOL_ERROR
;
1019 if (hdr
->frag_len
< hdr_length
)
1021 WARN("bad frag length %d\n", hdr
->frag_len
);
1022 return RPC_S_PROTOCOL_ERROR
;
1028 /***********************************************************************
1029 * RPCRT4_default_receive_fragment (internal)
1031 * Receive a fragment from a connection.
1033 static RPC_STATUS
RPCRT4_default_receive_fragment(RpcConnection
*Connection
, RpcPktHdr
**Header
, void **Payload
)
1038 RpcPktCommonHdr common_hdr
;
1043 TRACE("(%p, %p, %p)\n", Connection
, Header
, Payload
);
1045 /* read packet common header */
1046 dwRead
= rpcrt4_conn_read(Connection
, &common_hdr
, sizeof(common_hdr
));
1047 if (dwRead
!= sizeof(common_hdr
)) {
1048 WARN("Short read of header, %d bytes\n", dwRead
);
1049 status
= RPC_S_CALL_FAILED
;
1053 status
= RPCRT4_ValidateCommonHeader(&common_hdr
);
1054 if (status
!= RPC_S_OK
) goto fail
;
1056 hdr_length
= RPCRT4_GetHeaderSize((RpcPktHdr
*)&common_hdr
);
1057 if (hdr_length
== 0) {
1058 WARN("header length == 0\n");
1059 status
= RPC_S_PROTOCOL_ERROR
;
1063 *Header
= HeapAlloc(GetProcessHeap(), 0, hdr_length
);
1064 memcpy(*Header
, &common_hdr
, sizeof(common_hdr
));
1066 /* read the rest of packet header */
1067 dwRead
= rpcrt4_conn_read(Connection
, &(*Header
)->common
+ 1, hdr_length
- sizeof(common_hdr
));
1068 if (dwRead
!= hdr_length
- sizeof(common_hdr
)) {
1069 WARN("bad header length, %d bytes, hdr_length %d\n", dwRead
, hdr_length
);
1070 status
= RPC_S_CALL_FAILED
;
1074 if (common_hdr
.frag_len
- hdr_length
)
1076 *Payload
= HeapAlloc(GetProcessHeap(), 0, common_hdr
.frag_len
- hdr_length
);
1079 status
= RPC_S_OUT_OF_RESOURCES
;
1083 dwRead
= rpcrt4_conn_read(Connection
, *Payload
, common_hdr
.frag_len
- hdr_length
);
1084 if (dwRead
!= common_hdr
.frag_len
- hdr_length
)
1086 WARN("bad data length, %d/%d\n", dwRead
, common_hdr
.frag_len
- hdr_length
);
1087 status
= RPC_S_CALL_FAILED
;
1098 if (status
!= RPC_S_OK
) {
1099 RPCRT4_FreeHeader(*Header
);
1101 HeapFree(GetProcessHeap(), 0, *Payload
);
1107 static RPC_STATUS
RPCRT4_receive_fragment(RpcConnection
*Connection
, RpcPktHdr
**Header
, void **Payload
)
1109 if (Connection
->ops
->receive_fragment
)
1110 return Connection
->ops
->receive_fragment(Connection
, Header
, Payload
);
1112 return RPCRT4_default_receive_fragment(Connection
, Header
, Payload
);
1115 /***********************************************************************
1116 * RPCRT4_ReceiveWithAuth (internal)
1118 * Receive a packet from connection, merge the fragments and return the auth
1121 RPC_STATUS
RPCRT4_ReceiveWithAuth(RpcConnection
*Connection
, RpcPktHdr
**Header
,
1123 unsigned char **auth_data_out
,
1124 ULONG
*auth_length_out
)
1128 unsigned short first_flag
;
1130 ULONG buffer_length
;
1131 ULONG auth_length
= 0;
1132 unsigned char *auth_data
= NULL
;
1133 RpcPktHdr
*CurrentHeader
= NULL
;
1134 void *payload
= NULL
;
1137 pMsg
->Buffer
= NULL
;
1139 TRACE("(%p, %p, %p, %p)\n", Connection
, Header
, pMsg
, auth_data_out
);
1141 RPCRT4_SetThreadCurrentConnection(Connection
);
1143 status
= RPCRT4_receive_fragment(Connection
, Header
, &payload
);
1144 if (status
!= RPC_S_OK
) goto fail
;
1146 hdr_length
= RPCRT4_GetHeaderSize(*Header
);
1148 /* read packet body */
1149 switch ((*Header
)->common
.ptype
) {
1151 pMsg
->BufferLength
= (*Header
)->response
.alloc_hint
;
1154 pMsg
->BufferLength
= (*Header
)->request
.alloc_hint
;
1157 pMsg
->BufferLength
= (*Header
)->common
.frag_len
- hdr_length
- RPC_AUTH_VERIFIER_LEN(&(*Header
)->common
);
1160 TRACE("buffer length = %u\n", pMsg
->BufferLength
);
1162 pMsg
->Buffer
= I_RpcAllocate(pMsg
->BufferLength
);
1165 status
= ERROR_OUTOFMEMORY
;
1169 first_flag
= RPC_FLG_FIRST
;
1170 auth_length
= (*Header
)->common
.auth_len
;
1172 auth_data
= HeapAlloc(GetProcessHeap(), 0, RPC_AUTH_VERIFIER_LEN(&(*Header
)->common
));
1174 status
= RPC_S_OUT_OF_RESOURCES
;
1178 CurrentHeader
= *Header
;
1182 unsigned int header_auth_len
= RPC_AUTH_VERIFIER_LEN(&CurrentHeader
->common
);
1184 /* verify header fields */
1186 if ((CurrentHeader
->common
.frag_len
< hdr_length
) ||
1187 (CurrentHeader
->common
.frag_len
- hdr_length
< header_auth_len
)) {
1188 WARN("frag_len %d too small for hdr_length %d and auth_len %d\n",
1189 CurrentHeader
->common
.frag_len
, hdr_length
, CurrentHeader
->common
.auth_len
);
1190 status
= RPC_S_PROTOCOL_ERROR
;
1194 if (CurrentHeader
->common
.auth_len
!= auth_length
) {
1195 WARN("auth_len header field changed from %d to %d\n",
1196 auth_length
, CurrentHeader
->common
.auth_len
);
1197 status
= RPC_S_PROTOCOL_ERROR
;
1201 if ((CurrentHeader
->common
.flags
& RPC_FLG_FIRST
) != first_flag
) {
1202 TRACE("invalid packet flags\n");
1203 status
= RPC_S_PROTOCOL_ERROR
;
1207 data_length
= CurrentHeader
->common
.frag_len
- hdr_length
- header_auth_len
;
1208 if (data_length
+ buffer_length
> pMsg
->BufferLength
) {
1209 TRACE("allocation hint exceeded, new buffer length = %d\n",
1210 data_length
+ buffer_length
);
1211 pMsg
->BufferLength
= data_length
+ buffer_length
;
1212 status
= I_RpcReAllocateBuffer(pMsg
);
1213 if (status
!= RPC_S_OK
) goto fail
;
1216 memcpy((unsigned char *)pMsg
->Buffer
+ buffer_length
, payload
, data_length
);
1218 if (header_auth_len
) {
1219 if (header_auth_len
< sizeof(RpcAuthVerifier
) ||
1220 header_auth_len
> RPC_AUTH_VERIFIER_LEN(&(*Header
)->common
)) {
1221 WARN("bad auth verifier length %d\n", header_auth_len
);
1222 status
= RPC_S_PROTOCOL_ERROR
;
1226 /* FIXME: we should accumulate authentication data for the bind,
1227 * bind_ack, alter_context and alter_context_response if necessary.
1228 * however, the details of how this is done is very sketchy in the
1229 * DCE/RPC spec. for all other packet types that have authentication
1230 * verifier data then it is just duplicated in all the fragments */
1231 memcpy(auth_data
, (unsigned char *)payload
+ data_length
, header_auth_len
);
1233 /* these packets are handled specially, not by the generic SecurePacket
1235 if (!auth_data_out
&& SecIsValidHandle(&Connection
->ctx
))
1237 status
= RPCRT4_SecurePacket(Connection
, SECURE_PACKET_RECEIVE
,
1238 CurrentHeader
, hdr_length
,
1239 (unsigned char *)pMsg
->Buffer
+ buffer_length
, data_length
,
1240 (RpcAuthVerifier
*)auth_data
,
1241 auth_data
+ sizeof(RpcAuthVerifier
),
1242 header_auth_len
- sizeof(RpcAuthVerifier
));
1243 if (status
!= RPC_S_OK
) goto fail
;
1247 buffer_length
+= data_length
;
1248 if (!(CurrentHeader
->common
.flags
& RPC_FLG_LAST
)) {
1249 TRACE("next header\n");
1251 if (*Header
!= CurrentHeader
)
1253 RPCRT4_FreeHeader(CurrentHeader
);
1254 CurrentHeader
= NULL
;
1256 HeapFree(GetProcessHeap(), 0, payload
);
1259 status
= RPCRT4_receive_fragment(Connection
, &CurrentHeader
, &payload
);
1260 if (status
!= RPC_S_OK
) goto fail
;
1267 pMsg
->BufferLength
= buffer_length
;
1273 RPCRT4_SetThreadCurrentConnection(NULL
);
1274 if (CurrentHeader
!= *Header
)
1275 RPCRT4_FreeHeader(CurrentHeader
);
1276 if (status
!= RPC_S_OK
) {
1277 I_RpcFree(pMsg
->Buffer
);
1278 pMsg
->Buffer
= NULL
;
1279 RPCRT4_FreeHeader(*Header
);
1282 if (auth_data_out
&& status
== RPC_S_OK
) {
1283 *auth_length_out
= auth_length
;
1284 *auth_data_out
= auth_data
;
1287 HeapFree(GetProcessHeap(), 0, auth_data
);
1288 HeapFree(GetProcessHeap(), 0, payload
);
1292 /***********************************************************************
1293 * RPCRT4_Receive (internal)
1295 * Receive a packet from connection and merge the fragments.
1297 RPC_STATUS
RPCRT4_Receive(RpcConnection
*Connection
, RpcPktHdr
**Header
,
1300 return RPCRT4_ReceiveWithAuth(Connection
, Header
, pMsg
, NULL
, NULL
);
1303 /***********************************************************************
1304 * I_RpcNegotiateTransferSyntax [RPCRT4.@]
1306 * Negotiates the transfer syntax used by a client connection by connecting
1310 * pMsg [I] RPC Message structure.
1311 * pAsync [I] Asynchronous state to set.
1314 * Success: RPC_S_OK.
1315 * Failure: Any error code.
1317 RPC_STATUS WINAPI
I_RpcNegotiateTransferSyntax(PRPC_MESSAGE pMsg
)
1319 RpcBinding
* bind
= pMsg
->Handle
;
1320 RpcConnection
* conn
;
1321 RPC_STATUS status
= RPC_S_OK
;
1323 TRACE("(%p)\n", pMsg
);
1325 if (!bind
|| bind
->server
)
1327 ERR("no binding\n");
1328 return RPC_S_INVALID_BINDING
;
1331 /* if we already have a connection, we don't need to negotiate again */
1332 if (!pMsg
->ReservedForRuntime
)
1334 RPC_CLIENT_INTERFACE
*cif
= pMsg
->RpcInterfaceInformation
;
1335 if (!cif
) return RPC_S_INTERFACE_NOT_FOUND
;
1337 if (!bind
->Endpoint
|| !bind
->Endpoint
[0])
1339 TRACE("automatically resolving partially bound binding\n");
1340 status
= RpcEpResolveBinding(bind
, cif
);
1341 if (status
!= RPC_S_OK
) return status
;
1344 status
= RPCRT4_OpenBinding(bind
, &conn
, &cif
->TransferSyntax
,
1347 if (status
== RPC_S_OK
)
1349 pMsg
->ReservedForRuntime
= conn
;
1350 RPCRT4_AddRefBinding(bind
);
1357 /***********************************************************************
1358 * I_RpcGetBuffer [RPCRT4.@]
1360 * Allocates a buffer for use by I_RpcSend or I_RpcSendReceive and binds to the
1364 * pMsg [I/O] RPC message information.
1367 * Success: RPC_S_OK.
1368 * Failure: RPC_S_INVALID_BINDING if pMsg->Handle is invalid.
1369 * RPC_S_SERVER_UNAVAILABLE if unable to connect to server.
1370 * ERROR_OUTOFMEMORY if buffer allocation failed.
1373 * The pMsg->BufferLength field determines the size of the buffer to allocate,
1376 * Use I_RpcFreeBuffer() to unbind from the server and free the message buffer.
1379 * I_RpcFreeBuffer(), I_RpcSend(), I_RpcReceive(), I_RpcSendReceive().
1381 RPC_STATUS WINAPI
I_RpcGetBuffer(PRPC_MESSAGE pMsg
)
1384 RpcBinding
* bind
= pMsg
->Handle
;
1386 TRACE("(%p): BufferLength=%d\n", pMsg
, pMsg
->BufferLength
);
1390 ERR("no binding\n");
1391 return RPC_S_INVALID_BINDING
;
1394 pMsg
->Buffer
= I_RpcAllocate(pMsg
->BufferLength
);
1395 TRACE("Buffer=%p\n", pMsg
->Buffer
);
1398 return ERROR_OUTOFMEMORY
;
1402 status
= I_RpcNegotiateTransferSyntax(pMsg
);
1403 if (status
!= RPC_S_OK
)
1404 I_RpcFree(pMsg
->Buffer
);
1412 /***********************************************************************
1413 * I_RpcReAllocateBuffer (internal)
1415 static RPC_STATUS
I_RpcReAllocateBuffer(PRPC_MESSAGE pMsg
)
1417 TRACE("(%p): BufferLength=%d\n", pMsg
, pMsg
->BufferLength
);
1418 pMsg
->Buffer
= HeapReAlloc(GetProcessHeap(), 0, pMsg
->Buffer
, pMsg
->BufferLength
);
1420 TRACE("Buffer=%p\n", pMsg
->Buffer
);
1421 return pMsg
->Buffer
? RPC_S_OK
: ERROR_OUTOFMEMORY
;
1424 /***********************************************************************
1425 * I_RpcFreeBuffer [RPCRT4.@]
1427 * Frees a buffer allocated by I_RpcGetBuffer or I_RpcReceive and unbinds from
1428 * the server interface.
1431 * pMsg [I/O] RPC message information.
1437 * I_RpcGetBuffer(), I_RpcReceive().
1439 RPC_STATUS WINAPI
I_RpcFreeBuffer(PRPC_MESSAGE pMsg
)
1441 RpcBinding
* bind
= pMsg
->Handle
;
1443 TRACE("(%p) Buffer=%p\n", pMsg
, pMsg
->Buffer
);
1447 ERR("no binding\n");
1448 return RPC_S_INVALID_BINDING
;
1451 if (pMsg
->ReservedForRuntime
)
1453 RpcConnection
*conn
= pMsg
->ReservedForRuntime
;
1454 RPCRT4_CloseBinding(bind
, conn
);
1455 RPCRT4_ReleaseBinding(bind
);
1456 pMsg
->ReservedForRuntime
= NULL
;
1458 I_RpcFree(pMsg
->Buffer
);
1462 static void CALLBACK
async_apc_notifier_proc(ULONG_PTR ulParam
)
1464 RPC_ASYNC_STATE
*state
= (RPC_ASYNC_STATE
*)ulParam
;
1465 state
->u
.APC
.NotificationRoutine(state
, NULL
, state
->Event
);
1468 static DWORD WINAPI
async_notifier_proc(LPVOID p
)
1470 RpcConnection
*conn
= p
;
1471 RPC_ASYNC_STATE
*state
= conn
->async_state
;
1473 if (state
&& conn
->ops
->wait_for_incoming_data(conn
) != -1)
1475 state
->Event
= RpcCallComplete
;
1476 switch (state
->NotificationType
)
1478 case RpcNotificationTypeEvent
:
1479 TRACE("RpcNotificationTypeEvent %p\n", state
->u
.hEvent
);
1480 SetEvent(state
->u
.hEvent
);
1482 case RpcNotificationTypeApc
:
1483 TRACE("RpcNotificationTypeApc %p\n", state
->u
.APC
.hThread
);
1484 QueueUserAPC(async_apc_notifier_proc
, state
->u
.APC
.hThread
, (ULONG_PTR
)state
);
1486 case RpcNotificationTypeIoc
:
1487 TRACE("RpcNotificationTypeIoc %p, 0x%x, 0x%lx, %p\n",
1488 state
->u
.IOC
.hIOPort
, state
->u
.IOC
.dwNumberOfBytesTransferred
,
1489 state
->u
.IOC
.dwCompletionKey
, state
->u
.IOC
.lpOverlapped
);
1490 PostQueuedCompletionStatus(state
->u
.IOC
.hIOPort
,
1491 state
->u
.IOC
.dwNumberOfBytesTransferred
,
1492 state
->u
.IOC
.dwCompletionKey
,
1493 state
->u
.IOC
.lpOverlapped
);
1495 case RpcNotificationTypeHwnd
:
1496 TRACE("RpcNotificationTypeHwnd %p 0x%x\n", state
->u
.HWND
.hWnd
,
1498 PostMessageW(state
->u
.HWND
.hWnd
, state
->u
.HWND
.Msg
, 0, 0);
1500 case RpcNotificationTypeCallback
:
1501 TRACE("RpcNotificationTypeCallback %p\n", state
->u
.NotificationRoutine
);
1502 state
->u
.NotificationRoutine(state
, NULL
, state
->Event
);
1504 case RpcNotificationTypeNone
:
1505 TRACE("RpcNotificationTypeNone\n");
1508 FIXME("unknown NotificationType: %d/0x%x\n", state
->NotificationType
, state
->NotificationType
);
1516 /***********************************************************************
1517 * I_RpcSend [RPCRT4.@]
1519 * Sends a message to the server.
1522 * pMsg [I/O] RPC message information.
1528 * The buffer must have been allocated with I_RpcGetBuffer().
1531 * I_RpcGetBuffer(), I_RpcReceive(), I_RpcSendReceive().
1533 RPC_STATUS WINAPI
I_RpcSend(PRPC_MESSAGE pMsg
)
1535 RpcBinding
* bind
= pMsg
->Handle
;
1536 RpcConnection
* conn
;
1540 TRACE("(%p)\n", pMsg
);
1541 if (!bind
|| bind
->server
|| !pMsg
->ReservedForRuntime
) return RPC_S_INVALID_BINDING
;
1543 conn
= pMsg
->ReservedForRuntime
;
1545 hdr
= RPCRT4_BuildRequestHeader(pMsg
->DataRepresentation
,
1547 pMsg
->ProcNum
& ~RPC_FLAGS_VALID_BIT
,
1550 return ERROR_OUTOFMEMORY
;
1551 hdr
->common
.call_id
= conn
->NextCallId
++;
1553 status
= RPCRT4_Send(conn
, hdr
, pMsg
->Buffer
, pMsg
->BufferLength
);
1555 RPCRT4_FreeHeader(hdr
);
1557 if (status
== RPC_S_OK
&& pMsg
->RpcFlags
& RPC_BUFFER_ASYNC
)
1559 if (!QueueUserWorkItem(async_notifier_proc
, conn
, WT_EXECUTEDEFAULT
| WT_EXECUTELONGFUNCTION
))
1560 status
= RPC_S_OUT_OF_RESOURCES
;
1566 /* is this status something that the server can't recover from? */
1567 static inline BOOL
is_hard_error(RPC_STATUS status
)
1571 case 0: /* user-defined fault */
1572 case ERROR_ACCESS_DENIED
:
1573 case ERROR_INVALID_PARAMETER
:
1574 case RPC_S_PROTOCOL_ERROR
:
1575 case RPC_S_CALL_FAILED
:
1576 case RPC_S_CALL_FAILED_DNE
:
1577 case RPC_S_SEC_PKG_ERROR
:
1584 /***********************************************************************
1585 * I_RpcReceive [RPCRT4.@]
1587 RPC_STATUS WINAPI
I_RpcReceive(PRPC_MESSAGE pMsg
)
1589 RpcBinding
* bind
= pMsg
->Handle
;
1591 RpcPktHdr
*hdr
= NULL
;
1592 RpcConnection
*conn
;
1594 TRACE("(%p)\n", pMsg
);
1595 if (!bind
|| bind
->server
|| !pMsg
->ReservedForRuntime
) return RPC_S_INVALID_BINDING
;
1597 conn
= pMsg
->ReservedForRuntime
;
1598 status
= RPCRT4_Receive(conn
, &hdr
, pMsg
);
1599 if (status
!= RPC_S_OK
) {
1600 WARN("receive failed with error %x\n", status
);
1604 switch (hdr
->common
.ptype
) {
1608 ERR ("we got fault packet with status 0x%x\n", hdr
->fault
.status
);
1609 status
= NCA2RPC_STATUS(hdr
->fault
.status
);
1610 if (is_hard_error(status
))
1614 WARN("bad packet type %d\n", hdr
->common
.ptype
);
1615 status
= RPC_S_PROTOCOL_ERROR
;
1620 RPCRT4_FreeHeader(hdr
);
1624 RPCRT4_FreeHeader(hdr
);
1625 RPCRT4_DestroyConnection(conn
);
1626 pMsg
->ReservedForRuntime
= NULL
;
1630 /***********************************************************************
1631 * I_RpcSendReceive [RPCRT4.@]
1633 * Sends a message to the server and receives the response.
1636 * pMsg [I/O] RPC message information.
1639 * Success: RPC_S_OK.
1640 * Failure: Any error code.
1643 * The buffer must have been allocated with I_RpcGetBuffer().
1646 * I_RpcGetBuffer(), I_RpcSend(), I_RpcReceive().
1648 RPC_STATUS WINAPI
I_RpcSendReceive(PRPC_MESSAGE pMsg
)
1651 void *original_buffer
;
1653 TRACE("(%p)\n", pMsg
);
1655 original_buffer
= pMsg
->Buffer
;
1656 status
= I_RpcSend(pMsg
);
1657 if (status
== RPC_S_OK
)
1658 status
= I_RpcReceive(pMsg
);
1659 /* free the buffer replaced by a new buffer in I_RpcReceive */
1660 if (status
== RPC_S_OK
)
1661 I_RpcFree(original_buffer
);
1665 /***********************************************************************
1666 * I_RpcAsyncSetHandle [RPCRT4.@]
1668 * Sets the asynchronous state of the handle contained in the RPC message
1672 * pMsg [I] RPC Message structure.
1673 * pAsync [I] Asynchronous state to set.
1676 * Success: RPC_S_OK.
1677 * Failure: Any error code.
1679 RPC_STATUS WINAPI
I_RpcAsyncSetHandle(PRPC_MESSAGE pMsg
, PRPC_ASYNC_STATE pAsync
)
1681 RpcBinding
* bind
= pMsg
->Handle
;
1682 RpcConnection
*conn
;
1684 TRACE("(%p, %p)\n", pMsg
, pAsync
);
1686 if (!bind
|| bind
->server
|| !pMsg
->ReservedForRuntime
) return RPC_S_INVALID_BINDING
;
1688 conn
= pMsg
->ReservedForRuntime
;
1689 conn
->async_state
= pAsync
;
1694 /***********************************************************************
1695 * I_RpcAsyncAbortCall [RPCRT4.@]
1697 * Aborts an asynchronous call.
1700 * pAsync [I] Asynchronous state.
1701 * ExceptionCode [I] Exception code.
1704 * Success: RPC_S_OK.
1705 * Failure: Any error code.
1707 RPC_STATUS WINAPI
I_RpcAsyncAbortCall(PRPC_ASYNC_STATE pAsync
, ULONG ExceptionCode
)
1709 FIXME("(%p, %d): stub\n", pAsync
, ExceptionCode
);
1710 return RPC_S_INVALID_ASYNC_HANDLE
;