1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 1992, 1993 5 * The Regents of the University of California. All rights reserved. 6 * Copyright (c) 2000 7 * Poul-Henning Kamp. All rights reserved. 8 * Copyright (c) 2002 9 * Dima Dorfman. All rights reserved. 10 * 11 * This code is derived from software donated to Berkeley by 12 * Jan-Simon Pendry. 13 * 14 * Redistribution and use in source and binary forms, with or without 15 * modification, are permitted provided that the following conditions 16 * are met: 17 * 1. Redistributions of source code must retain the above copyright 18 * notice, this list of conditions and the following disclaimer. 19 * 2. Neither the name of the University nor the names of its contributors 20 * may be used to endorse or promote products derived from this software 21 * without specific prior written permission. 22 * 23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 * SUCH DAMAGE. 34 * 35 * @(#)kernfs.h 8.6 (Berkeley) 3/29/95 36 * From: FreeBSD: src/sys/miscfs/kernfs/kernfs.h 1.14 37 */ 38 39 #ifndef _FS_DEVFS_DEVFS_H_ 40 #define _FS_DEVFS_DEVFS_H_ 41 42 #define DEVFS_MAGIC 0xdb0a087a 43 44 /* 45 * Identifiers. The ruleset and rule numbers are 16-bit values. The 46 * "rule ID" is a combination of the ruleset and rule number; it 47 * should be able to univocally describe a rule in the system. In 48 * this implementation, the upper 16 bits of the rule ID is the 49 * ruleset number; the lower 16 bits, the rule number within the 50 * aforementioned ruleset. 51 */ 52 typedef uint16_t devfs_rnum; 53 typedef uint16_t devfs_rsnum; 54 typedef uint32_t devfs_rid; 55 56 /* 57 * Identifier manipulators. 58 */ 59 #define rid2rsn(rid) ((rid) >> 16) 60 #define rid2rn(rid) ((rid) & 0xffff) 61 #define mkrid(rsn, rn) ((rn) | ((rsn) << 16)) 62 63 /* 64 * Plain DEVFS rule. This gets shared between kernel and userland 65 * verbatim, so it shouldn't contain any pointers or other kernel- or 66 * userland-specific values. 67 */ 68 struct devfs_rule { 69 uint32_t dr_magic; /* Magic number. */ 70 devfs_rid dr_id; /* Identifier. */ 71 72 /* 73 * Conditions under which this rule should be applied. These 74 * are ANDed together since OR can be simulated by using 75 * multiple rules. dr_icond determines which of the other 76 * variables we should process. 77 */ 78 int dr_icond; 79 #define DRC_DSWFLAGS 0x001 80 #define DRC_PATHPTRN 0x002 81 int dr_dswflags; /* cdevsw flags to match. */ 82 #define DEVFS_MAXPTRNLEN 200 83 char dr_pathptrn[DEVFS_MAXPTRNLEN]; /* Pattern to match path. */ 84 85 /* 86 * Things to change. dr_iacts determines which of the other 87 * variables we should process. 88 */ 89 int dr_iacts; 90 #define DRA_BACTS 0x001 91 #define DRA_UID 0x002 92 #define DRA_GID 0x004 93 #define DRA_MODE 0x008 94 #define DRA_INCSET 0x010 95 int dr_bacts; /* Boolean (on/off) action. */ 96 #define DRB_HIDE 0x001 /* Hide entry (DE_WHITEOUT). */ 97 #define DRB_UNHIDE 0x002 /* Unhide entry. */ 98 uid_t dr_uid; 99 gid_t dr_gid; 100 mode_t dr_mode; 101 devfs_rsnum dr_incset; /* Included ruleset. */ 102 }; 103 104 /* 105 * Rule-related ioctls. 106 */ 107 #define DEVFSIO_RADD _IOWR('D', 0, struct devfs_rule) 108 #define DEVFSIO_RDEL _IOW('D', 1, devfs_rid) 109 #define DEVFSIO_RAPPLY _IOW('D', 2, struct devfs_rule) 110 #define DEVFSIO_RAPPLYID _IOW('D', 3, devfs_rid) 111 #define DEVFSIO_RGETNEXT _IOWR('D', 4, struct devfs_rule) 112 113 #define DEVFSIO_SUSE _IOW('D', 10, devfs_rsnum) 114 #define DEVFSIO_SAPPLY _IOW('D', 11, devfs_rsnum) 115 #define DEVFSIO_SGETNEXT _IOWR('D', 12, devfs_rsnum) 116 117 /* XXX: DEVFSIO_RS_GET_INFO for refcount, active if any, etc. */ 118 119 #ifdef _KERNEL 120 121 #ifdef MALLOC_DECLARE 122 MALLOC_DECLARE(M_DEVFS); 123 #endif 124 125 #endif /* _KERNEL */ 126 127 struct componentname; 128 129 TAILQ_HEAD(devfs_dlist_head, devfs_dirent); 130 131 struct devfs_dirent { 132 struct cdev_priv *de_cdp; 133 int de_inode; 134 int de_flags; 135 #define DE_WHITEOUT 0x01 136 #define DE_DOT 0x02 137 #define DE_DOTDOT 0x04 138 #define DE_DOOMED 0x08 139 #define DE_COVERED 0x10 140 #define DE_USER 0x20 141 int de_holdcnt; 142 struct dirent *de_dirent; 143 TAILQ_ENTRY(devfs_dirent) de_list; 144 struct devfs_dlist_head de_dlist; 145 struct devfs_dirent *de_dir; 146 int de_links; 147 mode_t de_mode; 148 uid_t de_uid; 149 gid_t de_gid; 150 struct label *de_label; 151 struct timespec de_atime; 152 struct timespec de_mtime; 153 struct timespec de_ctime; 154 struct vnode *de_vnode; 155 char *de_symlink; 156 int de_usecount; 157 }; 158 159 #include <sys/_lock.h> 160 #include <sys/_sx.h> 161 162 struct devfs_mount { 163 u_int dm_idx; 164 struct mount *dm_mount; 165 struct devfs_dirent *dm_rootdir; 166 unsigned dm_generation; 167 int dm_holdcnt; 168 struct sx dm_lock; 169 devfs_rsnum dm_ruleset; 170 }; 171 172 #define DEVFS_ROOTINO 2 173 174 #ifdef _KERNEL 175 176 extern unsigned devfs_rule_depth; 177 178 #define VFSTODEVFS(mp) ((struct devfs_mount *)((mp)->mnt_data)) 179 180 #define DEVFS_DE_HOLD(de) ((de)->de_holdcnt++) 181 #define DEVFS_DE_DROP(de) (--(de)->de_holdcnt == 0) 182 183 #define DEVFS_DMP_HOLD(dmp) ((dmp)->dm_holdcnt++) 184 #define DEVFS_DMP_DROP(dmp) (--(dmp)->dm_holdcnt == 0) 185 186 #define DEVFS_DEL_NORECURSE 0x01 187 188 void devfs_rules_apply(struct devfs_mount *, struct devfs_dirent *); 189 void devfs_rules_cleanup(struct devfs_mount *); 190 int devfs_rules_ioctl(struct devfs_mount *, u_long, caddr_t, 191 struct thread *); 192 void devfs_ruleset_set(devfs_rsnum rsnum, struct devfs_mount *dm); 193 void devfs_ruleset_apply(struct devfs_mount *dm); 194 int devfs_allocv(struct devfs_dirent *, struct mount *, int, 195 struct vnode **); 196 char *devfs_fqpn(char *, struct devfs_mount *, struct devfs_dirent *, 197 struct componentname *); 198 void devfs_delete(struct devfs_mount *, struct devfs_dirent *, int); 199 void devfs_dirent_free(struct devfs_dirent *); 200 int devfs_populate_needed(struct devfs_mount *dm); 201 void devfs_populate(struct devfs_mount *); 202 void devfs_cleanup(struct devfs_mount *); 203 void devfs_unmount_final(struct devfs_mount *); 204 struct devfs_dirent *devfs_newdirent(char *, int); 205 struct devfs_dirent *devfs_parent_dirent(struct devfs_dirent *); 206 struct devfs_dirent *devfs_vmkdir(struct devfs_mount *, char *, int, 207 struct devfs_dirent *, u_int); 208 struct devfs_dirent *devfs_find(struct devfs_dirent *, const char *, int, 209 int); 210 211 void devfs_ctty_ref(struct vnode *); 212 void devfs_ctty_unref(struct vnode *); 213 int devfs_usecount(struct vnode *); 214 215 #endif /* _KERNEL */ 216 217 #endif /* !_FS_DEVFS_DEVFS_H_ */ 218