libsmb: Remove unused cli_smb2_set_reparse_point_fnum_send/recv
[samba.git] / source3 / libsmb / cli_smb2_fnum.h
1 /*
2    Unix SMB/CIFS implementation.
3    smb2 wrapper client routines
4    Copyright (C) Jeremy Allison 2013
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef __SMB2CLI_FNUM_H__
21 #define __SMB2CLI_FNUM_H__
22
23 struct smbXcli_conn;
24 struct smbXcli_session;
25 struct cli_state;
26 struct file_info;
27
28 struct tevent_req *cli_smb2_create_fnum_send(
29         TALLOC_CTX *mem_ctx,
30         struct tevent_context *ev,
31         struct cli_state *cli,
32         const char *fname,
33         uint32_t create_flags,
34         uint32_t impersonation_level,
35         uint32_t desired_access,
36         uint32_t file_attributes,
37         uint32_t share_access,
38         uint32_t create_disposition,
39         uint32_t create_options,
40         const struct smb2_create_blobs *in_cblobs);
41 NTSTATUS cli_smb2_create_fnum_recv(
42         struct tevent_req *req,
43         uint16_t *pfnum,
44         struct smb_create_returns *cr,
45         TALLOC_CTX *mem_ctx,
46         struct smb2_create_blobs *out_cblobs);
47 NTSTATUS cli_smb2_create_fnum(
48         struct cli_state *cli,
49         const char *fname,
50         uint32_t create_flags,
51         uint32_t impersonation_level,
52         uint32_t desired_access,
53         uint32_t file_attributes,
54         uint32_t share_access,
55         uint32_t create_disposition,
56         uint32_t create_options,
57         const struct smb2_create_blobs *in_cblobs,
58         uint16_t *pfid,
59         struct smb_create_returns *cr,
60         TALLOC_CTX *mem_ctx,
61         struct smb2_create_blobs *out_cblobs);
62
63 struct tevent_req *cli_smb2_close_fnum_send(TALLOC_CTX *mem_ctx,
64                                             struct tevent_context *ev,
65                                             struct cli_state *cli,
66                                             uint16_t fnum);
67 NTSTATUS cli_smb2_close_fnum_recv(struct tevent_req *req);
68 NTSTATUS cli_smb2_close_fnum(struct cli_state *cli, uint16_t fnum);
69 struct tevent_req *cli_smb2_delete_on_close_send(TALLOC_CTX *mem_ctx,
70                                         struct tevent_context *ev,
71                                         struct cli_state *cli,
72                                         uint16_t fnum,
73                                         bool flag);
74 NTSTATUS cli_smb2_delete_on_close_recv(struct tevent_req *req);
75 NTSTATUS cli_smb2_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag);
76 struct tevent_req *cli_smb2_mkdir_send(
77         TALLOC_CTX *mem_ctx,
78         struct tevent_context *ev,
79         struct cli_state *cli,
80         const char *name);
81 NTSTATUS cli_smb2_mkdir_recv(struct tevent_req *req);
82 struct tevent_req *cli_smb2_rmdir_send(
83         TALLOC_CTX *mem_ctx,
84         struct tevent_context *ev,
85         struct cli_state *cli,
86         const char *dname,
87         const struct smb2_create_blobs *in_cblobs);
88 NTSTATUS cli_smb2_rmdir_recv(struct tevent_req *req);
89 struct tevent_req *cli_smb2_unlink_send(
90         TALLOC_CTX *mem_ctx,
91         struct tevent_context *ev,
92         struct cli_state *cli,
93         const char *fname,
94         const struct smb2_create_blobs *in_cblobs);
95 NTSTATUS cli_smb2_unlink_recv(struct tevent_req *req);
96 struct tevent_req *cli_smb2_list_send(
97         TALLOC_CTX *mem_ctx,
98         struct tevent_context *ev,
99         struct cli_state *cli,
100         const char *pathname);
101 NTSTATUS cli_smb2_list_recv(
102         struct tevent_req *req,
103         TALLOC_CTX *mem_ctx,
104         struct file_info **pfinfo);
105 NTSTATUS cli_smb2_qpathinfo_basic(struct cli_state *cli,
106                         const char *name,
107                         SMB_STRUCT_STAT *sbuf,
108                         uint32_t *attributes);
109 NTSTATUS cli_smb2_qpathinfo_alt_name(struct cli_state *cli,
110                         const char *name,
111                         fstring alt_name);
112 struct tevent_req *cli_smb2_query_info_fnum_send(
113         TALLOC_CTX *mem_ctx,
114         struct tevent_context *ev,
115         struct cli_state *cli,
116         uint16_t fnum,
117         uint8_t in_info_type,
118         uint8_t in_info_class,
119         uint32_t in_max_output_length,
120         const DATA_BLOB *in_input_buffer,
121         uint32_t in_additional_info,
122         uint32_t in_flags);
123 NTSTATUS cli_smb2_query_info_fnum_recv(
124         struct tevent_req *req, TALLOC_CTX *mem_ctx, DATA_BLOB *outbuf);
125 struct tevent_req *cli_smb2_set_info_fnum_send(
126         TALLOC_CTX *mem_ctx,
127         struct tevent_context *ev,
128         struct cli_state *cli,
129         uint16_t fnum,
130         uint8_t in_info_type,
131         uint8_t in_info_class,
132         const DATA_BLOB *in_input_buffer,
133         uint32_t in_additional_info);
134 NTSTATUS cli_smb2_set_info_fnum_recv(struct tevent_req *req);
135 NTSTATUS cli_smb2_set_info_fnum(
136         struct cli_state *cli,
137         uint16_t fnum,
138         uint8_t in_info_type,
139         uint8_t in_info_class,
140         const DATA_BLOB *in_input_buffer,
141         uint32_t in_additional_info);
142 NTSTATUS cli_smb2_query_info_fnum(
143         struct cli_state *cli,
144         uint16_t fnum,
145         uint8_t in_info_type,
146         uint8_t in_info_class,
147         uint32_t in_max_output_length,
148         const DATA_BLOB *in_input_buffer,
149         uint32_t in_additional_info,
150         uint32_t in_flags,
151         TALLOC_CTX *mem_ctx,
152         DATA_BLOB *outbuf);
153 NTSTATUS cli_smb2_getatr(struct cli_state *cli,
154                         const char *name,
155                         uint32_t *pattr,
156                         off_t *size,
157                         time_t *write_time);
158 NTSTATUS cli_smb2_qpathinfo2(struct cli_state *cli,
159                         const char *fname,
160                         struct timespec *create_time,
161                         struct timespec *access_time,
162                         struct timespec *write_time,
163                         struct timespec *change_time,
164                         off_t *size,
165                         uint32_t *pattr,
166                         SMB_INO_T *ino);
167 NTSTATUS cli_smb2_qpathinfo_streams(struct cli_state *cli,
168                         const char *name,
169                         TALLOC_CTX *mem_ctx,
170                         unsigned int *pnum_streams,
171                         struct stream_struct **pstreams);
172 NTSTATUS cli_smb2_setpathinfo(struct cli_state *cli,
173                         const char *name,
174                         uint8_t in_info_type,
175                         uint8_t in_file_info_class,
176                         const DATA_BLOB *p_in_data);
177 NTSTATUS cli_smb2_setatr(struct cli_state *cli,
178                         const char *fname,
179                         uint32_t attr,
180                         time_t mtime);
181 NTSTATUS cli_smb2_setattrE(struct cli_state *cli,
182                         uint16_t fnum,
183                         time_t change_time,
184                         time_t access_time,
185                         time_t write_time);
186 NTSTATUS cli_smb2_dskattr(struct cli_state *cli,
187                         const char *path,
188                         uint64_t *bsize,
189                         uint64_t *total,
190                         uint64_t *avail);
191 NTSTATUS cli_smb2_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr);
192 NTSTATUS cli_smb2_get_fs_full_size_info(struct cli_state *cli,
193                         uint64_t *total_allocation_units,
194                         uint64_t *caller_allocation_units,
195                         uint64_t *actual_allocation_units,
196                         uint64_t *sectors_per_allocation_unit,
197                         uint64_t *bytes_per_sector);
198 NTSTATUS cli_smb2_get_fs_volume_info(struct cli_state *cli,
199                         TALLOC_CTX *mem_ctx,
200                         char **_volume_name,
201                         uint32_t *pserial_number,
202                         time_t *pdate);
203 struct tevent_req *cli_smb2_query_mxac_send(TALLOC_CTX *mem_ctx,
204                                             struct tevent_context *ev,
205                                             struct cli_state *cli,
206                                             const char *fname);
207 NTSTATUS cli_smb2_query_mxac_recv(struct tevent_req *req,
208                                   uint32_t *mxac);
209 NTSTATUS cli_smb2_query_mxac(struct cli_state *cli,
210                              const char *fname,
211                              uint32_t *mxac);
212 struct tevent_req *cli_smb2_rename_send(
213         TALLOC_CTX *mem_ctx,
214         struct tevent_context *ev,
215         struct cli_state *cli,
216         const char *fname_src,
217         const char *fname_dst,
218         bool replace);
219 NTSTATUS cli_smb2_rename_recv(struct tevent_req *req);
220 NTSTATUS cli_smb2_set_ea_fnum(struct cli_state *cli,
221                         uint16_t fnum,
222                         const char *ea_name,
223                         const char *ea_val,
224                         size_t ea_len);
225 NTSTATUS cli_smb2_get_ea_list_path(struct cli_state *cli,
226                         const char *name,
227                         TALLOC_CTX *ctx,
228                         size_t *pnum_eas,
229                         struct ea_struct **pea_list);
230 NTSTATUS cli_smb2_set_ea_path(struct cli_state *cli,
231                         const char *name,
232                         const char *ea_name,
233                         const char *ea_val,
234                         size_t ea_len);
235 NTSTATUS cli_smb2_get_user_quota(struct cli_state *cli,
236                                  int quota_fnum,
237                                  SMB_NTQUOTA_STRUCT *pqt);
238 NTSTATUS cli_smb2_list_user_quota_step(struct cli_state *cli,
239                                        TALLOC_CTX *mem_ctx,
240                                        int quota_fnum,
241                                        SMB_NTQUOTA_LIST **pqt_list,
242                                        bool first);
243 NTSTATUS cli_smb2_get_fs_quota_info(struct cli_state *cli,
244                                     int quota_fnum,
245                                     SMB_NTQUOTA_STRUCT *pqt);
246 NTSTATUS cli_smb2_set_user_quota(struct cli_state *cli,
247                                  int quota_fnum,
248                                  SMB_NTQUOTA_LIST *qtl);
249 NTSTATUS cli_smb2_set_fs_quota_info(struct cli_state *cli,
250                                     int quota_fnum,
251                                     SMB_NTQUOTA_STRUCT *pqt);
252 struct tevent_req *cli_smb2_read_send(TALLOC_CTX *mem_ctx,
253                                 struct tevent_context *ev,
254                                 struct cli_state *cli,
255                                 uint16_t fnum,
256                                 off_t offset,
257                                 size_t size);
258 NTSTATUS cli_smb2_read_recv(struct tevent_req *req,
259                                 ssize_t *received,
260                                 uint8_t **rcvbuf);
261 struct tevent_req *cli_smb2_write_send(TALLOC_CTX *mem_ctx,
262                                         struct tevent_context *ev,
263                                         struct cli_state *cli,
264                                         uint16_t fnum,
265                                         uint16_t mode,
266                                         const uint8_t *buf,
267                                         off_t offset,
268                                         size_t size);
269 NTSTATUS cli_smb2_write_recv(struct tevent_req *req,
270                              size_t *pwritten);
271 struct tevent_req *cli_smb2_writeall_send(TALLOC_CTX *mem_ctx,
272                         struct tevent_context *ev,
273                         struct cli_state *cli,
274                         uint16_t fnum,
275                         uint16_t mode,
276                         const uint8_t *buf,
277                         off_t offset,
278                         size_t size);
279 NTSTATUS cli_smb2_writeall_recv(struct tevent_req *req,
280                         size_t *pwritten);
281 struct tevent_req *cli_smb2_splice_send(TALLOC_CTX *mem_ctx,
282                         struct tevent_context *ev,
283                         struct cli_state *cli,
284                         uint16_t src_fnum, uint16_t dst_fnum,
285                         off_t size, off_t src_offset, off_t dst_offset,
286                         int (*splice_cb)(off_t n, void *priv), void *priv);
287 NTSTATUS cli_smb2_splice_recv(struct tevent_req *req, off_t *written);
288 NTSTATUS cli_smb2_shadow_copy_data(TALLOC_CTX *mem_ctx,
289                         struct cli_state *cli,
290                         uint16_t fnum,
291                         bool get_names,
292                         char ***pnames,
293                         int *pnum_names);
294 NTSTATUS cli_smb2_ftruncate(struct cli_state *cli,
295                         uint16_t fnum,
296                         uint64_t newsize);
297 struct tevent_req *cli_smb2_notify_send(
298         TALLOC_CTX *mem_ctx,
299         struct tevent_context *ev,
300         struct cli_state *cli,
301         uint16_t fnum,
302         uint32_t buffer_size,
303         uint32_t completion_filter,
304         bool recursive);
305 NTSTATUS cli_smb2_notify_recv(struct tevent_req *req,
306                               TALLOC_CTX *mem_ctx,
307                               struct notify_change **pchanges,
308                               uint32_t *pnum_changes);
309 NTSTATUS cli_smb2_notify(struct cli_state *cli, uint16_t fnum,
310                          uint32_t buffer_size, uint32_t completion_filter,
311                          bool recursive, TALLOC_CTX *mem_ctx,
312                          struct notify_change **pchanges,
313                          uint32_t *pnum_changes);
314
315 struct tevent_req *cli_smb2_fsctl_send(
316         TALLOC_CTX *mem_ctx,
317         struct tevent_context *ev,
318         struct cli_state *cli,
319         uint16_t fnum,
320         uint32_t ctl_code,
321         const DATA_BLOB *in,
322         uint32_t max_out);
323 NTSTATUS cli_smb2_fsctl_recv(
324         struct tevent_req *req, TALLOC_CTX *mem_ctx, DATA_BLOB *out);
325
326 #endif /* __SMB2CLI_FNUM_H__ */