xref: /titanic_44/usr/src/uts/common/sys/lofi.h (revision cd69fabe0332d2cf0e51b2cb6597286e0abcf6be)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
53d7072f8Seschrock  * Common Development and Distribution License (the "License").
63d7072f8Seschrock  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22b9c7fb03SAlok Aggarwal  * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
23*cd69fabeSAlexander Eremin  *
24*cd69fabeSAlexander Eremin  * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef	_SYS_LOFI_H
287c478bd9Sstevel@tonic-gate #define	_SYS_LOFI_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include <sys/types.h>
317c478bd9Sstevel@tonic-gate #include <sys/time.h>
327c478bd9Sstevel@tonic-gate #include <sys/taskq.h>
337c478bd9Sstevel@tonic-gate #include <sys/vtoc.h>
347c478bd9Sstevel@tonic-gate #include <sys/dkio.h>
357c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
364058a205Sjrgn.keil@googlemail.com #include <sys/list.h>
377d82f0f8SDina K Nimeh #include <sys/crypto/api.h>
380fbb751dSJohn Levon #include <sys/zone.h>
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
417c478bd9Sstevel@tonic-gate extern "C" {
427c478bd9Sstevel@tonic-gate #endif
437c478bd9Sstevel@tonic-gate 
447c478bd9Sstevel@tonic-gate /*
457c478bd9Sstevel@tonic-gate  * /dev names:
467c478bd9Sstevel@tonic-gate  *	/dev/lofictl	- master control device
477c478bd9Sstevel@tonic-gate  *	/dev/lofi	- block devices, named by minor number
487c478bd9Sstevel@tonic-gate  *	/dev/rlofi	- character devices, named by minor number
497c478bd9Sstevel@tonic-gate  */
507c478bd9Sstevel@tonic-gate #define	LOFI_DRIVER_NAME	"lofi"
517c478bd9Sstevel@tonic-gate #define	LOFI_CTL_NODE		"ctl"
527c478bd9Sstevel@tonic-gate #define	LOFI_CTL_NAME		LOFI_DRIVER_NAME LOFI_CTL_NODE
537c478bd9Sstevel@tonic-gate #define	LOFI_BLOCK_NAME		LOFI_DRIVER_NAME
547c478bd9Sstevel@tonic-gate #define	LOFI_CHAR_NAME		"r" LOFI_DRIVER_NAME
557c478bd9Sstevel@tonic-gate 
5687117650Saalok #define	SEGHDR		1
5787117650Saalok #define	COMPRESSED	1
5887117650Saalok #define	UNCOMPRESSED	0
5987117650Saalok #define	MAXALGLEN	36
6087117650Saalok 
617c478bd9Sstevel@tonic-gate /*
627c478bd9Sstevel@tonic-gate  *
637c478bd9Sstevel@tonic-gate  * Use is:
647c478bd9Sstevel@tonic-gate  *	ld = open("/dev/lofictl", O_RDWR | O_EXCL);
657c478bd9Sstevel@tonic-gate  *
667c478bd9Sstevel@tonic-gate  * lofi must be opened exclusively. Access is controlled by permissions on
677c478bd9Sstevel@tonic-gate  * the device, which is 644 by default. Write-access is required for ioctls
687c478bd9Sstevel@tonic-gate  * that change state, but only read-access is required for the ioctls that
697c478bd9Sstevel@tonic-gate  * return information. Basically, only root can add and remove files, but
707c478bd9Sstevel@tonic-gate  * non-root can look at the current lists.
717c478bd9Sstevel@tonic-gate  *
727c478bd9Sstevel@tonic-gate  * ioctl usage:
737c478bd9Sstevel@tonic-gate  *
747c478bd9Sstevel@tonic-gate  * kernel ioctls
757c478bd9Sstevel@tonic-gate  *
767c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
777c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_MAP_FILE, &li);
787c478bd9Sstevel@tonic-gate  *	newminor = li.li_minor;
797c478bd9Sstevel@tonic-gate  *
807c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
817c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_UNMAP_FILE, &li);
827c478bd9Sstevel@tonic-gate  *
837c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
847c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
857c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_MAP_FILE_MINOR, &li);
867c478bd9Sstevel@tonic-gate  *
877c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
887c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_UNMAP_FILE_MINOR, &li);
897c478bd9Sstevel@tonic-gate  *
907c478bd9Sstevel@tonic-gate  *	li.li_minor = minor_number;
917c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_FILENAME, &li);
927d82f0f8SDina K Nimeh  *	filename = li.li_filename;
937d82f0f8SDina K Nimeh  *	encrypted = li.li_crypto_enabled;
947c478bd9Sstevel@tonic-gate  *
957c478bd9Sstevel@tonic-gate  *	strcpy(li.li_filename, "somefilename");
967c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_MINOR, &li);
977d82f0f8SDina K Nimeh  *	minor = li.li_minor;
987c478bd9Sstevel@tonic-gate  *
997c478bd9Sstevel@tonic-gate  *	li.li_minor = 0;
1007c478bd9Sstevel@tonic-gate  *	ioctl(ld, LOFI_GET_MAXMINOR, &li);
1017c478bd9Sstevel@tonic-gate  *	maxminor = li.li_minor;
1027c478bd9Sstevel@tonic-gate  *
10387117650Saalok  *	strcpy(li.li_filename, "somefilename");
10487117650Saalok  *	li.li_minor = 0;
10587117650Saalok  *	ioctl(ld, LOFI_CHECK_COMPRESSED, &li);
10687117650Saalok  *
1073d7072f8Seschrock  * If the 'li_force' flag is set for any of the LOFI_UNMAP_* commands, then if
1083d7072f8Seschrock  * the device is busy, the underlying vnode will be closed, and any subsequent
1093d7072f8Seschrock  * operations will fail.  It will behave as if the device had been forcibly
1103d7072f8Seschrock  * removed, so the DKIOCSTATE ioctl will return DKIO_DEV_GONE.  When the device
1113d7072f8Seschrock  * is last closed, it will be torn down.
1123d7072f8Seschrock  *
11393239addSjohnlev  * If the 'li_cleanup' flag is set for any of the LOFI_UNMAP_* commands, then
11493239addSjohnlev  * if the device is busy, it is marked for removal at the next time it is
11593239addSjohnlev  * no longer held open by anybody.  When the device is last closed, it will be
11693239addSjohnlev  * torn down.
11793239addSjohnlev  *
1187c478bd9Sstevel@tonic-gate  * Oh, and last but not least: these ioctls are totally private and only
1197c478bd9Sstevel@tonic-gate  * for use by lofiadm(1M).
1207c478bd9Sstevel@tonic-gate  *
1217c478bd9Sstevel@tonic-gate  */
1227c478bd9Sstevel@tonic-gate 
1237d82f0f8SDina K Nimeh typedef enum	iv_method {
1247d82f0f8SDina K Nimeh 	IVM_NONE,	/* no iv needed, iv is null */
1257d82f0f8SDina K Nimeh 	IVM_ENC_BLKNO	/* iv is logical block no. encrypted */
1267d82f0f8SDina K Nimeh } iv_method_t;
1277d82f0f8SDina K Nimeh 
1287c478bd9Sstevel@tonic-gate struct lofi_ioctl {
1297c478bd9Sstevel@tonic-gate 	uint32_t 	li_minor;
1303d7072f8Seschrock 	boolean_t	li_force;
13193239addSjohnlev 	boolean_t	li_cleanup;
132*cd69fabeSAlexander Eremin 	boolean_t	li_readonly;
1336f02aa44SDina K Nimeh 	char	li_filename[MAXPATHLEN];
1347d82f0f8SDina K Nimeh 
1357d82f0f8SDina K Nimeh 	/* the following fields are required for compression support */
13687117650Saalok 	char	li_algorithm[MAXALGLEN];
1377d82f0f8SDina K Nimeh 
1387d82f0f8SDina K Nimeh 	/* the following fields are required for encryption support */
1397d82f0f8SDina K Nimeh 	boolean_t	li_crypto_enabled;
1407d82f0f8SDina K Nimeh 	crypto_mech_name_t	li_cipher;	/* for data */
1417d82f0f8SDina K Nimeh 	uint32_t	li_key_len;		/* for data */
1427d82f0f8SDina K Nimeh 	char		li_key[56];	/* for data: max 448-bit Blowfish key */
1437d82f0f8SDina K Nimeh 	crypto_mech_name_t	li_iv_cipher;	/* for iv derivation */
1447d82f0f8SDina K Nimeh 	uint32_t	li_iv_len;		/* for iv derivation */
1457d82f0f8SDina K Nimeh 	iv_method_t	li_iv_type;		/* for iv derivation */
1467c478bd9Sstevel@tonic-gate };
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate #define	LOFI_IOC_BASE		(('L' << 16) | ('F' << 8))
1497c478bd9Sstevel@tonic-gate 
1507c478bd9Sstevel@tonic-gate #define	LOFI_MAP_FILE		(LOFI_IOC_BASE | 0x01)
1517c478bd9Sstevel@tonic-gate #define	LOFI_MAP_FILE_MINOR	(LOFI_IOC_BASE | 0x02)
1527c478bd9Sstevel@tonic-gate #define	LOFI_UNMAP_FILE		(LOFI_IOC_BASE | 0x03)
1537c478bd9Sstevel@tonic-gate #define	LOFI_UNMAP_FILE_MINOR	(LOFI_IOC_BASE | 0x04)
1547c478bd9Sstevel@tonic-gate #define	LOFI_GET_FILENAME	(LOFI_IOC_BASE | 0x05)
1557c478bd9Sstevel@tonic-gate #define	LOFI_GET_MINOR		(LOFI_IOC_BASE | 0x06)
1567c478bd9Sstevel@tonic-gate #define	LOFI_GET_MAXMINOR	(LOFI_IOC_BASE | 0x07)
15787117650Saalok #define	LOFI_CHECK_COMPRESSED	(LOFI_IOC_BASE | 0x08)
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate /*
1607c478bd9Sstevel@tonic-gate  * file types that might be usable with lofi, maybe. Only regular
1617c478bd9Sstevel@tonic-gate  * files are documented though.
1627c478bd9Sstevel@tonic-gate  */
1637c478bd9Sstevel@tonic-gate #define	S_ISLOFIABLE(mode) \
1647c478bd9Sstevel@tonic-gate 	(S_ISREG(mode) || S_ISBLK(mode) || S_ISCHR(mode))
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate #if defined(_KERNEL)
1677c478bd9Sstevel@tonic-gate 
1684058a205Sjrgn.keil@googlemail.com 
1694058a205Sjrgn.keil@googlemail.com /*
1704058a205Sjrgn.keil@googlemail.com  * Cache decompressed data segments for the compressed lofi images.
1714058a205Sjrgn.keil@googlemail.com  *
1724058a205Sjrgn.keil@googlemail.com  * To avoid that we have to decompress data of a compressed
1734058a205Sjrgn.keil@googlemail.com  * segment multiple times when accessing parts of the segment's
1744058a205Sjrgn.keil@googlemail.com  * data we cache the uncompressed data, using a simple linked list.
1754058a205Sjrgn.keil@googlemail.com  */
1764058a205Sjrgn.keil@googlemail.com struct lofi_comp_cache {
1774058a205Sjrgn.keil@googlemail.com 	list_node_t	lc_list;		/* linked list */
1784058a205Sjrgn.keil@googlemail.com 	uchar_t		*lc_data;		/* decompressed segment data */
1794058a205Sjrgn.keil@googlemail.com 	uint64_t	lc_index;		/* segment index */
1804058a205Sjrgn.keil@googlemail.com };
1814058a205Sjrgn.keil@googlemail.com 
1827c478bd9Sstevel@tonic-gate #define	V_ISLOFIABLE(vtype) \
1837c478bd9Sstevel@tonic-gate 	((vtype == VREG) || (vtype == VBLK) || (vtype == VCHR))
1847c478bd9Sstevel@tonic-gate 
1857d82f0f8SDina K Nimeh /*
186b9c7fb03SAlok Aggarwal  * Pre-allocated memory buffers for the purpose of compression
187b9c7fb03SAlok Aggarwal  */
188b9c7fb03SAlok Aggarwal struct compbuf {
189b9c7fb03SAlok Aggarwal 	void		*buf;
190b9c7fb03SAlok Aggarwal 	uint32_t	bufsize;
191b9c7fb03SAlok Aggarwal 	int		inuse;
192b9c7fb03SAlok Aggarwal };
193b9c7fb03SAlok Aggarwal 
194b9c7fb03SAlok Aggarwal /*
1957d82f0f8SDina K Nimeh  * Need exactly 6 bytes to identify encrypted lofi image
1967d82f0f8SDina K Nimeh  */
1977d82f0f8SDina K Nimeh extern const char lofi_crypto_magic[6];
1987d82f0f8SDina K Nimeh #define	LOFI_CRYPTO_MAGIC	{ 'C', 'F', 'L', 'O', 'F', 'I' }
1997d82f0f8SDina K Nimeh #define	LOFI_CRYPTO_VERSION	((uint16_t)0)
2007d82f0f8SDina K Nimeh #define	LOFI_CRYPTO_DATA_SECTOR	((uint32_t)16)		/* for version 0 */
2017d82f0f8SDina K Nimeh 
2027d82f0f8SDina K Nimeh /*
2037d82f0f8SDina K Nimeh  * Crypto metadata for encrypted lofi images
2047d82f0f8SDina K Nimeh  * The fields here only satisfy initial implementation requirements.
2057d82f0f8SDina K Nimeh  */
2067d82f0f8SDina K Nimeh struct crypto_meta {
2077d82f0f8SDina K Nimeh 	char		magic[6];		/* LOFI_CRYPTO_MAGIC */
2087d82f0f8SDina K Nimeh 	uint16_t	version;		/* version of encrypted lofi */
2097d82f0f8SDina K Nimeh 	char		reserved1[96];		/* future use */
2107d82f0f8SDina K Nimeh 	uint32_t	data_sector;		/* start of data area */
2117d82f0f8SDina K Nimeh 	char		pad[404];		/* end on DEV_BSIZE bdry */
2127d82f0f8SDina K Nimeh 	/* second header block is not defined at this time */
2137d82f0f8SDina K Nimeh };
2147d82f0f8SDina K Nimeh 
2157c478bd9Sstevel@tonic-gate struct lofi_state {
2160fbb751dSJohn Levon 	vnode_t		*ls_vp;		/* open real vnode */
2170fbb751dSJohn Levon 	vnode_t		*ls_stacked_vp;	/* open vnode */
2183d7072f8Seschrock 	kmutex_t	ls_vp_lock;	/* protects ls_vp */
2193d7072f8Seschrock 	kcondvar_t	ls_vp_cv;	/* signal changes to ls_vp */
2203d7072f8Seschrock 	uint32_t	ls_vp_iocount;	/* # pending I/O requests */
2213d7072f8Seschrock 	boolean_t	ls_vp_closereq;	/* force close requested */
2227c478bd9Sstevel@tonic-gate 	u_offset_t	ls_vp_size;
2237c478bd9Sstevel@tonic-gate 	uint32_t	ls_blk_open;
2247c478bd9Sstevel@tonic-gate 	uint32_t	ls_chr_open;
2257c478bd9Sstevel@tonic-gate 	uint32_t	ls_lyr_open_count;
2267c478bd9Sstevel@tonic-gate 	int		ls_openflag;
22793239addSjohnlev 	boolean_t	ls_cleanup;	/* cleanup on close */
228*cd69fabeSAlexander Eremin 	boolean_t	ls_readonly;
2297c478bd9Sstevel@tonic-gate 	taskq_t		*ls_taskq;
2307c478bd9Sstevel@tonic-gate 	kstat_t		*ls_kstat;
2317c478bd9Sstevel@tonic-gate 	kmutex_t	ls_kstat_lock;
2327c478bd9Sstevel@tonic-gate 	struct dk_geom	ls_dkg;
2337c478bd9Sstevel@tonic-gate 	struct vtoc	ls_vtoc;
2347c478bd9Sstevel@tonic-gate 	struct dk_cinfo	ls_ci;
235a19609f8Sjv227347 	zone_ref_t	ls_zone;
2360fbb751dSJohn Levon 	list_node_t	ls_list;	/* all lofis */
2370fbb751dSJohn Levon 	dev_t		ls_dev;		/* this node's dev_t */
23887117650Saalok 
23987117650Saalok 	/* the following fields are required for compression support */
24087117650Saalok 	int		ls_comp_algorithm_index; /* idx into compress_table */
24187117650Saalok 	char		ls_comp_algorithm[MAXALGLEN];
24287117650Saalok 	uint32_t	ls_uncomp_seg_sz; /* sz of uncompressed segment */
24387117650Saalok 	uint32_t	ls_comp_index_sz; /* number of index entries */
24487117650Saalok 	uint32_t	ls_comp_seg_shift; /* exponent for byte shift */
24587117650Saalok 	uint32_t	ls_uncomp_last_seg_sz; /* sz of last uncomp segment */
24687117650Saalok 	uint64_t	ls_comp_offbase; /* offset of actual compressed data */
24787117650Saalok 	uint64_t	*ls_comp_seg_index; /* array of index entries */
24887117650Saalok 	caddr_t		ls_comp_index_data; /* index pages loaded from file */
24987117650Saalok 	uint32_t	ls_comp_index_data_sz;
25087117650Saalok 	u_offset_t	ls_vp_comp_size; /* actual compressed file size */
2517d82f0f8SDina K Nimeh 
252b9c7fb03SAlok Aggarwal 	/* pre-allocated list of buffers for compressed segment data */
253b9c7fb03SAlok Aggarwal 	kmutex_t	ls_comp_bufs_lock;
254b9c7fb03SAlok Aggarwal 	struct compbuf	*ls_comp_bufs;
255b9c7fb03SAlok Aggarwal 
2564058a205Sjrgn.keil@googlemail.com 	/* lock and anchor for compressed segment caching */
2574058a205Sjrgn.keil@googlemail.com 	kmutex_t	ls_comp_cache_lock;	/* protects ls_comp_cache */
2584058a205Sjrgn.keil@googlemail.com 	list_t		ls_comp_cache;		/* cached decompressed segs */
2594058a205Sjrgn.keil@googlemail.com 	uint32_t	ls_comp_cache_count;
2604058a205Sjrgn.keil@googlemail.com 
2617d82f0f8SDina K Nimeh 	/* the following fields are required for encryption support */
2627d82f0f8SDina K Nimeh 	boolean_t		ls_crypto_enabled;
2637d82f0f8SDina K Nimeh 	u_offset_t		ls_crypto_offset;	/* crypto meta size */
2647d82f0f8SDina K Nimeh 	struct crypto_meta	ls_crypto;
2657d82f0f8SDina K Nimeh 	crypto_mechanism_t	ls_mech;	/* for data encr/decr */
2667d82f0f8SDina K Nimeh 	crypto_key_t		ls_key;		/* for data encr/decr */
2677d82f0f8SDina K Nimeh 	crypto_mechanism_t	ls_iv_mech;	/* for iv derivation */
2687d82f0f8SDina K Nimeh 	size_t			ls_iv_len;	/* for iv derivation */
2697d82f0f8SDina K Nimeh 	iv_method_t		ls_iv_type;	/* for iv derivation */
2707d82f0f8SDina K Nimeh 	kmutex_t		ls_crypto_lock;
2717d82f0f8SDina K Nimeh 	crypto_ctx_template_t	ls_ctx_tmpl;
2727d82f0f8SDina K Nimeh 
2737c478bd9Sstevel@tonic-gate };
2747c478bd9Sstevel@tonic-gate 
27587117650Saalok #endif	/* _KERNEL */
27687117650Saalok 
27787117650Saalok /*
27887117650Saalok  * Common signature for all lofi compress functions
27987117650Saalok  */
28087117650Saalok typedef int lofi_compress_func_t(void *src, size_t srclen, void *dst,
28187117650Saalok 	size_t *destlen, int level);
28287117650Saalok 
28387117650Saalok /*
28487117650Saalok  * Information about each compression function
28587117650Saalok  */
28687117650Saalok typedef struct lofi_compress_info {
28787117650Saalok 	lofi_compress_func_t	*l_decompress;
28887117650Saalok 	lofi_compress_func_t	*l_compress;
28987117650Saalok 	int			l_level;
29087117650Saalok 	char			*l_name;	/* algorithm name */
29187117650Saalok } lofi_compress_info_t;
29287117650Saalok 
29387117650Saalok enum lofi_compress {
29487117650Saalok 	LOFI_COMPRESS_GZIP = 0,
29587117650Saalok 	LOFI_COMPRESS_GZIP_6 = 1,
29687117650Saalok 	LOFI_COMPRESS_GZIP_9 = 2,
297b1efbcd6SAlok Aggarwal 	LOFI_COMPRESS_LZMA = 3,
29887117650Saalok 	LOFI_COMPRESS_FUNCTIONS
29987117650Saalok };
3007c478bd9Sstevel@tonic-gate 
3017c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
3027c478bd9Sstevel@tonic-gate }
3037c478bd9Sstevel@tonic-gate #endif
3047c478bd9Sstevel@tonic-gate 
3057c478bd9Sstevel@tonic-gate #endif	/* _SYS_LOFI_H */
306