vfs_vnops.c revision 1.88 1 1.88 christos /* $NetBSD: vfs_vnops.c,v 1.88 2005/05/29 22:24:15 christos Exp $ */
2 1.12 cgd
3 1.10 cgd /*
4 1.11 mycroft * Copyright (c) 1982, 1986, 1989, 1993
5 1.11 mycroft * The Regents of the University of California. All rights reserved.
6 1.10 cgd * (c) UNIX System Laboratories, Inc.
7 1.10 cgd * All or some portions of this file are derived from material licensed
8 1.10 cgd * to the University of California by American Telephone and Telegraph
9 1.10 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 1.10 cgd * the permission of UNIX System Laboratories, Inc.
11 1.10 cgd *
12 1.10 cgd * Redistribution and use in source and binary forms, with or without
13 1.10 cgd * modification, are permitted provided that the following conditions
14 1.10 cgd * are met:
15 1.10 cgd * 1. Redistributions of source code must retain the above copyright
16 1.10 cgd * notice, this list of conditions and the following disclaimer.
17 1.10 cgd * 2. Redistributions in binary form must reproduce the above copyright
18 1.10 cgd * notice, this list of conditions and the following disclaimer in the
19 1.10 cgd * documentation and/or other materials provided with the distribution.
20 1.73 agc * 3. Neither the name of the University nor the names of its contributors
21 1.10 cgd * may be used to endorse or promote products derived from this software
22 1.10 cgd * without specific prior written permission.
23 1.10 cgd *
24 1.10 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.10 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.10 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.10 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.10 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.10 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.10 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.10 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.10 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.10 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.10 cgd * SUCH DAMAGE.
35 1.10 cgd *
36 1.28 fvdl * @(#)vfs_vnops.c 8.14 (Berkeley) 6/15/95
37 1.10 cgd */
38 1.52 lukem
39 1.52 lukem #include <sys/cdefs.h>
40 1.88 christos __KERNEL_RCSID(0, "$NetBSD: vfs_vnops.c,v 1.88 2005/05/29 22:24:15 christos Exp $");
41 1.26 mrg
42 1.27 thorpej #include "fs_union.h"
43 1.10 cgd
44 1.10 cgd #include <sys/param.h>
45 1.10 cgd #include <sys/systm.h>
46 1.10 cgd #include <sys/kernel.h>
47 1.10 cgd #include <sys/file.h>
48 1.10 cgd #include <sys/stat.h>
49 1.10 cgd #include <sys/buf.h>
50 1.10 cgd #include <sys/proc.h>
51 1.77 hannken #include <sys/malloc.h>
52 1.10 cgd #include <sys/mount.h>
53 1.10 cgd #include <sys/namei.h>
54 1.10 cgd #include <sys/vnode.h>
55 1.10 cgd #include <sys/ioctl.h>
56 1.10 cgd #include <sys/tty.h>
57 1.21 mycroft #include <sys/poll.h>
58 1.11 mycroft
59 1.77 hannken #include <miscfs/specfs/specdev.h>
60 1.77 hannken
61 1.25 mrg #include <uvm/uvm_extern.h>
62 1.25 mrg
63 1.28 fvdl #ifdef UNION
64 1.65 jdolecek #include <fs/union/union.h>
65 1.28 fvdl #endif
66 1.64 jdolecek
67 1.66 jdolecek #if defined(LKM) || defined(UNION)
68 1.72 fvdl int (*vn_union_readdir_hook) (struct vnode **, struct file *, struct proc *);
69 1.66 jdolecek #endif
70 1.66 jdolecek
71 1.64 jdolecek #ifdef VERIFIED_EXEC
72 1.58 blymn #include <sys/verified_exec.h>
73 1.64 jdolecek #endif
74 1.28 fvdl
75 1.56 gmcgarry static int vn_read(struct file *fp, off_t *offset, struct uio *uio,
76 1.56 gmcgarry struct ucred *cred, int flags);
77 1.56 gmcgarry static int vn_write(struct file *fp, off_t *offset, struct uio *uio,
78 1.56 gmcgarry struct ucred *cred, int flags);
79 1.72 fvdl static int vn_closefile(struct file *fp, struct proc *p);
80 1.72 fvdl static int vn_poll(struct file *fp, int events, struct proc *p);
81 1.72 fvdl static int vn_fcntl(struct file *fp, u_int com, void *data, struct proc *p);
82 1.72 fvdl static int vn_statfile(struct file *fp, struct stat *sb, struct proc *p);
83 1.72 fvdl static int vn_ioctl(struct file *fp, u_long com, void *data, struct proc *p);
84 1.48 jdolecek
85 1.83 christos const struct fileops vnops = {
86 1.48 jdolecek vn_read, vn_write, vn_ioctl, vn_fcntl, vn_poll,
87 1.57 jdolecek vn_statfile, vn_closefile, vn_kqfilter
88 1.48 jdolecek };
89 1.10 cgd
90 1.10 cgd /*
91 1.10 cgd * Common code for vnode open operations.
92 1.10 cgd * Check permissions, and call the VOP_OPEN or VOP_CREATE routine.
93 1.10 cgd */
94 1.20 christos int
95 1.18 mycroft vn_open(ndp, fmode, cmode)
96 1.41 augustss struct nameidata *ndp;
97 1.10 cgd int fmode, cmode;
98 1.10 cgd {
99 1.41 augustss struct vnode *vp;
100 1.75 hannken struct mount *mp;
101 1.72 fvdl struct proc *p = ndp->ni_cnd.cn_proc;
102 1.72 fvdl struct ucred *cred = p->p_ucred;
103 1.19 mycroft struct vattr va;
104 1.10 cgd int error;
105 1.87 blymn #ifdef NEVER /* for the moment I am not convinced this is needed since NDINIT should do this lookup...XXXX blymn */
106 1.87 blymn char pathbuf[MAXPATHLEN];
107 1.87 blymn unsigned pathlen;
108 1.87 blymn
109 1.87 blymn if (ndp->ni_segflg == UIO_SYSSPACE)
110 1.87 blymn error = copystr(pathbuf, ndp->ni_dirp, MAXPATHLEN, &pathlen);
111 1.87 blymn else
112 1.87 blymn error = copyinstr(pathbuf, ndp->ni_dirp,MAXPATHLEN, &pathlen);
113 1.58 blymn #endif
114 1.75 hannken
115 1.75 hannken restart:
116 1.10 cgd if (fmode & O_CREAT) {
117 1.11 mycroft ndp->ni_cnd.cn_nameiop = CREATE;
118 1.11 mycroft ndp->ni_cnd.cn_flags = LOCKPARENT | LOCKLEAF;
119 1.38 bouyer if ((fmode & O_EXCL) == 0 &&
120 1.59 christos ((fmode & O_NOFOLLOW) == 0))
121 1.11 mycroft ndp->ni_cnd.cn_flags |= FOLLOW;
122 1.20 christos if ((error = namei(ndp)) != 0)
123 1.10 cgd return (error);
124 1.10 cgd if (ndp->ni_vp == NULL) {
125 1.19 mycroft VATTR_NULL(&va);
126 1.19 mycroft va.va_type = VREG;
127 1.19 mycroft va.va_mode = cmode;
128 1.28 fvdl if (fmode & O_EXCL)
129 1.28 fvdl va.va_vaflags |= VA_EXCLUSIVE;
130 1.75 hannken if (vn_start_write(ndp->ni_dvp, &mp, V_NOWAIT) != 0) {
131 1.75 hannken VOP_ABORTOP(ndp->ni_dvp, &ndp->ni_cnd);
132 1.75 hannken vput(ndp->ni_dvp);
133 1.75 hannken if ((error = vn_start_write(NULL, &mp,
134 1.75 hannken V_WAIT | V_SLEEPONLY | V_PCATCH)) != 0)
135 1.75 hannken return (error);
136 1.75 hannken goto restart;
137 1.75 hannken }
138 1.72 fvdl VOP_LEASE(ndp->ni_dvp, p, cred, LEASE_WRITE);
139 1.20 christos error = VOP_CREATE(ndp->ni_dvp, &ndp->ni_vp,
140 1.20 christos &ndp->ni_cnd, &va);
141 1.75 hannken vn_finished_write(mp, 0);
142 1.20 christos if (error)
143 1.10 cgd return (error);
144 1.10 cgd fmode &= ~O_TRUNC;
145 1.10 cgd vp = ndp->ni_vp;
146 1.10 cgd } else {
147 1.11 mycroft VOP_ABORTOP(ndp->ni_dvp, &ndp->ni_cnd);
148 1.10 cgd if (ndp->ni_dvp == ndp->ni_vp)
149 1.10 cgd vrele(ndp->ni_dvp);
150 1.10 cgd else
151 1.10 cgd vput(ndp->ni_dvp);
152 1.10 cgd ndp->ni_dvp = NULL;
153 1.10 cgd vp = ndp->ni_vp;
154 1.10 cgd if (fmode & O_EXCL) {
155 1.10 cgd error = EEXIST;
156 1.38 bouyer goto bad;
157 1.38 bouyer }
158 1.10 cgd fmode &= ~O_CREAT;
159 1.10 cgd }
160 1.10 cgd } else {
161 1.11 mycroft ndp->ni_cnd.cn_nameiop = LOOKUP;
162 1.74 cb ndp->ni_cnd.cn_flags = LOCKLEAF;
163 1.74 cb if ((fmode & O_NOFOLLOW) == 0)
164 1.74 cb ndp->ni_cnd.cn_flags |= FOLLOW;
165 1.20 christos if ((error = namei(ndp)) != 0)
166 1.10 cgd return (error);
167 1.10 cgd vp = ndp->ni_vp;
168 1.10 cgd }
169 1.10 cgd if (vp->v_type == VSOCK) {
170 1.10 cgd error = EOPNOTSUPP;
171 1.74 cb goto bad;
172 1.74 cb }
173 1.74 cb if (ndp->ni_vp->v_type == VLNK) {
174 1.74 cb error = EFTYPE;
175 1.10 cgd goto bad;
176 1.10 cgd }
177 1.58 blymn
178 1.58 blymn #ifdef VERIFIED_EXEC
179 1.72 fvdl if ((error = VOP_GETATTR(vp, &va, cred, p)) != 0)
180 1.58 blymn goto bad;
181 1.58 blymn #endif
182 1.58 blymn
183 1.10 cgd if ((fmode & O_CREAT) == 0) {
184 1.58 blymn #ifdef VERIFIED_EXEC
185 1.87 blymn /* XXX may need pathbuf instead */
186 1.87 blymn if ((vp->v_type == VREG) &&
187 1.87 blymn ((error = veriexec_verify(p, vp, &va, ndp->ni_dirp,
188 1.87 blymn VERIEXEC_FILE)) != 0))
189 1.87 blymn goto bad;
190 1.58 blymn #endif
191 1.10 cgd if (fmode & FREAD) {
192 1.72 fvdl if ((error = VOP_ACCESS(vp, VREAD, cred, p)) != 0)
193 1.10 cgd goto bad;
194 1.58 blymn
195 1.10 cgd }
196 1.87 blymn
197 1.10 cgd if (fmode & (FWRITE | O_TRUNC)) {
198 1.10 cgd if (vp->v_type == VDIR) {
199 1.10 cgd error = EISDIR;
200 1.10 cgd goto bad;
201 1.10 cgd }
202 1.20 christos if ((error = vn_writechk(vp)) != 0 ||
203 1.72 fvdl (error = VOP_ACCESS(vp, VWRITE, cred, p)) != 0)
204 1.10 cgd goto bad;
205 1.58 blymn #ifdef VERIFIED_EXEC
206 1.58 blymn /*
207 1.58 blymn * If file has a fingerprint then
208 1.58 blymn * deny the write request, otherwise
209 1.58 blymn * invalidate the status so we don't
210 1.58 blymn * keep checking for the file having
211 1.58 blymn * a fingerprint.
212 1.58 blymn */
213 1.87 blymn if ((vp->fp_status == FINGERPRINT_VALID) ||
214 1.87 blymn (vp->fp_status == FINGERPRINT_INDIRECT)) {
215 1.58 blymn printf(
216 1.58 blymn "writing to fingerprinted file for dev %lu, file %lu\n",
217 1.58 blymn va.va_fsid, va.va_fileid);
218 1.87 blymn if (securelevel >= 2) {
219 1.58 blymn error = EPERM;
220 1.58 blymn goto bad;
221 1.58 blymn } else {
222 1.87 blymn vp->fp_status = FINGERPRINT_NOMATCH;
223 1.58 blymn }
224 1.58 blymn }
225 1.58 blymn #endif
226 1.10 cgd }
227 1.10 cgd }
228 1.87 blymn
229 1.10 cgd if (fmode & O_TRUNC) {
230 1.28 fvdl VOP_UNLOCK(vp, 0); /* XXX */
231 1.75 hannken if ((error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH)) != 0) {
232 1.75 hannken vput(vp);
233 1.75 hannken return (error);
234 1.75 hannken }
235 1.72 fvdl VOP_LEASE(vp, p, cred, LEASE_WRITE);
236 1.28 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); /* XXX */
237 1.19 mycroft VATTR_NULL(&va);
238 1.19 mycroft va.va_size = 0;
239 1.75 hannken error = VOP_SETATTR(vp, &va, cred, p);
240 1.75 hannken vn_finished_write(mp, 0);
241 1.75 hannken if (error != 0)
242 1.10 cgd goto bad;
243 1.10 cgd }
244 1.72 fvdl if ((error = VOP_OPEN(vp, fmode, cred, p)) != 0)
245 1.10 cgd goto bad;
246 1.45 chs if (vp->v_type == VREG &&
247 1.45 chs uvn_attach(vp, fmode & FWRITE ? VM_PROT_WRITE : 0) == NULL) {
248 1.45 chs error = EIO;
249 1.45 chs goto bad;
250 1.45 chs }
251 1.10 cgd if (fmode & FWRITE)
252 1.10 cgd vp->v_writecount++;
253 1.45 chs
254 1.10 cgd return (0);
255 1.10 cgd bad:
256 1.10 cgd vput(vp);
257 1.10 cgd return (error);
258 1.10 cgd }
259 1.10 cgd
260 1.10 cgd /*
261 1.10 cgd * Check for write permissions on the specified vnode.
262 1.28 fvdl * Prototype text segments cannot be written.
263 1.10 cgd */
264 1.20 christos int
265 1.10 cgd vn_writechk(vp)
266 1.41 augustss struct vnode *vp;
267 1.10 cgd {
268 1.10 cgd
269 1.10 cgd /*
270 1.45 chs * If the vnode is in use as a process's text,
271 1.45 chs * we can't allow writing.
272 1.10 cgd */
273 1.45 chs if (vp->v_flag & VTEXT)
274 1.25 mrg return (ETXTBSY);
275 1.10 cgd return (0);
276 1.42 chs }
277 1.42 chs
278 1.42 chs /*
279 1.51 thorpej * Mark a vnode as having executable mappings.
280 1.42 chs */
281 1.42 chs void
282 1.51 thorpej vn_markexec(vp)
283 1.42 chs struct vnode *vp;
284 1.42 chs {
285 1.51 thorpej if ((vp->v_flag & VEXECMAP) == 0) {
286 1.53 chs uvmexp.filepages -= vp->v_uobj.uo_npages;
287 1.53 chs uvmexp.execpages += vp->v_uobj.uo_npages;
288 1.46 chs }
289 1.51 thorpej vp->v_flag |= VEXECMAP;
290 1.55 chs }
291 1.55 chs
292 1.55 chs /*
293 1.55 chs * Mark a vnode as being the text of a process.
294 1.55 chs * Fail if the vnode is currently writable.
295 1.55 chs */
296 1.55 chs int
297 1.55 chs vn_marktext(vp)
298 1.55 chs struct vnode *vp;
299 1.55 chs {
300 1.55 chs
301 1.55 chs if (vp->v_writecount != 0) {
302 1.55 chs KASSERT((vp->v_flag & VTEXT) == 0);
303 1.55 chs return (ETXTBSY);
304 1.55 chs }
305 1.55 chs vp->v_flag |= VTEXT;
306 1.55 chs vn_markexec(vp);
307 1.55 chs return (0);
308 1.10 cgd }
309 1.10 cgd
310 1.10 cgd /*
311 1.10 cgd * Vnode close call
312 1.32 wrstuden *
313 1.32 wrstuden * Note: takes an unlocked vnode, while VOP_CLOSE takes a locked node.
314 1.10 cgd */
315 1.20 christos int
316 1.72 fvdl vn_close(vp, flags, cred, p)
317 1.41 augustss struct vnode *vp;
318 1.10 cgd int flags;
319 1.10 cgd struct ucred *cred;
320 1.72 fvdl struct proc *p;
321 1.10 cgd {
322 1.10 cgd int error;
323 1.10 cgd
324 1.10 cgd if (flags & FWRITE)
325 1.10 cgd vp->v_writecount--;
326 1.32 wrstuden vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
327 1.72 fvdl error = VOP_CLOSE(vp, flags, cred, p);
328 1.32 wrstuden vput(vp);
329 1.10 cgd return (error);
330 1.10 cgd }
331 1.10 cgd
332 1.10 cgd /*
333 1.10 cgd * Package up an I/O request on a vnode into a uio and do it.
334 1.10 cgd */
335 1.20 christos int
336 1.72 fvdl vn_rdwr(rw, vp, base, len, offset, segflg, ioflg, cred, aresid, p)
337 1.10 cgd enum uio_rw rw;
338 1.10 cgd struct vnode *vp;
339 1.10 cgd caddr_t base;
340 1.10 cgd int len;
341 1.10 cgd off_t offset;
342 1.10 cgd enum uio_seg segflg;
343 1.10 cgd int ioflg;
344 1.10 cgd struct ucred *cred;
345 1.30 thorpej size_t *aresid;
346 1.72 fvdl struct proc *p;
347 1.10 cgd {
348 1.10 cgd struct uio auio;
349 1.10 cgd struct iovec aiov;
350 1.75 hannken struct mount *mp;
351 1.10 cgd int error;
352 1.10 cgd
353 1.50 chs if ((ioflg & IO_NODELOCKED) == 0) {
354 1.50 chs if (rw == UIO_READ) {
355 1.50 chs vn_lock(vp, LK_SHARED | LK_RETRY);
356 1.75 hannken } else /* UIO_WRITE */ {
357 1.75 hannken if (vp->v_type != VCHR &&
358 1.75 hannken (error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH))
359 1.75 hannken != 0)
360 1.75 hannken return (error);
361 1.50 chs vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
362 1.50 chs }
363 1.50 chs }
364 1.10 cgd auio.uio_iov = &aiov;
365 1.10 cgd auio.uio_iovcnt = 1;
366 1.10 cgd aiov.iov_base = base;
367 1.10 cgd aiov.iov_len = len;
368 1.10 cgd auio.uio_resid = len;
369 1.10 cgd auio.uio_offset = offset;
370 1.10 cgd auio.uio_segflg = segflg;
371 1.10 cgd auio.uio_rw = rw;
372 1.72 fvdl auio.uio_procp = p;
373 1.11 mycroft if (rw == UIO_READ) {
374 1.10 cgd error = VOP_READ(vp, &auio, ioflg, cred);
375 1.11 mycroft } else {
376 1.10 cgd error = VOP_WRITE(vp, &auio, ioflg, cred);
377 1.11 mycroft }
378 1.10 cgd if (aresid)
379 1.10 cgd *aresid = auio.uio_resid;
380 1.10 cgd else
381 1.10 cgd if (auio.uio_resid && error == 0)
382 1.10 cgd error = EIO;
383 1.75 hannken if ((ioflg & IO_NODELOCKED) == 0) {
384 1.75 hannken if (rw == UIO_WRITE)
385 1.75 hannken vn_finished_write(mp, 0);
386 1.28 fvdl VOP_UNLOCK(vp, 0);
387 1.75 hannken }
388 1.10 cgd return (error);
389 1.23 fvdl }
390 1.23 fvdl
391 1.23 fvdl int
392 1.88 christos vn_readdir(fp, bf, segflg, count, done, p, cookies, ncookies)
393 1.23 fvdl struct file *fp;
394 1.88 christos char *bf;
395 1.28 fvdl int segflg, *done, *ncookies;
396 1.23 fvdl u_int count;
397 1.72 fvdl struct proc *p;
398 1.28 fvdl off_t **cookies;
399 1.23 fvdl {
400 1.23 fvdl struct vnode *vp = (struct vnode *)fp->f_data;
401 1.23 fvdl struct iovec aiov;
402 1.23 fvdl struct uio auio;
403 1.23 fvdl int error, eofflag;
404 1.23 fvdl
405 1.23 fvdl unionread:
406 1.23 fvdl if (vp->v_type != VDIR)
407 1.23 fvdl return (EINVAL);
408 1.88 christos aiov.iov_base = bf;
409 1.23 fvdl aiov.iov_len = count;
410 1.23 fvdl auio.uio_iov = &aiov;
411 1.23 fvdl auio.uio_iovcnt = 1;
412 1.23 fvdl auio.uio_rw = UIO_READ;
413 1.23 fvdl auio.uio_segflg = segflg;
414 1.72 fvdl auio.uio_procp = p;
415 1.23 fvdl auio.uio_resid = count;
416 1.50 chs vn_lock(vp, LK_SHARED | LK_RETRY);
417 1.23 fvdl auio.uio_offset = fp->f_offset;
418 1.28 fvdl error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, cookies,
419 1.23 fvdl ncookies);
420 1.23 fvdl fp->f_offset = auio.uio_offset;
421 1.28 fvdl VOP_UNLOCK(vp, 0);
422 1.23 fvdl if (error)
423 1.23 fvdl return (error);
424 1.23 fvdl
425 1.66 jdolecek #if defined(UNION) || defined(LKM)
426 1.66 jdolecek if (count == auio.uio_resid && vn_union_readdir_hook) {
427 1.66 jdolecek struct vnode *ovp = vp;
428 1.23 fvdl
429 1.72 fvdl error = (*vn_union_readdir_hook)(&vp, fp, p);
430 1.66 jdolecek if (error)
431 1.66 jdolecek return (error);
432 1.66 jdolecek if (vp != ovp)
433 1.23 fvdl goto unionread;
434 1.23 fvdl }
435 1.66 jdolecek #endif /* UNION || LKM */
436 1.23 fvdl
437 1.23 fvdl if (count == auio.uio_resid && (vp->v_flag & VROOT) &&
438 1.23 fvdl (vp->v_mount->mnt_flag & MNT_UNION)) {
439 1.23 fvdl struct vnode *tvp = vp;
440 1.23 fvdl vp = vp->v_mount->mnt_vnodecovered;
441 1.23 fvdl VREF(vp);
442 1.68 dsl fp->f_data = vp;
443 1.23 fvdl fp->f_offset = 0;
444 1.23 fvdl vrele(tvp);
445 1.23 fvdl goto unionread;
446 1.23 fvdl }
447 1.23 fvdl *done = count - auio.uio_resid;
448 1.23 fvdl return error;
449 1.10 cgd }
450 1.10 cgd
451 1.10 cgd /*
452 1.10 cgd * File table vnode read routine.
453 1.10 cgd */
454 1.56 gmcgarry static int
455 1.29 thorpej vn_read(fp, offset, uio, cred, flags)
456 1.10 cgd struct file *fp;
457 1.29 thorpej off_t *offset;
458 1.10 cgd struct uio *uio;
459 1.10 cgd struct ucred *cred;
460 1.29 thorpej int flags;
461 1.10 cgd {
462 1.28 fvdl struct vnode *vp = (struct vnode *)fp->f_data;
463 1.31 kleink int count, error, ioflag = 0;
464 1.10 cgd
465 1.72 fvdl VOP_LEASE(vp, uio->uio_procp, cred, LEASE_READ);
466 1.31 kleink if (fp->f_flag & FNONBLOCK)
467 1.31 kleink ioflag |= IO_NDELAY;
468 1.31 kleink if ((fp->f_flag & (FFSYNC | FRSYNC)) == (FFSYNC | FRSYNC))
469 1.31 kleink ioflag |= IO_SYNC;
470 1.37 wrstuden if (fp->f_flag & FALTIO)
471 1.37 wrstuden ioflag |= IO_ALTSEMANTICS;
472 1.50 chs vn_lock(vp, LK_SHARED | LK_RETRY);
473 1.29 thorpej uio->uio_offset = *offset;
474 1.10 cgd count = uio->uio_resid;
475 1.31 kleink error = VOP_READ(vp, uio, ioflag, cred);
476 1.29 thorpej if (flags & FOF_UPDATE_OFFSET)
477 1.29 thorpej *offset += count - uio->uio_resid;
478 1.28 fvdl VOP_UNLOCK(vp, 0);
479 1.10 cgd return (error);
480 1.10 cgd }
481 1.10 cgd
482 1.10 cgd /*
483 1.10 cgd * File table vnode write routine.
484 1.10 cgd */
485 1.56 gmcgarry static int
486 1.29 thorpej vn_write(fp, offset, uio, cred, flags)
487 1.10 cgd struct file *fp;
488 1.29 thorpej off_t *offset;
489 1.10 cgd struct uio *uio;
490 1.10 cgd struct ucred *cred;
491 1.29 thorpej int flags;
492 1.10 cgd {
493 1.28 fvdl struct vnode *vp = (struct vnode *)fp->f_data;
494 1.75 hannken struct mount *mp;
495 1.17 mycroft int count, error, ioflag = IO_UNIT;
496 1.10 cgd
497 1.10 cgd if (vp->v_type == VREG && (fp->f_flag & O_APPEND))
498 1.10 cgd ioflag |= IO_APPEND;
499 1.10 cgd if (fp->f_flag & FNONBLOCK)
500 1.10 cgd ioflag |= IO_NDELAY;
501 1.24 thorpej if (fp->f_flag & FFSYNC ||
502 1.24 thorpej (vp->v_mount && (vp->v_mount->mnt_flag & MNT_SYNCHRONOUS)))
503 1.24 thorpej ioflag |= IO_SYNC;
504 1.31 kleink else if (fp->f_flag & FDSYNC)
505 1.31 kleink ioflag |= IO_DSYNC;
506 1.37 wrstuden if (fp->f_flag & FALTIO)
507 1.37 wrstuden ioflag |= IO_ALTSEMANTICS;
508 1.75 hannken mp = NULL;
509 1.75 hannken if (vp->v_type != VCHR &&
510 1.75 hannken (error = vn_start_write(vp, &mp, V_WAIT | V_PCATCH)) != 0)
511 1.75 hannken return (error);
512 1.72 fvdl VOP_LEASE(vp, uio->uio_procp, cred, LEASE_WRITE);
513 1.28 fvdl vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
514 1.29 thorpej uio->uio_offset = *offset;
515 1.10 cgd count = uio->uio_resid;
516 1.10 cgd error = VOP_WRITE(vp, uio, ioflag, cred);
517 1.29 thorpej if (flags & FOF_UPDATE_OFFSET) {
518 1.29 thorpej if (ioflag & IO_APPEND)
519 1.29 thorpej *offset = uio->uio_offset;
520 1.29 thorpej else
521 1.29 thorpej *offset += count - uio->uio_resid;
522 1.29 thorpej }
523 1.28 fvdl VOP_UNLOCK(vp, 0);
524 1.75 hannken vn_finished_write(mp, 0);
525 1.10 cgd return (error);
526 1.10 cgd }
527 1.10 cgd
528 1.10 cgd /*
529 1.10 cgd * File table vnode stat routine.
530 1.10 cgd */
531 1.48 jdolecek static int
532 1.72 fvdl vn_statfile(fp, sb, p)
533 1.48 jdolecek struct file *fp;
534 1.48 jdolecek struct stat *sb;
535 1.72 fvdl struct proc *p;
536 1.48 jdolecek {
537 1.48 jdolecek struct vnode *vp = (struct vnode *)fp->f_data;
538 1.48 jdolecek
539 1.72 fvdl return vn_stat(vp, sb, p);
540 1.48 jdolecek }
541 1.48 jdolecek
542 1.20 christos int
543 1.72 fvdl vn_stat(vp, sb, p)
544 1.56 gmcgarry struct vnode *vp;
545 1.41 augustss struct stat *sb;
546 1.72 fvdl struct proc *p;
547 1.10 cgd {
548 1.19 mycroft struct vattr va;
549 1.10 cgd int error;
550 1.35 wrstuden mode_t mode;
551 1.10 cgd
552 1.72 fvdl error = VOP_GETATTR(vp, &va, p->p_ucred, p);
553 1.10 cgd if (error)
554 1.10 cgd return (error);
555 1.10 cgd /*
556 1.10 cgd * Copy from vattr table
557 1.10 cgd */
558 1.19 mycroft sb->st_dev = va.va_fsid;
559 1.19 mycroft sb->st_ino = va.va_fileid;
560 1.19 mycroft mode = va.va_mode;
561 1.10 cgd switch (vp->v_type) {
562 1.10 cgd case VREG:
563 1.10 cgd mode |= S_IFREG;
564 1.10 cgd break;
565 1.10 cgd case VDIR:
566 1.10 cgd mode |= S_IFDIR;
567 1.10 cgd break;
568 1.10 cgd case VBLK:
569 1.10 cgd mode |= S_IFBLK;
570 1.10 cgd break;
571 1.10 cgd case VCHR:
572 1.10 cgd mode |= S_IFCHR;
573 1.10 cgd break;
574 1.10 cgd case VLNK:
575 1.10 cgd mode |= S_IFLNK;
576 1.10 cgd break;
577 1.10 cgd case VSOCK:
578 1.10 cgd mode |= S_IFSOCK;
579 1.10 cgd break;
580 1.10 cgd case VFIFO:
581 1.10 cgd mode |= S_IFIFO;
582 1.10 cgd break;
583 1.10 cgd default:
584 1.10 cgd return (EBADF);
585 1.10 cgd };
586 1.10 cgd sb->st_mode = mode;
587 1.19 mycroft sb->st_nlink = va.va_nlink;
588 1.19 mycroft sb->st_uid = va.va_uid;
589 1.19 mycroft sb->st_gid = va.va_gid;
590 1.19 mycroft sb->st_rdev = va.va_rdev;
591 1.19 mycroft sb->st_size = va.va_size;
592 1.19 mycroft sb->st_atimespec = va.va_atime;
593 1.19 mycroft sb->st_mtimespec = va.va_mtime;
594 1.19 mycroft sb->st_ctimespec = va.va_ctime;
595 1.69 fvdl sb->st_birthtimespec = va.va_birthtime;
596 1.19 mycroft sb->st_blksize = va.va_blocksize;
597 1.19 mycroft sb->st_flags = va.va_flags;
598 1.22 mycroft sb->st_gen = 0;
599 1.19 mycroft sb->st_blocks = va.va_bytes / S_BLKSIZE;
600 1.10 cgd return (0);
601 1.37 wrstuden }
602 1.37 wrstuden
603 1.37 wrstuden /*
604 1.37 wrstuden * File table vnode fcntl routine.
605 1.37 wrstuden */
606 1.56 gmcgarry static int
607 1.72 fvdl vn_fcntl(fp, com, data, p)
608 1.37 wrstuden struct file *fp;
609 1.37 wrstuden u_int com;
610 1.67 dsl void *data;
611 1.72 fvdl struct proc *p;
612 1.37 wrstuden {
613 1.41 augustss struct vnode *vp = ((struct vnode *)fp->f_data);
614 1.37 wrstuden int error;
615 1.37 wrstuden
616 1.37 wrstuden vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
617 1.72 fvdl error = VOP_FCNTL(vp, com, data, fp->f_flag, p->p_ucred, p);
618 1.37 wrstuden VOP_UNLOCK(vp, 0);
619 1.37 wrstuden return (error);
620 1.10 cgd }
621 1.10 cgd
622 1.10 cgd /*
623 1.10 cgd * File table vnode ioctl routine.
624 1.10 cgd */
625 1.56 gmcgarry static int
626 1.72 fvdl vn_ioctl(fp, com, data, p)
627 1.10 cgd struct file *fp;
628 1.15 cgd u_long com;
629 1.67 dsl void *data;
630 1.72 fvdl struct proc *p;
631 1.10 cgd {
632 1.41 augustss struct vnode *vp = ((struct vnode *)fp->f_data);
633 1.10 cgd struct vattr vattr;
634 1.10 cgd int error;
635 1.10 cgd
636 1.10 cgd switch (vp->v_type) {
637 1.10 cgd
638 1.10 cgd case VREG:
639 1.10 cgd case VDIR:
640 1.10 cgd if (com == FIONREAD) {
641 1.72 fvdl error = VOP_GETATTR(vp, &vattr, p->p_ucred, p);
642 1.20 christos if (error)
643 1.10 cgd return (error);
644 1.10 cgd *(int *)data = vattr.va_size - fp->f_offset;
645 1.10 cgd return (0);
646 1.60 atatat }
647 1.82 christos if ((com == FIONWRITE) || (com == FIONSPACE)) {
648 1.81 wrstuden /*
649 1.81 wrstuden * Files don't have send queues, so there never
650 1.81 wrstuden * are any bytes in them, nor is there any
651 1.81 wrstuden * open space in them.
652 1.81 wrstuden */
653 1.81 wrstuden *(int *)data = 0;
654 1.81 wrstuden return (0);
655 1.81 wrstuden }
656 1.60 atatat if (com == FIOGETBMAP) {
657 1.60 atatat daddr_t *block;
658 1.60 atatat
659 1.62 atatat if (*(daddr_t *)data < 0)
660 1.62 atatat return (EINVAL);
661 1.60 atatat block = (daddr_t *)data;
662 1.60 atatat return (VOP_BMAP(vp, *block, NULL, block, NULL));
663 1.61 fvdl }
664 1.61 fvdl if (com == OFIOGETBMAP) {
665 1.61 fvdl daddr_t ibn, obn;
666 1.61 fvdl
667 1.62 atatat if (*(int32_t *)data < 0)
668 1.62 atatat return (EINVAL);
669 1.61 fvdl ibn = (daddr_t)*(int32_t *)data;
670 1.61 fvdl error = VOP_BMAP(vp, ibn, NULL, &obn, NULL);
671 1.61 fvdl *(int32_t *)data = (int32_t)obn;
672 1.61 fvdl return error;
673 1.10 cgd }
674 1.10 cgd if (com == FIONBIO || com == FIOASYNC) /* XXX */
675 1.10 cgd return (0); /* XXX */
676 1.10 cgd /* fall into ... */
677 1.10 cgd case VFIFO:
678 1.10 cgd case VCHR:
679 1.10 cgd case VBLK:
680 1.72 fvdl error = VOP_IOCTL(vp, com, data, fp->f_flag, p->p_ucred, p);
681 1.10 cgd if (error == 0 && com == TIOCSCTTY) {
682 1.13 cgd if (p->p_session->s_ttyvp)
683 1.13 cgd vrele(p->p_session->s_ttyvp);
684 1.10 cgd p->p_session->s_ttyvp = vp;
685 1.10 cgd VREF(vp);
686 1.10 cgd }
687 1.10 cgd return (error);
688 1.63 perseant
689 1.63 perseant default:
690 1.63 perseant return (EPASSTHROUGH);
691 1.10 cgd }
692 1.10 cgd }
693 1.10 cgd
694 1.10 cgd /*
695 1.21 mycroft * File table vnode poll routine.
696 1.10 cgd */
697 1.56 gmcgarry static int
698 1.72 fvdl vn_poll(fp, events, p)
699 1.10 cgd struct file *fp;
700 1.21 mycroft int events;
701 1.72 fvdl struct proc *p;
702 1.10 cgd {
703 1.10 cgd
704 1.72 fvdl return (VOP_POLL(((struct vnode *)fp->f_data), events, p));
705 1.57 jdolecek }
706 1.57 jdolecek
707 1.57 jdolecek /*
708 1.57 jdolecek * File table vnode kqfilter routine.
709 1.57 jdolecek */
710 1.57 jdolecek int
711 1.57 jdolecek vn_kqfilter(fp, kn)
712 1.57 jdolecek struct file *fp;
713 1.57 jdolecek struct knote *kn;
714 1.57 jdolecek {
715 1.57 jdolecek
716 1.57 jdolecek return (VOP_KQFILTER((struct vnode *)fp->f_data, kn));
717 1.28 fvdl }
718 1.28 fvdl
719 1.28 fvdl /*
720 1.28 fvdl * Check that the vnode is still valid, and if so
721 1.28 fvdl * acquire requested lock.
722 1.28 fvdl */
723 1.28 fvdl int
724 1.28 fvdl vn_lock(vp, flags)
725 1.28 fvdl struct vnode *vp;
726 1.28 fvdl int flags;
727 1.28 fvdl {
728 1.28 fvdl int error;
729 1.34 sommerfe
730 1.84 yamt #if 0
731 1.80 yamt KASSERT(vp->v_usecount > 0 || (flags & LK_INTERLOCK) != 0
732 1.80 yamt || (vp->v_flag & VONWORKLST) != 0);
733 1.84 yamt #endif
734 1.80 yamt
735 1.28 fvdl do {
736 1.36 mycroft if ((flags & LK_INTERLOCK) == 0)
737 1.28 fvdl simple_lock(&vp->v_interlock);
738 1.28 fvdl if (vp->v_flag & VXLOCK) {
739 1.49 chs if (flags & LK_NOWAIT) {
740 1.49 chs simple_unlock(&vp->v_interlock);
741 1.49 chs return EBUSY;
742 1.49 chs }
743 1.28 fvdl vp->v_flag |= VXWANT;
744 1.49 chs ltsleep(vp, PINOD | PNORELOCK,
745 1.44 sommerfe "vn_lock", 0, &vp->v_interlock);
746 1.28 fvdl error = ENOENT;
747 1.28 fvdl } else {
748 1.79 yamt error = VOP_LOCK(vp,
749 1.79 yamt (flags & ~LK_RETRY) | LK_INTERLOCK);
750 1.49 chs if (error == 0 || error == EDEADLK || error == EBUSY)
751 1.28 fvdl return (error);
752 1.28 fvdl }
753 1.28 fvdl flags &= ~LK_INTERLOCK;
754 1.28 fvdl } while (flags & LK_RETRY);
755 1.28 fvdl return (error);
756 1.10 cgd }
757 1.10 cgd
758 1.10 cgd /*
759 1.10 cgd * File table vnode close routine.
760 1.10 cgd */
761 1.56 gmcgarry static int
762 1.72 fvdl vn_closefile(fp, p)
763 1.10 cgd struct file *fp;
764 1.72 fvdl struct proc *p;
765 1.10 cgd {
766 1.10 cgd
767 1.10 cgd return (vn_close(((struct vnode *)fp->f_data), fp->f_flag,
768 1.72 fvdl fp->f_cred, p));
769 1.39 fvdl }
770 1.39 fvdl
771 1.39 fvdl /*
772 1.39 fvdl * Enable LK_CANRECURSE on lock. Return prior status.
773 1.39 fvdl */
774 1.39 fvdl u_int
775 1.39 fvdl vn_setrecurse(vp)
776 1.39 fvdl struct vnode *vp;
777 1.39 fvdl {
778 1.39 fvdl struct lock *lkp = &vp->v_lock;
779 1.39 fvdl u_int retval = lkp->lk_flags & LK_CANRECURSE;
780 1.39 fvdl
781 1.39 fvdl lkp->lk_flags |= LK_CANRECURSE;
782 1.39 fvdl return retval;
783 1.39 fvdl }
784 1.39 fvdl
785 1.39 fvdl /*
786 1.39 fvdl * Called when done with locksetrecurse.
787 1.39 fvdl */
788 1.39 fvdl void
789 1.39 fvdl vn_restorerecurse(vp, flags)
790 1.39 fvdl struct vnode *vp;
791 1.39 fvdl u_int flags;
792 1.39 fvdl {
793 1.39 fvdl struct lock *lkp = &vp->v_lock;
794 1.39 fvdl
795 1.39 fvdl lkp->lk_flags &= ~LK_CANRECURSE;
796 1.39 fvdl lkp->lk_flags |= flags;
797 1.75 hannken }
798 1.77 hannken
799 1.77 hannken int
800 1.77 hannken vn_cow_establish(struct vnode *vp,
801 1.78 hannken int (*func)(void *, struct buf *), void *cookie)
802 1.77 hannken {
803 1.77 hannken int s;
804 1.77 hannken struct spec_cow_entry *e;
805 1.77 hannken
806 1.77 hannken MALLOC(e, struct spec_cow_entry *, sizeof(struct spec_cow_entry),
807 1.77 hannken M_DEVBUF, M_WAITOK);
808 1.77 hannken e->ce_func = func;
809 1.77 hannken e->ce_cookie = cookie;
810 1.77 hannken
811 1.77 hannken SPEC_COW_LOCK(vp->v_specinfo, s);
812 1.77 hannken vp->v_spec_cow_req++;
813 1.77 hannken while (vp->v_spec_cow_count > 0)
814 1.77 hannken ltsleep(&vp->v_spec_cow_req, PRIBIO, "cowlist", 0,
815 1.77 hannken &vp->v_spec_cow_slock);
816 1.77 hannken
817 1.77 hannken SLIST_INSERT_HEAD(&vp->v_spec_cow_head, e, ce_list);
818 1.77 hannken
819 1.77 hannken vp->v_spec_cow_req--;
820 1.77 hannken if (vp->v_spec_cow_req == 0)
821 1.77 hannken wakeup(&vp->v_spec_cow_req);
822 1.77 hannken SPEC_COW_UNLOCK(vp->v_specinfo, s);
823 1.77 hannken
824 1.77 hannken return 0;
825 1.77 hannken }
826 1.77 hannken
827 1.77 hannken int
828 1.77 hannken vn_cow_disestablish(struct vnode *vp,
829 1.78 hannken int (*func)(void *, struct buf *), void *cookie)
830 1.77 hannken {
831 1.77 hannken int s;
832 1.77 hannken struct spec_cow_entry *e;
833 1.77 hannken
834 1.77 hannken SPEC_COW_LOCK(vp->v_specinfo, s);
835 1.77 hannken vp->v_spec_cow_req++;
836 1.77 hannken while (vp->v_spec_cow_count > 0)
837 1.77 hannken ltsleep(&vp->v_spec_cow_req, PRIBIO, "cowlist", 0,
838 1.77 hannken &vp->v_spec_cow_slock);
839 1.77 hannken
840 1.77 hannken SLIST_FOREACH(e, &vp->v_spec_cow_head, ce_list)
841 1.77 hannken if (e->ce_func == func && e->ce_cookie == cookie) {
842 1.77 hannken SLIST_REMOVE(&vp->v_spec_cow_head, e,
843 1.77 hannken spec_cow_entry, ce_list);
844 1.77 hannken FREE(e, M_DEVBUF);
845 1.77 hannken break;
846 1.77 hannken }
847 1.77 hannken
848 1.77 hannken vp->v_spec_cow_req--;
849 1.77 hannken if (vp->v_spec_cow_req == 0)
850 1.77 hannken wakeup(&vp->v_spec_cow_req);
851 1.77 hannken SPEC_COW_UNLOCK(vp->v_specinfo, s);
852 1.77 hannken
853 1.77 hannken return e ? 0 : EINVAL;
854 1.77 hannken }
855 1.85 thorpej
856 1.85 thorpej /*
857 1.85 thorpej * Simplified in-kernel wrapper calls for extended attribute access.
858 1.85 thorpej * Both calls pass in a NULL credential, authorizing a "kernel" access.
859 1.85 thorpej * Set IO_NODELOCKED in ioflg if the vnode is already locked.
860 1.85 thorpej */
861 1.85 thorpej int
862 1.85 thorpej vn_extattr_get(struct vnode *vp, int ioflg, int attrnamespace,
863 1.88 christos const char *attrname, size_t *buflen, void *bf, struct proc *p)
864 1.85 thorpej {
865 1.85 thorpej struct uio auio;
866 1.85 thorpej struct iovec aiov;
867 1.85 thorpej int error;
868 1.85 thorpej
869 1.85 thorpej aiov.iov_len = *buflen;
870 1.88 christos aiov.iov_base = bf;
871 1.85 thorpej
872 1.85 thorpej auio.uio_iov = &aiov;
873 1.85 thorpej auio.uio_iovcnt = 1;
874 1.85 thorpej auio.uio_rw = UIO_READ;
875 1.85 thorpej auio.uio_segflg = UIO_SYSSPACE;
876 1.85 thorpej auio.uio_procp = p;
877 1.85 thorpej auio.uio_offset = 0;
878 1.85 thorpej auio.uio_resid = *buflen;
879 1.85 thorpej
880 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0)
881 1.85 thorpej vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
882 1.86 perry
883 1.85 thorpej error = VOP_GETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, NULL,
884 1.85 thorpej p);
885 1.86 perry
886 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0)
887 1.85 thorpej VOP_UNLOCK(vp, 0);
888 1.86 perry
889 1.85 thorpej if (error == 0)
890 1.85 thorpej *buflen = *buflen - auio.uio_resid;
891 1.86 perry
892 1.85 thorpej return (error);
893 1.85 thorpej }
894 1.85 thorpej
895 1.85 thorpej /*
896 1.85 thorpej * XXX Failure mode if partially written?
897 1.85 thorpej */
898 1.85 thorpej int
899 1.85 thorpej vn_extattr_set(struct vnode *vp, int ioflg, int attrnamespace,
900 1.88 christos const char *attrname, size_t buflen, const void *bf, struct proc *p)
901 1.85 thorpej {
902 1.85 thorpej struct uio auio;
903 1.85 thorpej struct iovec aiov;
904 1.85 thorpej struct mount *mp;
905 1.85 thorpej int error;
906 1.85 thorpej
907 1.85 thorpej aiov.iov_len = buflen;
908 1.88 christos aiov.iov_base = __UNCONST(bf); /* XXXUNCONST kills const */
909 1.85 thorpej
910 1.85 thorpej auio.uio_iov = &aiov;
911 1.85 thorpej auio.uio_iovcnt = 1;
912 1.85 thorpej auio.uio_rw = UIO_WRITE;
913 1.85 thorpej auio.uio_segflg = UIO_SYSSPACE;
914 1.85 thorpej auio.uio_procp = p;
915 1.85 thorpej auio.uio_offset = 0;
916 1.85 thorpej auio.uio_resid = buflen;
917 1.85 thorpej
918 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0) {
919 1.85 thorpej if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0)
920 1.85 thorpej return (error);
921 1.85 thorpej vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
922 1.85 thorpej }
923 1.85 thorpej
924 1.85 thorpej error = VOP_SETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, p);
925 1.85 thorpej
926 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0) {
927 1.85 thorpej vn_finished_write(mp, 0);
928 1.85 thorpej VOP_UNLOCK(vp, 0);
929 1.85 thorpej }
930 1.85 thorpej
931 1.85 thorpej return (error);
932 1.85 thorpej }
933 1.85 thorpej
934 1.85 thorpej int
935 1.85 thorpej vn_extattr_rm(struct vnode *vp, int ioflg, int attrnamespace,
936 1.85 thorpej const char *attrname, struct proc *p)
937 1.85 thorpej {
938 1.85 thorpej struct mount *mp;
939 1.85 thorpej int error;
940 1.85 thorpej
941 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0) {
942 1.85 thorpej if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0)
943 1.85 thorpej return (error);
944 1.85 thorpej vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
945 1.85 thorpej }
946 1.85 thorpej
947 1.85 thorpej error = VOP_DELETEEXTATTR(vp, attrnamespace, attrname, NULL, p);
948 1.85 thorpej if (error == EOPNOTSUPP)
949 1.85 thorpej error = VOP_SETEXTATTR(vp, attrnamespace, attrname, NULL,
950 1.85 thorpej NULL, p);
951 1.86 perry
952 1.85 thorpej if ((ioflg & IO_NODELOCKED) == 0) {
953 1.85 thorpej vn_finished_write(mp, 0);
954 1.85 thorpej VOP_UNLOCK(vp, 0);
955 1.85 thorpej }
956 1.85 thorpej
957 1.85 thorpej return (error);
958 1.85 thorpej }
959