1 /* $NetBSD: cgdvar.h,v 1.19 2020/03/09 08:33:15 mlelstv Exp $ */ 2 3 /*- 4 * Copyright (c) 2002 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Roland C. Dowdeswell. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 #ifndef _DEV_CGDVAR_H_ 33 #define _DEV_CGDVAR_H_ 34 35 #include <sys/ioccom.h> 36 37 /* ioctl(2) code: used by CGDIOCSET and CGDIOCCLR */ 38 struct cgd_ioctl { 39 const char *ci_disk; 40 int ci_flags; 41 int ci_unit; 42 size_t ci_size; 43 const char *ci_alg; 44 const char *ci_ivmethod; 45 size_t ci_keylen; 46 const char *ci_key; 47 size_t ci_blocksize; 48 }; 49 50 /* ioctl(2) code: used by CGDIOCGET */ 51 struct cgd_user { 52 int cgu_unit; /* which cgd unit */ 53 dev_t cgu_dev; /* target device */ 54 char cgu_alg[32]; /* algorithm name */ 55 size_t cgu_blocksize; /* block size (in bytes) */ 56 int cgu_mode; /* Cipher Mode and IV Gen method */ 57 #define CGD_CIPHER_CBC_ENCBLKNO8 1 /* CBC Mode w/ Enc Block Number 58 * 8 passes (compat only) 59 */ 60 #define CGD_CIPHER_CBC_ENCBLKNO1 2 /* CBC Mode w/ Enc Block Number 61 * 1 pass (default) 62 */ 63 int cgu_keylen; /* keylength */ 64 }; 65 66 #ifdef _KERNEL 67 68 #include <dev/cgd_crypto.h> 69 70 /* This cryptdata structure is here rather than cgd_crypto.h, since 71 * it stores local state which will not be generalised beyond the 72 * cgd driver. 73 */ 74 75 struct cryptdata { 76 size_t cf_blocksize; /* block size (in bytes) */ 77 int cf_keylen; /* key length */ 78 int cf_mode; /* Cipher Mode and IV Gen method 79 * (see cgu_mode above for defines) */ 80 void *cf_priv; /* enc alg private data */ 81 }; 82 83 struct cgd_xfer { 84 struct work cx_work; 85 struct cgd_softc *cx_sc; 86 struct buf *cx_obp; 87 struct buf *cx_nbp; 88 void *cx_dstv; 89 void *cx_srcv; 90 size_t cx_len; 91 daddr_t cx_blkno; 92 size_t cx_secsize; 93 int cx_dir; 94 }; 95 96 struct cgd_worker { 97 struct workqueue *cw_wq; /* work queue */ 98 struct pool *cw_cpool; /* cgd_xfer contexts */ 99 u_int cw_busy; /* number of busy contexts */ 100 u_int cw_last; /* index of last CPU used */ 101 kmutex_t cw_lock; 102 }; 103 104 struct cgd_softc { 105 struct dk_softc sc_dksc; /* generic disk interface */ 106 struct vnode *sc_tvn; /* target device's vnode */ 107 dev_t sc_tdev; /* target device */ 108 char *sc_tpath; /* target device's path */ 109 void *sc_data; /* emergency buffer */ 110 bool sc_data_used; /* Really lame, we'll change */ 111 size_t sc_tpathlen; /* length of prior string */ 112 struct cryptdata sc_cdata; /* crypto data */ 113 const struct cryptfuncs *sc_cfuncs; /* encryption functions */ 114 kmutex_t sc_lock; 115 kcondvar_t sc_cv; 116 bool sc_busy; 117 struct cgd_worker *sc_worker; /* shared worker data */ 118 }; 119 #endif 120 121 /* XXX XAX XXX elric: check these out properly. */ 122 #define CGDIOCSET _IOWR('F', 18, struct cgd_ioctl) 123 #define CGDIOCCLR _IOW('F', 19, struct cgd_ioctl) 124 #define CGDIOCGET _IOWR('F', 20, struct cgd_user) 125 126 /* Maximum block sized to be used by the ciphers */ 127 #define CGD_MAXBLOCKSIZE 128 128 129 #endif /* _DEV_CGDVAR_H_ */ 130