cd9f4861572a9efb3444417d64696b55f9d74662
[metze/samba/wip.git] / source3 / libsmb / clifile.c
1 /* 
2    Unix SMB/CIFS implementation.
3    client file operations
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Jeremy Allison 2001-2009
6    
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.
11    
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.
16    
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/>.
19 */
20
21 #include "includes.h"
22
23 /****************************************************************************
24  Hard/Symlink a file (UNIX extensions).
25  Creates new name (sym)linked to oldname.
26 ****************************************************************************/
27
28 static bool cli_link_internal(struct cli_state *cli, const char *oldname, const char *newname, bool hard_link)
29 {
30         unsigned int data_len = 0;
31         unsigned int param_len = 0;
32         uint16_t setup = TRANSACT2_SETPATHINFO;
33         char *param;
34         char *data;
35         char *rparam=NULL, *rdata=NULL;
36         char *p;
37         size_t oldlen = 2*(strlen(oldname)+1);
38         size_t newlen = 2*(strlen(newname)+1);
39
40         param = SMB_MALLOC_ARRAY(char, 6+newlen+2);
41
42         if (!param) {
43                 return false;
44         }
45
46         data = SMB_MALLOC_ARRAY(char, oldlen+2);
47
48         if (!data) {
49                 SAFE_FREE(param);
50                 return false;
51         }
52
53         SSVAL(param,0,hard_link ? SMB_SET_FILE_UNIX_HLINK : SMB_SET_FILE_UNIX_LINK);
54         SIVAL(param,2,0);
55         p = &param[6];
56
57         p += clistr_push(cli, p, newname, newlen, STR_TERMINATE);
58         param_len = PTR_DIFF(p, param);
59
60         p = data;
61         p += clistr_push(cli, p, oldname, oldlen, STR_TERMINATE);
62         data_len = PTR_DIFF(p, data);
63
64         if (!cli_send_trans(cli, SMBtrans2,
65                         NULL,                        /* name */
66                         -1, 0,                          /* fid, flags */
67                         &setup, 1, 0,                   /* setup, length, max */
68                         param, param_len, 2,            /* param, length, max */
69                         data,  data_len, cli->max_xmit /* data, length, max */
70                         )) {
71                 SAFE_FREE(data);
72                 SAFE_FREE(param);
73                 return false;
74         }
75
76         SAFE_FREE(data);
77         SAFE_FREE(param);
78
79         if (!cli_receive_trans(cli, SMBtrans2,
80                         &rparam, &param_len,
81                         &rdata, &data_len)) {
82                         return false;
83         }
84
85         SAFE_FREE(data);
86         SAFE_FREE(param);
87         SAFE_FREE(rdata);
88         SAFE_FREE(rparam);
89
90         return true;
91 }
92
93 /****************************************************************************
94  Map standard UNIX permissions onto wire representations.
95 ****************************************************************************/
96
97 uint32_t unix_perms_to_wire(mode_t perms)
98 {
99         unsigned int ret = 0;
100
101         ret |= ((perms & S_IXOTH) ?  UNIX_X_OTH : 0);
102         ret |= ((perms & S_IWOTH) ?  UNIX_W_OTH : 0);
103         ret |= ((perms & S_IROTH) ?  UNIX_R_OTH : 0);
104         ret |= ((perms & S_IXGRP) ?  UNIX_X_GRP : 0);
105         ret |= ((perms & S_IWGRP) ?  UNIX_W_GRP : 0);
106         ret |= ((perms & S_IRGRP) ?  UNIX_R_GRP : 0);
107         ret |= ((perms & S_IXUSR) ?  UNIX_X_USR : 0);
108         ret |= ((perms & S_IWUSR) ?  UNIX_W_USR : 0);
109         ret |= ((perms & S_IRUSR) ?  UNIX_R_USR : 0);
110 #ifdef S_ISVTX
111         ret |= ((perms & S_ISVTX) ?  UNIX_STICKY : 0);
112 #endif
113 #ifdef S_ISGID
114         ret |= ((perms & S_ISGID) ?  UNIX_SET_GID : 0);
115 #endif
116 #ifdef S_ISUID
117         ret |= ((perms & S_ISUID) ?  UNIX_SET_UID : 0);
118 #endif
119         return ret;
120 }
121
122 /****************************************************************************
123  Map wire permissions to standard UNIX.
124 ****************************************************************************/
125
126 mode_t wire_perms_to_unix(uint32_t perms)
127 {
128         mode_t ret = (mode_t)0;
129
130         ret |= ((perms & UNIX_X_OTH) ? S_IXOTH : 0);
131         ret |= ((perms & UNIX_W_OTH) ? S_IWOTH : 0);
132         ret |= ((perms & UNIX_R_OTH) ? S_IROTH : 0);
133         ret |= ((perms & UNIX_X_GRP) ? S_IXGRP : 0);
134         ret |= ((perms & UNIX_W_GRP) ? S_IWGRP : 0);
135         ret |= ((perms & UNIX_R_GRP) ? S_IRGRP : 0);
136         ret |= ((perms & UNIX_X_USR) ? S_IXUSR : 0);
137         ret |= ((perms & UNIX_W_USR) ? S_IWUSR : 0);
138         ret |= ((perms & UNIX_R_USR) ? S_IRUSR : 0);
139 #ifdef S_ISVTX
140         ret |= ((perms & UNIX_STICKY) ? S_ISVTX : 0);
141 #endif
142 #ifdef S_ISGID
143         ret |= ((perms & UNIX_SET_GID) ? S_ISGID : 0);
144 #endif
145 #ifdef S_ISUID
146         ret |= ((perms & UNIX_SET_UID) ? S_ISUID : 0);
147 #endif
148         return ret;
149 }
150
151 /****************************************************************************
152  Return the file type from the wire filetype for UNIX extensions.
153 ****************************************************************************/
154
155 static mode_t unix_filetype_from_wire(uint32_t wire_type)
156 {
157         switch (wire_type) {
158                 case UNIX_TYPE_FILE:
159                         return S_IFREG;
160                 case UNIX_TYPE_DIR:
161                         return S_IFDIR;
162 #ifdef S_IFLNK
163                 case UNIX_TYPE_SYMLINK:
164                         return S_IFLNK;
165 #endif
166 #ifdef S_IFCHR
167                 case UNIX_TYPE_CHARDEV:
168                         return S_IFCHR;
169 #endif
170 #ifdef S_IFBLK
171                 case UNIX_TYPE_BLKDEV:
172                         return S_IFBLK;
173 #endif
174 #ifdef S_IFIFO
175                 case UNIX_TYPE_FIFO:
176                         return S_IFIFO;
177 #endif
178 #ifdef S_IFSOCK
179                 case UNIX_TYPE_SOCKET:
180                         return S_IFSOCK;
181 #endif
182                 default:
183                         return (mode_t)0;
184         }
185 }
186
187 /****************************************************************************
188  Do a POSIX getfacl (UNIX extensions).
189 ****************************************************************************/
190
191 bool cli_unix_getfacl(struct cli_state *cli, const char *name, size_t *prb_size, char **retbuf)
192 {
193         unsigned int param_len = 0;
194         unsigned int data_len = 0;
195         uint16_t setup = TRANSACT2_QPATHINFO;
196         char *param;
197         size_t nlen = 2*(strlen(name)+1);
198         char *rparam=NULL, *rdata=NULL;
199         char *p;
200
201         param = SMB_MALLOC_ARRAY(char, 6+nlen+2);
202         if (!param) {
203                 return false;
204         }
205
206         p = param;
207         memset(p, '\0', 6);
208         SSVAL(p, 0, SMB_QUERY_POSIX_ACL);
209         p += 6;
210         p += clistr_push(cli, p, name, nlen, STR_TERMINATE);
211         param_len = PTR_DIFF(p, param);
212
213         if (!cli_send_trans(cli, SMBtrans2,
214                 NULL,                        /* name */
215                 -1, 0,                       /* fid, flags */
216                 &setup, 1, 0,                /* setup, length, max */
217                 param, param_len, 2,         /* param, length, max */
218                 NULL,  0, cli->max_xmit      /* data, length, max */
219                 )) {
220                 SAFE_FREE(param);
221                 return false;
222         }
223
224         SAFE_FREE(param);
225
226         if (!cli_receive_trans(cli, SMBtrans2,
227                         &rparam, &param_len,
228                         &rdata, &data_len)) {
229                 return false;
230         }
231
232         if (data_len < 6) {
233                 SAFE_FREE(rdata);
234                 SAFE_FREE(rparam);
235                 return false;
236         }
237
238         SAFE_FREE(rparam);
239         *retbuf = rdata;
240         *prb_size = (size_t)data_len;
241
242         return true;
243 }
244
245 /****************************************************************************
246  Stat a file (UNIX extensions).
247 ****************************************************************************/
248
249 bool cli_unix_stat(struct cli_state *cli, const char *name, SMB_STRUCT_STAT *sbuf)
250 {
251         unsigned int param_len = 0;
252         unsigned int data_len = 0;
253         uint16_t setup = TRANSACT2_QPATHINFO;
254         char *param;
255         size_t nlen = 2*(strlen(name)+1);
256         char *rparam=NULL, *rdata=NULL;
257         char *p;
258
259         ZERO_STRUCTP(sbuf);
260
261         param = SMB_MALLOC_ARRAY(char, 6+nlen+2);
262         if (!param) {
263                 return false;
264         }
265         p = param;
266         memset(p, '\0', 6);
267         SSVAL(p, 0, SMB_QUERY_FILE_UNIX_BASIC);
268         p += 6;
269         p += clistr_push(cli, p, name, nlen, STR_TERMINATE);
270         param_len = PTR_DIFF(p, param);
271
272         if (!cli_send_trans(cli, SMBtrans2,
273                         NULL,                        /* name */
274                         -1, 0,                       /* fid, flags */
275                         &setup, 1, 0,                /* setup, length, max */
276                         param, param_len, 2,         /* param, length, max */
277                         NULL,  0, cli->max_xmit      /* data, length, max */
278                         )) {
279                 SAFE_FREE(param);
280                 return false;
281         }
282
283         SAFE_FREE(param);
284
285         if (!cli_receive_trans(cli, SMBtrans2,
286                         &rparam, &param_len,
287                         &rdata, &data_len)) {
288                 return false;
289         }
290
291         if (data_len < 96) {
292                 SAFE_FREE(rdata);
293                 SAFE_FREE(rparam);
294                 return false;
295         }
296
297         sbuf->st_size = IVAL2_TO_SMB_BIG_UINT(rdata,0);     /* total size, in bytes */
298         sbuf->st_blocks = IVAL2_TO_SMB_BIG_UINT(rdata,8);   /* number of blocks allocated */
299 #if defined (HAVE_STAT_ST_BLOCKS) && defined(STAT_ST_BLOCKSIZE)
300         sbuf->st_blocks /= STAT_ST_BLOCKSIZE;
301 #else
302         /* assume 512 byte blocks */
303         sbuf->st_blocks /= 512;
304 #endif
305         set_ctimespec(sbuf, interpret_long_date(rdata + 16));    /* time of last change */
306         set_atimespec(sbuf, interpret_long_date(rdata + 24));    /* time of last access */
307         set_mtimespec(sbuf, interpret_long_date(rdata + 32));    /* time of last modification */
308
309         sbuf->st_uid = (uid_t) IVAL(rdata,40);      /* user ID of owner */
310         sbuf->st_gid = (gid_t) IVAL(rdata,48);      /* group ID of owner */
311         sbuf->st_mode |= unix_filetype_from_wire(IVAL(rdata, 56));
312 #if defined(HAVE_MAKEDEV)
313         {
314                 uint32_t dev_major = IVAL(rdata,60);
315                 uint32_t dev_minor = IVAL(rdata,68);
316                 sbuf->st_rdev = makedev(dev_major, dev_minor);
317         }
318 #endif
319         sbuf->st_ino = (SMB_INO_T)IVAL2_TO_SMB_BIG_UINT(rdata,76);      /* inode */
320         sbuf->st_mode |= wire_perms_to_unix(IVAL(rdata,84));     /* protection */
321         sbuf->st_nlink = IVAL(rdata,92);    /* number of hard links */
322
323         SAFE_FREE(rdata);
324         SAFE_FREE(rparam);
325
326         return true;
327 }
328
329 /****************************************************************************
330  Symlink a file (UNIX extensions).
331 ****************************************************************************/
332
333 bool cli_unix_symlink(struct cli_state *cli, const char *oldname, const char *newname)
334 {
335         return cli_link_internal(cli, oldname, newname, False);
336 }
337
338 /****************************************************************************
339  Hard a file (UNIX extensions).
340 ****************************************************************************/
341
342 bool cli_unix_hardlink(struct cli_state *cli, const char *oldname, const char *newname)
343 {
344         return cli_link_internal(cli, oldname, newname, True);
345 }
346
347 /****************************************************************************
348  Chmod or chown a file internal (UNIX extensions).
349 ****************************************************************************/
350
351 static bool cli_unix_chmod_chown_internal(struct cli_state *cli, const char *fname, uint32_t mode, uint32_t uid, uint32_t gid)
352 {
353         unsigned int data_len = 0;
354         unsigned int param_len = 0;
355         uint16_t setup = TRANSACT2_SETPATHINFO;
356         size_t nlen = 2*(strlen(fname)+1);
357         char *param;
358         char data[100];
359         char *rparam=NULL, *rdata=NULL;
360         char *p;
361
362         param = SMB_MALLOC_ARRAY(char, 6+nlen+2);
363         if (!param) {
364                 return false;
365         }
366         memset(param, '\0', 6);
367         memset(data, 0, sizeof(data));
368
369         SSVAL(param,0,SMB_SET_FILE_UNIX_BASIC);
370         p = &param[6];
371
372         p += clistr_push(cli, p, fname, nlen, STR_TERMINATE);
373         param_len = PTR_DIFF(p, param);
374
375         memset(data, 0xff, 40); /* Set all sizes/times to no change. */
376
377         SIVAL(data,40,uid);
378         SIVAL(data,48,gid);
379         SIVAL(data,84,mode);
380
381         data_len = 100;
382
383         if (!cli_send_trans(cli, SMBtrans2,
384                         NULL,                        /* name */
385                         -1, 0,                          /* fid, flags */
386                         &setup, 1, 0,                   /* setup, length, max */
387                         param, param_len, 2,            /* param, length, max */
388                         (char *)&data,  data_len, cli->max_xmit /* data, length, max */
389                         )) {
390                 SAFE_FREE(param);
391                 return False;
392         }
393
394         SAFE_FREE(param);
395
396         if (!cli_receive_trans(cli, SMBtrans2,
397                         &rparam, &param_len,
398                         &rdata, &data_len)) {
399                 return false;
400         }
401
402         SAFE_FREE(rdata);
403         SAFE_FREE(rparam);
404
405         return true;
406 }
407
408 /****************************************************************************
409  chmod a file (UNIX extensions).
410 ****************************************************************************/
411
412 bool cli_unix_chmod(struct cli_state *cli, const char *fname, mode_t mode)
413 {
414         return cli_unix_chmod_chown_internal(cli, fname,
415                 unix_perms_to_wire(mode), SMB_UID_NO_CHANGE, SMB_GID_NO_CHANGE);
416 }
417
418 /****************************************************************************
419  chown a file (UNIX extensions).
420 ****************************************************************************/
421
422 bool cli_unix_chown(struct cli_state *cli, const char *fname, uid_t uid, gid_t gid)
423 {
424         return cli_unix_chmod_chown_internal(cli, fname,
425                         SMB_MODE_NO_CHANGE, (uint32)uid, (uint32)gid);
426 }
427
428 /****************************************************************************
429  Rename a file.
430 ****************************************************************************/
431
432 static void cli_rename_done(struct tevent_req *subreq);
433
434 struct cli_rename_state {
435         uint16_t vwv[1];
436 };
437
438 struct tevent_req *cli_rename_send(TALLOC_CTX *mem_ctx,
439                                 struct event_context *ev,
440                                 struct cli_state *cli,
441                                 const char *fname_src,
442                                 const char *fname_dst)
443 {
444         struct tevent_req *req = NULL, *subreq = NULL;
445         struct cli_rename_state *state = NULL;
446         uint8_t additional_flags = 0;
447         uint8_t *bytes = NULL;
448
449         req = tevent_req_create(mem_ctx, &state, struct cli_rename_state);
450         if (req == NULL) {
451                 return NULL;
452         }
453
454         SSVAL(state->vwv+0, 0, aSYSTEM | aHIDDEN | aDIR);
455
456         bytes = talloc_array(state, uint8_t, 1);
457         if (tevent_req_nomem(bytes, req)) {
458                 return tevent_req_post(req, ev);
459         }
460         bytes[0] = 4;
461         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname_src,
462                                    strlen(fname_src)+1, NULL);
463         if (tevent_req_nomem(bytes, req)) {
464                 return tevent_req_post(req, ev);
465         }
466
467         bytes = TALLOC_REALLOC_ARRAY(state, bytes, uint8_t,
468                         talloc_get_size(bytes)+1);
469         if (tevent_req_nomem(bytes, req)) {
470                 return tevent_req_post(req, ev);
471         }
472
473         bytes[talloc_get_size(bytes)-1] = 4;
474         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname_dst,
475                                    strlen(fname_dst)+1, NULL);
476         if (tevent_req_nomem(bytes, req)) {
477                 return tevent_req_post(req, ev);
478         }
479
480         subreq = cli_smb_send(state, ev, cli, SMBmv, additional_flags,
481                               1, state->vwv, talloc_get_size(bytes), bytes);
482         if (tevent_req_nomem(subreq, req)) {
483                 return tevent_req_post(req, ev);
484         }
485         tevent_req_set_callback(subreq, cli_rename_done, req);
486         return req;
487 }
488
489 static void cli_rename_done(struct tevent_req *subreq)
490 {
491         struct tevent_req *req = tevent_req_callback_data(
492                                 subreq, struct tevent_req);
493         NTSTATUS status;
494
495         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
496         TALLOC_FREE(subreq);
497         if (!NT_STATUS_IS_OK(status)) {
498                 tevent_req_nterror(req, status);
499                 return;
500         }
501         tevent_req_done(req);
502 }
503
504 NTSTATUS cli_rename_recv(struct tevent_req *req)
505 {
506         return tevent_req_simple_recv_ntstatus(req);
507 }
508
509 NTSTATUS cli_rename(struct cli_state *cli, const char *fname_src, const char *fname_dst)
510 {
511         TALLOC_CTX *frame = talloc_stackframe();
512         struct event_context *ev;
513         struct tevent_req *req;
514         NTSTATUS status = NT_STATUS_OK;
515
516         if (cli_has_async_calls(cli)) {
517                 /*
518                  * Can't use sync call while an async call is in flight
519                  */
520                 status = NT_STATUS_INVALID_PARAMETER;
521                 goto fail;
522         }
523
524         ev = event_context_init(frame);
525         if (ev == NULL) {
526                 status = NT_STATUS_NO_MEMORY;
527                 goto fail;
528         }
529
530         req = cli_rename_send(frame, ev, cli, fname_src, fname_dst);
531         if (req == NULL) {
532                 status = NT_STATUS_NO_MEMORY;
533                 goto fail;
534         }
535
536         if (!tevent_req_poll(req, ev)) {
537                 status = map_nt_error_from_unix(errno);
538                 goto fail;
539         }
540
541         status = cli_rename_recv(req);
542
543  fail:
544         TALLOC_FREE(frame);
545         if (!NT_STATUS_IS_OK(status)) {
546                 cli_set_error(cli, status);
547         }
548         return status;
549 }
550
551 /****************************************************************************
552  NT Rename a file.
553 ****************************************************************************/
554
555 static void cli_ntrename_done(struct tevent_req *subreq);
556
557 struct cli_ntrename_state {
558         uint16_t vwv[4];
559 };
560
561 static struct tevent_req *cli_ntrename_send_internal(TALLOC_CTX *mem_ctx,
562                                 struct event_context *ev,
563                                 struct cli_state *cli,
564                                 const char *fname_src,
565                                 const char *fname_dst,
566                                 uint16_t rename_flag)
567 {
568         struct tevent_req *req = NULL, *subreq = NULL;
569         struct cli_ntrename_state *state = NULL;
570         uint8_t additional_flags = 0;
571         uint8_t *bytes = NULL;
572
573         req = tevent_req_create(mem_ctx, &state, struct cli_ntrename_state);
574         if (req == NULL) {
575                 return NULL;
576         }
577
578         SSVAL(state->vwv+0, 0 ,aSYSTEM | aHIDDEN | aDIR);
579         SSVAL(state->vwv+1, 0, rename_flag);
580
581         bytes = talloc_array(state, uint8_t, 1);
582         if (tevent_req_nomem(bytes, req)) {
583                 return tevent_req_post(req, ev);
584         }
585         bytes[0] = 4;
586         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname_src,
587                                    strlen(fname_src)+1, NULL);
588         if (tevent_req_nomem(bytes, req)) {
589                 return tevent_req_post(req, ev);
590         }
591
592         bytes = TALLOC_REALLOC_ARRAY(state, bytes, uint8_t,
593                         talloc_get_size(bytes)+1);
594         if (tevent_req_nomem(bytes, req)) {
595                 return tevent_req_post(req, ev);
596         }
597
598         bytes[talloc_get_size(bytes)-1] = 4;
599         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname_dst,
600                                    strlen(fname_dst)+1, NULL);
601         if (tevent_req_nomem(bytes, req)) {
602                 return tevent_req_post(req, ev);
603         }
604
605         subreq = cli_smb_send(state, ev, cli, SMBntrename, additional_flags,
606                               4, state->vwv, talloc_get_size(bytes), bytes);
607         if (tevent_req_nomem(subreq, req)) {
608                 return tevent_req_post(req, ev);
609         }
610         tevent_req_set_callback(subreq, cli_ntrename_done, req);
611         return req;
612 }
613
614 struct tevent_req *cli_ntrename_send(TALLOC_CTX *mem_ctx,
615                                 struct event_context *ev,
616                                 struct cli_state *cli,
617                                 const char *fname_src,
618                                 const char *fname_dst)
619 {
620         return cli_ntrename_send_internal(mem_ctx,
621                                         ev,
622                                         cli,
623                                         fname_src,
624                                         fname_dst,
625                                         RENAME_FLAG_RENAME);
626 }
627
628 static void cli_ntrename_done(struct tevent_req *subreq)
629 {
630         struct tevent_req *req = tevent_req_callback_data(
631                                 subreq, struct tevent_req);
632         NTSTATUS status;
633
634         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
635         TALLOC_FREE(subreq);
636         if (!NT_STATUS_IS_OK(status)) {
637                 tevent_req_nterror(req, status);
638                 return;
639         }
640         tevent_req_done(req);
641 }
642
643 NTSTATUS cli_ntrename_recv(struct tevent_req *req)
644 {
645         return tevent_req_simple_recv_ntstatus(req);
646 }
647
648 NTSTATUS cli_ntrename(struct cli_state *cli, const char *fname_src, const char *fname_dst)
649 {
650         TALLOC_CTX *frame = talloc_stackframe();
651         struct event_context *ev;
652         struct tevent_req *req;
653         NTSTATUS status = NT_STATUS_OK;
654
655         if (cli_has_async_calls(cli)) {
656                 /*
657                  * Can't use sync call while an async call is in flight
658                  */
659                 status = NT_STATUS_INVALID_PARAMETER;
660                 goto fail;
661         }
662
663         ev = event_context_init(frame);
664         if (ev == NULL) {
665                 status = NT_STATUS_NO_MEMORY;
666                 goto fail;
667         }
668
669         req = cli_ntrename_send(frame, ev, cli, fname_src, fname_dst);
670         if (req == NULL) {
671                 status = NT_STATUS_NO_MEMORY;
672                 goto fail;
673         }
674
675         if (!tevent_req_poll(req, ev)) {
676                 status = map_nt_error_from_unix(errno);
677                 goto fail;
678         }
679
680         status = cli_ntrename_recv(req);
681
682  fail:
683         TALLOC_FREE(frame);
684         if (!NT_STATUS_IS_OK(status)) {
685                 cli_set_error(cli, status);
686         }
687         return status;
688 }
689
690 /****************************************************************************
691  NT hardlink a file.
692 ****************************************************************************/
693
694 struct tevent_req *cli_nt_hardlink_send(TALLOC_CTX *mem_ctx,
695                                 struct event_context *ev,
696                                 struct cli_state *cli,
697                                 const char *fname_src,
698                                 const char *fname_dst)
699 {
700         return cli_ntrename_send_internal(mem_ctx,
701                                         ev,
702                                         cli,
703                                         fname_src,
704                                         fname_dst,
705                                         RENAME_FLAG_HARD_LINK);
706 }
707
708 NTSTATUS cli_nt_hardlink_recv(struct tevent_req *req)
709 {
710         return tevent_req_simple_recv_ntstatus(req);
711 }
712
713 NTSTATUS cli_nt_hardlink(struct cli_state *cli, const char *fname_src, const char *fname_dst)
714 {
715         TALLOC_CTX *frame = talloc_stackframe();
716         struct event_context *ev;
717         struct tevent_req *req;
718         NTSTATUS status = NT_STATUS_OK;
719
720         if (cli_has_async_calls(cli)) {
721                 /*
722                  * Can't use sync call while an async call is in flight
723                  */
724                 status = NT_STATUS_INVALID_PARAMETER;
725                 goto fail;
726         }
727
728         ev = event_context_init(frame);
729         if (ev == NULL) {
730                 status = NT_STATUS_NO_MEMORY;
731                 goto fail;
732         }
733
734         req = cli_nt_hardlink_send(frame, ev, cli, fname_src, fname_dst);
735         if (req == NULL) {
736                 status = NT_STATUS_NO_MEMORY;
737                 goto fail;
738         }
739
740         if (!tevent_req_poll(req, ev)) {
741                 status = map_nt_error_from_unix(errno);
742                 goto fail;
743         }
744
745         status = cli_nt_hardlink_recv(req);
746
747  fail:
748         TALLOC_FREE(frame);
749         if (!NT_STATUS_IS_OK(status)) {
750                 cli_set_error(cli, status);
751         }
752         return status;
753 }
754
755 /****************************************************************************
756  Delete a file.
757 ****************************************************************************/
758
759 static void cli_unlink_done(struct tevent_req *subreq);
760
761 struct cli_unlink_state {
762         uint16_t vwv[1];
763 };
764
765 struct tevent_req *cli_unlink_send(TALLOC_CTX *mem_ctx,
766                                 struct event_context *ev,
767                                 struct cli_state *cli,
768                                 const char *fname,
769                                 uint16_t mayhave_attrs)
770 {
771         struct tevent_req *req = NULL, *subreq = NULL;
772         struct cli_unlink_state *state = NULL;
773         uint8_t additional_flags = 0;
774         uint8_t *bytes = NULL;
775
776         req = tevent_req_create(mem_ctx, &state, struct cli_unlink_state);
777         if (req == NULL) {
778                 return NULL;
779         }
780
781         SSVAL(state->vwv+0, 0, mayhave_attrs);
782
783         bytes = talloc_array(state, uint8_t, 1);
784         if (tevent_req_nomem(bytes, req)) {
785                 return tevent_req_post(req, ev);
786         }
787         bytes[0] = 4;
788         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
789                                    strlen(fname)+1, NULL);
790
791         if (tevent_req_nomem(bytes, req)) {
792                 return tevent_req_post(req, ev);
793         }
794
795         subreq = cli_smb_send(state, ev, cli, SMBunlink, additional_flags,
796                                 1, state->vwv, talloc_get_size(bytes), bytes);
797         if (tevent_req_nomem(subreq, req)) {
798                 return tevent_req_post(req, ev);
799         }
800         tevent_req_set_callback(subreq, cli_unlink_done, req);
801         return req;
802 }
803
804 static void cli_unlink_done(struct tevent_req *subreq)
805 {
806         struct tevent_req *req = tevent_req_callback_data(
807                 subreq, struct tevent_req);
808         NTSTATUS status;
809
810         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
811         TALLOC_FREE(subreq);
812         if (!NT_STATUS_IS_OK(status)) {
813                 tevent_req_nterror(req, status);
814                 return;
815         }
816         tevent_req_done(req);
817 }
818
819 NTSTATUS cli_unlink_recv(struct tevent_req *req)
820 {
821         return tevent_req_simple_recv_ntstatus(req);
822 }
823
824 NTSTATUS cli_unlink(struct cli_state *cli, const char *fname, uint16_t mayhave_attrs)
825 {
826         TALLOC_CTX *frame = talloc_stackframe();
827         struct event_context *ev;
828         struct tevent_req *req;
829         NTSTATUS status = NT_STATUS_OK;
830
831         if (cli_has_async_calls(cli)) {
832                 /*
833                  * Can't use sync call while an async call is in flight
834                  */
835                 status = NT_STATUS_INVALID_PARAMETER;
836                 goto fail;
837         }
838
839         ev = event_context_init(frame);
840         if (ev == NULL) {
841                 status = NT_STATUS_NO_MEMORY;
842                 goto fail;
843         }
844
845         req = cli_unlink_send(frame, ev, cli, fname, mayhave_attrs);
846         if (req == NULL) {
847                 status = NT_STATUS_NO_MEMORY;
848                 goto fail;
849         }
850
851         if (!tevent_req_poll(req, ev)) {
852                 status = map_nt_error_from_unix(errno);
853                 goto fail;
854         }
855
856         status = cli_unlink_recv(req);
857
858  fail:
859         TALLOC_FREE(frame);
860         if (!NT_STATUS_IS_OK(status)) {
861                 cli_set_error(cli, status);
862         }
863         return status;
864 }
865
866 /****************************************************************************
867  Create a directory.
868 ****************************************************************************/
869
870 static void cli_mkdir_done(struct tevent_req *subreq);
871
872 struct cli_mkdir_state {
873         int dummy;
874 };
875
876 struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
877                                   struct event_context *ev,
878                                   struct cli_state *cli,
879                                   const char *dname)
880 {
881         struct tevent_req *req = NULL, *subreq = NULL;
882         struct cli_mkdir_state *state = NULL;
883         uint8_t additional_flags = 0;
884         uint8_t *bytes = NULL;
885
886         req = tevent_req_create(mem_ctx, &state, struct cli_mkdir_state);
887         if (req == NULL) {
888                 return NULL;
889         }
890
891         bytes = talloc_array(state, uint8_t, 1);
892         if (tevent_req_nomem(bytes, req)) {
893                 return tevent_req_post(req, ev);
894         }
895         bytes[0] = 4;
896         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), dname,
897                                    strlen(dname)+1, NULL);
898
899         if (tevent_req_nomem(bytes, req)) {
900                 return tevent_req_post(req, ev);
901         }
902
903         subreq = cli_smb_send(state, ev, cli, SMBmkdir, additional_flags,
904                               0, NULL, talloc_get_size(bytes), bytes);
905         if (tevent_req_nomem(subreq, req)) {
906                 return tevent_req_post(req, ev);
907         }
908         tevent_req_set_callback(subreq, cli_mkdir_done, req);
909         return req;
910 }
911
912 static void cli_mkdir_done(struct tevent_req *subreq)
913 {
914         struct tevent_req *req = tevent_req_callback_data(
915                 subreq, struct tevent_req);
916         NTSTATUS status;
917
918         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
919         TALLOC_FREE(subreq);
920         if (!NT_STATUS_IS_OK(status)) {
921                 tevent_req_nterror(req, status);
922                 return;
923         }
924         tevent_req_done(req);
925 }
926
927 NTSTATUS cli_mkdir_recv(struct tevent_req *req)
928 {
929         return tevent_req_simple_recv_ntstatus(req);
930 }
931
932 NTSTATUS cli_mkdir(struct cli_state *cli, const char *dname)
933 {
934         TALLOC_CTX *frame = talloc_stackframe();
935         struct event_context *ev;
936         struct tevent_req *req;
937         NTSTATUS status = NT_STATUS_OK;
938
939         if (cli_has_async_calls(cli)) {
940                 /*
941                  * Can't use sync call while an async call is in flight
942                  */
943                 status = NT_STATUS_INVALID_PARAMETER;
944                 goto fail;
945         }
946
947         ev = event_context_init(frame);
948         if (ev == NULL) {
949                 status = NT_STATUS_NO_MEMORY;
950                 goto fail;
951         }
952
953         req = cli_mkdir_send(frame, ev, cli, dname);
954         if (req == NULL) {
955                 status = NT_STATUS_NO_MEMORY;
956                 goto fail;
957         }
958
959         if (!tevent_req_poll(req, ev)) {
960                 status = map_nt_error_from_unix(errno);
961                 goto fail;
962         }
963
964         status = cli_mkdir_recv(req);
965
966  fail:
967         TALLOC_FREE(frame);
968         if (!NT_STATUS_IS_OK(status)) {
969                 cli_set_error(cli, status);
970         }
971         return status;
972 }
973
974 /****************************************************************************
975  Remove a directory.
976 ****************************************************************************/
977
978 static void cli_rmdir_done(struct tevent_req *subreq);
979
980 struct cli_rmdir_state {
981         int dummy;
982 };
983
984 struct tevent_req *cli_rmdir_send(TALLOC_CTX *mem_ctx,
985                                   struct event_context *ev,
986                                   struct cli_state *cli,
987                                   const char *dname)
988 {
989         struct tevent_req *req = NULL, *subreq = NULL;
990         struct cli_rmdir_state *state = NULL;
991         uint8_t additional_flags = 0;
992         uint8_t *bytes = NULL;
993
994         req = tevent_req_create(mem_ctx, &state, struct cli_rmdir_state);
995         if (req == NULL) {
996                 return NULL;
997         }
998
999         bytes = talloc_array(state, uint8_t, 1);
1000         if (tevent_req_nomem(bytes, req)) {
1001                 return tevent_req_post(req, ev);
1002         }
1003         bytes[0] = 4;
1004         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), dname,
1005                                    strlen(dname)+1, NULL);
1006
1007         if (tevent_req_nomem(bytes, req)) {
1008                 return tevent_req_post(req, ev);
1009         }
1010
1011         subreq = cli_smb_send(state, ev, cli, SMBrmdir, additional_flags,
1012                               0, NULL, talloc_get_size(bytes), bytes);
1013         if (tevent_req_nomem(subreq, req)) {
1014                 return tevent_req_post(req, ev);
1015         }
1016         tevent_req_set_callback(subreq, cli_rmdir_done, req);
1017         return req;
1018 }
1019
1020 static void cli_rmdir_done(struct tevent_req *subreq)
1021 {
1022         struct tevent_req *req = tevent_req_callback_data(
1023                 subreq, struct tevent_req);
1024         NTSTATUS status;
1025
1026         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
1027         TALLOC_FREE(subreq);
1028         if (!NT_STATUS_IS_OK(status)) {
1029                 tevent_req_nterror(req, status);
1030                 return;
1031         }
1032         tevent_req_done(req);
1033 }
1034
1035 NTSTATUS cli_rmdir_recv(struct tevent_req *req)
1036 {
1037         return tevent_req_simple_recv_ntstatus(req);
1038 }
1039
1040 NTSTATUS cli_rmdir(struct cli_state *cli, const char *dname)
1041 {
1042         TALLOC_CTX *frame = talloc_stackframe();
1043         struct event_context *ev;
1044         struct tevent_req *req;
1045         NTSTATUS status = NT_STATUS_OK;
1046
1047         if (cli_has_async_calls(cli)) {
1048                 /*
1049                  * Can't use sync call while an async call is in flight
1050                  */
1051                 status = NT_STATUS_INVALID_PARAMETER;
1052                 goto fail;
1053         }
1054
1055         ev = event_context_init(frame);
1056         if (ev == NULL) {
1057                 status = NT_STATUS_NO_MEMORY;
1058                 goto fail;
1059         }
1060
1061         req = cli_rmdir_send(frame, ev, cli, dname);
1062         if (req == NULL) {
1063                 status = NT_STATUS_NO_MEMORY;
1064                 goto fail;
1065         }
1066
1067         if (!tevent_req_poll(req, ev)) {
1068                 status = map_nt_error_from_unix(errno);
1069                 goto fail;
1070         }
1071
1072         status = cli_rmdir_recv(req);
1073
1074  fail:
1075         TALLOC_FREE(frame);
1076         if (!NT_STATUS_IS_OK(status)) {
1077                 cli_set_error(cli, status);
1078         }
1079         return status;
1080 }
1081
1082 /****************************************************************************
1083  Set or clear the delete on close flag.
1084 ****************************************************************************/
1085
1086 int cli_nt_delete_on_close(struct cli_state *cli, uint16_t fnum, bool flag)
1087 {
1088         unsigned int data_len = 1;
1089         unsigned int param_len = 6;
1090         uint16_t setup = TRANSACT2_SETFILEINFO;
1091         char param[6];
1092         unsigned char data;
1093         char *rparam=NULL, *rdata=NULL;
1094
1095         memset(param, 0, param_len);
1096         SSVAL(param,0,fnum);
1097         SSVAL(param,2,SMB_SET_FILE_DISPOSITION_INFO);
1098
1099         data = flag ? 1 : 0;
1100
1101         if (!cli_send_trans(cli, SMBtrans2,
1102                         NULL,                        /* name */
1103                         -1, 0,                          /* fid, flags */
1104                         &setup, 1, 0,                   /* setup, length, max */
1105                         param, param_len, 2,            /* param, length, max */
1106                         (char *)&data,  data_len, cli->max_xmit /* data, length, max */
1107                         )) {
1108                 return false;
1109         }
1110
1111         if (!cli_receive_trans(cli, SMBtrans2,
1112                         &rparam, &param_len,
1113                         &rdata, &data_len)) {
1114                 return false;
1115         }
1116
1117         SAFE_FREE(rdata);
1118         SAFE_FREE(rparam);
1119
1120         return true;
1121 }
1122
1123 struct cli_ntcreate_state {
1124         uint16_t vwv[24];
1125         uint16_t fnum;
1126 };
1127
1128 static void cli_ntcreate_done(struct tevent_req *subreq);
1129
1130 struct tevent_req *cli_ntcreate_send(TALLOC_CTX *mem_ctx,
1131                                      struct event_context *ev,
1132                                      struct cli_state *cli,
1133                                      const char *fname,
1134                                      uint32_t CreatFlags,
1135                                      uint32_t DesiredAccess,
1136                                      uint32_t FileAttributes,
1137                                      uint32_t ShareAccess,
1138                                      uint32_t CreateDisposition,
1139                                      uint32_t CreateOptions,
1140                                      uint8_t SecurityFlags)
1141 {
1142         struct tevent_req *req, *subreq;
1143         struct cli_ntcreate_state *state;
1144         uint16_t *vwv;
1145         uint8_t *bytes;
1146         size_t converted_len;
1147
1148         req = tevent_req_create(mem_ctx, &state, struct cli_ntcreate_state);
1149         if (req == NULL) {
1150                 return NULL;
1151         }
1152         vwv = state->vwv;
1153
1154         SCVAL(vwv+0, 0, 0xFF);
1155         SCVAL(vwv+0, 1, 0);
1156         SSVAL(vwv+1, 0, 0);
1157         SCVAL(vwv+2, 0, 0);
1158
1159         if (cli->use_oplocks) {
1160                 CreatFlags |= (REQUEST_OPLOCK|REQUEST_BATCH_OPLOCK);
1161         }
1162         SIVAL(vwv+3, 1, CreatFlags);
1163         SIVAL(vwv+5, 1, 0x0);   /* RootDirectoryFid */
1164         SIVAL(vwv+7, 1, DesiredAccess);
1165         SIVAL(vwv+9, 1, 0x0);   /* AllocationSize */
1166         SIVAL(vwv+11, 1, 0x0);  /* AllocationSize */
1167         SIVAL(vwv+13, 1, FileAttributes);
1168         SIVAL(vwv+15, 1, ShareAccess);
1169         SIVAL(vwv+17, 1, CreateDisposition);
1170         SIVAL(vwv+19, 1, CreateOptions);
1171         SIVAL(vwv+21, 1, 0x02); /* ImpersonationLevel */
1172         SCVAL(vwv+23, 1, SecurityFlags);
1173
1174         bytes = talloc_array(state, uint8_t, 0);
1175         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli),
1176                                    fname, strlen(fname)+1,
1177                                    &converted_len);
1178
1179         /* sigh. this copes with broken netapp filer behaviour */
1180         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), "", 1, NULL);
1181
1182         if (tevent_req_nomem(bytes, req)) {
1183                 return tevent_req_post(req, ev);
1184         }
1185
1186         SIVAL(vwv+2, 1, converted_len);
1187
1188         subreq = cli_smb_send(state, ev, cli, SMBntcreateX, 0, 24, vwv,
1189                               talloc_get_size(bytes), bytes);
1190         if (tevent_req_nomem(subreq, req)) {
1191                 return tevent_req_post(req, ev);
1192         }
1193         tevent_req_set_callback(subreq, cli_ntcreate_done, req);
1194         return req;
1195 }
1196
1197 static void cli_ntcreate_done(struct tevent_req *subreq)
1198 {
1199         struct tevent_req *req = tevent_req_callback_data(
1200                 subreq, struct tevent_req);
1201         struct cli_ntcreate_state *state = tevent_req_data(
1202                 req, struct cli_ntcreate_state);
1203         uint8_t wct;
1204         uint16_t *vwv;
1205         uint32_t num_bytes;
1206         uint8_t *bytes;
1207         NTSTATUS status;
1208
1209         status = cli_smb_recv(subreq, 3, &wct, &vwv, &num_bytes, &bytes);
1210         if (!NT_STATUS_IS_OK(status)) {
1211                 TALLOC_FREE(subreq);
1212                 tevent_req_nterror(req, status);
1213                 return;
1214         }
1215         state->fnum = SVAL(vwv+2, 1);
1216         tevent_req_done(req);
1217 }
1218
1219 NTSTATUS cli_ntcreate_recv(struct tevent_req *req, uint16_t *pfnum)
1220 {
1221         struct cli_ntcreate_state *state = tevent_req_data(
1222                 req, struct cli_ntcreate_state);
1223         NTSTATUS status;
1224
1225         if (tevent_req_is_nterror(req, &status)) {
1226                 return status;
1227         }
1228         *pfnum = state->fnum;
1229         return NT_STATUS_OK;
1230 }
1231
1232 NTSTATUS cli_ntcreate(struct cli_state *cli,
1233                       const char *fname,
1234                       uint32_t CreatFlags,
1235                       uint32_t DesiredAccess,
1236                       uint32_t FileAttributes,
1237                       uint32_t ShareAccess,
1238                       uint32_t CreateDisposition,
1239                       uint32_t CreateOptions,
1240                       uint8_t SecurityFlags,
1241                       uint16_t *pfid)
1242 {
1243         TALLOC_CTX *frame = talloc_stackframe();
1244         struct event_context *ev;
1245         struct tevent_req *req;
1246         NTSTATUS status = NT_STATUS_OK;
1247
1248         if (cli_has_async_calls(cli)) {
1249                 /*
1250                  * Can't use sync call while an async call is in flight
1251                  */
1252                 status = NT_STATUS_INVALID_PARAMETER;
1253                 goto fail;
1254         }
1255
1256         ev = event_context_init(frame);
1257         if (ev == NULL) {
1258                 status = NT_STATUS_NO_MEMORY;
1259                 goto fail;
1260         }
1261
1262         req = cli_ntcreate_send(frame, ev, cli, fname, CreatFlags,
1263                                 DesiredAccess, FileAttributes, ShareAccess,
1264                                 CreateDisposition, CreateOptions,
1265                                 SecurityFlags);
1266         if (req == NULL) {
1267                 status = NT_STATUS_NO_MEMORY;
1268                 goto fail;
1269         }
1270
1271         if (!tevent_req_poll(req, ev)) {
1272                 status = map_nt_error_from_unix(errno);
1273                 goto fail;
1274         }
1275
1276         status = cli_ntcreate_recv(req, pfid);
1277  fail:
1278         TALLOC_FREE(frame);
1279         if (!NT_STATUS_IS_OK(status)) {
1280                 cli_set_error(cli, status);
1281         }
1282         return status;
1283 }
1284
1285 /***********************************************************
1286  Common function for pushing stings, used by smb_bytes_push_str()
1287  and trans_bytes_push_str(). Only difference is the align_odd
1288  parameter setting.
1289 ***********************************************************/
1290
1291 static uint8_t *internal_bytes_push_str(uint8_t *buf, bool ucs2,
1292                                 const char *str, size_t str_len,
1293                                 bool align_odd,
1294                                 size_t *pconverted_size)
1295 {
1296         size_t buflen;
1297         char *converted;
1298         size_t converted_size;
1299
1300         if (buf == NULL) {
1301                 return NULL;
1302         }
1303
1304         buflen = talloc_get_size(buf);
1305
1306         if (align_odd && ucs2 && (buflen % 2 == 0)) {
1307                 /*
1308                  * We're pushing into an SMB buffer, align odd
1309                  */
1310                 buf = TALLOC_REALLOC_ARRAY(NULL, buf, uint8_t, buflen + 1);
1311                 if (buf == NULL) {
1312                         return NULL;
1313                 }
1314                 buf[buflen] = '\0';
1315                 buflen += 1;
1316         }
1317
1318         if (!convert_string_talloc(talloc_tos(), CH_UNIX,
1319                                    ucs2 ? CH_UTF16LE : CH_DOS,
1320                                    str, str_len, &converted,
1321                                    &converted_size, true)) {
1322                 return NULL;
1323         }
1324
1325         buf = TALLOC_REALLOC_ARRAY(NULL, buf, uint8_t,
1326                                    buflen + converted_size);
1327         if (buf == NULL) {
1328                 TALLOC_FREE(converted);
1329                 return NULL;
1330         }
1331
1332         memcpy(buf + buflen, converted, converted_size);
1333
1334         TALLOC_FREE(converted);
1335
1336         if (pconverted_size) {
1337                 *pconverted_size = converted_size;
1338         }
1339
1340         return buf;
1341 }
1342
1343 /***********************************************************
1344  Push a string into an SMB buffer, with odd byte alignment
1345  if it's a UCS2 string.
1346 ***********************************************************/
1347
1348 uint8_t *smb_bytes_push_str(uint8_t *buf, bool ucs2,
1349                             const char *str, size_t str_len,
1350                             size_t *pconverted_size)
1351 {
1352         return internal_bytes_push_str(buf, ucs2, str, str_len,
1353                         true, pconverted_size);
1354 }
1355
1356 /***********************************************************
1357  Same as smb_bytes_push_str(), but without the odd byte
1358  align for ucs2 (we're pushing into a param or data block).
1359  static for now, although this will probably change when
1360  other modules use async trans calls.
1361 ***********************************************************/
1362
1363 static uint8_t *trans2_bytes_push_str(uint8_t *buf, bool ucs2,
1364                             const char *str, size_t str_len,
1365                             size_t *pconverted_size)
1366 {
1367         return internal_bytes_push_str(buf, ucs2, str, str_len,
1368                         false, pconverted_size);
1369 }
1370
1371 /****************************************************************************
1372  Open a file
1373  WARNING: if you open with O_WRONLY then getattrE won't work!
1374 ****************************************************************************/
1375
1376 struct cli_open_state {
1377         uint16_t vwv[15];
1378         uint16_t fnum;
1379         struct iovec bytes;
1380 };
1381
1382 static void cli_open_done(struct tevent_req *subreq);
1383
1384 struct tevent_req *cli_open_create(TALLOC_CTX *mem_ctx,
1385                                    struct event_context *ev,
1386                                    struct cli_state *cli, const char *fname,
1387                                    int flags, int share_mode,
1388                                    struct tevent_req **psmbreq)
1389 {
1390         struct tevent_req *req, *subreq;
1391         struct cli_open_state *state;
1392         unsigned openfn;
1393         unsigned accessmode;
1394         uint8_t additional_flags;
1395         uint8_t *bytes;
1396
1397         req = tevent_req_create(mem_ctx, &state, struct cli_open_state);
1398         if (req == NULL) {
1399                 return NULL;
1400         }
1401
1402         openfn = 0;
1403         if (flags & O_CREAT) {
1404                 openfn |= (1<<4);
1405         }
1406         if (!(flags & O_EXCL)) {
1407                 if (flags & O_TRUNC)
1408                         openfn |= (1<<1);
1409                 else
1410                         openfn |= (1<<0);
1411         }
1412
1413         accessmode = (share_mode<<4);
1414
1415         if ((flags & O_ACCMODE) == O_RDWR) {
1416                 accessmode |= 2;
1417         } else if ((flags & O_ACCMODE) == O_WRONLY) {
1418                 accessmode |= 1;
1419         }
1420
1421 #if defined(O_SYNC)
1422         if ((flags & O_SYNC) == O_SYNC) {
1423                 accessmode |= (1<<14);
1424         }
1425 #endif /* O_SYNC */
1426
1427         if (share_mode == DENY_FCB) {
1428                 accessmode = 0xFF;
1429         }
1430
1431         SCVAL(state->vwv + 0, 0, 0xFF);
1432         SCVAL(state->vwv + 0, 1, 0);
1433         SSVAL(state->vwv + 1, 0, 0);
1434         SSVAL(state->vwv + 2, 0, 0);  /* no additional info */
1435         SSVAL(state->vwv + 3, 0, accessmode);
1436         SSVAL(state->vwv + 4, 0, aSYSTEM | aHIDDEN);
1437         SSVAL(state->vwv + 5, 0, 0);
1438         SIVAL(state->vwv + 6, 0, 0);
1439         SSVAL(state->vwv + 8, 0, openfn);
1440         SIVAL(state->vwv + 9, 0, 0);
1441         SIVAL(state->vwv + 11, 0, 0);
1442         SIVAL(state->vwv + 13, 0, 0);
1443
1444         additional_flags = 0;
1445
1446         if (cli->use_oplocks) {
1447                 /* if using oplocks then ask for a batch oplock via
1448                    core and extended methods */
1449                 additional_flags =
1450                         FLAG_REQUEST_OPLOCK|FLAG_REQUEST_BATCH_OPLOCK;
1451                 SSVAL(state->vwv+2, 0, SVAL(state->vwv+2, 0) | 6);
1452         }
1453
1454         bytes = talloc_array(state, uint8_t, 0);
1455         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
1456                                    strlen(fname)+1, NULL);
1457
1458         if (tevent_req_nomem(bytes, req)) {
1459                 return tevent_req_post(req, ev);
1460         }
1461
1462         state->bytes.iov_base = bytes;
1463         state->bytes.iov_len = talloc_get_size(bytes);
1464
1465         subreq = cli_smb_req_create(state, ev, cli, SMBopenX, additional_flags,
1466                                     15, state->vwv, 1, &state->bytes);
1467         if (subreq == NULL) {
1468                 TALLOC_FREE(req);
1469                 return NULL;
1470         }
1471         tevent_req_set_callback(subreq, cli_open_done, req);
1472         *psmbreq = subreq;
1473         return req;
1474 }
1475
1476 struct tevent_req *cli_open_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
1477                                  struct cli_state *cli, const char *fname,
1478                                  int flags, int share_mode)
1479 {
1480         struct tevent_req *req, *subreq;
1481
1482         req = cli_open_create(mem_ctx, ev, cli, fname, flags, share_mode,
1483                               &subreq);
1484         if ((req == NULL) || !cli_smb_req_send(subreq)) {
1485                 TALLOC_FREE(req);
1486                 return NULL;
1487         }
1488         return req;
1489 }
1490
1491 static void cli_open_done(struct tevent_req *subreq)
1492 {
1493         struct tevent_req *req = tevent_req_callback_data(
1494                 subreq, struct tevent_req);
1495         struct cli_open_state *state = tevent_req_data(
1496                 req, struct cli_open_state);
1497         uint8_t wct;
1498         uint16_t *vwv;
1499         NTSTATUS status;
1500
1501         status = cli_smb_recv(subreq, 3, &wct, &vwv, NULL, NULL);
1502         if (!NT_STATUS_IS_OK(status)) {
1503                 TALLOC_FREE(subreq);
1504                 tevent_req_nterror(req, status);
1505                 return;
1506         }
1507         state->fnum = SVAL(vwv+2, 0);
1508         tevent_req_done(req);
1509 }
1510
1511 NTSTATUS cli_open_recv(struct tevent_req *req, uint16_t *pfnum)
1512 {
1513         struct cli_open_state *state = tevent_req_data(
1514                 req, struct cli_open_state);
1515         NTSTATUS status;
1516
1517         if (tevent_req_is_nterror(req, &status)) {
1518                 return status;
1519         }
1520         *pfnum = state->fnum;
1521         return NT_STATUS_OK;
1522 }
1523
1524 NTSTATUS cli_open(struct cli_state *cli, const char *fname, int flags,
1525              int share_mode, uint16_t *pfnum)
1526 {
1527         TALLOC_CTX *frame = talloc_stackframe();
1528         struct event_context *ev;
1529         struct tevent_req *req;
1530         NTSTATUS status = NT_STATUS_OK;
1531
1532         if (cli_has_async_calls(cli)) {
1533                 /*
1534                  * Can't use sync call while an async call is in flight
1535                  */
1536                 status = NT_STATUS_INVALID_PARAMETER;
1537                 goto fail;
1538         }
1539
1540         ev = event_context_init(frame);
1541         if (ev == NULL) {
1542                 status = NT_STATUS_NO_MEMORY;
1543                 goto fail;
1544         }
1545
1546         req = cli_open_send(frame, ev, cli, fname, flags, share_mode);
1547         if (req == NULL) {
1548                 status = NT_STATUS_NO_MEMORY;
1549                 goto fail;
1550         }
1551
1552         if (!tevent_req_poll(req, ev)) {
1553                 status = map_nt_error_from_unix(errno);
1554                 goto fail;
1555         }
1556
1557         status = cli_open_recv(req, pfnum);
1558  fail:
1559         TALLOC_FREE(frame);
1560         if (!NT_STATUS_IS_OK(status)) {
1561                 cli_set_error(cli, status);
1562         }
1563         return status;
1564 }
1565
1566 /****************************************************************************
1567  Close a file.
1568 ****************************************************************************/
1569
1570 struct cli_close_state {
1571         uint16_t vwv[3];
1572 };
1573
1574 static void cli_close_done(struct tevent_req *subreq);
1575
1576 struct tevent_req *cli_close_create(TALLOC_CTX *mem_ctx,
1577                                 struct event_context *ev,
1578                                 struct cli_state *cli,
1579                                 uint16_t fnum,
1580                                 struct tevent_req **psubreq)
1581 {
1582         struct tevent_req *req, *subreq;
1583         struct cli_close_state *state;
1584
1585         req = tevent_req_create(mem_ctx, &state, struct cli_close_state);
1586         if (req == NULL) {
1587                 return NULL;
1588         }
1589         SSVAL(state->vwv+0, 0, fnum);
1590         SIVALS(state->vwv+1, 0, -1);
1591
1592         subreq = cli_smb_req_create(state, ev, cli, SMBclose, 0, 3, state->vwv,
1593                                     0, NULL);
1594         if (subreq == NULL) {
1595                 TALLOC_FREE(req);
1596                 return NULL;
1597         }
1598         tevent_req_set_callback(subreq, cli_close_done, req);
1599         *psubreq = subreq;
1600         return req;
1601 }
1602
1603 struct tevent_req *cli_close_send(TALLOC_CTX *mem_ctx,
1604                                 struct event_context *ev,
1605                                 struct cli_state *cli,
1606                                 uint16_t fnum)
1607 {
1608         struct tevent_req *req, *subreq;
1609
1610         req = cli_close_create(mem_ctx, ev, cli, fnum, &subreq);
1611         if ((req == NULL) || !cli_smb_req_send(subreq)) {
1612                 TALLOC_FREE(req);
1613                 return NULL;
1614         }
1615         return req;
1616 }
1617
1618 static void cli_close_done(struct tevent_req *subreq)
1619 {
1620         struct tevent_req *req = tevent_req_callback_data(
1621                 subreq, struct tevent_req);
1622         NTSTATUS status;
1623
1624         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
1625         TALLOC_FREE(subreq);
1626         if (!NT_STATUS_IS_OK(status)) {
1627                 tevent_req_nterror(req, status);
1628                 return;
1629         }
1630         tevent_req_done(req);
1631 }
1632
1633 NTSTATUS cli_close_recv(struct tevent_req *req)
1634 {
1635         return tevent_req_simple_recv_ntstatus(req);
1636 }
1637
1638 NTSTATUS cli_close(struct cli_state *cli, uint16_t fnum)
1639 {
1640         TALLOC_CTX *frame = talloc_stackframe();
1641         struct event_context *ev;
1642         struct tevent_req *req;
1643         NTSTATUS status = NT_STATUS_OK;
1644
1645         if (cli_has_async_calls(cli)) {
1646                 /*
1647                  * Can't use sync call while an async call is in flight
1648                  */
1649                 status = NT_STATUS_INVALID_PARAMETER;
1650                 goto fail;
1651         }
1652
1653         ev = event_context_init(frame);
1654         if (ev == NULL) {
1655                 status = NT_STATUS_NO_MEMORY;
1656                 goto fail;
1657         }
1658
1659         req = cli_close_send(frame, ev, cli, fnum);
1660         if (req == NULL) {
1661                 status = NT_STATUS_NO_MEMORY;
1662                 goto fail;
1663         }
1664
1665         if (!tevent_req_poll(req, ev)) {
1666                 status = map_nt_error_from_unix(errno);
1667                 goto fail;
1668         }
1669
1670         status = cli_close_recv(req);
1671  fail:
1672         TALLOC_FREE(frame);
1673         if (!NT_STATUS_IS_OK(status)) {
1674                 cli_set_error(cli, status);
1675         }
1676         return status;
1677 }
1678
1679 /****************************************************************************
1680  Truncate a file to a specified size
1681 ****************************************************************************/
1682
1683 bool cli_ftruncate(struct cli_state *cli, uint16_t fnum, uint64_t size)
1684 {
1685         unsigned int param_len = 6;
1686         unsigned int data_len = 8;
1687         uint16_t setup = TRANSACT2_SETFILEINFO;
1688         char param[6];
1689         unsigned char data[8];
1690         char *rparam=NULL, *rdata=NULL;
1691         int saved_timeout = cli->timeout;
1692
1693         SSVAL(param,0,fnum);
1694         SSVAL(param,2,SMB_SET_FILE_END_OF_FILE_INFO);
1695         SSVAL(param,4,0);
1696
1697         SBVAL(data, 0, size);
1698
1699         if (!cli_send_trans(cli, SMBtrans2,
1700                             NULL,                    /* name */
1701                             -1, 0,                   /* fid, flags */
1702                             &setup, 1, 0,            /* setup, length, max */
1703                             param, param_len, 2,     /* param, length, max */
1704                             (char *)&data,  data_len,/* data, length, ... */
1705                             cli->max_xmit)) {        /* ... max */
1706                 cli->timeout = saved_timeout;
1707                 return False;
1708         }
1709
1710         if (!cli_receive_trans(cli, SMBtrans2,
1711                                 &rparam, &param_len,
1712                                 &rdata, &data_len)) {
1713                 cli->timeout = saved_timeout;
1714                 SAFE_FREE(rdata);
1715                 SAFE_FREE(rparam);
1716                 return False;
1717         }
1718
1719         cli->timeout = saved_timeout;
1720
1721         SAFE_FREE(rdata);
1722         SAFE_FREE(rparam);
1723
1724         return True;
1725 }
1726
1727
1728 /****************************************************************************
1729  send a lock with a specified locktype
1730  this is used for testing LOCKING_ANDX_CANCEL_LOCK
1731 ****************************************************************************/
1732
1733 NTSTATUS cli_locktype(struct cli_state *cli, uint16_t fnum,
1734                       uint32_t offset, uint32_t len,
1735                       int timeout, unsigned char locktype)
1736 {
1737         char *p;
1738         int saved_timeout = cli->timeout;
1739
1740         memset(cli->outbuf,'\0',smb_size);
1741         memset(cli->inbuf,'\0', smb_size);
1742
1743         cli_set_message(cli->outbuf,8,0,True);
1744
1745         SCVAL(cli->outbuf,smb_com,SMBlockingX);
1746         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1747         cli_setup_packet(cli);
1748
1749         SCVAL(cli->outbuf,smb_vwv0,0xFF);
1750         SSVAL(cli->outbuf,smb_vwv2,fnum);
1751         SCVAL(cli->outbuf,smb_vwv3,locktype);
1752         SIVALS(cli->outbuf, smb_vwv4, timeout);
1753         SSVAL(cli->outbuf,smb_vwv6,0);
1754         SSVAL(cli->outbuf,smb_vwv7,1);
1755
1756         p = smb_buf(cli->outbuf);
1757         SSVAL(p, 0, cli->pid);
1758         SIVAL(p, 2, offset);
1759         SIVAL(p, 6, len);
1760
1761         p += 10;
1762
1763         cli_setup_bcc(cli, p);
1764
1765         cli_send_smb(cli);
1766
1767         if (timeout != 0) {
1768                 cli->timeout = (timeout == -1) ? 0x7FFFFFFF : (timeout + 2*1000);
1769         }
1770
1771         if (!cli_receive_smb(cli)) {
1772                 cli->timeout = saved_timeout;
1773                 return NT_STATUS_UNSUCCESSFUL;
1774         }
1775
1776         cli->timeout = saved_timeout;
1777
1778         return cli_nt_error(cli);
1779 }
1780
1781 /****************************************************************************
1782  Lock a file.
1783  note that timeout is in units of 2 milliseconds
1784 ****************************************************************************/
1785
1786 bool cli_lock(struct cli_state *cli, uint16_t fnum,
1787               uint32_t offset, uint32_t len, int timeout, enum brl_type lock_type)
1788 {
1789         char *p;
1790         int saved_timeout = cli->timeout;
1791
1792         memset(cli->outbuf,'\0',smb_size);
1793         memset(cli->inbuf,'\0', smb_size);
1794
1795         cli_set_message(cli->outbuf,8,0,True);
1796
1797         SCVAL(cli->outbuf,smb_com,SMBlockingX);
1798         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1799         cli_setup_packet(cli);
1800
1801         SCVAL(cli->outbuf,smb_vwv0,0xFF);
1802         SSVAL(cli->outbuf,smb_vwv2,fnum);
1803         SCVAL(cli->outbuf,smb_vwv3,(lock_type == READ_LOCK? 1 : 0));
1804         SIVALS(cli->outbuf, smb_vwv4, timeout);
1805         SSVAL(cli->outbuf,smb_vwv6,0);
1806         SSVAL(cli->outbuf,smb_vwv7,1);
1807
1808         p = smb_buf(cli->outbuf);
1809         SSVAL(p, 0, cli->pid);
1810         SIVAL(p, 2, offset);
1811         SIVAL(p, 6, len);
1812
1813         p += 10;
1814
1815         cli_setup_bcc(cli, p);
1816
1817         cli_send_smb(cli);
1818
1819         if (timeout != 0) {
1820                 cli->timeout = (timeout == -1) ? 0x7FFFFFFF : (timeout*2 + 5*1000);
1821         }
1822
1823         if (!cli_receive_smb(cli)) {
1824                 cli->timeout = saved_timeout;
1825                 return False;
1826         }
1827
1828         cli->timeout = saved_timeout;
1829
1830         if (cli_is_error(cli)) {
1831                 return False;
1832         }
1833
1834         return True;
1835 }
1836
1837 /****************************************************************************
1838  Unlock a file.
1839 ****************************************************************************/
1840
1841 bool cli_unlock(struct cli_state *cli, uint16_t fnum, uint32_t offset, uint32_t len)
1842 {
1843         char *p;
1844
1845         memset(cli->outbuf,'\0',smb_size);
1846         memset(cli->inbuf,'\0',smb_size);
1847
1848         cli_set_message(cli->outbuf,8,0,True);
1849
1850         SCVAL(cli->outbuf,smb_com,SMBlockingX);
1851         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1852         cli_setup_packet(cli);
1853
1854         SCVAL(cli->outbuf,smb_vwv0,0xFF);
1855         SSVAL(cli->outbuf,smb_vwv2,fnum);
1856         SCVAL(cli->outbuf,smb_vwv3,0);
1857         SIVALS(cli->outbuf, smb_vwv4, 0);
1858         SSVAL(cli->outbuf,smb_vwv6,1);
1859         SSVAL(cli->outbuf,smb_vwv7,0);
1860
1861         p = smb_buf(cli->outbuf);
1862         SSVAL(p, 0, cli->pid);
1863         SIVAL(p, 2, offset);
1864         SIVAL(p, 6, len);
1865         p += 10;
1866         cli_setup_bcc(cli, p);
1867         cli_send_smb(cli);
1868         if (!cli_receive_smb(cli)) {
1869                 return False;
1870         }
1871
1872         if (cli_is_error(cli)) {
1873                 return False;
1874         }
1875
1876         return True;
1877 }
1878
1879 /****************************************************************************
1880  Lock a file with 64 bit offsets.
1881 ****************************************************************************/
1882
1883 bool cli_lock64(struct cli_state *cli, uint16_t fnum,
1884                 uint64_t offset, uint64_t len, int timeout, enum brl_type lock_type)
1885 {
1886         char *p;
1887         int saved_timeout = cli->timeout;
1888         int ltype;
1889
1890         if (! (cli->capabilities & CAP_LARGE_FILES)) {
1891                 return cli_lock(cli, fnum, offset, len, timeout, lock_type);
1892         }
1893
1894         ltype = (lock_type == READ_LOCK? 1 : 0);
1895         ltype |= LOCKING_ANDX_LARGE_FILES;
1896
1897         memset(cli->outbuf,'\0',smb_size);
1898         memset(cli->inbuf,'\0', smb_size);
1899
1900         cli_set_message(cli->outbuf,8,0,True);
1901
1902         SCVAL(cli->outbuf,smb_com,SMBlockingX);
1903         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1904         cli_setup_packet(cli);
1905
1906         SCVAL(cli->outbuf,smb_vwv0,0xFF);
1907         SSVAL(cli->outbuf,smb_vwv2,fnum);
1908         SCVAL(cli->outbuf,smb_vwv3,ltype);
1909         SIVALS(cli->outbuf, smb_vwv4, timeout);
1910         SSVAL(cli->outbuf,smb_vwv6,0);
1911         SSVAL(cli->outbuf,smb_vwv7,1);
1912
1913         p = smb_buf(cli->outbuf);
1914         SIVAL(p, 0, cli->pid);
1915         SOFF_T_R(p, 4, offset);
1916         SOFF_T_R(p, 12, len);
1917         p += 20;
1918
1919         cli_setup_bcc(cli, p);
1920         cli_send_smb(cli);
1921
1922         if (timeout != 0) {
1923                 cli->timeout = (timeout == -1) ? 0x7FFFFFFF : (timeout + 5*1000);
1924         }
1925
1926         if (!cli_receive_smb(cli)) {
1927                 cli->timeout = saved_timeout;
1928                 return False;
1929         }
1930
1931         cli->timeout = saved_timeout;
1932
1933         if (cli_is_error(cli)) {
1934                 return False;
1935         }
1936
1937         return True;
1938 }
1939
1940 /****************************************************************************
1941  Unlock a file with 64 bit offsets.
1942 ****************************************************************************/
1943
1944 bool cli_unlock64(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len)
1945 {
1946         char *p;
1947
1948         if (! (cli->capabilities & CAP_LARGE_FILES)) {
1949                 return cli_unlock(cli, fnum, offset, len);
1950         }
1951
1952         memset(cli->outbuf,'\0',smb_size);
1953         memset(cli->inbuf,'\0',smb_size);
1954
1955         cli_set_message(cli->outbuf,8,0,True);
1956
1957         SCVAL(cli->outbuf,smb_com,SMBlockingX);
1958         SSVAL(cli->outbuf,smb_tid,cli->cnum);
1959         cli_setup_packet(cli);
1960
1961         SCVAL(cli->outbuf,smb_vwv0,0xFF);
1962         SSVAL(cli->outbuf,smb_vwv2,fnum);
1963         SCVAL(cli->outbuf,smb_vwv3,LOCKING_ANDX_LARGE_FILES);
1964         SIVALS(cli->outbuf, smb_vwv4, 0);
1965         SSVAL(cli->outbuf,smb_vwv6,1);
1966         SSVAL(cli->outbuf,smb_vwv7,0);
1967
1968         p = smb_buf(cli->outbuf);
1969         SIVAL(p, 0, cli->pid);
1970         SOFF_T_R(p, 4, offset);
1971         SOFF_T_R(p, 12, len);
1972         p += 20;
1973         cli_setup_bcc(cli, p);
1974         cli_send_smb(cli);
1975         if (!cli_receive_smb(cli)) {
1976                 return False;
1977         }
1978
1979         if (cli_is_error(cli)) {
1980                 return False;
1981         }
1982
1983         return True;
1984 }
1985
1986 /****************************************************************************
1987  Get/unlock a POSIX lock on a file - internal function.
1988 ****************************************************************************/
1989
1990 static bool cli_posix_lock_internal(struct cli_state *cli, uint16_t fnum,
1991                 uint64_t offset, uint64_t len, bool wait_lock, enum brl_type lock_type)
1992 {
1993         unsigned int param_len = 4;
1994         unsigned int data_len = POSIX_LOCK_DATA_SIZE;
1995         uint16_t setup = TRANSACT2_SETFILEINFO;
1996         char param[4];
1997         unsigned char data[POSIX_LOCK_DATA_SIZE];
1998         char *rparam=NULL, *rdata=NULL;
1999         int saved_timeout = cli->timeout;
2000
2001         SSVAL(param,0,fnum);
2002         SSVAL(param,2,SMB_SET_POSIX_LOCK);
2003
2004         switch (lock_type) {
2005                 case READ_LOCK:
2006                         SSVAL(data, POSIX_LOCK_TYPE_OFFSET, POSIX_LOCK_TYPE_READ);
2007                         break;
2008                 case WRITE_LOCK:
2009                         SSVAL(data, POSIX_LOCK_TYPE_OFFSET, POSIX_LOCK_TYPE_WRITE);
2010                         break;
2011                 case UNLOCK_LOCK:
2012                         SSVAL(data, POSIX_LOCK_TYPE_OFFSET, POSIX_LOCK_TYPE_UNLOCK);
2013                         break;
2014                 default:
2015                         return False;
2016         }
2017
2018         if (wait_lock) {
2019                 SSVAL(data, POSIX_LOCK_FLAGS_OFFSET, POSIX_LOCK_FLAG_WAIT);
2020                 cli->timeout = 0x7FFFFFFF;
2021         } else {
2022                 SSVAL(data, POSIX_LOCK_FLAGS_OFFSET, POSIX_LOCK_FLAG_NOWAIT);
2023         }
2024
2025         SIVAL(data, POSIX_LOCK_PID_OFFSET, cli->pid);
2026         SOFF_T(data, POSIX_LOCK_START_OFFSET, offset);
2027         SOFF_T(data, POSIX_LOCK_LEN_OFFSET, len);
2028
2029         if (!cli_send_trans(cli, SMBtrans2,
2030                         NULL,                        /* name */
2031                         -1, 0,                          /* fid, flags */
2032                         &setup, 1, 0,                   /* setup, length, max */
2033                         param, param_len, 2,            /* param, length, max */
2034                         (char *)&data,  data_len, cli->max_xmit /* data, length, max */
2035                         )) {
2036                 cli->timeout = saved_timeout;
2037                 return False;
2038         }
2039
2040         if (!cli_receive_trans(cli, SMBtrans2,
2041                                 &rparam, &param_len,
2042                                 &rdata, &data_len)) {
2043                 cli->timeout = saved_timeout;
2044                 SAFE_FREE(rdata);
2045                 SAFE_FREE(rparam);
2046                 return False;
2047         }
2048
2049         cli->timeout = saved_timeout;
2050
2051         SAFE_FREE(rdata);
2052         SAFE_FREE(rparam);
2053
2054         return True;
2055 }
2056
2057 /****************************************************************************
2058  POSIX Lock a file.
2059 ****************************************************************************/
2060
2061 bool cli_posix_lock(struct cli_state *cli, uint16_t fnum,
2062                         uint64_t offset, uint64_t len,
2063                         bool wait_lock, enum brl_type lock_type)
2064 {
2065         if (lock_type != READ_LOCK && lock_type != WRITE_LOCK) {
2066                 return False;
2067         }
2068         return cli_posix_lock_internal(cli, fnum, offset, len, wait_lock, lock_type);
2069 }
2070
2071 /****************************************************************************
2072  POSIX Unlock a file.
2073 ****************************************************************************/
2074
2075 bool cli_posix_unlock(struct cli_state *cli, uint16_t fnum, uint64_t offset, uint64_t len)
2076 {
2077         return cli_posix_lock_internal(cli, fnum, offset, len, False, UNLOCK_LOCK);
2078 }
2079
2080 /****************************************************************************
2081  POSIX Get any lock covering a file.
2082 ****************************************************************************/
2083
2084 bool cli_posix_getlock(struct cli_state *cli, uint16_t fnum, uint64_t *poffset, uint64_t *plen)
2085 {
2086         return True;
2087 }
2088
2089 /****************************************************************************
2090  Do a SMBgetattrE call.
2091 ****************************************************************************/
2092
2093 static void cli_getattrE_done(struct tevent_req *subreq);
2094
2095 struct cli_getattrE_state {
2096         uint16_t vwv[1];
2097         int zone_offset;
2098         uint16_t attr;
2099         SMB_OFF_T size;
2100         time_t change_time;
2101         time_t access_time;
2102         time_t write_time;
2103 };
2104
2105 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
2106                                 struct event_context *ev,
2107                                 struct cli_state *cli,
2108                                 uint16_t fnum)
2109 {
2110         struct tevent_req *req = NULL, *subreq = NULL;
2111         struct cli_getattrE_state *state = NULL;
2112         uint8_t additional_flags = 0;
2113
2114         req = tevent_req_create(mem_ctx, &state, struct cli_getattrE_state);
2115         if (req == NULL) {
2116                 return NULL;
2117         }
2118
2119         state->zone_offset = cli->serverzone;
2120         SSVAL(state->vwv+0,0,fnum);
2121
2122         subreq = cli_smb_send(state, ev, cli, SMBgetattrE, additional_flags,
2123                               1, state->vwv, 0, NULL);
2124         if (tevent_req_nomem(subreq, req)) {
2125                 return tevent_req_post(req, ev);
2126         }
2127         tevent_req_set_callback(subreq, cli_getattrE_done, req);
2128         return req;
2129 }
2130
2131 static void cli_getattrE_done(struct tevent_req *subreq)
2132 {
2133         struct tevent_req *req = tevent_req_callback_data(
2134                 subreq, struct tevent_req);
2135         struct cli_getattrE_state *state = tevent_req_data(
2136                 req, struct cli_getattrE_state);
2137         uint8_t wct;
2138         uint16_t *vwv = NULL;
2139         NTSTATUS status;
2140
2141         status = cli_smb_recv(subreq, 11, &wct, &vwv, NULL, NULL);
2142         if (!NT_STATUS_IS_OK(status)) {
2143                 tevent_req_nterror(req, status);
2144                 return;
2145         }
2146
2147         state->size = (SMB_OFF_T)IVAL(vwv+6,0);
2148         state->attr = SVAL(vwv+10,0);
2149         state->change_time = make_unix_date2(vwv+0, state->zone_offset);
2150         state->access_time = make_unix_date2(vwv+2, state->zone_offset);
2151         state->write_time = make_unix_date2(vwv+4, state->zone_offset);
2152
2153         TALLOC_FREE(subreq);
2154         tevent_req_done(req);
2155 }
2156
2157 NTSTATUS cli_getattrE_recv(struct tevent_req *req,
2158                         uint16_t *attr,
2159                         SMB_OFF_T *size,
2160                         time_t *change_time,
2161                         time_t *access_time,
2162                         time_t *write_time)
2163 {
2164         struct cli_getattrE_state *state = tevent_req_data(
2165                                 req, struct cli_getattrE_state);
2166         NTSTATUS status;
2167
2168         if (tevent_req_is_nterror(req, &status)) {
2169                 return status;
2170         }
2171         if (attr) {
2172                 *attr = state->attr;
2173         }
2174         if (size) {
2175                 *size = state->size;
2176         }
2177         if (change_time) {
2178                 *change_time = state->change_time;
2179         }
2180         if (access_time) {
2181                 *access_time = state->access_time;
2182         }
2183         if (write_time) {
2184                 *write_time = state->write_time;
2185         }
2186         return NT_STATUS_OK;
2187 }
2188
2189 NTSTATUS cli_getattrE(struct cli_state *cli,
2190                         uint16_t fnum,
2191                         uint16_t *attr,
2192                         SMB_OFF_T *size,
2193                         time_t *change_time,
2194                         time_t *access_time,
2195                         time_t *write_time)
2196 {
2197         TALLOC_CTX *frame = talloc_stackframe();
2198         struct event_context *ev = NULL;
2199         struct tevent_req *req = NULL;
2200         NTSTATUS status = NT_STATUS_OK;
2201
2202         if (cli_has_async_calls(cli)) {
2203                 /*
2204                  * Can't use sync call while an async call is in flight
2205                  */
2206                 status = NT_STATUS_INVALID_PARAMETER;
2207                 goto fail;
2208         }
2209
2210         ev = event_context_init(frame);
2211         if (ev == NULL) {
2212                 status = NT_STATUS_NO_MEMORY;
2213                 goto fail;
2214         }
2215
2216         req = cli_getattrE_send(frame, ev, cli, fnum);
2217         if (req == NULL) {
2218                 status = NT_STATUS_NO_MEMORY;
2219                 goto fail;
2220         }
2221
2222         if (!tevent_req_poll(req, ev)) {
2223                 status = map_nt_error_from_unix(errno);
2224                 goto fail;
2225         }
2226
2227         status = cli_getattrE_recv(req,
2228                                         attr,
2229                                         size,
2230                                         change_time,
2231                                         access_time,
2232                                         write_time);
2233
2234  fail:
2235         TALLOC_FREE(frame);
2236         if (!NT_STATUS_IS_OK(status)) {
2237                 cli_set_error(cli, status);
2238         }
2239         return status;
2240 }
2241
2242 /****************************************************************************
2243  Do a SMBgetatr call
2244 ****************************************************************************/
2245
2246 static void cli_getatr_done(struct tevent_req *subreq);
2247
2248 struct cli_getatr_state {
2249         int zone_offset;
2250         uint16_t attr;
2251         SMB_OFF_T size;
2252         time_t write_time;
2253 };
2254
2255 struct tevent_req *cli_getatr_send(TALLOC_CTX *mem_ctx,
2256                                 struct event_context *ev,
2257                                 struct cli_state *cli,
2258                                 const char *fname)
2259 {
2260         struct tevent_req *req = NULL, *subreq = NULL;
2261         struct cli_getatr_state *state = NULL;
2262         uint8_t additional_flags = 0;
2263         uint8_t *bytes = NULL;
2264
2265         req = tevent_req_create(mem_ctx, &state, struct cli_getatr_state);
2266         if (req == NULL) {
2267                 return NULL;
2268         }
2269
2270         state->zone_offset = cli->serverzone;
2271
2272         bytes = talloc_array(state, uint8_t, 1);
2273         if (tevent_req_nomem(bytes, req)) {
2274                 return tevent_req_post(req, ev);
2275         }
2276         bytes[0] = 4;
2277         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
2278                                    strlen(fname)+1, NULL);
2279
2280         if (tevent_req_nomem(bytes, req)) {
2281                 return tevent_req_post(req, ev);
2282         }
2283
2284         subreq = cli_smb_send(state, ev, cli, SMBgetatr, additional_flags,
2285                               0, NULL, talloc_get_size(bytes), bytes);
2286         if (tevent_req_nomem(subreq, req)) {
2287                 return tevent_req_post(req, ev);
2288         }
2289         tevent_req_set_callback(subreq, cli_getatr_done, req);
2290         return req;
2291 }
2292
2293 static void cli_getatr_done(struct tevent_req *subreq)
2294 {
2295         struct tevent_req *req = tevent_req_callback_data(
2296                 subreq, struct tevent_req);
2297         struct cli_getatr_state *state = tevent_req_data(
2298                 req, struct cli_getatr_state);
2299         uint8_t wct;
2300         uint16_t *vwv = NULL;
2301         NTSTATUS status;
2302
2303         status = cli_smb_recv(subreq, 4, &wct, &vwv, NULL, NULL);
2304         if (!NT_STATUS_IS_OK(status)) {
2305                 tevent_req_nterror(req, status);
2306                 return;
2307         }
2308
2309         state->attr = SVAL(vwv+0,0);
2310         state->size = (SMB_OFF_T)IVAL(vwv+3,0);
2311         state->write_time = make_unix_date3(vwv+1, state->zone_offset);
2312
2313         TALLOC_FREE(subreq);
2314         tevent_req_done(req);
2315 }
2316
2317 NTSTATUS cli_getatr_recv(struct tevent_req *req,
2318                         uint16_t *attr,
2319                         SMB_OFF_T *size,
2320                         time_t *write_time)
2321 {
2322         struct cli_getatr_state *state = tevent_req_data(
2323                                 req, struct cli_getatr_state);
2324         NTSTATUS status;
2325
2326         if (tevent_req_is_nterror(req, &status)) {
2327                 return status;
2328         }
2329         if (attr) {
2330                 *attr = state->attr;
2331         }
2332         if (size) {
2333                 *size = state->size;
2334         }
2335         if (write_time) {
2336                 *write_time = state->write_time;
2337         }
2338         return NT_STATUS_OK;
2339 }
2340
2341 NTSTATUS cli_getatr(struct cli_state *cli,
2342                         const char *fname,
2343                         uint16_t *attr,
2344                         SMB_OFF_T *size,
2345                         time_t *write_time)
2346 {
2347         TALLOC_CTX *frame = talloc_stackframe();
2348         struct event_context *ev = NULL;
2349         struct tevent_req *req = NULL;
2350         NTSTATUS status = NT_STATUS_OK;
2351
2352         if (cli_has_async_calls(cli)) {
2353                 /*
2354                  * Can't use sync call while an async call is in flight
2355                  */
2356                 status = NT_STATUS_INVALID_PARAMETER;
2357                 goto fail;
2358         }
2359
2360         ev = event_context_init(frame);
2361         if (ev == NULL) {
2362                 status = NT_STATUS_NO_MEMORY;
2363                 goto fail;
2364         }
2365
2366         req = cli_getatr_send(frame, ev, cli, fname);
2367         if (req == NULL) {
2368                 status = NT_STATUS_NO_MEMORY;
2369                 goto fail;
2370         }
2371
2372         if (!tevent_req_poll(req, ev)) {
2373                 status = map_nt_error_from_unix(errno);
2374                 goto fail;
2375         }
2376
2377         status = cli_getatr_recv(req,
2378                                 attr,
2379                                 size,
2380                                 write_time);
2381
2382  fail:
2383         TALLOC_FREE(frame);
2384         if (!NT_STATUS_IS_OK(status)) {
2385                 cli_set_error(cli, status);
2386         }
2387         return status;
2388 }
2389
2390 /****************************************************************************
2391  Do a SMBsetattrE call.
2392 ****************************************************************************/
2393
2394 static void cli_setattrE_done(struct tevent_req *subreq);
2395
2396 struct cli_setattrE_state {
2397         int dummy;
2398 };
2399
2400 struct tevent_req *cli_setattrE_send(TALLOC_CTX *mem_ctx,
2401                                 struct event_context *ev,
2402                                 struct cli_state *cli,
2403                                 uint16_t fnum,
2404                                 time_t change_time,
2405                                 time_t access_time,
2406                                 time_t write_time)
2407 {
2408         struct tevent_req *req = NULL, *subreq = NULL;
2409         struct cli_setattrE_state *state = NULL;
2410         uint8_t additional_flags = 0;
2411         uint16_t vwv[7];
2412
2413         req = tevent_req_create(mem_ctx, &state, struct cli_setattrE_state);
2414         if (req == NULL) {
2415                 return NULL;
2416         }
2417
2418         memset(vwv, '\0', sizeof(vwv));
2419         SSVAL(vwv+0, 0, fnum);
2420         cli_put_dos_date2(cli, (char *)&vwv[1], 0, change_time);
2421         cli_put_dos_date2(cli, (char *)&vwv[3], 0, access_time);
2422         cli_put_dos_date2(cli, (char *)&vwv[5], 0, write_time);
2423
2424         subreq = cli_smb_send(state, ev, cli, SMBsetattrE, additional_flags,
2425                               7, vwv, 0, NULL);
2426         if (tevent_req_nomem(subreq, req)) {
2427                 return tevent_req_post(req, ev);
2428         }
2429         tevent_req_set_callback(subreq, cli_setattrE_done, req);
2430         return req;
2431 }
2432
2433 static void cli_setattrE_done(struct tevent_req *subreq)
2434 {
2435         struct tevent_req *req = tevent_req_callback_data(
2436                 subreq, struct tevent_req);
2437         NTSTATUS status;
2438
2439         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
2440         TALLOC_FREE(subreq);
2441         if (!NT_STATUS_IS_OK(status)) {
2442                 tevent_req_nterror(req, status);
2443                 return;
2444         }
2445         tevent_req_done(req);
2446 }
2447
2448 NTSTATUS cli_setattrE_recv(struct tevent_req *req)
2449 {
2450         return tevent_req_simple_recv_ntstatus(req);
2451 }
2452
2453 NTSTATUS cli_setattrE(struct cli_state *cli,
2454                         uint16_t fnum,
2455                         time_t change_time,
2456                         time_t access_time,
2457                         time_t write_time)
2458 {
2459         TALLOC_CTX *frame = talloc_stackframe();
2460         struct event_context *ev = NULL;
2461         struct tevent_req *req = NULL;
2462         NTSTATUS status = NT_STATUS_OK;
2463
2464         if (cli_has_async_calls(cli)) {
2465                 /*
2466                  * Can't use sync call while an async call is in flight
2467                  */
2468                 status = NT_STATUS_INVALID_PARAMETER;
2469                 goto fail;
2470         }
2471
2472         ev = event_context_init(frame);
2473         if (ev == NULL) {
2474                 status = NT_STATUS_NO_MEMORY;
2475                 goto fail;
2476         }
2477
2478         req = cli_setattrE_send(frame, ev,
2479                         cli,
2480                         fnum,
2481                         change_time,
2482                         access_time,
2483                         write_time);
2484
2485         if (req == NULL) {
2486                 status = NT_STATUS_NO_MEMORY;
2487                 goto fail;
2488         }
2489
2490         if (!tevent_req_poll(req, ev)) {
2491                 status = map_nt_error_from_unix(errno);
2492                 goto fail;
2493         }
2494
2495         status = cli_setattrE_recv(req);
2496
2497  fail:
2498         TALLOC_FREE(frame);
2499         if (!NT_STATUS_IS_OK(status)) {
2500                 cli_set_error(cli, status);
2501         }
2502         return status;
2503 }
2504
2505 /****************************************************************************
2506  Do a SMBsetatr call.
2507 ****************************************************************************/
2508
2509 static void cli_setatr_done(struct tevent_req *subreq);
2510
2511 struct cli_setatr_state {
2512         uint16_t vwv[8];
2513 };
2514
2515 struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
2516                                 struct event_context *ev,
2517                                 struct cli_state *cli,
2518                                 const char *fname,
2519                                 uint16_t attr,
2520                                 time_t mtime)
2521 {
2522         struct tevent_req *req = NULL, *subreq = NULL;
2523         struct cli_setatr_state *state = NULL;
2524         uint8_t additional_flags = 0;
2525         uint8_t *bytes = NULL;
2526
2527         req = tevent_req_create(mem_ctx, &state, struct cli_setatr_state);
2528         if (req == NULL) {
2529                 return NULL;
2530         }
2531
2532         memset(state->vwv, '\0', sizeof(state->vwv));
2533         SSVAL(state->vwv+0, 0, attr);
2534         cli_put_dos_date3(cli, (char *)&state->vwv[1], 0, mtime);
2535
2536         bytes = talloc_array(state, uint8_t, 1);
2537         if (tevent_req_nomem(bytes, req)) {
2538                 return tevent_req_post(req, ev);
2539         }
2540         bytes[0] = 4;
2541         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
2542                                    strlen(fname)+1, NULL);
2543         if (tevent_req_nomem(bytes, req)) {
2544                 return tevent_req_post(req, ev);
2545         }
2546         bytes = TALLOC_REALLOC_ARRAY(state, bytes, uint8_t,
2547                         talloc_get_size(bytes)+1);
2548         if (tevent_req_nomem(bytes, req)) {
2549                 return tevent_req_post(req, ev);
2550         }
2551
2552         bytes[talloc_get_size(bytes)-1] = 4;
2553         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), "",
2554                                    1, NULL);
2555         if (tevent_req_nomem(bytes, req)) {
2556                 return tevent_req_post(req, ev);
2557         }
2558
2559         subreq = cli_smb_send(state, ev, cli, SMBsetatr, additional_flags,
2560                               8, state->vwv, talloc_get_size(bytes), bytes);
2561         if (tevent_req_nomem(subreq, req)) {
2562                 return tevent_req_post(req, ev);
2563         }
2564         tevent_req_set_callback(subreq, cli_setatr_done, req);
2565         return req;
2566 }
2567
2568 static void cli_setatr_done(struct tevent_req *subreq)
2569 {
2570         struct tevent_req *req = tevent_req_callback_data(
2571                 subreq, struct tevent_req);
2572         NTSTATUS status;
2573
2574         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
2575         TALLOC_FREE(subreq);
2576         if (!NT_STATUS_IS_OK(status)) {
2577                 tevent_req_nterror(req, status);
2578                 return;
2579         }
2580         tevent_req_done(req);
2581 }
2582
2583 NTSTATUS cli_setatr_recv(struct tevent_req *req)
2584 {
2585         return tevent_req_simple_recv_ntstatus(req);
2586 }
2587
2588 NTSTATUS cli_setatr(struct cli_state *cli,
2589                 const char *fname,
2590                 uint16_t attr,
2591                 time_t mtime)
2592 {
2593         TALLOC_CTX *frame = talloc_stackframe();
2594         struct event_context *ev = NULL;
2595         struct tevent_req *req = NULL;
2596         NTSTATUS status = NT_STATUS_OK;
2597
2598         if (cli_has_async_calls(cli)) {
2599                 /*
2600                  * Can't use sync call while an async call is in flight
2601                  */
2602                 status = NT_STATUS_INVALID_PARAMETER;
2603                 goto fail;
2604         }
2605
2606         ev = event_context_init(frame);
2607         if (ev == NULL) {
2608                 status = NT_STATUS_NO_MEMORY;
2609                 goto fail;
2610         }
2611
2612         req = cli_setatr_send(frame, ev, cli, fname, attr, mtime);
2613         if (req == NULL) {
2614                 status = NT_STATUS_NO_MEMORY;
2615                 goto fail;
2616         }
2617
2618         if (!tevent_req_poll(req, ev)) {
2619                 status = map_nt_error_from_unix(errno);
2620                 goto fail;
2621         }
2622
2623         status = cli_setatr_recv(req);
2624
2625  fail:
2626         TALLOC_FREE(frame);
2627         if (!NT_STATUS_IS_OK(status)) {
2628                 cli_set_error(cli, status);
2629         }
2630         return status;
2631 }
2632
2633 /****************************************************************************
2634  Check for existance of a dir.
2635 ****************************************************************************/
2636
2637 static void cli_chkpath_done(struct tevent_req *subreq);
2638
2639 struct cli_chkpath_state {
2640         int dummy;
2641 };
2642
2643 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
2644                                   struct event_context *ev,
2645                                   struct cli_state *cli,
2646                                   const char *fname)
2647 {
2648         struct tevent_req *req = NULL, *subreq = NULL;
2649         struct cli_chkpath_state *state = NULL;
2650         uint8_t additional_flags = 0;
2651         uint8_t *bytes = NULL;
2652
2653         req = tevent_req_create(mem_ctx, &state, struct cli_chkpath_state);
2654         if (req == NULL) {
2655                 return NULL;
2656         }
2657
2658         bytes = talloc_array(state, uint8_t, 1);
2659         if (tevent_req_nomem(bytes, req)) {
2660                 return tevent_req_post(req, ev);
2661         }
2662         bytes[0] = 4;
2663         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
2664                                    strlen(fname)+1, NULL);
2665
2666         if (tevent_req_nomem(bytes, req)) {
2667                 return tevent_req_post(req, ev);
2668         }
2669
2670         subreq = cli_smb_send(state, ev, cli, SMBcheckpath, additional_flags,
2671                               0, NULL, talloc_get_size(bytes), bytes);
2672         if (tevent_req_nomem(subreq, req)) {
2673                 return tevent_req_post(req, ev);
2674         }
2675         tevent_req_set_callback(subreq, cli_chkpath_done, req);
2676         return req;
2677 }
2678
2679 static void cli_chkpath_done(struct tevent_req *subreq)
2680 {
2681         struct tevent_req *req = tevent_req_callback_data(
2682                 subreq, struct tevent_req);
2683         NTSTATUS status;
2684
2685         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
2686         TALLOC_FREE(subreq);
2687         if (!NT_STATUS_IS_OK(status)) {
2688                 tevent_req_nterror(req, status);
2689                 return;
2690         }
2691         tevent_req_done(req);
2692 }
2693
2694 NTSTATUS cli_chkpath_recv(struct tevent_req *req)
2695 {
2696         return tevent_req_simple_recv_ntstatus(req);
2697 }
2698
2699 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path)
2700 {
2701         TALLOC_CTX *frame = talloc_stackframe();
2702         struct event_context *ev = NULL;
2703         struct tevent_req *req = NULL;
2704         char *path2 = NULL;
2705         NTSTATUS status = NT_STATUS_OK;
2706
2707         if (cli_has_async_calls(cli)) {
2708                 /*
2709                  * Can't use sync call while an async call is in flight
2710                  */
2711                 status = NT_STATUS_INVALID_PARAMETER;
2712                 goto fail;
2713         }
2714
2715         path2 = talloc_strdup(frame, path);
2716         if (!path2) {
2717                 status = NT_STATUS_NO_MEMORY;
2718                 goto fail;
2719         }
2720         trim_char(path2,'\0','\\');
2721         if (!*path2) {
2722                 path2 = talloc_strdup(frame, "\\");
2723                 if (!path2) {
2724                         status = NT_STATUS_NO_MEMORY;
2725                         goto fail;
2726                 }
2727         }
2728
2729         ev = event_context_init(frame);
2730         if (ev == NULL) {
2731                 status = NT_STATUS_NO_MEMORY;
2732                 goto fail;
2733         }
2734
2735         req = cli_chkpath_send(frame, ev, cli, path2);
2736         if (req == NULL) {
2737                 status = NT_STATUS_NO_MEMORY;
2738                 goto fail;
2739         }
2740
2741         if (!tevent_req_poll(req, ev)) {
2742                 status = map_nt_error_from_unix(errno);
2743                 goto fail;
2744         }
2745
2746         status = cli_chkpath_recv(req);
2747
2748  fail:
2749         TALLOC_FREE(frame);
2750         if (!NT_STATUS_IS_OK(status)) {
2751                 cli_set_error(cli, status);
2752         }
2753         return status;
2754 }
2755
2756 /****************************************************************************
2757  Query disk space.
2758 ****************************************************************************/
2759
2760 static void cli_dskattr_done(struct tevent_req *subreq);
2761
2762 struct cli_dskattr_state {
2763         int bsize;
2764         int total;
2765         int avail;
2766 };
2767
2768 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
2769                                   struct event_context *ev,
2770                                   struct cli_state *cli)
2771 {
2772         struct tevent_req *req = NULL, *subreq = NULL;
2773         struct cli_dskattr_state *state = NULL;
2774         uint8_t additional_flags = 0;
2775
2776         req = tevent_req_create(mem_ctx, &state, struct cli_dskattr_state);
2777         if (req == NULL) {
2778                 return NULL;
2779         }
2780
2781         subreq = cli_smb_send(state, ev, cli, SMBdskattr, additional_flags,
2782                               0, NULL, 0, NULL);
2783         if (tevent_req_nomem(subreq, req)) {
2784                 return tevent_req_post(req, ev);
2785         }
2786         tevent_req_set_callback(subreq, cli_dskattr_done, req);
2787         return req;
2788 }
2789
2790 static void cli_dskattr_done(struct tevent_req *subreq)
2791 {
2792         struct tevent_req *req = tevent_req_callback_data(
2793                 subreq, struct tevent_req);
2794         struct cli_dskattr_state *state = tevent_req_data(
2795                 req, struct cli_dskattr_state);
2796         uint8_t wct;
2797         uint16_t *vwv = NULL;
2798         NTSTATUS status;
2799
2800         status = cli_smb_recv(subreq, 4, &wct, &vwv, NULL, NULL);
2801         if (!NT_STATUS_IS_OK(status)) {
2802                 tevent_req_nterror(req, status);
2803                 return;
2804         }
2805         state->bsize = SVAL(vwv+1, 0)*SVAL(vwv+2,0);
2806         state->total = SVAL(vwv+0, 0);
2807         state->avail = SVAL(vwv+3, 0);
2808         TALLOC_FREE(subreq);
2809         tevent_req_done(req);
2810 }
2811
2812 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total, int *avail)
2813 {
2814         struct cli_dskattr_state *state = tevent_req_data(
2815                                 req, struct cli_dskattr_state);
2816         NTSTATUS status;
2817
2818         if (tevent_req_is_nterror(req, &status)) {
2819                 return status;
2820         }
2821         *bsize = state->bsize;
2822         *total = state->total;
2823         *avail = state->avail;
2824         return NT_STATUS_OK;
2825 }
2826
2827 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail)
2828 {
2829         TALLOC_CTX *frame = talloc_stackframe();
2830         struct event_context *ev = NULL;
2831         struct tevent_req *req = NULL;
2832         NTSTATUS status = NT_STATUS_OK;
2833
2834         if (cli_has_async_calls(cli)) {
2835                 /*
2836                  * Can't use sync call while an async call is in flight
2837                  */
2838                 status = NT_STATUS_INVALID_PARAMETER;
2839                 goto fail;
2840         }
2841
2842         ev = event_context_init(frame);
2843         if (ev == NULL) {
2844                 status = NT_STATUS_NO_MEMORY;
2845                 goto fail;
2846         }
2847
2848         req = cli_dskattr_send(frame, ev, cli);
2849         if (req == NULL) {
2850                 status = NT_STATUS_NO_MEMORY;
2851                 goto fail;
2852         }
2853
2854         if (!tevent_req_poll(req, ev)) {
2855                 status = map_nt_error_from_unix(errno);
2856                 goto fail;
2857         }
2858
2859         status = cli_dskattr_recv(req, bsize, total, avail);
2860
2861  fail:
2862         TALLOC_FREE(frame);
2863         if (!NT_STATUS_IS_OK(status)) {
2864                 cli_set_error(cli, status);
2865         }
2866         return status;
2867 }
2868
2869 /****************************************************************************
2870  Create and open a temporary file.
2871 ****************************************************************************/
2872
2873 int cli_ctemp(struct cli_state *cli, const char *path, char **tmp_path)
2874 {
2875         int len;
2876         char *p;
2877
2878         memset(cli->outbuf,'\0',smb_size);
2879         memset(cli->inbuf,'\0',smb_size);
2880
2881         cli_set_message(cli->outbuf,3,0,True);
2882
2883         SCVAL(cli->outbuf,smb_com,SMBctemp);
2884         SSVAL(cli->outbuf,smb_tid,cli->cnum);
2885         cli_setup_packet(cli);
2886
2887         SSVAL(cli->outbuf,smb_vwv0,0);
2888         SIVALS(cli->outbuf,smb_vwv1,-1);
2889
2890         p = smb_buf(cli->outbuf);
2891         *p++ = 4;
2892         p += clistr_push(cli, p, path,
2893                         cli->bufsize - PTR_DIFF(p,cli->outbuf), STR_TERMINATE);
2894
2895         cli_setup_bcc(cli, p);
2896
2897         cli_send_smb(cli);
2898         if (!cli_receive_smb(cli)) {
2899                 return -1;
2900         }
2901
2902         if (cli_is_error(cli)) {
2903                 return -1;
2904         }
2905
2906         /* despite the spec, the result has a -1, followed by
2907            length, followed by name */
2908         p = smb_buf(cli->inbuf);
2909         p += 4;
2910         len = smb_buflen(cli->inbuf) - 4;
2911         if (len <= 0 || len > PATH_MAX) return -1;
2912
2913         if (tmp_path) {
2914                 char *path2 = SMB_MALLOC_ARRAY(char, len+1);
2915                 if (!path2) {
2916                         return -1;
2917                 }
2918                 clistr_pull(cli->inbuf, path2, p,
2919                             len+1, len, STR_ASCII);
2920                 *tmp_path = path2;
2921         }
2922
2923         return SVAL(cli->inbuf,smb_vwv0);
2924 }
2925
2926 /*
2927    send a raw ioctl - used by the torture code
2928 */
2929 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob)
2930 {
2931         memset(cli->outbuf,'\0',smb_size);
2932         memset(cli->inbuf,'\0',smb_size);
2933
2934         cli_set_message(cli->outbuf, 3, 0, True);
2935         SCVAL(cli->outbuf,smb_com,SMBioctl);
2936         cli_setup_packet(cli);
2937
2938         SSVAL(cli->outbuf, smb_vwv0, fnum);
2939         SSVAL(cli->outbuf, smb_vwv1, code>>16);
2940         SSVAL(cli->outbuf, smb_vwv2, (code&0xFFFF));
2941
2942         cli_send_smb(cli);
2943         if (!cli_receive_smb(cli)) {
2944                 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
2945         }
2946
2947         if (cli_is_error(cli)) {
2948                 return cli_nt_error(cli);
2949         }
2950
2951         *blob = data_blob_null;
2952
2953         return NT_STATUS_OK;
2954 }
2955
2956 /*********************************************************
2957  Set an extended attribute utility fn.
2958 *********************************************************/
2959
2960 static bool cli_set_ea(struct cli_state *cli, uint16_t setup, char *param, unsigned int param_len,
2961                         const char *ea_name, const char *ea_val, size_t ea_len)
2962 {
2963         unsigned int data_len = 0;
2964         char *data = NULL;
2965         char *rparam=NULL, *rdata=NULL;
2966         char *p;
2967         size_t ea_namelen = strlen(ea_name);
2968
2969         if (ea_namelen == 0 && ea_len == 0) {
2970                 data_len = 4;
2971                 data = (char *)SMB_MALLOC(data_len);
2972                 if (!data) {
2973                         return False;
2974                 }
2975                 p = data;
2976                 SIVAL(p,0,data_len);
2977         } else {
2978                 data_len = 4 + 4 + ea_namelen + 1 + ea_len;
2979                 data = (char *)SMB_MALLOC(data_len);
2980                 if (!data) {
2981                         return False;
2982                 }
2983                 p = data;
2984                 SIVAL(p,0,data_len);
2985                 p += 4;
2986                 SCVAL(p, 0, 0); /* EA flags. */
2987                 SCVAL(p, 1, ea_namelen);
2988                 SSVAL(p, 2, ea_len);
2989                 memcpy(p+4, ea_name, ea_namelen+1); /* Copy in the name. */
2990                 memcpy(p+4+ea_namelen+1, ea_val, ea_len);
2991         }
2992
2993         if (!cli_send_trans(cli, SMBtrans2,
2994                         NULL,                        /* name */
2995                         -1, 0,                          /* fid, flags */
2996                         &setup, 1, 0,                   /* setup, length, max */
2997                         param, param_len, 2,            /* param, length, max */
2998                         data,  data_len, cli->max_xmit /* data, length, max */
2999                         )) {
3000                 SAFE_FREE(data);
3001                 return False;
3002         }
3003
3004         if (!cli_receive_trans(cli, SMBtrans2,
3005                         &rparam, &param_len,
3006                         &rdata, &data_len)) {
3007                         SAFE_FREE(data);
3008                 return false;
3009         }
3010
3011         SAFE_FREE(data);
3012         SAFE_FREE(rdata);
3013         SAFE_FREE(rparam);
3014
3015         return True;
3016 }
3017
3018 /*********************************************************
3019  Set an extended attribute on a pathname.
3020 *********************************************************/
3021
3022 bool cli_set_ea_path(struct cli_state *cli, const char *path, const char *ea_name, const char *ea_val, size_t ea_len)
3023 {
3024         uint16_t setup = TRANSACT2_SETPATHINFO;
3025         unsigned int param_len = 0;
3026         char *param;
3027         size_t srclen = 2*(strlen(path)+1);
3028         char *p;
3029         bool ret;
3030
3031         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3032         if (!param) {
3033                 return false;
3034         }
3035         memset(param, '\0', 6);
3036         SSVAL(param,0,SMB_INFO_SET_EA);
3037         p = &param[6];
3038
3039         p += clistr_push(cli, p, path, srclen, STR_TERMINATE);
3040         param_len = PTR_DIFF(p, param);
3041
3042         ret = cli_set_ea(cli, setup, param, param_len, ea_name, ea_val, ea_len);
3043         SAFE_FREE(param);
3044         return ret;
3045 }
3046
3047 /*********************************************************
3048  Set an extended attribute on an fnum.
3049 *********************************************************/
3050
3051 bool cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum, const char *ea_name, const char *ea_val, size_t ea_len)
3052 {
3053         char param[6];
3054         uint16_t setup = TRANSACT2_SETFILEINFO;
3055
3056         memset(param, 0, 6);
3057         SSVAL(param,0,fnum);
3058         SSVAL(param,2,SMB_INFO_SET_EA);
3059
3060         return cli_set_ea(cli, setup, param, 6, ea_name, ea_val, ea_len);
3061 }
3062
3063 /*********************************************************
3064  Get an extended attribute list utility fn.
3065 *********************************************************/
3066
3067 static bool cli_get_ea_list(struct cli_state *cli,
3068                 uint16_t setup, char *param, unsigned int param_len,
3069                 TALLOC_CTX *ctx,
3070                 size_t *pnum_eas,
3071                 struct ea_struct **pea_list)
3072 {
3073         unsigned int data_len = 0;
3074         unsigned int rparam_len, rdata_len;
3075         char *rparam=NULL, *rdata=NULL;
3076         char *p;
3077         size_t ea_size;
3078         size_t num_eas;
3079         bool ret = False;
3080         struct ea_struct *ea_list;
3081
3082         *pnum_eas = 0;
3083         if (pea_list) {
3084                 *pea_list = NULL;
3085         }
3086
3087         if (!cli_send_trans(cli, SMBtrans2,
3088                         NULL,           /* Name */
3089                         -1, 0,          /* fid, flags */
3090                         &setup, 1, 0,   /* setup, length, max */
3091                         param, param_len, 10, /* param, length, max */
3092                         NULL, data_len, cli->max_xmit /* data, length, max */
3093                                 )) {
3094                 return False;
3095         }
3096
3097         if (!cli_receive_trans(cli, SMBtrans2,
3098                         &rparam, &rparam_len,
3099                         &rdata, &rdata_len)) {
3100                 return False;
3101         }
3102
3103         if (!rdata || rdata_len < 4) {
3104                 goto out;
3105         }
3106
3107         ea_size = (size_t)IVAL(rdata,0);
3108         if (ea_size > rdata_len) {
3109                 goto out;
3110         }
3111
3112         if (ea_size == 0) {
3113                 /* No EA's present. */
3114                 ret = True;
3115                 goto out;
3116         }
3117
3118         p = rdata + 4;
3119         ea_size -= 4;
3120
3121         /* Validate the EA list and count it. */
3122         for (num_eas = 0; ea_size >= 4; num_eas++) {
3123                 unsigned int ea_namelen = CVAL(p,1);
3124                 unsigned int ea_valuelen = SVAL(p,2);
3125                 if (ea_namelen == 0) {
3126                         goto out;
3127                 }
3128                 if (4 + ea_namelen + 1 + ea_valuelen > ea_size) {
3129                         goto out;
3130                 }
3131                 ea_size -= 4 + ea_namelen + 1 + ea_valuelen;
3132                 p += 4 + ea_namelen + 1 + ea_valuelen;
3133         }
3134
3135         if (num_eas == 0) {
3136                 ret = True;
3137                 goto out;
3138         }
3139
3140         *pnum_eas = num_eas;
3141         if (!pea_list) {
3142                 /* Caller only wants number of EA's. */
3143                 ret = True;
3144                 goto out;
3145         }
3146
3147         ea_list = TALLOC_ARRAY(ctx, struct ea_struct, num_eas);
3148         if (!ea_list) {
3149                 goto out;
3150         }
3151
3152         ea_size = (size_t)IVAL(rdata,0);
3153         p = rdata + 4;
3154
3155         for (num_eas = 0; num_eas < *pnum_eas; num_eas++ ) {
3156                 struct ea_struct *ea = &ea_list[num_eas];
3157                 fstring unix_ea_name;
3158                 unsigned int ea_namelen = CVAL(p,1);
3159                 unsigned int ea_valuelen = SVAL(p,2);
3160
3161                 ea->flags = CVAL(p,0);
3162                 unix_ea_name[0] = '\0';
3163                 pull_ascii_fstring(unix_ea_name, p + 4);
3164                 ea->name = talloc_strdup(ctx, unix_ea_name);
3165                 /* Ensure the value is null terminated (in case it's a string). */
3166                 ea->value = data_blob_talloc(ctx, NULL, ea_valuelen + 1);
3167                 if (!ea->value.data) {
3168                         goto out;
3169                 }
3170                 if (ea_valuelen) {
3171                         memcpy(ea->value.data, p+4+ea_namelen+1, ea_valuelen);
3172                 }
3173                 ea->value.data[ea_valuelen] = 0;
3174                 ea->value.length--;
3175                 p += 4 + ea_namelen + 1 + ea_valuelen;
3176         }
3177
3178         *pea_list = ea_list;
3179         ret = True;
3180
3181  out :
3182
3183         SAFE_FREE(rdata);
3184         SAFE_FREE(rparam);
3185         return ret;
3186 }
3187
3188 /*********************************************************
3189  Get an extended attribute list from a pathname.
3190 *********************************************************/
3191
3192 bool cli_get_ea_list_path(struct cli_state *cli, const char *path,
3193                 TALLOC_CTX *ctx,
3194                 size_t *pnum_eas,
3195                 struct ea_struct **pea_list)
3196 {
3197         uint16_t setup = TRANSACT2_QPATHINFO;
3198         unsigned int param_len = 0;
3199         char *param;
3200         char *p;
3201         size_t srclen = 2*(strlen(path)+1);
3202         bool ret;
3203
3204         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3205         if (!param) {
3206                 return false;
3207         }
3208         p = param;
3209         memset(p, 0, 6);
3210         SSVAL(p, 0, SMB_INFO_QUERY_ALL_EAS);
3211         p += 6;
3212         p += clistr_push(cli, p, path, srclen, STR_TERMINATE);
3213         param_len = PTR_DIFF(p, param);
3214
3215         ret = cli_get_ea_list(cli, setup, param, param_len, ctx, pnum_eas, pea_list);
3216         SAFE_FREE(param);
3217         return ret;
3218 }
3219
3220 /*********************************************************
3221  Get an extended attribute list from an fnum.
3222 *********************************************************/
3223
3224 bool cli_get_ea_list_fnum(struct cli_state *cli, uint16_t fnum,
3225                 TALLOC_CTX *ctx,
3226                 size_t *pnum_eas,
3227                 struct ea_struct **pea_list)
3228 {
3229         uint16_t setup = TRANSACT2_QFILEINFO;
3230         char param[6];
3231
3232         memset(param, 0, 6);
3233         SSVAL(param,0,fnum);
3234         SSVAL(param,2,SMB_INFO_SET_EA);
3235
3236         return cli_get_ea_list(cli, setup, param, 6, ctx, pnum_eas, pea_list);
3237 }
3238
3239 /****************************************************************************
3240  Convert open "flags" arg to uint32_t on wire.
3241 ****************************************************************************/
3242
3243 static uint32_t open_flags_to_wire(int flags)
3244 {
3245         int open_mode = flags & O_ACCMODE;
3246         uint32_t ret = 0;
3247
3248         switch (open_mode) {
3249                 case O_WRONLY:
3250                         ret |= SMB_O_WRONLY;
3251                         break;
3252                 case O_RDWR:
3253                         ret |= SMB_O_RDWR;
3254                         break;
3255                 default:
3256                 case O_RDONLY:
3257                         ret |= SMB_O_RDONLY;
3258                         break;
3259         }
3260
3261         if (flags & O_CREAT) {
3262                 ret |= SMB_O_CREAT;
3263         }
3264         if (flags & O_EXCL) {
3265                 ret |= SMB_O_EXCL;
3266         }
3267         if (flags & O_TRUNC) {
3268                 ret |= SMB_O_TRUNC;
3269         }
3270 #if defined(O_SYNC)
3271         if (flags & O_SYNC) {
3272                 ret |= SMB_O_SYNC;
3273         }
3274 #endif /* O_SYNC */
3275         if (flags & O_APPEND) {
3276                 ret |= SMB_O_APPEND;
3277         }
3278 #if defined(O_DIRECT)
3279         if (flags & O_DIRECT) {
3280                 ret |= SMB_O_DIRECT;
3281         }
3282 #endif
3283 #if defined(O_DIRECTORY)
3284         if (flags & O_DIRECTORY) {
3285                 ret &= ~(SMB_O_RDONLY|SMB_O_RDWR|SMB_O_WRONLY);
3286                 ret |= SMB_O_DIRECTORY;
3287         }
3288 #endif
3289         return ret;
3290 }
3291
3292 /****************************************************************************
3293  Open a file - POSIX semantics. Returns fnum. Doesn't request oplock.
3294 ****************************************************************************/
3295
3296 static int cli_posix_open_internal(struct cli_state *cli, const char *fname, int flags, mode_t mode, bool is_dir)
3297 {
3298         unsigned int data_len = 0;
3299         unsigned int param_len = 0;
3300         uint16_t setup = TRANSACT2_SETPATHINFO;
3301         char *param;
3302         char data[18];
3303         char *rparam=NULL, *rdata=NULL;
3304         char *p;
3305         uint16_t fnum = (uint16_t)-1;
3306         uint32_t wire_flags = open_flags_to_wire(flags);
3307         size_t srclen = 2*(strlen(fname)+1);
3308
3309         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3310         if (!param) {
3311                 return false;
3312         }
3313         memset(param, '\0', 6);
3314         SSVAL(param,0, SMB_POSIX_PATH_OPEN);
3315         p = &param[6];
3316
3317         p += clistr_push(cli, p, fname, srclen, STR_TERMINATE);
3318         param_len = PTR_DIFF(p, param);
3319
3320         if (is_dir) {
3321                 wire_flags &= ~(SMB_O_RDONLY|SMB_O_RDWR|SMB_O_WRONLY);
3322                 wire_flags |= SMB_O_DIRECTORY;
3323         }
3324
3325         p = data;
3326         SIVAL(p,0,0); /* No oplock. */
3327         SIVAL(p,4,wire_flags);
3328         SIVAL(p,8,unix_perms_to_wire(mode));
3329         SIVAL(p,12,0); /* Top bits of perms currently undefined. */
3330         SSVAL(p,16,SMB_NO_INFO_LEVEL_RETURNED); /* No info level returned. */
3331
3332         data_len = 18;
3333
3334         if (!cli_send_trans(cli, SMBtrans2,
3335                         NULL,                        /* name */
3336                         -1, 0,                          /* fid, flags */
3337                         &setup, 1, 0,                   /* setup, length, max */
3338                         param, param_len, 0,            /* param, length, max */
3339                         (char *)&data,  data_len, cli->max_xmit /* data, length, max */
3340                         )) {
3341                 SAFE_FREE(param);
3342                 return -1;
3343         }
3344
3345         SAFE_FREE(param);
3346
3347         if (!cli_receive_trans(cli, SMBtrans2,
3348                 &rparam, &param_len,
3349                 &rdata, &data_len)) {
3350                         return -1;
3351         }
3352
3353         fnum = SVAL(rdata,2);
3354
3355         SAFE_FREE(rdata);
3356         SAFE_FREE(rparam);
3357
3358         return fnum;
3359 }
3360
3361 /****************************************************************************
3362  open - POSIX semantics.
3363 ****************************************************************************/
3364
3365 int cli_posix_open(struct cli_state *cli, const char *fname, int flags, mode_t mode)
3366 {
3367         return cli_posix_open_internal(cli, fname, flags, mode, False);
3368 }
3369
3370 /****************************************************************************
3371  mkdir - POSIX semantics.
3372 ****************************************************************************/
3373
3374 int cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode)
3375 {
3376         return (cli_posix_open_internal(cli, fname, O_CREAT, mode, True) == -1) ? -1 : 0;
3377 }
3378
3379 /****************************************************************************
3380  unlink or rmdir - POSIX semantics.
3381 ****************************************************************************/
3382
3383 struct unlink_state {
3384         uint16_t setup;
3385         uint8_t data[2];
3386 };
3387
3388 static void cli_posix_unlink_internal_done(struct tevent_req *subreq)
3389 {
3390         struct tevent_req *req = tevent_req_callback_data(
3391                                 subreq, struct tevent_req);
3392         struct unlink_state *state = tevent_req_data(req, struct unlink_state);
3393         NTSTATUS status;
3394
3395         status = cli_trans_recv(subreq, state, NULL, NULL, NULL, NULL, NULL, NULL);
3396         TALLOC_FREE(subreq);
3397         if (!NT_STATUS_IS_OK(status)) {
3398                 tevent_req_nterror(req, status);
3399                 return;
3400         }
3401         tevent_req_done(req);
3402 }
3403
3404 static struct tevent_req *cli_posix_unlink_internal_send(TALLOC_CTX *mem_ctx,
3405                                         struct event_context *ev,
3406                                         struct cli_state *cli,
3407                                         const char *fname,
3408                                         bool is_dir)
3409 {
3410         struct tevent_req *req = NULL, *subreq = NULL;
3411         struct unlink_state *state = NULL;
3412         uint8_t *param = NULL;
3413
3414         req = tevent_req_create(mem_ctx, &state, struct unlink_state);
3415         if (req == NULL) {
3416                 return NULL;
3417         }
3418
3419         /* Setup setup word. */
3420         SSVAL(&state->setup, 0, TRANSACT2_SETPATHINFO);
3421
3422         /* Setup param array. */
3423         param = talloc_array(state, uint8_t, 6);
3424         if (tevent_req_nomem(param, req)) {
3425                 return tevent_req_post(req, ev);
3426         }
3427         memset(param, '\0', 6);
3428         SSVAL(param, 0, SMB_POSIX_PATH_UNLINK);
3429
3430         param = trans2_bytes_push_str(param, cli_ucs2(cli), fname,
3431                                    strlen(fname)+1, NULL);
3432
3433         if (tevent_req_nomem(param, req)) {
3434                 return tevent_req_post(req, ev);
3435         }
3436
3437         /* Setup data word. */
3438         SSVAL(state->data, 0, is_dir ? SMB_POSIX_UNLINK_DIRECTORY_TARGET :
3439                         SMB_POSIX_UNLINK_FILE_TARGET);
3440
3441         subreq = cli_trans_send(state,                  /* mem ctx. */
3442                                 ev,                     /* event ctx. */
3443                                 cli,                    /* cli_state. */
3444                                 SMBtrans2,              /* cmd. */
3445                                 NULL,                   /* pipe name. */
3446                                 -1,                     /* fid. */
3447                                 0,                      /* function. */
3448                                 0,                      /* flags. */
3449                                 &state->setup,          /* setup. */
3450                                 1,                      /* num setup uint16_t words. */
3451                                 0,                      /* max returned setup. */
3452                                 param,                  /* param. */
3453                                 talloc_get_size(param), /* num param. */
3454                                 2,                      /* max returned param. */
3455                                 state->data,            /* data. */
3456                                 2,                      /* num data. */
3457                                 0);                     /* max returned data. */
3458
3459         if (tevent_req_nomem(subreq, req)) {
3460                 return tevent_req_post(req, ev);
3461         }
3462         tevent_req_set_callback(subreq, cli_posix_unlink_internal_done, req);
3463         return req;
3464 }
3465
3466 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
3467                                         struct event_context *ev,
3468                                         struct cli_state *cli,
3469                                         const char *fname)
3470 {
3471         return cli_posix_unlink_internal_send(mem_ctx, ev, cli, fname, false);
3472 }
3473
3474 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx)
3475 {
3476         NTSTATUS status;
3477
3478         if (tevent_req_is_nterror(req, &status)) {
3479                 return status;
3480         }
3481         return NT_STATUS_OK;
3482 }
3483
3484 /****************************************************************************
3485  unlink - POSIX semantics.
3486 ****************************************************************************/
3487
3488 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname)
3489 {
3490         TALLOC_CTX *frame = talloc_stackframe();
3491         struct event_context *ev = NULL;
3492         struct tevent_req *req = NULL;
3493         NTSTATUS status = NT_STATUS_OK;
3494
3495         if (cli_has_async_calls(cli)) {
3496                 /*
3497                  * Can't use sync call while an async call is in flight
3498                  */
3499                 status = NT_STATUS_INVALID_PARAMETER;
3500                 goto fail;
3501         }
3502
3503         ev = event_context_init(frame);
3504         if (ev == NULL) {
3505                 status = NT_STATUS_NO_MEMORY;
3506                 goto fail;
3507         }
3508
3509         req = cli_posix_unlink_send(frame,
3510                                 ev,
3511                                 cli,
3512                                 fname);
3513         if (req == NULL) {
3514                 status = NT_STATUS_NO_MEMORY;
3515                 goto fail;
3516         }
3517
3518         if (!tevent_req_poll(req, ev)) {
3519                 status = map_nt_error_from_unix(errno);
3520                 goto fail;
3521         }
3522
3523         status = cli_posix_unlink_recv(req, frame);
3524
3525  fail:
3526         TALLOC_FREE(frame);
3527         if (!NT_STATUS_IS_OK(status)) {
3528                 cli_set_error(cli, status);
3529         }
3530         return status;
3531 }
3532
3533 /****************************************************************************
3534  rmdir - POSIX semantics.
3535 ****************************************************************************/
3536
3537 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
3538                                         struct event_context *ev,
3539                                         struct cli_state *cli,
3540                                         const char *fname)
3541 {
3542         return cli_posix_unlink_internal_send(mem_ctx, ev, cli, fname, true);
3543 }
3544
3545 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx)
3546 {
3547         NTSTATUS status;
3548
3549         if (tevent_req_is_nterror(req, &status)) {
3550                 return status;
3551         }
3552         return NT_STATUS_OK;
3553 }
3554
3555 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname)
3556 {
3557         TALLOC_CTX *frame = talloc_stackframe();
3558         struct event_context *ev = NULL;
3559         struct tevent_req *req = NULL;
3560         NTSTATUS status = NT_STATUS_OK;
3561
3562         if (cli_has_async_calls(cli)) {
3563                 /*
3564                  * Can't use sync call while an async call is in flight
3565                  */
3566                 status = NT_STATUS_INVALID_PARAMETER;
3567                 goto fail;
3568         }
3569
3570         ev = event_context_init(frame);
3571         if (ev == NULL) {
3572                 status = NT_STATUS_NO_MEMORY;
3573                 goto fail;
3574         }
3575
3576         req = cli_posix_rmdir_send(frame,
3577                                 ev,
3578                                 cli,
3579                                 fname);
3580         if (req == NULL) {
3581                 status = NT_STATUS_NO_MEMORY;
3582                 goto fail;
3583         }
3584
3585         if (!tevent_req_poll(req, ev)) {
3586                 status = map_nt_error_from_unix(errno);
3587                 goto fail;
3588         }
3589
3590         status = cli_posix_rmdir_recv(req, frame);
3591
3592  fail:
3593         TALLOC_FREE(frame);
3594         if (!NT_STATUS_IS_OK(status)) {
3595                 cli_set_error(cli, status);
3596         }
3597         return status;
3598 }