ntvfs/cifs: fix the fnum on RAW_RENAME_NTTRANS
[jelmer/samba4-debian.git] / source / ntvfs / cifs / vfs_cifs.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    CIFS-on-CIFS NTVFS filesystem backend
5
6    Copyright (C) Andrew Tridgell 2003
7    Copyright (C) James J Myers 2003 <myersjj@samba.org>
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22 /*
23   this implements a CIFS->CIFS NTVFS filesystem backend. 
24   
25 */
26
27 #include "includes.h"
28 #include "libcli/raw/libcliraw.h"
29 #include "libcli/smb_composite/smb_composite.h"
30 #include "auth/auth.h"
31 #include "auth/credentials/credentials.h"
32 #include "ntvfs/ntvfs.h"
33 #include "lib/util/dlinklist.h"
34 #include "param/param.h"
35 #include "libcli/resolve/resolve.h"
36
37 struct cvfs_file {
38         struct cvfs_file *prev, *next;
39         uint16_t fnum;
40         struct ntvfs_handle *h;
41 };
42
43 /* this is stored in ntvfs_private */
44 struct cvfs_private {
45         struct smbcli_tree *tree;
46         struct smbcli_transport *transport;
47         struct ntvfs_module_context *ntvfs;
48         struct async_info *pending;
49         struct cvfs_file *files;
50         bool map_generic;
51         bool map_trans2;
52 };
53
54
55 /* a structure used to pass information to an async handler */
56 struct async_info {
57         struct async_info *next, *prev;
58         struct cvfs_private *cvfs;
59         struct ntvfs_request *req;
60         struct smbcli_request *c_req;
61         struct cvfs_file *f;
62         void *parms;
63 };
64
65 #define SETUP_PID private->tree->session->pid = req->smbpid
66
67 #define SETUP_FILE_HERE(f) do { \
68         f = ntvfs_handle_get_backend_data(io->generic.in.file.ntvfs, ntvfs); \
69         if (!f) return NT_STATUS_INVALID_HANDLE; \
70         io->generic.in.file.fnum = f->fnum; \
71 } while (0)
72
73 #define SETUP_FILE do { \
74         struct cvfs_file *f; \
75         SETUP_FILE_HERE(f); \
76 } while (0)
77
78 #define SETUP_PID_AND_FILE do { \
79         SETUP_PID; \
80         SETUP_FILE; \
81 } while (0)
82
83 #define CIFS_SERVER             "cifs:server"
84 #define CIFS_USER               "cifs:user"
85 #define CIFS_PASSWORD           "cifs:password"
86 #define CIFS_DOMAIN             "cifs:domain"
87 #define CIFS_SHARE              "cifs:share"
88 #define CIFS_USE_MACHINE_ACCT   "cifs:use-machine-account"
89 #define CIFS_MAP_GENERIC        "cifs:map-generic"
90 #define CIFS_MAP_TRANS2         "cifs:map-trans2"
91
92 #define CIFS_USE_MACHINE_ACCT_DEFAULT   false
93 #define CIFS_MAP_GENERIC_DEFAULT        false
94 #define CIFS_MAP_TRANS2_DEFAULT         true
95
96 /*
97   a handler for oplock break events from the server - these need to be passed
98   along to the client
99  */
100 static bool oplock_handler(struct smbcli_transport *transport, uint16_t tid, uint16_t fnum, uint8_t level, void *p_private)
101 {
102         struct cvfs_private *private = p_private;
103         NTSTATUS status;
104         struct ntvfs_handle *h = NULL;
105         struct cvfs_file *f;
106
107         for (f=private->files; f; f=f->next) {
108                 if (f->fnum != fnum) continue;
109                 h = f->h;
110                 break;
111         }
112
113         if (!h) {
114                 DEBUG(5,("vfs_cifs: ignoring oplock break level %d for fnum %d\n", level, fnum));
115                 return true;
116         }
117
118         DEBUG(5,("vfs_cifs: sending oplock break level %d for fnum %d\n", level, fnum));
119         status = ntvfs_send_oplock_break(private->ntvfs, h, level);
120         if (!NT_STATUS_IS_OK(status)) return false;
121         return true;
122 }
123
124 /*
125   connect to a share - used when a tree_connect operation comes in.
126 */
127 static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, 
128                              struct ntvfs_request *req, const char *sharename)
129 {
130         NTSTATUS status;
131         struct cvfs_private *private;
132         const char *host, *user, *pass, *domain, *remote_share;
133         struct smb_composite_connect io;
134         struct composite_context *creq;
135         struct share_config *scfg = ntvfs->ctx->config;
136
137         struct cli_credentials *credentials;
138         bool machine_account;
139
140         /* Here we need to determine which server to connect to.
141          * For now we use parametric options, type cifs.
142          * Later we will use security=server and auth_server.c.
143          */
144         host = share_string_option(scfg, CIFS_SERVER, NULL);
145         user = share_string_option(scfg, CIFS_USER, NULL);
146         pass = share_string_option(scfg, CIFS_PASSWORD, NULL);
147         domain = share_string_option(scfg, CIFS_DOMAIN, NULL);
148         remote_share = share_string_option(scfg, CIFS_SHARE, NULL);
149         if (!remote_share) {
150                 remote_share = sharename;
151         }
152
153         machine_account = share_bool_option(scfg, CIFS_USE_MACHINE_ACCT, CIFS_USE_MACHINE_ACCT_DEFAULT);
154
155         private = talloc_zero(ntvfs, struct cvfs_private);
156         if (!private) {
157                 return NT_STATUS_NO_MEMORY;
158         }
159
160         ntvfs->private_data = private;
161
162         if (!host) {
163                 DEBUG(1,("CIFS backend: You must supply server\n"));
164                 return NT_STATUS_INVALID_PARAMETER;
165         } 
166         
167         if (user && pass) {
168                 DEBUG(5, ("CIFS backend: Using specified password\n"));
169                 credentials = cli_credentials_init(private);
170                 if (!credentials) {
171                         return NT_STATUS_NO_MEMORY;
172                 }
173                 cli_credentials_set_event_context(credentials, ntvfs->ctx->event_ctx);
174                 cli_credentials_set_conf(credentials, ntvfs->ctx->lp_ctx);
175                 cli_credentials_set_username(credentials, user, CRED_SPECIFIED);
176                 if (domain) {
177                         cli_credentials_set_domain(credentials, domain, CRED_SPECIFIED);
178                 }
179                 cli_credentials_set_password(credentials, pass, CRED_SPECIFIED);
180         } else if (machine_account) {
181                 DEBUG(5, ("CIFS backend: Using machine account\n"));
182                 credentials = cli_credentials_init(private);
183                 cli_credentials_set_event_context(credentials, ntvfs->ctx->event_ctx);
184                 cli_credentials_set_conf(credentials, ntvfs->ctx->lp_ctx);
185                 if (domain) {
186                         cli_credentials_set_domain(credentials, domain, CRED_SPECIFIED);
187                 }
188                 status = cli_credentials_set_machine_account(credentials, ntvfs->ctx->lp_ctx);
189                 if (!NT_STATUS_IS_OK(status)) {
190                         return status;
191                 }
192         } else if (req->session_info->credentials) {
193                 DEBUG(5, ("CIFS backend: Using delegated credentials\n"));
194                 credentials = req->session_info->credentials;
195         } else {
196                 DEBUG(1,("CIFS backend: NO delegated credentials found: You must supply server, user and password or the client must supply delegated credentials\n"));
197                 return NT_STATUS_INVALID_PARAMETER;
198         }
199
200         /* connect to the server, using the smbd event context */
201         io.in.dest_host = host;
202         io.in.dest_ports = lp_smb_ports(ntvfs->ctx->lp_ctx);
203         io.in.called_name = host;
204         io.in.credentials = credentials;
205         io.in.fallback_to_anonymous = false;
206         io.in.workgroup = lp_workgroup(ntvfs->ctx->lp_ctx);
207         io.in.service = remote_share;
208         io.in.service_type = "?????";
209         lp_smbcli_options(ntvfs->ctx->lp_ctx, &io.in.options);
210
211         if (!(ntvfs->ctx->client_caps & NTVFS_CLIENT_CAP_LEVEL_II_OPLOCKS)) {
212                 io.in.options.use_level2_oplocks = false;
213         }
214
215         creq = smb_composite_connect_send(&io, private, 
216                                           lp_resolve_context(ntvfs->ctx->lp_ctx),
217                                           ntvfs->ctx->event_ctx);
218         status = smb_composite_connect_recv(creq, private);
219         NT_STATUS_NOT_OK_RETURN(status);
220
221         private->tree = io.out.tree;
222
223         private->transport = private->tree->session->transport;
224         SETUP_PID;
225         private->ntvfs = ntvfs;
226
227         ntvfs->ctx->fs_type = talloc_strdup(ntvfs->ctx, "NTFS");
228         NT_STATUS_HAVE_NO_MEMORY(ntvfs->ctx->fs_type);
229         ntvfs->ctx->dev_type = talloc_strdup(ntvfs->ctx, "A:");
230         NT_STATUS_HAVE_NO_MEMORY(ntvfs->ctx->dev_type);
231
232         /* we need to receive oplock break requests from the server */
233         smbcli_oplock_handler(private->transport, oplock_handler, private);
234
235         private->map_generic = share_bool_option(scfg, CIFS_MAP_GENERIC, CIFS_MAP_GENERIC_DEFAULT);
236
237         private->map_trans2 = share_bool_option(scfg, CIFS_MAP_TRANS2, CIFS_MAP_TRANS2_DEFAULT);
238
239         return NT_STATUS_OK;
240 }
241
242 /*
243   disconnect from a share
244 */
245 static NTSTATUS cvfs_disconnect(struct ntvfs_module_context *ntvfs)
246 {
247         struct cvfs_private *private = ntvfs->private_data;
248         struct async_info *a, *an;
249
250         /* first cleanup pending requests */
251         for (a=private->pending; a; a = an) {
252                 an = a->next;
253                 smbcli_request_destroy(a->c_req);
254                 talloc_free(a);
255         }
256
257         talloc_free(private);
258         ntvfs->private_data = NULL;
259
260         return NT_STATUS_OK;
261 }
262
263 /*
264   destroy an async info structure
265 */
266 static int async_info_destructor(struct async_info *async)
267 {
268         DLIST_REMOVE(async->cvfs->pending, async);
269         return 0;
270 }
271
272 /*
273   a handler for simple async replies
274   this handler can only be used for functions that don't return any
275   parameters (those that just return a status code)
276  */
277 static void async_simple(struct smbcli_request *c_req)
278 {
279         struct async_info *async = c_req->async.private;
280         struct ntvfs_request *req = async->req;
281         req->async_states->status = smbcli_request_simple_recv(c_req);
282         talloc_free(async);
283         req->async_states->send_fn(req);
284 }
285
286
287 /* save some typing for the simple functions */
288 #define ASYNC_RECV_TAIL_F(io, async_fn, file) do { \
289         if (!c_req) return NT_STATUS_UNSUCCESSFUL; \
290         { \
291                 struct async_info *async; \
292                 async = talloc(req, struct async_info); \
293                 if (!async) return NT_STATUS_NO_MEMORY; \
294                 async->parms = io; \
295                 async->req = req; \
296                 async->f = file; \
297                 async->cvfs = private; \
298                 async->c_req = c_req; \
299                 DLIST_ADD(private->pending, async); \
300                 c_req->async.private = async; \
301                 talloc_set_destructor(async, async_info_destructor); \
302         } \
303         c_req->async.fn = async_fn; \
304         req->async_states->state |= NTVFS_ASYNC_STATE_ASYNC; \
305         return NT_STATUS_OK; \
306 } while (0)
307
308 #define ASYNC_RECV_TAIL(io, async_fn) ASYNC_RECV_TAIL_F(io, async_fn, NULL)
309
310 #define SIMPLE_ASYNC_TAIL ASYNC_RECV_TAIL(NULL, async_simple)
311
312 /*
313   delete a file - the dirtype specifies the file types to include in the search. 
314   The name can contain CIFS wildcards, but rarely does (except with OS/2 clients)
315 */
316 static NTSTATUS cvfs_unlink(struct ntvfs_module_context *ntvfs, 
317                             struct ntvfs_request *req, union smb_unlink *unl)
318 {
319         struct cvfs_private *private = ntvfs->private_data;
320         struct smbcli_request *c_req;
321
322         SETUP_PID;
323
324         /* see if the front end will allow us to perform this
325            function asynchronously.  */
326         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
327                 return smb_raw_unlink(private->tree, unl);
328         }
329
330         c_req = smb_raw_unlink_send(private->tree, unl);
331
332         SIMPLE_ASYNC_TAIL;
333 }
334
335 /*
336   a handler for async ioctl replies
337  */
338 static void async_ioctl(struct smbcli_request *c_req)
339 {
340         struct async_info *async = c_req->async.private;
341         struct ntvfs_request *req = async->req;
342         req->async_states->status = smb_raw_ioctl_recv(c_req, req, async->parms);
343         talloc_free(async);
344         req->async_states->send_fn(req);
345 }
346
347 /*
348   ioctl interface
349 */
350 static NTSTATUS cvfs_ioctl(struct ntvfs_module_context *ntvfs, 
351                            struct ntvfs_request *req, union smb_ioctl *io)
352 {
353         struct cvfs_private *private = ntvfs->private_data;
354         struct smbcli_request *c_req;
355
356         SETUP_PID_AND_FILE;
357
358         /* see if the front end will allow us to perform this
359            function asynchronously.  */
360         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
361                 return smb_raw_ioctl(private->tree, req, io);
362         }
363
364         c_req = smb_raw_ioctl_send(private->tree, io);
365
366         ASYNC_RECV_TAIL(io, async_ioctl);
367 }
368
369 /*
370   check if a directory exists
371 */
372 static NTSTATUS cvfs_chkpath(struct ntvfs_module_context *ntvfs, 
373                              struct ntvfs_request *req, union smb_chkpath *cp)
374 {
375         struct cvfs_private *private = ntvfs->private_data;
376         struct smbcli_request *c_req;
377
378         SETUP_PID;
379
380         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
381                 return smb_raw_chkpath(private->tree, cp);
382         }
383
384         c_req = smb_raw_chkpath_send(private->tree, cp);
385
386         SIMPLE_ASYNC_TAIL;
387 }
388
389 /*
390   a handler for async qpathinfo replies
391  */
392 static void async_qpathinfo(struct smbcli_request *c_req)
393 {
394         struct async_info *async = c_req->async.private;
395         struct ntvfs_request *req = async->req;
396         req->async_states->status = smb_raw_pathinfo_recv(c_req, req, async->parms);
397         talloc_free(async);
398         req->async_states->send_fn(req);
399 }
400
401 /*
402   return info on a pathname
403 */
404 static NTSTATUS cvfs_qpathinfo(struct ntvfs_module_context *ntvfs, 
405                                struct ntvfs_request *req, union smb_fileinfo *info)
406 {
407         struct cvfs_private *private = ntvfs->private_data;
408         struct smbcli_request *c_req;
409
410         SETUP_PID;
411
412         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
413                 return smb_raw_pathinfo(private->tree, req, info);
414         }
415
416         c_req = smb_raw_pathinfo_send(private->tree, info);
417
418         ASYNC_RECV_TAIL(info, async_qpathinfo);
419 }
420
421 /*
422   a handler for async qfileinfo replies
423  */
424 static void async_qfileinfo(struct smbcli_request *c_req)
425 {
426         struct async_info *async = c_req->async.private;
427         struct ntvfs_request *req = async->req;
428         req->async_states->status = smb_raw_fileinfo_recv(c_req, req, async->parms);
429         talloc_free(async);
430         req->async_states->send_fn(req);
431 }
432
433 /*
434   query info on a open file
435 */
436 static NTSTATUS cvfs_qfileinfo(struct ntvfs_module_context *ntvfs, 
437                                struct ntvfs_request *req, union smb_fileinfo *io)
438 {
439         struct cvfs_private *private = ntvfs->private_data;
440         struct smbcli_request *c_req;
441
442         SETUP_PID_AND_FILE;
443
444         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
445                 return smb_raw_fileinfo(private->tree, req, io);
446         }
447
448         c_req = smb_raw_fileinfo_send(private->tree, io);
449
450         ASYNC_RECV_TAIL(io, async_qfileinfo);
451 }
452
453
454 /*
455   set info on a pathname
456 */
457 static NTSTATUS cvfs_setpathinfo(struct ntvfs_module_context *ntvfs, 
458                                  struct ntvfs_request *req, union smb_setfileinfo *st)
459 {
460         struct cvfs_private *private = ntvfs->private_data;
461         struct smbcli_request *c_req;
462
463         SETUP_PID;
464
465         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
466                 return smb_raw_setpathinfo(private->tree, st);
467         }
468
469         c_req = smb_raw_setpathinfo_send(private->tree, st);
470
471         SIMPLE_ASYNC_TAIL;
472 }
473
474
475 /*
476   a handler for async open replies
477  */
478 static void async_open(struct smbcli_request *c_req)
479 {
480         struct async_info *async = c_req->async.private;
481         struct cvfs_private *cvfs = async->cvfs;
482         struct ntvfs_request *req = async->req;
483         struct cvfs_file *f = async->f;
484         union smb_open *io = async->parms;
485         union smb_handle *file;
486         talloc_free(async);
487         req->async_states->status = smb_raw_open_recv(c_req, req, io);
488         SMB_OPEN_OUT_FILE(io, file);
489         f->fnum = file->fnum;
490         file->ntvfs = NULL;
491         if (!NT_STATUS_IS_OK(req->async_states->status)) goto failed;
492         req->async_states->status = ntvfs_handle_set_backend_data(f->h, cvfs->ntvfs, f);
493         if (!NT_STATUS_IS_OK(req->async_states->status)) goto failed;
494         file->ntvfs = f->h;
495         DLIST_ADD(cvfs->files, f);
496 failed:
497         req->async_states->send_fn(req);
498 }
499
500 /*
501   open a file
502 */
503 static NTSTATUS cvfs_open(struct ntvfs_module_context *ntvfs, 
504                           struct ntvfs_request *req, union smb_open *io)
505 {
506         struct cvfs_private *private = ntvfs->private_data;
507         struct smbcli_request *c_req;
508         struct ntvfs_handle *h;
509         struct cvfs_file *f;
510         NTSTATUS status;
511
512         SETUP_PID;
513
514         if (io->generic.level != RAW_OPEN_GENERIC &&
515             private->map_generic) {
516                 return ntvfs_map_open(ntvfs, req, io);
517         }
518
519         status = ntvfs_handle_new(ntvfs, req, &h);
520         NT_STATUS_NOT_OK_RETURN(status);
521
522         f = talloc_zero(h, struct cvfs_file);
523         NT_STATUS_HAVE_NO_MEMORY(f);
524         f->h = h;
525
526         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
527                 union smb_handle *file;
528
529                 status = smb_raw_open(private->tree, req, io);
530                 NT_STATUS_NOT_OK_RETURN(status);
531
532                 SMB_OPEN_OUT_FILE(io, file);
533                 f->fnum = file->fnum;
534                 file->ntvfs = NULL;
535                 status = ntvfs_handle_set_backend_data(f->h, private->ntvfs, f);
536                 NT_STATUS_NOT_OK_RETURN(status);
537                 file->ntvfs = f->h;
538                 DLIST_ADD(private->files, f);
539
540                 return NT_STATUS_OK;
541         }
542
543         c_req = smb_raw_open_send(private->tree, io);
544
545         ASYNC_RECV_TAIL_F(io, async_open, f);
546 }
547
548 /*
549   create a directory
550 */
551 static NTSTATUS cvfs_mkdir(struct ntvfs_module_context *ntvfs, 
552                            struct ntvfs_request *req, union smb_mkdir *md)
553 {
554         struct cvfs_private *private = ntvfs->private_data;
555         struct smbcli_request *c_req;
556
557         SETUP_PID;
558
559         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
560                 return smb_raw_mkdir(private->tree, md);
561         }
562
563         c_req = smb_raw_mkdir_send(private->tree, md);
564
565         SIMPLE_ASYNC_TAIL;
566 }
567
568 /*
569   remove a directory
570 */
571 static NTSTATUS cvfs_rmdir(struct ntvfs_module_context *ntvfs, 
572                            struct ntvfs_request *req, struct smb_rmdir *rd)
573 {
574         struct cvfs_private *private = ntvfs->private_data;
575         struct smbcli_request *c_req;
576
577         SETUP_PID;
578
579         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
580                 return smb_raw_rmdir(private->tree, rd);
581         }
582         c_req = smb_raw_rmdir_send(private->tree, rd);
583
584         SIMPLE_ASYNC_TAIL;
585 }
586
587 /*
588   rename a set of files
589 */
590 static NTSTATUS cvfs_rename(struct ntvfs_module_context *ntvfs, 
591                             struct ntvfs_request *req, union smb_rename *ren)
592 {
593         struct cvfs_private *private = ntvfs->private_data;
594         struct smbcli_request *c_req;
595
596         SETUP_PID;
597
598         if (ren->nttrans.level == RAW_RENAME_NTTRANS) {
599                 struct cvfs_file *f;
600                 f = ntvfs_handle_get_backend_data(ren->nttrans.in.file.ntvfs, ntvfs);
601                 if (!f) return NT_STATUS_INVALID_HANDLE;
602                 ren->nttrans.in.file.fnum = f->fnum;
603         }
604
605         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
606                 return smb_raw_rename(private->tree, ren);
607         }
608
609         c_req = smb_raw_rename_send(private->tree, ren);
610
611         SIMPLE_ASYNC_TAIL;
612 }
613
614 /*
615   copy a set of files
616 */
617 static NTSTATUS cvfs_copy(struct ntvfs_module_context *ntvfs, 
618                           struct ntvfs_request *req, struct smb_copy *cp)
619 {
620         return NT_STATUS_NOT_SUPPORTED;
621 }
622
623 /*
624   a handler for async read replies
625  */
626 static void async_read(struct smbcli_request *c_req)
627 {
628         struct async_info *async = c_req->async.private;
629         struct ntvfs_request *req = async->req;
630         req->async_states->status = smb_raw_read_recv(c_req, async->parms);
631         talloc_free(async);
632         req->async_states->send_fn(req);
633 }
634
635 /*
636   read from a file
637 */
638 static NTSTATUS cvfs_read(struct ntvfs_module_context *ntvfs, 
639                           struct ntvfs_request *req, union smb_read *io)
640 {
641         struct cvfs_private *private = ntvfs->private_data;
642         struct smbcli_request *c_req;
643
644         SETUP_PID;
645
646         if (io->generic.level != RAW_READ_GENERIC &&
647             private->map_generic) {
648                 return ntvfs_map_read(ntvfs, req, io);
649         }
650
651         SETUP_FILE;
652
653         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
654                 return smb_raw_read(private->tree, io);
655         }
656
657         c_req = smb_raw_read_send(private->tree, io);
658
659         ASYNC_RECV_TAIL(io, async_read);
660 }
661
662 /*
663   a handler for async write replies
664  */
665 static void async_write(struct smbcli_request *c_req)
666 {
667         struct async_info *async = c_req->async.private;
668         struct ntvfs_request *req = async->req;
669         req->async_states->status = smb_raw_write_recv(c_req, async->parms);
670         talloc_free(async);
671         req->async_states->send_fn(req);
672 }
673
674 /*
675   write to a file
676 */
677 static NTSTATUS cvfs_write(struct ntvfs_module_context *ntvfs, 
678                            struct ntvfs_request *req, union smb_write *io)
679 {
680         struct cvfs_private *private = ntvfs->private_data;
681         struct smbcli_request *c_req;
682
683         SETUP_PID;
684
685         if (io->generic.level != RAW_WRITE_GENERIC &&
686             private->map_generic) {
687                 return ntvfs_map_write(ntvfs, req, io);
688         }
689         SETUP_FILE;
690
691         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
692                 return smb_raw_write(private->tree, io);
693         }
694
695         c_req = smb_raw_write_send(private->tree, io);
696
697         ASYNC_RECV_TAIL(io, async_write);
698 }
699
700 /*
701   a handler for async seek replies
702  */
703 static void async_seek(struct smbcli_request *c_req)
704 {
705         struct async_info *async = c_req->async.private;
706         struct ntvfs_request *req = async->req;
707         req->async_states->status = smb_raw_seek_recv(c_req, async->parms);
708         talloc_free(async);
709         req->async_states->send_fn(req);
710 }
711
712 /*
713   seek in a file
714 */
715 static NTSTATUS cvfs_seek(struct ntvfs_module_context *ntvfs, 
716                           struct ntvfs_request *req,
717                           union smb_seek *io)
718 {
719         struct cvfs_private *private = ntvfs->private_data;
720         struct smbcli_request *c_req;
721
722         SETUP_PID_AND_FILE;
723
724         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
725                 return smb_raw_seek(private->tree, io);
726         }
727
728         c_req = smb_raw_seek_send(private->tree, io);
729
730         ASYNC_RECV_TAIL(io, async_seek);
731 }
732
733 /*
734   flush a file
735 */
736 static NTSTATUS cvfs_flush(struct ntvfs_module_context *ntvfs, 
737                            struct ntvfs_request *req,
738                            union smb_flush *io)
739 {
740         struct cvfs_private *private = ntvfs->private_data;
741         struct smbcli_request *c_req;
742
743         SETUP_PID;
744         switch (io->generic.level) {
745         case RAW_FLUSH_FLUSH:
746                 SETUP_FILE;
747                 break;
748         case RAW_FLUSH_ALL:
749                 io->generic.in.file.fnum = 0xFFFF;
750                 break;
751         case RAW_FLUSH_SMB2:
752                 return NT_STATUS_INVALID_LEVEL;
753         }
754
755         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
756                 return smb_raw_flush(private->tree, io);
757         }
758
759         c_req = smb_raw_flush_send(private->tree, io);
760
761         SIMPLE_ASYNC_TAIL;
762 }
763
764 /*
765   close a file
766 */
767 static NTSTATUS cvfs_close(struct ntvfs_module_context *ntvfs, 
768                            struct ntvfs_request *req, union smb_close *io)
769 {
770         struct cvfs_private *private = ntvfs->private_data;
771         struct smbcli_request *c_req;
772         struct cvfs_file *f;
773
774         SETUP_PID;
775
776         if (io->generic.level != RAW_CLOSE_GENERIC &&
777             private->map_generic) {
778                 return ntvfs_map_close(ntvfs, req, io);
779         }
780         SETUP_FILE_HERE(f);
781         /* Note, we aren't free-ing f, or it's h here. Should we?
782            even if file-close fails, we'll remove it from the list,
783            what else would we do? Maybe we should not remove until
784            after the proxied call completes? */
785         DLIST_REMOVE(private->files, f);
786
787         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
788                 return smb_raw_close(private->tree, io);
789         }
790
791         c_req = smb_raw_close_send(private->tree, io);
792
793         SIMPLE_ASYNC_TAIL;
794 }
795
796 /*
797   exit - closing files open by the pid
798 */
799 static NTSTATUS cvfs_exit(struct ntvfs_module_context *ntvfs, 
800                           struct ntvfs_request *req)
801 {
802         struct cvfs_private *private = ntvfs->private_data;
803         struct smbcli_request *c_req;
804
805         SETUP_PID;
806
807         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
808                 return smb_raw_exit(private->tree->session);
809         }
810
811         c_req = smb_raw_exit_send(private->tree->session);
812
813         SIMPLE_ASYNC_TAIL;
814 }
815
816 /*
817   logoff - closing files open by the user
818 */
819 static NTSTATUS cvfs_logoff(struct ntvfs_module_context *ntvfs, 
820                             struct ntvfs_request *req)
821 {
822         /* we can't do this right in the cifs backend .... */
823         return NT_STATUS_OK;
824 }
825
826 /*
827   setup for an async call - nothing to do yet
828 */
829 static NTSTATUS cvfs_async_setup(struct ntvfs_module_context *ntvfs, 
830                                  struct ntvfs_request *req, 
831                                  void *private)
832 {
833         return NT_STATUS_OK;
834 }
835
836 /*
837   cancel an async call
838 */
839 static NTSTATUS cvfs_cancel(struct ntvfs_module_context *ntvfs, 
840                             struct ntvfs_request *req)
841 {
842         struct cvfs_private *private = ntvfs->private_data;
843         struct async_info *a;
844
845         /* find the matching request */
846         for (a=private->pending;a;a=a->next) {
847                 if (a->req == req) {
848                         break;
849                 }
850         }
851
852         if (a == NULL) {
853                 return NT_STATUS_INVALID_PARAMETER;
854         }
855
856         return smb_raw_ntcancel(a->c_req);
857 }
858
859 /*
860   lock a byte range
861 */
862 static NTSTATUS cvfs_lock(struct ntvfs_module_context *ntvfs, 
863                           struct ntvfs_request *req, union smb_lock *io)
864 {
865         struct cvfs_private *private = ntvfs->private_data;
866         struct smbcli_request *c_req;
867
868         SETUP_PID;
869
870         if (io->generic.level != RAW_LOCK_GENERIC &&
871             private->map_generic) {
872                 return ntvfs_map_lock(ntvfs, req, io);
873         }
874         SETUP_FILE;
875
876         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
877                 return smb_raw_lock(private->tree, io);
878         }
879
880         c_req = smb_raw_lock_send(private->tree, io);
881         SIMPLE_ASYNC_TAIL;
882 }
883
884 /*
885   set info on a open file
886 */
887 static NTSTATUS cvfs_setfileinfo(struct ntvfs_module_context *ntvfs, 
888                                  struct ntvfs_request *req, 
889                                  union smb_setfileinfo *io)
890 {
891         struct cvfs_private *private = ntvfs->private_data;
892         struct smbcli_request *c_req;
893
894         SETUP_PID_AND_FILE;
895
896         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
897                 return smb_raw_setfileinfo(private->tree, io);
898         }
899         c_req = smb_raw_setfileinfo_send(private->tree, io);
900
901         SIMPLE_ASYNC_TAIL;
902 }
903
904
905 /*
906   a handler for async fsinfo replies
907  */
908 static void async_fsinfo(struct smbcli_request *c_req)
909 {
910         struct async_info *async = c_req->async.private;
911         struct ntvfs_request *req = async->req;
912         req->async_states->status = smb_raw_fsinfo_recv(c_req, req, async->parms);
913         talloc_free(async);
914         req->async_states->send_fn(req);
915 }
916
917 /*
918   return filesystem space info
919 */
920 static NTSTATUS cvfs_fsinfo(struct ntvfs_module_context *ntvfs, 
921                             struct ntvfs_request *req, union smb_fsinfo *fs)
922 {
923         struct cvfs_private *private = ntvfs->private_data;
924         struct smbcli_request *c_req;
925
926         SETUP_PID;
927
928         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
929                 return smb_raw_fsinfo(private->tree, req, fs);
930         }
931
932         c_req = smb_raw_fsinfo_send(private->tree, req, fs);
933
934         ASYNC_RECV_TAIL(fs, async_fsinfo);
935 }
936
937 /*
938   return print queue info
939 */
940 static NTSTATUS cvfs_lpq(struct ntvfs_module_context *ntvfs, 
941                          struct ntvfs_request *req, union smb_lpq *lpq)
942 {
943         return NT_STATUS_NOT_SUPPORTED;
944 }
945
946 /* 
947    list files in a directory matching a wildcard pattern
948 */
949 static NTSTATUS cvfs_search_first(struct ntvfs_module_context *ntvfs, 
950                                   struct ntvfs_request *req, union smb_search_first *io, 
951                                   void *search_private, 
952                                   bool (*callback)(void *, const union smb_search_data *))
953 {
954         struct cvfs_private *private = ntvfs->private_data;
955
956         SETUP_PID;
957
958         return smb_raw_search_first(private->tree, req, io, search_private, callback);
959 }
960
961 /* continue a search */
962 static NTSTATUS cvfs_search_next(struct ntvfs_module_context *ntvfs, 
963                                  struct ntvfs_request *req, union smb_search_next *io, 
964                                  void *search_private, 
965                                  bool (*callback)(void *, const union smb_search_data *))
966 {
967         struct cvfs_private *private = ntvfs->private_data;
968
969         SETUP_PID;
970
971         return smb_raw_search_next(private->tree, req, io, search_private, callback);
972 }
973
974 /* close a search */
975 static NTSTATUS cvfs_search_close(struct ntvfs_module_context *ntvfs, 
976                                   struct ntvfs_request *req, union smb_search_close *io)
977 {
978         struct cvfs_private *private = ntvfs->private_data;
979
980         SETUP_PID;
981
982         return smb_raw_search_close(private->tree, io);
983 }
984
985 /*
986   a handler for async trans2 replies
987  */
988 static void async_trans2(struct smbcli_request *c_req)
989 {
990         struct async_info *async = c_req->async.private;
991         struct ntvfs_request *req = async->req;
992         req->async_states->status = smb_raw_trans2_recv(c_req, req, async->parms);
993         talloc_free(async);
994         req->async_states->send_fn(req);
995 }
996
997 /* raw trans2 */
998 static NTSTATUS cvfs_trans2(struct ntvfs_module_context *ntvfs, 
999                             struct ntvfs_request *req,
1000                             struct smb_trans2 *trans2)
1001 {
1002         struct cvfs_private *private = ntvfs->private_data;
1003         struct smbcli_request *c_req;
1004
1005         if (private->map_trans2) {
1006                 return NT_STATUS_NOT_IMPLEMENTED;
1007         }
1008
1009         SETUP_PID;
1010
1011         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
1012                 return smb_raw_trans2(private->tree, req, trans2);
1013         }
1014
1015         c_req = smb_raw_trans2_send(private->tree, trans2);
1016
1017         ASYNC_RECV_TAIL(trans2, async_trans2);
1018 }
1019
1020
1021 /* SMBtrans - not used on file shares */
1022 static NTSTATUS cvfs_trans(struct ntvfs_module_context *ntvfs, 
1023                            struct ntvfs_request *req,
1024                            struct smb_trans2 *trans2)
1025 {
1026         return NT_STATUS_ACCESS_DENIED;
1027 }
1028
1029 /*
1030   a handler for async change notify replies
1031  */
1032 static void async_changenotify(struct smbcli_request *c_req)
1033 {
1034         struct async_info *async = c_req->async.private;
1035         struct ntvfs_request *req = async->req;
1036         req->async_states->status = smb_raw_changenotify_recv(c_req, req, async->parms);
1037         talloc_free(async);
1038         req->async_states->send_fn(req);
1039 }
1040
1041 /* change notify request - always async */
1042 static NTSTATUS cvfs_notify(struct ntvfs_module_context *ntvfs, 
1043                             struct ntvfs_request *req,
1044                             union smb_notify *io)
1045 {
1046         struct cvfs_private *private = ntvfs->private_data;
1047         struct smbcli_request *c_req;
1048         int saved_timeout = private->transport->options.request_timeout;
1049         struct cvfs_file *f;
1050
1051         if (io->nttrans.level != RAW_NOTIFY_NTTRANS) {
1052                 return NT_STATUS_NOT_IMPLEMENTED;
1053         }
1054
1055         SETUP_PID;
1056
1057         f = ntvfs_handle_get_backend_data(io->nttrans.in.file.ntvfs, ntvfs);
1058         if (!f) return NT_STATUS_INVALID_HANDLE;
1059         io->nttrans.in.file.fnum = f->fnum;
1060
1061         /* this request doesn't make sense unless its async */
1062         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
1063                 return NT_STATUS_INVALID_PARAMETER;
1064         }
1065
1066         /* we must not timeout on notify requests - they wait
1067            forever */
1068         private->transport->options.request_timeout = 0;
1069
1070         c_req = smb_raw_changenotify_send(private->tree, io);
1071
1072         private->transport->options.request_timeout = saved_timeout;
1073
1074         ASYNC_RECV_TAIL(io, async_changenotify);
1075 }
1076
1077 /*
1078   initialise the CIFS->CIFS backend, registering ourselves with the ntvfs subsystem
1079  */
1080 NTSTATUS ntvfs_cifs_init(void)
1081 {
1082         NTSTATUS ret;
1083         struct ntvfs_ops ops;
1084         NTVFS_CURRENT_CRITICAL_SIZES(vers);
1085
1086         ZERO_STRUCT(ops);
1087
1088         /* fill in the name and type */
1089         ops.name = "cifs";
1090         ops.type = NTVFS_DISK;
1091         
1092         /* fill in all the operations */
1093         ops.connect = cvfs_connect;
1094         ops.disconnect = cvfs_disconnect;
1095         ops.unlink = cvfs_unlink;
1096         ops.chkpath = cvfs_chkpath;
1097         ops.qpathinfo = cvfs_qpathinfo;
1098         ops.setpathinfo = cvfs_setpathinfo;
1099         ops.open = cvfs_open;
1100         ops.mkdir = cvfs_mkdir;
1101         ops.rmdir = cvfs_rmdir;
1102         ops.rename = cvfs_rename;
1103         ops.copy = cvfs_copy;
1104         ops.ioctl = cvfs_ioctl;
1105         ops.read = cvfs_read;
1106         ops.write = cvfs_write;
1107         ops.seek = cvfs_seek;
1108         ops.flush = cvfs_flush; 
1109         ops.close = cvfs_close;
1110         ops.exit = cvfs_exit;
1111         ops.lock = cvfs_lock;
1112         ops.setfileinfo = cvfs_setfileinfo;
1113         ops.qfileinfo = cvfs_qfileinfo;
1114         ops.fsinfo = cvfs_fsinfo;
1115         ops.lpq = cvfs_lpq;
1116         ops.search_first = cvfs_search_first;
1117         ops.search_next = cvfs_search_next;
1118         ops.search_close = cvfs_search_close;
1119         ops.trans = cvfs_trans;
1120         ops.logoff = cvfs_logoff;
1121         ops.async_setup = cvfs_async_setup;
1122         ops.cancel = cvfs_cancel;
1123         ops.notify = cvfs_notify;
1124         ops.trans2 = cvfs_trans2;
1125
1126         /* register ourselves with the NTVFS subsystem. We register
1127            under the name 'cifs'. */
1128         ret = ntvfs_register(&ops, &vers);
1129
1130         if (!NT_STATUS_IS_OK(ret)) {
1131                 DEBUG(0,("Failed to register CIFS backend!\n"));
1132         }
1133         
1134         return ret;
1135 }