4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
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.
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]
22 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
30 #include <sys/types.h>
32 #include <sys/taskq.h>
35 #include <sys/vnode.h>
37 #include <sys/crypto/api.h>
46 * /dev/lofictl - master control device
47 * /dev/lofi - block devices, named by minor number
48 * /dev/rlofi - character devices, named by minor number
50 #define LOFI_DRIVER_NAME "lofi"
51 #define LOFI_CTL_NODE "ctl"
52 #define LOFI_CTL_NAME LOFI_DRIVER_NAME LOFI_CTL_NODE
53 #define LOFI_BLOCK_NAME LOFI_DRIVER_NAME
54 #define LOFI_CHAR_NAME "r" LOFI_DRIVER_NAME
58 #define UNCOMPRESSED 0
64 * ld = open("/dev/lofictl", O_RDWR | O_EXCL);
66 * lofi must be opened exclusively. Access is controlled by permissions on
67 * the device, which is 644 by default. Write-access is required for ioctls
68 * that change state, but only read-access is required for the ioctls that
69 * return information. Basically, only root can add and remove files, but
70 * non-root can look at the current lists.
76 * strcpy(li.li_filename, "somefilename");
77 * ioctl(ld, LOFI_MAP_FILE, &li);
78 * newminor = li.li_minor;
80 * strcpy(li.li_filename, "somefilename");
81 * ioctl(ld, LOFI_UNMAP_FILE, &li);
83 * strcpy(li.li_filename, "somefilename");
84 * li.li_minor = minor_number;
85 * ioctl(ld, LOFI_MAP_FILE_MINOR, &li);
87 * li.li_minor = minor_number;
88 * ioctl(ld, LOFI_UNMAP_FILE_MINOR, &li);
90 * li.li_minor = minor_number;
91 * ioctl(ld, LOFI_GET_FILENAME, &li);
92 * filename = li.li_filename;
93 * encrypted = li.li_crypto_enabled;
95 * strcpy(li.li_filename, "somefilename");
96 * ioctl(ld, LOFI_GET_MINOR, &li);
97 * minor = li.li_minor;
100 * ioctl(ld, LOFI_GET_MAXMINOR, &li);
101 * maxminor = li.li_minor;
103 * strcpy(li.li_filename, "somefilename");
105 * ioctl(ld, LOFI_CHECK_COMPRESSED, &li);
107 * If the 'li_force' flag is set for any of the LOFI_UNMAP_* commands, then if
108 * the device is busy, the underlying vnode will be closed, and any subsequent
109 * operations will fail. It will behave as if the device had been forcibly
110 * removed, so the DKIOCSTATE ioctl will return DKIO_DEV_GONE. When the device
111 * is last closed, it will be torn down.
113 * If the 'li_cleanup' flag is set for any of the LOFI_UNMAP_* commands, then
114 * if the device is busy, it is marked for removal at the next time it is
115 * no longer held open by anybody. When the device is last closed, it will be
118 * Oh, and last but not least: these ioctls are totally private and only
119 * for use by lofiadm(1M).
123 typedef enum iv_method
{
124 IVM_NONE
, /* no iv needed, iv is null */
125 IVM_ENC_BLKNO
/* iv is logical block no. encrypted */
131 boolean_t li_cleanup
;
132 boolean_t li_readonly
;
133 char li_filename
[MAXPATHLEN
];
135 /* the following fields are required for compression support */
136 char li_algorithm
[MAXALGLEN
];
138 /* the following fields are required for encryption support */
139 boolean_t li_crypto_enabled
;
140 crypto_mech_name_t li_cipher
; /* for data */
141 uint32_t li_key_len
; /* for data */
142 char li_key
[56]; /* for data: max 448-bit Blowfish key */
143 crypto_mech_name_t li_iv_cipher
; /* for iv derivation */
144 uint32_t li_iv_len
; /* for iv derivation */
145 iv_method_t li_iv_type
; /* for iv derivation */
148 #define LOFI_IOC_BASE (('L' << 16) | ('F' << 8))
150 #define LOFI_MAP_FILE (LOFI_IOC_BASE | 0x01)
151 #define LOFI_MAP_FILE_MINOR (LOFI_IOC_BASE | 0x02)
152 #define LOFI_UNMAP_FILE (LOFI_IOC_BASE | 0x03)
153 #define LOFI_UNMAP_FILE_MINOR (LOFI_IOC_BASE | 0x04)
154 #define LOFI_GET_FILENAME (LOFI_IOC_BASE | 0x05)
155 #define LOFI_GET_MINOR (LOFI_IOC_BASE | 0x06)
156 #define LOFI_GET_MAXMINOR (LOFI_IOC_BASE | 0x07)
157 #define LOFI_CHECK_COMPRESSED (LOFI_IOC_BASE | 0x08)
160 * file types that might be usable with lofi, maybe. Only regular
161 * files are documented though.
163 #define S_ISLOFIABLE(mode) \
164 (S_ISREG(mode) || S_ISBLK(mode) || S_ISCHR(mode))
170 * Cache decompressed data segments for the compressed lofi images.
172 * To avoid that we have to decompress data of a compressed
173 * segment multiple times when accessing parts of the segment's
174 * data we cache the uncompressed data, using a simple linked list.
176 struct lofi_comp_cache
{
177 list_node_t lc_list
; /* linked list */
178 uchar_t
*lc_data
; /* decompressed segment data */
179 uint64_t lc_index
; /* segment index */
182 #define V_ISLOFIABLE(vtype) \
183 ((vtype == VREG) || (vtype == VBLK) || (vtype == VCHR))
186 * Pre-allocated memory buffers for the purpose of compression
195 * Need exactly 6 bytes to identify encrypted lofi image
197 extern const char lofi_crypto_magic
[6];
198 #define LOFI_CRYPTO_MAGIC { 'C', 'F', 'L', 'O', 'F', 'I' }
199 #define LOFI_CRYPTO_VERSION ((uint16_t)0)
200 #define LOFI_CRYPTO_DATA_SECTOR ((uint32_t)16) /* for version 0 */
203 * Crypto metadata for encrypted lofi images
204 * The fields here only satisfy initial implementation requirements.
207 char magic
[6]; /* LOFI_CRYPTO_MAGIC */
208 uint16_t version
; /* version of encrypted lofi */
209 char reserved1
[96]; /* future use */
210 uint32_t data_sector
; /* start of data area */
211 char pad
[404]; /* end on DEV_BSIZE bdry */
212 /* second header block is not defined at this time */
216 vnode_t
*ls_vp
; /* open real vnode */
217 vnode_t
*ls_stacked_vp
; /* open vnode */
218 kmutex_t ls_vp_lock
; /* protects ls_vp */
219 kcondvar_t ls_vp_cv
; /* signal changes to ls_vp */
220 uint32_t ls_vp_iocount
; /* # pending I/O requests */
221 boolean_t ls_vp_closereq
; /* force close requested */
222 u_offset_t ls_vp_size
;
223 uint32_t ls_blk_open
;
224 uint32_t ls_chr_open
;
225 uint32_t ls_lyr_open_count
;
227 boolean_t ls_cleanup
; /* cleanup on close */
228 boolean_t ls_readonly
;
231 kmutex_t ls_kstat_lock
;
232 struct dk_geom ls_dkg
;
234 struct dk_cinfo ls_ci
;
236 list_node_t ls_list
; /* all lofis */
237 dev_t ls_dev
; /* this node's dev_t */
239 /* the following fields are required for compression support */
240 int ls_comp_algorithm_index
; /* idx into compress_table */
241 char ls_comp_algorithm
[MAXALGLEN
];
242 uint32_t ls_uncomp_seg_sz
; /* sz of uncompressed segment */
243 uint32_t ls_comp_index_sz
; /* number of index entries */
244 uint32_t ls_comp_seg_shift
; /* exponent for byte shift */
245 uint32_t ls_uncomp_last_seg_sz
; /* sz of last uncomp segment */
246 uint64_t ls_comp_offbase
; /* offset of actual compressed data */
247 uint64_t *ls_comp_seg_index
; /* array of index entries */
248 caddr_t ls_comp_index_data
; /* index pages loaded from file */
249 uint32_t ls_comp_index_data_sz
;
250 u_offset_t ls_vp_comp_size
; /* actual compressed file size */
252 /* pre-allocated list of buffers for compressed segment data */
253 kmutex_t ls_comp_bufs_lock
;
254 struct compbuf
*ls_comp_bufs
;
256 /* lock and anchor for compressed segment caching */
257 kmutex_t ls_comp_cache_lock
; /* protects ls_comp_cache */
258 list_t ls_comp_cache
; /* cached decompressed segs */
259 uint32_t ls_comp_cache_count
;
261 /* the following fields are required for encryption support */
262 boolean_t ls_crypto_enabled
;
263 u_offset_t ls_crypto_offset
; /* crypto meta size */
264 struct crypto_meta ls_crypto
;
265 crypto_mechanism_t ls_mech
; /* for data encr/decr */
266 crypto_key_t ls_key
; /* for data encr/decr */
267 crypto_mechanism_t ls_iv_mech
; /* for iv derivation */
268 size_t ls_iv_len
; /* for iv derivation */
269 iv_method_t ls_iv_type
; /* for iv derivation */
270 kmutex_t ls_crypto_lock
;
271 crypto_ctx_template_t ls_ctx_tmpl
;
278 * Common signature for all lofi compress functions
280 typedef int lofi_compress_func_t(void *src
, size_t srclen
, void *dst
,
281 size_t *destlen
, int level
);
284 * Information about each compression function
286 typedef struct lofi_compress_info
{
287 lofi_compress_func_t
*l_decompress
;
288 lofi_compress_func_t
*l_compress
;
290 char *l_name
; /* algorithm name */
291 } lofi_compress_info_t
;
294 LOFI_COMPRESS_GZIP
= 0,
295 LOFI_COMPRESS_GZIP_6
= 1,
296 LOFI_COMPRESS_GZIP_9
= 2,
297 LOFI_COMPRESS_LZMA
= 3,
298 LOFI_COMPRESS_FUNCTIONS
305 #endif /* _SYS_LOFI_H */