]> git.samba.org - samba.git/blob - source4/ntvfs/cifs/vfs_cifs.c
Fix include paths to new location of libutil.
[samba.git] / source4 / 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/raw/raw_proto.h"
30 #include "libcli/smb_composite/smb_composite.h"
31 #include "auth/auth.h"
32 #include "auth/credentials/credentials.h"
33 #include "ntvfs/ntvfs.h"
34 #include "../lib/util/dlinklist.h"
35 #include "param/param.h"
36 #include "libcli/resolve/resolve.h"
37
38 struct cvfs_file {
39         struct cvfs_file *prev, *next;
40         uint16_t fnum;
41         struct ntvfs_handle *h;
42 };
43
44 /* this is stored in ntvfs_private */
45 struct cvfs_private {
46         struct smbcli_tree *tree;
47         struct smbcli_transport *transport;
48         struct ntvfs_module_context *ntvfs;
49         struct async_info *pending;
50         struct cvfs_file *files;
51         bool map_generic;
52         bool map_trans2;
53 };
54
55
56 /* a structure used to pass information to an async handler */
57 struct async_info {
58         struct async_info *next, *prev;
59         struct cvfs_private *cvfs;
60         struct ntvfs_request *req;
61         struct smbcli_request *c_req;
62         struct cvfs_file *f;
63         void *parms;
64 };
65
66 #define SETUP_PID private->tree->session->pid = req->smbpid
67
68 #define SETUP_FILE_HERE(f) do { \
69         f = ntvfs_handle_get_backend_data(io->generic.in.file.ntvfs, ntvfs); \
70         if (!f) return NT_STATUS_INVALID_HANDLE; \
71         io->generic.in.file.fnum = f->fnum; \
72 } while (0)
73
74 #define SETUP_FILE do { \
75         struct cvfs_file *f; \
76         SETUP_FILE_HERE(f); \
77 } while (0)
78
79 #define SETUP_PID_AND_FILE do { \
80         SETUP_PID; \
81         SETUP_FILE; \
82 } while (0)
83
84 #define CIFS_SERVER             "cifs:server"
85 #define CIFS_USER               "cifs:user"
86 #define CIFS_PASSWORD           "cifs:password"
87 #define CIFS_DOMAIN             "cifs:domain"
88 #define CIFS_SHARE              "cifs:share"
89 #define CIFS_USE_MACHINE_ACCT   "cifs:use-machine-account"
90 #define CIFS_MAP_GENERIC        "cifs:map-generic"
91 #define CIFS_MAP_TRANS2         "cifs:map-trans2"
92
93 #define CIFS_USE_MACHINE_ACCT_DEFAULT   false
94 #define CIFS_MAP_GENERIC_DEFAULT        false
95 #define CIFS_MAP_TRANS2_DEFAULT         true
96
97 /*
98   a handler for oplock break events from the server - these need to be passed
99   along to the client
100  */
101 static bool oplock_handler(struct smbcli_transport *transport, uint16_t tid, uint16_t fnum, uint8_t level, void *p_private)
102 {
103         struct cvfs_private *private = p_private;
104         NTSTATUS status;
105         struct ntvfs_handle *h = NULL;
106         struct cvfs_file *f;
107
108         for (f=private->files; f; f=f->next) {
109                 if (f->fnum != fnum) continue;
110                 h = f->h;
111                 break;
112         }
113
114         if (!h) {
115                 DEBUG(5,("vfs_cifs: ignoring oplock break level %d for fnum %d\n", level, fnum));
116                 return true;
117         }
118
119         DEBUG(5,("vfs_cifs: sending oplock break level %d for fnum %d\n", level, fnum));
120         status = ntvfs_send_oplock_break(private->ntvfs, h, level);
121         if (!NT_STATUS_IS_OK(status)) return false;
122         return true;
123 }
124
125 /*
126   connect to a share - used when a tree_connect operation comes in.
127 */
128 static NTSTATUS cvfs_connect(struct ntvfs_module_context *ntvfs, 
129                              struct ntvfs_request *req, const char *sharename)
130 {
131         NTSTATUS status;
132         struct cvfs_private *private;
133         const char *host, *user, *pass, *domain, *remote_share;
134         struct smb_composite_connect io;
135         struct composite_context *creq;
136         struct share_config *scfg = ntvfs->ctx->config;
137
138         struct cli_credentials *credentials;
139         bool machine_account;
140
141         /* Here we need to determine which server to connect to.
142          * For now we use parametric options, type cifs.
143          * Later we will use security=server and auth_server.c.
144          */
145         host = share_string_option(scfg, CIFS_SERVER, NULL);
146         user = share_string_option(scfg, CIFS_USER, NULL);
147         pass = share_string_option(scfg, CIFS_PASSWORD, NULL);
148         domain = share_string_option(scfg, CIFS_DOMAIN, NULL);
149         remote_share = share_string_option(scfg, CIFS_SHARE, NULL);
150         if (!remote_share) {
151                 remote_share = sharename;
152         }
153
154         machine_account = share_bool_option(scfg, CIFS_USE_MACHINE_ACCT, CIFS_USE_MACHINE_ACCT_DEFAULT);
155
156         private = talloc_zero(ntvfs, struct cvfs_private);
157         if (!private) {
158                 return NT_STATUS_NO_MEMORY;
159         }
160
161         ntvfs->private_data = private;
162
163         if (!host) {
164                 DEBUG(1,("CIFS backend: You must supply server\n"));
165                 return NT_STATUS_INVALID_PARAMETER;
166         } 
167         
168         if (user && pass) {
169                 DEBUG(5, ("CIFS backend: Using specified password\n"));
170                 credentials = cli_credentials_init(private);
171                 if (!credentials) {
172                         return NT_STATUS_NO_MEMORY;
173                 }
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_conf(credentials, ntvfs->ctx->lp_ctx);
184                 if (domain) {
185                         cli_credentials_set_domain(credentials, domain, CRED_SPECIFIED);
186                 }
187                 status = cli_credentials_set_machine_account(credentials, ntvfs->ctx->lp_ctx);
188                 if (!NT_STATUS_IS_OK(status)) {
189                         return status;
190                 }
191         } else if (req->session_info->credentials) {
192                 DEBUG(5, ("CIFS backend: Using delegated credentials\n"));
193                 credentials = req->session_info->credentials;
194         } else {
195                 DEBUG(1,("CIFS backend: NO delegated credentials found: You must supply server, user and password or the client must supply delegated credentials\n"));
196                 return NT_STATUS_INVALID_PARAMETER;
197         }
198
199         /* connect to the server, using the smbd event context */
200         io.in.dest_host = host;
201         io.in.dest_ports = lp_smb_ports(ntvfs->ctx->lp_ctx);
202         io.in.called_name = host;
203         io.in.credentials = credentials;
204         io.in.fallback_to_anonymous = false;
205         io.in.workgroup = lp_workgroup(ntvfs->ctx->lp_ctx);
206         io.in.service = remote_share;
207         io.in.service_type = "?????";
208         lp_smbcli_options(ntvfs->ctx->lp_ctx, &io.in.options);
209         lp_smbcli_session_options(ntvfs->ctx->lp_ctx, &io.in.session_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         union smb_close io2;
774
775         SETUP_PID;
776
777         if (io->generic.level != RAW_CLOSE_GENERIC &&
778             private->map_generic) {
779                 return ntvfs_map_close(ntvfs, req, io);
780         }
781
782         if (io->generic.level == RAW_CLOSE_GENERIC) {
783                 ZERO_STRUCT(io2);
784                 io2.close.level = RAW_CLOSE_CLOSE;
785                 io2.close.in.file = io->generic.in.file;
786                 io2.close.in.write_time = io->generic.in.write_time;
787                 io = &io2;
788         }
789
790         SETUP_FILE_HERE(f);
791         /* Note, we aren't free-ing f, or it's h here. Should we?
792            even if file-close fails, we'll remove it from the list,
793            what else would we do? Maybe we should not remove until
794            after the proxied call completes? */
795         DLIST_REMOVE(private->files, f);
796
797         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
798                 return smb_raw_close(private->tree, io);
799         }
800
801         c_req = smb_raw_close_send(private->tree, io);
802
803         SIMPLE_ASYNC_TAIL;
804 }
805
806 /*
807   exit - closing files open by the pid
808 */
809 static NTSTATUS cvfs_exit(struct ntvfs_module_context *ntvfs, 
810                           struct ntvfs_request *req)
811 {
812         struct cvfs_private *private = ntvfs->private_data;
813         struct smbcli_request *c_req;
814
815         SETUP_PID;
816
817         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
818                 return smb_raw_exit(private->tree->session);
819         }
820
821         c_req = smb_raw_exit_send(private->tree->session);
822
823         SIMPLE_ASYNC_TAIL;
824 }
825
826 /*
827   logoff - closing files open by the user
828 */
829 static NTSTATUS cvfs_logoff(struct ntvfs_module_context *ntvfs, 
830                             struct ntvfs_request *req)
831 {
832         /* we can't do this right in the cifs backend .... */
833         return NT_STATUS_OK;
834 }
835
836 /*
837   setup for an async call - nothing to do yet
838 */
839 static NTSTATUS cvfs_async_setup(struct ntvfs_module_context *ntvfs, 
840                                  struct ntvfs_request *req, 
841                                  void *private)
842 {
843         return NT_STATUS_OK;
844 }
845
846 /*
847   cancel an async call
848 */
849 static NTSTATUS cvfs_cancel(struct ntvfs_module_context *ntvfs, 
850                             struct ntvfs_request *req)
851 {
852         struct cvfs_private *private = ntvfs->private_data;
853         struct async_info *a;
854
855         /* find the matching request */
856         for (a=private->pending;a;a=a->next) {
857                 if (a->req == req) {
858                         break;
859                 }
860         }
861
862         if (a == NULL) {
863                 return NT_STATUS_INVALID_PARAMETER;
864         }
865
866         return smb_raw_ntcancel(a->c_req);
867 }
868
869 /*
870   lock a byte range
871 */
872 static NTSTATUS cvfs_lock(struct ntvfs_module_context *ntvfs, 
873                           struct ntvfs_request *req, union smb_lock *io)
874 {
875         struct cvfs_private *private = ntvfs->private_data;
876         struct smbcli_request *c_req;
877
878         SETUP_PID;
879
880         if (io->generic.level != RAW_LOCK_GENERIC &&
881             private->map_generic) {
882                 return ntvfs_map_lock(ntvfs, req, io);
883         }
884         SETUP_FILE;
885
886         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
887                 return smb_raw_lock(private->tree, io);
888         }
889
890         c_req = smb_raw_lock_send(private->tree, io);
891         SIMPLE_ASYNC_TAIL;
892 }
893
894 /*
895   set info on a open file
896 */
897 static NTSTATUS cvfs_setfileinfo(struct ntvfs_module_context *ntvfs, 
898                                  struct ntvfs_request *req, 
899                                  union smb_setfileinfo *io)
900 {
901         struct cvfs_private *private = ntvfs->private_data;
902         struct smbcli_request *c_req;
903
904         SETUP_PID_AND_FILE;
905
906         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
907                 return smb_raw_setfileinfo(private->tree, io);
908         }
909         c_req = smb_raw_setfileinfo_send(private->tree, io);
910
911         SIMPLE_ASYNC_TAIL;
912 }
913
914
915 /*
916   a handler for async fsinfo replies
917  */
918 static void async_fsinfo(struct smbcli_request *c_req)
919 {
920         struct async_info *async = c_req->async.private;
921         struct ntvfs_request *req = async->req;
922         req->async_states->status = smb_raw_fsinfo_recv(c_req, req, async->parms);
923         talloc_free(async);
924         req->async_states->send_fn(req);
925 }
926
927 /*
928   return filesystem space info
929 */
930 static NTSTATUS cvfs_fsinfo(struct ntvfs_module_context *ntvfs, 
931                             struct ntvfs_request *req, union smb_fsinfo *fs)
932 {
933         struct cvfs_private *private = ntvfs->private_data;
934         struct smbcli_request *c_req;
935
936         SETUP_PID;
937
938         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
939                 return smb_raw_fsinfo(private->tree, req, fs);
940         }
941
942         c_req = smb_raw_fsinfo_send(private->tree, req, fs);
943
944         ASYNC_RECV_TAIL(fs, async_fsinfo);
945 }
946
947 /*
948   return print queue info
949 */
950 static NTSTATUS cvfs_lpq(struct ntvfs_module_context *ntvfs, 
951                          struct ntvfs_request *req, union smb_lpq *lpq)
952 {
953         return NT_STATUS_NOT_SUPPORTED;
954 }
955
956 /* 
957    list files in a directory matching a wildcard pattern
958 */
959 static NTSTATUS cvfs_search_first(struct ntvfs_module_context *ntvfs, 
960                                   struct ntvfs_request *req, union smb_search_first *io, 
961                                   void *search_private, 
962                                   bool (*callback)(void *, const union smb_search_data *))
963 {
964         struct cvfs_private *private = ntvfs->private_data;
965
966         SETUP_PID;
967
968         return smb_raw_search_first(private->tree, req, io, search_private, callback);
969 }
970
971 /* continue a search */
972 static NTSTATUS cvfs_search_next(struct ntvfs_module_context *ntvfs, 
973                                  struct ntvfs_request *req, union smb_search_next *io, 
974                                  void *search_private, 
975                                  bool (*callback)(void *, const union smb_search_data *))
976 {
977         struct cvfs_private *private = ntvfs->private_data;
978
979         SETUP_PID;
980
981         return smb_raw_search_next(private->tree, req, io, search_private, callback);
982 }
983
984 /* close a search */
985 static NTSTATUS cvfs_search_close(struct ntvfs_module_context *ntvfs, 
986                                   struct ntvfs_request *req, union smb_search_close *io)
987 {
988         struct cvfs_private *private = ntvfs->private_data;
989
990         SETUP_PID;
991
992         return smb_raw_search_close(private->tree, io);
993 }
994
995 /*
996   a handler for async trans2 replies
997  */
998 static void async_trans2(struct smbcli_request *c_req)
999 {
1000         struct async_info *async = c_req->async.private;
1001         struct ntvfs_request *req = async->req;
1002         req->async_states->status = smb_raw_trans2_recv(c_req, req, async->parms);
1003         talloc_free(async);
1004         req->async_states->send_fn(req);
1005 }
1006
1007 /* raw trans2 */
1008 static NTSTATUS cvfs_trans2(struct ntvfs_module_context *ntvfs, 
1009                             struct ntvfs_request *req,
1010                             struct smb_trans2 *trans2)
1011 {
1012         struct cvfs_private *private = ntvfs->private_data;
1013         struct smbcli_request *c_req;
1014
1015         if (private->map_trans2) {
1016                 return NT_STATUS_NOT_IMPLEMENTED;
1017         }
1018
1019         SETUP_PID;
1020
1021         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
1022                 return smb_raw_trans2(private->tree, req, trans2);
1023         }
1024
1025         c_req = smb_raw_trans2_send(private->tree, trans2);
1026
1027         ASYNC_RECV_TAIL(trans2, async_trans2);
1028 }
1029
1030
1031 /* SMBtrans - not used on file shares */
1032 static NTSTATUS cvfs_trans(struct ntvfs_module_context *ntvfs, 
1033                            struct ntvfs_request *req,
1034                            struct smb_trans2 *trans2)
1035 {
1036         return NT_STATUS_ACCESS_DENIED;
1037 }
1038
1039 /*
1040   a handler for async change notify replies
1041  */
1042 static void async_changenotify(struct smbcli_request *c_req)
1043 {
1044         struct async_info *async = c_req->async.private;
1045         struct ntvfs_request *req = async->req;
1046         req->async_states->status = smb_raw_changenotify_recv(c_req, req, async->parms);
1047         talloc_free(async);
1048         req->async_states->send_fn(req);
1049 }
1050
1051 /* change notify request - always async */
1052 static NTSTATUS cvfs_notify(struct ntvfs_module_context *ntvfs, 
1053                             struct ntvfs_request *req,
1054                             union smb_notify *io)
1055 {
1056         struct cvfs_private *private = ntvfs->private_data;
1057         struct smbcli_request *c_req;
1058         int saved_timeout = private->transport->options.request_timeout;
1059         struct cvfs_file *f;
1060
1061         if (io->nttrans.level != RAW_NOTIFY_NTTRANS) {
1062                 return NT_STATUS_NOT_IMPLEMENTED;
1063         }
1064
1065         SETUP_PID;
1066
1067         f = ntvfs_handle_get_backend_data(io->nttrans.in.file.ntvfs, ntvfs);
1068         if (!f) return NT_STATUS_INVALID_HANDLE;
1069         io->nttrans.in.file.fnum = f->fnum;
1070
1071         /* this request doesn't make sense unless its async */
1072         if (!(req->async_states->state & NTVFS_ASYNC_STATE_MAY_ASYNC)) {
1073                 return NT_STATUS_INVALID_PARAMETER;
1074         }
1075
1076         /* we must not timeout on notify requests - they wait
1077            forever */
1078         private->transport->options.request_timeout = 0;
1079
1080         c_req = smb_raw_changenotify_send(private->tree, io);
1081
1082         private->transport->options.request_timeout = saved_timeout;
1083
1084         ASYNC_RECV_TAIL(io, async_changenotify);
1085 }
1086
1087 /*
1088   initialise the CIFS->CIFS backend, registering ourselves with the ntvfs subsystem
1089  */
1090 NTSTATUS ntvfs_cifs_init(void)
1091 {
1092         NTSTATUS ret;
1093         struct ntvfs_ops ops;
1094         NTVFS_CURRENT_CRITICAL_SIZES(vers);
1095
1096         ZERO_STRUCT(ops);
1097
1098         /* fill in the name and type */
1099         ops.name = "cifs";
1100         ops.type = NTVFS_DISK;
1101         
1102         /* fill in all the operations */
1103         ops.connect = cvfs_connect;
1104         ops.disconnect = cvfs_disconnect;
1105         ops.unlink = cvfs_unlink;
1106         ops.chkpath = cvfs_chkpath;
1107         ops.qpathinfo = cvfs_qpathinfo;
1108         ops.setpathinfo = cvfs_setpathinfo;
1109         ops.open = cvfs_open;
1110         ops.mkdir = cvfs_mkdir;
1111         ops.rmdir = cvfs_rmdir;
1112         ops.rename = cvfs_rename;
1113         ops.copy = cvfs_copy;
1114         ops.ioctl = cvfs_ioctl;
1115         ops.read = cvfs_read;
1116         ops.write = cvfs_write;
1117         ops.seek = cvfs_seek;
1118         ops.flush = cvfs_flush; 
1119         ops.close = cvfs_close;
1120         ops.exit = cvfs_exit;
1121         ops.lock = cvfs_lock;
1122         ops.setfileinfo = cvfs_setfileinfo;
1123         ops.qfileinfo = cvfs_qfileinfo;
1124         ops.fsinfo = cvfs_fsinfo;
1125         ops.lpq = cvfs_lpq;
1126         ops.search_first = cvfs_search_first;
1127         ops.search_next = cvfs_search_next;
1128         ops.search_close = cvfs_search_close;
1129         ops.trans = cvfs_trans;
1130         ops.logoff = cvfs_logoff;
1131         ops.async_setup = cvfs_async_setup;
1132         ops.cancel = cvfs_cancel;
1133         ops.notify = cvfs_notify;
1134         ops.trans2 = cvfs_trans2;
1135
1136         /* register ourselves with the NTVFS subsystem. We register
1137            under the name 'cifs'. */
1138         ret = ntvfs_register(&ops, &vers);
1139
1140         if (!NT_STATUS_IS_OK(ret)) {
1141                 DEBUG(0,("Failed to register CIFS backend!\n"));
1142         }
1143         
1144         return ret;
1145 }