1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | DCERPC client side interface structures
|
---|
5 |
|
---|
6 | Copyright (C) 2008 Jelmer Vernooij
|
---|
7 |
|
---|
8 | This program is free software; you can redistribute it and/or modify
|
---|
9 | it under the terms of the GNU General Public License as published by
|
---|
10 | the Free Software Foundation; either version 3 of the License, or
|
---|
11 | (at your option) any later version.
|
---|
12 |
|
---|
13 | This program 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
|
---|
16 | GNU General Public License for more details.
|
---|
17 |
|
---|
18 | You should have received a copy of the GNU General Public License
|
---|
19 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | /* This is a public header file that is installed as part of Samba.
|
---|
23 | * If you remove any functions or change their signature, update
|
---|
24 | * the so version number. */
|
---|
25 |
|
---|
26 | #ifndef _S3_DCERPC_H__
|
---|
27 | #define _S3_DCERPC_H__
|
---|
28 |
|
---|
29 | #include "librpc/gen_ndr/dcerpc.h"
|
---|
30 | #include "../librpc/ndr/libndr.h"
|
---|
31 | #include "../librpc/rpc/rpc_common.h"
|
---|
32 |
|
---|
33 | #define SMB_RPC_INTERFACE_VERSION 1
|
---|
34 |
|
---|
35 | struct NL_AUTH_MESSAGE;
|
---|
36 | struct gensec_security;
|
---|
37 |
|
---|
38 | /* auth state for all bind types. */
|
---|
39 |
|
---|
40 | struct pipe_auth_data {
|
---|
41 | enum dcerpc_AuthType auth_type;
|
---|
42 | enum dcerpc_AuthLevel auth_level;
|
---|
43 | uint32_t auth_context_id;
|
---|
44 | bool client_hdr_signing;
|
---|
45 | bool hdr_signing;
|
---|
46 | bool verified_bitmask1;
|
---|
47 |
|
---|
48 | struct gensec_security *auth_ctx;
|
---|
49 |
|
---|
50 | /* Only the client code uses this for now */
|
---|
51 | DATA_BLOB transport_session_key;
|
---|
52 | };
|
---|
53 |
|
---|
54 | /* The following definitions come from librpc/rpc/dcerpc_helpers.c */
|
---|
55 | NTSTATUS dcerpc_push_ncacn_packet(TALLOC_CTX *mem_ctx,
|
---|
56 | enum dcerpc_pkt_type ptype,
|
---|
57 | uint8_t pfc_flags,
|
---|
58 | uint16_t auth_length,
|
---|
59 | uint32_t call_id,
|
---|
60 | union dcerpc_payload *u,
|
---|
61 | DATA_BLOB *blob);
|
---|
62 | NTSTATUS dcerpc_pull_ncacn_packet(TALLOC_CTX *mem_ctx,
|
---|
63 | const DATA_BLOB *blob,
|
---|
64 | struct ncacn_packet *r,
|
---|
65 | bool bigendian);
|
---|
66 | NTSTATUS dcerpc_push_dcerpc_auth(TALLOC_CTX *mem_ctx,
|
---|
67 | enum dcerpc_AuthType auth_type,
|
---|
68 | enum dcerpc_AuthLevel auth_level,
|
---|
69 | uint8_t auth_pad_length,
|
---|
70 | uint32_t auth_context_id,
|
---|
71 | const DATA_BLOB *credentials,
|
---|
72 | DATA_BLOB *blob);
|
---|
73 | NTSTATUS dcerpc_guess_sizes(struct pipe_auth_data *auth,
|
---|
74 | size_t header_len, size_t data_left,
|
---|
75 | size_t max_xmit_frag,
|
---|
76 | size_t *data_to_send, size_t *frag_len,
|
---|
77 | size_t *auth_len, size_t *pad_len);
|
---|
78 | NTSTATUS dcerpc_add_auth_footer(struct pipe_auth_data *auth,
|
---|
79 | size_t pad_len, DATA_BLOB *rpc_out);
|
---|
80 | NTSTATUS dcerpc_check_auth(struct pipe_auth_data *auth,
|
---|
81 | struct ncacn_packet *pkt,
|
---|
82 | DATA_BLOB *pkt_trailer,
|
---|
83 | uint8_t header_size,
|
---|
84 | DATA_BLOB *raw_pkt);
|
---|
85 |
|
---|
86 | #endif /* __S3_DCERPC_H__ */
|
---|