Merge branch 'master' of ssh://git.samba.org/data/git/samba into selftest
[gd/samba-autobuild/.git] / source4 / libcli / smb_composite / smb_composite.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    SMB composite request interfaces
5
6    Copyright (C) Andrew Tridgell 2005
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 /*
23   this defines the structures associated with "composite"
24   requests. Composite requests are libcli requests that are internally
25   implemented as multiple libcli/raw/ calls, but can be treated as a
26   single call via these composite calls. The composite calls are
27   particularly designed to be used in async applications
28 */
29
30 #include "libcli/raw/signing.h"
31 #include "libcli/raw/libcliraw.h"
32 #include "libcli/smb2/smb2.h"
33
34
35 /*
36   a composite open/read(s)/close request that loads a whole file
37   into memory. Used as a demo of the composite system.
38 */
39 struct smb_composite_loadfile {
40         struct {
41                 const char *fname;
42         } in;
43         struct {
44                 uint8_t *data;
45                 uint32_t size;
46         } out;
47 };
48
49 struct smb_composite_fetchfile {
50         struct {
51                 const char *dest_host;
52                 const char **ports;
53                 const char *called_name;
54                 const char *service;
55                 const char *service_type;
56                 struct cli_credentials *credentials;
57                 const char *workgroup;
58                 const char *filename;
59                 struct smbcli_options options;
60                 struct smbcli_session_options session_options;
61                 struct resolve_context *resolve_ctx;
62         } in;
63         struct {
64                 uint8_t *data;
65                 uint32_t size;
66         } out;
67 };
68
69 /*
70   a composite open/write(s)/close request that saves a whole file from
71   memory. Used as a demo of the composite system.
72 */
73 struct smb_composite_savefile {
74         struct {
75                 const char *fname;
76                 uint8_t *data;
77                 uint32_t size;
78         } in;
79 };
80
81
82 /*
83   a composite request for a full connection to a remote server. Includes
84
85     - socket establishment
86     - session request
87     - negprot
88     - session setup (if credentials are not NULL)
89     - tree connect (if service is not NULL)
90 */
91 struct smb_composite_connect {
92         struct {
93                 const char *dest_host;
94                 const char **dest_ports;
95                 const char *called_name;
96                 const char *service;
97                 const char *service_type;
98                 struct cli_credentials *credentials;
99                 bool fallback_to_anonymous;
100                 const char *workgroup;
101                 struct smbcli_options options;
102                 struct smbcli_session_options session_options;
103         } in;
104         struct {
105                 struct smbcli_tree *tree;
106                 bool anonymous_fallback_done;
107         } out;
108 };
109
110
111 /*
112   generic session setup interface that takes care of which
113   session setup varient to use
114 */
115 struct smb_composite_sesssetup {
116         struct {
117                 uint32_t sesskey;
118                 uint32_t capabilities;
119                 struct cli_credentials *credentials;
120                 const char *workgroup;
121         } in;
122         struct {
123                 uint16_t vuid;
124         } out;          
125 };
126
127 /*
128   query file system info
129 */
130 struct smb_composite_fsinfo {
131         struct {
132                 const char *dest_host;
133                 const char **dest_ports;
134                 const char *called_name;
135                 const char *service;
136                 const char *service_type;
137                 struct cli_credentials *credentials;
138                 const char *workgroup;
139                 enum smb_fsinfo_level level;
140         } in;
141         
142         struct {
143                 union smb_fsinfo *fsinfo;
144         } out;
145 };
146
147 /*
148   composite call for appending new acl to the file's security descriptor and get 
149   new full acl
150 */
151
152 struct smb_composite_appendacl {
153         struct {
154                 const char *fname;
155
156                 const struct security_descriptor *sd;
157         } in;
158         
159         struct {
160                 struct security_descriptor *sd;
161         } out;
162 };
163
164 /*
165   a composite API to fire connect() calls to multiple targets, picking the
166   first one.
167 */
168
169 struct smb_composite_connectmulti {
170         struct {
171                 int num_dests;
172                 const char **hostnames;
173                 const char **addresses;
174                 int *ports;     /* Either NULL for lp_smb_ports() per
175                                  * destination or a list of explicit ports */
176         } in;
177         struct {
178                 struct smbcli_socket *socket;
179         } out;
180 };
181
182 struct smbcli_session;
183 struct resolve_context;
184
185 #include "libcli/smb_composite/proto.h"