s3: Slightly simplify is_stat_open
[Samba/gebeck_regimport.git] / source4 / libcli / smb2 / getinfo.c
blob14d911683e7296777bd0f334e1c8034d4d715b47
1 /*
2 Unix SMB/CIFS implementation.
4 SMB2 client getinfo calls
6 Copyright (C) Andrew Tridgell 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "libcli/raw/libcliraw.h"
24 #include "libcli/raw/raw_proto.h"
25 #include "libcli/smb2/smb2.h"
26 #include "libcli/smb2/smb2_calls.h"
29 send a getinfo request
31 struct smb2_request *smb2_getinfo_send(struct smb2_tree *tree, struct smb2_getinfo *io)
33 struct smb2_request *req;
34 NTSTATUS status;
36 req = smb2_request_init_tree(tree, SMB2_OP_GETINFO, 0x28, true,
37 io->in.blob.length);
38 if (req == NULL) return NULL;
40 SCVAL(req->out.body, 0x02, io->in.info_type);
41 SCVAL(req->out.body, 0x03, io->in.info_class);
42 SIVAL(req->out.body, 0x04, io->in.output_buffer_length);
43 SIVAL(req->out.body, 0x0C, io->in.reserved);
44 SIVAL(req->out.body, 0x08, io->in.input_buffer_length);
45 SIVAL(req->out.body, 0x10, io->in.additional_information);
46 SIVAL(req->out.body, 0x14, io->in.getinfo_flags);
47 smb2_push_handle(req->out.body+0x18, &io->in.file.handle);
49 /* this blob is used for quota queries */
50 status = smb2_push_o32s32_blob(&req->out, 0x08, io->in.blob);
51 if (!NT_STATUS_IS_OK(status)) {
52 talloc_free(req);
53 return NULL;
55 smb2_transport_send(req);
57 return req;
62 recv a getinfo reply
64 NTSTATUS smb2_getinfo_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
65 struct smb2_getinfo *io)
67 NTSTATUS status;
69 if (!smb2_request_receive(req) ||
70 smb2_request_is_error(req)) {
71 return smb2_request_destroy(req);
74 SMB2_CHECK_PACKET_RECV(req, 0x08, true);
76 status = smb2_pull_o16s16_blob(&req->in, mem_ctx, req->in.body+0x02, &io->out.blob);
77 if (!NT_STATUS_IS_OK(status)) {
78 return status;
81 return smb2_request_destroy(req);
85 sync getinfo request
87 NTSTATUS smb2_getinfo(struct smb2_tree *tree, TALLOC_CTX *mem_ctx,
88 struct smb2_getinfo *io)
90 struct smb2_request *req = smb2_getinfo_send(tree, io);
91 return smb2_getinfo_recv(req, mem_ctx, io);
96 map a generic info level to a SMB2 info level
98 uint16_t smb2_getinfo_map_level(uint16_t level, uint8_t info_class)
100 if (info_class == SMB2_GETINFO_FILE &&
101 level == RAW_FILEINFO_SEC_DESC) {
102 return SMB2_GETINFO_SECURITY;
104 if ((level & 0xFF) == info_class) {
105 return level;
106 } else if (level > 1000) {
107 return ((level-1000)<<8) | info_class;
109 DEBUG(0,("Unable to map SMB2 info level 0x%04x of class %d\n",
110 level, info_class));
111 return 0;
115 level specific getinfo call - async send
117 struct smb2_request *smb2_getinfo_file_send(struct smb2_tree *tree, union smb_fileinfo *io)
119 struct smb2_getinfo b;
120 uint16_t smb2_level = smb2_getinfo_map_level(io->generic.level, SMB2_GETINFO_FILE);
122 if (smb2_level == 0) {
123 return NULL;
126 ZERO_STRUCT(b);
127 b.in.info_type = smb2_level & 0xFF;
128 b.in.info_class = smb2_level >> 8;
129 b.in.output_buffer_length = 0x10000;
130 b.in.input_buffer_length = 0;
131 b.in.file.handle = io->generic.in.file.handle;
133 if (io->generic.level == RAW_FILEINFO_SEC_DESC) {
134 b.in.additional_information = io->query_secdesc.in.secinfo_flags;
136 if (io->generic.level == RAW_FILEINFO_SMB2_ALL_EAS) {
137 b.in.getinfo_flags = io->all_eas.in.continue_flags;
140 return smb2_getinfo_send(tree, &b);
144 recv a getinfo reply and parse the level info
146 NTSTATUS smb2_getinfo_file_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
147 union smb_fileinfo *io)
149 struct smb2_getinfo b;
150 NTSTATUS status;
152 status = smb2_getinfo_recv(req, mem_ctx, &b);
153 NT_STATUS_NOT_OK_RETURN(status);
155 status = smb_raw_fileinfo_passthru_parse(&b.out.blob, mem_ctx, io->generic.level, io);
156 data_blob_free(&b.out.blob);
158 return status;
162 level specific getinfo call
164 NTSTATUS smb2_getinfo_file(struct smb2_tree *tree, TALLOC_CTX *mem_ctx,
165 union smb_fileinfo *io)
167 struct smb2_request *req = smb2_getinfo_file_send(tree, io);
168 return smb2_getinfo_file_recv(req, mem_ctx, io);
173 level specific getinfo call - async send
175 struct smb2_request *smb2_getinfo_fs_send(struct smb2_tree *tree, union smb_fsinfo *io)
177 struct smb2_getinfo b;
178 uint16_t smb2_level = smb2_getinfo_map_level(io->generic.level, SMB2_GETINFO_FS);
180 if (smb2_level == 0) {
181 return NULL;
184 ZERO_STRUCT(b);
185 b.in.output_buffer_length = 0x10000;
186 b.in.file.handle = io->generic.handle;
187 b.in.info_type = smb2_level & 0xFF;
188 b.in.info_class = smb2_level >> 8;
190 return smb2_getinfo_send(tree, &b);
194 recv a getinfo reply and parse the level info
196 NTSTATUS smb2_getinfo_fs_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
197 union smb_fsinfo *io)
199 struct smb2_getinfo b;
200 NTSTATUS status;
202 status = smb2_getinfo_recv(req, mem_ctx, &b);
203 NT_STATUS_NOT_OK_RETURN(status);
205 status = smb_raw_fsinfo_passthru_parse(b.out.blob, mem_ctx, io->generic.level, io);
206 data_blob_free(&b.out.blob);
208 return status;
212 level specific getinfo call
214 NTSTATUS smb2_getinfo_fs(struct smb2_tree *tree, TALLOC_CTX *mem_ctx,
215 union smb_fsinfo *io)
217 struct smb2_request *req = smb2_getinfo_fs_send(tree, io);
218 return smb2_getinfo_fs_recv(req, mem_ctx, io);