2 Unix SMB/CIFS implementation.
3 smb2 wrapper client routines
4 Copyright (C) Jeremy Allison 2013
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.
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.
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/>.
20 #ifndef __SMB2CLI_FNUM_H__
21 #define __SMB2CLI_FNUM_H__
24 struct smbXcli_session
;
28 struct tevent_req
*cli_smb2_create_fnum_send(TALLOC_CTX
*mem_ctx
,
29 struct tevent_context
*ev
,
30 struct cli_state
*cli
,
32 uint32_t create_flags
,
33 uint32_t desired_access
,
34 uint32_t file_attributes
,
35 uint32_t share_access
,
36 uint32_t create_disposition
,
37 uint32_t create_options
);
38 NTSTATUS
cli_smb2_create_fnum_recv(struct tevent_req
*req
, uint16_t *pfnum
,
39 struct smb_create_returns
*cr
);
40 NTSTATUS
cli_smb2_create_fnum(struct cli_state
*cli
,
42 uint32_t create_flags
,
43 uint32_t desired_access
,
44 uint32_t file_attributes
,
45 uint32_t share_access
,
46 uint32_t create_disposition
,
47 uint32_t create_options
,
49 struct smb_create_returns
*cr
);
51 struct tevent_req
*cli_smb2_close_fnum_send(TALLOC_CTX
*mem_ctx
,
52 struct tevent_context
*ev
,
53 struct cli_state
*cli
,
55 NTSTATUS
cli_smb2_close_fnum_recv(struct tevent_req
*req
);
56 NTSTATUS
cli_smb2_close_fnum(struct cli_state
*cli
, uint16_t fnum
);
57 NTSTATUS
cli_smb2_mkdir(struct cli_state
*cli
, const char *dirname
);
58 NTSTATUS
cli_smb2_rmdir(struct cli_state
*cli
, const char *dirname
);
59 NTSTATUS
cli_smb2_unlink(struct cli_state
*cli
,const char *fname
);
60 NTSTATUS
cli_smb2_list(struct cli_state
*cli
,
63 NTSTATUS (*fn
)(const char *,
68 NTSTATUS
cli_smb2_qpathinfo_basic(struct cli_state
*cli
,
70 SMB_STRUCT_STAT
*sbuf
,
71 uint32_t *attributes
);
72 NTSTATUS
cli_smb2_qpathinfo_alt_name(struct cli_state
*cli
,
75 NTSTATUS
cli_smb2_qfileinfo_basic(struct cli_state
*cli
,
79 struct timespec
*create_time
,
80 struct timespec
*access_time
,
81 struct timespec
*write_time
,
82 struct timespec
*change_time
,
84 NTSTATUS
cli_smb2_getattrE(struct cli_state
*cli
,
91 NTSTATUS
cli_smb2_getatr(struct cli_state
*cli
,
96 NTSTATUS
cli_smb2_qpathinfo2(struct cli_state
*cli
,
98 struct timespec
*create_time
,
99 struct timespec
*access_time
,
100 struct timespec
*write_time
,
101 struct timespec
*change_time
,
105 NTSTATUS
cli_smb2_qpathinfo_streams(struct cli_state
*cli
,
108 unsigned int *pnum_streams
,
109 struct stream_struct
**pstreams
);
110 NTSTATUS
cli_smb2_setatr(struct cli_state
*cli
,
114 NTSTATUS
cli_smb2_setattrE(struct cli_state
*cli
,
119 NTSTATUS
cli_smb2_dskattr(struct cli_state
*cli
,
123 NTSTATUS
cli_smb2_query_security_descriptor(struct cli_state
*cli
,
127 struct security_descriptor
**ppsd
);
128 NTSTATUS
cli_smb2_set_security_descriptor(struct cli_state
*cli
,
131 const struct security_descriptor
*sd
);
132 NTSTATUS
cli_smb2_rename(struct cli_state
*cli
,
133 const char *fname_src
,
134 const char *fname_dst
);
135 NTSTATUS
cli_smb2_set_ea_fnum(struct cli_state
*cli
,
140 NTSTATUS
cli_smb2_get_ea_list_path(struct cli_state
*cli
,
144 struct ea_struct
**pea_list
);
145 NTSTATUS
cli_smb2_set_ea_path(struct cli_state
*cli
,
150 struct tevent_req
*cli_smb2_read_send(TALLOC_CTX
*mem_ctx
,
151 struct tevent_context
*ev
,
152 struct cli_state
*cli
,
156 NTSTATUS
cli_smb2_read_recv(struct tevent_req
*req
,
159 struct tevent_req
*cli_smb2_write_send(TALLOC_CTX
*mem_ctx
,
160 struct tevent_context
*ev
,
161 struct cli_state
*cli
,
167 NTSTATUS
cli_smb2_write_recv(struct tevent_req
*req
,
169 struct tevent_req
*cli_smb2_writeall_send(TALLOC_CTX
*mem_ctx
,
170 struct tevent_context
*ev
,
171 struct cli_state
*cli
,
177 NTSTATUS
cli_smb2_writeall_recv(struct tevent_req
*req
,
179 #endif /* __SMB2CLI_FNUM_H__ */