e210d76b28a5665091980e6854b56a7f527fbd40
[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         int zone_offset;
2097         uint16_t attr;
2098         SMB_OFF_T size;
2099         time_t change_time;
2100         time_t access_time;
2101         time_t write_time;
2102 };
2103
2104 struct tevent_req *cli_getattrE_send(TALLOC_CTX *mem_ctx,
2105                                 struct event_context *ev,
2106                                 struct cli_state *cli,
2107                                 uint16_t fnum)
2108 {
2109         struct tevent_req *req = NULL, *subreq = NULL;
2110         struct cli_getattrE_state *state = NULL;
2111         uint8_t additional_flags = 0;
2112         uint16_t vwv[1];
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(vwv+0,0,fnum);
2121
2122         subreq = cli_smb_send(state, ev, cli, SMBgetattrE, additional_flags,
2123                               1, 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         int dummy;
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         uint16_t vwv[8];
2526         uint8_t *bytes = NULL;
2527
2528         req = tevent_req_create(mem_ctx, &state, struct cli_setatr_state);
2529         if (req == NULL) {
2530                 return NULL;
2531         }
2532
2533         memset(vwv, '\0', sizeof(vwv));
2534         SSVAL(vwv+0, 0, attr);
2535         cli_put_dos_date3(cli, (char *)&vwv[1], 0, mtime);
2536
2537         bytes = talloc_array(state, uint8_t, 1);
2538         if (tevent_req_nomem(bytes, req)) {
2539                 return tevent_req_post(req, ev);
2540         }
2541         bytes[0] = 4;
2542         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
2543                                    strlen(fname)+1, NULL);
2544         if (tevent_req_nomem(bytes, req)) {
2545                 return tevent_req_post(req, ev);
2546         }
2547         bytes = TALLOC_REALLOC_ARRAY(state, bytes, uint8_t,
2548                         talloc_get_size(bytes)+1);
2549         if (tevent_req_nomem(bytes, req)) {
2550                 return tevent_req_post(req, ev);
2551         }
2552
2553         bytes[talloc_get_size(bytes)-1] = 4;
2554         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), "",
2555                                    1, NULL);
2556         if (tevent_req_nomem(bytes, req)) {
2557                 return tevent_req_post(req, ev);
2558         }
2559
2560         subreq = cli_smb_send(state, ev, cli, SMBsetatr, additional_flags,
2561                               8, vwv, talloc_get_size(bytes), bytes);
2562         if (tevent_req_nomem(subreq, req)) {
2563                 return tevent_req_post(req, ev);
2564         }
2565         tevent_req_set_callback(subreq, cli_setatr_done, req);
2566         return req;
2567 }
2568
2569 static void cli_setatr_done(struct tevent_req *subreq)
2570 {
2571         struct tevent_req *req = tevent_req_callback_data(
2572                 subreq, struct tevent_req);
2573         NTSTATUS status;
2574
2575         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
2576         TALLOC_FREE(subreq);
2577         if (!NT_STATUS_IS_OK(status)) {
2578                 tevent_req_nterror(req, status);
2579                 return;
2580         }
2581         tevent_req_done(req);
2582 }
2583
2584 NTSTATUS cli_setatr_recv(struct tevent_req *req)
2585 {
2586         return tevent_req_simple_recv_ntstatus(req);
2587 }
2588
2589 NTSTATUS cli_setatr(struct cli_state *cli,
2590                 const char *fname,
2591                 uint16_t attr,
2592                 time_t mtime)
2593 {
2594         TALLOC_CTX *frame = talloc_stackframe();
2595         struct event_context *ev = NULL;
2596         struct tevent_req *req = NULL;
2597         NTSTATUS status = NT_STATUS_OK;
2598
2599         if (cli_has_async_calls(cli)) {
2600                 /*
2601                  * Can't use sync call while an async call is in flight
2602                  */
2603                 status = NT_STATUS_INVALID_PARAMETER;
2604                 goto fail;
2605         }
2606
2607         ev = event_context_init(frame);
2608         if (ev == NULL) {
2609                 status = NT_STATUS_NO_MEMORY;
2610                 goto fail;
2611         }
2612
2613         req = cli_setatr_send(frame, ev, cli, fname, attr, mtime);
2614         if (req == NULL) {
2615                 status = NT_STATUS_NO_MEMORY;
2616                 goto fail;
2617         }
2618
2619         if (!tevent_req_poll(req, ev)) {
2620                 status = map_nt_error_from_unix(errno);
2621                 goto fail;
2622         }
2623
2624         status = cli_setatr_recv(req);
2625
2626  fail:
2627         TALLOC_FREE(frame);
2628         if (!NT_STATUS_IS_OK(status)) {
2629                 cli_set_error(cli, status);
2630         }
2631         return status;
2632 }
2633
2634 #if 0
2635 bool cli_setatr(struct cli_state *cli, const char *fname, uint16_t attr, time_t t)
2636 {
2637         char *p;
2638
2639         memset(cli->outbuf,'\0',smb_size);
2640         memset(cli->inbuf,'\0',smb_size);
2641
2642         cli_set_message(cli->outbuf,8,0,True);
2643
2644         SCVAL(cli->outbuf,smb_com,SMBsetatr);
2645         SSVAL(cli->outbuf,smb_tid,cli->cnum);
2646         cli_setup_packet(cli);
2647
2648         SSVAL(cli->outbuf,smb_vwv0, attr);
2649         cli_put_dos_date3(cli, cli->outbuf,smb_vwv1, t);
2650
2651         p = smb_buf(cli->outbuf);
2652         *p++ = 4;
2653         p += clistr_push(cli, p, fname,
2654                         cli->bufsize - PTR_DIFF(p,cli->outbuf), STR_TERMINATE);
2655         *p++ = 4;
2656
2657         cli_setup_bcc(cli, p);
2658
2659         cli_send_smb(cli);
2660         if (!cli_receive_smb(cli)) {
2661                 return False;
2662         }
2663
2664         if (cli_is_error(cli)) {
2665                 return False;
2666         }
2667
2668         return True;
2669 }
2670 #endif
2671
2672 /****************************************************************************
2673  Check for existance of a dir.
2674 ****************************************************************************/
2675
2676 static void cli_chkpath_done(struct tevent_req *subreq);
2677
2678 struct cli_chkpath_state {
2679         int dummy;
2680 };
2681
2682 struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
2683                                   struct event_context *ev,
2684                                   struct cli_state *cli,
2685                                   const char *fname)
2686 {
2687         struct tevent_req *req = NULL, *subreq = NULL;
2688         struct cli_chkpath_state *state = NULL;
2689         uint8_t additional_flags = 0;
2690         uint8_t *bytes = NULL;
2691
2692         req = tevent_req_create(mem_ctx, &state, struct cli_chkpath_state);
2693         if (req == NULL) {
2694                 return NULL;
2695         }
2696
2697         bytes = talloc_array(state, uint8_t, 1);
2698         if (tevent_req_nomem(bytes, req)) {
2699                 return tevent_req_post(req, ev);
2700         }
2701         bytes[0] = 4;
2702         bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), fname,
2703                                    strlen(fname)+1, NULL);
2704
2705         if (tevent_req_nomem(bytes, req)) {
2706                 return tevent_req_post(req, ev);
2707         }
2708
2709         subreq = cli_smb_send(state, ev, cli, SMBcheckpath, additional_flags,
2710                               0, NULL, talloc_get_size(bytes), bytes);
2711         if (tevent_req_nomem(subreq, req)) {
2712                 return tevent_req_post(req, ev);
2713         }
2714         tevent_req_set_callback(subreq, cli_chkpath_done, req);
2715         return req;
2716 }
2717
2718 static void cli_chkpath_done(struct tevent_req *subreq)
2719 {
2720         struct tevent_req *req = tevent_req_callback_data(
2721                 subreq, struct tevent_req);
2722         NTSTATUS status;
2723
2724         status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);
2725         TALLOC_FREE(subreq);
2726         if (!NT_STATUS_IS_OK(status)) {
2727                 tevent_req_nterror(req, status);
2728                 return;
2729         }
2730         tevent_req_done(req);
2731 }
2732
2733 NTSTATUS cli_chkpath_recv(struct tevent_req *req)
2734 {
2735         return tevent_req_simple_recv_ntstatus(req);
2736 }
2737
2738 NTSTATUS cli_chkpath(struct cli_state *cli, const char *path)
2739 {
2740         TALLOC_CTX *frame = talloc_stackframe();
2741         struct event_context *ev = NULL;
2742         struct tevent_req *req = NULL;
2743         char *path2 = NULL;
2744         NTSTATUS status = NT_STATUS_OK;
2745
2746         if (cli_has_async_calls(cli)) {
2747                 /*
2748                  * Can't use sync call while an async call is in flight
2749                  */
2750                 status = NT_STATUS_INVALID_PARAMETER;
2751                 goto fail;
2752         }
2753
2754         path2 = talloc_strdup(frame, path);
2755         if (!path2) {
2756                 status = NT_STATUS_NO_MEMORY;
2757                 goto fail;
2758         }
2759         trim_char(path2,'\0','\\');
2760         if (!*path2) {
2761                 path2 = talloc_strdup(frame, "\\");
2762                 if (!path2) {
2763                         status = NT_STATUS_NO_MEMORY;
2764                         goto fail;
2765                 }
2766         }
2767
2768         ev = event_context_init(frame);
2769         if (ev == NULL) {
2770                 status = NT_STATUS_NO_MEMORY;
2771                 goto fail;
2772         }
2773
2774         req = cli_chkpath_send(frame, ev, cli, path2);
2775         if (req == NULL) {
2776                 status = NT_STATUS_NO_MEMORY;
2777                 goto fail;
2778         }
2779
2780         if (!tevent_req_poll(req, ev)) {
2781                 status = map_nt_error_from_unix(errno);
2782                 goto fail;
2783         }
2784
2785         status = cli_chkpath_recv(req);
2786
2787  fail:
2788         TALLOC_FREE(frame);
2789         if (!NT_STATUS_IS_OK(status)) {
2790                 cli_set_error(cli, status);
2791         }
2792         return status;
2793 }
2794
2795 /****************************************************************************
2796  Query disk space.
2797 ****************************************************************************/
2798
2799 static void cli_dskattr_done(struct tevent_req *subreq);
2800
2801 struct cli_dskattr_state {
2802         int bsize;
2803         int total;
2804         int avail;
2805 };
2806
2807 struct tevent_req *cli_dskattr_send(TALLOC_CTX *mem_ctx,
2808                                   struct event_context *ev,
2809                                   struct cli_state *cli)
2810 {
2811         struct tevent_req *req = NULL, *subreq = NULL;
2812         struct cli_dskattr_state *state = NULL;
2813         uint8_t additional_flags = 0;
2814
2815         req = tevent_req_create(mem_ctx, &state, struct cli_dskattr_state);
2816         if (req == NULL) {
2817                 return NULL;
2818         }
2819
2820         subreq = cli_smb_send(state, ev, cli, SMBdskattr, additional_flags,
2821                               0, NULL, 0, NULL);
2822         if (tevent_req_nomem(subreq, req)) {
2823                 return tevent_req_post(req, ev);
2824         }
2825         tevent_req_set_callback(subreq, cli_dskattr_done, req);
2826         return req;
2827 }
2828
2829 static void cli_dskattr_done(struct tevent_req *subreq)
2830 {
2831         struct tevent_req *req = tevent_req_callback_data(
2832                 subreq, struct tevent_req);
2833         struct cli_dskattr_state *state = tevent_req_data(
2834                 req, struct cli_dskattr_state);
2835         uint8_t wct;
2836         uint16_t *vwv = NULL;
2837         NTSTATUS status;
2838
2839         status = cli_smb_recv(subreq, 4, &wct, &vwv, NULL, NULL);
2840         if (!NT_STATUS_IS_OK(status)) {
2841                 tevent_req_nterror(req, status);
2842                 return;
2843         }
2844         state->bsize = SVAL(vwv+1, 0)*SVAL(vwv+2,0);
2845         state->total = SVAL(vwv+0, 0);
2846         state->avail = SVAL(vwv+3, 0);
2847         TALLOC_FREE(subreq);
2848         tevent_req_done(req);
2849 }
2850
2851 NTSTATUS cli_dskattr_recv(struct tevent_req *req, int *bsize, int *total, int *avail)
2852 {
2853         struct cli_dskattr_state *state = tevent_req_data(
2854                                 req, struct cli_dskattr_state);
2855         NTSTATUS status;
2856
2857         if (tevent_req_is_nterror(req, &status)) {
2858                 return status;
2859         }
2860         *bsize = state->bsize;
2861         *total = state->total;
2862         *avail = state->avail;
2863         return NT_STATUS_OK;
2864 }
2865
2866 NTSTATUS cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail)
2867 {
2868         TALLOC_CTX *frame = talloc_stackframe();
2869         struct event_context *ev = NULL;
2870         struct tevent_req *req = NULL;
2871         NTSTATUS status = NT_STATUS_OK;
2872
2873         if (cli_has_async_calls(cli)) {
2874                 /*
2875                  * Can't use sync call while an async call is in flight
2876                  */
2877                 status = NT_STATUS_INVALID_PARAMETER;
2878                 goto fail;
2879         }
2880
2881         ev = event_context_init(frame);
2882         if (ev == NULL) {
2883                 status = NT_STATUS_NO_MEMORY;
2884                 goto fail;
2885         }
2886
2887         req = cli_dskattr_send(frame, ev, cli);
2888         if (req == NULL) {
2889                 status = NT_STATUS_NO_MEMORY;
2890                 goto fail;
2891         }
2892
2893         if (!tevent_req_poll(req, ev)) {
2894                 status = map_nt_error_from_unix(errno);
2895                 goto fail;
2896         }
2897
2898         status = cli_dskattr_recv(req, bsize, total, avail);
2899
2900  fail:
2901         TALLOC_FREE(frame);
2902         if (!NT_STATUS_IS_OK(status)) {
2903                 cli_set_error(cli, status);
2904         }
2905         return status;
2906 }
2907
2908 /****************************************************************************
2909  Create and open a temporary file.
2910 ****************************************************************************/
2911
2912 int cli_ctemp(struct cli_state *cli, const char *path, char **tmp_path)
2913 {
2914         int len;
2915         char *p;
2916
2917         memset(cli->outbuf,'\0',smb_size);
2918         memset(cli->inbuf,'\0',smb_size);
2919
2920         cli_set_message(cli->outbuf,3,0,True);
2921
2922         SCVAL(cli->outbuf,smb_com,SMBctemp);
2923         SSVAL(cli->outbuf,smb_tid,cli->cnum);
2924         cli_setup_packet(cli);
2925
2926         SSVAL(cli->outbuf,smb_vwv0,0);
2927         SIVALS(cli->outbuf,smb_vwv1,-1);
2928
2929         p = smb_buf(cli->outbuf);
2930         *p++ = 4;
2931         p += clistr_push(cli, p, path,
2932                         cli->bufsize - PTR_DIFF(p,cli->outbuf), STR_TERMINATE);
2933
2934         cli_setup_bcc(cli, p);
2935
2936         cli_send_smb(cli);
2937         if (!cli_receive_smb(cli)) {
2938                 return -1;
2939         }
2940
2941         if (cli_is_error(cli)) {
2942                 return -1;
2943         }
2944
2945         /* despite the spec, the result has a -1, followed by
2946            length, followed by name */
2947         p = smb_buf(cli->inbuf);
2948         p += 4;
2949         len = smb_buflen(cli->inbuf) - 4;
2950         if (len <= 0 || len > PATH_MAX) return -1;
2951
2952         if (tmp_path) {
2953                 char *path2 = SMB_MALLOC_ARRAY(char, len+1);
2954                 if (!path2) {
2955                         return -1;
2956                 }
2957                 clistr_pull(cli->inbuf, path2, p,
2958                             len+1, len, STR_ASCII);
2959                 *tmp_path = path2;
2960         }
2961
2962         return SVAL(cli->inbuf,smb_vwv0);
2963 }
2964
2965 /*
2966    send a raw ioctl - used by the torture code
2967 */
2968 NTSTATUS cli_raw_ioctl(struct cli_state *cli, uint16_t fnum, uint32_t code, DATA_BLOB *blob)
2969 {
2970         memset(cli->outbuf,'\0',smb_size);
2971         memset(cli->inbuf,'\0',smb_size);
2972
2973         cli_set_message(cli->outbuf, 3, 0, True);
2974         SCVAL(cli->outbuf,smb_com,SMBioctl);
2975         cli_setup_packet(cli);
2976
2977         SSVAL(cli->outbuf, smb_vwv0, fnum);
2978         SSVAL(cli->outbuf, smb_vwv1, code>>16);
2979         SSVAL(cli->outbuf, smb_vwv2, (code&0xFFFF));
2980
2981         cli_send_smb(cli);
2982         if (!cli_receive_smb(cli)) {
2983                 return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
2984         }
2985
2986         if (cli_is_error(cli)) {
2987                 return cli_nt_error(cli);
2988         }
2989
2990         *blob = data_blob_null;
2991
2992         return NT_STATUS_OK;
2993 }
2994
2995 /*********************************************************
2996  Set an extended attribute utility fn.
2997 *********************************************************/
2998
2999 static bool cli_set_ea(struct cli_state *cli, uint16_t setup, char *param, unsigned int param_len,
3000                         const char *ea_name, const char *ea_val, size_t ea_len)
3001 {
3002         unsigned int data_len = 0;
3003         char *data = NULL;
3004         char *rparam=NULL, *rdata=NULL;
3005         char *p;
3006         size_t ea_namelen = strlen(ea_name);
3007
3008         if (ea_namelen == 0 && ea_len == 0) {
3009                 data_len = 4;
3010                 data = (char *)SMB_MALLOC(data_len);
3011                 if (!data) {
3012                         return False;
3013                 }
3014                 p = data;
3015                 SIVAL(p,0,data_len);
3016         } else {
3017                 data_len = 4 + 4 + ea_namelen + 1 + ea_len;
3018                 data = (char *)SMB_MALLOC(data_len);
3019                 if (!data) {
3020                         return False;
3021                 }
3022                 p = data;
3023                 SIVAL(p,0,data_len);
3024                 p += 4;
3025                 SCVAL(p, 0, 0); /* EA flags. */
3026                 SCVAL(p, 1, ea_namelen);
3027                 SSVAL(p, 2, ea_len);
3028                 memcpy(p+4, ea_name, ea_namelen+1); /* Copy in the name. */
3029                 memcpy(p+4+ea_namelen+1, ea_val, ea_len);
3030         }
3031
3032         if (!cli_send_trans(cli, SMBtrans2,
3033                         NULL,                        /* name */
3034                         -1, 0,                          /* fid, flags */
3035                         &setup, 1, 0,                   /* setup, length, max */
3036                         param, param_len, 2,            /* param, length, max */
3037                         data,  data_len, cli->max_xmit /* data, length, max */
3038                         )) {
3039                 SAFE_FREE(data);
3040                 return False;
3041         }
3042
3043         if (!cli_receive_trans(cli, SMBtrans2,
3044                         &rparam, &param_len,
3045                         &rdata, &data_len)) {
3046                         SAFE_FREE(data);
3047                 return false;
3048         }
3049
3050         SAFE_FREE(data);
3051         SAFE_FREE(rdata);
3052         SAFE_FREE(rparam);
3053
3054         return True;
3055 }
3056
3057 /*********************************************************
3058  Set an extended attribute on a pathname.
3059 *********************************************************/
3060
3061 bool cli_set_ea_path(struct cli_state *cli, const char *path, const char *ea_name, const char *ea_val, size_t ea_len)
3062 {
3063         uint16_t setup = TRANSACT2_SETPATHINFO;
3064         unsigned int param_len = 0;
3065         char *param;
3066         size_t srclen = 2*(strlen(path)+1);
3067         char *p;
3068         bool ret;
3069
3070         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3071         if (!param) {
3072                 return false;
3073         }
3074         memset(param, '\0', 6);
3075         SSVAL(param,0,SMB_INFO_SET_EA);
3076         p = &param[6];
3077
3078         p += clistr_push(cli, p, path, srclen, STR_TERMINATE);
3079         param_len = PTR_DIFF(p, param);
3080
3081         ret = cli_set_ea(cli, setup, param, param_len, ea_name, ea_val, ea_len);
3082         SAFE_FREE(param);
3083         return ret;
3084 }
3085
3086 /*********************************************************
3087  Set an extended attribute on an fnum.
3088 *********************************************************/
3089
3090 bool cli_set_ea_fnum(struct cli_state *cli, uint16_t fnum, const char *ea_name, const char *ea_val, size_t ea_len)
3091 {
3092         char param[6];
3093         uint16_t setup = TRANSACT2_SETFILEINFO;
3094
3095         memset(param, 0, 6);
3096         SSVAL(param,0,fnum);
3097         SSVAL(param,2,SMB_INFO_SET_EA);
3098
3099         return cli_set_ea(cli, setup, param, 6, ea_name, ea_val, ea_len);
3100 }
3101
3102 /*********************************************************
3103  Get an extended attribute list utility fn.
3104 *********************************************************/
3105
3106 static bool cli_get_ea_list(struct cli_state *cli,
3107                 uint16_t setup, char *param, unsigned int param_len,
3108                 TALLOC_CTX *ctx,
3109                 size_t *pnum_eas,
3110                 struct ea_struct **pea_list)
3111 {
3112         unsigned int data_len = 0;
3113         unsigned int rparam_len, rdata_len;
3114         char *rparam=NULL, *rdata=NULL;
3115         char *p;
3116         size_t ea_size;
3117         size_t num_eas;
3118         bool ret = False;
3119         struct ea_struct *ea_list;
3120
3121         *pnum_eas = 0;
3122         if (pea_list) {
3123                 *pea_list = NULL;
3124         }
3125
3126         if (!cli_send_trans(cli, SMBtrans2,
3127                         NULL,           /* Name */
3128                         -1, 0,          /* fid, flags */
3129                         &setup, 1, 0,   /* setup, length, max */
3130                         param, param_len, 10, /* param, length, max */
3131                         NULL, data_len, cli->max_xmit /* data, length, max */
3132                                 )) {
3133                 return False;
3134         }
3135
3136         if (!cli_receive_trans(cli, SMBtrans2,
3137                         &rparam, &rparam_len,
3138                         &rdata, &rdata_len)) {
3139                 return False;
3140         }
3141
3142         if (!rdata || rdata_len < 4) {
3143                 goto out;
3144         }
3145
3146         ea_size = (size_t)IVAL(rdata,0);
3147         if (ea_size > rdata_len) {
3148                 goto out;
3149         }
3150
3151         if (ea_size == 0) {
3152                 /* No EA's present. */
3153                 ret = True;
3154                 goto out;
3155         }
3156
3157         p = rdata + 4;
3158         ea_size -= 4;
3159
3160         /* Validate the EA list and count it. */
3161         for (num_eas = 0; ea_size >= 4; num_eas++) {
3162                 unsigned int ea_namelen = CVAL(p,1);
3163                 unsigned int ea_valuelen = SVAL(p,2);
3164                 if (ea_namelen == 0) {
3165                         goto out;
3166                 }
3167                 if (4 + ea_namelen + 1 + ea_valuelen > ea_size) {
3168                         goto out;
3169                 }
3170                 ea_size -= 4 + ea_namelen + 1 + ea_valuelen;
3171                 p += 4 + ea_namelen + 1 + ea_valuelen;
3172         }
3173
3174         if (num_eas == 0) {
3175                 ret = True;
3176                 goto out;
3177         }
3178
3179         *pnum_eas = num_eas;
3180         if (!pea_list) {
3181                 /* Caller only wants number of EA's. */
3182                 ret = True;
3183                 goto out;
3184         }
3185
3186         ea_list = TALLOC_ARRAY(ctx, struct ea_struct, num_eas);
3187         if (!ea_list) {
3188                 goto out;
3189         }
3190
3191         ea_size = (size_t)IVAL(rdata,0);
3192         p = rdata + 4;
3193
3194         for (num_eas = 0; num_eas < *pnum_eas; num_eas++ ) {
3195                 struct ea_struct *ea = &ea_list[num_eas];
3196                 fstring unix_ea_name;
3197                 unsigned int ea_namelen = CVAL(p,1);
3198                 unsigned int ea_valuelen = SVAL(p,2);
3199
3200                 ea->flags = CVAL(p,0);
3201                 unix_ea_name[0] = '\0';
3202                 pull_ascii_fstring(unix_ea_name, p + 4);
3203                 ea->name = talloc_strdup(ctx, unix_ea_name);
3204                 /* Ensure the value is null terminated (in case it's a string). */
3205                 ea->value = data_blob_talloc(ctx, NULL, ea_valuelen + 1);
3206                 if (!ea->value.data) {
3207                         goto out;
3208                 }
3209                 if (ea_valuelen) {
3210                         memcpy(ea->value.data, p+4+ea_namelen+1, ea_valuelen);
3211                 }
3212                 ea->value.data[ea_valuelen] = 0;
3213                 ea->value.length--;
3214                 p += 4 + ea_namelen + 1 + ea_valuelen;
3215         }
3216
3217         *pea_list = ea_list;
3218         ret = True;
3219
3220  out :
3221
3222         SAFE_FREE(rdata);
3223         SAFE_FREE(rparam);
3224         return ret;
3225 }
3226
3227 /*********************************************************
3228  Get an extended attribute list from a pathname.
3229 *********************************************************/
3230
3231 bool cli_get_ea_list_path(struct cli_state *cli, const char *path,
3232                 TALLOC_CTX *ctx,
3233                 size_t *pnum_eas,
3234                 struct ea_struct **pea_list)
3235 {
3236         uint16_t setup = TRANSACT2_QPATHINFO;
3237         unsigned int param_len = 0;
3238         char *param;
3239         char *p;
3240         size_t srclen = 2*(strlen(path)+1);
3241         bool ret;
3242
3243         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3244         if (!param) {
3245                 return false;
3246         }
3247         p = param;
3248         memset(p, 0, 6);
3249         SSVAL(p, 0, SMB_INFO_QUERY_ALL_EAS);
3250         p += 6;
3251         p += clistr_push(cli, p, path, srclen, STR_TERMINATE);
3252         param_len = PTR_DIFF(p, param);
3253
3254         ret = cli_get_ea_list(cli, setup, param, param_len, ctx, pnum_eas, pea_list);
3255         SAFE_FREE(param);
3256         return ret;
3257 }
3258
3259 /*********************************************************
3260  Get an extended attribute list from an fnum.
3261 *********************************************************/
3262
3263 bool cli_get_ea_list_fnum(struct cli_state *cli, uint16_t fnum,
3264                 TALLOC_CTX *ctx,
3265                 size_t *pnum_eas,
3266                 struct ea_struct **pea_list)
3267 {
3268         uint16_t setup = TRANSACT2_QFILEINFO;
3269         char param[6];
3270
3271         memset(param, 0, 6);
3272         SSVAL(param,0,fnum);
3273         SSVAL(param,2,SMB_INFO_SET_EA);
3274
3275         return cli_get_ea_list(cli, setup, param, 6, ctx, pnum_eas, pea_list);
3276 }
3277
3278 /****************************************************************************
3279  Convert open "flags" arg to uint32_t on wire.
3280 ****************************************************************************/
3281
3282 static uint32_t open_flags_to_wire(int flags)
3283 {
3284         int open_mode = flags & O_ACCMODE;
3285         uint32_t ret = 0;
3286
3287         switch (open_mode) {
3288                 case O_WRONLY:
3289                         ret |= SMB_O_WRONLY;
3290                         break;
3291                 case O_RDWR:
3292                         ret |= SMB_O_RDWR;
3293                         break;
3294                 default:
3295                 case O_RDONLY:
3296                         ret |= SMB_O_RDONLY;
3297                         break;
3298         }
3299
3300         if (flags & O_CREAT) {
3301                 ret |= SMB_O_CREAT;
3302         }
3303         if (flags & O_EXCL) {
3304                 ret |= SMB_O_EXCL;
3305         }
3306         if (flags & O_TRUNC) {
3307                 ret |= SMB_O_TRUNC;
3308         }
3309 #if defined(O_SYNC)
3310         if (flags & O_SYNC) {
3311                 ret |= SMB_O_SYNC;
3312         }
3313 #endif /* O_SYNC */
3314         if (flags & O_APPEND) {
3315                 ret |= SMB_O_APPEND;
3316         }
3317 #if defined(O_DIRECT)
3318         if (flags & O_DIRECT) {
3319                 ret |= SMB_O_DIRECT;
3320         }
3321 #endif
3322 #if defined(O_DIRECTORY)
3323         if (flags & O_DIRECTORY) {
3324                 ret &= ~(SMB_O_RDONLY|SMB_O_RDWR|SMB_O_WRONLY);
3325                 ret |= SMB_O_DIRECTORY;
3326         }
3327 #endif
3328         return ret;
3329 }
3330
3331 /****************************************************************************
3332  Open a file - POSIX semantics. Returns fnum. Doesn't request oplock.
3333 ****************************************************************************/
3334
3335 static int cli_posix_open_internal(struct cli_state *cli, const char *fname, int flags, mode_t mode, bool is_dir)
3336 {
3337         unsigned int data_len = 0;
3338         unsigned int param_len = 0;
3339         uint16_t setup = TRANSACT2_SETPATHINFO;
3340         char *param;
3341         char data[18];
3342         char *rparam=NULL, *rdata=NULL;
3343         char *p;
3344         uint16_t fnum = (uint16_t)-1;
3345         uint32_t wire_flags = open_flags_to_wire(flags);
3346         size_t srclen = 2*(strlen(fname)+1);
3347
3348         param = SMB_MALLOC_ARRAY(char, 6+srclen+2);
3349         if (!param) {
3350                 return false;
3351         }
3352         memset(param, '\0', 6);
3353         SSVAL(param,0, SMB_POSIX_PATH_OPEN);
3354         p = &param[6];
3355
3356         p += clistr_push(cli, p, fname, srclen, STR_TERMINATE);
3357         param_len = PTR_DIFF(p, param);
3358
3359         if (is_dir) {
3360                 wire_flags &= ~(SMB_O_RDONLY|SMB_O_RDWR|SMB_O_WRONLY);
3361                 wire_flags |= SMB_O_DIRECTORY;
3362         }
3363
3364         p = data;
3365         SIVAL(p,0,0); /* No oplock. */
3366         SIVAL(p,4,wire_flags);
3367         SIVAL(p,8,unix_perms_to_wire(mode));
3368         SIVAL(p,12,0); /* Top bits of perms currently undefined. */
3369         SSVAL(p,16,SMB_NO_INFO_LEVEL_RETURNED); /* No info level returned. */
3370
3371         data_len = 18;
3372
3373         if (!cli_send_trans(cli, SMBtrans2,
3374                         NULL,                        /* name */
3375                         -1, 0,                          /* fid, flags */
3376                         &setup, 1, 0,                   /* setup, length, max */
3377                         param, param_len, 0,            /* param, length, max */
3378                         (char *)&data,  data_len, cli->max_xmit /* data, length, max */
3379                         )) {
3380                 SAFE_FREE(param);
3381                 return -1;
3382         }
3383
3384         SAFE_FREE(param);
3385
3386         if (!cli_receive_trans(cli, SMBtrans2,
3387                 &rparam, &param_len,
3388                 &rdata, &data_len)) {
3389                         return -1;
3390         }
3391
3392         fnum = SVAL(rdata,2);
3393
3394         SAFE_FREE(rdata);
3395         SAFE_FREE(rparam);
3396
3397         return fnum;
3398 }
3399
3400 /****************************************************************************
3401  open - POSIX semantics.
3402 ****************************************************************************/
3403
3404 int cli_posix_open(struct cli_state *cli, const char *fname, int flags, mode_t mode)
3405 {
3406         return cli_posix_open_internal(cli, fname, flags, mode, False);
3407 }
3408
3409 /****************************************************************************
3410  mkdir - POSIX semantics.
3411 ****************************************************************************/
3412
3413 int cli_posix_mkdir(struct cli_state *cli, const char *fname, mode_t mode)
3414 {
3415         return (cli_posix_open_internal(cli, fname, O_CREAT, mode, True) == -1) ? -1 : 0;
3416 }
3417
3418 /****************************************************************************
3419  unlink or rmdir - POSIX semantics.
3420 ****************************************************************************/
3421
3422 struct unlink_state {
3423         int dummy;
3424 };
3425
3426 static void cli_posix_unlink_internal_done(struct tevent_req *subreq)
3427 {
3428         struct tevent_req *req = tevent_req_callback_data(
3429                                 subreq, struct tevent_req);
3430         struct unlink_state *state = tevent_req_data(req, struct unlink_state);
3431         NTSTATUS status;
3432
3433         status = cli_trans_recv(subreq, state, NULL, NULL, NULL, NULL, NULL, NULL);
3434         TALLOC_FREE(subreq);
3435         if (!NT_STATUS_IS_OK(status)) {
3436                 tevent_req_nterror(req, status);
3437                 return;
3438         }
3439         tevent_req_done(req);
3440 }
3441
3442 static struct tevent_req *cli_posix_unlink_internal_send(TALLOC_CTX *mem_ctx,
3443                                         struct event_context *ev,
3444                                         struct cli_state *cli,
3445                                         const char *fname,
3446                                         bool is_dir)
3447 {
3448         struct tevent_req *req = NULL, *subreq = NULL;
3449         struct unlink_state *state = NULL;
3450         uint16_t setup;
3451         uint8_t *param = NULL;
3452         uint8_t data[2];
3453
3454         req = tevent_req_create(mem_ctx, &state, struct unlink_state);
3455         if (req == NULL) {
3456                 return NULL;
3457         }
3458
3459         /* Setup setup word. */
3460         SSVAL(&setup+0, 0, TRANSACT2_SETPATHINFO);
3461
3462         /* Setup param array. */
3463         param = talloc_array(state, uint8_t, 6);
3464         if (tevent_req_nomem(data, req)) {
3465                 return tevent_req_post(req, ev);
3466         }
3467         memset(param, '\0', 6);
3468         SSVAL(param, 0, SMB_POSIX_PATH_UNLINK);
3469
3470         param = trans2_bytes_push_str(param, cli_ucs2(cli), fname,
3471                                    strlen(fname)+1, NULL);
3472
3473         if (tevent_req_nomem(param, req)) {
3474                 return tevent_req_post(req, ev);
3475         }
3476
3477         /* Setup data word. */
3478         SSVAL(data, 0, is_dir ? SMB_POSIX_UNLINK_DIRECTORY_TARGET :
3479                         SMB_POSIX_UNLINK_FILE_TARGET);
3480
3481         subreq = cli_trans_send(state,                  /* mem ctx. */
3482                                 ev,                     /* event ctx. */
3483                                 cli,                    /* cli_state. */
3484                                 SMBtrans2,              /* cmd. */
3485                                 NULL,                   /* pipe name. */
3486                                 -1,                     /* fid. */
3487                                 0,                      /* function. */
3488                                 0,                      /* flags. */
3489                                 &setup,                 /* setup. */
3490                                 1,                      /* num setup uint16_t words. */
3491                                 0,                      /* max returned setup. */
3492                                 param,                  /* param. */
3493                                 talloc_get_size(param), /* num param. */
3494                                 2,                      /* max returned param. */
3495                                 data,                   /* data. */
3496                                 2,                      /* num data. */
3497                                 0);                     /* max returned data. */
3498
3499         if (tevent_req_nomem(subreq, req)) {
3500                 return tevent_req_post(req, ev);
3501         }
3502         tevent_req_set_callback(subreq, cli_posix_unlink_internal_done, req);
3503         return req;
3504 }
3505
3506 struct tevent_req *cli_posix_unlink_send(TALLOC_CTX *mem_ctx,
3507                                         struct event_context *ev,
3508                                         struct cli_state *cli,
3509                                         const char *fname)
3510 {
3511         return cli_posix_unlink_internal_send(mem_ctx, ev, cli, fname, false);
3512 }
3513
3514 NTSTATUS cli_posix_unlink_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx)
3515 {
3516         NTSTATUS status;
3517
3518         if (tevent_req_is_nterror(req, &status)) {
3519                 return status;
3520         }
3521         return NT_STATUS_OK;
3522 }
3523
3524 /****************************************************************************
3525  unlink - POSIX semantics.
3526 ****************************************************************************/
3527
3528 NTSTATUS cli_posix_unlink(struct cli_state *cli, const char *fname)
3529 {
3530         TALLOC_CTX *frame = talloc_stackframe();
3531         struct event_context *ev = NULL;
3532         struct tevent_req *req = NULL;
3533         NTSTATUS status = NT_STATUS_OK;
3534
3535         if (cli_has_async_calls(cli)) {
3536                 /*
3537                  * Can't use sync call while an async call is in flight
3538                  */
3539                 status = NT_STATUS_INVALID_PARAMETER;
3540                 goto fail;
3541         }
3542
3543         ev = event_context_init(frame);
3544         if (ev == NULL) {
3545                 status = NT_STATUS_NO_MEMORY;
3546                 goto fail;
3547         }
3548
3549         req = cli_posix_unlink_send(frame,
3550                                 ev,
3551                                 cli,
3552                                 fname);
3553         if (req == NULL) {
3554                 status = NT_STATUS_NO_MEMORY;
3555                 goto fail;
3556         }
3557
3558         if (!tevent_req_poll(req, ev)) {
3559                 status = map_nt_error_from_unix(errno);
3560                 goto fail;
3561         }
3562
3563         status = cli_posix_unlink_recv(req, frame);
3564
3565  fail:
3566         TALLOC_FREE(frame);
3567         if (!NT_STATUS_IS_OK(status)) {
3568                 cli_set_error(cli, status);
3569         }
3570         return status;
3571 }
3572
3573 /****************************************************************************
3574  rmdir - POSIX semantics.
3575 ****************************************************************************/
3576
3577 struct tevent_req *cli_posix_rmdir_send(TALLOC_CTX *mem_ctx,
3578                                         struct event_context *ev,
3579                                         struct cli_state *cli,
3580                                         const char *fname)
3581 {
3582         return cli_posix_unlink_internal_send(mem_ctx, ev, cli, fname, true);
3583 }
3584
3585 NTSTATUS cli_posix_rmdir_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx)
3586 {
3587         NTSTATUS status;
3588
3589         if (tevent_req_is_nterror(req, &status)) {
3590                 return status;
3591         }
3592         return NT_STATUS_OK;
3593 }
3594
3595 NTSTATUS cli_posix_rmdir(struct cli_state *cli, const char *fname)
3596 {
3597         TALLOC_CTX *frame = talloc_stackframe();
3598         struct event_context *ev = NULL;
3599         struct tevent_req *req = NULL;
3600         NTSTATUS status = NT_STATUS_OK;
3601
3602         if (cli_has_async_calls(cli)) {
3603                 /*
3604                  * Can't use sync call while an async call is in flight
3605                  */
3606                 status = NT_STATUS_INVALID_PARAMETER;
3607                 goto fail;
3608         }
3609
3610         ev = event_context_init(frame);
3611         if (ev == NULL) {
3612                 status = NT_STATUS_NO_MEMORY;
3613                 goto fail;
3614         }
3615
3616         req = cli_posix_rmdir_send(frame,
3617                                 ev,
3618                                 cli,
3619                                 fname);
3620         if (req == NULL) {
3621                 status = NT_STATUS_NO_MEMORY;
3622                 goto fail;
3623         }
3624
3625         if (!tevent_req_poll(req, ev)) {
3626                 status = map_nt_error_from_unix(errno);
3627                 goto fail;
3628         }
3629
3630         status = cli_posix_rmdir_recv(req, frame);
3631
3632  fail:
3633         TALLOC_FREE(frame);
3634         if (!NT_STATUS_IS_OK(status)) {
3635                 cli_set_error(cli, status);
3636         }
3637         return status;
3638 }