Home | History | Annotate | Line # | Download | only in dev
cgd.c revision 1.50.6.5
      1  1.50.6.3       mjf /* $NetBSD: cgd.c,v 1.50.6.5 2009/01/17 13:28:52 mjf Exp $ */
      2       1.1     elric 
      3       1.1     elric /*-
      4       1.1     elric  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5       1.1     elric  * All rights reserved.
      6       1.1     elric  *
      7       1.1     elric  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1     elric  * by Roland C. Dowdeswell.
      9       1.1     elric  *
     10       1.1     elric  * Redistribution and use in source and binary forms, with or without
     11       1.1     elric  * modification, are permitted provided that the following conditions
     12       1.1     elric  * are met:
     13       1.1     elric  * 1. Redistributions of source code must retain the above copyright
     14       1.1     elric  *    notice, this list of conditions and the following disclaimer.
     15       1.1     elric  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1     elric  *    notice, this list of conditions and the following disclaimer in the
     17       1.1     elric  *    documentation and/or other materials provided with the distribution.
     18       1.1     elric  *
     19       1.1     elric  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1     elric  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1     elric  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1     elric  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1     elric  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1     elric  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1     elric  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1     elric  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1     elric  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1     elric  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1     elric  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1     elric  */
     31       1.1     elric 
     32       1.1     elric #include <sys/cdefs.h>
     33  1.50.6.3       mjf __KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.50.6.5 2009/01/17 13:28:52 mjf Exp $");
     34       1.1     elric 
     35       1.1     elric #include <sys/types.h>
     36       1.1     elric #include <sys/param.h>
     37       1.1     elric #include <sys/systm.h>
     38       1.1     elric #include <sys/proc.h>
     39       1.1     elric #include <sys/errno.h>
     40       1.1     elric #include <sys/buf.h>
     41      1.21      yamt #include <sys/bufq.h>
     42       1.1     elric #include <sys/malloc.h>
     43       1.1     elric #include <sys/pool.h>
     44       1.1     elric #include <sys/ioctl.h>
     45       1.1     elric #include <sys/device.h>
     46       1.1     elric #include <sys/disk.h>
     47       1.1     elric #include <sys/disklabel.h>
     48       1.1     elric #include <sys/fcntl.h>
     49       1.1     elric #include <sys/vnode.h>
     50       1.1     elric #include <sys/conf.h>
     51       1.1     elric 
     52       1.1     elric #include <dev/dkvar.h>
     53       1.1     elric #include <dev/cgdvar.h>
     54       1.1     elric 
     55       1.1     elric /* Entry Point Functions */
     56       1.1     elric 
     57       1.1     elric void	cgdattach(int);
     58       1.1     elric 
     59      1.18   thorpej static dev_type_open(cgdopen);
     60      1.18   thorpej static dev_type_close(cgdclose);
     61      1.18   thorpej static dev_type_read(cgdread);
     62      1.18   thorpej static dev_type_write(cgdwrite);
     63      1.18   thorpej static dev_type_ioctl(cgdioctl);
     64      1.18   thorpej static dev_type_strategy(cgdstrategy);
     65      1.18   thorpej static dev_type_dump(cgddump);
     66      1.18   thorpej static dev_type_size(cgdsize);
     67       1.1     elric 
     68       1.1     elric const struct bdevsw cgd_bdevsw = {
     69       1.1     elric 	cgdopen, cgdclose, cgdstrategy, cgdioctl,
     70       1.1     elric 	cgddump, cgdsize, D_DISK
     71       1.1     elric };
     72       1.1     elric 
     73       1.1     elric const struct cdevsw cgd_cdevsw = {
     74       1.1     elric 	cgdopen, cgdclose, cgdread, cgdwrite, cgdioctl,
     75       1.4  jdolecek 	nostop, notty, nopoll, nommap, nokqfilter, D_DISK
     76       1.1     elric };
     77       1.1     elric 
     78       1.1     elric /* Internal Functions */
     79       1.1     elric 
     80      1.16     elric static int	cgdstart(struct dk_softc *, struct buf *);
     81       1.1     elric static void	cgdiodone(struct buf *);
     82       1.1     elric 
     83      1.32  christos static int	cgd_ioctl_set(struct cgd_softc *, void *, struct lwp *);
     84      1.32  christos static int	cgd_ioctl_clr(struct cgd_softc *, void *, struct lwp *);
     85      1.27  drochner static int	cgdinit(struct cgd_softc *, const char *, struct vnode *,
     86      1.32  christos 			struct lwp *);
     87      1.44  christos static void	cgd_cipher(struct cgd_softc *, void *, void *,
     88       1.1     elric 			   size_t, daddr_t, size_t, int);
     89       1.1     elric 
     90       1.1     elric /* Pseudo-disk Interface */
     91       1.1     elric 
     92       1.1     elric static struct dk_intf the_dkintf = {
     93       1.1     elric 	DTYPE_CGD,
     94       1.1     elric 	"cgd",
     95       1.1     elric 	cgdopen,
     96       1.1     elric 	cgdclose,
     97       1.1     elric 	cgdstrategy,
     98       1.1     elric 	cgdstart,
     99       1.1     elric };
    100       1.1     elric static struct dk_intf *di = &the_dkintf;
    101       1.1     elric 
    102      1.29      yamt static struct dkdriver cgddkdriver = {
    103      1.29      yamt 	.d_strategy = cgdstrategy,
    104      1.29      yamt 	.d_minphys = minphys,
    105      1.29      yamt };
    106      1.29      yamt 
    107       1.1     elric /* DIAGNOSTIC and DEBUG definitions */
    108       1.1     elric 
    109       1.1     elric #if defined(CGDDEBUG) && !defined(DEBUG)
    110       1.1     elric #define DEBUG
    111       1.1     elric #endif
    112       1.1     elric 
    113       1.1     elric #ifdef DEBUG
    114       1.1     elric int cgddebug = 0;
    115       1.1     elric 
    116       1.1     elric #define CGDB_FOLLOW	0x1
    117       1.1     elric #define CGDB_IO	0x2
    118       1.1     elric #define CGDB_CRYPTO	0x4
    119       1.1     elric 
    120       1.1     elric #define IFDEBUG(x,y)		if (cgddebug & (x)) y
    121       1.1     elric #define DPRINTF(x,y)		IFDEBUG(x, printf y)
    122       1.1     elric #define DPRINTF_FOLLOW(y)	DPRINTF(CGDB_FOLLOW, y)
    123       1.1     elric 
    124      1.26  drochner static void	hexprint(const char *, void *, int);
    125       1.1     elric 
    126       1.1     elric #else
    127       1.1     elric #define IFDEBUG(x,y)
    128       1.1     elric #define DPRINTF(x,y)
    129       1.1     elric #define DPRINTF_FOLLOW(y)
    130       1.1     elric #endif
    131       1.1     elric 
    132       1.1     elric #ifdef DIAGNOSTIC
    133      1.22     perry #define DIAGPANIC(x)		panic x
    134       1.1     elric #define DIAGCONDPANIC(x,y)	if (x) panic y
    135       1.1     elric #else
    136       1.1     elric #define DIAGPANIC(x)
    137       1.1     elric #define DIAGCONDPANIC(x,y)
    138       1.1     elric #endif
    139       1.1     elric 
    140       1.1     elric /* Global variables */
    141       1.1     elric 
    142       1.1     elric struct	cgd_softc *cgd_softc;
    143       1.1     elric int	numcgd = 0;
    144       1.1     elric 
    145       1.1     elric /* Utility Functions */
    146       1.1     elric 
    147       1.1     elric #define CGDUNIT(x)		DISKUNIT(x)
    148       1.1     elric #define GETCGD_SOFTC(_cs, x)	if (!((_cs) = getcgd_softc(x))) return ENXIO
    149       1.1     elric 
    150       1.1     elric static struct cgd_softc *
    151       1.1     elric getcgd_softc(dev_t dev)
    152       1.1     elric {
    153       1.1     elric 	int	unit = CGDUNIT(dev);
    154       1.1     elric 
    155  1.50.6.5       mjf 	DPRINTF_FOLLOW(("getcgd_softc(0x%"PRIx64"): unit = %d\n", dev, unit));
    156       1.1     elric 	if (unit >= numcgd)
    157       1.1     elric 		return NULL;
    158       1.1     elric 	return &cgd_softc[unit];
    159       1.1     elric }
    160       1.1     elric 
    161       1.1     elric /* The code */
    162       1.1     elric 
    163       1.1     elric static void
    164       1.1     elric cgdsoftc_init(struct cgd_softc *cs, int num)
    165       1.1     elric {
    166      1.25   xtraeme 	char	sbuf[DK_XNAME_SIZE];
    167       1.1     elric 
    168       1.1     elric 	memset(cs, 0x0, sizeof(*cs));
    169      1.25   xtraeme 	snprintf(sbuf, DK_XNAME_SIZE, "cgd%d", num);
    170      1.16     elric 	simple_lock_init(&cs->sc_slock);
    171      1.25   xtraeme 	dk_sc_init(&cs->sc_dksc, cs, sbuf);
    172      1.47        ad 	disk_init(&cs->sc_dksc.sc_dkdev, cs->sc_dksc.sc_xname, &cgddkdriver);
    173       1.1     elric }
    174       1.1     elric 
    175       1.1     elric void
    176       1.1     elric cgdattach(int num)
    177       1.1     elric {
    178  1.50.6.2       mjf 	int	i, j, bmaj, cmaj;
    179       1.1     elric 
    180       1.1     elric 	DPRINTF_FOLLOW(("cgdattach(%d)\n", num));
    181       1.1     elric 	if (num <= 0) {
    182       1.1     elric 		DIAGPANIC(("cgdattach: count <= 0"));
    183       1.1     elric 		return;
    184       1.1     elric 	}
    185       1.1     elric 
    186      1.10       agc 	cgd_softc = (void *)malloc(num * sizeof(*cgd_softc), M_DEVBUF, M_NOWAIT);
    187      1.10       agc 	if (!cgd_softc) {
    188       1.1     elric 		printf("WARNING: unable to malloc(9) memory for crypt disks\n");
    189       1.1     elric 		DIAGPANIC(("cgdattach: cannot malloc(9) enough memory"));
    190       1.1     elric 		return;
    191       1.1     elric 	}
    192       1.1     elric 
    193  1.50.6.2       mjf 	bmaj = bdevsw_lookup_major(&cgd_bdevsw);
    194  1.50.6.2       mjf 	cmaj = cdevsw_lookup_major(&cgd_cdevsw);
    195  1.50.6.2       mjf 
    196       1.1     elric 	numcgd = num;
    197  1.50.6.2       mjf 	for (i=0; i<num; i++) {
    198       1.1     elric 		cgdsoftc_init(&cgd_softc[i], i);
    199  1.50.6.2       mjf 		for (j = 0; j < MAXPARTITIONS; j++) {
    200  1.50.6.2       mjf 			device_register_name(MAKEDISKDEV(bmaj, i, j), NULL,
    201  1.50.6.2       mjf 			    false, DEV_DISK, "cgd%d%c", i, 'a' + j);
    202  1.50.6.2       mjf 			device_register_name(MAKEDISKDEV(cmaj, i, j), NULL,
    203  1.50.6.2       mjf 			    true, DEV_DISK, "rcgd%d%c", i, 'a' + j);
    204  1.50.6.2       mjf 		}
    205  1.50.6.2       mjf 	}
    206       1.1     elric }
    207       1.1     elric 
    208      1.18   thorpej static int
    209      1.32  christos cgdopen(dev_t dev, int flags, int fmt, struct lwp *l)
    210       1.1     elric {
    211       1.1     elric 	struct	cgd_softc *cs;
    212       1.1     elric 
    213  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdopen(0x%"PRIx64", %d)\n", dev, flags));
    214       1.1     elric 	GETCGD_SOFTC(cs, dev);
    215      1.32  christos 	return dk_open(di, &cs->sc_dksc, dev, flags, fmt, l);
    216       1.1     elric }
    217       1.1     elric 
    218      1.18   thorpej static int
    219      1.32  christos cgdclose(dev_t dev, int flags, int fmt, struct lwp *l)
    220       1.1     elric {
    221       1.1     elric 	struct	cgd_softc *cs;
    222       1.1     elric 
    223  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdclose(0x%"PRIx64", %d)\n", dev, flags));
    224       1.1     elric 	GETCGD_SOFTC(cs, dev);
    225      1.32  christos 	return dk_close(di, &cs->sc_dksc, dev, flags, fmt, l);
    226       1.1     elric }
    227       1.1     elric 
    228      1.18   thorpej static void
    229       1.1     elric cgdstrategy(struct buf *bp)
    230       1.1     elric {
    231       1.1     elric 	struct	cgd_softc *cs = getcgd_softc(bp->b_dev);
    232       1.1     elric 
    233       1.1     elric 	DPRINTF_FOLLOW(("cgdstrategy(%p): b_bcount = %ld\n", bp,
    234       1.1     elric 	    (long)bp->b_bcount));
    235       1.1     elric 	/* XXXrcd: Should we test for (cs != NULL)? */
    236       1.1     elric 	dk_strategy(di, &cs->sc_dksc, bp);
    237       1.1     elric 	return;
    238       1.1     elric }
    239       1.1     elric 
    240      1.18   thorpej static int
    241       1.1     elric cgdsize(dev_t dev)
    242       1.1     elric {
    243       1.1     elric 	struct cgd_softc *cs = getcgd_softc(dev);
    244       1.1     elric 
    245  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdsize(0x%"PRIx64")\n", dev));
    246       1.1     elric 	if (!cs)
    247       1.1     elric 		return -1;
    248       1.1     elric 	return dk_size(di, &cs->sc_dksc, dev);
    249       1.1     elric }
    250       1.1     elric 
    251      1.16     elric /*
    252      1.16     elric  * cgd_{get,put}data are functions that deal with getting a buffer
    253      1.16     elric  * for the new encrypted data.  We have a buffer per device so that
    254      1.16     elric  * we can ensure that we can always have a transaction in flight.
    255      1.16     elric  * We use this buffer first so that we have one less piece of
    256      1.16     elric  * malloc'ed data at any given point.
    257      1.16     elric  */
    258      1.16     elric 
    259      1.16     elric static void *
    260      1.16     elric cgd_getdata(struct dk_softc *dksc, unsigned long size)
    261      1.16     elric {
    262      1.16     elric 	struct	cgd_softc *cs =dksc->sc_osc;
    263      1.44  christos 	void *	data = NULL;
    264      1.16     elric 
    265      1.16     elric 	simple_lock(&cs->sc_slock);
    266      1.16     elric 	if (cs->sc_data_used == 0) {
    267      1.16     elric 		cs->sc_data_used = 1;
    268      1.16     elric 		data = cs->sc_data;
    269      1.16     elric 	}
    270      1.16     elric 	simple_unlock(&cs->sc_slock);
    271      1.16     elric 
    272      1.16     elric 	if (data)
    273      1.16     elric 		return data;
    274      1.16     elric 
    275      1.16     elric 	return malloc(size, M_DEVBUF, M_NOWAIT);
    276      1.16     elric }
    277      1.16     elric 
    278       1.1     elric static void
    279      1.44  christos cgd_putdata(struct dk_softc *dksc, void *data)
    280      1.16     elric {
    281      1.16     elric 	struct	cgd_softc *cs =dksc->sc_osc;
    282      1.16     elric 
    283      1.16     elric 	if (data == cs->sc_data) {
    284      1.16     elric 		simple_lock(&cs->sc_slock);
    285      1.16     elric 		cs->sc_data_used = 0;
    286      1.16     elric 		simple_unlock(&cs->sc_slock);
    287      1.16     elric 	} else {
    288      1.16     elric 		free(data, M_DEVBUF);
    289      1.16     elric 	}
    290      1.16     elric }
    291      1.16     elric 
    292      1.16     elric static int
    293       1.1     elric cgdstart(struct dk_softc *dksc, struct buf *bp)
    294       1.1     elric {
    295       1.1     elric 	struct	cgd_softc *cs = dksc->sc_osc;
    296      1.17       dbj 	struct	buf *nbp;
    297      1.44  christos 	void *	addr;
    298      1.44  christos 	void *	newaddr;
    299       1.1     elric 	daddr_t	bn;
    300      1.49        ad 	struct	vnode *vp;
    301       1.1     elric 
    302       1.1     elric 	DPRINTF_FOLLOW(("cgdstart(%p, %p)\n", dksc, bp));
    303       1.1     elric 	disk_busy(&dksc->sc_dkdev); /* XXX: put in dksubr.c */
    304       1.1     elric 
    305      1.31      yamt 	bn = bp->b_rawblkno;
    306       1.1     elric 
    307       1.1     elric 	/*
    308      1.16     elric 	 * We attempt to allocate all of our resources up front, so that
    309      1.16     elric 	 * we can fail quickly if they are unavailable.
    310      1.16     elric 	 */
    311      1.22     perry 
    312      1.49        ad 	nbp = getiobuf(cs->sc_tvn, false);
    313      1.17       dbj 	if (nbp == NULL) {
    314      1.16     elric 		disk_unbusy(&dksc->sc_dkdev, 0, (bp->b_flags & B_READ));
    315      1.16     elric 		return -1;
    316      1.16     elric 	}
    317      1.16     elric 
    318      1.16     elric 	/*
    319       1.1     elric 	 * If we are writing, then we need to encrypt the outgoing
    320      1.16     elric 	 * block into a new block of memory.  If we fail, then we
    321      1.16     elric 	 * return an error and let the dksubr framework deal with it.
    322       1.1     elric 	 */
    323       1.1     elric 	newaddr = addr = bp->b_data;
    324       1.1     elric 	if ((bp->b_flags & B_READ) == 0) {
    325      1.16     elric 		newaddr = cgd_getdata(dksc, bp->b_bcount);
    326      1.16     elric 		if (!newaddr) {
    327      1.33      yamt 			putiobuf(nbp);
    328      1.16     elric 			disk_unbusy(&dksc->sc_dkdev, 0, (bp->b_flags & B_READ));
    329      1.16     elric 			return -1;
    330      1.16     elric 		}
    331       1.1     elric 		cgd_cipher(cs, newaddr, addr, bp->b_bcount, bn,
    332       1.1     elric 		    DEV_BSIZE, CGD_CIPHER_ENCRYPT);
    333       1.1     elric 	}
    334       1.1     elric 
    335      1.17       dbj 	nbp->b_data = newaddr;
    336      1.49        ad 	nbp->b_flags = bp->b_flags;
    337      1.49        ad 	nbp->b_oflags = bp->b_oflags;
    338      1.49        ad 	nbp->b_cflags = bp->b_cflags;
    339      1.17       dbj 	nbp->b_iodone = cgdiodone;
    340      1.17       dbj 	nbp->b_proc = bp->b_proc;
    341      1.17       dbj 	nbp->b_blkno = bn;
    342      1.17       dbj 	nbp->b_bcount = bp->b_bcount;
    343      1.17       dbj 	nbp->b_private = bp;
    344      1.17       dbj 
    345      1.17       dbj 	BIO_COPYPRIO(nbp, bp);
    346      1.17       dbj 
    347      1.17       dbj 	if ((nbp->b_flags & B_READ) == 0) {
    348      1.49        ad 		vp = nbp->b_vp;
    349      1.49        ad 		mutex_enter(&vp->v_interlock);
    350      1.49        ad 		vp->v_numoutput++;
    351      1.49        ad 		mutex_exit(&vp->v_interlock);
    352      1.17       dbj 	}
    353      1.17       dbj 	VOP_STRATEGY(cs->sc_tvn, nbp);
    354      1.16     elric 	return 0;
    355       1.1     elric }
    356       1.1     elric 
    357      1.17       dbj /* expected to be called at splbio() */
    358      1.18   thorpej static void
    359      1.17       dbj cgdiodone(struct buf *nbp)
    360       1.1     elric {
    361      1.17       dbj 	struct	buf *obp = nbp->b_private;
    362      1.17       dbj 	struct	cgd_softc *cs = getcgd_softc(obp->b_dev);
    363       1.1     elric 	struct	dk_softc *dksc = &cs->sc_dksc;
    364      1.22     perry 
    365      1.17       dbj 	KDASSERT(cs);
    366       1.1     elric 
    367      1.17       dbj 	DPRINTF_FOLLOW(("cgdiodone(%p)\n", nbp));
    368      1.20      yamt 	DPRINTF(CGDB_IO, ("cgdiodone: bp %p bcount %d resid %d\n",
    369       1.1     elric 	    obp, obp->b_bcount, obp->b_resid));
    370  1.50.6.5       mjf 	DPRINTF(CGDB_IO, (" dev 0x%"PRIx64", nbp %p bn %" PRId64 " addr %p bcnt %d\n",
    371      1.17       dbj 	    nbp->b_dev, nbp, nbp->b_blkno, nbp->b_data,
    372      1.17       dbj 	    nbp->b_bcount));
    373      1.46        ad 	if (nbp->b_error != 0) {
    374      1.46        ad 		obp->b_error = nbp->b_error;
    375       1.1     elric 		printf("%s: error %d\n", dksc->sc_xname, obp->b_error);
    376       1.1     elric 	}
    377       1.1     elric 
    378      1.16     elric 	/* Perform the decryption if we are reading.
    379       1.1     elric 	 *
    380       1.1     elric 	 * Note: use the blocknumber from nbp, since it is what
    381       1.1     elric 	 *       we used to encrypt the blocks.
    382       1.1     elric 	 */
    383       1.1     elric 
    384      1.16     elric 	if (nbp->b_flags & B_READ)
    385       1.1     elric 		cgd_cipher(cs, obp->b_data, obp->b_data, obp->b_bcount,
    386       1.1     elric 		    nbp->b_blkno, DEV_BSIZE, CGD_CIPHER_DECRYPT);
    387       1.1     elric 
    388      1.16     elric 	/* If we allocated memory, free it now... */
    389       1.1     elric 	if (nbp->b_data != obp->b_data)
    390      1.16     elric 		cgd_putdata(dksc, nbp->b_data);
    391       1.1     elric 
    392      1.33      yamt 	putiobuf(nbp);
    393       1.1     elric 
    394       1.1     elric 	/* Request is complete for whatever reason */
    395       1.1     elric 	obp->b_resid = 0;
    396      1.46        ad 	if (obp->b_error != 0)
    397       1.1     elric 		obp->b_resid = obp->b_bcount;
    398       1.5       mrg 	disk_unbusy(&dksc->sc_dkdev, obp->b_bcount - obp->b_resid,
    399       1.5       mrg 	    (obp->b_flags & B_READ));
    400       1.1     elric 	biodone(obp);
    401      1.16     elric 	dk_iodone(di, dksc);
    402       1.1     elric }
    403       1.1     elric 
    404       1.1     elric /* XXX: we should probably put these into dksubr.c, mostly */
    405      1.18   thorpej static int
    406      1.40  christos cgdread(dev_t dev, struct uio *uio, int flags)
    407       1.1     elric {
    408       1.1     elric 	struct	cgd_softc *cs;
    409       1.1     elric 	struct	dk_softc *dksc;
    410       1.1     elric 
    411  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdread(0x%llx, %p, %d)\n",
    412  1.50.6.5       mjf 	    (unsigned long long)dev, uio, flags));
    413       1.1     elric 	GETCGD_SOFTC(cs, dev);
    414       1.1     elric 	dksc = &cs->sc_dksc;
    415       1.1     elric 	if ((dksc->sc_flags & DKF_INITED) == 0)
    416       1.1     elric 		return ENXIO;
    417       1.1     elric 	return physio(cgdstrategy, NULL, dev, B_READ, minphys, uio);
    418       1.1     elric }
    419       1.1     elric 
    420       1.1     elric /* XXX: we should probably put these into dksubr.c, mostly */
    421      1.18   thorpej static int
    422      1.40  christos cgdwrite(dev_t dev, struct uio *uio, int flags)
    423       1.1     elric {
    424       1.1     elric 	struct	cgd_softc *cs;
    425       1.1     elric 	struct	dk_softc *dksc;
    426       1.1     elric 
    427  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdwrite(0x%"PRIx64", %p, %d)\n", dev, uio, flags));
    428       1.1     elric 	GETCGD_SOFTC(cs, dev);
    429       1.1     elric 	dksc = &cs->sc_dksc;
    430       1.1     elric 	if ((dksc->sc_flags & DKF_INITED) == 0)
    431       1.1     elric 		return ENXIO;
    432       1.1     elric 	return physio(cgdstrategy, NULL, dev, B_WRITE, minphys, uio);
    433       1.1     elric }
    434       1.1     elric 
    435      1.18   thorpej static int
    436      1.44  christos cgdioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
    437       1.1     elric {
    438       1.1     elric 	struct	cgd_softc *cs;
    439       1.1     elric 	struct	dk_softc *dksc;
    440      1.29      yamt 	struct	disk *dk;
    441       1.1     elric 	int	ret;
    442       1.1     elric 	int	part = DISKPART(dev);
    443       1.1     elric 	int	pmask = 1 << part;
    444       1.1     elric 
    445  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgdioctl(0x%"PRIx64", %ld, %p, %d, %p)\n",
    446      1.32  christos 	    dev, cmd, data, flag, l));
    447       1.1     elric 	GETCGD_SOFTC(cs, dev);
    448       1.1     elric 	dksc = &cs->sc_dksc;
    449      1.29      yamt 	dk = &dksc->sc_dkdev;
    450       1.1     elric 	switch (cmd) {
    451       1.1     elric 	case CGDIOCSET:
    452       1.1     elric 	case CGDIOCCLR:
    453       1.1     elric 		if ((flag & FWRITE) == 0)
    454       1.1     elric 			return EBADF;
    455       1.1     elric 	}
    456       1.1     elric 
    457       1.1     elric 	switch (cmd) {
    458       1.1     elric 	case CGDIOCSET:
    459       1.1     elric 		if (dksc->sc_flags & DKF_INITED)
    460       1.1     elric 			ret = EBUSY;
    461       1.1     elric 		else
    462      1.32  christos 			ret = cgd_ioctl_set(cs, data, l);
    463       1.1     elric 		break;
    464       1.1     elric 	case CGDIOCCLR:
    465       1.1     elric 		if (!(dksc->sc_flags & DKF_INITED)) {
    466       1.1     elric 			ret = ENXIO;
    467       1.1     elric 			break;
    468       1.1     elric 		}
    469       1.1     elric 		if (DK_BUSY(&cs->sc_dksc, pmask)) {
    470       1.1     elric 			ret = EBUSY;
    471       1.1     elric 			break;
    472       1.1     elric 		}
    473      1.32  christos 		ret = cgd_ioctl_clr(cs, data, l);
    474       1.1     elric 		break;
    475       1.1     elric 	default:
    476      1.32  christos 		ret = dk_ioctl(di, dksc, dev, cmd, data, flag, l);
    477       1.1     elric 		break;
    478       1.1     elric 	}
    479       1.1     elric 
    480       1.1     elric 	return ret;
    481       1.1     elric }
    482       1.1     elric 
    483      1.18   thorpej static int
    484      1.44  christos cgddump(dev_t dev, daddr_t blkno, void *va, size_t size)
    485       1.1     elric {
    486       1.1     elric 	struct	cgd_softc *cs;
    487       1.1     elric 
    488  1.50.6.5       mjf 	DPRINTF_FOLLOW(("cgddump(0x%"PRIx64", %" PRId64 ", %p, %lu)\n",
    489  1.50.6.5       mjf 	    dev, blkno, va, (unsigned long)size));
    490       1.1     elric 	GETCGD_SOFTC(cs, dev);
    491       1.1     elric 	return dk_dump(di, &cs->sc_dksc, dev, blkno, va, size);
    492       1.1     elric }
    493       1.1     elric 
    494       1.1     elric /*
    495       1.1     elric  * XXXrcd:
    496       1.1     elric  *  for now we hardcode the maximum key length.
    497       1.1     elric  */
    498       1.1     elric #define MAX_KEYSIZE	1024
    499       1.1     elric 
    500  1.50.6.4       mjf static const struct {
    501  1.50.6.4       mjf 	const char *n;
    502  1.50.6.4       mjf 	int v;
    503  1.50.6.4       mjf 	int d;
    504  1.50.6.4       mjf } encblkno[] = {
    505  1.50.6.4       mjf 	{ "encblkno",  CGD_CIPHER_CBC_ENCBLKNO8, 1 },
    506  1.50.6.4       mjf 	{ "encblkno8", CGD_CIPHER_CBC_ENCBLKNO8, 1 },
    507  1.50.6.4       mjf 	{ "encblkno1", CGD_CIPHER_CBC_ENCBLKNO1, 8 },
    508  1.50.6.4       mjf };
    509  1.50.6.4       mjf 
    510       1.1     elric /* ARGSUSED */
    511       1.1     elric static int
    512      1.32  christos cgd_ioctl_set(struct cgd_softc *cs, void *data, struct lwp *l)
    513       1.1     elric {
    514       1.1     elric 	struct	 cgd_ioctl *ci = data;
    515       1.1     elric 	struct	 vnode *vp;
    516       1.1     elric 	int	 ret;
    517  1.50.6.4       mjf 	size_t	 i;
    518      1.43    cbiere 	size_t	 keybytes;			/* key length in bytes */
    519      1.27  drochner 	const char *cp;
    520      1.36  christos 	char	 *inbuf;
    521       1.1     elric 
    522       1.1     elric 	cp = ci->ci_disk;
    523      1.45      cube 	if ((ret = dk_lookup(cp, l, &vp, UIO_USERSPACE)) != 0)
    524       1.1     elric 		return ret;
    525       1.1     elric 
    526      1.36  christos 	inbuf = malloc(MAX_KEYSIZE, M_TEMP, M_WAITOK);
    527      1.36  christos 
    528      1.32  christos 	if ((ret = cgdinit(cs, cp, vp, l)) != 0)
    529       1.1     elric 		goto bail;
    530       1.1     elric 
    531      1.36  christos 	(void)memset(inbuf, 0, MAX_KEYSIZE);
    532       1.1     elric 	ret = copyinstr(ci->ci_alg, inbuf, 256, NULL);
    533       1.1     elric 	if (ret)
    534       1.1     elric 		goto bail;
    535       1.1     elric 	cs->sc_cfuncs = cryptfuncs_find(inbuf);
    536       1.1     elric 	if (!cs->sc_cfuncs) {
    537       1.1     elric 		ret = EINVAL;
    538       1.1     elric 		goto bail;
    539       1.1     elric 	}
    540       1.1     elric 
    541      1.43    cbiere 	(void)memset(inbuf, 0, MAX_KEYSIZE);
    542      1.36  christos 	ret = copyinstr(ci->ci_ivmethod, inbuf, MAX_KEYSIZE, NULL);
    543       1.1     elric 	if (ret)
    544       1.1     elric 		goto bail;
    545  1.50.6.4       mjf 
    546  1.50.6.4       mjf 	for (i = 0; i < __arraycount(encblkno); i++)
    547  1.50.6.4       mjf 		if (strcmp(encblkno[i].n, inbuf) == 0)
    548  1.50.6.4       mjf 			break;
    549  1.50.6.4       mjf 
    550  1.50.6.4       mjf 	if (i == __arraycount(encblkno)) {
    551       1.1     elric 		ret = EINVAL;
    552       1.1     elric 		goto bail;
    553       1.1     elric 	}
    554       1.1     elric 
    555      1.15       dan 	keybytes = ci->ci_keylen / 8 + 1;
    556      1.15       dan 	if (keybytes > MAX_KEYSIZE) {
    557       1.1     elric 		ret = EINVAL;
    558       1.1     elric 		goto bail;
    559       1.1     elric 	}
    560  1.50.6.4       mjf 
    561      1.36  christos 	(void)memset(inbuf, 0, MAX_KEYSIZE);
    562      1.15       dan 	ret = copyin(ci->ci_key, inbuf, keybytes);
    563       1.1     elric 	if (ret)
    564       1.1     elric 		goto bail;
    565       1.1     elric 
    566       1.1     elric 	cs->sc_cdata.cf_blocksize = ci->ci_blocksize;
    567  1.50.6.4       mjf 	cs->sc_cdata.cf_mode = encblkno[i].v;
    568       1.1     elric 	cs->sc_cdata.cf_priv = cs->sc_cfuncs->cf_init(ci->ci_keylen, inbuf,
    569       1.1     elric 	    &cs->sc_cdata.cf_blocksize);
    570  1.50.6.4       mjf 	/*
    571  1.50.6.4       mjf 	 * The blocksize is supposed to be in bytes. Unfortunately originally
    572  1.50.6.4       mjf 	 * it was expressed in bits. For compatibility we maintain encblkno
    573  1.50.6.4       mjf 	 * and encblkno8.
    574  1.50.6.4       mjf 	 */
    575  1.50.6.4       mjf 	cs->sc_cdata.cf_blocksize /= encblkno[i].d;
    576      1.36  christos 	(void)memset(inbuf, 0, MAX_KEYSIZE);
    577       1.1     elric 	if (!cs->sc_cdata.cf_priv) {
    578       1.1     elric 		printf("cgd: unable to initialize cipher\n");
    579       1.1     elric 		ret = EINVAL;		/* XXX is this the right error? */
    580       1.1     elric 		goto bail;
    581       1.1     elric 	}
    582      1.36  christos 	free(inbuf, M_TEMP);
    583       1.1     elric 
    584      1.30      yamt 	bufq_alloc(&cs->sc_dksc.sc_bufq, "fcfs", 0);
    585      1.16     elric 
    586      1.16     elric 	cs->sc_data = malloc(MAXPHYS, M_DEVBUF, M_WAITOK);
    587      1.16     elric 	cs->sc_data_used = 0;
    588      1.16     elric 
    589       1.1     elric 	cs->sc_dksc.sc_flags |= DKF_INITED;
    590       1.1     elric 
    591       1.1     elric 	/* Attach the disk. */
    592      1.47        ad 	disk_attach(&cs->sc_dksc.sc_dkdev);
    593       1.1     elric 
    594       1.1     elric 	/* Try and read the disklabel. */
    595       1.1     elric 	dk_getdisklabel(di, &cs->sc_dksc, 0 /* XXX ? */);
    596       1.1     elric 
    597      1.29      yamt 	/* Discover wedges on this disk. */
    598      1.29      yamt 	dkwedge_discover(&cs->sc_dksc.sc_dkdev);
    599      1.29      yamt 
    600       1.1     elric 	return 0;
    601       1.1     elric 
    602       1.1     elric bail:
    603      1.36  christos 	free(inbuf, M_TEMP);
    604  1.50.6.1       mjf 	(void)vn_close(vp, FREAD|FWRITE, l->l_cred);
    605       1.1     elric 	return ret;
    606       1.1     elric }
    607       1.1     elric 
    608       1.1     elric /* ARGSUSED */
    609       1.1     elric static int
    610      1.40  christos cgd_ioctl_clr(struct cgd_softc *cs, void *data, struct lwp *l)
    611       1.1     elric {
    612      1.16     elric 	int	s;
    613      1.16     elric 
    614      1.29      yamt 	/* Delete all of our wedges. */
    615      1.29      yamt 	dkwedge_delall(&cs->sc_dksc.sc_dkdev);
    616      1.29      yamt 
    617      1.16     elric 	/* Kill off any queued buffers. */
    618      1.16     elric 	s = splbio();
    619      1.30      yamt 	bufq_drain(cs->sc_dksc.sc_bufq);
    620      1.16     elric 	splx(s);
    621      1.30      yamt 	bufq_free(cs->sc_dksc.sc_bufq);
    622       1.1     elric 
    623  1.50.6.1       mjf 	(void)vn_close(cs->sc_tvn, FREAD|FWRITE, l->l_cred);
    624       1.1     elric 	cs->sc_cfuncs->cf_destroy(cs->sc_cdata.cf_priv);
    625       1.1     elric 	free(cs->sc_tpath, M_DEVBUF);
    626      1.16     elric 	free(cs->sc_data, M_DEVBUF);
    627      1.16     elric 	cs->sc_data_used = 0;
    628       1.1     elric 	cs->sc_dksc.sc_flags &= ~DKF_INITED;
    629      1.47        ad 	disk_detach(&cs->sc_dksc.sc_dkdev);
    630       1.1     elric 
    631       1.1     elric 	return 0;
    632       1.1     elric }
    633       1.1     elric 
    634       1.1     elric static int
    635  1.50.6.5       mjf getsize(struct lwp *l, struct vnode *vp, size_t *size)
    636  1.50.6.5       mjf {
    637  1.50.6.5       mjf 	struct partinfo dpart;
    638  1.50.6.5       mjf 	struct dkwedge_info dkw;
    639  1.50.6.5       mjf 	int ret;
    640  1.50.6.5       mjf 
    641  1.50.6.5       mjf 	if ((ret = VOP_IOCTL(vp, DIOCGWEDGEINFO, &dkw, FREAD,
    642  1.50.6.5       mjf 	    l->l_cred)) == 0) {
    643  1.50.6.5       mjf 		*size = dkw.dkw_size;
    644  1.50.6.5       mjf 		return 0;
    645  1.50.6.5       mjf 	}
    646  1.50.6.5       mjf 
    647  1.50.6.5       mjf 	if ((ret = VOP_IOCTL(vp, DIOCGPART, &dpart, FREAD, l->l_cred)) == 0) {
    648  1.50.6.5       mjf 		*size = dpart.part->p_size;
    649  1.50.6.5       mjf 		return 0;
    650  1.50.6.5       mjf 	}
    651  1.50.6.5       mjf 
    652  1.50.6.5       mjf 	return ret;
    653  1.50.6.5       mjf }
    654  1.50.6.5       mjf 
    655  1.50.6.5       mjf 
    656  1.50.6.5       mjf static int
    657      1.27  drochner cgdinit(struct cgd_softc *cs, const char *cpath, struct vnode *vp,
    658      1.32  christos 	struct lwp *l)
    659       1.1     elric {
    660       1.1     elric 	struct	dk_geom *pdg;
    661       1.1     elric 	struct	vattr va;
    662       1.1     elric 	size_t	size;
    663       1.1     elric 	int	ret;
    664      1.36  christos 	char	*tmppath;
    665       1.1     elric 
    666       1.1     elric 	cs->sc_dksc.sc_size = 0;
    667       1.1     elric 	cs->sc_tvn = vp;
    668      1.36  christos 	cs->sc_tpath = NULL;
    669       1.1     elric 
    670      1.36  christos 	tmppath = malloc(MAXPATHLEN, M_TEMP, M_WAITOK);
    671       1.1     elric 	ret = copyinstr(cpath, tmppath, MAXPATHLEN, &cs->sc_tpathlen);
    672       1.1     elric 	if (ret)
    673       1.1     elric 		goto bail;
    674       1.1     elric 	cs->sc_tpath = malloc(cs->sc_tpathlen, M_DEVBUF, M_WAITOK);
    675       1.1     elric 	memcpy(cs->sc_tpath, tmppath, cs->sc_tpathlen);
    676       1.1     elric 
    677      1.48     pooka 	if ((ret = VOP_GETATTR(vp, &va, l->l_cred)) != 0)
    678       1.1     elric 		goto bail;
    679       1.1     elric 
    680       1.1     elric 	cs->sc_tdev = va.va_rdev;
    681       1.1     elric 
    682  1.50.6.5       mjf 	if ((ret = getsize(l, vp, &size)) != 0)
    683       1.1     elric 		goto bail;
    684       1.1     elric 
    685       1.1     elric 	if (!size) {
    686       1.1     elric 		ret = ENODEV;
    687       1.1     elric 		goto bail;
    688       1.1     elric 	}
    689       1.1     elric 
    690       1.1     elric 	cs->sc_dksc.sc_size = size;
    691       1.1     elric 
    692       1.1     elric 	/*
    693       1.1     elric 	 * XXX here we should probe the underlying device.  If we
    694       1.1     elric 	 *     are accessing a partition of type RAW_PART, then
    695       1.1     elric 	 *     we should populate our initial geometry with the
    696       1.1     elric 	 *     geometry that we discover from the device.
    697       1.1     elric 	 */
    698       1.1     elric 	pdg = &cs->sc_dksc.sc_geom;
    699       1.1     elric 	pdg->pdg_secsize = DEV_BSIZE;
    700       1.1     elric 	pdg->pdg_ntracks = 1;
    701       1.1     elric 	pdg->pdg_nsectors = 1024 * (1024 / pdg->pdg_secsize);
    702       1.1     elric 	pdg->pdg_ncylinders = cs->sc_dksc.sc_size / pdg->pdg_nsectors;
    703       1.1     elric 
    704       1.1     elric bail:
    705      1.36  christos 	free(tmppath, M_TEMP);
    706       1.1     elric 	if (ret && cs->sc_tpath)
    707       1.1     elric 		free(cs->sc_tpath, M_DEVBUF);
    708       1.1     elric 	return ret;
    709       1.1     elric }
    710       1.1     elric 
    711       1.1     elric /*
    712       1.1     elric  * Our generic cipher entry point.  This takes care of the
    713       1.1     elric  * IV mode and passes off the work to the specific cipher.
    714       1.1     elric  * We implement here the IV method ``encrypted block
    715       1.1     elric  * number''.
    716      1.22     perry  *
    717       1.1     elric  * For the encryption case, we accomplish this by setting
    718       1.1     elric  * up a struct uio where the first iovec of the source is
    719       1.1     elric  * the blocknumber and the first iovec of the dest is a
    720       1.1     elric  * sink.  We then call the cipher with an IV of zero, and
    721       1.1     elric  * the right thing happens.
    722      1.22     perry  *
    723       1.1     elric  * For the decryption case, we use the same basic mechanism
    724       1.1     elric  * for symmetry, but we encrypt the block number in the
    725       1.1     elric  * first iovec.
    726       1.1     elric  *
    727       1.1     elric  * We mainly do this to avoid requiring the definition of
    728       1.1     elric  * an ECB mode.
    729       1.1     elric  *
    730       1.1     elric  * XXXrcd: for now we rely on our own crypto framework defined
    731       1.1     elric  *         in dev/cgd_crypto.c.  This will change when we
    732       1.1     elric  *         get a generic kernel crypto framework.
    733       1.1     elric  */
    734       1.1     elric 
    735       1.1     elric static void
    736      1.25   xtraeme blkno2blkno_buf(char *sbuf, daddr_t blkno)
    737       1.1     elric {
    738       1.1     elric 	int	i;
    739       1.1     elric 
    740       1.1     elric 	/* Set up the blkno in blkno_buf, here we do not care much
    741       1.1     elric 	 * about the final layout of the information as long as we
    742       1.1     elric 	 * can guarantee that each sector will have a different IV
    743       1.1     elric 	 * and that the endianness of the machine will not affect
    744       1.1     elric 	 * the representation that we have chosen.
    745       1.1     elric 	 *
    746       1.1     elric 	 * We choose this representation, because it does not rely
    747       1.1     elric 	 * on the size of buf (which is the blocksize of the cipher),
    748       1.1     elric 	 * but allows daddr_t to grow without breaking existing
    749       1.1     elric 	 * disks.
    750       1.1     elric 	 *
    751       1.1     elric 	 * Note that blkno2blkno_buf does not take a size as input,
    752       1.1     elric 	 * and hence must be called on a pre-zeroed buffer of length
    753       1.1     elric 	 * greater than or equal to sizeof(daddr_t).
    754       1.1     elric 	 */
    755       1.1     elric 	for (i=0; i < sizeof(daddr_t); i++) {
    756      1.25   xtraeme 		*sbuf++ = blkno & 0xff;
    757       1.1     elric 		blkno >>= 8;
    758       1.1     elric 	}
    759       1.1     elric }
    760       1.1     elric 
    761       1.1     elric static void
    762      1.44  christos cgd_cipher(struct cgd_softc *cs, void *dstv, void *srcv,
    763      1.44  christos     size_t len, daddr_t blkno, size_t secsize, int dir)
    764       1.1     elric {
    765      1.44  christos 	char		*dst = dstv;
    766      1.44  christos 	char 		*src = srcv;
    767       1.1     elric 	cfunc_cipher	*cipher = cs->sc_cfuncs->cf_cipher;
    768       1.1     elric 	struct uio	dstuio;
    769       1.1     elric 	struct uio	srcuio;
    770       1.1     elric 	struct iovec	dstiov[2];
    771       1.1     elric 	struct iovec	srciov[2];
    772      1.42  christos 	size_t		blocksize = cs->sc_cdata.cf_blocksize;
    773       1.1     elric 	char		sink[blocksize];
    774       1.1     elric 	char		zero_iv[blocksize];
    775       1.1     elric 	char		blkno_buf[blocksize];
    776       1.1     elric 
    777       1.1     elric 	DPRINTF_FOLLOW(("cgd_cipher() dir=%d\n", dir));
    778       1.1     elric 
    779      1.22     perry 	DIAGCONDPANIC(len % blocksize != 0,
    780       1.1     elric 	    ("cgd_cipher: len %% blocksize != 0"));
    781       1.1     elric 
    782       1.1     elric 	/* ensure that sizeof(daddr_t) <= blocksize (for encblkno IVing) */
    783       1.1     elric 	DIAGCONDPANIC(sizeof(daddr_t) > blocksize,
    784       1.1     elric 	    ("cgd_cipher: sizeof(daddr_t) > blocksize"));
    785       1.1     elric 
    786       1.1     elric 	memset(zero_iv, 0x0, sizeof(zero_iv));
    787       1.1     elric 
    788       1.1     elric 	dstuio.uio_iov = dstiov;
    789       1.1     elric 	dstuio.uio_iovcnt = 2;
    790       1.1     elric 
    791       1.1     elric 	srcuio.uio_iov = srciov;
    792       1.1     elric 	srcuio.uio_iovcnt = 2;
    793       1.1     elric 
    794       1.1     elric 	dstiov[0].iov_base = sink;
    795       1.1     elric 	dstiov[0].iov_len  = blocksize;
    796       1.1     elric 	srciov[0].iov_base = blkno_buf;
    797       1.1     elric 	srciov[0].iov_len  = blocksize;
    798       1.1     elric 	dstiov[1].iov_len  = secsize;
    799       1.1     elric 	srciov[1].iov_len  = secsize;
    800       1.1     elric 
    801       1.1     elric 	for (; len > 0; len -= secsize) {
    802       1.1     elric 		dstiov[1].iov_base = dst;
    803       1.1     elric 		srciov[1].iov_base = src;
    804       1.1     elric 
    805       1.1     elric 		memset(blkno_buf, 0x0, sizeof(blkno_buf));
    806       1.1     elric 		blkno2blkno_buf(blkno_buf, blkno);
    807       1.1     elric 		if (dir == CGD_CIPHER_DECRYPT) {
    808       1.1     elric 			dstuio.uio_iovcnt = 1;
    809       1.1     elric 			srcuio.uio_iovcnt = 1;
    810       1.1     elric 			IFDEBUG(CGDB_CRYPTO, hexprint("step 0: blkno_buf",
    811       1.1     elric 			    blkno_buf, sizeof(blkno_buf)));
    812       1.1     elric 			cipher(cs->sc_cdata.cf_priv, &dstuio, &srcuio,
    813       1.1     elric 			    zero_iv, CGD_CIPHER_ENCRYPT);
    814       1.1     elric 			memcpy(blkno_buf, sink, blocksize);
    815       1.1     elric 			dstuio.uio_iovcnt = 2;
    816       1.1     elric 			srcuio.uio_iovcnt = 2;
    817       1.1     elric 		}
    818       1.1     elric 
    819       1.1     elric 		IFDEBUG(CGDB_CRYPTO, hexprint("step 1: blkno_buf",
    820       1.1     elric 		    blkno_buf, sizeof(blkno_buf)));
    821       1.1     elric 		cipher(cs->sc_cdata.cf_priv, &dstuio, &srcuio, zero_iv, dir);
    822       1.1     elric 		IFDEBUG(CGDB_CRYPTO, hexprint("step 2: sink",
    823       1.1     elric 		    sink, sizeof(sink)));
    824       1.1     elric 
    825       1.1     elric 		dst += secsize;
    826       1.1     elric 		src += secsize;
    827       1.1     elric 		blkno++;
    828       1.1     elric 	}
    829       1.1     elric }
    830       1.1     elric 
    831       1.1     elric #ifdef DEBUG
    832       1.1     elric static void
    833      1.26  drochner hexprint(const char *start, void *buf, int len)
    834       1.1     elric {
    835       1.1     elric 	char	*c = buf;
    836       1.1     elric 
    837       1.1     elric 	DIAGCONDPANIC(len < 0, ("hexprint: called with len < 0"));
    838       1.1     elric 	printf("%s: len=%06d 0x", start, len);
    839       1.1     elric 	while (len--)
    840      1.43    cbiere 		printf("%02x", (unsigned char) *c++);
    841       1.1     elric }
    842       1.1     elric #endif
    843