xref: /titanic_52/usr/src/uts/common/sys/lofi.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate 
28*7c478bd9Sstevel@tonic-gate #ifndef	_SYS_LOFI_H
29*7c478bd9Sstevel@tonic-gate #define	_SYS_LOFI_H
30*7c478bd9Sstevel@tonic-gate 
31*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
32*7c478bd9Sstevel@tonic-gate 
33*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
34*7c478bd9Sstevel@tonic-gate #include <sys/time.h>
35*7c478bd9Sstevel@tonic-gate #include <sys/taskq.h>
36*7c478bd9Sstevel@tonic-gate #include <sys/vtoc.h>
37*7c478bd9Sstevel@tonic-gate #include <sys/dkio.h>
38*7c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
41*7c478bd9Sstevel@tonic-gate extern "C" {
42*7c478bd9Sstevel@tonic-gate #endif
43*7c478bd9Sstevel@tonic-gate 
44*7c478bd9Sstevel@tonic-gate /*
45*7c478bd9Sstevel@tonic-gate  * /dev names:
46*7c478bd9Sstevel@tonic-gate  *	/dev/lofictl	- master control device
47*7c478bd9Sstevel@tonic-gate  *	/dev/lofi	- block devices, named by minor number
48*7c478bd9Sstevel@tonic-gate  *	/dev/rlofi	- character devices, named by minor number
49*7c478bd9Sstevel@tonic-gate  */
50*7c478bd9Sstevel@tonic-gate #define	LOFI_DRIVER_NAME	"lofi"
51*7c478bd9Sstevel@tonic-gate #define	LOFI_CTL_NODE		"ctl"
52*7c478bd9Sstevel@tonic-gate #define	LOFI_CTL_NAME		LOFI_DRIVER_NAME LOFI_CTL_NODE
53*7c478bd9Sstevel@tonic-gate #define	LOFI_BLOCK_NAME		LOFI_DRIVER_NAME
54*7c478bd9Sstevel@tonic-gate #define	LOFI_CHAR_NAME		"r" LOFI_DRIVER_NAME
55*7c478bd9Sstevel@tonic-gate 
56*7c478bd9Sstevel@tonic-gate /*
57*7c478bd9Sstevel@tonic-gate  *
58*7c478bd9Sstevel@tonic-gate  * Use is:
59*7c478bd9Sstevel@tonic-gate  *	ld = open("/dev/lofictl", O_RDWR | O_EXCL);
60*7c478bd9Sstevel@tonic-gate  *
61*7c478bd9Sstevel@tonic-gate  * lofi must be opened exclusively. Access is controlled by permissions on
62*7c478bd9Sstevel@tonic-gate  * the device, which is 644 by default. Write-access is required for ioctls
63*7c478bd9Sstevel@tonic-gate  * that change state, but only read-access is required for the ioctls that
64*7c478bd9Sstevel@tonic-gate  * return information. Basically, only root can add and remove files, but
65*7c478bd9Sstevel@tonic-gate  * non-root can look at the current lists.
66*7c478bd9Sstevel@tonic-gate  *
67*7c478bd9Sstevel@tonic-gate  * ioctl usage:
68*7c478bd9Sstevel@tonic-gate  *
69*7c478bd9Sstevel@tonic-gate  * kernel ioctls
70*7c478bd9Sstevel@tonic-gate  *
71*7c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
72*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_MAP_FILE, &li);
73*7c478bd9Sstevel@tonic-gate  *	newminor = li.li_minor;
74*7c478bd9Sstevel@tonic-gate  *
75*7c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
76*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_UNMAP_FILE, &li);
77*7c478bd9Sstevel@tonic-gate  *
78*7c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
79*7c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
80*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_MAP_FILE_MINOR, &li);
81*7c478bd9Sstevel@tonic-gate  *
82*7c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
83*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_UNMAP_FILE_MINOR, &li);
84*7c478bd9Sstevel@tonic-gate  *
85*7c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
86*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_FILENAME, &li);
87*7c478bd9Sstevel@tonic-gate  *
88*7c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
89*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_MINOR, &li);
90*7c478bd9Sstevel@tonic-gate  *
91*7c478bd9Sstevel@tonic-gate  *	li.li_minor = 0;
92*7c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_MAXMINOR, &li);
93*7c478bd9Sstevel@tonic-gate  *	maxminor = li.li_minor;
94*7c478bd9Sstevel@tonic-gate  *
95*7c478bd9Sstevel@tonic-gate  * Oh, and last but not least: these ioctls are totally private and only
96*7c478bd9Sstevel@tonic-gate  * for use by lofiadm(1M).
97*7c478bd9Sstevel@tonic-gate  *
98*7c478bd9Sstevel@tonic-gate  */
99*7c478bd9Sstevel@tonic-gate 
100*7c478bd9Sstevel@tonic-gate struct lofi_ioctl {
101*7c478bd9Sstevel@tonic-gate 	uint32_t li_minor;
102*7c478bd9Sstevel@tonic-gate 	char	li_filename[MAXPATHLEN + 1];
103*7c478bd9Sstevel@tonic-gate };
104*7c478bd9Sstevel@tonic-gate 
105*7c478bd9Sstevel@tonic-gate #define	LOFI_IOC_BASE		(('L' << 16) | ('F' << 8))
106*7c478bd9Sstevel@tonic-gate 
107*7c478bd9Sstevel@tonic-gate #define	LOFI_MAP_FILE		(LOFI_IOC_BASE | 0x01)
108*7c478bd9Sstevel@tonic-gate #define	LOFI_MAP_FILE_MINOR	(LOFI_IOC_BASE | 0x02)
109*7c478bd9Sstevel@tonic-gate #define	LOFI_UNMAP_FILE		(LOFI_IOC_BASE | 0x03)
110*7c478bd9Sstevel@tonic-gate #define	LOFI_UNMAP_FILE_MINOR	(LOFI_IOC_BASE | 0x04)
111*7c478bd9Sstevel@tonic-gate #define	LOFI_GET_FILENAME	(LOFI_IOC_BASE | 0x05)
112*7c478bd9Sstevel@tonic-gate #define	LOFI_GET_MINOR		(LOFI_IOC_BASE | 0x06)
113*7c478bd9Sstevel@tonic-gate #define	LOFI_GET_MAXMINOR	(LOFI_IOC_BASE | 0x07)
114*7c478bd9Sstevel@tonic-gate 
115*7c478bd9Sstevel@tonic-gate /*
116*7c478bd9Sstevel@tonic-gate  * file types that might be usable with lofi, maybe. Only regular
117*7c478bd9Sstevel@tonic-gate  * files are documented though.
118*7c478bd9Sstevel@tonic-gate  */
119*7c478bd9Sstevel@tonic-gate #define	S_ISLOFIABLE(mode) \
120*7c478bd9Sstevel@tonic-gate 	(S_ISREG(mode) || S_ISBLK(mode) || S_ISCHR(mode))
121*7c478bd9Sstevel@tonic-gate 
122*7c478bd9Sstevel@tonic-gate #if defined(_KERNEL)
123*7c478bd9Sstevel@tonic-gate 
124*7c478bd9Sstevel@tonic-gate /*
125*7c478bd9Sstevel@tonic-gate  * We limit the maximum number of active lofi devices to 128, which seems very
126*7c478bd9Sstevel@tonic-gate  * large. You can tune this by changing lofi_max_files in /etc/system.
127*7c478bd9Sstevel@tonic-gate  * If you change it dynamically, which you probably shouldn't do, make sure
128*7c478bd9Sstevel@tonic-gate  * to only _increase_ it.
129*7c478bd9Sstevel@tonic-gate  */
130*7c478bd9Sstevel@tonic-gate #define	LOFI_MAX_FILES	128
131*7c478bd9Sstevel@tonic-gate extern uint32_t lofi_max_files;
132*7c478bd9Sstevel@tonic-gate 
133*7c478bd9Sstevel@tonic-gate #define	V_ISLOFIABLE(vtype) \
134*7c478bd9Sstevel@tonic-gate 	((vtype == VREG) || (vtype == VBLK) || (vtype == VCHR))
135*7c478bd9Sstevel@tonic-gate 
136*7c478bd9Sstevel@tonic-gate struct lofi_state {
137*7c478bd9Sstevel@tonic-gate 	char	*ls_filename;	/* filename to open */
138*7c478bd9Sstevel@tonic-gate 	size_t	ls_filename_sz;
139*7c478bd9Sstevel@tonic-gate 	struct vnode	*ls_vp; /* open vnode */
140*7c478bd9Sstevel@tonic-gate 	u_offset_t	ls_vp_size;
141*7c478bd9Sstevel@tonic-gate 	uint32_t	ls_blk_open;
142*7c478bd9Sstevel@tonic-gate 	uint32_t	ls_chr_open;
143*7c478bd9Sstevel@tonic-gate 	uint32_t	ls_lyr_open_count;
144*7c478bd9Sstevel@tonic-gate 	int		ls_openflag;
145*7c478bd9Sstevel@tonic-gate 	taskq_t		*ls_taskq;
146*7c478bd9Sstevel@tonic-gate 	kstat_t		*ls_kstat;
147*7c478bd9Sstevel@tonic-gate 	kmutex_t	ls_kstat_lock;
148*7c478bd9Sstevel@tonic-gate 	struct dk_geom	ls_dkg;
149*7c478bd9Sstevel@tonic-gate 	struct vtoc	ls_vtoc;
150*7c478bd9Sstevel@tonic-gate 	struct dk_cinfo	ls_ci;
151*7c478bd9Sstevel@tonic-gate };
152*7c478bd9Sstevel@tonic-gate 
153*7c478bd9Sstevel@tonic-gate #endif
154*7c478bd9Sstevel@tonic-gate 
155*7c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
156*7c478bd9Sstevel@tonic-gate }
157*7c478bd9Sstevel@tonic-gate #endif
158*7c478bd9Sstevel@tonic-gate 
159*7c478bd9Sstevel@tonic-gate #endif	/* _SYS_LOFI_H */
160