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 NTSTATUS
cli_smb2_create_fnum(struct cli_state
*cli
,
30 uint32_t create_flags
,
31 uint32_t desired_access
,
32 uint32_t file_attributes
,
33 uint32_t share_access
,
34 uint32_t create_disposition
,
35 uint32_t create_options
,
37 struct smb_create_returns
*cr
);
39 NTSTATUS
cli_smb2_close_fnum(struct cli_state
*cli
, uint16_t fnum
);
40 NTSTATUS
cli_smb2_mkdir(struct cli_state
*cli
, const char *dirname
);
41 NTSTATUS
cli_smb2_rmdir(struct cli_state
*cli
, const char *dirname
);
42 NTSTATUS
cli_smb2_unlink(struct cli_state
*cli
,const char *fname
);
43 NTSTATUS
cli_smb2_list(struct cli_state
*cli
,
46 NTSTATUS (*fn
)(const char *,
51 NTSTATUS
cli_smb2_qpathinfo_basic(struct cli_state
*cli
,
53 SMB_STRUCT_STAT
*sbuf
,
54 uint32_t *attributes
);
55 NTSTATUS
cli_smb2_qpathinfo_alt_name(struct cli_state
*cli
,
58 NTSTATUS
cli_smb2_qfileinfo_basic(struct cli_state
*cli
,
62 struct timespec
*create_time
,
63 struct timespec
*access_time
,
64 struct timespec
*write_time
,
65 struct timespec
*change_time
,
67 NTSTATUS
cli_smb2_getattrE(struct cli_state
*cli
,
74 NTSTATUS
cli_smb2_getatr(struct cli_state
*cli
,
79 NTSTATUS
cli_smb2_qpathinfo2(struct cli_state
*cli
,
81 struct timespec
*create_time
,
82 struct timespec
*access_time
,
83 struct timespec
*write_time
,
84 struct timespec
*change_time
,
88 NTSTATUS
cli_smb2_qpathinfo_streams(struct cli_state
*cli
,
91 unsigned int *pnum_streams
,
92 struct stream_struct
**pstreams
);
93 NTSTATUS
cli_smb2_setatr(struct cli_state
*cli
,
97 NTSTATUS
cli_smb2_setattrE(struct cli_state
*cli
,
102 NTSTATUS
cli_smb2_dskattr(struct cli_state
*cli
,
106 NTSTATUS
cli_smb2_query_security_descriptor(struct cli_state
*cli
,
110 struct security_descriptor
**ppsd
);
111 NTSTATUS
cli_smb2_set_security_descriptor(struct cli_state
*cli
,
114 const struct security_descriptor
*sd
);
115 NTSTATUS
cli_smb2_rename(struct cli_state
*cli
,
116 const char *fname_src
,
117 const char *fname_dst
);
118 NTSTATUS
cli_smb2_set_ea_fnum(struct cli_state
*cli
,
123 NTSTATUS
cli_smb2_get_ea_list_path(struct cli_state
*cli
,
127 struct ea_struct
**pea_list
);
128 NTSTATUS
cli_smb2_set_ea_path(struct cli_state
*cli
,
133 struct tevent_req
*cli_smb2_read_send(TALLOC_CTX
*mem_ctx
,
134 struct tevent_context
*ev
,
135 struct cli_state
*cli
,
139 NTSTATUS
cli_smb2_read_recv(struct tevent_req
*req
,
142 struct tevent_req
*cli_smb2_write_send(TALLOC_CTX
*mem_ctx
,
143 struct tevent_context
*ev
,
144 struct cli_state
*cli
,
150 NTSTATUS
cli_smb2_write_recv(struct tevent_req
*req
,
152 struct tevent_req
*cli_smb2_writeall_send(TALLOC_CTX
*mem_ctx
,
153 struct tevent_context
*ev
,
154 struct cli_state
*cli
,
160 NTSTATUS
cli_smb2_writeall_recv(struct tevent_req
*req
,
162 #endif /* __SMB2CLI_FNUM_H__ */