Style(9):
[dragonfly.git] / sys / vfs / hpfs / hpfs_vnops.c
... / ...
CommitLineData
1/*-
2 * Copyright (c) 1998, 1999 Semen Ustimenko (semenu@FreeBSD.org)
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: src/sys/fs/hpfs/hpfs_vnops.c,v 1.2.2.2 2002/01/15 18:35:09 semenu Exp $
27 * $DragonFly: src/sys/vfs/hpfs/hpfs_vnops.c,v 1.20 2004/10/12 19:20:56 dillon Exp $
28 */
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/kernel.h>
33#include <sys/proc.h>
34#include <sys/time.h>
35#include <sys/types.h>
36#include <sys/stat.h>
37#include <sys/vnode.h>
38#include <sys/mount.h>
39#include <sys/namei.h>
40#include <sys/malloc.h>
41#include <sys/buf.h>
42#include <sys/dirent.h>
43
44#include <vm/vm.h>
45#include <vm/vm_param.h>
46#if !defined(__DragonFly__)
47#include <vm/vm_prot.h>
48#endif
49#include <vm/vm_page.h>
50#include <vm/vm_object.h>
51#include <vm/vm_pager.h>
52#include <vm/vm_zone.h>
53#if defined(__DragonFly__)
54#include <vm/vnode_pager.h>
55#endif
56#include <vm/vm_extern.h>
57#include <sys/buf2.h>
58
59#if !defined(__DragonFly__)
60#include <miscfs/specfs/specdev.h>
61#include <miscfs/genfs/genfs.h>
62#endif
63
64#include <sys/unistd.h> /* for pathconf(2) constants */
65
66#include "hpfs.h"
67#include "hpfsmount.h"
68#include "hpfs_subr.h"
69#include "hpfs_ioctl.h"
70
71static int hpfs_de_uiomove (struct hpfsmount *, struct hpfsdirent *,
72 struct uio *);
73static int hpfs_ioctl (struct vop_ioctl_args *ap);
74static int hpfs_read (struct vop_read_args *);
75static int hpfs_write (struct vop_write_args *ap);
76static int hpfs_getattr (struct vop_getattr_args *ap);
77static int hpfs_setattr (struct vop_setattr_args *ap);
78static int hpfs_inactive (struct vop_inactive_args *ap);
79static int hpfs_print (struct vop_print_args *ap);
80static int hpfs_reclaim (struct vop_reclaim_args *ap);
81static int hpfs_strategy (struct vop_strategy_args *ap);
82static int hpfs_access (struct vop_access_args *ap);
83static int hpfs_open (struct vop_open_args *ap);
84static int hpfs_close (struct vop_close_args *ap);
85static int hpfs_readdir (struct vop_readdir_args *ap);
86static int hpfs_lookup (struct vop_lookup_args *ap);
87static int hpfs_create (struct vop_create_args *);
88static int hpfs_remove (struct vop_remove_args *);
89static int hpfs_bmap (struct vop_bmap_args *ap);
90#if defined(__DragonFly__)
91static int hpfs_getpages (struct vop_getpages_args *ap);
92static int hpfs_putpages (struct vop_putpages_args *);
93static int hpfs_fsync (struct vop_fsync_args *ap);
94#endif
95static int hpfs_pathconf (struct vop_pathconf_args *ap);
96
97#if defined(__DragonFly__)
98int
99hpfs_getpages(struct vop_getpages_args *ap)
100{
101 return vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
102 ap->a_reqpage);
103}
104
105int
106hpfs_putpages(struct vop_putpages_args *ap)
107{
108 return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count,
109 ap->a_sync, ap->a_rtvals);
110}
111
112/*
113 * hpfs_fsync(struct vnode *a_vp, struct ucred *a_cred, int a_waitfor,
114 * struct proc *a_td)
115 */
116static int
117hpfs_fsync(struct vop_fsync_args *ap)
118{
119 struct vnode *vp = ap->a_vp;
120 int s;
121 struct buf *bp, *nbp;
122
123 /*
124 * Flush all dirty buffers associated with a vnode.
125 */
126loop:
127 s = splbio();
128 for (bp = TAILQ_FIRST(&vp->v_dirtyblkhd); bp; bp = nbp) {
129 nbp = TAILQ_NEXT(bp, b_vnbufs);
130 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT))
131 continue;
132 if ((bp->b_flags & B_DELWRI) == 0)
133 panic("hpfs_fsync: not dirty");
134 bremfree(bp);
135 splx(s);
136 (void) bwrite(bp);
137 goto loop;
138 }
139 while (vp->v_numoutput) {
140 vp->v_flag |= VBWAIT;
141 (void) tsleep((caddr_t)&vp->v_numoutput, 0, "hpfsn", 0);
142 }
143#ifdef DIAGNOSTIC
144 if (!TAILQ_EMPTY(&vp->v_dirtyblkhd)) {
145 vprint("hpfs_fsync: dirty", vp);
146 goto loop;
147 }
148#endif
149 splx(s);
150
151 /*
152 * Write out the on-disc version of the vnode.
153 */
154 return hpfs_update(VTOHP(vp));
155}
156
157#endif
158
159/*
160 * hpfs_ioctl(struct vnode *a_vp, u_long a_command, caddr_t a_data,
161 * int a_fflag, struct ucred *a_cred, struct proc *a_td)
162 */
163static int
164hpfs_ioctl(struct vop_ioctl_args *ap)
165{
166 struct vnode *vp = ap->a_vp;
167 struct hpfsnode *hp = VTOHP(vp);
168 int error;
169
170 printf("hpfs_ioctl(0x%x, 0x%lx, 0x%p, 0x%x): ",
171 hp->h_no, ap->a_command, ap->a_data, ap->a_fflag);
172
173 switch (ap->a_command) {
174 case HPFSIOCGEANUM: {
175 u_long eanum;
176 u_long passed;
177 struct ea *eap;
178
179 eanum = 0;
180
181 if (hp->h_fn.fn_ealen > 0) {
182 eap = (struct ea *)&(hp->h_fn.fn_int);
183 passed = 0;
184
185 while (passed < hp->h_fn.fn_ealen) {
186
187 printf("EAname: %s\n", EA_NAME(eap));
188
189 eanum++;
190 passed += sizeof(struct ea) +
191 eap->ea_namelen + 1 + eap->ea_vallen;
192 eap = (struct ea *)((caddr_t)hp->h_fn.fn_int +
193 passed);
194 }
195 error = 0;
196 } else {
197 error = ENOENT;
198 }
199
200 printf("%lu eas\n", eanum);
201
202 *(u_long *)ap->a_data = eanum;
203
204 break;
205 }
206 case HPFSIOCGEASZ: {
207 u_long eanum;
208 u_long passed;
209 struct ea *eap;
210
211 printf("EA%ld\n", *(u_long *)ap->a_data);
212
213 eanum = 0;
214 if (hp->h_fn.fn_ealen > 0) {
215 eap = (struct ea *)&(hp->h_fn.fn_int);
216 passed = 0;
217
218 error = ENOENT;
219 while (passed < hp->h_fn.fn_ealen) {
220 printf("EAname: %s\n", EA_NAME(eap));
221
222 if (eanum == *(u_long *)ap->a_data) {
223 *(u_long *)ap->a_data =
224 eap->ea_namelen + 1 +
225 eap->ea_vallen;
226
227 error = 0;
228 break;
229 }
230
231 eanum++;
232 passed += sizeof(struct ea) +
233 eap->ea_namelen + 1 + eap->ea_vallen;
234 eap = (struct ea *)((caddr_t)hp->h_fn.fn_int +
235 passed);
236 }
237 } else {
238 error = ENOENT;
239 }
240
241 break;
242 }
243 case HPFSIOCRDEA: {
244 u_long eanum;
245 u_long passed;
246 struct hpfs_rdea *rdeap;
247 struct ea *eap;
248
249 rdeap = (struct hpfs_rdea *)ap->a_data;
250 printf("EA%ld\n", rdeap->ea_no);
251
252 eanum = 0;
253 if (hp->h_fn.fn_ealen > 0) {
254 eap = (struct ea *)&(hp->h_fn.fn_int);
255 passed = 0;
256
257 error = ENOENT;
258 while (passed < hp->h_fn.fn_ealen) {
259 printf("EAname: %s\n", EA_NAME(eap));
260
261 if (eanum == rdeap->ea_no) {
262 rdeap->ea_sz = eap->ea_namelen + 1 +
263 eap->ea_vallen;
264 copyout(EA_NAME(eap),rdeap->ea_data,
265 rdeap->ea_sz);
266 error = 0;
267 break;
268 }
269
270 eanum++;
271 passed += sizeof(struct ea) +
272 eap->ea_namelen + 1 + eap->ea_vallen;
273 eap = (struct ea *)((caddr_t)hp->h_fn.fn_int +
274 passed);
275 }
276 } else {
277 error = ENOENT;
278 }
279
280 break;
281 }
282 default:
283 error = EOPNOTSUPP;
284 break;
285 }
286 return (error);
287}
288
289/*
290 * Map file offset to disk offset.
291 *
292 * hpfs_bmap(struct vnode *a_vp, daddr_t a_bn, struct vnode **a_vpp,
293 * daddr_t *a_bnp, int *a_runp, int *a_runb)
294 */
295int
296hpfs_bmap(struct vop_bmap_args *ap)
297{
298 struct hpfsnode *hp = VTOHP(ap->a_vp);
299 int error;
300
301 if (ap->a_vpp != NULL)
302 *ap->a_vpp = hp->h_devvp;
303#if defined(__DragonFly__)
304 if (ap->a_runb != NULL)
305 *ap->a_runb = 0;
306#endif
307 if (ap->a_bnp == NULL)
308 return (0);
309
310 dprintf(("hpfs_bmap(0x%x, 0x%x): ",hp->h_no, ap->a_bn));
311
312 error = hpfs_hpbmap (hp, ap->a_bn, ap->a_bnp, ap->a_runp);
313
314 return (error);
315}
316
317/*
318 * hpfs_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
319 * struct ucred *a_cred)
320 */
321static int
322hpfs_read(struct vop_read_args *ap)
323{
324 struct vnode *vp = ap->a_vp;
325 struct hpfsnode *hp = VTOHP(vp);
326 struct uio *uio = ap->a_uio;
327 struct buf *bp;
328 u_int xfersz, toread;
329 u_int off;
330 daddr_t lbn, bn;
331 int resid;
332 int runl;
333 int error = 0;
334
335 resid = min (uio->uio_resid, hp->h_fn.fn_size - uio->uio_offset);
336
337 dprintf(("hpfs_read(0x%x, off: %d resid: %d, segflg: %d): [resid: 0x%x]\n",hp->h_no,(u_int32_t)uio->uio_offset,uio->uio_resid,uio->uio_segflg, resid));
338
339 while (resid) {
340 lbn = uio->uio_offset >> DEV_BSHIFT;
341 off = uio->uio_offset & (DEV_BSIZE - 1);
342 dprintf(("hpfs_read: resid: 0x%x lbn: 0x%x off: 0x%x\n",
343 uio->uio_resid, lbn, off));
344 error = hpfs_hpbmap(hp, lbn, &bn, &runl);
345 if (error)
346 return (error);
347
348 toread = min(off + resid, min(DFLTPHYS, (runl+1)*DEV_BSIZE));
349 xfersz = (toread + DEV_BSIZE - 1) & ~(DEV_BSIZE - 1);
350 dprintf(("hpfs_read: bn: 0x%x (0x%x) toread: 0x%x (0x%x)\n",
351 bn, runl, toread, xfersz));
352
353 if (toread == 0)
354 break;
355
356 error = bread(hp->h_devvp, bn, xfersz, &bp);
357 if (error) {
358 brelse(bp);
359 break;
360 }
361
362 error = uiomove(bp->b_data + off, toread - off, uio);
363 if(error) {
364 brelse(bp);
365 break;
366 }
367 brelse(bp);
368 resid -= toread;
369 }
370 dprintf(("hpfs_read: successful\n"));
371 return (error);
372}
373
374/*
375 * hpfs_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
376 * struct ucred *a_cred)
377 */
378static int
379hpfs_write(struct vop_write_args *ap)
380{
381 struct vnode *vp = ap->a_vp;
382 struct hpfsnode *hp = VTOHP(vp);
383 struct uio *uio = ap->a_uio;
384 struct buf *bp;
385 u_int xfersz, towrite;
386 u_int off;
387 daddr_t lbn, bn;
388 int runl;
389 int error = 0;
390
391 dprintf(("hpfs_write(0x%x, off: %d resid: %d, segflg: %d):\n",hp->h_no,(u_int32_t)uio->uio_offset,uio->uio_resid,uio->uio_segflg));
392
393 if (ap->a_ioflag & IO_APPEND) {
394 dprintf(("hpfs_write: APPEND mode\n"));
395 uio->uio_offset = hp->h_fn.fn_size;
396 }
397 if (uio->uio_offset + uio->uio_resid > hp->h_fn.fn_size) {
398 error = hpfs_extend (hp, uio->uio_offset + uio->uio_resid);
399 if (error) {
400 printf("hpfs_write: hpfs_extend FAILED %d\n", error);
401 return (error);
402 }
403 }
404
405 while (uio->uio_resid) {
406 lbn = uio->uio_offset >> DEV_BSHIFT;
407 off = uio->uio_offset & (DEV_BSIZE - 1);
408 dprintf(("hpfs_write: resid: 0x%x lbn: 0x%x off: 0x%x\n",
409 uio->uio_resid, lbn, off));
410 error = hpfs_hpbmap(hp, lbn, &bn, &runl);
411 if (error)
412 return (error);
413
414 towrite = min(off + uio->uio_resid, min(DFLTPHYS, (runl+1)*DEV_BSIZE));
415 xfersz = (towrite + DEV_BSIZE - 1) & ~(DEV_BSIZE - 1);
416 dprintf(("hpfs_write: bn: 0x%x (0x%x) towrite: 0x%x (0x%x)\n",
417 bn, runl, towrite, xfersz));
418
419 if ((off == 0) && (towrite == xfersz)) {
420 bp = getblk(hp->h_devvp, bn, xfersz, 0, 0);
421 clrbuf(bp);
422 } else {
423 error = bread(hp->h_devvp, bn, xfersz, &bp);
424 if (error) {
425 brelse(bp);
426 return (error);
427 }
428 }
429
430 error = uiomove(bp->b_data + off, towrite - off, uio);
431 if(error) {
432 brelse(bp);
433 return (error);
434 }
435
436 if (ap->a_ioflag & IO_SYNC)
437 bwrite(bp);
438 else
439 bawrite(bp);
440 }
441
442 dprintf(("hpfs_write: successful\n"));
443 return (0);
444}
445
446/*
447 * XXXXX do we need hpfsnode locking inside?
448 *
449 * hpfs_getattr(struct vnode *a_vp, struct vattr *a_vap, struct ucred *a_cred,
450 * struct proc *a_td)
451 */
452static int
453hpfs_getattr(struct vop_getattr_args *ap)
454{
455 struct vnode *vp = ap->a_vp;
456 struct hpfsnode *hp = VTOHP(vp);
457 struct vattr *vap = ap->a_vap;
458 int error;
459
460 dprintf(("hpfs_getattr(0x%x):\n", hp->h_no));
461
462#if defined(__DragonFly__)
463 vap->va_fsid = dev2udev(hp->h_dev);
464#else /* defined(__NetBSD__) */
465 vap->va_fsid = ip->i_dev;
466#endif
467 vap->va_fileid = hp->h_no;
468 vap->va_mode = hp->h_mode;
469 vap->va_nlink = 1;
470 vap->va_uid = hp->h_uid;
471 vap->va_gid = hp->h_gid;
472 vap->va_rdev = 0; /* XXX UNODEV ? */
473 vap->va_size = hp->h_fn.fn_size;
474 vap->va_bytes = ((hp->h_fn.fn_size + DEV_BSIZE-1) & ~(DEV_BSIZE-1)) +
475 DEV_BSIZE;
476
477 if (!(hp->h_flag & H_PARVALID)) {
478 error = hpfs_validateparent(hp);
479 if (error)
480 return (error);
481 }
482 vap->va_atime = hpfstimetounix(hp->h_atime);
483 vap->va_mtime = hpfstimetounix(hp->h_mtime);
484 vap->va_ctime = hpfstimetounix(hp->h_ctime);
485
486 vap->va_flags = 0;
487 vap->va_gen = 0;
488 vap->va_blocksize = DEV_BSIZE;
489 vap->va_type = vp->v_type;
490 vap->va_filerev = 0;
491
492 return (0);
493}
494
495/*
496 * XXXXX do we need hpfsnode locking inside?
497 *
498 * hpfs_setattr(struct vnode *a_vp, struct vattr *a_vap, struct ucred *a_cred,
499 * struct thread *a_td)
500 */
501static int
502hpfs_setattr(struct vop_setattr_args *ap)
503{
504 struct vnode *vp = ap->a_vp;
505 struct hpfsnode *hp = VTOHP(vp);
506 struct vattr *vap = ap->a_vap;
507 struct ucred *cred = ap->a_cred;
508 struct thread *td = ap->a_td;
509 int error;
510
511 dprintf(("hpfs_setattr(0x%x):\n", hp->h_no));
512
513 /*
514 * Check for unsettable attributes.
515 */
516 if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
517 (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
518 (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
519 (vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
520 dprintf(("hpfs_setattr: changing nonsettable attr\n"));
521 return (EINVAL);
522 }
523
524 /* Can't change flags XXX Could be implemented */
525 if (vap->va_flags != VNOVAL) {
526 printf("hpfs_setattr: FLAGS CANNOT BE SET\n");
527 return (EINVAL);
528 }
529
530 /* Can't change uid/gid XXX Could be implemented */
531 if (vap->va_uid != (uid_t)VNOVAL || vap->va_gid != (gid_t)VNOVAL) {
532 printf("hpfs_setattr: UID/GID CANNOT BE SET\n");
533 return (EINVAL);
534 }
535
536 /* Can't change mode XXX Could be implemented */
537 if (vap->va_mode != (mode_t)VNOVAL) {
538 printf("hpfs_setattr: MODE CANNOT BE SET\n");
539 return (EINVAL);
540 }
541
542 /* Update times */
543 if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
544 if (vp->v_mount->mnt_flag & MNT_RDONLY)
545 return (EROFS);
546 if (cred->cr_uid != hp->h_uid &&
547 (error = suser_cred(cred, PRISON_ROOT)) &&
548 ((vap->va_vaflags & VA_UTIMES_NULL) == 0 ||
549 (error = VOP_ACCESS(vp, VWRITE, cred, td))))
550 return (error);
551 if (vap->va_atime.tv_sec != VNOVAL)
552 hp->h_atime = vap->va_atime.tv_sec;
553 if (vap->va_mtime.tv_sec != VNOVAL)
554 hp->h_mtime = vap->va_mtime.tv_sec;
555
556 hp->h_flag |= H_PARCHANGE;
557 }
558
559 if (vap->va_size != VNOVAL) {
560 switch (vp->v_type) {
561 case VDIR:
562 return (EISDIR);
563 case VREG:
564 if (vp->v_mount->mnt_flag & MNT_RDONLY)
565 return (EROFS);
566 break;
567 default:
568 printf("hpfs_setattr: WRONG v_type\n");
569 return (EINVAL);
570 }
571
572 if (vap->va_size < hp->h_fn.fn_size) {
573#if defined(__DragonFly__)
574 error = vtruncbuf(vp, td, vap->va_size, DEV_BSIZE);
575 if (error)
576 return (error);
577#else /* defined(__NetBSD__) */
578#error Need alternation for vtruncbuf()
579#endif
580 error = hpfs_truncate(hp, vap->va_size);
581 if (error)
582 return (error);
583
584 } else if (vap->va_size > hp->h_fn.fn_size) {
585#if defined(__DragonFly__)
586 vnode_pager_setsize(vp, vap->va_size);
587#endif
588 error = hpfs_extend(hp, vap->va_size);
589 if (error)
590 return (error);
591 }
592 }
593
594 return (0);
595}
596
597/*
598 * Last reference to an node. If necessary, write or delete it.
599 *
600 * hpfs_inactive(struct vnode *a_vp)
601 */
602int
603hpfs_inactive(struct vop_inactive_args *ap)
604{
605 struct vnode *vp = ap->a_vp;
606 struct hpfsnode *hp = VTOHP(vp);
607 int error;
608
609 dprintf(("hpfs_inactive(0x%x): \n", hp->h_no));
610
611 if (hp->h_flag & H_CHANGE) {
612 dprintf(("hpfs_inactive: node changed, update\n"));
613 error = hpfs_update (hp);
614 if (error)
615 return (error);
616 }
617
618 if (hp->h_flag & H_PARCHANGE) {
619 dprintf(("hpfs_inactive: parent node changed, update\n"));
620 error = hpfs_updateparent (hp);
621 if (error)
622 return (error);
623 }
624
625 if (prtactive && vp->v_usecount != 0)
626 vprint("hpfs_inactive: pushing active", vp);
627
628 if (hp->h_flag & H_INVAL) {
629#if defined(__DragonFly__)
630 vrecycle(vp, ap->a_td);
631#else /* defined(__NetBSD__) */
632 vgone(vp);
633#endif
634 return (0);
635 }
636 return (0);
637}
638
639/*
640 * Reclaim an inode so that it can be used for other purposes.
641 *
642 * hpfs_reclaim(struct vnode *a_vp)
643 */
644int
645hpfs_reclaim(struct vop_reclaim_args *ap)
646{
647 struct vnode *vp = ap->a_vp;
648 struct hpfsnode *hp = VTOHP(vp);
649
650 dprintf(("hpfs_reclaim(0x%x0): \n", hp->h_no));
651
652 hpfs_hphashrem(hp);
653
654 /* Purge old data structures associated with the inode. */
655 if (hp->h_devvp) {
656 vrele(hp->h_devvp);
657 hp->h_devvp = NULL;
658 }
659
660 vp->v_data = NULL;
661
662 FREE(hp, M_HPFSNO);
663
664 return (0);
665}
666
667/*
668 * hpfs_print(struct vnode *a_vp)
669 */
670static int
671hpfs_print(struct vop_print_args *ap)
672{
673 struct vnode *vp = ap->a_vp;
674 struct hpfsnode *hp = VTOHP(vp);
675
676 printf("tag VT_HPFS, ino 0x%x",hp->h_no);
677 lockmgr_printinfo(&vp->v_lock);
678 printf("\n");
679 return (0);
680}
681
682/*
683 * Calculate the logical to physical mapping if not done already,
684 * then call the device strategy routine.
685 *
686 * In order to be able to swap to a file, the VOP_BMAP operation may not
687 * deadlock on memory. See hpfs_bmap() for details. XXXXXXX (not impl)
688 *
689 * hpfs_strategy(struct buf *a_bp)
690 */
691int
692hpfs_strategy(struct vop_strategy_args *ap)
693{
694 struct buf *bp = ap->a_bp;
695 struct vnode *vp = ap->a_vp;
696 struct vnode *nvp;
697 int error;
698
699 dprintf(("hpfs_strategy(): \n"));
700
701 if (vp->v_type == VBLK || vp->v_type == VCHR)
702 panic("hpfs_strategy: spec");
703 if (bp->b_blkno == bp->b_lblkno) {
704 error = VOP_BMAP(vp, bp->b_lblkno, &nvp, &bp->b_blkno, NULL, NULL);
705 if (error) {
706 printf("hpfs_strategy: VOP_BMAP FAILED %d\n", error);
707 bp->b_error = error;
708 bp->b_flags |= B_ERROR;
709 biodone(bp);
710 return (error);
711 }
712 if ((long)bp->b_blkno == -1)
713 vfs_bio_clrbuf(bp);
714 }
715 if ((long)bp->b_blkno == -1) {
716 biodone(bp);
717 return (0);
718 }
719 bp->b_dev = nvp->v_rdev;
720 VOP_STRATEGY(nvp, bp);
721 return (0);
722}
723
724/*
725 * XXXXX do we need hpfsnode locking inside?
726 *
727 * hpfs_access(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
728 * struct proc *a_td)
729 */
730int
731hpfs_access(struct vop_access_args *ap)
732{
733 struct vnode *vp = ap->a_vp;
734 struct hpfsnode *hp = VTOHP(vp);
735 struct ucred *cred = ap->a_cred;
736 mode_t mask, mode = ap->a_mode;
737 gid_t *gp;
738 int i;
739
740 dprintf(("hpfs_access(0x%x):\n", hp->h_no));
741
742 /*
743 * Disallow write attempts on read-only file systems;
744 * unless the file is a socket, fifo, or a block or
745 * character device resident on the file system.
746 */
747 if (mode & VWRITE) {
748 switch ((int)vp->v_type) {
749 case VDIR:
750 case VLNK:
751 case VREG:
752 if (vp->v_mount->mnt_flag & MNT_RDONLY)
753 return (EROFS);
754 break;
755 }
756 }
757
758 /* Otherwise, user id 0 always gets access. */
759 if (cred->cr_uid == 0)
760 return (0);
761
762 mask = 0;
763
764 /* Otherwise, check the owner. */
765 if (cred->cr_uid == hp->h_uid) {
766 if (mode & VEXEC)
767 mask |= S_IXUSR;
768 if (mode & VREAD)
769 mask |= S_IRUSR;
770 if (mode & VWRITE)
771 mask |= S_IWUSR;
772 return ((hp->h_mode & mask) == mask ? 0 : EACCES);
773 }
774
775 /* Otherwise, check the groups. */
776 for (i = 0, gp = cred->cr_groups; i < cred->cr_ngroups; i++, gp++)
777 if (hp->h_gid == *gp) {
778 if (mode & VEXEC)
779 mask |= S_IXGRP;
780 if (mode & VREAD)
781 mask |= S_IRGRP;
782 if (mode & VWRITE)
783 mask |= S_IWGRP;
784 return ((hp->h_mode & mask) == mask ? 0 : EACCES);
785 }
786
787 /* Otherwise, check everyone else. */
788 if (mode & VEXEC)
789 mask |= S_IXOTH;
790 if (mode & VREAD)
791 mask |= S_IROTH;
792 if (mode & VWRITE)
793 mask |= S_IWOTH;
794 return ((hp->h_mode & mask) == mask ? 0 : EACCES);
795}
796
797/*
798 * Open called.
799 *
800 * Nothing to do.
801 *
802 * hpfs_open(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
803 * struct proc *a_td)
804 */
805/* ARGSUSED */
806static int
807hpfs_open(struct vop_open_args *ap)
808{
809#if HPFS_DEBUG
810 struct vnode *vp = ap->a_vp;
811 struct hpfsnode *hp = VTOHP(vp);
812
813 printf("hpfs_open(0x%x):\n",hp->h_no);
814#endif
815
816 /*
817 * Files marked append-only must be opened for appending.
818 */
819
820 return (0);
821}
822
823/*
824 * Close called.
825 *
826 * Update the times on the inode.
827 *
828 * hpfs_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred,
829 * struct proc *a_td)
830 */
831/* ARGSUSED */
832static int
833hpfs_close(struct vop_close_args *ap)
834{
835#if HPFS_DEBUG
836 struct vnode *vp = ap->a_vp;
837 struct hpfsnode *hp = VTOHP(vp);
838
839 printf("hpfs_close: %d\n",hp->h_no);
840#endif
841
842 return (0);
843}
844
845static int
846hpfs_de_uiomove(struct hpfsmount *hpmp, struct hpfsdirent *dep,
847 struct uio *uio)
848{
849 struct dirent cde;
850 int i, error;
851
852 dprintf(("[no: 0x%x, size: %d, name: %2d:%.*s, flag: 0x%x] ",
853 dep->de_fnode, dep->de_size, dep->de_namelen,
854 dep->de_namelen, dep->de_name, dep->de_flag));
855
856 /*strncpy(cde.d_name, dep->de_name, dep->de_namelen);*/
857 for (i=0; i<dep->de_namelen; i++)
858 cde.d_name[i] = hpfs_d2u(hpmp, dep->de_name[i]);
859
860 cde.d_name[dep->de_namelen] = '\0';
861 cde.d_namlen = dep->de_namelen;
862 cde.d_fileno = dep->de_fnode;
863 cde.d_type = (dep->de_flag & DE_DIR) ? DT_DIR : DT_REG;
864 cde.d_reclen = sizeof(struct dirent);
865
866 error = uiomove((char *)&cde, sizeof(struct dirent), uio);
867 if (error)
868 return (error);
869
870 dprintf(("[0x%x] ", uio->uio_resid));
871 return (error);
872}
873
874
875static struct dirent hpfs_de_dot =
876 { 0, sizeof(struct dirent), DT_DIR, 1, "." };
877static struct dirent hpfs_de_dotdot =
878 { 0, sizeof(struct dirent), DT_DIR, 2, ".." };
879
880/*
881 * hpfs_readdir(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred,
882 * int *a_ncookies, u_int **cookies)
883 */
884int
885hpfs_readdir(struct vop_readdir_args *ap)
886{
887 struct vnode *vp = ap->a_vp;
888 struct hpfsnode *hp = VTOHP(vp);
889 struct hpfsmount *hpmp = hp->h_hpmp;
890 struct uio *uio = ap->a_uio;
891 int ncookies = 0, i, num, cnum;
892 int error = 0;
893 off_t off;
894 struct buf *bp;
895 struct dirblk *dp;
896 struct hpfsdirent *dep;
897 lsn_t olsn;
898 lsn_t lsn;
899 int level;
900
901 dprintf(("hpfs_readdir(0x%x, 0x%x, 0x%x): ",hp->h_no,(u_int32_t)uio->uio_offset,uio->uio_resid));
902
903 off = uio->uio_offset;
904
905 if( uio->uio_offset < sizeof(struct dirent) ) {
906 dprintf((". faked, "));
907 hpfs_de_dot.d_fileno = hp->h_no;
908 error = uiomove((char *)&hpfs_de_dot,sizeof(struct dirent),uio);
909 if(error) {
910 return (error);
911 }
912
913 ncookies ++;
914 }
915
916 if( uio->uio_offset < 2 * sizeof(struct dirent) ) {
917 dprintf((".. faked, "));
918 hpfs_de_dotdot.d_fileno = hp->h_fn.fn_parent;
919
920 error = uiomove((char *)&hpfs_de_dotdot, sizeof(struct dirent),
921 uio);
922 if(error) {
923 return (error);
924 }
925
926 ncookies ++;
927 }
928
929 num = uio->uio_offset / sizeof(struct dirent) - 2;
930 cnum = 0;
931
932 lsn = ((alleaf_t *)hp->h_fn.fn_abd)->al_lsn;
933
934 olsn = 0;
935 level = 1;
936
937dive:
938 dprintf(("[dive 0x%x] ", lsn));
939 error = bread(hp->h_devvp, lsn, D_BSIZE, &bp);
940 if (error) {
941 brelse(bp);
942 return (error);
943 }
944
945 dp = (struct dirblk *) bp->b_data;
946 if (dp->d_magic != D_MAGIC) {
947 printf("hpfs_readdir: MAGIC DOESN'T MATCH\n");
948 brelse(bp);
949 return (EINVAL);
950 }
951
952 dep = D_DIRENT(dp);
953
954 if (olsn) {
955 dprintf(("[restore 0x%x] ", olsn));
956
957 while(!(dep->de_flag & DE_END) ) {
958 if((dep->de_flag & DE_DOWN) &&
959 (olsn == DE_DOWNLSN(dep)))
960 break;
961 dep = (hpfsdirent_t *)((caddr_t)dep + dep->de_reclen);
962 }
963
964 if((dep->de_flag & DE_DOWN) && (olsn == DE_DOWNLSN(dep))) {
965 if (dep->de_flag & DE_END)
966 goto blockdone;
967
968 if (!(dep->de_flag & DE_SPECIAL)) {
969 if (num <= cnum) {
970 if (uio->uio_resid < sizeof(struct dirent)) {
971 brelse(bp);
972 dprintf(("[resid] "));
973 goto readdone;
974 }
975
976 error = hpfs_de_uiomove(hpmp, dep, uio);
977 if (error) {
978 brelse (bp);
979 return (error);
980 }
981 ncookies++;
982
983 if (uio->uio_resid < sizeof(struct dirent)) {
984 brelse(bp);
985 dprintf(("[resid] "));
986 goto readdone;
987 }
988 }
989 cnum++;
990 }
991
992 dep = (hpfsdirent_t *)((caddr_t)dep + dep->de_reclen);
993 } else {
994 printf("hpfs_readdir: ERROR! oLSN not found\n");
995 brelse(bp);
996 return (EINVAL);
997 }
998 }
999
1000 olsn = 0;
1001
1002 while(!(dep->de_flag & DE_END)) {
1003 if(dep->de_flag & DE_DOWN) {
1004 lsn = DE_DOWNLSN(dep);
1005 brelse(bp);
1006 level++;
1007 goto dive;
1008 }
1009
1010 if (!(dep->de_flag & DE_SPECIAL)) {
1011 if (num <= cnum) {
1012 if (uio->uio_resid < sizeof(struct dirent)) {
1013 brelse(bp);
1014 dprintf(("[resid] "));
1015 goto readdone;
1016 }
1017
1018 error = hpfs_de_uiomove(hpmp, dep, uio);
1019 if (error) {
1020 brelse (bp);
1021 return (error);
1022 }
1023 ncookies++;
1024
1025 if (uio->uio_resid < sizeof(struct dirent)) {
1026 brelse(bp);
1027 dprintf(("[resid] "));
1028 goto readdone;
1029 }
1030 }
1031 cnum++;
1032 }
1033
1034 dep = (hpfsdirent_t *)((caddr_t)dep + dep->de_reclen);
1035 }
1036
1037 if(dep->de_flag & DE_DOWN) {
1038 dprintf(("[enddive] "));
1039 lsn = DE_DOWNLSN(dep);
1040 brelse(bp);
1041 level++;
1042 goto dive;
1043 }
1044
1045blockdone:
1046 dprintf(("[EOB] "));
1047 olsn = lsn;
1048 lsn = dp->d_parent;
1049 brelse(bp);
1050 level--;
1051
1052 dprintf(("[level %d] ", level));
1053
1054 if (level > 0)
1055 goto dive; /* undive really */
1056
1057 if (ap->a_eofflag) {
1058 dprintf(("[EOF] "));
1059 *ap->a_eofflag = 1;
1060 }
1061
1062readdone:
1063 dprintf(("[readdone]\n"));
1064 if (!error && ap->a_ncookies != NULL) {
1065 struct dirent* dpStart;
1066 struct dirent* dp;
1067#if defined(__DragonFly__)
1068 u_long *cookies;
1069 u_long *cookiep;
1070#else /* defined(__NetBSD__) */
1071 off_t *cookies;
1072 off_t *cookiep;
1073#endif
1074
1075 dprintf(("%d cookies, ",ncookies));
1076 if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
1077 panic("hpfs_readdir: unexpected uio from NFS server");
1078 dpStart = (struct dirent *)
1079 ((caddr_t)uio->uio_iov->iov_base -
1080 (uio->uio_offset - off));
1081#if defined(__DragonFly__)
1082 MALLOC(cookies, u_long *, ncookies * sizeof(u_long),
1083 M_TEMP, M_WAITOK);
1084#else /* defined(__NetBSD__) */
1085 MALLOC(cookies, off_t *, ncookies * sizeof(off_t),
1086 M_TEMP, M_WAITOK);
1087#endif
1088 for (dp = dpStart, cookiep = cookies, i=0;
1089 i < ncookies;
1090 dp = (struct dirent *)((caddr_t) dp + dp->d_reclen), i++) {
1091 off += dp->d_reclen;
1092 *cookiep++ = (u_int) off;
1093 }
1094 *ap->a_ncookies = ncookies;
1095 *ap->a_cookies = cookies;
1096 }
1097
1098 return (0);
1099}
1100
1101/*
1102 * hpfs_lookup(struct vnode *a_dvp, struct vnode **a_vpp,
1103 * struct componentname *a_cnp)
1104 */
1105int
1106hpfs_lookup(struct vop_lookup_args *ap)
1107{
1108 struct vnode *dvp = ap->a_dvp;
1109 struct hpfsnode *dhp = VTOHP(dvp);
1110 struct hpfsmount *hpmp = dhp->h_hpmp;
1111 struct componentname *cnp = ap->a_cnp;
1112 struct ucred *cred = cnp->cn_cred;
1113 int error;
1114 int nameiop = cnp->cn_nameiop;
1115 int flags = cnp->cn_flags;
1116 int lockparent = flags & CNP_LOCKPARENT;
1117#if HPFS_DEBUG
1118 int wantparent = flags & (CNP_LOCKPARENT | CNP_WANTPARENT);
1119#endif
1120 dprintf(("hpfs_lookup(0x%x, %s, %ld, %d, %d): \n",
1121 dhp->h_no, cnp->cn_nameptr, cnp->cn_namelen,
1122 lockparent, wantparent));
1123
1124 if (nameiop != NAMEI_CREATE && nameiop != NAMEI_DELETE && nameiop != NAMEI_LOOKUP) {
1125 printf("hpfs_lookup: LOOKUP, DELETE and CREATE are only supported\n");
1126 return (EOPNOTSUPP);
1127 }
1128
1129 error = VOP_ACCESS(dvp, VEXEC, cred, cnp->cn_td);
1130 if(error)
1131 return (error);
1132
1133 if( (cnp->cn_namelen == 1) &&
1134 !strncmp(cnp->cn_nameptr,".",1) ) {
1135 dprintf(("hpfs_lookup(0x%x,...): . faked\n",dhp->h_no));
1136
1137 vref(dvp);
1138 *ap->a_vpp = dvp;
1139
1140 return (0);
1141 } else if( (cnp->cn_namelen == 2) &&
1142 !strncmp(cnp->cn_nameptr,"..",2) && (flags & CNP_ISDOTDOT) ) {
1143 dprintf(("hpfs_lookup(0x%x,...): .. faked (0x%x)\n",
1144 dhp->h_no, dhp->h_fn.fn_parent));
1145
1146 VOP__UNLOCK(dvp,0,cnp->cn_td);
1147
1148 error = VFS_VGET(hpmp->hpm_mp,
1149 dhp->h_fn.fn_parent, ap->a_vpp);
1150 if(error) {
1151 VOP__LOCK(dvp, 0, cnp->cn_td);
1152 return(error);
1153 }
1154
1155 if( lockparent && (flags & CNP_ISLASTCN) &&
1156 (error = VOP__LOCK(dvp, 0, cnp->cn_td)) ) {
1157 vput( *(ap->a_vpp) );
1158 return (error);
1159 }
1160 return (error);
1161 } else {
1162 struct buf *bp;
1163 struct hpfsdirent *dep;
1164 struct hpfsnode *hp;
1165
1166 error = hpfs_genlookupbyname(dhp,
1167 cnp->cn_nameptr, cnp->cn_namelen, &bp, &dep);
1168 if (error) {
1169 if ((error == ENOENT) && (flags & CNP_ISLASTCN) &&
1170 (nameiop == NAMEI_CREATE || nameiop == NAMEI_RENAME)) {
1171 if(!lockparent)
1172 VOP__UNLOCK(dvp, 0, cnp->cn_td);
1173 cnp->cn_flags |= CNP_SAVENAME;
1174 return (EJUSTRETURN);
1175 }
1176
1177 return (error);
1178 }
1179
1180 dprintf(("hpfs_lookup: fnode: 0x%x, CPID: 0x%x\n",
1181 dep->de_fnode, dep->de_cpid));
1182
1183 if (nameiop == NAMEI_DELETE && (flags & CNP_ISLASTCN)) {
1184 error = VOP_ACCESS(dvp, VWRITE, cred, cnp->cn_td);
1185 if (error) {
1186 brelse(bp);
1187 return (error);
1188 }
1189 }
1190
1191 if (dhp->h_no == dep->de_fnode) {
1192 brelse(bp);
1193 vref(dvp);
1194 *ap->a_vpp = dvp;
1195 return (0);
1196 }
1197
1198 error = VFS_VGET(hpmp->hpm_mp, dep->de_fnode, ap->a_vpp);
1199 if (error) {
1200 printf("hpfs_lookup: VFS_VGET FAILED %d\n", error);
1201 brelse(bp);
1202 return(error);
1203 }
1204
1205 hp = VTOHP(*ap->a_vpp);
1206
1207 hp->h_mtime = dep->de_mtime;
1208 hp->h_ctime = dep->de_ctime;
1209 hp->h_atime = dep->de_atime;
1210 bcopy(dep->de_name, hp->h_name, dep->de_namelen);
1211 hp->h_name[dep->de_namelen] = '\0';
1212 hp->h_namelen = dep->de_namelen;
1213 hp->h_flag |= H_PARVALID;
1214
1215 brelse(bp);
1216
1217 if(!lockparent || !(flags & CNP_ISLASTCN))
1218 VOP__UNLOCK(dvp, 0, cnp->cn_td);
1219 if ((flags & CNP_MAKEENTRY) &&
1220 (!(flags & CNP_ISLASTCN) ||
1221 (nameiop != NAMEI_DELETE && nameiop != NAMEI_CREATE)))
1222 cache_enter(dvp, *ap->a_vpp, cnp);
1223 }
1224 return (error);
1225}
1226
1227/*
1228 * hpfs_remove(struct vnode *a_dvp, struct vnode *a_vp,
1229 * struct componentname *a_cnp)
1230 */
1231int
1232hpfs_remove(struct vop_remove_args *ap)
1233{
1234 int error;
1235
1236 dprintf(("hpfs_remove(0x%x, %s, %ld): \n", VTOHP(ap->a_vp)->h_no,
1237 ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen));
1238
1239 if (ap->a_vp->v_type == VDIR)
1240 return (EPERM);
1241
1242 error = hpfs_removefnode (ap->a_dvp, ap->a_vp, ap->a_cnp);
1243 return (error);
1244}
1245
1246/*
1247 * hpfs_create(struct vnode *a_dvp, struct vnode **a_vpp,
1248 * struct componentname *a_cnp, struct vattr *a_vap)
1249 */
1250int
1251hpfs_create(struct vop_create_args *ap)
1252{
1253 int error;
1254
1255 dprintf(("hpfs_create(0x%x, %s, %ld): \n", VTOHP(ap->a_dvp)->h_no,
1256 ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen));
1257
1258 if (!(ap->a_cnp->cn_flags & CNP_HASBUF))
1259 panic ("hpfs_create: no name\n");
1260
1261 error = hpfs_makefnode (ap->a_dvp, ap->a_vpp, ap->a_cnp, ap->a_vap);
1262
1263 return (error);
1264}
1265
1266/*
1267 * Return POSIX pathconf information applicable to NTFS filesystem
1268 *
1269 * hpfs_pathconf(struct vnode *a_vp, int a_name, t *a_retval)
1270 */
1271int
1272hpfs_pathconf(struct vop_pathconf_args *ap)
1273{
1274 switch (ap->a_name) {
1275 case _PC_LINK_MAX:
1276 *ap->a_retval = 1;
1277 return (0);
1278 case _PC_NAME_MAX:
1279 *ap->a_retval = HPFS_MAXFILENAME;
1280 return (0);
1281 case _PC_PATH_MAX:
1282 *ap->a_retval = PATH_MAX;
1283 return (0);
1284 case _PC_CHOWN_RESTRICTED:
1285 *ap->a_retval = 1;
1286 return (0);
1287 case _PC_NO_TRUNC:
1288 *ap->a_retval = 0;
1289 return (0);
1290#if defined(__NetBSD__)
1291 case _PC_SYNC_IO:
1292 *ap->a_retval = 1;
1293 return (0);
1294 case _PC_FILESIZEBITS:
1295 *ap->a_retval = 32;
1296 return (0);
1297#endif
1298 default:
1299 return (EINVAL);
1300 }
1301 /* NOTREACHED */
1302}
1303
1304
1305/*
1306 * Global vfs data structures
1307 */
1308#if defined(__DragonFly__)
1309struct vnodeopv_entry_desc hpfs_vnodeop_entries[] = {
1310 { &vop_default_desc, (void *)vop_defaultop },
1311
1312 { &vop_getattr_desc, (void *)hpfs_getattr },
1313 { &vop_setattr_desc, (void *)hpfs_setattr },
1314 { &vop_inactive_desc, (void *)hpfs_inactive },
1315 { &vop_reclaim_desc, (void *)hpfs_reclaim },
1316 { &vop_print_desc, (void *)hpfs_print },
1317 { &vop_create_desc, (void *)hpfs_create },
1318 { &vop_remove_desc, (void *)hpfs_remove },
1319 { &vop_islocked_desc, (void *)vop_stdislocked },
1320 { &vop_unlock_desc, (void *)vop_stdunlock },
1321 { &vop_lock_desc, (void *)vop_stdlock },
1322 { &vop_cachedlookup_desc, (void *)hpfs_lookup },
1323 { &vop_lookup_desc, (void *)vfs_cache_lookup },
1324 { &vop_access_desc, (void *)hpfs_access },
1325 { &vop_close_desc, (void *)hpfs_close },
1326 { &vop_open_desc, (void *)hpfs_open },
1327 { &vop_readdir_desc, (void *)hpfs_readdir },
1328 { &vop_fsync_desc, (void *)hpfs_fsync },
1329 { &vop_bmap_desc, (void *)hpfs_bmap },
1330 { &vop_getpages_desc, (void *) hpfs_getpages },
1331 { &vop_putpages_desc, (void *) hpfs_putpages },
1332 { &vop_strategy_desc, (void *)hpfs_strategy },
1333 { &vop_bwrite_desc, (void *)vop_stdbwrite },
1334 { &vop_read_desc, (void *)hpfs_read },
1335 { &vop_write_desc, (void *)hpfs_write },
1336 { &vop_ioctl_desc, (void *)hpfs_ioctl },
1337 { &vop_pathconf_desc, (void *)hpfs_pathconf },
1338 { NULL, NULL }
1339};
1340
1341#else /* defined(__NetBSD__) */
1342struct vnodeopv_entry_desc ntfs_vnodeop_entries[] = {
1343 { &vop_default_desc, (void *) genfs_badop }, /* XXX */
1344 { &vop_lookup_desc, (void *) hpfs_lookup }, /* lookup */
1345 { &vop_create_desc, genfs_eopnotsupp }, /* create */
1346 { &vop_mknod_desc, genfs_eopnotsupp }, /* mknod */
1347 { &vop_open_desc, (void *) hpfs_open }, /* open */
1348 { &vop_close_desc,(void *) hpfs_close }, /* close */
1349 { &vop_access_desc, (void *) hpfs_access }, /* access */
1350 { &vop_getattr_desc, (void *) hpfs_getattr }, /* getattr */
1351 { &vop_setattr_desc, genfs_eopnotsupp }, /* setattr */
1352 { &vop_read_desc, (void *) hpfs_read }, /* read */
1353 { &vop_write_desc, (void *) hpfs_write }, /* write */
1354 { &vop_lease_desc, genfs_lease_check }, /* lease */
1355 { &vop_fcntl_desc, genfs_fcntl }, /* fcntl */
1356 { &vop_ioctl_desc, genfs_enoioctl }, /* ioctl */
1357 { &vop_poll_desc, genfs_poll }, /* poll */
1358 { &vop_revoke_desc, genfs_revoke }, /* revoke */
1359 { &vop_mmap_desc, genfs_eopnotsupp }, /* mmap */
1360 { &vop_fsync_desc, genfs_fsync }, /* fsync */
1361 { &vop_seek_desc, genfs_seek }, /* seek */
1362 { &vop_remove_desc, genfs_eopnotsupp }, /* remove */
1363 { &vop_link_desc, genfs_eopnotsupp }, /* link */
1364 { &vop_rename_desc, genfs_eopnotsupp }, /* rename */
1365 { &vop_mkdir_desc, genfs_eopnotsupp }, /* mkdir */
1366 { &vop_rmdir_desc, genfs_eopnotsupp }, /* rmdir */
1367 { &vop_symlink_desc, genfs_eopnotsupp }, /* symlink */
1368 { &vop_readdir_desc, (void *) hpfs_readdir }, /* readdir */
1369 { &vop_readlink_desc, genfs_eopnotsupp }, /* readlink */
1370 { &vop_abortop_desc, genfs_abortop }, /* abortop */
1371 { &vop_inactive_desc, (void *) hpfs_inactive }, /* inactive */
1372 { &vop_reclaim_desc, (void *) hpfs_reclaim }, /* reclaim */
1373 { &vop_lock_desc, genfs_lock }, /* lock */
1374 { &vop_unlock_desc, genfs_unlock }, /* unlock */
1375 { &vop_bmap_desc, (void *) hpfs_bmap }, /* bmap */
1376 { &vop_strategy_desc, (void *) hpfs_strategy }, /* strategy */
1377 { &vop_print_desc, (void *) hpfs_print }, /* print */
1378 { &vop_islocked_desc, genfs_islocked }, /* islocked */
1379 { &vop_pathconf_desc, hpfs_pathconf }, /* pathconf */
1380 { &vop_advlock_desc, genfs_nullop }, /* advlock */
1381 { &vop_blkatoff_desc, genfs_eopnotsupp }, /* blkatoff */
1382 { &vop_valloc_desc, genfs_eopnotsupp }, /* valloc */
1383 { &vop_reallocblks_desc, genfs_eopnotsupp }, /* reallocblks */
1384 { &vop_vfree_desc, genfs_eopnotsupp }, /* vfree */
1385 { &vop_truncate_desc, genfs_eopnotsupp }, /* truncate */
1386 { &vop_update_desc, genfs_eopnotsupp }, /* update */
1387 { &vop_bwrite_desc, vn_bwrite }, /* bwrite */
1388 { (struct vnodeop_desc *)NULL, (int (*) (void *))NULL }
1389};
1390
1391#endif