6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 */
25
26 #pragma ident "%Z%%M% %I% %E% SMI"
27
28 #include <sys/types.h>
29 #include <sys/param.h>
30 #include <sys/time.h>
31 #include <sys/cred.h>
32 #include <sys/vfs.h>
33 #include <sys/vfs_opreg.h>
34 #include <sys/gfs.h>
35 #include <sys/vnode.h>
36 #include <sys/systm.h>
37 #include <sys/errno.h>
38 #include <sys/sysmacros.h>
39 #include <fs/fs_subr.h>
40 #include <sys/contract.h>
41 #include <sys/contract_impl.h>
42 #include <sys/ctfs.h>
43 #include <sys/ctfs_impl.h>
44 #include <sys/file.h>
45
46 /*
47 * CTFS routines for the /system/contract/<type>/latest vnode.
164 vap->va_mode = 0444;
165 vap->va_nlink = 1;
166 vap->va_size = 0;
167 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
168 vap->va_ctime.tv_nsec = 0;
169 vap->va_atime = vap->va_mtime = vap->va_ctime;
170 ctfs_common_getattr(vp, vap);
171
172 return (0);
173 }
174
175 const fs_operation_def_t ctfs_tops_latest[] = {
176 { VOPNAME_OPEN, { .vop_open = ctfs_latest_open } },
177 { VOPNAME_CLOSE, { .error = fs_inval } },
178 { VOPNAME_IOCTL, { .error = fs_inval } },
179 { VOPNAME_GETATTR, { .vop_getattr = ctfs_latest_getattr } },
180 { VOPNAME_ACCESS, { .vop_access = ctfs_latest_access } },
181 { VOPNAME_READDIR, { .error = fs_notdir } },
182 { VOPNAME_LOOKUP, { .error = fs_notdir } },
183 { VOPNAME_INACTIVE, { .vop_inactive = gfs_vop_inactive } },
184 { NULL, NULL }
185 };
|
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 */
25
26
27
28 #include <sys/types.h>
29 #include <sys/param.h>
30 #include <sys/time.h>
31 #include <sys/cred.h>
32 #include <sys/vfs.h>
33 #include <sys/vfs_opreg.h>
34 #include <sys/gfs.h>
35 #include <sys/vnode.h>
36 #include <sys/systm.h>
37 #include <sys/errno.h>
38 #include <sys/sysmacros.h>
39 #include <fs/fs_subr.h>
40 #include <sys/contract.h>
41 #include <sys/contract_impl.h>
42 #include <sys/ctfs.h>
43 #include <sys/ctfs_impl.h>
44 #include <sys/file.h>
45
46 /*
47 * CTFS routines for the /system/contract/<type>/latest vnode.
164 vap->va_mode = 0444;
165 vap->va_nlink = 1;
166 vap->va_size = 0;
167 vap->va_ctime.tv_sec = vp->v_vfsp->vfs_mtime;
168 vap->va_ctime.tv_nsec = 0;
169 vap->va_atime = vap->va_mtime = vap->va_ctime;
170 ctfs_common_getattr(vp, vap);
171
172 return (0);
173 }
174
175 const fs_operation_def_t ctfs_tops_latest[] = {
176 { VOPNAME_OPEN, { .vop_open = ctfs_latest_open } },
177 { VOPNAME_CLOSE, { .error = fs_inval } },
178 { VOPNAME_IOCTL, { .error = fs_inval } },
179 { VOPNAME_GETATTR, { .vop_getattr = ctfs_latest_getattr } },
180 { VOPNAME_ACCESS, { .vop_access = ctfs_latest_access } },
181 { VOPNAME_READDIR, { .error = fs_notdir } },
182 { VOPNAME_LOOKUP, { .error = fs_notdir } },
183 { VOPNAME_INACTIVE, { .vop_inactive = gfs_vop_inactive } },
184 { NULL, { NULL } }
185 };
|