xref: /openbsd/lib/libkvm/kvm_udf.c (revision 404b540a)
1 /*	$OpenBSD: kvm_udf.c,v 1.2 2009/06/20 20:20:43 millert Exp $	*/
2 
3 /*
4  * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #if defined(LIBC_SCCS) && !defined(lint)
30 static char *rcsid = "$OpenBSD: kvm_udf.c,v 1.2 2009/06/20 20:20:43 millert Exp $";
31 #endif /* LIBC_SCCS and not lint */
32 
33 #include <sys/param.h>
34 #include <sys/ucred.h>
35 #define _KERNEL
36 #include <sys/mount.h>
37 #undef _KERNEL
38 #include <sys/vnode.h>
39 #include <sys/sysctl.h>
40 
41 #include <isofs/udf/ecma167-udf.h>
42 #include <isofs/udf/udf.h>
43 #include <isofs/udf/udf_extern.h>
44 
45 #include <miscfs/specfs/specdev.h>
46 
47 #include <stdint.h>
48 #include <limits.h>
49 #include <kvm.h>
50 #include <db.h>
51 
52 #include "kvm_private.h"
53 
54 /* Convert file entry permission (5 bits per owner/group/user) to a mode_t */
55 static mode_t
56 udf_permtomode(struct unode *up)
57 {
58 	uint32_t perm;
59 	uint16_t flags;
60 	mode_t mode;
61 
62 	perm = letoh32(up->u_fentry->perm);
63 	flags = letoh16(up->u_fentry->icbtag.flags);
64 
65 	mode = perm & UDF_FENTRY_PERM_USER_MASK;
66 	mode |= ((perm & UDF_FENTRY_PERM_GRP_MASK) >> 2);
67 	mode |= ((perm & UDF_FENTRY_PERM_OWNER_MASK) >> 4);
68 	mode |= ((flags & UDF_ICB_TAG_FLAGS_STICKY) << 4);
69 	mode |= ((flags & UDF_ICB_TAG_FLAGS_SETGID) << 6);
70 	mode |= ((flags & UDF_ICB_TAG_FLAGS_SETUID) << 8);
71 
72 	return (mode);
73 }
74 
75 int
76 _kvm_stat_udf(kvm_t *kd, struct kinfo_file2 *kf, struct vnode *vp)
77 {
78 	struct unode up;
79 	struct file_entry fentry;
80 	struct umount um;
81 
82 	if (KREAD(kd, (u_long)VTOU(vp), &up)) {
83 		_kvm_err(kd, kd->program, "can't read unode at %p", VTOU(vp));
84 		return (-1);
85 	}
86 	if (KREAD(kd, (u_long)up.u_fentry, &fentry)) {
87 		_kvm_err(kd, kd->program, "can't read file_entry at %p",
88 		    up.u_fentry);
89 		return (-1);
90 	}
91 	if (KREAD(kd, (u_long)up.u_ump, &um)) {
92 		_kvm_err(kd, kd->program, "can't read umount at %p",
93 		    up.u_ump);
94 		return (-1);
95 	}
96 	kf->va_fsid = up.u_dev;
97 	kf->va_fileid = (long)up.u_ino;
98 	kf->va_mode = udf_permtomode(&up); /* XXX */
99 	kf->va_rdev = 0;
100 	if (vp->v_type & VDIR) {
101 		/*
102 		 * Directories that are recorded within their ICB will show
103 		 * as having 0 blocks recorded.  Since tradition dictates
104 		 * that directories consume at least one logical block,
105 		 * make it appear so.
106 		 */
107 		if (fentry.logblks_rec != 0) {
108 			kf->va_size =
109 			    letoh64(fentry.logblks_rec) * um.um_bsize;
110 		} else {
111 			kf->va_size = um.um_bsize;
112 		}
113 	} else {
114 		kf->va_size = letoh64(fentry.inf_len);
115 	}
116 
117 	return (0);
118 }
119