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