umap_vnops.c revision 1.29 1 /* $NetBSD: umap_vnops.c,v 1.29 2004/06/16 12:37:01 yamt Exp $ */
2
3 /*
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software donated to Berkeley by
8 * the UCLA Ficus project.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)umap_vnops.c 8.6 (Berkeley) 5/22/95
35 */
36
37 /*
38 * Umap Layer
39 */
40
41 #include <sys/cdefs.h>
42 __KERNEL_RCSID(0, "$NetBSD: umap_vnops.c,v 1.29 2004/06/16 12:37:01 yamt Exp $");
43
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/time.h>
47 #include <sys/vnode.h>
48 #include <sys/mount.h>
49 #include <sys/namei.h>
50 #include <sys/malloc.h>
51 #include <sys/buf.h>
52 #include <miscfs/umapfs/umap.h>
53 #include <miscfs/genfs/genfs.h>
54 #include <miscfs/genfs/layer_extern.h>
55
56 int umap_lookup __P((void *));
57 int umap_getattr __P((void *));
58 int umap_print __P((void *));
59 int umap_rename __P((void *));
60
61 /*
62 * Global vfs data structures
63 */
64 /*
65 * XXX - strategy, bwrite are hand coded currently. They should
66 * go away with a merged buffer/block cache.
67 *
68 */
69 int (**umap_vnodeop_p) __P((void *));
70 const struct vnodeopv_entry_desc umap_vnodeop_entries[] = {
71 { &vop_default_desc, umap_bypass },
72
73 { &vop_lookup_desc, umap_lookup },
74 { &vop_getattr_desc, umap_getattr },
75 { &vop_print_desc, umap_print },
76 { &vop_rename_desc, umap_rename },
77
78 { &vop_lock_desc, layer_lock },
79 { &vop_unlock_desc, layer_unlock },
80 { &vop_islocked_desc, layer_islocked },
81 { &vop_fsync_desc, layer_fsync },
82 { &vop_inactive_desc, layer_inactive },
83 { &vop_reclaim_desc, layer_reclaim },
84 { &vop_open_desc, layer_open },
85 { &vop_setattr_desc, layer_setattr },
86 { &vop_access_desc, layer_access },
87 { &vop_remove_desc, layer_remove },
88
89 { &vop_bwrite_desc, layer_bwrite },
90 { &vop_bmap_desc, layer_bmap },
91 { &vop_getpages_desc, layer_getpages },
92 { &vop_putpages_desc, layer_putpages },
93
94 { NULL, NULL }
95 };
96 const struct vnodeopv_desc umapfs_vnodeop_opv_desc =
97 { &umap_vnodeop_p, umap_vnodeop_entries };
98
99 /*
100 * This is the 08-June-1999 bypass routine.
101 * See layer_vnops.c:layer_bypass for more details.
102 */
103 int
104 umap_bypass(v)
105 void *v;
106 {
107 struct vop_generic_args /* {
108 struct vnodeop_desc *a_desc;
109 <other random data follows, presumably>
110 } */ *ap = v;
111 struct ucred **credpp = 0, *credp = 0;
112 struct ucred *savecredp = 0, *savecompcredp = 0;
113 struct ucred *compcredp = 0;
114 struct vnode **this_vp_p;
115 int error, error1;
116 int (**our_vnodeop_p) __P((void *));
117 struct vnode *old_vps[VDESC_MAX_VPS], *vp0;
118 struct vnode **vps_p[VDESC_MAX_VPS];
119 struct vnode ***vppp;
120 struct vnodeop_desc *descp = ap->a_desc;
121 int reles, i, flags;
122 struct componentname **compnamepp = 0;
123
124 #ifdef SAFETY
125 /*
126 * We require at least one vp.
127 */
128 if (descp->vdesc_vp_offsets == NULL ||
129 descp->vdesc_vp_offsets[0] == VDESC_NO_OFFSET)
130 panic ("umap_bypass: no vp's in map.\n");
131 #endif
132 vps_p[0] = VOPARG_OFFSETTO(struct vnode**,descp->vdesc_vp_offsets[0],
133 ap);
134 vp0 = *vps_p[0];
135 flags = MOUNTTOUMAPMOUNT(vp0->v_mount)->umapm_flags;
136 our_vnodeop_p = vp0->v_op;
137
138 if (flags & LAYERFS_MBYPASSDEBUG)
139 printf("umap_bypass: %s\n", descp->vdesc_name);
140
141 /*
142 * Map the vnodes going in.
143 * Later, we'll invoke the operation based on
144 * the first mapped vnode's operation vector.
145 */
146 reles = descp->vdesc_flags;
147 for (i = 0; i < VDESC_MAX_VPS; reles >>= 1, i++) {
148 if (descp->vdesc_vp_offsets[i] == VDESC_NO_OFFSET)
149 break; /* bail out at end of list */
150 vps_p[i] = this_vp_p =
151 VOPARG_OFFSETTO(struct vnode**, descp->vdesc_vp_offsets[i], ap);
152
153 /*
154 * We're not guaranteed that any but the first vnode
155 * are of our type. Check for and don't map any
156 * that aren't. (Must map first vp or vclean fails.)
157 */
158
159 if (i && ((*this_vp_p)==NULL ||
160 (*this_vp_p)->v_op != our_vnodeop_p)) {
161 old_vps[i] = NULL;
162 } else {
163 old_vps[i] = *this_vp_p;
164 *(vps_p[i]) = UMAPVPTOLOWERVP(*this_vp_p);
165 if (reles & 1)
166 VREF(*this_vp_p);
167 }
168
169 }
170
171 /*
172 * Fix the credentials. (That's the purpose of this layer.)
173 */
174
175 if (descp->vdesc_cred_offset != VDESC_NO_OFFSET) {
176
177 credpp = VOPARG_OFFSETTO(struct ucred**,
178 descp->vdesc_cred_offset, ap);
179
180 /* Save old values */
181
182 savecredp = *credpp;
183 if (savecredp != NOCRED)
184 *credpp = crdup(savecredp);
185 credp = *credpp;
186
187 if ((flags & LAYERFS_MBYPASSDEBUG) && credp->cr_uid != 0)
188 printf("umap_bypass: user was %d, group %d\n",
189 credp->cr_uid, credp->cr_gid);
190
191 /* Map all ids in the credential structure. */
192
193 umap_mapids(vp0->v_mount, credp);
194
195 if ((flags & LAYERFS_MBYPASSDEBUG) && credp->cr_uid != 0)
196 printf("umap_bypass: user now %d, group %d\n",
197 credp->cr_uid, credp->cr_gid);
198 }
199
200 /* BSD often keeps a credential in the componentname structure
201 * for speed. If there is one, it better get mapped, too.
202 */
203
204 if (descp->vdesc_componentname_offset != VDESC_NO_OFFSET) {
205
206 compnamepp = VOPARG_OFFSETTO(struct componentname**,
207 descp->vdesc_componentname_offset, ap);
208
209 savecompcredp = (*compnamepp)->cn_cred;
210 if (savecompcredp != NOCRED)
211 (*compnamepp)->cn_cred = crdup(savecompcredp);
212 compcredp = (*compnamepp)->cn_cred;
213
214 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
215 printf("umap_bypass: component credit user was %d, group %d\n",
216 compcredp->cr_uid, compcredp->cr_gid);
217
218 /* Map all ids in the credential structure. */
219
220 umap_mapids(vp0->v_mount, compcredp);
221
222 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
223 printf("umap_bypass: component credit user now %d, group %d\n",
224 compcredp->cr_uid, compcredp->cr_gid);
225 }
226
227 /*
228 * Call the operation on the lower layer
229 * with the modified argument structure.
230 */
231 error = VCALL(*(vps_p[0]), descp->vdesc_offset, ap);
232
233 /*
234 * Maintain the illusion of call-by-value
235 * by restoring vnodes in the argument structure
236 * to their original value.
237 */
238 reles = descp->vdesc_flags;
239 for (i = 0; i < VDESC_MAX_VPS; reles >>= 1, i++) {
240 if (descp->vdesc_vp_offsets[i] == VDESC_NO_OFFSET)
241 break; /* bail out at end of list */
242 if (old_vps[i]) {
243 *(vps_p[i]) = old_vps[i];
244 if (reles & VDESC_VP0_WILLUNLOCK)
245 LAYERFS_UPPERUNLOCK(*(vps_p[i]), 0, error1);
246 if (reles & VDESC_VP0_WILLRELE)
247 vrele(*(vps_p[i]));
248 };
249 };
250
251 /*
252 * Map the possible out-going vpp
253 * (Assumes that the lower layer always returns
254 * a VREF'ed vpp unless it gets an error.)
255 */
256 if (descp->vdesc_vpp_offset != VDESC_NO_OFFSET &&
257 !(descp->vdesc_flags & VDESC_NOMAP_VPP) &&
258 !error) {
259 if (descp->vdesc_flags & VDESC_VPP_WILLRELE)
260 goto out;
261 vppp = VOPARG_OFFSETTO(struct vnode***,
262 descp->vdesc_vpp_offset, ap);
263 error = layer_node_create(old_vps[0]->v_mount, **vppp, *vppp);
264 if (error) {
265 vput(**vppp);
266 **vppp = NULL;
267 }
268 }
269
270 out:
271 /*
272 * Free duplicate cred structure and restore old one.
273 */
274 if (descp->vdesc_cred_offset != VDESC_NO_OFFSET) {
275 if ((flags & LAYERFS_MBYPASSDEBUG) && credp &&
276 credp->cr_uid != 0)
277 printf("umap_bypass: returning-user was %d\n",
278 credp->cr_uid);
279
280 if (savecredp != NOCRED) {
281 crfree(credp);
282 *credpp = savecredp;
283 if ((flags & LAYERFS_MBYPASSDEBUG) && credpp &&
284 (*credpp)->cr_uid != 0)
285 printf("umap_bypass: returning-user now %d\n\n",
286 savecredp->cr_uid);
287 }
288 }
289
290 if (descp->vdesc_componentname_offset != VDESC_NO_OFFSET) {
291 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp &&
292 compcredp->cr_uid != 0)
293 printf("umap_bypass: returning-component-user was %d\n",
294 compcredp->cr_uid);
295
296 if (savecompcredp != NOCRED) {
297 crfree(compcredp);
298 (*compnamepp)->cn_cred = savecompcredp;
299 if ((flags & LAYERFS_MBYPASSDEBUG) && savecompcredp &&
300 savecompcredp->cr_uid != 0)
301 printf("umap_bypass: returning-component-user now %d\n",
302 savecompcredp->cr_uid);
303 }
304 }
305
306 return (error);
307 }
308
309 /*
310 * This is based on the 08-June-1999 bypass routine.
311 * See layer_vnops.c:layer_bypass for more details.
312 */
313 int
314 umap_lookup(v)
315 void *v;
316 {
317 struct vop_lookup_args /* {
318 struct vnodeop_desc *a_desc;
319 struct vnode * a_dvp;
320 struct vnode ** a_vpp;
321 struct componentname * a_cnp;
322 } */ *ap = v;
323 struct componentname *cnp = ap->a_cnp;
324 struct ucred *savecompcredp = NULL;
325 struct ucred *compcredp = NULL;
326 struct vnode *dvp, *vp, *ldvp;
327 struct mount *mp;
328 int error;
329 int i, flags, cnf = cnp->cn_flags;
330
331 dvp = ap->a_dvp;
332 mp = dvp->v_mount;
333
334 if ((cnf & ISLASTCN) && (dvp->v_mount->mnt_flag & MNT_RDONLY) &&
335 (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME))
336 return (EROFS);
337
338 flags = MOUNTTOUMAPMOUNT(mp)->umapm_flags;
339 ldvp = UMAPVPTOLOWERVP(dvp);
340
341 if (flags & LAYERFS_MBYPASSDEBUG)
342 printf("umap_lookup\n");
343
344 /*
345 * Fix the credentials. (That's the purpose of this layer.)
346 *
347 * BSD often keeps a credential in the componentname structure
348 * for speed. If there is one, it better get mapped, too.
349 */
350
351 if ((savecompcredp = cnp->cn_cred)) {
352 compcredp = crdup(savecompcredp);
353 cnp->cn_cred = compcredp;
354
355 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
356 printf("umap_lookup: component credit user was %d, group %d\n",
357 compcredp->cr_uid, compcredp->cr_gid);
358
359 /* Map all ids in the credential structure. */
360 umap_mapids(mp, compcredp);
361 }
362
363 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
364 printf("umap_lookup: component credit user now %d, group %d\n",
365 compcredp->cr_uid, compcredp->cr_gid);
366
367 ap->a_dvp = ldvp;
368 error = VCALL(ldvp, ap->a_desc->vdesc_offset, ap);
369 vp = *ap->a_vpp;
370 *ap->a_vpp = NULL;
371
372 if (error == EJUSTRETURN && (cnf & ISLASTCN) &&
373 (dvp->v_mount->mnt_flag & MNT_RDONLY) &&
374 (cnp->cn_nameiop == CREATE || cnp->cn_nameiop == RENAME))
375 error = EROFS;
376
377 /* Do locking fixup as appropriate. See layer_lookup() for info */
378 if ((cnp->cn_flags & PDIRUNLOCK)) {
379 LAYERFS_UPPERUNLOCK(dvp, 0, i);
380 }
381 if (ldvp == vp) {
382 *ap->a_vpp = dvp;
383 VREF(dvp);
384 vrele(vp);
385 } else if (vp != NULL) {
386 error = layer_node_create(mp, vp, ap->a_vpp);
387 if (error) {
388 vput(vp);
389 if (cnp->cn_flags & PDIRUNLOCK) {
390 vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
391 cnp->cn_flags &= ~PDIRUNLOCK;
392 }
393 }
394 }
395
396 /*
397 * Free duplicate cred structure and restore old one.
398 */
399 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp &&
400 compcredp->cr_uid != 0)
401 printf("umap_lookup: returning-component-user was %d\n",
402 compcredp->cr_uid);
403
404 if (savecompcredp != NOCRED) {
405 crfree(compcredp);
406 cnp->cn_cred = savecompcredp;
407 if ((flags & LAYERFS_MBYPASSDEBUG) && savecompcredp &&
408 savecompcredp->cr_uid != 0)
409 printf("umap_lookup: returning-component-user now %d\n",
410 savecompcredp->cr_uid);
411 }
412
413 return (error);
414 }
415
416 /*
417 * We handle getattr to change the fsid.
418 */
419 int
420 umap_getattr(v)
421 void *v;
422 {
423 struct vop_getattr_args /* {
424 struct vnode *a_vp;
425 struct vattr *a_vap;
426 struct ucred *a_cred;
427 struct proc *a_p;
428 } */ *ap = v;
429 uid_t uid;
430 gid_t gid;
431 int error, tmpid, nentries, gnentries, flags;
432 u_long (*mapdata)[2];
433 u_long (*gmapdata)[2];
434 struct vnode **vp1p;
435 const struct vnodeop_desc *descp = ap->a_desc;
436
437 if ((error = umap_bypass(ap)) != 0)
438 return (error);
439 /* Requires that arguments be restored. */
440 ap->a_vap->va_fsid = ap->a_vp->v_mount->mnt_stat.f_fsidx.__fsid_val[0];
441
442 flags = MOUNTTOUMAPMOUNT(ap->a_vp->v_mount)->umapm_flags;
443 /*
444 * Umap needs to map the uid and gid returned by a stat
445 * into the proper values for this site. This involves
446 * finding the returned uid in the mapping information,
447 * translating it into the uid on the other end,
448 * and filling in the proper field in the vattr
449 * structure pointed to by ap->a_vap. The group
450 * is easier, since currently all groups will be
451 * translate to the NULLGROUP.
452 */
453
454 /* Find entry in map */
455
456 uid = ap->a_vap->va_uid;
457 gid = ap->a_vap->va_gid;
458 if ((flags & LAYERFS_MBYPASSDEBUG))
459 printf("umap_getattr: mapped uid = %d, mapped gid = %d\n", uid,
460 gid);
461
462 vp1p = VOPARG_OFFSETTO(struct vnode**, descp->vdesc_vp_offsets[0], ap);
463 nentries = MOUNTTOUMAPMOUNT((*vp1p)->v_mount)->info_nentries;
464 mapdata = (MOUNTTOUMAPMOUNT((*vp1p)->v_mount)->info_mapdata);
465 gnentries = MOUNTTOUMAPMOUNT((*vp1p)->v_mount)->info_gnentries;
466 gmapdata = (MOUNTTOUMAPMOUNT((*vp1p)->v_mount)->info_gmapdata);
467
468 /* Reverse map the uid for the vnode. Since it's a reverse
469 map, we can't use umap_mapids() to do it. */
470
471 tmpid = umap_reverse_findid(uid, mapdata, nentries);
472
473 if (tmpid != -1) {
474 ap->a_vap->va_uid = (uid_t) tmpid;
475 if ((flags & LAYERFS_MBYPASSDEBUG))
476 printf("umap_getattr: original uid = %d\n", uid);
477 } else
478 ap->a_vap->va_uid = (uid_t) NOBODY;
479
480 /* Reverse map the gid for the vnode. */
481
482 tmpid = umap_reverse_findid(gid, gmapdata, gnentries);
483
484 if (tmpid != -1) {
485 ap->a_vap->va_gid = (gid_t) tmpid;
486 if ((flags & LAYERFS_MBYPASSDEBUG))
487 printf("umap_getattr: original gid = %d\n", gid);
488 } else
489 ap->a_vap->va_gid = (gid_t) NULLGROUP;
490
491 return (0);
492 }
493
494 int
495 umap_print(v)
496 void *v;
497 {
498 struct vop_print_args /* {
499 struct vnode *a_vp;
500 } */ *ap = v;
501 struct vnode *vp = ap->a_vp;
502 printf("\ttag VT_UMAPFS, vp=%p, lowervp=%p\n", vp,
503 UMAPVPTOLOWERVP(vp));
504 return (0);
505 }
506
507 int
508 umap_rename(v)
509 void *v;
510 {
511 struct vop_rename_args /* {
512 struct vnode *a_fdvp;
513 struct vnode *a_fvp;
514 struct componentname *a_fcnp;
515 struct vnode *a_tdvp;
516 struct vnode *a_tvp;
517 struct componentname *a_tcnp;
518 } */ *ap = v;
519 int error, flags;
520 struct componentname *compnamep;
521 struct ucred *compcredp, *savecompcredp;
522 struct vnode *vp;
523 struct vnode *tvp;
524
525 /*
526 * Rename is irregular, having two componentname structures.
527 * We need to map the cre in the second structure,
528 * and then bypass takes care of the rest.
529 */
530
531 vp = ap->a_fdvp;
532 flags = MOUNTTOUMAPMOUNT(vp->v_mount)->umapm_flags;
533 compnamep = ap->a_tcnp;
534 compcredp = compnamep->cn_cred;
535
536 savecompcredp = compcredp;
537 compcredp = compnamep->cn_cred = crdup(savecompcredp);
538
539 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
540 printf("umap_rename: rename component credit user was %d, group %d\n",
541 compcredp->cr_uid, compcredp->cr_gid);
542
543 /* Map all ids in the credential structure. */
544
545 umap_mapids(vp->v_mount, compcredp);
546
547 if ((flags & LAYERFS_MBYPASSDEBUG) && compcredp->cr_uid != 0)
548 printf("umap_rename: rename component credit user now %d, group %d\n",
549 compcredp->cr_uid, compcredp->cr_gid);
550
551 tvp = ap->a_tvp;
552 if (tvp) {
553 if (tvp->v_mount != vp->v_mount)
554 tvp = NULL;
555 else
556 vref(tvp);
557 }
558 error = umap_bypass(ap);
559 if (tvp) {
560 if (error == 0)
561 VTOLAYER(tvp)->layer_flags |= LAYERFS_REMOVED;
562 vrele(tvp);
563 }
564
565 /* Restore the additional mapped componentname cred structure. */
566
567 crfree(compcredp);
568 compnamep->cn_cred = savecompcredp;
569
570 return error;
571 }
572