Revert "smbd: explain that/why we use the raw tevent_context for lease_timeout_handler()"
[garming/samba-autobuild/.git] / source3 / smbd / smb2_getinfo.c
1 /*
2    Unix SMB/CIFS implementation.
3    Core SMB2 server
4
5    Copyright (C) Stefan Metzmacher 2009
6    Copyright (C) Jeremy Allison 2010
7
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.
12
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.
17
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/>.
20 */
21
22 #include "includes.h"
23 #include "smbd/smbd.h"
24 #include "smbd/globals.h"
25 #include "../libcli/smb/smb_common.h"
26 #include "trans2.h"
27 #include "../lib/util/tevent_ntstatus.h"
28 #include "librpc/gen_ndr/ndr_quota.h"
29 #include "librpc/gen_ndr/ndr_security.h"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_SMB2
33
34 static struct tevent_req *smbd_smb2_getinfo_send(TALLOC_CTX *mem_ctx,
35                                                  struct tevent_context *ev,
36                                                  struct smbd_smb2_request *smb2req,
37                                                  struct files_struct *in_fsp,
38                                                  uint8_t in_info_type,
39                                                  uint8_t in_file_info_class,
40                                                  uint32_t in_output_buffer_length,
41                                                  DATA_BLOB in_input_buffer,
42                                                  uint32_t in_additional_information,
43                                                  uint32_t in_flags);
44 static NTSTATUS smbd_smb2_getinfo_recv(struct tevent_req *req,
45                                        TALLOC_CTX *mem_ctx,
46                                        DATA_BLOB *out_output_buffer,
47                                        NTSTATUS *p_call_status);
48
49 static void smbd_smb2_request_getinfo_done(struct tevent_req *subreq);
50 NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req)
51 {
52         struct smbXsrv_connection *xconn = req->xconn;
53         NTSTATUS status;
54         const uint8_t *inbody;
55         uint8_t in_info_type;
56         uint8_t in_file_info_class;
57         uint32_t in_output_buffer_length;
58         uint16_t in_input_buffer_offset;
59         uint32_t in_input_buffer_length;
60         DATA_BLOB in_input_buffer;
61         uint32_t in_additional_information;
62         uint32_t in_flags;
63         uint64_t in_file_id_persistent;
64         uint64_t in_file_id_volatile;
65         struct files_struct *in_fsp;
66         struct tevent_req *subreq;
67
68         status = smbd_smb2_request_verify_sizes(req, 0x29);
69         if (!NT_STATUS_IS_OK(status)) {
70                 return smbd_smb2_request_error(req, status);
71         }
72         inbody = SMBD_SMB2_IN_BODY_PTR(req);
73
74         in_info_type                    = CVAL(inbody, 0x02);
75         in_file_info_class              = CVAL(inbody, 0x03);
76         in_output_buffer_length         = IVAL(inbody, 0x04);
77         in_input_buffer_offset          = SVAL(inbody, 0x08);
78         /* 0x0A 2 bytes reserved */
79         in_input_buffer_length          = IVAL(inbody, 0x0C);
80         in_additional_information       = IVAL(inbody, 0x10);
81         in_flags                        = IVAL(inbody, 0x14);
82         in_file_id_persistent           = BVAL(inbody, 0x18);
83         in_file_id_volatile             = BVAL(inbody, 0x20);
84
85         if (in_input_buffer_offset == 0 && in_input_buffer_length == 0) {
86                 /* This is ok */
87         } else if (in_input_buffer_offset !=
88                    (SMB2_HDR_BODY + SMBD_SMB2_IN_BODY_LEN(req))) {
89                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
90         }
91
92         if (in_input_buffer_length > SMBD_SMB2_IN_DYN_LEN(req)) {
93                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
94         }
95
96         in_input_buffer.data = SMBD_SMB2_IN_DYN_PTR(req);
97         in_input_buffer.length = in_input_buffer_length;
98
99         if (in_input_buffer.length > xconn->smb2.server.max_trans) {
100                 DEBUG(2,("smbd_smb2_request_process_getinfo: "
101                          "client ignored max trans: %s: 0x%08X: 0x%08X\n",
102                          __location__, (unsigned)in_input_buffer.length,
103                          (unsigned)xconn->smb2.server.max_trans));
104                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
105         }
106         if (in_output_buffer_length > xconn->smb2.server.max_trans) {
107                 DEBUG(2,("smbd_smb2_request_process_getinfo: "
108                          "client ignored max trans: %s: 0x%08X: 0x%08X\n",
109                          __location__, in_output_buffer_length,
110                          xconn->smb2.server.max_trans));
111                 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
112         }
113
114         status = smbd_smb2_request_verify_creditcharge(req,
115                         MAX(in_input_buffer.length,in_output_buffer_length));
116         if (!NT_STATUS_IS_OK(status)) {
117                 return smbd_smb2_request_error(req, status);
118         }
119
120         in_fsp = file_fsp_smb2(req, in_file_id_persistent, in_file_id_volatile);
121         if (in_fsp == NULL) {
122                 return smbd_smb2_request_error(req, NT_STATUS_FILE_CLOSED);
123         }
124
125         subreq = smbd_smb2_getinfo_send(req, req->sconn->ev_ctx,
126                                         req, in_fsp,
127                                         in_info_type,
128                                         in_file_info_class,
129                                         in_output_buffer_length,
130                                         in_input_buffer,
131                                         in_additional_information,
132                                         in_flags);
133         if (subreq == NULL) {
134                 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
135         }
136         tevent_req_set_callback(subreq, smbd_smb2_request_getinfo_done, req);
137
138         return smbd_smb2_request_pending_queue(req, subreq, 500);
139 }
140
141 static void smbd_smb2_request_getinfo_done(struct tevent_req *subreq)
142 {
143         struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
144                                         struct smbd_smb2_request);
145         DATA_BLOB outbody;
146         DATA_BLOB outdyn;
147         uint16_t out_output_buffer_offset;
148         DATA_BLOB out_output_buffer = data_blob_null;
149         NTSTATUS status;
150         NTSTATUS call_status = NT_STATUS_OK;
151         NTSTATUS error; /* transport error */
152
153         status = smbd_smb2_getinfo_recv(subreq,
154                                         req,
155                                         &out_output_buffer,
156                                         &call_status);
157         TALLOC_FREE(subreq);
158         if (!NT_STATUS_IS_OK(status)) {
159                 error = smbd_smb2_request_error(req, status);
160                 if (!NT_STATUS_IS_OK(error)) {
161                         smbd_server_connection_terminate(req->xconn,
162                                                          nt_errstr(error));
163                         return;
164                 }
165                 return;
166         }
167
168         /* some GetInfo responses set STATUS_BUFFER_OVERFLOW and return partial,
169            but valid data */
170         if (!(NT_STATUS_IS_OK(call_status) ||
171               NT_STATUS_EQUAL(call_status, STATUS_BUFFER_OVERFLOW))) {
172                 /* Return a specific error with data. */
173                 error = smbd_smb2_request_error_ex(req,
174                                                 call_status,
175                                                 &out_output_buffer,
176                                                 __location__);
177                 if (!NT_STATUS_IS_OK(error)) {
178                         smbd_server_connection_terminate(req->xconn,
179                                                          nt_errstr(error));
180                         return;
181                 }
182                 return;
183         }
184
185         out_output_buffer_offset = SMB2_HDR_BODY + 0x08;
186
187         outbody = smbd_smb2_generate_outbody(req, 0x08);
188         if (outbody.data == NULL) {
189                 error = smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
190                 if (!NT_STATUS_IS_OK(error)) {
191                         smbd_server_connection_terminate(req->xconn,
192                                                          nt_errstr(error));
193                         return;
194                 }
195                 return;
196         }
197
198         SSVAL(outbody.data, 0x00, 0x08 + 1);    /* struct size */
199         SSVAL(outbody.data, 0x02,
200               out_output_buffer_offset);        /* output buffer offset */
201         SIVAL(outbody.data, 0x04,
202               out_output_buffer.length);        /* output buffer length */
203
204         outdyn = out_output_buffer;
205
206         error = smbd_smb2_request_done_ex(req, call_status, outbody, &outdyn, __location__);
207         if (!NT_STATUS_IS_OK(error)) {
208                 smbd_server_connection_terminate(req->xconn,
209                                                  nt_errstr(error));
210                 return;
211         }
212 }
213
214 struct smbd_smb2_getinfo_state {
215         struct smbd_smb2_request *smb2req;
216         NTSTATUS status;
217         DATA_BLOB out_output_buffer;
218 };
219
220 static void smb2_ipc_getinfo(struct tevent_req *req,
221                                 struct smbd_smb2_getinfo_state *state,
222                                 struct tevent_context *ev,
223                                 uint8_t in_info_type,
224                                 uint8_t in_file_info_class)
225 {
226         /* We want to reply to SMB2_GETINFO_FILE
227            with a class of SMB2_FILE_STANDARD_INFO as
228            otherwise a Win7 client issues this request
229            twice (2xroundtrips) if we return NOT_SUPPORTED.
230            NB. We do the same for SMB1 in call_trans2qpipeinfo() */
231
232         if (in_info_type == 0x01 && /* SMB2_GETINFO_FILE */
233                         in_file_info_class == 0x05) { /* SMB2_FILE_STANDARD_INFO */
234                 state->out_output_buffer = data_blob_talloc(state,
235                                                 NULL, 24);
236                 if (tevent_req_nomem(state->out_output_buffer.data, req)) {
237                         return;
238                 }
239
240                 memset(state->out_output_buffer.data,0,24);
241                 SOFF_T(state->out_output_buffer.data,0,4096LL);
242                 SIVAL(state->out_output_buffer.data,16,1);
243                 SIVAL(state->out_output_buffer.data,20,1);
244                 tevent_req_done(req);
245         } else {
246                 tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);
247         }
248 }
249
250 static struct tevent_req *smbd_smb2_getinfo_send(TALLOC_CTX *mem_ctx,
251                                                  struct tevent_context *ev,
252                                                  struct smbd_smb2_request *smb2req,
253                                                  struct files_struct *fsp,
254                                                  uint8_t in_info_type,
255                                                  uint8_t in_file_info_class,
256                                                  uint32_t in_output_buffer_length,
257                                                  DATA_BLOB in_input_buffer,
258                                                  uint32_t in_additional_information,
259                                                  uint32_t in_flags)
260 {
261         struct tevent_req *req;
262         struct smbd_smb2_getinfo_state *state;
263         struct smb_request *smbreq;
264         connection_struct *conn = smb2req->tcon->compat;
265         NTSTATUS status;
266
267         req = tevent_req_create(mem_ctx, &state,
268                                 struct smbd_smb2_getinfo_state);
269         if (req == NULL) {
270                 return NULL;
271         }
272         state->smb2req = smb2req;
273         state->status = NT_STATUS_OK;
274         state->out_output_buffer = data_blob_null;
275
276         DEBUG(10,("smbd_smb2_getinfo_send: %s - %s\n",
277                   fsp_str_dbg(fsp), fsp_fnum_dbg(fsp)));
278
279         smbreq = smbd_smb2_fake_smb_request(smb2req);
280         if (tevent_req_nomem(smbreq, req)) {
281                 return tevent_req_post(req, ev);
282         }
283
284         if (IS_IPC(conn)) {
285                 smb2_ipc_getinfo(req, state, ev,
286                         in_info_type, in_file_info_class);
287                 return tevent_req_post(req, ev);
288         }
289
290         switch (in_info_type) {
291         case SMB2_GETINFO_FILE:
292         {
293                 uint16_t file_info_level;
294                 char *data = NULL;
295                 unsigned int data_size = 0;
296                 bool delete_pending = false;
297                 struct timespec write_time_ts;
298                 struct file_id fileid;
299                 struct ea_list *ea_list = NULL;
300                 int lock_data_count = 0;
301                 char *lock_data = NULL;
302                 size_t fixed_portion;
303
304                 ZERO_STRUCT(write_time_ts);
305
306                 switch (in_file_info_class) {
307                 case 0x0F:/* RAW_FILEINFO_SMB2_ALL_EAS */
308                         file_info_level = 0xFF00 | in_file_info_class;
309                         break;
310
311                 case 0x12:/* RAW_FILEINFO_SMB2_ALL_INFORMATION */
312                         file_info_level = 0xFF00 | in_file_info_class;
313                         break;
314
315                 default:
316                         /* the levels directly map to the passthru levels */
317                         file_info_level = in_file_info_class + 1000;
318                         break;
319                 }
320
321                 if (fsp->fake_file_handle) {
322                         /*
323                          * This is actually for the QUOTA_FAKE_FILE --metze
324                          */
325
326                         /* We know this name is ok, it's already passed the checks. */
327
328                 } else if (fsp->fh->fd == -1) {
329                         /*
330                          * This is actually a QFILEINFO on a directory
331                          * handle (returned from an NT SMB). NT5.0 seems
332                          * to do this call. JRA.
333                          */
334
335                         if (INFO_LEVEL_IS_UNIX(file_info_level)) {
336                                 /* Always do lstat for UNIX calls. */
337                                 if (SMB_VFS_LSTAT(conn, fsp->fsp_name)) {
338                                         DEBUG(3,("smbd_smb2_getinfo_send: "
339                                                  "SMB_VFS_LSTAT of %s failed "
340                                                  "(%s)\n", fsp_str_dbg(fsp),
341                                                  strerror(errno)));
342                                         status = map_nt_error_from_unix(errno);
343                                         tevent_req_nterror(req, status);
344                                         return tevent_req_post(req, ev);
345                                 }
346                         } else if (SMB_VFS_STAT(conn, fsp->fsp_name)) {
347                                 DEBUG(3,("smbd_smb2_getinfo_send: "
348                                          "SMB_VFS_STAT of %s failed (%s)\n",
349                                          fsp_str_dbg(fsp),
350                                          strerror(errno)));
351                                 status = map_nt_error_from_unix(errno);
352                                 tevent_req_nterror(req, status);
353                                 return tevent_req_post(req, ev);
354                         }
355
356                         if (lp_smbd_getinfo_ask_sharemode(SNUM(conn))) {
357                                 fileid = vfs_file_id_from_sbuf(
358                                         conn, &fsp->fsp_name->st);
359                                 get_file_infos(fileid, fsp->name_hash,
360                                                &delete_pending,
361                                                &write_time_ts);
362                         }
363                 } else {
364                         /*
365                          * Original code - this is an open file.
366                          */
367
368                         if (SMB_VFS_FSTAT(fsp, &fsp->fsp_name->st) != 0) {
369                                 DEBUG(3, ("smbd_smb2_getinfo_send: "
370                                           "fstat of %s failed (%s)\n",
371                                           fsp_fnum_dbg(fsp), strerror(errno)));
372                                 status = map_nt_error_from_unix(errno);
373                                 tevent_req_nterror(req, status);
374                                 return tevent_req_post(req, ev);
375                         }
376                         if (lp_smbd_getinfo_ask_sharemode(SNUM(conn))) {
377                                 fileid = vfs_file_id_from_sbuf(
378                                         conn, &fsp->fsp_name->st);
379                                 get_file_infos(fileid, fsp->name_hash,
380                                                &delete_pending,
381                                                &write_time_ts);
382                         }
383                 }
384
385                 status = smbd_do_qfilepathinfo(conn, state,
386                                                file_info_level,
387                                                fsp,
388                                                fsp->fsp_name,
389                                                delete_pending,
390                                                write_time_ts,
391                                                ea_list,
392                                                lock_data_count,
393                                                lock_data,
394                                                STR_UNICODE,
395                                                in_output_buffer_length,
396                                                &fixed_portion,
397                                                &data,
398                                                &data_size);
399                 if (!NT_STATUS_IS_OK(status)) {
400                         SAFE_FREE(data);
401                         if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_LEVEL)) {
402                                 status = NT_STATUS_INVALID_INFO_CLASS;
403                         }
404                         tevent_req_nterror(req, status);
405                         return tevent_req_post(req, ev);
406                 }
407                 if (in_output_buffer_length < fixed_portion) {
408                         SAFE_FREE(data);
409                         tevent_req_nterror(
410                                 req, NT_STATUS_INFO_LENGTH_MISMATCH);
411                         return tevent_req_post(req, ev);
412                 }
413                 if (data_size > 0) {
414                         state->out_output_buffer = data_blob_talloc(state,
415                                                                     data,
416                                                                     data_size);
417                         SAFE_FREE(data);
418                         if (tevent_req_nomem(state->out_output_buffer.data, req)) {
419                                 return tevent_req_post(req, ev);
420                         }
421                         if (data_size > in_output_buffer_length) {
422                                 state->out_output_buffer.length =
423                                         in_output_buffer_length;
424                                 status = STATUS_BUFFER_OVERFLOW;
425                         }
426                 }
427                 SAFE_FREE(data);
428                 break;
429         }
430
431         case SMB2_GETINFO_FS:
432         {
433                 uint16_t file_info_level;
434                 char *data = NULL;
435                 int data_size = 0;
436                 size_t fixed_portion;
437
438                 /* the levels directly map to the passthru levels */
439                 file_info_level = in_file_info_class + 1000;
440
441                 status = smbd_do_qfsinfo(smb2req->xconn, conn, state,
442                                          file_info_level,
443                                          STR_UNICODE,
444                                          in_output_buffer_length,
445                                          &fixed_portion,
446                                          fsp->fsp_name,
447                                          &data,
448                                          &data_size);
449                 /* some responses set STATUS_BUFFER_OVERFLOW and return
450                    partial, but valid data */
451                 if (!(NT_STATUS_IS_OK(status) ||
452                       NT_STATUS_EQUAL(status, STATUS_BUFFER_OVERFLOW))) {
453                         SAFE_FREE(data);
454                         if (NT_STATUS_EQUAL(status, NT_STATUS_INVALID_LEVEL)) {
455                                 status = NT_STATUS_INVALID_INFO_CLASS;
456                         }
457                         tevent_req_nterror(req, status);
458                         return tevent_req_post(req, ev);
459                 }
460                 if (in_output_buffer_length < fixed_portion) {
461                         SAFE_FREE(data);
462                         tevent_req_nterror(
463                                 req, NT_STATUS_INFO_LENGTH_MISMATCH);
464                         return tevent_req_post(req, ev);
465                 }
466                 if (data_size > 0) {
467                         state->out_output_buffer = data_blob_talloc(state,
468                                                                     data,
469                                                                     data_size);
470                         SAFE_FREE(data);
471                         if (tevent_req_nomem(state->out_output_buffer.data, req)) {
472                                 return tevent_req_post(req, ev);
473                         }
474                         if (data_size > in_output_buffer_length) {
475                                 state->out_output_buffer.length =
476                                         in_output_buffer_length;
477                                 status = STATUS_BUFFER_OVERFLOW;
478                         }
479                 }
480                 SAFE_FREE(data);
481                 break;
482         }
483
484         case SMB2_GETINFO_SECURITY:
485         {
486                 uint8_t *p_marshalled_sd = NULL;
487                 size_t sd_size = 0;
488
489                 status = smbd_do_query_security_desc(conn,
490                                 state,
491                                 fsp,
492                                 /* Security info wanted. */
493                                 in_additional_information &
494                                 SMB_SUPPORTED_SECINFO_FLAGS,
495                                 in_output_buffer_length,
496                                 &p_marshalled_sd,
497                                 &sd_size);
498
499                 if (NT_STATUS_EQUAL(status, NT_STATUS_BUFFER_TOO_SMALL)) {
500                         /* Return needed size. */
501                         state->out_output_buffer = data_blob_talloc(state,
502                                                                     NULL,
503                                                                     4);
504                         if (tevent_req_nomem(state->out_output_buffer.data, req)) {
505                                 return tevent_req_post(req, ev);
506                         }
507                         SIVAL(state->out_output_buffer.data,0,(uint32_t)sd_size);
508                         state->status = NT_STATUS_BUFFER_TOO_SMALL;
509                         break;
510                 }
511                 if (!NT_STATUS_IS_OK(status)) {
512                         DEBUG(10,("smbd_smb2_getinfo_send: "
513                                  "smbd_do_query_security_desc of %s failed "
514                                  "(%s)\n", fsp_str_dbg(fsp),
515                                  nt_errstr(status)));
516                         tevent_req_nterror(req, status);
517                         return tevent_req_post(req, ev);
518                 }
519
520                 if (sd_size > 0) {
521                         state->out_output_buffer = data_blob_talloc(state,
522                                                                     p_marshalled_sd,
523                                                                     sd_size);
524                         if (tevent_req_nomem(state->out_output_buffer.data, req)) {
525                                 return tevent_req_post(req, ev);
526                         }
527                 }
528                 break;
529         }
530
531         case SMB2_GETINFO_QUOTA: {
532 #ifdef HAVE_SYS_QUOTAS
533                 struct smb2_query_quota_info info;
534                 enum ndr_err_code err;
535                 uint8_t *data = NULL;
536                 uint32_t data_size = 0;
537                 struct ndr_pull *ndr_pull = NULL;
538                 DATA_BLOB sid_buf = data_blob_null;
539                 TALLOC_CTX *tmp_ctx = talloc_init("geninfo_quota");
540
541                 if (!tmp_ctx) {
542                         tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
543                         return tevent_req_post(req, ev);
544                 }
545
546                 ndr_pull = ndr_pull_init_blob(&in_input_buffer, tmp_ctx);
547                 if (!ndr_pull) {
548                         TALLOC_FREE(tmp_ctx);
549                         tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
550                         return tevent_req_post(req, ev);
551                 }
552
553                 err = ndr_pull_smb2_query_quota_info(ndr_pull,
554                                                      NDR_SCALARS | NDR_BUFFERS,
555                                                      &info);
556
557                 if (!NDR_ERR_CODE_IS_SUCCESS(err)) {
558                         DBG_DEBUG("failed to pull smb2_query_quota_info\n");
559                         TALLOC_FREE(tmp_ctx);
560                         tevent_req_nterror(req, NT_STATUS_INTERNAL_ERROR);
561                         return tevent_req_post(req, ev);
562                 }
563
564                 DBG_DEBUG("quota list returnsingle %u, restartscan %u, "
565                           "sid_list_length %u, start_sid_length %u, "
566                           "startsidoffset %u\n",
567                           (unsigned int)info.return_single,
568                           (unsigned int)info.restart_scan,
569                           (unsigned int)info.sid_list_length,
570                           (unsigned int)info.start_sid_length,
571                           (unsigned int)info.start_sid_offset);
572
573                 /* Currently we do not support the single start sid format */
574                 if (info.start_sid_length != 0 || info.start_sid_offset != 0 ) {
575                         DBG_INFO("illegal single sid query\n");
576                         TALLOC_FREE(tmp_ctx);
577                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
578                         return tevent_req_post(req, ev);
579                 }
580
581                 if (in_input_buffer.length < ndr_pull->offset) {
582                         DBG_INFO("Invalid buffer length\n");
583                         TALLOC_FREE(tmp_ctx);
584                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
585                         return tevent_req_post(req, ev);
586                 }
587
588                 sid_buf.data = in_input_buffer.data + ndr_pull->offset;
589                 sid_buf.length = in_input_buffer.length - ndr_pull->offset;
590
591                 status = smbd_do_query_getinfo_quota(tmp_ctx,
592                                   fsp,
593                                   info.restart_scan,
594                                   info.return_single,
595                                   info.sid_list_length,
596                                   &sid_buf,
597                                   in_output_buffer_length,
598                                   &data,
599                                   &data_size);
600
601                 if (!NT_STATUS_IS_OK(status)) {
602                         TALLOC_FREE(tmp_ctx);
603                         tevent_req_nterror(req, status);
604                         return tevent_req_post(req, ev);
605                 }
606
607                 state->out_output_buffer =
608                         data_blob_talloc(state, data, data_size);
609                 status  = NT_STATUS_OK;
610                 TALLOC_FREE(tmp_ctx);
611                 break;
612 #else
613                 tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);
614                 return tevent_req_post(req, ev);
615 #endif
616         }
617
618         default:
619                 DEBUG(10,("smbd_smb2_getinfo_send: "
620                         "unknown in_info_type of %u "
621                         " for file %s\n",
622                         (unsigned int)in_info_type,
623                         fsp_str_dbg(fsp) ));
624
625                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
626                 return tevent_req_post(req, ev);
627         }
628
629         state->status = status;
630         tevent_req_done(req);
631         return tevent_req_post(req, ev);
632 }
633
634 static NTSTATUS smbd_smb2_getinfo_recv(struct tevent_req *req,
635                                        TALLOC_CTX *mem_ctx,
636                                        DATA_BLOB *out_output_buffer,
637                                        NTSTATUS *pstatus)
638 {
639         NTSTATUS status;
640         struct smbd_smb2_getinfo_state *state = tevent_req_data(req,
641                                                 struct smbd_smb2_getinfo_state);
642
643         if (tevent_req_is_nterror(req, &status)) {
644                 tevent_req_received(req);
645                 return status;
646         }
647
648         *out_output_buffer = state->out_output_buffer;
649         talloc_steal(mem_ctx, out_output_buffer->data);
650         *pstatus = state->status;
651
652         tevent_req_received(req);
653         return NT_STATUS_OK;
654 }