1 /* $NetBSD: subr.c,v 1.27 2011/02/17 17:55:36 pooka Exp $ */
4 * Copyright (c) 2006 Antti Kantee. All Rights Reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
16 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 #include <sys/cdefs.h>
30 __RCSID("$NetBSD: subr.c,v 1.27 2011/02/17 17:55:36 pooka Exp $");
33 #include <sys/types.h>
35 #include <sys/vnode.h>
36 #include <sys/dirent.h>
46 #include "puffs_priv.h"
49 puffs_gendotdent(struct dirent
**dent
, ino_t id
, int dotdot
, size_t *reslen
)
53 assert(dotdot
== 0 || dotdot
== 1);
54 name
= dotdot
== 0 ? "." : "..";
56 return puffs_nextdent(dent
, name
, id
, DT_DIR
, reslen
);
60 puffs_nextdent(struct dirent
**dent
, const char *name
, ino_t id
, uint8_t dtype
,
63 struct dirent
*d
= *dent
;
65 /* check if we have enough room for our dent-aligned dirent */
66 if (_DIRENT_RECLEN(d
, strlen(name
)) > *reslen
)
71 d
->d_namlen
= (uint16_t)strlen(name
);
72 (void)memcpy(&d
->d_name
, name
, (size_t)d
->d_namlen
);
73 d
->d_name
[d
->d_namlen
] = '\0';
74 d
->d_reclen
= (uint16_t)_DIRENT_SIZE(d
);
76 *reslen
-= d
->d_reclen
;
77 *dent
= _DIRENT_NEXT(d
);
84 puffs_fsnop_unmount(struct puffs_usermount
*dontuse1
, int dontuse2
)
87 /* would you like to see puffs rule again, my friend? */
93 puffs_fsnop_sync(struct puffs_usermount
*dontuse1
, int dontuse2
,
94 const struct puffs_cred
*dontuse3
)
102 puffs_fsnop_statvfs(struct puffs_usermount
*dontuse1
, struct statvfs
*sbp
)
105 sbp
->f_bsize
= sbp
->f_frsize
= sbp
->f_iosize
= DEV_BSIZE
;
107 sbp
->f_bfree
=sbp
->f_bavail
=sbp
->f_bresvd
=sbp
->f_blocks
= (fsblkcnt_t
)0;
108 sbp
->f_ffree
=sbp
->f_favail
=sbp
->f_fresvd
=sbp
->f_files
= (fsfilcnt_t
)0;
110 sbp
->f_namemax
= MAXNAMLEN
;
117 puffs_genfs_node_getattr(struct puffs_usermount
*pu
, puffs_cookie_t opc
,
118 struct vattr
*va
, const struct puffs_cred
*pcr
)
120 struct puffs_node
*pn
= PU_CMAP(pu
, opc
);
122 memcpy(va
, &pn
->pn_va
, sizeof(struct vattr
));
127 * Just put the node, don't do anything else. Don't use this if
128 * your fs needs more cleanup.
132 puffs_genfs_node_reclaim(struct puffs_usermount
*pu
, puffs_cookie_t opc
)
135 puffs_pn_put(PU_CMAP(pu
, opc
));
141 * Just a wrapper to make calling the above nicer without having to pass
142 * NULLs from application code
145 puffs_zerostatvfs(struct statvfs
*sbp
)
148 puffs_fsnop_statvfs(NULL
, sbp
);
152 * Set vattr values for those applicable (i.e. not PUFFS_VNOVAL).
155 puffs_setvattr(struct vattr
*vap
, const struct vattr
*sva
)
158 #define SETIFVAL(a, t) if (sva->a != (t)PUFFS_VNOVAL) vap->a = sva->a
159 if (sva
->va_type
!= VNON
)
160 vap
->va_type
= sva
->va_type
;
161 SETIFVAL(va_mode
, mode_t
);
162 SETIFVAL(va_nlink
, nlink_t
);
163 SETIFVAL(va_uid
, uid_t
);
164 SETIFVAL(va_gid
, gid_t
);
165 SETIFVAL(va_fsid
, dev_t
);
166 SETIFVAL(va_size
, u_quad_t
);
167 SETIFVAL(va_fileid
, ino_t
);
168 SETIFVAL(va_blocksize
, long);
169 SETIFVAL(va_atime
.tv_sec
, time_t);
170 SETIFVAL(va_ctime
.tv_sec
, time_t);
171 SETIFVAL(va_mtime
.tv_sec
, time_t);
172 SETIFVAL(va_birthtime
.tv_sec
, time_t);
173 SETIFVAL(va_atime
.tv_nsec
, long);
174 SETIFVAL(va_ctime
.tv_nsec
, long);
175 SETIFVAL(va_mtime
.tv_nsec
, long);
176 SETIFVAL(va_birthtime
.tv_nsec
, long);
177 SETIFVAL(va_gen
, u_long
);
178 SETIFVAL(va_flags
, u_long
);
179 SETIFVAL(va_rdev
, dev_t
);
180 SETIFVAL(va_bytes
, u_quad_t
);
182 /* ignore va->va_vaflags */
186 puffs_vattr_null(struct vattr
*vap
)
192 * Assign individually so that it is safe even if size and
193 * sign of each member are varied.
195 vap
->va_mode
= (mode_t
)PUFFS_VNOVAL
;
196 vap
->va_nlink
= (nlink_t
)PUFFS_VNOVAL
;
197 vap
->va_uid
= (uid_t
)PUFFS_VNOVAL
;
198 vap
->va_gid
= (gid_t
)PUFFS_VNOVAL
;
199 vap
->va_fsid
= (dev_t
)PUFFS_VNOVAL
;
200 vap
->va_fileid
= (ino_t
)PUFFS_VNOVAL
;
201 vap
->va_size
= (u_quad_t
)PUFFS_VNOVAL
;
202 vap
->va_blocksize
= sysconf(_SC_PAGESIZE
);
203 vap
->va_atime
.tv_sec
=
204 vap
->va_mtime
.tv_sec
=
205 vap
->va_ctime
.tv_sec
=
206 vap
->va_birthtime
.tv_sec
= PUFFS_VNOVAL
;
207 vap
->va_atime
.tv_nsec
=
208 vap
->va_mtime
.tv_nsec
=
209 vap
->va_ctime
.tv_nsec
=
210 vap
->va_birthtime
.tv_nsec
= PUFFS_VNOVAL
;
211 vap
->va_rdev
= (dev_t
)PUFFS_VNOVAL
;
212 vap
->va_bytes
= (u_quad_t
)PUFFS_VNOVAL
;
219 static int vdmap
[] = {
220 DT_UNKNOWN
, /* VNON */
228 DT_UNKNOWN
/* VBAD */
232 puffs_vtype2dt(enum vtype vt
)
235 if ((int)vt
>= VNON
&& vt
< (sizeof(vdmap
)/sizeof(vdmap
[0])))
242 puffs_mode2vt(mode_t mode
)
245 switch (mode
& S_IFMT
) {
261 return VBAD
; /* XXX: not really true, but ... */
266 puffs_stat2vattr(struct vattr
*va
, const struct stat
*sb
)
269 va
->va_type
= puffs_mode2vt(sb
->st_mode
);
270 va
->va_mode
= sb
->st_mode
;
271 va
->va_nlink
= sb
->st_nlink
;
272 va
->va_uid
= sb
->st_uid
;
273 va
->va_gid
= sb
->st_gid
;
274 va
->va_fsid
= sb
->st_dev
;
275 va
->va_fileid
= sb
->st_ino
;
276 va
->va_size
= sb
->st_size
;
277 va
->va_blocksize
= sb
->st_blksize
;
278 va
->va_atime
= sb
->st_atimespec
;
279 va
->va_ctime
= sb
->st_ctimespec
;
280 va
->va_mtime
= sb
->st_mtimespec
;
281 va
->va_birthtime
= sb
->st_birthtimespec
;
282 va
->va_gen
= sb
->st_gen
;
283 va
->va_flags
= sb
->st_flags
;
284 va
->va_rdev
= sb
->st_rdev
;
285 va
->va_bytes
= sb
->st_blocks
<< DEV_BSHIFT
;
291 puffs_addvtype2mode(mode_t mode
, enum vtype type
)