Remove building with NOCRYPTO option
[minix3.git] / sys / fs / puffs / puffs_node.c
blob6407487f58873beb3926616838b5257214378d3d
1 /* $NetBSD: puffs_node.c,v 1.36 2014/11/10 18:46:33 maxv Exp $ */
3 /*
4 * Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
6 * Development of this software was supported by the
7 * Google Summer of Code program, the Ulla Tuominen Foundation
8 * and the Finnish Cultural Foundation.
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.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
20 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
32 #include <sys/cdefs.h>
33 __KERNEL_RCSID(0, "$NetBSD: puffs_node.c,v 1.36 2014/11/10 18:46:33 maxv Exp $");
35 #include <sys/param.h>
36 #include <sys/hash.h>
37 #include <sys/kmem.h>
38 #include <sys/mount.h>
39 #include <sys/namei.h>
40 #include <sys/vnode.h>
42 #include <uvm/uvm.h>
44 #include <fs/puffs/puffs_msgif.h>
45 #include <fs/puffs/puffs_sys.h>
47 #include <miscfs/genfs/genfs_node.h>
48 #include <miscfs/specfs/specdev.h>
50 struct pool puffs_pnpool;
51 struct pool puffs_vapool;
54 * Grab a vnode, intialize all the puffs-dependent stuff.
56 static int
57 puffs_getvnode1(struct mount *mp, puffs_cookie_t ck, enum vtype type,
58 voff_t vsize, dev_t rdev, bool may_exist, struct vnode **vpp)
60 struct puffs_mount *pmp;
61 struct vnode *vp;
62 struct puffs_node *pnode;
63 int error;
65 pmp = MPTOPUFFSMP(mp);
67 if (type <= VNON || type >= VBAD) {
68 puffs_senderr(pmp, PUFFS_ERR_MAKENODE, EINVAL,
69 "bad node type", ck);
70 return EPROTO;
72 if (vsize == VSIZENOTSET) {
73 puffs_senderr(pmp, PUFFS_ERR_MAKENODE, EINVAL,
74 "VSIZENOTSET is not a valid size", ck);
75 return EPROTO;
78 for (;;) {
79 error = vcache_get(mp, &ck, sizeof(ck), &vp);
80 if (error)
81 return error;
82 mutex_enter(vp->v_interlock);
83 pnode = VPTOPP(vp);
84 if (pnode != NULL)
85 break;
86 mutex_exit(vp->v_interlock);
87 vrele(vp);
89 mutex_enter(&pnode->pn_mtx);
90 mutex_exit(vp->v_interlock);
93 * Release and error out if caller wants a fresh vnode.
95 if (vp->v_type != VNON && ! may_exist) {
96 mutex_exit(&pnode->pn_mtx);
97 vrele(vp);
98 return EEXIST;
101 *vpp = vp;
104 * If fully initialized were done.
106 if (vp->v_type != VNON) {
107 mutex_exit(&pnode->pn_mtx);
108 return 0;
112 * Set type and finalize the initialisation.
114 vp->v_type = type;
115 if (type == VCHR || type == VBLK) {
116 vp->v_op = puffs_specop_p;
117 spec_node_init(vp, rdev);
118 } else if (type == VFIFO) {
119 vp->v_op = puffs_fifoop_p;
120 } else if (vp->v_type == VREG) {
121 uvm_vnp_setsize(vp, vsize);
124 pnode->pn_serversize = vsize;
126 DPRINTF(("new vnode at %p, pnode %p, cookie %p\n", vp,
127 pnode, pnode->pn_cookie));
129 mutex_exit(&pnode->pn_mtx);
131 return 0;
135 puffs_getvnode(struct mount *mp, puffs_cookie_t ck, enum vtype type,
136 voff_t vsize, dev_t rdev, struct vnode **vpp)
139 return puffs_getvnode1(mp, ck, type, vsize, rdev, true, vpp);
142 /* new node creating for creative vop ops (create, symlink, mkdir, mknod) */
144 puffs_newnode(struct mount *mp, struct vnode *dvp, struct vnode **vpp,
145 puffs_cookie_t ck, struct componentname *cnp,
146 enum vtype type, dev_t rdev)
148 struct puffs_mount *pmp = MPTOPUFFSMP(mp);
149 int error;
151 /* userspace probably has this as a NULL op */
152 if (ck == NULL)
153 return EOPNOTSUPP;
156 * Check for previous node with the same designation.
157 * Explicitly check the root node cookie, since it might be
158 * reclaimed from the kernel when this check is made.
160 if (ck == pmp->pmp_root_cookie) {
161 puffs_senderr(pmp, PUFFS_ERR_MAKENODE, EEXIST,
162 "cookie exists", ck);
163 return EPROTO;
166 KASSERT(curlwp != uvm.pagedaemon_lwp);
168 error = puffs_getvnode1(dvp->v_mount, ck, type, 0, rdev, false, vpp);
169 if (error) {
170 if (error == EEXIST) {
171 puffs_senderr(pmp, PUFFS_ERR_MAKENODE, EEXIST,
172 "cookie exists", ck);
173 error = EPROTO;
175 return error;
178 if (PUFFS_USE_NAMECACHE(pmp))
179 cache_enter(dvp, *vpp, cnp->cn_nameptr, cnp->cn_namelen,
180 cnp->cn_flags);
182 puffs_updatenode(VPTOPP(dvp), PUFFS_UPDATECTIME|PUFFS_UPDATEMTIME, 0);
184 return 0;
187 void
188 puffs_putvnode(struct vnode *vp)
190 struct puffs_node *pnode;
192 pnode = VPTOPP(vp);
194 KASSERT(vp->v_tag == VT_PUFFS);
196 vcache_remove(vp->v_mount, &pnode->pn_cookie, sizeof(pnode->pn_cookie));
197 genfs_node_destroy(vp);
200 * To interlock with puffs_getvnode1().
202 mutex_enter(vp->v_interlock);
203 vp->v_data = NULL;
204 mutex_exit(vp->v_interlock);
205 puffs_releasenode(pnode);
209 * Make sure root vnode exists and reference it. Does NOT lock.
211 static int
212 puffs_makeroot(struct puffs_mount *pmp)
214 struct vnode *vp;
215 int rv;
218 * pmp_lock must be held if vref()'ing or vrele()'ing the
219 * root vnode. the latter is controlled by puffs_inactive().
221 * pmp_root is set here and cleared in puffs_reclaim().
224 rv = puffs_getvnode(pmp->pmp_mp, pmp->pmp_root_cookie,
225 pmp->pmp_root_vtype, pmp->pmp_root_vsize, pmp->pmp_root_rdev, &vp);
226 if (rv != 0)
227 return rv;
229 mutex_enter(&pmp->pmp_lock);
230 if (pmp->pmp_root == NULL)
231 pmp->pmp_root = vp;
232 mutex_exit(&pmp->pmp_lock);
234 return 0;
238 * Locate the in-kernel vnode based on the cookie received given
239 * from userspace.
241 * returns 0 on success. otherwise returns an errno or PUFFS_NOSUCHCOOKIE.
243 * returns PUFFS_NOSUCHCOOKIE if no vnode for the cookie is found.
246 puffs_cookie2vnode(struct puffs_mount *pmp, puffs_cookie_t ck,
247 struct vnode **vpp)
249 int rv;
252 * Handle root in a special manner, since we want to make sure
253 * pmp_root is properly set.
255 if (ck == pmp->pmp_root_cookie) {
256 if ((rv = puffs_makeroot(pmp)))
257 return rv;
258 *vpp = pmp->pmp_root;
259 return 0;
262 rv = vcache_get(PMPTOMP(pmp), &ck, sizeof(ck), vpp);
263 if (rv != 0)
264 return rv;
265 mutex_enter((*vpp)->v_interlock);
266 if ((*vpp)->v_type == VNON) {
267 mutex_exit((*vpp)->v_interlock);
268 /* XXX vrele() calls VOP_INACTIVE() with VNON node */
269 vrele(*vpp);
270 *vpp = NULL;
271 return PUFFS_NOSUCHCOOKIE;
273 mutex_exit((*vpp)->v_interlock);
275 return 0;
278 void
279 puffs_updatenode(struct puffs_node *pn, int flags, voff_t size)
281 struct timespec ts;
283 if (flags == 0)
284 return;
286 nanotime(&ts);
288 if (flags & PUFFS_UPDATEATIME) {
289 pn->pn_mc_atime = ts;
290 pn->pn_stat |= PNODE_METACACHE_ATIME;
292 if (flags & PUFFS_UPDATECTIME) {
293 pn->pn_mc_ctime = ts;
294 pn->pn_stat |= PNODE_METACACHE_CTIME;
296 if (flags & PUFFS_UPDATEMTIME) {
297 pn->pn_mc_mtime = ts;
298 pn->pn_stat |= PNODE_METACACHE_MTIME;
300 if (flags & PUFFS_UPDATESIZE) {
301 pn->pn_mc_size = size;
302 pn->pn_stat |= PNODE_METACACHE_SIZE;
307 * Add reference to node.
308 * mutex held on entry and return
310 void
311 puffs_referencenode(struct puffs_node *pn)
314 KASSERT(mutex_owned(&pn->pn_mtx));
315 pn->pn_refcount++;
319 * Release pnode structure which dealing with references to the
320 * puffs_node instead of the vnode. Can't use vref()/vrele() on
321 * the vnode there, since that causes the lovely VOP_INACTIVE(),
322 * which in turn causes the lovely deadlock when called by the one
323 * who is supposed to handle it.
325 void
326 puffs_releasenode(struct puffs_node *pn)
329 mutex_enter(&pn->pn_mtx);
330 if (--pn->pn_refcount == 0) {
331 mutex_exit(&pn->pn_mtx);
332 mutex_destroy(&pn->pn_mtx);
333 mutex_destroy(&pn->pn_sizemtx);
334 seldestroy(&pn->pn_sel);
335 if (pn->pn_va_cache != NULL)
336 pool_put(&puffs_vapool, pn->pn_va_cache);
337 pool_put(&puffs_pnpool, pn);
338 } else {
339 mutex_exit(&pn->pn_mtx);