1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
|
/* $OpenBSD: vfs_vops.c,v 1.32 2021/10/19 06:26:09 semarie Exp $ */
/*
* Copyright (c) 2010 Thordur I. Bjornsson <thib@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/vnode.h>
#include <sys/unistd.h>
#include <sys/systm.h>
#ifdef VFSLCKDEBUG
#define ASSERT_VP_ISLOCKED(vp) do { \
struct vnode *_vp = (vp); \
int r; \
if (_vp->v_op->vop_islocked == nullop) \
break; \
if ((r = VOP_ISLOCKED(_vp)) != LK_EXCLUSIVE) { \
VOP_PRINT(_vp); \
panic("%s: vp not locked, vp %p, %d", __func__, _vp, r);\
} \
} while (0)
#else
#define ASSERT_VP_ISLOCKED(vp) /* nothing */
#endif
int
VOP_ISLOCKED(struct vnode *vp)
{
struct vop_islocked_args a;
a.a_vp = vp;
if (vp->v_op->vop_islocked == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_islocked)(&a));
}
int
VOP_LOOKUP(struct vnode *dvp, struct vnode **vpp,
struct componentname *cnp)
{
struct vop_lookup_args a;
a.a_dvp = dvp;
a.a_vpp = vpp;
a.a_cnp = cnp;
if (dvp->v_op->vop_lookup == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_lookup)(&a));
}
int
VOP_CREATE(struct vnode *dvp, struct vnode **vpp,
struct componentname *cnp, struct vattr *vap)
{
struct vop_create_args a;
a.a_dvp = dvp;
a.a_vpp = vpp;
a.a_cnp = cnp;
a.a_vap = vap;
ASSERT_VP_ISLOCKED(dvp);
if (dvp->v_op->vop_create == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_create)(&a));
}
int
VOP_MKNOD(struct vnode *dvp, struct vnode **vpp,
struct componentname *cnp, struct vattr *vap)
{
struct vop_mknod_args a;
a.a_dvp = dvp;
a.a_vpp = vpp;
a.a_cnp = cnp;
a.a_vap = vap;
ASSERT_VP_ISLOCKED(dvp);
if (dvp->v_op->vop_mknod == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_mknod)(&a));
}
int
VOP_OPEN(struct vnode *vp, int mode, struct ucred *cred, struct proc *p)
{
struct vop_open_args a;
a.a_vp = vp;
a.a_mode = mode;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == curproc);
if (vp->v_op->vop_open == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_open)(&a));
}
int
VOP_CLOSE(struct vnode *vp, int fflag, struct ucred *cred, struct proc *p)
{
struct vop_close_args a;
a.a_vp = vp;
a.a_fflag = fflag;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == NULL || p == curproc);
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_close == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_close)(&a));
}
int
VOP_ACCESS(struct vnode *vp, int mode, struct ucred *cred, struct proc *p)
{
struct vop_access_args a;
a.a_vp = vp;
a.a_mode = mode;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == curproc);
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_access == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_access)(&a));
}
int
VOP_GETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred,
struct proc *p)
{
struct vop_getattr_args a;
a.a_vp = vp;
a.a_vap = vap;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == curproc);
if (vp->v_op->vop_getattr == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_getattr)(&a));
}
int
VOP_SETATTR(struct vnode *vp, struct vattr *vap, struct ucred *cred,
struct proc *p)
{
struct vop_setattr_args a;
a.a_vp = vp;
a.a_vap = vap;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == curproc);
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_setattr == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_setattr)(&a));
}
int
VOP_READ(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *cred)
{
struct vop_read_args a;
a.a_vp = vp;
a.a_uio = uio;
a.a_ioflag = ioflag;
a.a_cred = cred;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_read == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_read)(&a));
}
int
VOP_WRITE(struct vnode *vp, struct uio *uio, int ioflag,
struct ucred *cred)
{
struct vop_write_args a;
a.a_vp = vp;
a.a_uio = uio;
a.a_ioflag = ioflag;
a.a_cred = cred;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_write == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_write)(&a));
}
int
VOP_IOCTL(struct vnode *vp, u_long command, void *data, int fflag,
struct ucred *cred, struct proc *p)
{
struct vop_ioctl_args a;
a.a_vp = vp;
a.a_command = command;
a.a_data = data;
a.a_fflag = fflag;
a.a_cred = cred;
a.a_p = p;
KASSERT(p == curproc);
if (vp->v_op->vop_ioctl == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_ioctl)(&a));
}
int
VOP_POLL(struct vnode *vp, int fflag, int events, struct proc *p)
{
struct vop_poll_args a;
a.a_vp = vp;
a.a_fflag = fflag;
a.a_events = events;
a.a_p = p;
KASSERT(p == curproc);
if (vp->v_op->vop_poll == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_poll)(&a));
}
int
VOP_KQFILTER(struct vnode *vp, int fflag, struct knote *kn)
{
struct vop_kqfilter_args a;
a.a_vp = vp;
a.a_fflag = fflag;
a.a_kn = kn;
if (vp->v_op->vop_kqfilter == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_kqfilter)(&a));
}
int
VOP_REVOKE(struct vnode *vp, int flags)
{
struct vop_revoke_args a;
a.a_vp = vp;
a.a_flags = flags;
if (vp->v_op->vop_revoke == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_revoke)(&a));
}
int
VOP_FSYNC(struct vnode *vp, struct ucred *cred, int waitfor,
struct proc *p)
{
int r, s;
struct vop_fsync_args a;
a.a_vp = vp;
a.a_cred = cred;
a.a_waitfor = waitfor;
a.a_p = p;
KASSERT(p == curproc);
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_fsync == NULL)
return (EOPNOTSUPP);
r = (vp->v_op->vop_fsync)(&a);
s = splbio();
if (r == 0 && vp->v_bioflag & VBIOERROR)
r = EIO;
splx(s);
return r;
}
int
VOP_REMOVE(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
{
struct vop_remove_args a;
a.a_dvp = dvp;
a.a_vp = vp;
a.a_cnp = cnp;
ASSERT_VP_ISLOCKED(dvp);
ASSERT_VP_ISLOCKED(vp);
if (dvp->v_op->vop_remove == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_remove)(&a));
}
int
VOP_LINK(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
{
struct vop_link_args a;
a.a_dvp = dvp;
a.a_vp = vp;
a.a_cnp = cnp;
ASSERT_VP_ISLOCKED(dvp);
if (dvp->v_op->vop_link == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_link)(&a));
}
int
VOP_RENAME(struct vnode *fdvp, struct vnode *fvp,
struct componentname *fcnp, struct vnode *tdvp, struct vnode *tvp,
struct componentname *tcnp)
{
struct vop_rename_args a;
a.a_fdvp = fdvp;
a.a_fvp = fvp;
a.a_fcnp = fcnp;
a.a_tdvp = tdvp;
a.a_tvp = tvp;
a.a_tcnp = tcnp;
ASSERT_VP_ISLOCKED(tdvp);
if (fdvp->v_op->vop_rename == NULL)
return (EOPNOTSUPP);
return ((fdvp->v_op->vop_rename)(&a));
}
int
VOP_MKDIR(struct vnode *dvp, struct vnode **vpp,
struct componentname *cnp, struct vattr *vap)
{
struct vop_mkdir_args a;
a.a_dvp = dvp;
a.a_vpp = vpp;
a.a_cnp = cnp;
a.a_vap = vap;
ASSERT_VP_ISLOCKED(dvp);
if (dvp->v_op->vop_mkdir == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_mkdir)(&a));
}
int
VOP_RMDIR(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
{
struct vop_rmdir_args a;
a.a_dvp = dvp;
a.a_vp = vp;
a.a_cnp = cnp;
ASSERT_VP_ISLOCKED(dvp);
ASSERT_VP_ISLOCKED(vp);
KASSERT(dvp != vp);
if (dvp->v_op->vop_rmdir == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_rmdir)(&a));
}
int
VOP_SYMLINK(struct vnode *dvp, struct vnode **vpp,
struct componentname *cnp, struct vattr *vap, char *target)
{
struct vop_symlink_args a;
a.a_dvp = dvp;
a.a_vpp = vpp;
a.a_cnp = cnp;
a.a_vap = vap;
a.a_target = target;
ASSERT_VP_ISLOCKED(dvp);
if (dvp->v_op->vop_symlink == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_symlink)(&a));
}
int
VOP_READDIR(struct vnode *vp, struct uio *uio, struct ucred *cred,
int *eofflag)
{
struct vop_readdir_args a;
a.a_vp = vp;
a.a_uio = uio;
a.a_cred = cred;
a.a_eofflag = eofflag;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_readdir == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_readdir)(&a));
}
int
VOP_READLINK(struct vnode *vp, struct uio *uio, struct ucred *cred)
{
struct vop_readlink_args a;
a.a_vp = vp;
a.a_uio = uio;
a.a_cred = cred;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_readlink == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_readlink)(&a));
}
int
VOP_ABORTOP(struct vnode *dvp, struct componentname *cnp)
{
struct vop_abortop_args a;
a.a_dvp = dvp;
a.a_cnp = cnp;
if (dvp->v_op->vop_abortop == NULL)
return (EOPNOTSUPP);
return ((dvp->v_op->vop_abortop)(&a));
}
int
VOP_INACTIVE(struct vnode *vp, struct proc *p)
{
struct vop_inactive_args a;
a.a_vp = vp;
a.a_p = p;
KASSERT(p == curproc);
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_inactive == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_inactive)(&a));
}
int
VOP_RECLAIM(struct vnode *vp, struct proc *p)
{
struct vop_reclaim_args a;
a.a_vp = vp;
a.a_p = p;
KASSERT(p == curproc);
if (vp->v_op->vop_reclaim == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_reclaim)(&a));
}
int
VOP_LOCK(struct vnode *vp, int flags)
{
struct vop_lock_args a;
a.a_vp = vp;
a.a_flags = flags;
MUTEX_ASSERT_UNLOCKED(&vnode_mtx);
if (vp->v_op->vop_lock == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_lock)(&a));
}
int
VOP_UNLOCK(struct vnode *vp)
{
struct vop_unlock_args a;
a.a_vp = vp;
if (vp->v_op->vop_unlock == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_unlock)(&a));
}
int
VOP_BMAP(struct vnode *vp, daddr_t bn, struct vnode **vpp,
daddr_t *bnp, int *runp)
{
struct vop_bmap_args a;
a.a_vp = vp;
a.a_bn = bn;
a.a_vpp = vpp;
a.a_bnp = bnp;
a.a_runp = runp;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_bmap == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_bmap)(&a));
}
int
VOP_PRINT(struct vnode *vp)
{
struct vop_print_args a;
a.a_vp = vp;
if (vp->v_op->vop_print == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_print)(&a));
}
int
VOP_PATHCONF(struct vnode *vp, int name, register_t *retval)
{
struct vop_pathconf_args a;
/*
* Handle names that are constant across filesystem
*/
switch (name) {
case _PC_PATH_MAX:
*retval = PATH_MAX;
return (0);
case _PC_PIPE_BUF:
*retval = PIPE_BUF;
return (0);
case _PC_ASYNC_IO:
case _PC_PRIO_IO:
case _PC_SYNC_IO:
*retval = 0;
return (0);
}
a.a_vp = vp;
a.a_name = name;
a.a_retval = retval;
ASSERT_VP_ISLOCKED(vp);
if (vp->v_op->vop_pathconf == NULL)
return (EOPNOTSUPP);
return ((vp->v_op->vop_pathconf)(&a));
}
int
VOP_ADVLOCK(struct vnode *vp, void *id, int op, struct flock *fl, int flags)
{
struct vop_advlock_args a;
a.a_vp = vp;
a.a_id = id;
a.a_op = op;
a.a_fl = fl;
a.a_flags = flags;
if (vp->v_op->vop_advlock == NULL)
return (EOPNOTSUPP);
return (vp->v_op->vop_advlock)(&a);
}
int
VOP_STRATEGY(struct buf *bp)
{
struct vop_strategy_args a;
a.a_bp = bp;
if ((ISSET(bp->b_flags, B_BC)) && (!ISSET(bp->b_flags, B_DMA)))
panic("Non dma reachable buffer passed to VOP_STRATEGY");
if (bp->b_vp->v_op->vop_strategy == NULL)
return (EOPNOTSUPP);
return ((bp->b_vp->v_op->vop_strategy)(&a));
}
int
VOP_BWRITE(struct buf *bp)
{
struct vop_bwrite_args a;
a.a_bp = bp;
if (bp->b_vp->v_op->vop_bwrite == NULL)
return (EOPNOTSUPP);
return ((bp->b_vp->v_op->vop_bwrite)(&a));
}
|