s3:libsmb: add cli->smb1.vc_num and hide it behind cli_state_get_vc_num()
[bbaumbach/samba-autobuild/.git] / source3 / libsmb / proto.h
1 /*
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Andrew Bartlett 2001-2003
5    Copyright (C) Andrew Tridgell 1994-1998,2000-2001
6    Copyright (C) Gerald (Jerry) Carter 2004
7    Copyright (C) Jelmer Vernooij 2003
8    Copyright (C) Jeremy Allison 2001-2009,2011
9    Copyright (C) Stefan Metzmacher 2003,2009
10    Copyright (C) Volker Lendecke 2011
11
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3 of the License, or
15    (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, see <http://www.gnu.org/licenses/>.
24 */
25
26 #ifndef _LIBSMB_PROTO_H_
27 #define _LIBSMB_PROTO_H_
28
29 #include "ads.h"
30
31 /* The following definitions come from libsmb/cliconnect.c  */
32
33 ADS_STATUS cli_session_setup_spnego(struct cli_state *cli, const char *user,
34                               const char *pass, const char *user_domain,
35                                     const char * dest_realm);
36
37 NTSTATUS cli_session_setup(struct cli_state *cli,
38                            const char *user,
39                            const char *pass, int passlen,
40                            const char *ntpass, int ntpasslen,
41                            const char *workgroup);
42 struct tevent_req *cli_session_setup_guest_create(TALLOC_CTX *mem_ctx,
43                                                   struct event_context *ev,
44                                                   struct cli_state *cli,
45                                                   struct tevent_req **psmbreq);
46 struct tevent_req *cli_session_setup_guest_send(TALLOC_CTX *mem_ctx,
47                                                 struct event_context *ev,
48                                                 struct cli_state *cli);
49 NTSTATUS cli_session_setup_guest_recv(struct tevent_req *req);
50 struct tevent_req *cli_ulogoff_send(TALLOC_CTX *mem_ctx,
51                                     struct tevent_context *ev,
52                                     struct cli_state *cli);
53 NTSTATUS cli_ulogoff_recv(struct tevent_req *req);
54 NTSTATUS cli_ulogoff(struct cli_state *cli);
55 struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx,
56                                         struct event_context *ev,
57                                         struct cli_state *cli,
58                                         const char *share, const char *dev,
59                                         const char *pass, int passlen,
60                                         struct tevent_req **psmbreq);
61 struct tevent_req *cli_tcon_andx_send(TALLOC_CTX *mem_ctx,
62                                       struct event_context *ev,
63                                       struct cli_state *cli,
64                                       const char *share, const char *dev,
65                                       const char *pass, int passlen);
66 NTSTATUS cli_tcon_andx_recv(struct tevent_req *req);
67 NTSTATUS cli_tcon_andx(struct cli_state *cli, const char *share,
68                        const char *dev, const char *pass, int passlen);
69 struct tevent_req *cli_tdis_send(TALLOC_CTX *mem_ctx,
70                                  struct tevent_context *ev,
71                                  struct cli_state *cli);
72 NTSTATUS cli_tdis_recv(struct tevent_req *req);
73 NTSTATUS cli_tdis(struct cli_state *cli);
74 NTSTATUS cli_negprot(struct cli_state *cli);
75 struct tevent_req *cli_negprot_send(TALLOC_CTX *mem_ctx,
76                                     struct event_context *ev,
77                                     struct cli_state *cli);
78 NTSTATUS cli_negprot_recv(struct tevent_req *req);
79 NTSTATUS cli_connect_nb(const char *host, struct sockaddr_storage *pss,
80                         uint16_t port, int name_type, const char *myname,
81                         int signing_state, struct cli_state **pcli);
82 NTSTATUS cli_start_connection(struct cli_state **output_cli,
83                               const char *my_name,
84                               const char *dest_host,
85                               struct sockaddr_storage *dest_ss, int port,
86                               int signing_state, int flags);
87 NTSTATUS cli_full_connection(struct cli_state **output_cli,
88                              const char *my_name,
89                              const char *dest_host,
90                              struct sockaddr_storage *dest_ss, int port,
91                              const char *service, const char *service_type,
92                              const char *user, const char *domain,
93                              const char *password, int flags,
94                              int signing_state);
95 NTSTATUS cli_raw_tcon(struct cli_state *cli,
96                       const char *service, const char *pass, const char *dev,
97                       uint16 *max_xmit, uint16 *tid);
98 struct cli_state *get_ipc_connect(char *server,
99                                 struct sockaddr_storage *server_ss,
100                                 const struct user_auth_info *user_info);
101 struct cli_state *get_ipc_connect_master_ip(TALLOC_CTX *ctx,
102                                 struct sockaddr_storage *mb_ip,
103                                 const struct user_auth_info *user_info,
104                                 char **pp_workgroup_out);
105 struct cli_state *get_ipc_connect_master_ip_bcast(TALLOC_CTX *ctx,
106                                         const struct user_auth_info *user_info,
107                                         char **pp_workgroup_out);
108
109 /* The following definitions come from libsmb/clidfs.c  */
110
111 NTSTATUS cli_cm_force_encryption(struct cli_state *c,
112                         const char *username,
113                         const char *password,
114                         const char *domain,
115                         const char *sharename);
116 NTSTATUS cli_cm_open(TALLOC_CTX *ctx,
117                                 struct cli_state *referring_cli,
118                                 const char *server,
119                                 const char *share,
120                                 const struct user_auth_info *auth_info,
121                                 bool show_hdr,
122                                 bool force_encrypt,
123                                 int max_protocol,
124                                 int port,
125                                 int name_type,
126                                 struct cli_state **pcli);
127 void cli_cm_display(const struct cli_state *c);
128 struct client_dfs_referral;
129 NTSTATUS cli_dfs_get_referral(TALLOC_CTX *ctx,
130                         struct cli_state *cli,
131                         const char *path,
132                         struct client_dfs_referral **refs,
133                         size_t *num_refs,
134                         size_t *consumed);
135 NTSTATUS cli_resolve_path(TALLOC_CTX *ctx,
136                           const char *mountpt,
137                           const struct user_auth_info *dfs_auth_info,
138                           struct cli_state *rootcli,
139                           const char *path,
140                           struct cli_state **targetcli,
141                           char **pp_targetpath);
142
143 bool cli_check_msdfs_proxy(TALLOC_CTX *ctx,
144                         struct cli_state *cli,
145                         const char *sharename,
146                         char **pp_newserver,
147                         char **pp_newshare,
148                         bool force_encrypt,
149                         const char *username,
150                         const char *password,
151                         const char *domain);
152
153 /* The following definitions come from libsmb/clientgen.c  */
154
155 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero);
156 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout);
157 void cli_setup_packet_buf(struct cli_state *cli, char *buf);
158 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain);
159 NTSTATUS cli_set_username(struct cli_state *cli, const char *username);
160 NTSTATUS cli_set_password(struct cli_state *cli, const char *password);
161 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password);
162 struct cli_state *cli_initialise(void);
163 struct cli_state *cli_initialise_ex(int signing_state);
164 void cli_nt_pipes_close(struct cli_state *cli);
165 void cli_shutdown(struct cli_state *cli);
166 void cli_sockopt(struct cli_state *cli, const char *options);
167 uint16_t cli_state_get_vc_num(struct cli_state *cli);
168 uint16 cli_setpid(struct cli_state *cli, uint16 pid);
169 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive);
170 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
171                                  struct cli_state *cli, uint16_t num_echos,
172                                  DATA_BLOB data);
173 NTSTATUS cli_echo_recv(struct tevent_req *req);
174 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data);
175 bool cli_ucs2(struct cli_state *cli);
176 bool is_andx_req(uint8_t cmd);
177 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
178                  uint8_t smb_command, uint8_t additional_flags,
179                  uint8_t wct, uint16_t *vwv,
180                  uint32_t num_bytes, const uint8_t *bytes,
181                  struct tevent_req **result_parent,
182                  uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
183                  uint32_t *pnum_bytes, uint8_t **pbytes);
184
185 /* The following definitions come from libsmb/clierror.c  */
186
187 const char *cli_errstr(struct cli_state *cli);
188 NTSTATUS cli_nt_error(struct cli_state *cli);
189 void cli_dos_error(struct cli_state *cli, uint8 *eclass, uint32 *ecode);
190 int cli_errno(struct cli_state *cli);
191 bool cli_is_error(struct cli_state *cli);
192 bool cli_is_nt_error(struct cli_state *cli);
193 bool cli_is_dos_error(struct cli_state *cli);
194 bool cli_state_is_connected(struct cli_state *cli);
195 void cli_state_disconnect(struct cli_state *cli);
196
197 /* The following definitions come from libsmb/clifile.c  */
198
199 struct tevent_req *cli_setpathinfo_send(TALLOC_CTX *mem_ctx,
200                                         struct tevent_context *ev,
201                                         struct cli_state *cli,
202                                         uint16_t level,
203                                         const char *path,
204                                         uint8_t *data,
205                                         size_t data_len);
206 NTSTATUS cli_setpathinfo_recv(struct tevent_req *req);
207 NTSTATUS cli_setpathinfo(struct cli_state *cli,
208                          uint16_t level,
209                          const char *path,
210                          uint8_t *data,
211                          size_t data_len);
212
213 struct tevent_req *cli_posix_symlink_send(TALLOC_CTX *mem_ctx,
214                                         struct event_context *ev,
215                                         struct cli_state *cli,
216                                         const char *oldname,
217                                         const char *newname);
218 NTSTATUS cli_posix_symlink_recv(struct tevent_req *req);
219 NTSTATUS cli_posix_symlink(struct cli_state *cli,
220                         const char *oldname,
221                         const char *newname);
222 struct tevent_req *cli_posix_readlink_send(TALLOC_CTX *mem_ctx,
223                                         struct event_context *ev,
224                                         struct cli_state *cli,
225                                         const char *fname,
226                                         size_t len);
227 NTSTATUS cli_posix_readlink_recv(struct tevent_req *req, struct cli_state *cli,
228                                 char *retpath, size_t len);
229 NTSTATUS cli_posix_readlink(struct cli_state *cli, const char *fname,
230                         char *linkpath, size_t len);
231 struct tevent_req *cli_posix_hardlink_send(TALLOC_CTX *mem_ctx,
232                                         struct event_context *ev,
233                                         struct cli_state *cli,
234                                         const char *oldname,
235                                         const char *newname);
236 NTSTATUS cli_posix_hardlink_recv(struct tevent_req *req);
237 NTSTATUS cli_posix_hardlink(struct cli_state *cli,
238                         const char *oldname,
239                         const char *newname);
240 uint32_t unix_perms_to_wire(mode_t perms);
241 mode_t wire_perms_to_unix(uint32_t perms);
242 struct tevent_req *cli_posix_getfacl_send(TALLOC_CTX *mem_ctx,
243                                         struct event_context *ev,
244                                         struct cli_state *cli,
245                                         const char *fname);
246 NTSTATUS cli_posix_getfacl_recv(struct tevent_req *req,
247                                 TALLOC_CTX *mem_ctx,
248                                 size_t *prb_size,
249                                 char **retbuf);
250 NTSTATUS cli_posix_getfacl(struct cli_state *cli,
251                         const char *fname,
252                         TALLOC_CTX *mem_ctx,
253                         size_t *prb_size,
254                         char **retbuf);
255 struct tevent_req *cli_posix_stat_send(TALLOC_CTX *mem_ctx,
256                                         struct event_context *ev,
257                                         struct cli_state *cli,
258                                         const char *fname);
259 NTSTATUS cli_posix_stat_recv(struct tevent_req *req,
260                                 SMB_STRUCT_STAT *sbuf);
261 NTSTATUS cli_posix_stat(struct cli_state *cli,
262                         const char *fname,
263                         SMB_STRUCT_STAT *sbuf);
264 struct tevent_req *cli_posix_chmod_send(TALLOC_CTX *mem_ctx,
265                                         struct event_context *ev,
266                                         struct cli_state *cli,
267                                         const char *fname,
268                                         mode_t mode);
269 NTSTATUS cli_posix_chmod_recv(struct tevent_req *req);
270 NTSTATUS cli_posix_chmod(struct cli_state *cli, const char *fname, mode_t mode);
271 struct tevent_req *cli_posix_chown_send(TALLOC_CTX *mem_ctx,
272                                         struct event_context *ev,
273                                         struct cli_state *cli,
274                                         const char *fname,
275                                         uid_t uid,
276                                         gid_t gid);
277 NTSTATUS cli_posix_chown_recv(struct tevent_req *req);
278 NTSTATUS cli_posix_chown(struct cli_state *cli,
279                         const char *fname,
280                         uid_t uid,
281                         gid_t gid);
282 struct tevent_req *cli_rename_send(TALLOC_CTX *mem_ctx,
283                                 struct event_context *ev,
284                                 struct cli_state *cli,
285                                 const char *fname_src,
286                                 const char *fname_dst);
287 NTSTATUS cli_rename_recv(struct tevent_req *req);
288 NTSTATUS cli_rename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
289 struct tevent_req *cli_ntrename_send(TALLOC_CTX *mem_ctx,
290                                 struct event_context *ev,
291                                 struct cli_state *cli,
292                                 const char *fname_src,
293                                 const char *fname_dst);
294 NTSTATUS cli_ntrename_recv(struct tevent_req *req);
295 NTSTATUS cli_ntrename(struct cli_state *cli, const char *fname_src, const char *fname_dst);
296
297 struct tevent_req *cli_nt_hardlink_send(TALLOC_CTX *mem_ctx,
298                                 struct event_context *ev,
299                                 struct cli_state *cli,
300                                 const char *fname_src,
301                                 const char *fname_dst);
302 NTSTATUS cli_nt_hardlink_recv(struct tevent_req *req);
303 NTSTATUS cli_nt_hardlink(struct cli_state *cli, const char *fname_src, const char *fname_dst);
304
305 struct tevent_req *cli_unlink_send(TALLOC_CTX *mem_ctx,
306                                 struct event_context *ev,
307                                 struct cli_state *cli,
308                                 const char *fname,
309                                 uint16_t mayhave_attrs);
310 NTSTATUS cli_unlink_recv(struct tevent_req *req);
311 NTSTATUS cli_unlink(struct cli_state *cli, const char *fname, uint16_t mayhave_attrs);
312
313 struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
314                                   struct event_context *ev,
315                                   struct cli_state *cli,
316                                   const char *dname);
317 NTSTATUS cli_mkdir_recv(struct tevent_req *req);
318 NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname);
319 struct tevent_req *cli_rmdir_send(TALLOC_CTX *mem_ctx,
320                                   struct event_context *ev,
321                                   struct cli_state *cli,
322                                   const char *dname);
323 NTSTATUS cli_rmdir_recv(struct tevent_req *req);
324 NTSTATUS cli_rmdir(struct cli_state *cli, const char *dname);
325 struct tevent_req *cli_nt_delete_on_close_send(TALLOC_CTX *mem_ctx,
326                                         struct event_context *ev,
327                                         struct cli_state *cli,
328                                         uint16_t fnum,
329                                         bool flag);
330 NTSTATUS cli_nt_delete_on_close_recv(struct tevent_req *req);
331 NTSTATUS cli_nt_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag);
332 struct tevent_req *cli_ntcreate_send(TALLOC_CTX *mem_ctx,
333                                      struct event_context *ev,
334                                      struct cli_state *cli,
335                                      const char *fname,
336                                      uint32_t CreatFlags,
337                                      uint32_t DesiredAccess,
338                                      uint32_t FileAttributes,
339                                      uint32_t ShareAccess,
340                                      uint32_t CreateDisposition,
341                                      uint32_t CreateOptions,
342                                      uint8_t SecurityFlags);
343 NTSTATUS cli_ntcreate_recv(struct tevent_req *req, uint16_t *pfnum);
344 NTSTATUS cli_ntcreate(struct cli_state *cli,
345                       const char *fname,
346                       uint32_t CreatFlags,
347                       uint32_t DesiredAccess,
348                       uint32_t FileAttributes,
349                       uint32_t ShareAccess,
350                       uint32_t CreateDisposition,
351                       uint32_t CreateOptions,
352                       uint8_t SecurityFlags,
353                       uint16_t *pfid);
354 uint8_t *smb_bytes_push_str(uint8_t *buf, bool ucs2, const char *str,
355                             size_t str_len, size_t *pconverted_size);
356 uint8_t *smb_bytes_push_bytes(uint8_t *buf, uint8_t prefix,
357                               const uint8_t *bytes, size_t num_bytes);
358 uint8_t *trans2_bytes_push_str(uint8_t *buf, bool ucs2,
359                                const char *str, size_t str_len,
360                                size_t *pconverted_size);
361 uint8_t *trans2_bytes_push_bytes(uint8_t *buf,
362                                  const uint8_t *bytes, size_t num_bytes);
363 struct tevent_req *cli_open_create(TALLOC_CTX *mem_ctx,
364                                    struct event_context *ev,
365                                    struct cli_state *cli, const char *fname,
366                                    int flags, int share_mode,
367                                    struct tevent_req **psmbreq);
368 struct tevent_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
369                                  struct cli_state *cli, const char *fname,
370                                  int flags, int share_mode);
371 NTSTATUS cli_open_recv(struct tevent_req *req, uint16_t *fnum);
372 NTSTATUS cli_open(struct cli_state *cli, const char *fname, int flags, int share_mode, uint16_t *pfnum);
373 struct tevent_req *cli_close_create(TALLOC_CTX *mem_ctx,
374                                     struct event_context *ev,
375                                     struct cli_state *cli, uint16_t fnum,
376                                     struct tevent_req **psubreq);
377 struct tevent_req *cli_close_send(TALLOC_CTX *mem_ctx,
378                                   struct event_context *ev,
379                                   struct cli_state *cli, uint16_t fnum);
380 NTSTATUS cli_close_recv(struct tevent_req *req);
381 NTSTATUS cli_close(struct cli_state *cli, uint16_t fnum);
382 struct tevent_req *cli_ftruncate_send(TALLOC_CTX *mem_ctx,
383                                         struct event_context *ev,
384                                         struct cli_state *cli,
385                                         uint16_t fnum,
386                                         uint64_t size);
387 NTSTATUS cli_ftruncate_recv(struct tevent_req *req);
388 NTSTATUS cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size);
389 NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum,
390                       uint32_t offset, uint32_t len,
391                       int timeout, unsigned char locktype);
392 NTSTATUS cli_lock32(struct cli_state *cli, uint16_t fnum, uint32_t offset,
393                     uint32_t len, int timeout, enum brl_type lock_type);
394 struct tevent_req *cli_unlock_send(TALLOC_CTX *mem_ctx,
395                                 struct event_context *ev,
396                                 struct cli_state *cli,
397                                 uint16_t fnum,
398                                 uint64_t offset,
399                                 uint64_t len);
400 NTSTATUS cli_unlock_recv(struct tevent_req *req);
401 NTSTATUS cli_unlock(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len);
402 NTSTATUS cli_lock64(struct cli_state *cli, uint16_t fnum,
403                     uint64_t offset, uint64_t len, int timeout,
404                     enum brl_type lock_type);
405 struct tevent_req *cli_unlock64_send(TALLOC_CTX *mem_ctx,
406                                 struct event_context *ev,
407                                 struct cli_state *cli,
408                                 uint16_t fnum,
409                                 uint64_t offset,
410                                 uint64_t len);
411 NTSTATUS cli_unlock64_recv(struct tevent_req *req);
412 NTSTATUS cli_unlock64(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
413 struct tevent_req *cli_posix_lock_send(TALLOC_CTX *mem_ctx,
414                                         struct event_context *ev,
415                                         struct cli_state *cli,
416                                         uint16_t fnum,
417                                         uint64_t offset,
418                                         uint64_t len,
419                                         bool wait_lock,
420                                         enum brl_type lock_type);
421 NTSTATUS cli_posix_lock_recv(struct tevent_req *req);
422 NTSTATUS cli_posix_lock(struct cli_state *cli, uint16_t fnum,
423                         uint64_t offset, uint64_t len,
424                         bool wait_lock, enum brl_type lock_type);
425 struct tevent_req *cli_posix_unlock_send(TALLOC_CTX *mem_ctx,
426                                         struct event_context *ev,
427                                         struct cli_state *cli,
428                                         uint16_t fnum,
429                                         uint64_t offset,
430                                         uint64_t len);
431 NTSTATUS cli_posix_unlock_recv(struct tevent_req *req);
432 NTSTATUS cli_posix_unlock(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len);
433 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
434                                 struct event_context *ev,
435                                 struct cli_state *cli,
436                                 uint16_t fnum);
437 NTSTATUS cli_getattrE_recv(struct tevent_req *req,
438                         uint16_t *attr,
439                         SMB_OFF_T *size,
440                         time_t *change_time,
441                         time_t *access_time,
442                         time_t *write_time);
443 NTSTATUS cli_getattrE(struct cli_state *cli,
444                         uint16_t fnum,
445                         uint16_t *attr,
446                         SMB_OFF_T *size,
447                         time_t *change_time,
448                         time_t *access_time,
449                         time_t *write_time);
450 struct tevent_req *cli_setattrE_send(TALLOC_CTX *mem_ctx,
451                                 struct event_context *ev,
452                                 struct cli_state *cli,
453                                 uint16_t fnum,
454                                 time_t change_time,
455                                 time_t access_time,
456                                 time_t write_time);
457 NTSTATUS cli_setattrE_recv(struct tevent_req *req);
458 NTSTATUS cli_setattrE(struct cli_state *cli,
459                         uint16_t fnum,
460                         time_t change_time,
461                         time_t access_time,
462                         time_t write_time);
463 struct tevent_req *cli_getatr_send(TALLOC_CTX *mem_ctx,
464                                 struct event_context *ev,
465                                 struct cli_state *cli,
466                                 const char *fname);
467 NTSTATUS cli_getatr_recv(struct tevent_req *req,
468                                 uint16_t *attr,
469                                 SMB_OFF_T *size,
470                                 time_t *write_time);
471 NTSTATUS cli_getatr(struct cli_state *cli,
472                         const char *fname,
473                         uint16_t *attr,
474                         SMB_OFF_T *size,
475                         time_t *write_time);
476 struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
477                                 struct event_context *ev,
478                                 struct cli_state *cli,
479                                 const char *fname,
480                                 uint16_t attr,
481                                 time_t mtime);
482 NTSTATUS cli_setatr_recv(struct tevent_req *req);
483 NTSTATUS cli_setatr(struct cli_state *cli,
484                 const char *fname,
485                 uint16_t attr,
486                 time_t mtime);
487 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
488                                   struct event_context *ev,
489                                   struct cli_state *cli,
490                                   const char *fname);
491 NTSTATUS cli_chkpath_recv(struct tevent_req *req);
492 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path);
493 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
494                                   struct event_context *ev,
495                                   struct cli_state *cli);
496 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total,
497                           int *avail);
498 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail);
499 struct tevent_req *cli_ctemp_send(TALLOC_CTX *mem_ctx,
500                                 struct event_context *ev,
501                                 struct cli_state *cli,
502                                 const char *path);
503 NTSTATUS cli_ctemp_recv(struct tevent_req *req,
504                         TALLOC_CTX *ctx,
505                         uint16_t *pfnum,
506                         char **outfile);
507 NTSTATUS cli_ctemp(struct cli_state *cli,
508                         TALLOC_CTX *ctx,
509                         const char *path,
510                         uint16_t *pfnum,
511                         char **out_path);
512 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob);
513 NTSTATUS cli_set_ea_path(struct cli_state *cli, const char *path,
514                          const char *ea_name, const char *ea_val,
515                          size_t ea_len);
516 NTSTATUS cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum,
517                          const char *ea_name, const char *ea_val,
518                          size_t ea_len);
519 struct tevent_req *cli_get_ea_list_path_send(TALLOC_CTX *mem_ctx,
520                                              struct tevent_context *ev,
521                                              struct cli_state *cli,
522                                              const char *fname);
523 NTSTATUS cli_get_ea_list_path_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
524                                    size_t *pnum_eas, struct ea_struct **peas);
525 NTSTATUS cli_get_ea_list_path(struct cli_state *cli, const char *path,
526                 TALLOC_CTX *ctx,
527                 size_t *pnum_eas,
528                 struct ea_struct **pea_list);
529 struct tevent_req *cli_posix_open_send(TALLOC_CTX *mem_ctx,
530                                         struct event_context *ev,
531                                         struct cli_state *cli,
532                                         const char *fname,
533                                         int flags,
534                                         mode_t mode);
535 NTSTATUS cli_posix_open_recv(struct tevent_req *req, uint16_t *pfnum);
536 NTSTATUS cli_posix_open(struct cli_state *cli, const char *fname,
537                         int flags, mode_t mode, uint16_t *fnum);
538 struct tevent_req *cli_posix_mkdir_send(TALLOC_CTX *mem_ctx,
539                                         struct event_context *ev,
540                                         struct cli_state *cli,
541                                         const char *fname,
542                                         mode_t mode);
543 NTSTATUS cli_posix_mkdir_recv(struct tevent_req *req);
544 NTSTATUS cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode);
545
546 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
547                                         struct event_context *ev,
548                                         struct cli_state *cli,
549                                         const char *fname);
550 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req);
551 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname);
552
553 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
554                                         struct event_context *ev,
555                                         struct cli_state *cli,
556                                         const char *fname);
557 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx);
558 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname);
559 struct tevent_req *cli_notify_send(TALLOC_CTX *mem_ctx,
560                                    struct tevent_context *ev,
561                                    struct cli_state *cli, uint16_t fnum,
562                                    uint32_t buffer_size,
563                                    uint32_t completion_filter, bool recursive);
564 NTSTATUS cli_notify_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
565                          uint32_t *pnum_changes,
566                          struct notify_change **pchanges);
567
568 struct tevent_req *cli_nttrans_create_send(TALLOC_CTX *mem_ctx,
569                                            struct event_context *ev,
570                                            struct cli_state *cli,
571                                            const char *fname,
572                                            uint32_t CreatFlags,
573                                            uint32_t DesiredAccess,
574                                            uint32_t FileAttributes,
575                                            uint32_t ShareAccess,
576                                            uint32_t CreateDisposition,
577                                            uint32_t CreateOptions,
578                                            uint8_t SecurityFlags,
579                                            struct security_descriptor *secdesc,
580                                            struct ea_struct *eas,
581                                            int num_eas);
582 NTSTATUS cli_nttrans_create_recv(struct tevent_req *req, uint16_t *fnum);
583 NTSTATUS cli_nttrans_create(struct cli_state *cli,
584                             const char *fname,
585                             uint32_t CreatFlags,
586                             uint32_t DesiredAccess,
587                             uint32_t FileAttributes,
588                             uint32_t ShareAccess,
589                             uint32_t CreateDisposition,
590                             uint32_t CreateOptions,
591                             uint8_t SecurityFlags,
592                             struct security_descriptor *secdesc,
593                             struct ea_struct *eas,
594                             int num_eas,
595                             uint16_t *pfid);
596
597 /* The following definitions come from libsmb/clifsinfo.c  */
598
599 struct tevent_req *cli_unix_extensions_version_send(TALLOC_CTX *mem_ctx,
600                                                     struct tevent_context *ev,
601                                                     struct cli_state *cli);
602 NTSTATUS cli_unix_extensions_version_recv(struct tevent_req *req,
603                                           uint16_t *pmajor, uint16_t *pminor,
604                                           uint32_t *pcaplow,
605                                           uint32_t *pcaphigh);
606 NTSTATUS cli_unix_extensions_version(struct cli_state *cli, uint16 *pmajor,
607                                      uint16 *pminor, uint32 *pcaplow,
608                                      uint32 *pcaphigh);
609 struct tevent_req *cli_set_unix_extensions_capabilities_send(
610         TALLOC_CTX *mem_ctx, struct tevent_context *ev, struct cli_state *cli,
611         uint16_t major, uint16_t minor, uint32_t caplow, uint32_t caphigh);
612 NTSTATUS cli_set_unix_extensions_capabilities_recv(struct tevent_req *req);
613 NTSTATUS cli_set_unix_extensions_capabilities(struct cli_state *cli,
614                                               uint16 major, uint16 minor,
615                                               uint32 caplow, uint32 caphigh);
616 struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx,
617                                              struct tevent_context *ev,
618                                              struct cli_state *cli);
619 NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr);
620 NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr);
621 NTSTATUS cli_get_fs_volume_info(struct cli_state *cli,
622                                 TALLOC_CTX *mem_ctx, char **volume_name,
623                                 uint32 *pserial_number, time_t *pdate);
624 NTSTATUS cli_get_fs_full_size_info(struct cli_state *cli,
625                                    uint64_t *total_allocation_units,
626                                    uint64_t *caller_allocation_units,
627                                    uint64_t *actual_allocation_units,
628                                    uint64_t *sectors_per_allocation_unit,
629                                    uint64_t *bytes_per_sector);
630 NTSTATUS cli_get_posix_fs_info(struct cli_state *cli,
631                                uint32 *optimal_transfer_size,
632                                uint32 *block_size,
633                                uint64_t *total_blocks,
634                                uint64_t *blocks_available,
635                                uint64_t *user_blocks_available,
636                                uint64_t *total_file_nodes,
637                                uint64_t *free_file_nodes,
638                                uint64_t *fs_identifier);
639 NTSTATUS cli_raw_ntlm_smb_encryption_start(struct cli_state *cli,
640                                 const char *user,
641                                 const char *pass,
642                                 const char *domain);
643 NTSTATUS cli_gss_smb_encryption_start(struct cli_state *cli);
644 NTSTATUS cli_force_encryption(struct cli_state *c,
645                         const char *username,
646                         const char *password,
647                         const char *domain);
648
649 /* The following definitions come from libsmb/clilist.c  */
650
651 NTSTATUS cli_list_old(struct cli_state *cli,const char *Mask,uint16 attribute,
652                       NTSTATUS (*fn)(const char *, struct file_info *,
653                                  const char *, void *), void *state);
654 NTSTATUS cli_list_trans(struct cli_state *cli, const char *mask,
655                         uint16_t attribute, int info_level,
656                         NTSTATUS (*fn)(const char *mnt, struct file_info *finfo,
657                                    const char *mask, void *private_data),
658                         void *private_data);
659 struct tevent_req *cli_list_send(TALLOC_CTX *mem_ctx,
660                                  struct tevent_context *ev,
661                                  struct cli_state *cli,
662                                  const char *mask,
663                                  uint16_t attribute,
664                                  uint16_t info_level);
665 NTSTATUS cli_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
666                        struct file_info **finfo, size_t *num_finfo);
667 NTSTATUS cli_list(struct cli_state *cli,const char *Mask,uint16 attribute,
668                   NTSTATUS (*fn)(const char *, struct file_info *, const char *,
669                              void *), void *state);
670
671 /* The following definitions come from libsmb/climessage.c  */
672
673 struct tevent_req *cli_message_send(TALLOC_CTX *mem_ctx,
674                                     struct tevent_context *ev,
675                                     struct cli_state *cli,
676                                     const char *host, const char *username,
677                                     const char *message);
678 NTSTATUS cli_message_recv(struct tevent_req *req);
679 NTSTATUS cli_message(struct cli_state *cli, const char *host,
680                      const char *username, const char *message);
681
682 /* The following definitions come from libsmb/clioplock.c  */
683
684 struct tevent_req *cli_oplock_ack_send(TALLOC_CTX *mem_ctx,
685                                        struct tevent_context *ev,
686                                        struct cli_state *cli,
687                                        uint16_t fnum, uint8_t level);
688 NTSTATUS cli_oplock_ack_recv(struct tevent_req *req);
689
690 /* The following definitions come from libsmb/cliprint.c  */
691
692 int cli_print_queue(struct cli_state *cli,
693                     void (*fn)(struct print_job_info *));
694 int cli_printjob_del(struct cli_state *cli, int job);
695
696 /* The following definitions come from libsmb/cliquota.c  */
697
698 NTSTATUS cli_get_quota_handle(struct cli_state *cli, uint16_t *quota_fnum);
699 void free_ntquota_list(SMB_NTQUOTA_LIST **qt_list);
700 NTSTATUS cli_get_user_quota(struct cli_state *cli, int quota_fnum,
701                             SMB_NTQUOTA_STRUCT *pqt);
702 NTSTATUS cli_set_user_quota(struct cli_state *cli, int quota_fnum,
703                             SMB_NTQUOTA_STRUCT *pqt);
704 NTSTATUS cli_list_user_quota(struct cli_state *cli, int quota_fnum,
705                              SMB_NTQUOTA_LIST **pqt_list);
706 NTSTATUS cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum,
707                                SMB_NTQUOTA_STRUCT *pqt);
708 NTSTATUS cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum,
709                                SMB_NTQUOTA_STRUCT *pqt);
710
711 /* The following definitions come from libsmb/clireadwrite.c  */
712
713 struct tevent_req *cli_read_andx_create(TALLOC_CTX *mem_ctx,
714                                         struct event_context *ev,
715                                         struct cli_state *cli, uint16_t fnum,
716                                         off_t offset, size_t size,
717                                         struct tevent_req **psmbreq);
718 struct tevent_req *cli_read_andx_send(TALLOC_CTX *mem_ctx,
719                                       struct event_context *ev,
720                                       struct cli_state *cli, uint16_t fnum,
721                                       off_t offset, size_t size);
722 NTSTATUS cli_read_andx_recv(struct tevent_req *req, ssize_t *received,
723                             uint8_t **rcvbuf);
724 struct tevent_req *cli_pull_send(TALLOC_CTX *mem_ctx,
725                                  struct event_context *ev,
726                                  struct cli_state *cli,
727                                  uint16_t fnum, off_t start_offset,
728                                  SMB_OFF_T size, size_t window_size,
729                                  NTSTATUS (*sink)(char *buf, size_t n,
730                                                   void *priv),
731                                  void *priv);
732 NTSTATUS cli_pull_recv(struct tevent_req *req, SMB_OFF_T *received);
733 NTSTATUS cli_pull(struct cli_state *cli, uint16_t fnum,
734                   off_t start_offset, SMB_OFF_T size, size_t window_size,
735                   NTSTATUS (*sink)(char *buf, size_t n, void *priv),
736                   void *priv, SMB_OFF_T *received);
737 ssize_t cli_read(struct cli_state *cli, uint16_t fnum, char *buf,
738                  off_t offset, size_t size);
739 NTSTATUS cli_smbwrite(struct cli_state *cli, uint16_t fnum, char *buf,
740                       off_t offset, size_t size1, size_t *ptotal);
741 struct tevent_req *cli_write_andx_create(TALLOC_CTX *mem_ctx,
742                                          struct event_context *ev,
743                                          struct cli_state *cli, uint16_t fnum,
744                                          uint16_t mode, const uint8_t *buf,
745                                          off_t offset, size_t size,
746                                          struct tevent_req **reqs_before,
747                                          int num_reqs_before,
748                                          struct tevent_req **psmbreq);
749 struct tevent_req *cli_write_andx_send(TALLOC_CTX *mem_ctx,
750                                        struct event_context *ev,
751                                        struct cli_state *cli, uint16_t fnum,
752                                        uint16_t mode, const uint8_t *buf,
753                                        off_t offset, size_t size);
754 NTSTATUS cli_write_andx_recv(struct tevent_req *req, size_t *pwritten);
755
756 NTSTATUS cli_writeall(struct cli_state *cli, uint16_t fnum, uint16_t mode,
757                       const uint8_t *buf, off_t offset, size_t size,
758                       size_t *pwritten);
759
760 struct tevent_req *cli_push_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
761                                  struct cli_state *cli,
762                                  uint16_t fnum, uint16_t mode,
763                                  off_t start_offset, size_t window_size,
764                                  size_t (*source)(uint8_t *buf, size_t n,
765                                                   void *priv),
766                                  void *priv);
767 NTSTATUS cli_push_recv(struct tevent_req *req);
768 NTSTATUS cli_push(struct cli_state *cli, uint16_t fnum, uint16_t mode,
769                   off_t start_offset, size_t window_size,
770                   size_t (*source)(uint8_t *buf, size_t n, void *priv),
771                   void *priv);
772
773 /* The following definitions come from libsmb/clisecdesc.c  */
774
775 struct security_descriptor *cli_query_secdesc(struct cli_state *cli, uint16_t fnum,
776                             TALLOC_CTX *mem_ctx);
777 NTSTATUS cli_set_secdesc(struct cli_state *cli, uint16_t fnum,
778                          struct security_descriptor *sd);
779
780 /* The following definitions come from libsmb/clistr.c  */
781
782 size_t clistr_pull_talloc(TALLOC_CTX *ctx,
783                           const char *base,
784                           uint16_t flags2,
785                           char **pp_dest,
786                           const void *src,
787                           int src_len,
788                           int flags);
789
790 /* The following definitions come from libsmb/clitrans.c  */
791
792 struct tevent_req *cli_trans_send(
793         TALLOC_CTX *mem_ctx, struct event_context *ev,
794         struct cli_state *cli, uint8_t cmd,
795         const char *pipe_name, uint16_t fid, uint16_t function, int flags,
796         uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
797         uint8_t *param, uint32_t num_param, uint32_t max_param,
798         uint8_t *data, uint32_t num_data, uint32_t max_data);
799 NTSTATUS cli_trans_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
800                         uint16_t *recv_flags2,
801                         uint16_t **setup, uint8_t min_setup,
802                         uint8_t *num_setup,
803                         uint8_t **param, uint32_t min_param,
804                         uint32_t *num_param,
805                         uint8_t **data, uint32_t min_data,
806                         uint32_t *num_data);
807 NTSTATUS cli_trans(TALLOC_CTX *mem_ctx, struct cli_state *cli,
808                    uint8_t trans_cmd,
809                    const char *pipe_name, uint16_t fid, uint16_t function,
810                    int flags,
811                    uint16_t *setup, uint8_t num_setup, uint8_t max_setup,
812                    uint8_t *param, uint32_t num_param, uint32_t max_param,
813                    uint8_t *data, uint32_t num_data, uint32_t max_data,
814                    uint16_t *recv_flags2,
815                    uint16_t **rsetup, uint8_t min_rsetup, uint8_t *num_rsetup,
816                    uint8_t **rparam, uint32_t min_rparam, uint32_t *num_rparam,
817                    uint8_t **rdata, uint32_t min_rdata, uint32_t *num_rdata);
818
819 /* The following definitions come from libsmb/smb_seal.c  */
820
821 NTSTATUS get_enc_ctx_num(const uint8_t *buf, uint16 *p_enc_ctx_num);
822 bool common_encryption_on(struct smb_trans_enc_state *es);
823 NTSTATUS common_ntlm_decrypt_buffer(struct ntlmssp_state *ntlmssp_state, char *buf);
824 NTSTATUS common_ntlm_encrypt_buffer(struct ntlmssp_state *ntlmssp_state,
825                                 uint16 enc_ctx_num,
826                                 char *buf,
827                                 char **ppbuf_out);
828 NTSTATUS common_encrypt_buffer(struct smb_trans_enc_state *es, char *buffer, char **buf_out);
829 NTSTATUS common_decrypt_buffer(struct smb_trans_enc_state *es, char *buf);
830 void common_free_encryption_state(struct smb_trans_enc_state **pp_es);
831 void common_free_enc_buffer(struct smb_trans_enc_state *es, char *buf);
832 bool cli_encryption_on(struct cli_state *cli);
833 void cli_free_encryption_context(struct cli_state *cli);
834 void cli_free_enc_buffer(struct cli_state *cli, char *buf);
835
836 /* The following definitions come from libsmb/clisigning.c  */
837
838 bool cli_simple_set_signing(struct cli_state *cli,
839                             const DATA_BLOB user_session_key,
840                             const DATA_BLOB response);
841 bool cli_temp_set_signing(struct cli_state *cli);
842 void cli_calculate_sign_mac(struct cli_state *cli, char *buf, uint32_t *seqnum);
843 bool cli_check_sign_mac(struct cli_state *cli, const char *buf, uint32_t seqnum);
844 bool client_is_signing_on(struct cli_state *cli);
845 bool client_is_signing_allowed(struct cli_state *cli);
846 bool client_is_signing_mandatory(struct cli_state *cli);
847 void cli_set_signing_negotiated(struct cli_state *cli);
848
849 /* The following definitions come from libsmb/reparse_symlink.c  */
850
851 bool symlink_reparse_buffer_marshall(
852         const char *substitute, const char *printname, uint32_t flags,
853         TALLOC_CTX *mem_ctx, uint8_t **pdst, size_t *pdstlen);
854 bool symlink_reparse_buffer_parse(
855         const uint8_t *src, size_t srclen, TALLOC_CTX *mem_ctx,
856         char **psubstitute_name, char **pprint_name, uint32_t *pflags);
857
858 /* The following definitions come from libsmb/clisymlink.c  */
859
860 struct tevent_req *cli_symlink_send(TALLOC_CTX *mem_ctx,
861                                     struct tevent_context *ev,
862                                     struct cli_state *cli,
863                                     const char *oldpath,
864                                     const char *newpath,
865                                     uint32_t flags);
866 NTSTATUS cli_symlink_recv(struct tevent_req *req);
867 NTSTATUS cli_symlink(struct cli_state *cli, const char *oldname,
868                      const char *newname, uint32_t flags);
869
870 struct tevent_req *cli_readlink_send(TALLOC_CTX *mem_ctx,
871                                      struct tevent_context *ev,
872                                      struct cli_state *cli,
873                                      const char *fname);
874 NTSTATUS cli_readlink_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
875                            char **psubstitute_name, char **pprint_name,
876                            uint32_t *pflags);
877 NTSTATUS cli_readlink(struct cli_state *cli, const char *fname,
878                        TALLOC_CTX *mem_ctx, char **psubstitute_name,
879                       char **pprint_name, uint32_t *pflags);
880
881 #endif /* _LIBSMB_PROTO_H_ */