2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
25 #include "../lib/util/tevent_ntstatus.h"
28 #define DBGC_CLASS DBGC_SMB2
30 static struct tevent_req
*smbd_smb2_close_send(TALLOC_CTX
*mem_ctx
,
31 struct tevent_context
*ev
,
32 struct smbd_smb2_request
*smb2req
,
33 struct files_struct
*in_fsp
,
35 static NTSTATUS
smbd_smb2_close_recv(struct tevent_req
*req
,
37 struct timespec
*out_creation_ts
,
38 struct timespec
*out_last_access_ts
,
39 struct timespec
*out_last_write_ts
,
40 struct timespec
*out_change_ts
,
41 uint64_t *out_allocation_size
,
42 uint64_t *out_end_of_file
,
43 uint32_t *out_file_attributes
);
45 static void smbd_smb2_request_close_done(struct tevent_req
*subreq
);
47 NTSTATUS
smbd_smb2_request_process_close(struct smbd_smb2_request
*req
)
49 const uint8_t *inbody
;
51 uint64_t in_file_id_persistent
;
52 uint64_t in_file_id_volatile
;
53 struct files_struct
*in_fsp
;
55 struct tevent_req
*subreq
;
57 status
= smbd_smb2_request_verify_sizes(req
, 0x18);
58 if (!NT_STATUS_IS_OK(status
)) {
59 return smbd_smb2_request_error(req
, status
);
61 inbody
= SMBD_SMB2_IN_BODY_PTR(req
);
63 in_flags
= SVAL(inbody
, 0x02);
64 in_file_id_persistent
= BVAL(inbody
, 0x08);
65 in_file_id_volatile
= BVAL(inbody
, 0x10);
67 in_fsp
= file_fsp_smb2(req
, in_file_id_persistent
, in_file_id_volatile
);
69 return smbd_smb2_request_error(req
, NT_STATUS_FILE_CLOSED
);
72 subreq
= smbd_smb2_close_send(req
, req
->sconn
->ev_ctx
,
73 req
, in_fsp
, in_flags
);
75 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
77 tevent_req_set_callback(subreq
, smbd_smb2_request_close_done
, req
);
79 return smbd_smb2_request_pending_queue(req
, subreq
, 500);
82 static void smbd_smb2_request_close_done(struct tevent_req
*subreq
)
84 struct smbd_smb2_request
*req
=
85 tevent_req_callback_data(subreq
,
86 struct smbd_smb2_request
);
88 uint16_t out_flags
= 0;
89 connection_struct
*conn
= req
->tcon
->compat
;
90 struct timespec out_creation_ts
= { 0, };
91 struct timespec out_last_access_ts
= { 0, };
92 struct timespec out_last_write_ts
= { 0, };
93 struct timespec out_change_ts
= { 0, };
94 uint64_t out_allocation_size
= 0;
95 uint64_t out_end_of_file
= 0;
96 uint32_t out_file_attributes
= 0;
100 status
= smbd_smb2_close_recv(subreq
,
106 &out_allocation_size
,
108 &out_file_attributes
);
110 if (!NT_STATUS_IS_OK(status
)) {
111 error
= smbd_smb2_request_error(req
, status
);
112 if (!NT_STATUS_IS_OK(error
)) {
113 smbd_server_connection_terminate(req
->xconn
,
120 outbody
= smbd_smb2_generate_outbody(req
, 0x3C);
121 if (outbody
.data
== NULL
) {
122 error
= smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
123 if (!NT_STATUS_IS_OK(error
)) {
124 smbd_server_connection_terminate(req
->xconn
,
131 SSVAL(outbody
.data
, 0x00, 0x3C); /* struct size */
132 SSVAL(outbody
.data
, 0x02, out_flags
);
133 SIVAL(outbody
.data
, 0x04, 0); /* reserved */
134 put_long_date_full_timespec(conn
->ts_res
,
135 (char *)outbody
.data
+ 0x08, &out_creation_ts
);
136 put_long_date_full_timespec(conn
->ts_res
,
137 (char *)outbody
.data
+ 0x10, &out_last_access_ts
);
138 put_long_date_full_timespec(conn
->ts_res
,
139 (char *)outbody
.data
+ 0x18, &out_last_write_ts
);
140 put_long_date_full_timespec(conn
->ts_res
,
141 (char *)outbody
.data
+ 0x20, &out_change_ts
);
142 SBVAL(outbody
.data
, 0x28, out_allocation_size
);
143 SBVAL(outbody
.data
, 0x30, out_end_of_file
);
144 SIVAL(outbody
.data
, 0x38, out_file_attributes
);
146 error
= smbd_smb2_request_done(req
, outbody
, NULL
);
147 if (!NT_STATUS_IS_OK(error
)) {
148 smbd_server_connection_terminate(req
->xconn
,
154 static void setup_close_full_information(connection_struct
*conn
,
155 struct smb_filename
*smb_fname
,
156 struct timespec
*out_creation_ts
,
157 struct timespec
*out_last_access_ts
,
158 struct timespec
*out_last_write_ts
,
159 struct timespec
*out_change_ts
,
161 uint64_t *out_allocation_size
,
162 uint64_t *out_end_of_file
)
164 *out_flags
= SMB2_CLOSE_FLAGS_FULL_INFORMATION
;
165 *out_last_write_ts
= smb_fname
->st
.st_ex_mtime
;
166 *out_last_access_ts
= smb_fname
->st
.st_ex_atime
;
167 *out_creation_ts
= get_create_timespec(conn
, NULL
, smb_fname
);
168 *out_change_ts
= get_change_timespec(conn
, NULL
, smb_fname
);
170 if (lp_dos_filetime_resolution(SNUM(conn
))) {
171 dos_filetime_timespec(out_creation_ts
);
172 dos_filetime_timespec(out_last_write_ts
);
173 dos_filetime_timespec(out_last_access_ts
);
174 dos_filetime_timespec(out_change_ts
);
176 if (!S_ISDIR(smb_fname
->st
.st_ex_mode
)) {
177 *out_end_of_file
= get_file_size_stat(&smb_fname
->st
);
180 *out_allocation_size
= SMB_VFS_GET_ALLOC_SIZE(conn
, NULL
, &smb_fname
->st
);
183 static NTSTATUS
smbd_smb2_close(struct smbd_smb2_request
*req
,
184 struct files_struct
**_fsp
,
187 struct timespec
*out_creation_ts
,
188 struct timespec
*out_last_access_ts
,
189 struct timespec
*out_last_write_ts
,
190 struct timespec
*out_change_ts
,
191 uint64_t *out_allocation_size
,
192 uint64_t *out_end_of_file
,
193 uint32_t *out_file_attributes
)
196 struct smb_request
*smbreq
;
197 connection_struct
*conn
= req
->tcon
->compat
;
198 struct files_struct
*fsp
= *_fsp
;
199 struct smb_filename
*smb_fname
= NULL
;
201 *out_creation_ts
= (struct timespec
){0, SAMBA_UTIME_OMIT
};
202 *out_last_access_ts
= (struct timespec
){0, SAMBA_UTIME_OMIT
};
203 *out_last_write_ts
= (struct timespec
){0, SAMBA_UTIME_OMIT
};
204 *out_change_ts
= (struct timespec
){0, SAMBA_UTIME_OMIT
};
207 *out_allocation_size
= 0;
208 *out_end_of_file
= 0;
209 *out_file_attributes
= 0;
211 DEBUG(10,("smbd_smb2_close: %s - %s\n",
212 fsp_str_dbg(fsp
), fsp_fnum_dbg(fsp
)));
214 smbreq
= smbd_smb2_fake_smb_request(req
, fsp
);
215 if (smbreq
== NULL
) {
216 return NT_STATUS_NO_MEMORY
;
219 if (in_flags
& SMB2_CLOSE_FLAGS_FULL_INFORMATION
) {
220 *out_file_attributes
= fdos_mode(fsp
);
221 fsp
->fsp_flags
.fstat_before_close
= true;
224 status
= close_file_smb(smbreq
, fsp
, NORMAL_CLOSE
);
225 if (!NT_STATUS_IS_OK(status
)) {
226 DEBUG(5,("smbd_smb2_close: close_file[%s]: %s\n",
227 smb_fname_str_dbg(smb_fname
), nt_errstr(status
)));
228 file_free(smbreq
, fsp
);
233 if (in_flags
& SMB2_CLOSE_FLAGS_FULL_INFORMATION
) {
234 setup_close_full_information(conn
,
245 file_free(smbreq
, fsp
);
250 struct smbd_smb2_close_state
{
251 struct smbd_smb2_request
*smb2req
;
252 struct files_struct
*in_fsp
;
255 struct timespec out_creation_ts
;
256 struct timespec out_last_access_ts
;
257 struct timespec out_last_write_ts
;
258 struct timespec out_change_ts
;
259 uint64_t out_allocation_size
;
260 uint64_t out_end_of_file
;
261 uint32_t out_file_attributes
;
262 struct tevent_queue
*wait_queue
;
265 static void smbd_smb2_close_wait_done(struct tevent_req
*subreq
);
267 static struct tevent_req
*smbd_smb2_close_send(TALLOC_CTX
*mem_ctx
,
268 struct tevent_context
*ev
,
269 struct smbd_smb2_request
*smb2req
,
270 struct files_struct
*in_fsp
,
273 struct tevent_req
*req
;
274 struct smbd_smb2_close_state
*state
;
275 const char *fsp_name_str
= NULL
;
276 const char *fsp_fnum_str
= NULL
;
280 if (CHECK_DEBUGLVL(DBGLVL_INFO
)) {
281 fsp_name_str
= fsp_str_dbg(in_fsp
);
282 fsp_fnum_str
= fsp_fnum_dbg(in_fsp
);
285 DBG_DEBUG("%s - %s\n", fsp_name_str
, fsp_fnum_str
);
287 req
= tevent_req_create(mem_ctx
, &state
,
288 struct smbd_smb2_close_state
);
292 state
->smb2req
= smb2req
;
293 state
->in_fsp
= in_fsp
;
294 state
->in_flags
= in_flags
;
296 in_fsp
->fsp_flags
.closing
= true;
299 while (i
< in_fsp
->num_aio_requests
) {
300 bool ok
= tevent_req_cancel(in_fsp
->aio_requests
[i
]);
307 if (in_fsp
->num_aio_requests
!= 0) {
308 struct tevent_req
*subreq
;
310 state
->wait_queue
= tevent_queue_create(state
,
311 "smbd_smb2_close_send_wait_queue");
312 if (tevent_req_nomem(state
->wait_queue
, req
)) {
313 return tevent_req_post(req
, ev
);
316 * Now wait until all aio requests on this fsp are
319 * We don't set a callback, as we just want to block the
320 * wait queue and the talloc_free() of fsp->aio_request
321 * will remove the item from the wait queue.
323 subreq
= tevent_queue_wait_send(in_fsp
->aio_requests
,
324 smb2req
->sconn
->ev_ctx
,
326 if (tevent_req_nomem(subreq
, req
)) {
327 return tevent_req_post(req
, ev
);
331 * Now we add our own waiter to the end of the queue,
332 * this way we get notified when all pending requests are
335 subreq
= tevent_queue_wait_send(state
,
336 smb2req
->sconn
->ev_ctx
,
338 if (tevent_req_nomem(subreq
, req
)) {
339 return tevent_req_post(req
, ev
);
342 tevent_req_set_callback(subreq
, smbd_smb2_close_wait_done
, req
);
346 status
= smbd_smb2_close(smb2req
,
350 &state
->out_creation_ts
,
351 &state
->out_last_access_ts
,
352 &state
->out_last_write_ts
,
353 &state
->out_change_ts
,
354 &state
->out_allocation_size
,
355 &state
->out_end_of_file
,
356 &state
->out_file_attributes
);
357 if (tevent_req_nterror(req
, status
)) {
358 DBG_INFO("%s - %s: close file failed: %s\n",
359 fsp_name_str
, fsp_fnum_str
,
361 return tevent_req_post(req
, ev
);
364 tevent_req_done(req
);
365 return tevent_req_post(req
, ev
);
368 static void smbd_smb2_close_wait_done(struct tevent_req
*subreq
)
370 struct tevent_req
*req
= tevent_req_callback_data(
371 subreq
, struct tevent_req
);
372 struct smbd_smb2_close_state
*state
= tevent_req_data(
373 req
, struct smbd_smb2_close_state
);
376 tevent_queue_wait_recv(subreq
);
379 status
= smbd_smb2_close(state
->smb2req
,
383 &state
->out_creation_ts
,
384 &state
->out_last_access_ts
,
385 &state
->out_last_write_ts
,
386 &state
->out_change_ts
,
387 &state
->out_allocation_size
,
388 &state
->out_end_of_file
,
389 &state
->out_file_attributes
);
390 if (tevent_req_nterror(req
, status
)) {
393 tevent_req_done(req
);
396 static NTSTATUS
smbd_smb2_close_recv(struct tevent_req
*req
,
398 struct timespec
*out_creation_ts
,
399 struct timespec
*out_last_access_ts
,
400 struct timespec
*out_last_write_ts
,
401 struct timespec
*out_change_ts
,
402 uint64_t *out_allocation_size
,
403 uint64_t *out_end_of_file
,
404 uint32_t *out_file_attributes
)
406 struct smbd_smb2_close_state
*state
=
408 struct smbd_smb2_close_state
);
411 if (tevent_req_is_nterror(req
, &status
)) {
412 tevent_req_received(req
);
416 *out_flags
= state
->out_flags
;
417 *out_creation_ts
= state
->out_creation_ts
;
418 *out_last_access_ts
= state
->out_last_access_ts
;
419 *out_last_write_ts
= state
->out_last_write_ts
;
420 *out_change_ts
= state
->out_change_ts
;
421 *out_allocation_size
= state
->out_allocation_size
;
422 *out_end_of_file
= state
->out_end_of_file
;
423 *out_file_attributes
= state
->out_file_attributes
;
425 tevent_req_received(req
);