Merge branch 'vendor/TNFTP'
[dragonfly.git] / sys / vfs / ntfs / ntfs_vnops.c
1 /*      $NetBSD: ntfs_vnops.c,v 1.23 1999/10/31 19:45:27 jdolecek Exp $ */
2
3 /*
4  * Copyright (c) 1992, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * John Heidemann of the UCLA Ficus project.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  * $FreeBSD: src/sys/ntfs/ntfs_vnops.c,v 1.9.2.4 2002/08/06 19:35:18 semenu Exp $
39  *
40  */
41
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/kernel.h>
45 #include <sys/time.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <sys/vnode.h>
49 #include <sys/mount.h>
50 #include <sys/proc.h>
51 #include <sys/namei.h>
52 #include <sys/malloc.h>
53 #include <sys/buf.h>
54 #include <sys/dirent.h>
55 #include <machine/limits.h>
56
57 #include <vm/vm.h>
58 #include <vm/vm_param.h>
59 #if defined(__NetBSD__)
60 #include <vm/vm_prot.h>
61 #endif
62 #include <vm/vm_page.h>
63 #include <vm/vm_object.h>
64 #include <vm/vm_pager.h>
65 #if defined(__DragonFly__)
66 #include <vm/vnode_pager.h>
67 #endif
68 #include <vm/vm_extern.h>
69
70 #include <sys/sysctl.h>
71
72 #include <sys/buf2.h>
73
74 #include "ntfs.h"
75 #include "ntfs_inode.h"
76 #include "ntfs_subr.h"
77 #if defined(__NetBSD__)
78 #include <miscfs/specfs/specdev.h>
79 #include <miscfs/genfs/genfs.h>
80 #endif
81
82 #include <sys/unistd.h> /* for pathconf(2) constants */
83
84 static int      ntfs_read (struct vop_read_args *);
85 static int      ntfs_write (struct vop_write_args *ap);
86 static int      ntfs_getattr (struct vop_getattr_args *ap);
87 static int      ntfs_inactive (struct vop_inactive_args *ap);
88 static int      ntfs_print (struct vop_print_args *ap);
89 static int      ntfs_reclaim (struct vop_reclaim_args *ap);
90 static int      ntfs_strategy (struct vop_strategy_args *ap);
91 static int      ntfs_access (struct vop_access_args *ap);
92 static int      ntfs_open (struct vop_open_args *ap);
93 static int      ntfs_close (struct vop_close_args *ap);
94 static int      ntfs_readdir (struct vop_readdir_args *ap);
95 static int      ntfs_lookup (struct vop_old_lookup_args *ap);
96 static int      ntfs_bmap (struct vop_bmap_args *ap);
97 #if defined(__DragonFly__)
98 static int      ntfs_fsync (struct vop_fsync_args *ap);
99 #else
100 static int      ntfs_bypass (struct vop_generic_args *);
101 #endif
102 static int      ntfs_pathconf (struct vop_pathconf_args *);
103
104 int     ntfs_prtactive = 1;     /* 1 => print out reclaim of active vnodes */
105
106 /*
107  * This is a noop, simply returning what one has been given.
108  *
109  * ntfs_bmap(struct vnode *a_vp, off_t a_loffset,
110  *           daddr_t *a_doffsetp, int *a_runp, int *a_runb)
111  */
112 int
113 ntfs_bmap(struct vop_bmap_args *ap)
114 {
115         dprintf(("ntfs_bmap: vn: %p, blk: %u\n", ap->a_vp,
116                 (u_int32_t)ap->a_loffset));
117         if (ap->a_doffsetp != NULL)
118                 *ap->a_doffsetp = ap->a_loffset;
119         if (ap->a_runp != NULL)
120                 *ap->a_runp = 0;
121 #if !defined(__NetBSD__)
122         if (ap->a_runb != NULL)
123                 *ap->a_runb = 0;
124 #endif
125         return (0);
126 }
127
128 /*
129  * ntfs_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
130  *           struct ucred *a_cred)
131  */
132 static int
133 ntfs_read(struct vop_read_args *ap)
134 {
135         struct vnode *vp = ap->a_vp;
136         struct fnode *fp = VTOF(vp);
137         struct ntnode *ip = FTONT(fp);
138         struct uio *uio = ap->a_uio;
139         struct ntfsmount *ntmp = ip->i_mp;
140         struct buf *bp;
141         daddr_t cn;
142         int resid, off, toread;
143         int error;
144
145         dprintf(("ntfs_read: ino: %ju, off: %u resid: %zd, segflg: %d\n",
146                 (uintmax_t)ip->i_number, (uint32_t)uio->uio_offset,
147                 uio->uio_resid, uio->uio_segflg));
148
149         dprintf(("ntfs_read: filesize: %ju", (uintmax_t)fp->f_size));
150
151         /* don't allow reading after end of file */
152         if (uio->uio_offset > fp->f_size)
153                 return (0);
154
155         resid = (int)szmin(uio->uio_resid, fp->f_size - uio->uio_offset);
156
157         dprintf((", resid: %d\n", resid));
158
159         error = 0;
160         while (resid) {
161                 cn = ntfs_btocn(uio->uio_offset);
162                 off = ntfs_btocnoff(uio->uio_offset);
163
164                 toread = min(off + resid, ntfs_cntob(1));
165
166                 error = bread(vp, ntfs_cntodoff(cn), ntfs_cntob(1), &bp);
167                 if (error) {
168                         brelse(bp);
169                         break;
170                 }
171
172                 error = uiomove(bp->b_data + off, toread - off, uio);
173                 if(error) {
174                         brelse(bp);
175                         break;
176                 }
177                 brelse(bp);
178
179                 resid -= toread - off;
180         }
181
182         return (error);
183 }
184
185 #if !defined(__DragonFly__)
186
187 /*
188  * ntfs_bypass()
189  */
190 static int
191 ntfs_bypass(struct vop_generic_args *ap)
192 {
193         int error = ENOTTY;
194         dprintf(("ntfs_bypass: %s\n", ap->a_desc->sd_name));
195         return (error);
196 }
197
198 #endif
199
200 /*
201  * ntfs_getattr(struct vnode *a_vp, struct vattr *a_vap)
202  */
203 static int
204 ntfs_getattr(struct vop_getattr_args *ap)
205 {
206         struct vnode *vp = ap->a_vp;
207         struct fnode *fp = VTOF(vp);
208         struct ntnode *ip = FTONT(fp);
209         struct vattr *vap = ap->a_vap;
210
211         dprintf(("ntfs_getattr: %ju, flags: %d\n", (uintmax_t)ip->i_number,
212                 ip->i_flag));
213
214 #if defined(__DragonFly__)
215         vap->va_fsid = dev2udev(ip->i_dev);
216 #else /* NetBSD */
217         vap->va_fsid = ip->i_dev;
218 #endif
219         vap->va_fileid = ip->i_number;
220         vap->va_mode = ip->i_mp->ntm_mode;
221         vap->va_nlink = ip->i_nlink;
222         vap->va_uid = ip->i_mp->ntm_uid;
223         vap->va_gid = ip->i_mp->ntm_gid;
224         vap->va_rmajor = VNOVAL;
225         vap->va_rminor = VNOVAL;
226         vap->va_size = fp->f_size;
227         vap->va_bytes = fp->f_allocated;
228         vap->va_atime = ntfs_nttimetounix(fp->f_times.t_access);
229         vap->va_mtime = ntfs_nttimetounix(fp->f_times.t_write);
230         vap->va_ctime = ntfs_nttimetounix(fp->f_times.t_create);
231         vap->va_flags = ip->i_flag;
232         vap->va_gen = 0;
233         vap->va_blocksize = ip->i_mp->ntm_spc * ip->i_mp->ntm_bps;
234         vap->va_type = vp->v_type;
235         vap->va_filerev = 0;
236         return (0);
237 }
238
239
240 /*
241  * Last reference to an ntnode.  If necessary, write or delete it.
242  *
243  * ntfs_inactive(struct vnode *a_vp)
244  */
245 int
246 ntfs_inactive(struct vop_inactive_args *ap)
247 {
248         struct vnode *vp = ap->a_vp;
249 #ifdef NTFS_DEBUG
250         struct ntnode *ip = VTONT(vp);
251 #endif
252
253         dprintf(("ntfs_inactive: vnode: %p, ntnode: %ju\n", vp, (uintmax_t)ip->i_number));
254
255         if (ntfs_prtactive && vp->v_sysref.refcnt > 1)
256                 vprint("ntfs_inactive: pushing active", vp);
257
258         /*
259          * XXX since we don't support any filesystem changes
260          * right now, nothing more needs to be done
261          */
262         return (0);
263 }
264
265 /*
266  * Reclaim an fnode/ntnode so that it can be used for other purposes.
267  *
268  * ntfs_reclaim(struct vnode *a_vp)
269  */
270 int
271 ntfs_reclaim(struct vop_reclaim_args *ap)
272 {
273         struct vnode *vp = ap->a_vp;
274         struct fnode *fp = VTOF(vp);
275         struct ntnode *ip = FTONT(fp);
276         int error;
277
278         dprintf(("ntfs_reclaim: vnode: %p, ntnode: %ju\n", vp, (uintmax_t)ip->i_number));
279
280         if (ntfs_prtactive && vp->v_sysref.refcnt > 1)
281                 vprint("ntfs_reclaim: pushing active", vp);
282
283         if ((error = ntfs_ntget(ip)) != 0)
284                 return (error);
285         
286         ntfs_frele(fp);
287         ntfs_ntput(ip);
288         vp->v_data = NULL;
289
290         return (0);
291 }
292
293 /*
294  * ntfs_print(struct vnode *a_vp)
295  */
296 static int
297 ntfs_print(struct vop_print_args *ap)
298 {
299         return (0);
300 }
301
302 /*
303  * Calculate the logical to physical mapping if not done already,
304  * then call the device strategy routine.
305  *
306  * ntfs_strategy(struct vnode *a_vp, struct bio *a_bio)
307  */
308 int
309 ntfs_strategy(struct vop_strategy_args *ap)
310 {
311         struct bio *bio = ap->a_bio;
312         struct buf *bp = bio->bio_buf;
313         struct vnode *vp = ap->a_vp;
314         struct fnode *fp = VTOF(vp);
315         struct ntnode *ip = FTONT(fp);
316         struct ntfsmount *ntmp = ip->i_mp;
317         u_int32_t toread;
318         u_int32_t towrite;
319         size_t tmp;
320         int error;
321
322         dprintf(("ntfs_strategy: loffset: %u, doffset: %u\n",
323                 (uint32_t)bp->b_loffset, (uint32_t)bio->bio_offset));
324
325         dprintf(("strategy: bcount: %u flags: 0x%x\n",
326                 bp->b_bcount, bp->b_flags));
327
328         bp->b_error = 0;
329
330         switch(bp->b_cmd) {
331         case BUF_CMD_READ:
332                 if (bio->bio_offset >= fp->f_size) {
333                         clrbuf(bp);
334                         error = 0;
335                 } else {
336                         toread = min(bp->b_bcount,
337                                  fp->f_size - bio->bio_offset);
338                         dprintf(("ntfs_strategy: toread: %u, fsize: %ju\n",
339                                 toread, (uintmax_t)fp->f_size));
340
341                         error = ntfs_readattr(ntmp, ip, fp->f_attrtype,
342                                 fp->f_attrname, bio->bio_offset,
343                                 toread, bp->b_data, NULL);
344
345                         if (error) {
346                                 kprintf("ntfs_strategy: ntfs_readattr failed\n");
347                                 bp->b_error = error;
348                                 bp->b_flags |= B_ERROR;
349                         }
350
351                         bzero(bp->b_data + toread, bp->b_bcount - toread);
352                 }
353                 break;
354         case BUF_CMD_WRITE:
355                 if (bio->bio_offset + bp->b_bcount >= fp->f_size) {
356                         kprintf("ntfs_strategy: CAN'T EXTEND FILE\n");
357                         bp->b_error = error = EFBIG;
358                         bp->b_flags |= B_ERROR;
359                 } else {
360                         towrite = min(bp->b_bcount,
361                                       fp->f_size - bio->bio_offset);
362                         dprintf(("ntfs_strategy: towrite: %d, fsize: %ju\n",
363                                 towrite, (uintmax_t)fp->f_size));
364
365                         error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,  
366                                 fp->f_attrname, bio->bio_offset,towrite,
367                                 bp->b_data, &tmp, NULL);
368
369                         if (error) {
370                                 kprintf("ntfs_strategy: ntfs_writeattr fail\n");
371                                 bp->b_error = error;
372                                 bp->b_flags |= B_ERROR;
373                         }
374                 }
375                 break;
376         default:
377                 panic("ntfs: bad b_cmd %d", bp->b_cmd);
378         }
379         biodone(bio);
380         return (error);
381 }
382
383 /*
384  * ntfs_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
385  *            struct ucred *a_cred)
386  */
387 static int
388 ntfs_write(struct vop_write_args *ap)
389 {
390         struct vnode *vp = ap->a_vp;
391         struct fnode *fp = VTOF(vp);
392         struct ntnode *ip = FTONT(fp);
393         struct uio *uio = ap->a_uio;
394         struct ntfsmount *ntmp = ip->i_mp;
395         size_t towrite;
396         size_t written;
397         int error;
398
399         dprintf(("ntfs_write: ino: %ju, off: %u resid: %zd, segflg: %d\n",
400                 (uintmax_t)ip->i_number, (uint32_t)uio->uio_offset,
401                 uio->uio_resid, uio->uio_segflg));
402         dprintf(("ntfs_write: filesize: %ju ", (uintmax_t)fp->f_size));
403
404         if (uio->uio_resid + uio->uio_offset > fp->f_size) {
405                 kprintf("ntfs_write: CAN'T WRITE BEYOND END OF FILE\n");
406                 return (EFBIG);
407         }
408         if (uio->uio_offset > fp->f_size)
409                 return (EFBIG);
410
411         towrite = szmin(uio->uio_resid, fp->f_size - uio->uio_offset);
412
413         dprintf((", towrite: %zd\n", towrite));
414
415         error = ntfs_writeattr_plain(ntmp, ip, fp->f_attrtype,
416                 fp->f_attrname, uio->uio_offset, towrite, NULL, &written, uio);
417 #ifdef NTFS_DEBUG
418         if (error)
419                 kprintf("ntfs_write: ntfs_writeattr failed: %d\n", error);
420 #endif
421
422         return (error);
423 }
424
425 /*
426  * ntfs_access(struct vnode *a_vp, int a_mode, struct ucred *a_cred)
427  */
428 int
429 ntfs_access(struct vop_access_args *ap)
430 {
431         struct vnode *vp = ap->a_vp;
432         struct ntnode *ip = VTONT(vp);
433         struct ucred *cred = ap->a_cred;
434         mode_t mask, mode = ap->a_mode;
435         gid_t *gp;
436         int i;
437 #ifdef QUOTA
438         int error;
439 #endif
440
441         dprintf(("ntfs_access: %ju\n", (uintmax_t)ip->i_number));
442
443         /*
444          * Disallow write attempts on read-only file systems;
445          * unless the file is a socket, fifo, or a block or
446          * character device resident on the file system.
447          */
448         if (mode & VWRITE) {
449                 switch ((int)vp->v_type) {
450                 case VDIR:
451                 case VLNK:
452                 case VREG:
453                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
454                                 return (EROFS);
455 #ifdef QUOTA
456                         if (error = getinoquota(ip))
457                                 return (error);
458 #endif
459                         break;
460                 }
461         }
462
463         /* Otherwise, user id 0 always gets access. */
464         if (cred->cr_uid == 0)
465                 return (0);
466
467         mask = 0;
468
469         /* Otherwise, check the owner. */
470         if (cred->cr_uid == ip->i_mp->ntm_uid) {
471                 if (mode & VEXEC)
472                         mask |= S_IXUSR;
473                 if (mode & VREAD)
474                         mask |= S_IRUSR;
475                 if (mode & VWRITE)
476                         mask |= S_IWUSR;
477                 return ((ip->i_mp->ntm_mode & mask) == mask ? 0 : EACCES);
478         }
479
480         /* Otherwise, check the groups. */
481         for (i = 0, gp = cred->cr_groups; i < cred->cr_ngroups; i++, gp++)
482                 if (ip->i_mp->ntm_gid == *gp) {
483                         if (mode & VEXEC)
484                                 mask |= S_IXGRP;
485                         if (mode & VREAD)
486                                 mask |= S_IRGRP;
487                         if (mode & VWRITE)
488                                 mask |= S_IWGRP;
489                         return ((ip->i_mp->ntm_mode&mask) == mask ? 0 : EACCES);
490                 }
491
492         /* Otherwise, check everyone else. */
493         if (mode & VEXEC)
494                 mask |= S_IXOTH;
495         if (mode & VREAD)
496                 mask |= S_IROTH;
497         if (mode & VWRITE)
498                 mask |= S_IWOTH;
499         return ((ip->i_mp->ntm_mode & mask) == mask ? 0 : EACCES);
500 }
501
502 /*
503  * Open called.
504  *
505  * Nothing to do.
506  *
507  * ntfs_open(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
508  *           struct file *a_fp)
509  */
510 /* ARGSUSED */
511 static int
512 ntfs_open(struct vop_open_args *ap)
513 {
514         return (vop_stdopen(ap));
515 }
516
517 /*
518  * Close called.
519  *
520  * Update the times on the inode.
521  *
522  * ntfs_close(struct vnode *a_vp, int a_fflag)
523  */
524 /* ARGSUSED */
525 static int
526 ntfs_close(struct vop_close_args *ap)
527 {
528 #if NTFS_DEBUG
529         struct vnode *vp = ap->a_vp;
530         struct ntnode *ip = VTONT(vp);
531
532         kprintf("ntfs_close: %ju\n", (uintmax_t)ip->i_number);
533 #endif
534
535         return (vop_stdclose(ap));
536 }
537
538 /*
539  * ntfs_readdir(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred,
540  *              int *a_ncookies, off_t **cookies)
541  */
542 int
543 ntfs_readdir(struct vop_readdir_args *ap)
544 {
545         struct vnode *vp = ap->a_vp;
546         struct fnode *fp = VTOF(vp);
547         struct ntnode *ip = FTONT(fp);
548         struct uio *uio = ap->a_uio;
549         struct ntfsmount *ntmp = ip->i_mp;
550         int i, j, error = 0;
551         wchar c;
552         u_int32_t faked = 0, num, off;
553         int ncookies = 0;
554         char convname[NTFS_MAXFILENAME + 1];
555
556         dprintf(("ntfs_readdir %ju off: %u resid: %zd\n",
557                 (uintmax_t)ip->i_number, (uint32_t)uio->uio_offset,
558                 uio->uio_resid));
559
560         if (uio->uio_offset < 0 || uio->uio_offset > INT_MAX)
561                 return (EINVAL);
562         if ((error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY)) != 0)
563                 return (error);
564
565         /*
566          * uio->uio_offset carries the number of the entry
567          * where we should start returning dirents.
568          *
569          * We fake up "." if we're not reading the FS root
570          * and we always fake up "..".
571          *
572          * off contains the entry we are starting at,
573          * num increments while we are reading.
574          */
575
576         off = num = uio->uio_offset;
577         faked = (ip->i_number == NTFS_ROOTINO) ? 1 : 2;
578
579         /* Simulate . in every dir except ROOT */
580         if (ip->i_number != NTFS_ROOTINO && num == 0) {
581                 if (vop_write_dirent(&error, uio, ip->i_number,
582                     DT_DIR, 1, "."))
583                         goto done;
584                 if (error)
585                         goto done;
586
587                 num++;
588                 ncookies++;
589         }
590
591         /* Simulate .. in every dir including ROOT */
592         if (num == faked - 1) {
593                 /* XXX NTFS_ROOTINO seems to be wrong here */
594                 if (vop_write_dirent(&error, uio, NTFS_ROOTINO,
595                     DT_DIR, 2, ".."))
596                         goto readdone;
597                 if (error)
598                         goto done;
599
600                 num++;
601                 ncookies++;
602         }
603
604         for (;;) {
605                 struct attr_indexentry *iep;
606
607                 /*
608                  * num is the number of the entry we will return,
609                  * but ntfs_ntreaddir takes the entry number of the
610                  * ntfs directory listing, so subtract the faked
611                  * . and .. entries.
612                  */
613                 error = ntfs_ntreaddir(ntmp, fp, num - faked, &iep);
614
615                 if (error)
616                         goto done;
617
618                 if( NULL == iep )
619                         break;
620
621                 for (; !(iep->ie_flag & NTFS_IEFLAG_LAST);
622                         iep = NTFS_NEXTREC(iep, struct attr_indexentry *))
623                 {
624                         if(!ntfs_isnamepermitted(ntmp,iep))
625                                 continue;
626                         for(i=0, j=0; i < iep->ie_fnamelen; i++, j++) {
627                                 c = NTFS_U28(iep->ie_fname[i]);
628                                 if (c&0xFF00)
629                                         convname[j++] = (char)(c>>8);
630                                 convname[j] = (char)c&0xFF;
631                         }
632                         convname[j] = '\0';
633                         if (vop_write_dirent(&error, uio, iep->ie_number,
634                             (iep->ie_fflag & NTFS_FFLAG_DIR) ? DT_DIR : DT_REG,
635                             j, convname))
636                                 goto readdone;
637
638                         dprintf(("ntfs_readdir: elem: %d, fname:[%s] type: %d, "
639                                  "flag: %d, %s\n",
640                                  ncookies, convname, iep->ie_fnametype,
641                                  iep->ie_flag,
642                                  (iep->ie_fflag & NTFS_FFLAG_DIR) ?
643                                         "dir" : "reg"));
644
645                         if (error)
646                                 goto done;
647
648                         ncookies++;
649                         num++;
650                 }
651         }
652
653 readdone:
654         uio->uio_offset = num;
655
656         dprintf(("ntfs_readdir: %d entries (%d bytes) read\n",
657                 ncookies,(u_int)(uio->uio_offset - off)));
658         dprintf(("ntfs_readdir: off: %u resid: %zd\n",
659                 (uint32_t)uio->uio_offset, uio->uio_resid));
660
661         if (!error && ap->a_ncookies != NULL) {
662                 off_t *cookies;
663                 off_t *cookiep;
664
665                 ddprintf(("ntfs_readdir: %d cookies\n",ncookies));
666                 if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
667                         panic("ntfs_readdir: unexpected uio from NFS server");
668                 cookies = kmalloc(ncookies * sizeof(off_t), M_TEMP, M_WAITOK);
669                 cookiep = cookies;
670                 while (off < num)
671                         *cookiep++ = ++off;
672
673                 *ap->a_ncookies = ncookies;
674                 *ap->a_cookies = cookies;
675         }
676 /*
677         if (ap->a_eofflag)
678             *ap->a_eofflag = VTONT(vp)->i_size <= uio->uio_offset;
679 */
680 done:
681         vn_unlock(vp);
682         return (error);
683 }
684
685 /*
686  * ntfs_lookup(struct vnode *a_dvp, struct vnode **a_vpp,
687  *              struct componentname *a_cnp)
688  */
689 int
690 ntfs_lookup(struct vop_old_lookup_args *ap)
691 {
692         struct vnode *dvp = ap->a_dvp;
693         struct ntnode *dip = VTONT(dvp);
694         struct ntfsmount *ntmp = dip->i_mp;
695         struct componentname *cnp = ap->a_cnp;
696         int error;
697         int lockparent = cnp->cn_flags & CNP_LOCKPARENT;
698 #if NTFS_DEBUG
699         int wantparent = cnp->cn_flags & (CNP_LOCKPARENT | CNP_WANTPARENT);
700 #endif
701         dprintf(("ntfs_lookup: \"%.*s\" (%ld bytes) in %ju, lp: %d, wp: %d \n",
702                 (int)cnp->cn_namelen, cnp->cn_nameptr, cnp->cn_namelen,
703                 (uintmax_t)dip->i_number, lockparent, wantparent));
704
705         *ap->a_vpp = NULL;
706
707         if (cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {
708                 dprintf(("ntfs_lookup: faking . directory in %u\n",
709                         (uint32_t)dip->i_number));
710
711                 vref(dvp);
712                 *ap->a_vpp = dvp;
713                 error = 0;
714         } else if (cnp->cn_flags & CNP_ISDOTDOT) {
715                 struct ntvattr *vap;
716
717                 dprintf(("ntfs_lookup: faking .. directory in %d\n",
718                         (uint32_t)dip->i_number));
719
720                 error = ntfs_ntvattrget(ntmp, dip, NTFS_A_NAME, NULL, 0, &vap);
721                 if(error)
722                         return (error);
723
724                 VOP__UNLOCK(dvp, 0);
725                 cnp->cn_flags |= CNP_PDIRUNLOCK;
726
727                 dprintf(("ntfs_lookup: parentdir: %d\n",
728                          vap->va_a_name->n_pnumber));
729                 error = VFS_VGET(ntmp->ntm_mountp, NULL,
730                                  vap->va_a_name->n_pnumber,ap->a_vpp); 
731                 ntfs_ntvattrrele(vap);
732                 if (error) {
733                         if (VN_LOCK(dvp, LK_EXCLUSIVE | LK_RETRY) == 0)
734                                 cnp->cn_flags &= ~CNP_PDIRUNLOCK;
735                         return (error);
736                 }
737
738                 if (lockparent) {
739                         error = VN_LOCK(dvp, LK_EXCLUSIVE);
740                         if (error) {
741                                 vput(*ap->a_vpp);
742                                 *ap->a_vpp = NULL;
743                                 return (error);
744                         }
745                         cnp->cn_flags &= ~CNP_PDIRUNLOCK;
746                 }
747         } else {
748                 error = ntfs_ntlookupfile(ntmp, dvp, cnp, ap->a_vpp);
749                 if (error) {
750                         dprintf(("ntfs_ntlookupfile: returned %d\n", error));
751                         return (error);
752                 }
753
754                 dprintf(("ntfs_lookup: found ino: %u\n",
755                         (uint32_t)VTONT(*ap->a_vpp)->i_number));
756
757                 if (!lockparent) {
758                         VOP__UNLOCK(dvp, 0);
759                         cnp->cn_flags |= CNP_PDIRUNLOCK;
760                 }
761         }
762         return (error);
763 }
764
765 #if defined(__DragonFly__)
766 /*
767  * Flush the blocks of a file to disk.
768  *
769  * This function is worthless for vnodes that represent directories. Maybe we
770  * could just do a sync if they try an fsync on a directory file.
771  *
772  * ntfs_fsync(struct vnode *a_vp, int a_waitfor)
773  */
774 static int
775 ntfs_fsync(struct vop_fsync_args *ap)
776 {
777         return (0);
778 }
779 #endif
780
781 /*
782  * Return POSIX pathconf information applicable to NTFS filesystem
783  */
784 int
785 ntfs_pathconf(struct vop_pathconf_args *ap)
786 {
787         switch (ap->a_name) {
788         case _PC_LINK_MAX:
789                 *ap->a_retval = 1;
790                 return (0);
791         case _PC_NAME_MAX:
792                 *ap->a_retval = NTFS_MAXFILENAME;
793                 return (0);
794         case _PC_PATH_MAX:
795                 *ap->a_retval = PATH_MAX;
796                 return (0);
797         case _PC_CHOWN_RESTRICTED:
798                 *ap->a_retval = 1;
799                 return (0);
800         case _PC_NO_TRUNC:
801                 *ap->a_retval = 0;
802                 return (0);
803 #if defined(__NetBSD__)
804         case _PC_SYNC_IO:
805                 *ap->a_retval = 1;
806                 return (0);
807         case _PC_FILESIZEBITS:
808                 *ap->a_retval = 64;
809                 return (0);
810 #endif
811         default:
812                 return (EINVAL);
813         }
814         /* NOTREACHED */
815 }
816
817 /*
818  * Global vfs data structures
819  */
820 struct vop_ops ntfs_vnode_vops = {
821         .vop_default =          vop_defaultop,
822         .vop_getattr =          ntfs_getattr,
823         .vop_inactive =         ntfs_inactive,
824         .vop_reclaim =          ntfs_reclaim,
825         .vop_print =            ntfs_print,
826         .vop_pathconf =         ntfs_pathconf,
827         .vop_old_lookup =       ntfs_lookup,
828         .vop_access =           ntfs_access,
829         .vop_close =            ntfs_close,
830         .vop_open =             ntfs_open,
831         .vop_readdir =          ntfs_readdir,
832         .vop_fsync =            ntfs_fsync,
833         .vop_bmap =             ntfs_bmap,
834         .vop_getpages =         vop_stdgetpages,
835         .vop_putpages =         vop_stdputpages,
836         .vop_strategy =         ntfs_strategy,
837         .vop_read =             ntfs_read,
838         .vop_write =            ntfs_write
839 };
840