Home | History | Annotate | Line # | Download | only in pci
ubsec.c revision 1.13.14.1
      1  1.13.14.1       mjf /*	$NetBSD: ubsec.c,v 1.13.14.1 2008/02/18 21:05:59 mjf Exp $	*/
      2        1.1  jonathan /* $FreeBSD: src/sys/dev/ubsec/ubsec.c,v 1.6.2.6 2003/01/23 21:06:43 sam Exp $ */
      3        1.1  jonathan /*	$OpenBSD: ubsec.c,v 1.127 2003/06/04 14:04:58 jason Exp $	*/
      4        1.1  jonathan 
      5        1.1  jonathan /*
      6        1.1  jonathan  * Copyright (c) 2000 Jason L. Wright (jason (at) thought.net)
      7        1.1  jonathan  * Copyright (c) 2000 Theo de Raadt (deraadt (at) openbsd.org)
      8        1.1  jonathan  * Copyright (c) 2001 Patrik Lindergren (patrik (at) ipunplugged.com)
      9        1.5     perry  *
     10        1.1  jonathan  * Redistribution and use in source and binary forms, with or without
     11        1.1  jonathan  * modification, are permitted provided that the following conditions
     12        1.1  jonathan  * are met:
     13        1.1  jonathan  * 1. Redistributions of source code must retain the above copyright
     14        1.1  jonathan  *    notice, this list of conditions and the following disclaimer.
     15        1.1  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1  jonathan  *    notice, this list of conditions and the following disclaimer in the
     17        1.1  jonathan  *    documentation and/or other materials provided with the distribution.
     18        1.1  jonathan  *
     19        1.1  jonathan  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20        1.1  jonathan  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     21        1.1  jonathan  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     22        1.1  jonathan  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     23        1.1  jonathan  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     24        1.1  jonathan  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     25        1.1  jonathan  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26        1.1  jonathan  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     27        1.1  jonathan  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     28        1.1  jonathan  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.1  jonathan  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1  jonathan  *
     31        1.1  jonathan  * Effort sponsored in part by the Defense Advanced Research Projects
     32        1.1  jonathan  * Agency (DARPA) and Air Force Research Laboratory, Air Force
     33        1.1  jonathan  * Materiel Command, USAF, under agreement number F30602-01-2-0537.
     34        1.1  jonathan  *
     35        1.1  jonathan  */
     36        1.1  jonathan 
     37  1.13.14.1       mjf #include <sys/cdefs.h>
     38  1.13.14.1       mjf __KERNEL_RCSID(0, "$NetBSD: ubsec.c,v 1.13.14.1 2008/02/18 21:05:59 mjf Exp $");
     39  1.13.14.1       mjf 
     40        1.1  jonathan #undef UBSEC_DEBUG
     41        1.1  jonathan 
     42        1.1  jonathan /*
     43        1.1  jonathan  * uBsec 5[56]01, bcm580xx, bcm582x hardware crypto accelerator
     44        1.1  jonathan  */
     45        1.1  jonathan 
     46        1.1  jonathan #include <sys/param.h>
     47        1.1  jonathan #include <sys/systm.h>
     48        1.1  jonathan #include <sys/proc.h>
     49        1.1  jonathan #include <sys/endian.h>
     50        1.1  jonathan #ifdef __NetBSD__
     51        1.1  jonathan   #define letoh16 htole16
     52        1.1  jonathan   #define letoh32 htole32
     53        1.1  jonathan #define UBSEC_NO_RNG		/* until statistically tested */
     54        1.1  jonathan #endif
     55        1.1  jonathan #include <sys/errno.h>
     56        1.1  jonathan #include <sys/malloc.h>
     57        1.1  jonathan #include <sys/kernel.h>
     58        1.1  jonathan #include <sys/mbuf.h>
     59        1.1  jonathan #include <sys/device.h>
     60        1.1  jonathan #include <sys/queue.h>
     61        1.1  jonathan 
     62        1.1  jonathan #include <uvm/uvm_extern.h>
     63        1.1  jonathan 
     64        1.1  jonathan #include <opencrypto/cryptodev.h>
     65        1.8   thorpej #include <opencrypto/xform.h>
     66        1.1  jonathan #ifdef __OpenBSD__
     67        1.1  jonathan  #include <dev/rndvar.h>
     68        1.1  jonathan  #include <sys/md5k.h>
     69        1.1  jonathan #else
     70        1.1  jonathan  #include <sys/rnd.h>
     71        1.1  jonathan  #include <sys/md5.h>
     72        1.1  jonathan #endif
     73        1.1  jonathan #include <sys/sha1.h>
     74        1.1  jonathan 
     75        1.1  jonathan #include <dev/pci/pcireg.h>
     76        1.1  jonathan #include <dev/pci/pcivar.h>
     77        1.1  jonathan #include <dev/pci/pcidevs.h>
     78        1.1  jonathan 
     79        1.1  jonathan #include <dev/pci/ubsecreg.h>
     80        1.1  jonathan #include <dev/pci/ubsecvar.h>
     81        1.1  jonathan 
     82        1.1  jonathan /*
     83        1.1  jonathan  * Prototypes and count for the pci_device structure
     84        1.1  jonathan  */
     85        1.1  jonathan static	int ubsec_probe(struct device *, struct cfdata *, void *);
     86        1.1  jonathan static	void ubsec_attach(struct device *, struct device *, void *);
     87        1.1  jonathan static	void ubsec_reset_board(struct ubsec_softc *);
     88        1.1  jonathan static	void ubsec_init_board(struct ubsec_softc *);
     89        1.1  jonathan static	void ubsec_init_pciregs(struct pci_attach_args *pa);
     90        1.1  jonathan static	void ubsec_cleanchip(struct ubsec_softc *);
     91        1.1  jonathan static	void ubsec_totalreset(struct ubsec_softc *);
     92        1.1  jonathan static	int  ubsec_free_q(struct ubsec_softc*, struct ubsec_q *);
     93        1.1  jonathan 
     94        1.1  jonathan #ifdef __OpenBSD__
     95        1.1  jonathan struct cfattach ubsec_ca = {
     96        1.1  jonathan 	sizeof(struct ubsec_softc), ubsec_probe, ubsec_attach,
     97        1.1  jonathan };
     98        1.1  jonathan 
     99        1.1  jonathan struct cfdriver ubsec_cd = {
    100        1.1  jonathan 	0, "ubsec", DV_DULL
    101        1.1  jonathan };
    102        1.1  jonathan #else
    103        1.1  jonathan CFATTACH_DECL(ubsec, sizeof(struct ubsec_softc), ubsec_probe, ubsec_attach,
    104        1.1  jonathan 	      NULL, NULL);
    105        1.1  jonathan extern struct cfdriver ubsec_cd;
    106        1.1  jonathan #endif
    107        1.1  jonathan 
    108        1.1  jonathan /* patchable */
    109        1.1  jonathan #ifdef	UBSEC_DEBUG
    110        1.1  jonathan extern int ubsec_debug;
    111        1.1  jonathan int ubsec_debug=1;
    112        1.1  jonathan #endif
    113        1.1  jonathan 
    114        1.1  jonathan static	int	ubsec_intr(void *);
    115        1.1  jonathan static	int	ubsec_newsession(void*, u_int32_t *, struct cryptoini *);
    116        1.1  jonathan static	int	ubsec_freesession(void*, u_int64_t);
    117        1.1  jonathan static	int	ubsec_process(void*, struct cryptop *, int hint);
    118        1.1  jonathan static	void	ubsec_callback(struct ubsec_softc *, struct ubsec_q *);
    119        1.1  jonathan static	void	ubsec_feed(struct ubsec_softc *);
    120        1.1  jonathan static	void	ubsec_mcopy(struct mbuf *, struct mbuf *, int, int);
    121        1.1  jonathan static	void	ubsec_callback2(struct ubsec_softc *, struct ubsec_q2 *);
    122        1.1  jonathan static	void	ubsec_feed2(struct ubsec_softc *);
    123        1.1  jonathan #ifndef UBSEC_NO_RNG
    124        1.1  jonathan static	void	ubsec_rng(void *);
    125        1.1  jonathan #endif /* UBSEC_NO_RNG */
    126        1.1  jonathan static	int 	ubsec_dma_malloc(struct ubsec_softc *, bus_size_t,
    127        1.1  jonathan 				 struct ubsec_dma_alloc *, int);
    128        1.1  jonathan static	void	ubsec_dma_free(struct ubsec_softc *, struct ubsec_dma_alloc *);
    129        1.1  jonathan static	int	ubsec_dmamap_aligned(bus_dmamap_t);
    130        1.1  jonathan 
    131        1.1  jonathan static	int	ubsec_kprocess(void*, struct cryptkop *, int);
    132        1.1  jonathan static	int	ubsec_kprocess_modexp_sw(struct ubsec_softc *,
    133        1.1  jonathan 					 struct cryptkop *, int);
    134        1.1  jonathan static	int	ubsec_kprocess_modexp_hw(struct ubsec_softc *,
    135        1.1  jonathan 					 struct cryptkop *, int);
    136        1.1  jonathan static	int	ubsec_kprocess_rsapriv(struct ubsec_softc *,
    137        1.1  jonathan 				       struct cryptkop *, int);
    138        1.1  jonathan static	void	ubsec_kfree(struct ubsec_softc *, struct ubsec_q2 *);
    139        1.1  jonathan static	int	ubsec_ksigbits(struct crparam *);
    140        1.1  jonathan static	void	ubsec_kshift_r(u_int, u_int8_t *, u_int, u_int8_t *, u_int);
    141        1.1  jonathan static	void	ubsec_kshift_l(u_int, u_int8_t *, u_int, u_int8_t *, u_int);
    142        1.1  jonathan 
    143        1.1  jonathan #ifdef UBSEC_DEBUG
    144        1.1  jonathan static void	ubsec_dump_pb(volatile struct ubsec_pktbuf *);
    145        1.1  jonathan static void	ubsec_dump_mcr(struct ubsec_mcr *);
    146        1.1  jonathan static	void	ubsec_dump_ctx2(volatile struct ubsec_ctx_keyop *);
    147        1.1  jonathan #endif
    148        1.1  jonathan 
    149        1.1  jonathan #define	READ_REG(sc,r) \
    150        1.1  jonathan 	bus_space_read_4((sc)->sc_st, (sc)->sc_sh, (r))
    151        1.1  jonathan 
    152        1.1  jonathan #define WRITE_REG(sc,reg,val) \
    153        1.1  jonathan 	bus_space_write_4((sc)->sc_st, (sc)->sc_sh, reg, val)
    154        1.1  jonathan 
    155        1.1  jonathan #define	SWAP32(x) (x) = htole32(ntohl((x)))
    156        1.1  jonathan #ifndef HTOLE32
    157        1.1  jonathan  #define	HTOLE32(x) (x) = htole32(x)
    158        1.1  jonathan #endif
    159        1.1  jonathan 
    160        1.1  jonathan struct ubsec_stats ubsecstats;
    161        1.1  jonathan 
    162        1.1  jonathan /*
    163        1.5     perry  * ubsec_maxbatch controls the number of crypto ops to voluntarily
    164        1.1  jonathan  * collect into one submission to the hardware.  This batching happens
    165        1.1  jonathan  * when ops are dispatched from the crypto subsystem with a hint that
    166        1.1  jonathan  * more are to follow immediately.  These ops must also not be marked
    167        1.1  jonathan  * with a ``no delay'' flag.
    168        1.1  jonathan  */
    169        1.1  jonathan static	int ubsec_maxbatch = 1;
    170        1.1  jonathan #ifdef SYSCTL_INT
    171        1.1  jonathan SYSCTL_INT(_kern, OID_AUTO, ubsec_maxbatch, CTLFLAG_RW, &ubsec_maxbatch,
    172        1.1  jonathan 	    0, "Broadcom driver: max ops to batch w/o interrupt");
    173        1.1  jonathan #endif
    174        1.1  jonathan 
    175        1.1  jonathan /*
    176        1.1  jonathan  * ubsec_maxaggr controls the number of crypto ops to submit to the
    177        1.1  jonathan  * hardware as a unit.  This aggregation reduces the number of interrupts
    178        1.1  jonathan  * to the host at the expense of increased latency (for all but the last
    179        1.1  jonathan  * operation).  For network traffic setting this to one yields the highest
    180        1.1  jonathan  * performance but at the expense of more interrupt processing.
    181        1.1  jonathan  */
    182        1.1  jonathan static	int ubsec_maxaggr = 1;
    183        1.1  jonathan #ifdef SYSCTL_INT
    184        1.1  jonathan SYSCTL_INT(_kern, OID_AUTO, ubsec_maxaggr, CTLFLAG_RW, &ubsec_maxaggr,
    185        1.1  jonathan 	    0, "Broadcom driver: max ops to aggregate under one interrupt");
    186        1.1  jonathan #endif
    187        1.1  jonathan 
    188        1.4   thorpej static const struct ubsec_product {
    189        1.4   thorpej 	pci_vendor_id_t		ubsec_vendor;
    190        1.4   thorpej 	pci_product_id_t	ubsec_product;
    191        1.4   thorpej 	int			ubsec_flags;
    192        1.4   thorpej 	int			ubsec_statmask;
    193        1.4   thorpej 	const char		*ubsec_name;
    194        1.4   thorpej } ubsec_products[] = {
    195        1.4   thorpej 	{ PCI_VENDOR_BLUESTEEL,	PCI_PRODUCT_BLUESTEEL_5501,
    196        1.4   thorpej 	  0,
    197        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    198        1.4   thorpej 	  "Bluesteel 5501"
    199        1.4   thorpej 	},
    200        1.4   thorpej 	{ PCI_VENDOR_BLUESTEEL,	PCI_PRODUCT_BLUESTEEL_5601,
    201        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG,
    202        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    203        1.4   thorpej 	  "Bluesteel 5601"
    204        1.4   thorpej 	},
    205        1.4   thorpej 
    206        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5801,
    207        1.4   thorpej 	  0,
    208        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    209        1.4   thorpej 	  "Broadcom BCM5801"
    210        1.4   thorpej 	},
    211        1.4   thorpej 
    212        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5802,
    213        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG,
    214        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    215        1.4   thorpej 	  "Broadcom BCM5802"
    216        1.4   thorpej 	},
    217        1.4   thorpej 
    218        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5805,
    219        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG,
    220        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    221        1.4   thorpej 	  "Broadcom BCM5805"
    222        1.4   thorpej 	},
    223        1.4   thorpej 
    224        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5820,
    225        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    226        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    227        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR,
    228        1.4   thorpej 	  "Broadcom BCM5820"
    229        1.4   thorpej 	},
    230        1.4   thorpej 
    231        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5821,
    232        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    233        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    234        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR |
    235        1.4   thorpej 	      BS_STAT_MCR1_ALLEMPTY | BS_STAT_MCR2_ALLEMPTY,
    236        1.4   thorpej 	  "Broadcom BCM5821"
    237        1.4   thorpej 	},
    238        1.4   thorpej 	{ PCI_VENDOR_SUN,	PCI_PRODUCT_SUN_SCA1K,
    239        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    240        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    241        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR |
    242        1.4   thorpej 	      BS_STAT_MCR1_ALLEMPTY | BS_STAT_MCR2_ALLEMPTY,
    243        1.4   thorpej 	  "Sun Crypto Accelerator 1000"
    244        1.4   thorpej 	},
    245        1.4   thorpej 	{ PCI_VENDOR_SUN,	PCI_PRODUCT_SUN_5821,
    246        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    247        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    248        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR |
    249        1.4   thorpej 	      BS_STAT_MCR1_ALLEMPTY | BS_STAT_MCR2_ALLEMPTY,
    250        1.4   thorpej 	  "Broadcom BCM5821 (Sun)"
    251        1.4   thorpej 	},
    252        1.4   thorpej 
    253        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5822,
    254        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    255        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    256        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR |
    257        1.4   thorpej 	      BS_STAT_MCR1_ALLEMPTY | BS_STAT_MCR2_ALLEMPTY,
    258        1.4   thorpej 	  "Broadcom BCM5822"
    259        1.4   thorpej 	},
    260        1.4   thorpej 
    261        1.4   thorpej 	{ PCI_VENDOR_BROADCOM,	PCI_PRODUCT_BROADCOM_5823,
    262        1.4   thorpej 	  UBS_FLAGS_KEY | UBS_FLAGS_RNG | UBS_FLAGS_LONGCTX |
    263        1.4   thorpej 	      UBS_FLAGS_HWNORM | UBS_FLAGS_BIGKEY,
    264        1.4   thorpej 	  BS_STAT_MCR1_DONE | BS_STAT_DMAERR |
    265        1.4   thorpej 	      BS_STAT_MCR1_ALLEMPTY | BS_STAT_MCR2_ALLEMPTY,
    266        1.4   thorpej 	  "Broadcom BCM5823"
    267        1.4   thorpej 	},
    268        1.4   thorpej 
    269        1.4   thorpej 	{ 0,			0,
    270        1.4   thorpej 	  0,
    271        1.4   thorpej 	  0,
    272        1.4   thorpej 	  NULL
    273        1.4   thorpej 	}
    274        1.4   thorpej };
    275        1.4   thorpej 
    276        1.4   thorpej static const struct ubsec_product *
    277        1.4   thorpej ubsec_lookup(const struct pci_attach_args *pa)
    278        1.4   thorpej {
    279        1.4   thorpej 	const struct ubsec_product *up;
    280        1.4   thorpej 
    281        1.4   thorpej 	for (up = ubsec_products; up->ubsec_name != NULL; up++) {
    282        1.4   thorpej 		if (PCI_VENDOR(pa->pa_id) == up->ubsec_vendor &&
    283        1.4   thorpej 		    PCI_PRODUCT(pa->pa_id) == up->ubsec_product)
    284        1.4   thorpej 			return (up);
    285        1.4   thorpej 	}
    286        1.4   thorpej 	return (NULL);
    287        1.4   thorpej }
    288        1.4   thorpej 
    289        1.1  jonathan static int
    290       1.11  christos ubsec_probe(struct device *parent, struct cfdata *match,
    291       1.10  christos     void *aux)
    292        1.1  jonathan {
    293        1.1  jonathan 	struct pci_attach_args *pa = (struct pci_attach_args *)aux;
    294        1.1  jonathan 
    295        1.4   thorpej 	if (ubsec_lookup(pa) != NULL)
    296        1.1  jonathan 		return (1);
    297        1.1  jonathan 
    298        1.1  jonathan 	return (0);
    299        1.1  jonathan }
    300        1.1  jonathan 
    301        1.7   thorpej static void
    302       1.11  christos ubsec_attach(struct device *parent, struct device *self, void *aux)
    303        1.1  jonathan {
    304        1.1  jonathan 	struct ubsec_softc *sc = (struct ubsec_softc *)self;
    305        1.1  jonathan 	struct pci_attach_args *pa = aux;
    306        1.4   thorpej 	const struct ubsec_product *up;
    307        1.1  jonathan 	pci_chipset_tag_t pc = pa->pa_pc;
    308        1.1  jonathan 	pci_intr_handle_t ih;
    309        1.1  jonathan 	const char *intrstr = NULL;
    310        1.1  jonathan 	struct ubsec_dma *dmap;
    311        1.1  jonathan 	u_int32_t cmd, i;
    312        1.1  jonathan 
    313        1.4   thorpej 	up = ubsec_lookup(pa);
    314        1.4   thorpej 	if (up == NULL) {
    315        1.4   thorpej 		printf("\n");
    316        1.4   thorpej 		panic("ubsec_attach: impossible");
    317        1.4   thorpej 	}
    318        1.4   thorpej 
    319        1.4   thorpej 	aprint_naive(": Crypto processor\n");
    320        1.4   thorpej 	aprint_normal(": %s, rev. %d\n", up->ubsec_name,
    321        1.4   thorpej 	    PCI_REVISION(pa->pa_class));
    322        1.4   thorpej 
    323        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_queue);
    324        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_qchip);
    325        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_queue2);
    326        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_qchip2);
    327        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_q2free);
    328        1.1  jonathan 
    329        1.4   thorpej 	sc->sc_flags = up->ubsec_flags;
    330        1.4   thorpej 	sc->sc_statmask = up->ubsec_statmask;
    331        1.1  jonathan 
    332        1.1  jonathan 	cmd = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    333        1.4   thorpej 	cmd |= PCI_COMMAND_MASTER_ENABLE;
    334        1.1  jonathan 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, cmd);
    335        1.1  jonathan 
    336        1.4   thorpej 	if (pci_mapreg_map(pa, BS_BAR, PCI_MAPREG_TYPE_MEM, 0,
    337        1.4   thorpej 	    &sc->sc_st, &sc->sc_sh, NULL, NULL)) {
    338        1.4   thorpej 		aprint_error("%s: can't find mem space",
    339        1.4   thorpej 		    sc->sc_dv.dv_xname);
    340        1.1  jonathan 		return;
    341        1.1  jonathan 	}
    342        1.1  jonathan 
    343        1.1  jonathan 	sc->sc_dmat = pa->pa_dmat;
    344        1.1  jonathan 
    345        1.1  jonathan 	if (pci_intr_map(pa, &ih)) {
    346        1.4   thorpej 		aprint_error("%s: couldn't map interrupt\n",
    347        1.4   thorpej 		    sc->sc_dv.dv_xname);
    348        1.1  jonathan 		return;
    349        1.1  jonathan 	}
    350        1.1  jonathan 	intrstr = pci_intr_string(pc, ih);
    351        1.4   thorpej 	sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, ubsec_intr, sc);
    352        1.1  jonathan 	if (sc->sc_ih == NULL) {
    353        1.4   thorpej 		aprint_error("%s: couldn't establish interrupt",
    354        1.4   thorpej 		    sc->sc_dv.dv_xname);
    355        1.1  jonathan 		if (intrstr != NULL)
    356        1.4   thorpej 			aprint_normal(" at %s", intrstr);
    357        1.4   thorpej 		aprint_normal("\n");
    358        1.1  jonathan 		return;
    359        1.1  jonathan 	}
    360        1.4   thorpej 	aprint_normal("%s: interrupting at %s\n", sc->sc_dv.dv_xname, intrstr);
    361        1.1  jonathan 
    362        1.1  jonathan 	sc->sc_cid = crypto_get_driverid(0);
    363        1.1  jonathan 	if (sc->sc_cid < 0) {
    364        1.4   thorpej 		aprint_error("%s: couldn't get crypto driver id\n",
    365        1.4   thorpej 		    sc->sc_dv.dv_xname);
    366        1.1  jonathan 		pci_intr_disestablish(pc, sc->sc_ih);
    367        1.1  jonathan 		return;
    368        1.1  jonathan 	}
    369        1.1  jonathan 
    370        1.1  jonathan 	SIMPLEQ_INIT(&sc->sc_freequeue);
    371        1.1  jonathan 	dmap = sc->sc_dmaa;
    372        1.1  jonathan 	for (i = 0; i < UBS_MAX_NQUEUE; i++, dmap++) {
    373        1.1  jonathan 		struct ubsec_q *q;
    374        1.1  jonathan 
    375        1.1  jonathan 		q = (struct ubsec_q *)malloc(sizeof(struct ubsec_q),
    376        1.1  jonathan 		    M_DEVBUF, M_NOWAIT);
    377        1.1  jonathan 		if (q == NULL) {
    378        1.4   thorpej 			aprint_error("%s: can't allocate queue buffers\n",
    379        1.4   thorpej 			    sc->sc_dv.dv_xname);
    380        1.1  jonathan 			break;
    381        1.1  jonathan 		}
    382        1.1  jonathan 
    383        1.1  jonathan 		if (ubsec_dma_malloc(sc, sizeof(struct ubsec_dmachunk),
    384        1.1  jonathan 		    &dmap->d_alloc, 0)) {
    385        1.4   thorpej 			aprint_error("%s: can't allocate dma buffers\n",
    386        1.4   thorpej 			    sc->sc_dv.dv_xname);
    387        1.1  jonathan 			free(q, M_DEVBUF);
    388        1.1  jonathan 			break;
    389        1.1  jonathan 		}
    390        1.1  jonathan 		dmap->d_dma = (struct ubsec_dmachunk *)dmap->d_alloc.dma_vaddr;
    391        1.1  jonathan 
    392        1.1  jonathan 		q->q_dma = dmap;
    393        1.1  jonathan 		sc->sc_queuea[i] = q;
    394        1.1  jonathan 
    395        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_freequeue, q, q_next);
    396        1.1  jonathan 	}
    397        1.1  jonathan 
    398        1.1  jonathan 	crypto_register(sc->sc_cid, CRYPTO_3DES_CBC, 0, 0,
    399        1.1  jonathan 	    ubsec_newsession, ubsec_freesession, ubsec_process, sc);
    400        1.1  jonathan 	crypto_register(sc->sc_cid, CRYPTO_DES_CBC, 0, 0,
    401        1.1  jonathan 	    ubsec_newsession, ubsec_freesession, ubsec_process, sc);
    402  1.13.14.1       mjf 	crypto_register(sc->sc_cid, CRYPTO_MD5_HMAC_96, 0, 0,
    403        1.1  jonathan 	    ubsec_newsession, ubsec_freesession, ubsec_process, sc);
    404  1.13.14.1       mjf 	crypto_register(sc->sc_cid, CRYPTO_SHA1_HMAC_96, 0, 0,
    405        1.1  jonathan 	    ubsec_newsession, ubsec_freesession, ubsec_process, sc);
    406        1.1  jonathan 
    407        1.1  jonathan 	/*
    408        1.1  jonathan 	 * Reset Broadcom chip
    409        1.1  jonathan 	 */
    410        1.1  jonathan 	ubsec_reset_board(sc);
    411        1.1  jonathan 
    412        1.1  jonathan 	/*
    413        1.1  jonathan 	 * Init Broadcom specific PCI settings
    414        1.1  jonathan 	 */
    415        1.1  jonathan 	ubsec_init_pciregs(pa);
    416        1.1  jonathan 
    417        1.1  jonathan 	/*
    418        1.1  jonathan 	 * Init Broadcom chip
    419        1.1  jonathan 	 */
    420        1.1  jonathan 	ubsec_init_board(sc);
    421        1.1  jonathan 
    422        1.1  jonathan #ifndef UBSEC_NO_RNG
    423        1.1  jonathan 	if (sc->sc_flags & UBS_FLAGS_RNG) {
    424        1.1  jonathan 		sc->sc_statmask |= BS_STAT_MCR2_DONE;
    425        1.1  jonathan 
    426        1.1  jonathan 		if (ubsec_dma_malloc(sc, sizeof(struct ubsec_mcr),
    427        1.1  jonathan 		    &sc->sc_rng.rng_q.q_mcr, 0))
    428        1.1  jonathan 			goto skip_rng;
    429        1.1  jonathan 
    430        1.1  jonathan 		if (ubsec_dma_malloc(sc, sizeof(struct ubsec_ctx_rngbypass),
    431        1.1  jonathan 		    &sc->sc_rng.rng_q.q_ctx, 0)) {
    432        1.1  jonathan 			ubsec_dma_free(sc, &sc->sc_rng.rng_q.q_mcr);
    433        1.1  jonathan 			goto skip_rng;
    434        1.1  jonathan 		}
    435        1.1  jonathan 
    436        1.1  jonathan 		if (ubsec_dma_malloc(sc, sizeof(u_int32_t) *
    437        1.1  jonathan 		    UBSEC_RNG_BUFSIZ, &sc->sc_rng.rng_buf, 0)) {
    438        1.1  jonathan 			ubsec_dma_free(sc, &sc->sc_rng.rng_q.q_ctx);
    439        1.1  jonathan 			ubsec_dma_free(sc, &sc->sc_rng.rng_q.q_mcr);
    440        1.1  jonathan 			goto skip_rng;
    441        1.1  jonathan 		}
    442        1.1  jonathan 
    443        1.1  jonathan 		if (hz >= 100)
    444        1.1  jonathan 			sc->sc_rnghz = hz / 100;
    445        1.1  jonathan 		else
    446        1.1  jonathan 			sc->sc_rnghz = 1;
    447        1.1  jonathan #ifdef __OpenBSD__
    448        1.1  jonathan 		timeout_set(&sc->sc_rngto, ubsec_rng, sc);
    449        1.1  jonathan 		timeout_add(&sc->sc_rngto, sc->sc_rnghz);
    450        1.1  jonathan #else
    451       1.13        ad 		callout_init(&sc->sc_rngto, 0);
    452        1.1  jonathan 		callout_reset(&sc->sc_rngto, sc->sc_rnghz, ubsec_rng, sc);
    453        1.5     perry #endif
    454        1.4   thorpej  skip_rng:
    455        1.4   thorpej 		if (sc->sc_rnghz)
    456        1.4   thorpej 			aprint_normal("%s: random number generator enabled\n",
    457        1.4   thorpej 			    sc->sc_dv.dv_xname);
    458        1.4   thorpej 		else
    459        1.4   thorpej 			aprint_error("%s: WARNING: random number generator "
    460        1.4   thorpej 			    "disabled\n", sc->sc_dv.dv_xname);
    461        1.1  jonathan 	}
    462        1.1  jonathan #endif /* UBSEC_NO_RNG */
    463        1.1  jonathan 
    464        1.1  jonathan 	if (sc->sc_flags & UBS_FLAGS_KEY) {
    465        1.1  jonathan 		sc->sc_statmask |= BS_STAT_MCR2_DONE;
    466        1.1  jonathan 
    467        1.1  jonathan 		crypto_kregister(sc->sc_cid, CRK_MOD_EXP, 0,
    468        1.1  jonathan 				 ubsec_kprocess, sc);
    469        1.1  jonathan #if 0
    470        1.1  jonathan 		crypto_kregister(sc->sc_cid, CRK_MOD_EXP_CRT, 0,
    471        1.1  jonathan 				 ubsec_kprocess, sc);
    472        1.1  jonathan #endif
    473        1.1  jonathan 	}
    474        1.1  jonathan }
    475        1.1  jonathan 
    476        1.1  jonathan /*
    477        1.1  jonathan  * UBSEC Interrupt routine
    478        1.1  jonathan  */
    479        1.7   thorpej static int
    480        1.1  jonathan ubsec_intr(void *arg)
    481        1.1  jonathan {
    482        1.1  jonathan 	struct ubsec_softc *sc = arg;
    483        1.1  jonathan 	volatile u_int32_t stat;
    484        1.1  jonathan 	struct ubsec_q *q;
    485        1.1  jonathan 	struct ubsec_dma *dmap;
    486        1.1  jonathan 	int npkts = 0, i;
    487        1.1  jonathan 
    488        1.1  jonathan 	stat = READ_REG(sc, BS_STAT);
    489        1.1  jonathan 	stat &= sc->sc_statmask;
    490        1.1  jonathan 	if (stat == 0) {
    491        1.1  jonathan 		return (0);
    492        1.1  jonathan 	}
    493        1.1  jonathan 
    494        1.1  jonathan 	WRITE_REG(sc, BS_STAT, stat);		/* IACK */
    495        1.1  jonathan 
    496        1.1  jonathan 	/*
    497        1.1  jonathan 	 * Check to see if we have any packets waiting for us
    498        1.1  jonathan 	 */
    499        1.1  jonathan 	if ((stat & BS_STAT_MCR1_DONE)) {
    500        1.1  jonathan 		while (!SIMPLEQ_EMPTY(&sc->sc_qchip)) {
    501        1.1  jonathan 			q = SIMPLEQ_FIRST(&sc->sc_qchip);
    502        1.1  jonathan 			dmap = q->q_dma;
    503        1.1  jonathan 
    504        1.1  jonathan 			if ((dmap->d_dma->d_mcr.mcr_flags & htole16(UBS_MCR_DONE)) == 0)
    505        1.1  jonathan 				break;
    506        1.1  jonathan 
    507        1.1  jonathan 			q = SIMPLEQ_FIRST(&sc->sc_qchip);
    508        1.1  jonathan 			SIMPLEQ_REMOVE_HEAD(&sc->sc_qchip, /*q,*/ q_next);
    509        1.1  jonathan 
    510        1.1  jonathan 			npkts = q->q_nstacked_mcrs;
    511        1.1  jonathan 			sc->sc_nqchip -= 1+npkts;
    512        1.1  jonathan 			/*
    513        1.1  jonathan 			 * search for further sc_qchip ubsec_q's that share
    514        1.1  jonathan 			 * the same MCR, and complete them too, they must be
    515        1.1  jonathan 			 * at the top.
    516        1.1  jonathan 			 */
    517        1.1  jonathan 			for (i = 0; i < npkts; i++) {
    518        1.1  jonathan 				if(q->q_stacked_mcr[i])
    519        1.1  jonathan 					ubsec_callback(sc, q->q_stacked_mcr[i]);
    520        1.1  jonathan 				else
    521        1.1  jonathan 					break;
    522        1.1  jonathan 			}
    523        1.1  jonathan 			ubsec_callback(sc, q);
    524        1.1  jonathan 		}
    525        1.1  jonathan 
    526        1.1  jonathan 		/*
    527        1.1  jonathan 		 * Don't send any more packet to chip if there has been
    528        1.1  jonathan 		 * a DMAERR.
    529        1.1  jonathan 		 */
    530        1.1  jonathan 		if (!(stat & BS_STAT_DMAERR))
    531        1.1  jonathan 			ubsec_feed(sc);
    532        1.1  jonathan 	}
    533        1.1  jonathan 
    534        1.1  jonathan 	/*
    535        1.1  jonathan 	 * Check to see if we have any key setups/rng's waiting for us
    536        1.1  jonathan 	 */
    537        1.1  jonathan 	if ((sc->sc_flags & (UBS_FLAGS_KEY|UBS_FLAGS_RNG)) &&
    538        1.1  jonathan 	    (stat & BS_STAT_MCR2_DONE)) {
    539        1.1  jonathan 		struct ubsec_q2 *q2;
    540        1.1  jonathan 		struct ubsec_mcr *mcr;
    541        1.1  jonathan 
    542        1.1  jonathan 		while (!SIMPLEQ_EMPTY(&sc->sc_qchip2)) {
    543        1.1  jonathan 			q2 = SIMPLEQ_FIRST(&sc->sc_qchip2);
    544        1.1  jonathan 
    545        1.1  jonathan 			bus_dmamap_sync(sc->sc_dmat, q2->q_mcr.dma_map,
    546        1.1  jonathan 			    0, q2->q_mcr.dma_map->dm_mapsize,
    547        1.1  jonathan 			    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
    548        1.1  jonathan 
    549        1.1  jonathan 			mcr = (struct ubsec_mcr *)q2->q_mcr.dma_vaddr;
    550        1.1  jonathan 			if ((mcr->mcr_flags & htole16(UBS_MCR_DONE)) == 0) {
    551        1.1  jonathan 				bus_dmamap_sync(sc->sc_dmat,
    552        1.1  jonathan 				    q2->q_mcr.dma_map, 0,
    553        1.1  jonathan 				    q2->q_mcr.dma_map->dm_mapsize,
    554        1.1  jonathan 				    BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
    555        1.1  jonathan 				break;
    556        1.1  jonathan 			}
    557        1.1  jonathan 			q2 = SIMPLEQ_FIRST(&sc->sc_qchip2);
    558        1.1  jonathan 			SIMPLEQ_REMOVE_HEAD(&sc->sc_qchip2, /*q2,*/ q_next);
    559        1.1  jonathan 			ubsec_callback2(sc, q2);
    560        1.1  jonathan 			/*
    561        1.1  jonathan 			 * Don't send any more packet to chip if there has been
    562        1.1  jonathan 			 * a DMAERR.
    563        1.1  jonathan 			 */
    564        1.1  jonathan 			if (!(stat & BS_STAT_DMAERR))
    565        1.1  jonathan 				ubsec_feed2(sc);
    566        1.1  jonathan 		}
    567        1.1  jonathan 	}
    568        1.1  jonathan 
    569        1.1  jonathan 	/*
    570        1.1  jonathan 	 * Check to see if we got any DMA Error
    571        1.1  jonathan 	 */
    572        1.1  jonathan 	if (stat & BS_STAT_DMAERR) {
    573        1.1  jonathan #ifdef UBSEC_DEBUG
    574        1.1  jonathan 		if (ubsec_debug) {
    575        1.1  jonathan 			volatile u_int32_t a = READ_REG(sc, BS_ERR);
    576        1.1  jonathan 
    577        1.1  jonathan 			printf("%s: dmaerr %s@%08x\n", sc->sc_dv.dv_xname,
    578        1.1  jonathan 			    (a & BS_ERR_READ) ? "read" : "write",
    579        1.1  jonathan 			       a & BS_ERR_ADDR);
    580        1.1  jonathan 		}
    581        1.1  jonathan #endif /* UBSEC_DEBUG */
    582        1.1  jonathan 		ubsecstats.hst_dmaerr++;
    583        1.1  jonathan 		ubsec_totalreset(sc);
    584        1.1  jonathan 		ubsec_feed(sc);
    585        1.1  jonathan 	}
    586        1.1  jonathan 
    587        1.1  jonathan 	if (sc->sc_needwakeup) {		/* XXX check high watermark */
    588        1.6  christos 		int wkeup = sc->sc_needwakeup & (CRYPTO_SYMQ|CRYPTO_ASYMQ);
    589        1.1  jonathan #ifdef UBSEC_DEBUG
    590        1.1  jonathan 		if (ubsec_debug)
    591        1.1  jonathan 			printf("%s: wakeup crypto (%x)\n", sc->sc_dv.dv_xname,
    592        1.1  jonathan 				sc->sc_needwakeup);
    593        1.1  jonathan #endif /* UBSEC_DEBUG */
    594        1.6  christos 		sc->sc_needwakeup &= ~wkeup;
    595        1.6  christos 		crypto_unblock(sc->sc_cid, wkeup);
    596        1.1  jonathan 	}
    597        1.1  jonathan 	return (1);
    598        1.1  jonathan }
    599        1.1  jonathan 
    600        1.1  jonathan /*
    601        1.1  jonathan  * ubsec_feed() - aggregate and post requests to chip
    602        1.1  jonathan  * OpenBSD comments:
    603        1.1  jonathan  *		  It is assumed that the caller set splnet()
    604        1.1  jonathan  */
    605        1.1  jonathan static void
    606        1.1  jonathan ubsec_feed(struct ubsec_softc *sc)
    607        1.1  jonathan {
    608        1.1  jonathan 	struct ubsec_q *q, *q2;
    609        1.1  jonathan 	int npkts, i;
    610        1.1  jonathan 	void *v;
    611        1.1  jonathan 	u_int32_t stat;
    612        1.1  jonathan #ifdef UBSEC_DEBUG
    613        1.1  jonathan 	static int max;
    614        1.1  jonathan #endif /* UBSEC_DEBUG */
    615        1.1  jonathan 
    616        1.1  jonathan 	npkts = sc->sc_nqueue;
    617        1.1  jonathan 	if (npkts > ubsecstats.hst_maxqueue)
    618        1.1  jonathan 		ubsecstats.hst_maxqueue = npkts;
    619        1.1  jonathan 	if (npkts < 2)
    620        1.1  jonathan 		goto feed1;
    621        1.1  jonathan 
    622        1.1  jonathan 	/*
    623        1.1  jonathan 	 * Decide how many ops to combine in a single MCR.  We cannot
    624        1.1  jonathan 	 * aggregate more than UBS_MAX_AGGR because this is the number
    625        1.1  jonathan 	 * of slots defined in the data structure.  Otherwise we clamp
    626        1.1  jonathan 	 * based on the tunable parameter ubsec_maxaggr.  Note that
    627        1.1  jonathan 	 * aggregation can happen in two ways: either by batching ops
    628        1.5     perry 	 * from above or because the h/w backs up and throttles us.
    629        1.1  jonathan 	 * Aggregating ops reduces the number of interrupts to the host
    630        1.1  jonathan 	 * but also (potentially) increases the latency for processing
    631        1.1  jonathan 	 * completed ops as we only get an interrupt when all aggregated
    632        1.1  jonathan 	 * ops have completed.
    633        1.1  jonathan 	 */
    634        1.1  jonathan 	if (npkts > UBS_MAX_AGGR)
    635        1.1  jonathan 		npkts = UBS_MAX_AGGR;
    636        1.1  jonathan 	if (npkts > ubsec_maxaggr)
    637        1.1  jonathan 		npkts = ubsec_maxaggr;
    638        1.1  jonathan 	if (npkts > ubsecstats.hst_maxbatch)
    639        1.1  jonathan 		ubsecstats.hst_maxbatch = npkts;
    640        1.1  jonathan 	if (npkts < 2)
    641        1.1  jonathan 		goto feed1;
    642        1.1  jonathan 	ubsecstats.hst_totbatch += npkts-1;
    643        1.1  jonathan 
    644        1.1  jonathan 	if ((stat = READ_REG(sc, BS_STAT)) & (BS_STAT_MCR1_FULL | BS_STAT_DMAERR)) {
    645        1.1  jonathan 		if (stat & BS_STAT_DMAERR) {
    646        1.1  jonathan 			ubsec_totalreset(sc);
    647        1.1  jonathan 			ubsecstats.hst_dmaerr++;
    648        1.1  jonathan 		} else {
    649        1.1  jonathan 			ubsecstats.hst_mcr1full++;
    650        1.1  jonathan 		}
    651        1.1  jonathan 		return;
    652        1.1  jonathan 	}
    653        1.1  jonathan 
    654        1.1  jonathan #ifdef UBSEC_DEBUG
    655        1.1  jonathan 	if (ubsec_debug)
    656        1.1  jonathan 	    printf("merging %d records\n", npkts);
    657        1.1  jonathan 	/* XXX temporary aggregation statistics reporting code */
    658        1.1  jonathan 	if (max < npkts) {
    659        1.1  jonathan 		max = npkts;
    660        1.1  jonathan 		printf("%s: new max aggregate %d\n", sc->sc_dv.dv_xname, max);
    661        1.1  jonathan 	}
    662        1.1  jonathan #endif /* UBSEC_DEBUG */
    663        1.1  jonathan 
    664        1.1  jonathan 	q = SIMPLEQ_FIRST(&sc->sc_queue);
    665        1.1  jonathan 	SIMPLEQ_REMOVE_HEAD(&sc->sc_queue, /*q,*/ q_next);
    666        1.1  jonathan 	--sc->sc_nqueue;
    667        1.1  jonathan 
    668        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, q->q_src_map,
    669        1.1  jonathan 	    0, q->q_src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
    670        1.1  jonathan 	if (q->q_dst_map != NULL)
    671        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_dst_map,
    672        1.1  jonathan 		    0, q->q_dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
    673        1.1  jonathan 
    674        1.1  jonathan 	q->q_nstacked_mcrs = npkts - 1;		/* Number of packets stacked */
    675        1.1  jonathan 
    676        1.1  jonathan 	for (i = 0; i < q->q_nstacked_mcrs; i++) {
    677        1.1  jonathan 		q2 = SIMPLEQ_FIRST(&sc->sc_queue);
    678        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q2->q_src_map,
    679        1.1  jonathan 		    0, q2->q_src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
    680        1.1  jonathan 		if (q2->q_dst_map != NULL)
    681        1.1  jonathan 			bus_dmamap_sync(sc->sc_dmat, q2->q_dst_map,
    682        1.1  jonathan 			    0, q2->q_dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
    683        1.1  jonathan 		q2= SIMPLEQ_FIRST(&sc->sc_queue);
    684        1.1  jonathan 		SIMPLEQ_REMOVE_HEAD(&sc->sc_queue, /*q2,*/ q_next);
    685        1.1  jonathan 		--sc->sc_nqueue;
    686        1.1  jonathan 
    687        1.1  jonathan 		v = ((void *)&q2->q_dma->d_dma->d_mcr);
    688        1.1  jonathan 		v = (char*)v + (sizeof(struct ubsec_mcr) -
    689        1.1  jonathan 				 sizeof(struct ubsec_mcr_add));
    690        1.1  jonathan 		bcopy(v, &q->q_dma->d_dma->d_mcradd[i], sizeof(struct ubsec_mcr_add));
    691        1.1  jonathan 		q->q_stacked_mcr[i] = q2;
    692        1.1  jonathan 	}
    693        1.1  jonathan 	q->q_dma->d_dma->d_mcr.mcr_pkts = htole16(npkts);
    694        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_qchip, q, q_next);
    695        1.1  jonathan 	sc->sc_nqchip += npkts;
    696        1.1  jonathan 	if (sc->sc_nqchip > ubsecstats.hst_maxqchip)
    697        1.1  jonathan 		ubsecstats.hst_maxqchip = sc->sc_nqchip;
    698        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, q->q_dma->d_alloc.dma_map,
    699        1.1  jonathan 	    0, q->q_dma->d_alloc.dma_map->dm_mapsize,
    700        1.1  jonathan 	    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    701        1.1  jonathan 	WRITE_REG(sc, BS_MCR1, q->q_dma->d_alloc.dma_paddr +
    702        1.1  jonathan 	    offsetof(struct ubsec_dmachunk, d_mcr));
    703        1.1  jonathan 	return;
    704        1.1  jonathan 
    705        1.1  jonathan feed1:
    706        1.1  jonathan 	while (!SIMPLEQ_EMPTY(&sc->sc_queue)) {
    707        1.1  jonathan 		if ((stat = READ_REG(sc, BS_STAT)) & (BS_STAT_MCR1_FULL | BS_STAT_DMAERR)) {
    708        1.1  jonathan 			if (stat & BS_STAT_DMAERR) {
    709        1.1  jonathan 				ubsec_totalreset(sc);
    710        1.1  jonathan 				ubsecstats.hst_dmaerr++;
    711        1.1  jonathan 			} else {
    712        1.1  jonathan 				ubsecstats.hst_mcr1full++;
    713        1.1  jonathan 			}
    714        1.1  jonathan 			break;
    715        1.1  jonathan 		}
    716        1.1  jonathan 
    717        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_queue);
    718        1.1  jonathan 
    719        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_src_map,
    720        1.1  jonathan 		    0, q->q_src_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
    721        1.1  jonathan 		if (q->q_dst_map != NULL)
    722        1.1  jonathan 			bus_dmamap_sync(sc->sc_dmat, q->q_dst_map,
    723        1.1  jonathan 			    0, q->q_dst_map->dm_mapsize, BUS_DMASYNC_PREREAD);
    724        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_dma->d_alloc.dma_map,
    725        1.1  jonathan 		    0, q->q_dma->d_alloc.dma_map->dm_mapsize,
    726        1.1  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
    727        1.1  jonathan 
    728        1.1  jonathan 		WRITE_REG(sc, BS_MCR1, q->q_dma->d_alloc.dma_paddr +
    729        1.1  jonathan 		    offsetof(struct ubsec_dmachunk, d_mcr));
    730        1.1  jonathan #ifdef UBSEC_DEBUG
    731        1.1  jonathan 		if (ubsec_debug)
    732        1.1  jonathan 			printf("feed: q->chip %p %08x stat %08x\n",
    733        1.1  jonathan  		    	       q, (u_int32_t)q->q_dma->d_alloc.dma_paddr,
    734        1.1  jonathan 			       stat);
    735        1.1  jonathan #endif /* UBSEC_DEBUG */
    736        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_queue);
    737        1.1  jonathan 		SIMPLEQ_REMOVE_HEAD(&sc->sc_queue, /*q,*/ q_next);
    738        1.1  jonathan 		--sc->sc_nqueue;
    739        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_qchip, q, q_next);
    740        1.1  jonathan 		sc->sc_nqchip++;
    741        1.1  jonathan 	}
    742        1.1  jonathan 	if (sc->sc_nqchip > ubsecstats.hst_maxqchip)
    743        1.1  jonathan 		ubsecstats.hst_maxqchip = sc->sc_nqchip;
    744        1.1  jonathan }
    745        1.1  jonathan 
    746        1.1  jonathan /*
    747        1.1  jonathan  * Allocate a new 'session' and return an encoded session id.  'sidp'
    748        1.1  jonathan  * contains our registration id, and should contain an encoded session
    749        1.1  jonathan  * id on successful allocation.
    750        1.1  jonathan  */
    751        1.1  jonathan static int
    752        1.1  jonathan ubsec_newsession(void *arg, u_int32_t *sidp, struct cryptoini *cri)
    753        1.1  jonathan {
    754        1.1  jonathan 	struct cryptoini *c, *encini = NULL, *macini = NULL;
    755        1.1  jonathan 	struct ubsec_softc *sc;
    756        1.1  jonathan 	struct ubsec_session *ses = NULL;
    757        1.1  jonathan 	MD5_CTX md5ctx;
    758        1.1  jonathan 	SHA1_CTX sha1ctx;
    759        1.1  jonathan 	int i, sesn;
    760        1.1  jonathan 
    761        1.2  jonathan 	sc = arg;
    762        1.2  jonathan 	KASSERT(sc != NULL /*, ("ubsec_newsession: null softc")*/);
    763        1.2  jonathan 
    764        1.1  jonathan 	if (sidp == NULL || cri == NULL || sc == NULL)
    765        1.1  jonathan 		return (EINVAL);
    766        1.1  jonathan 
    767        1.1  jonathan 	for (c = cri; c != NULL; c = c->cri_next) {
    768  1.13.14.1       mjf 		if (c->cri_alg == CRYPTO_MD5_HMAC_96 ||
    769  1.13.14.1       mjf 		    c->cri_alg == CRYPTO_SHA1_HMAC_96) {
    770        1.1  jonathan 			if (macini)
    771        1.1  jonathan 				return (EINVAL);
    772        1.1  jonathan 			macini = c;
    773        1.1  jonathan 		} else if (c->cri_alg == CRYPTO_DES_CBC ||
    774        1.1  jonathan 		    c->cri_alg == CRYPTO_3DES_CBC) {
    775        1.1  jonathan 			if (encini)
    776        1.1  jonathan 				return (EINVAL);
    777        1.1  jonathan 			encini = c;
    778        1.1  jonathan 		} else
    779        1.1  jonathan 			return (EINVAL);
    780        1.1  jonathan 	}
    781        1.1  jonathan 	if (encini == NULL && macini == NULL)
    782        1.1  jonathan 		return (EINVAL);
    783        1.1  jonathan 
    784        1.1  jonathan 	if (sc->sc_sessions == NULL) {
    785        1.1  jonathan 		ses = sc->sc_sessions = (struct ubsec_session *)malloc(
    786        1.1  jonathan 		    sizeof(struct ubsec_session), M_DEVBUF, M_NOWAIT);
    787        1.1  jonathan 		if (ses == NULL)
    788        1.1  jonathan 			return (ENOMEM);
    789        1.1  jonathan 		sesn = 0;
    790        1.1  jonathan 		sc->sc_nsessions = 1;
    791        1.1  jonathan 	} else {
    792        1.1  jonathan 		for (sesn = 0; sesn < sc->sc_nsessions; sesn++) {
    793        1.1  jonathan 			if (sc->sc_sessions[sesn].ses_used == 0) {
    794        1.1  jonathan 				ses = &sc->sc_sessions[sesn];
    795        1.1  jonathan 				break;
    796        1.1  jonathan 			}
    797        1.1  jonathan 		}
    798        1.1  jonathan 
    799        1.1  jonathan 		if (ses == NULL) {
    800        1.1  jonathan 			sesn = sc->sc_nsessions;
    801        1.1  jonathan 			ses = (struct ubsec_session *)malloc((sesn + 1) *
    802        1.1  jonathan 			    sizeof(struct ubsec_session), M_DEVBUF, M_NOWAIT);
    803        1.1  jonathan 			if (ses == NULL)
    804        1.1  jonathan 				return (ENOMEM);
    805        1.1  jonathan 			bcopy(sc->sc_sessions, ses, sesn *
    806        1.1  jonathan 			    sizeof(struct ubsec_session));
    807        1.1  jonathan 			bzero(sc->sc_sessions, sesn *
    808        1.1  jonathan 			    sizeof(struct ubsec_session));
    809        1.1  jonathan 			free(sc->sc_sessions, M_DEVBUF);
    810        1.1  jonathan 			sc->sc_sessions = ses;
    811        1.1  jonathan 			ses = &sc->sc_sessions[sesn];
    812        1.1  jonathan 			sc->sc_nsessions++;
    813        1.1  jonathan 		}
    814        1.1  jonathan 	}
    815        1.1  jonathan 
    816        1.1  jonathan 	bzero(ses, sizeof(struct ubsec_session));
    817        1.1  jonathan 	ses->ses_used = 1;
    818        1.1  jonathan 	if (encini) {
    819        1.1  jonathan 		/* get an IV, network byte order */
    820        1.1  jonathan #ifdef __NetBSD__
    821        1.1  jonathan 		rnd_extract_data(ses->ses_iv,
    822        1.1  jonathan 		    sizeof(ses->ses_iv), RND_EXTRACT_ANY);
    823        1.1  jonathan #else
    824        1.1  jonathan 		get_random_bytes(ses->ses_iv, sizeof(ses->ses_iv));
    825        1.1  jonathan #endif
    826        1.1  jonathan 
    827        1.1  jonathan 		/* Go ahead and compute key in ubsec's byte order */
    828        1.1  jonathan 		if (encini->cri_alg == CRYPTO_DES_CBC) {
    829        1.1  jonathan 			bcopy(encini->cri_key, &ses->ses_deskey[0], 8);
    830        1.1  jonathan 			bcopy(encini->cri_key, &ses->ses_deskey[2], 8);
    831        1.1  jonathan 			bcopy(encini->cri_key, &ses->ses_deskey[4], 8);
    832        1.1  jonathan 		} else
    833        1.1  jonathan 			bcopy(encini->cri_key, ses->ses_deskey, 24);
    834        1.1  jonathan 
    835        1.1  jonathan 		SWAP32(ses->ses_deskey[0]);
    836        1.1  jonathan 		SWAP32(ses->ses_deskey[1]);
    837        1.1  jonathan 		SWAP32(ses->ses_deskey[2]);
    838        1.1  jonathan 		SWAP32(ses->ses_deskey[3]);
    839        1.1  jonathan 		SWAP32(ses->ses_deskey[4]);
    840        1.1  jonathan 		SWAP32(ses->ses_deskey[5]);
    841        1.1  jonathan 	}
    842        1.1  jonathan 
    843        1.1  jonathan 	if (macini) {
    844        1.1  jonathan 		for (i = 0; i < macini->cri_klen / 8; i++)
    845        1.1  jonathan 			macini->cri_key[i] ^= HMAC_IPAD_VAL;
    846        1.1  jonathan 
    847  1.13.14.1       mjf 		if (macini->cri_alg == CRYPTO_MD5_HMAC_96) {
    848        1.1  jonathan 			MD5Init(&md5ctx);
    849        1.1  jonathan 			MD5Update(&md5ctx, macini->cri_key,
    850        1.1  jonathan 			    macini->cri_klen / 8);
    851        1.1  jonathan 			MD5Update(&md5ctx, hmac_ipad_buffer,
    852        1.1  jonathan 			    HMAC_BLOCK_LEN - (macini->cri_klen / 8));
    853        1.1  jonathan 			bcopy(md5ctx.state, ses->ses_hminner,
    854        1.1  jonathan 			    sizeof(md5ctx.state));
    855        1.1  jonathan 		} else {
    856        1.1  jonathan 			SHA1Init(&sha1ctx);
    857        1.1  jonathan 			SHA1Update(&sha1ctx, macini->cri_key,
    858        1.1  jonathan 			    macini->cri_klen / 8);
    859        1.1  jonathan 			SHA1Update(&sha1ctx, hmac_ipad_buffer,
    860        1.1  jonathan 			    HMAC_BLOCK_LEN - (macini->cri_klen / 8));
    861        1.1  jonathan 			bcopy(sha1ctx.state, ses->ses_hminner,
    862        1.1  jonathan 			    sizeof(sha1ctx.state));
    863        1.1  jonathan 		}
    864        1.1  jonathan 
    865        1.1  jonathan 		for (i = 0; i < macini->cri_klen / 8; i++)
    866        1.1  jonathan 			macini->cri_key[i] ^= (HMAC_IPAD_VAL ^ HMAC_OPAD_VAL);
    867        1.1  jonathan 
    868  1.13.14.1       mjf 		if (macini->cri_alg == CRYPTO_MD5_HMAC_96) {
    869        1.1  jonathan 			MD5Init(&md5ctx);
    870        1.1  jonathan 			MD5Update(&md5ctx, macini->cri_key,
    871        1.1  jonathan 			    macini->cri_klen / 8);
    872        1.1  jonathan 			MD5Update(&md5ctx, hmac_opad_buffer,
    873        1.1  jonathan 			    HMAC_BLOCK_LEN - (macini->cri_klen / 8));
    874        1.1  jonathan 			bcopy(md5ctx.state, ses->ses_hmouter,
    875        1.1  jonathan 			    sizeof(md5ctx.state));
    876        1.1  jonathan 		} else {
    877        1.1  jonathan 			SHA1Init(&sha1ctx);
    878        1.1  jonathan 			SHA1Update(&sha1ctx, macini->cri_key,
    879        1.1  jonathan 			    macini->cri_klen / 8);
    880        1.1  jonathan 			SHA1Update(&sha1ctx, hmac_opad_buffer,
    881        1.1  jonathan 			    HMAC_BLOCK_LEN - (macini->cri_klen / 8));
    882        1.1  jonathan 			bcopy(sha1ctx.state, ses->ses_hmouter,
    883        1.1  jonathan 			    sizeof(sha1ctx.state));
    884        1.1  jonathan 		}
    885        1.1  jonathan 
    886        1.1  jonathan 		for (i = 0; i < macini->cri_klen / 8; i++)
    887        1.1  jonathan 			macini->cri_key[i] ^= HMAC_OPAD_VAL;
    888        1.1  jonathan 	}
    889        1.1  jonathan 
    890        1.9   thorpej 	*sidp = UBSEC_SID(device_unit(&sc->sc_dv), sesn);
    891        1.1  jonathan 	return (0);
    892        1.1  jonathan }
    893        1.1  jonathan 
    894        1.1  jonathan /*
    895        1.1  jonathan  * Deallocate a session.
    896        1.1  jonathan  */
    897        1.1  jonathan static int
    898        1.1  jonathan ubsec_freesession(void *arg, u_int64_t tid)
    899        1.1  jonathan {
    900        1.1  jonathan 	struct ubsec_softc *sc;
    901        1.1  jonathan 	int session;
    902        1.1  jonathan 	u_int32_t sid = ((u_int32_t) tid) & 0xffffffff;
    903        1.1  jonathan 
    904        1.1  jonathan 	sc = arg;
    905        1.1  jonathan 	KASSERT(sc != NULL /*, ("ubsec_freesession: null softc")*/);
    906        1.1  jonathan 
    907        1.1  jonathan 	session = UBSEC_SESSION(sid);
    908        1.1  jonathan 	if (session >= sc->sc_nsessions)
    909        1.1  jonathan 		return (EINVAL);
    910        1.1  jonathan 
    911        1.1  jonathan 	bzero(&sc->sc_sessions[session], sizeof(sc->sc_sessions[session]));
    912        1.1  jonathan 	return (0);
    913        1.1  jonathan }
    914        1.1  jonathan 
    915        1.1  jonathan #ifdef __FreeBSD__ /* Ugly gratuitous changes to bus_dma */
    916        1.1  jonathan static void
    917        1.1  jonathan ubsec_op_cb(void *arg, bus_dma_segment_t *seg, int nsegs, bus_size_t mapsize, int error)
    918        1.1  jonathan {
    919        1.1  jonathan 	struct ubsec_operand *op = arg;
    920        1.1  jonathan 
    921        1.5     perry 	KASSERT(nsegs <= UBS_MAX_SCATTER
    922        1.1  jonathan 		/*, ("Too many DMA segments returned when mapping operand")*/);
    923        1.1  jonathan #ifdef UBSEC_DEBUG
    924        1.1  jonathan 	if (ubsec_debug)
    925        1.1  jonathan 		printf("ubsec_op_cb: mapsize %u nsegs %d\n",
    926        1.1  jonathan 			(u_int) mapsize, nsegs);
    927        1.1  jonathan #endif
    928        1.1  jonathan 	op->mapsize = mapsize;
    929        1.1  jonathan 	op->nsegs = nsegs;
    930        1.1  jonathan 	bcopy(seg, op->segs, nsegs * sizeof (seg[0]));
    931        1.1  jonathan }
    932        1.1  jonathan #endif
    933        1.1  jonathan 
    934        1.1  jonathan static int
    935        1.1  jonathan ubsec_process(void *arg, struct cryptop *crp, int hint)
    936        1.1  jonathan {
    937        1.1  jonathan 	struct ubsec_q *q = NULL;
    938        1.1  jonathan #ifdef	__OpenBSD__
    939        1.1  jonathan 	int card;
    940        1.1  jonathan #endif
    941        1.1  jonathan 	int err = 0, i, j, s, nicealign;
    942        1.1  jonathan 	struct ubsec_softc *sc;
    943        1.1  jonathan 	struct cryptodesc *crd1, *crd2, *maccrd, *enccrd;
    944        1.1  jonathan 	int encoffset = 0, macoffset = 0, cpskip, cpoffset;
    945        1.1  jonathan 	int sskip, dskip, stheend, dtheend;
    946        1.1  jonathan 	int16_t coffset;
    947        1.1  jonathan 	struct ubsec_session *ses;
    948        1.1  jonathan 	struct ubsec_pktctx ctx;
    949        1.1  jonathan 	struct ubsec_dma *dmap = NULL;
    950        1.1  jonathan 
    951        1.2  jonathan 	sc = arg;
    952        1.2  jonathan 	KASSERT(sc != NULL /*, ("ubsec_process: null softc")*/);
    953        1.2  jonathan 
    954        1.1  jonathan 	if (crp == NULL || crp->crp_callback == NULL || sc == NULL) {
    955        1.1  jonathan 		ubsecstats.hst_invalid++;
    956        1.1  jonathan 		return (EINVAL);
    957        1.1  jonathan 	}
    958        1.1  jonathan 	if (UBSEC_SESSION(crp->crp_sid) >= sc->sc_nsessions) {
    959        1.1  jonathan 		ubsecstats.hst_badsession++;
    960        1.1  jonathan 		return (EINVAL);
    961        1.1  jonathan 	}
    962        1.1  jonathan 
    963        1.1  jonathan 	s = splnet();
    964        1.1  jonathan 
    965        1.1  jonathan 	if (SIMPLEQ_EMPTY(&sc->sc_freequeue)) {
    966        1.1  jonathan 		ubsecstats.hst_queuefull++;
    967        1.1  jonathan 		sc->sc_needwakeup |= CRYPTO_SYMQ;
    968        1.1  jonathan 		splx(s);
    969        1.1  jonathan 		return(ERESTART);
    970        1.1  jonathan 	}
    971        1.1  jonathan 
    972        1.1  jonathan 	q = SIMPLEQ_FIRST(&sc->sc_freequeue);
    973        1.1  jonathan 	SIMPLEQ_REMOVE_HEAD(&sc->sc_freequeue, /*q,*/ q_next);
    974        1.1  jonathan 	splx(s);
    975        1.1  jonathan 
    976        1.1  jonathan 	dmap = q->q_dma; /* Save dma pointer */
    977        1.1  jonathan 	bzero(q, sizeof(struct ubsec_q));
    978        1.1  jonathan 	bzero(&ctx, sizeof(ctx));
    979        1.1  jonathan 
    980        1.1  jonathan 	q->q_sesn = UBSEC_SESSION(crp->crp_sid);
    981        1.1  jonathan 	q->q_dma = dmap;
    982        1.1  jonathan 	ses = &sc->sc_sessions[q->q_sesn];
    983        1.1  jonathan 
    984        1.1  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
    985        1.1  jonathan 		q->q_src_m = (struct mbuf *)crp->crp_buf;
    986        1.1  jonathan 		q->q_dst_m = (struct mbuf *)crp->crp_buf;
    987        1.1  jonathan 	} else if (crp->crp_flags & CRYPTO_F_IOV) {
    988        1.1  jonathan 		q->q_src_io = (struct uio *)crp->crp_buf;
    989        1.1  jonathan 		q->q_dst_io = (struct uio *)crp->crp_buf;
    990        1.1  jonathan 	} else {
    991        1.1  jonathan 		ubsecstats.hst_badflags++;
    992        1.1  jonathan 		err = EINVAL;
    993        1.1  jonathan 		goto errout;	/* XXX we don't handle contiguous blocks! */
    994        1.1  jonathan 	}
    995        1.1  jonathan 
    996        1.1  jonathan 	bzero(&dmap->d_dma->d_mcr, sizeof(struct ubsec_mcr));
    997        1.1  jonathan 
    998        1.1  jonathan 	dmap->d_dma->d_mcr.mcr_pkts = htole16(1);
    999        1.1  jonathan 	dmap->d_dma->d_mcr.mcr_flags = 0;
   1000        1.1  jonathan 	q->q_crp = crp;
   1001        1.1  jonathan 
   1002        1.1  jonathan 	crd1 = crp->crp_desc;
   1003        1.1  jonathan 	if (crd1 == NULL) {
   1004        1.1  jonathan 		ubsecstats.hst_nodesc++;
   1005        1.1  jonathan 		err = EINVAL;
   1006        1.1  jonathan 		goto errout;
   1007        1.1  jonathan 	}
   1008        1.1  jonathan 	crd2 = crd1->crd_next;
   1009        1.1  jonathan 
   1010        1.1  jonathan 	if (crd2 == NULL) {
   1011  1.13.14.1       mjf 		if (crd1->crd_alg == CRYPTO_MD5_HMAC_96 ||
   1012  1.13.14.1       mjf 		    crd1->crd_alg == CRYPTO_SHA1_HMAC_96) {
   1013        1.1  jonathan 			maccrd = crd1;
   1014        1.1  jonathan 			enccrd = NULL;
   1015        1.1  jonathan 		} else if (crd1->crd_alg == CRYPTO_DES_CBC ||
   1016        1.1  jonathan 		    crd1->crd_alg == CRYPTO_3DES_CBC) {
   1017        1.1  jonathan 			maccrd = NULL;
   1018        1.1  jonathan 			enccrd = crd1;
   1019        1.1  jonathan 		} else {
   1020        1.1  jonathan 			ubsecstats.hst_badalg++;
   1021        1.1  jonathan 			err = EINVAL;
   1022        1.1  jonathan 			goto errout;
   1023        1.1  jonathan 		}
   1024        1.1  jonathan 	} else {
   1025  1.13.14.1       mjf 		if ((crd1->crd_alg == CRYPTO_MD5_HMAC_96 ||
   1026  1.13.14.1       mjf 		    crd1->crd_alg == CRYPTO_SHA1_HMAC_96) &&
   1027        1.1  jonathan 		    (crd2->crd_alg == CRYPTO_DES_CBC ||
   1028        1.1  jonathan 			crd2->crd_alg == CRYPTO_3DES_CBC) &&
   1029        1.1  jonathan 		    ((crd2->crd_flags & CRD_F_ENCRYPT) == 0)) {
   1030        1.1  jonathan 			maccrd = crd1;
   1031        1.1  jonathan 			enccrd = crd2;
   1032        1.1  jonathan 		} else if ((crd1->crd_alg == CRYPTO_DES_CBC ||
   1033        1.1  jonathan 		    crd1->crd_alg == CRYPTO_3DES_CBC) &&
   1034  1.13.14.1       mjf 		    (crd2->crd_alg == CRYPTO_MD5_HMAC_96 ||
   1035  1.13.14.1       mjf 			crd2->crd_alg == CRYPTO_SHA1_HMAC_96) &&
   1036        1.1  jonathan 		    (crd1->crd_flags & CRD_F_ENCRYPT)) {
   1037        1.1  jonathan 			enccrd = crd1;
   1038        1.1  jonathan 			maccrd = crd2;
   1039        1.1  jonathan 		} else {
   1040        1.1  jonathan 			/*
   1041        1.1  jonathan 			 * We cannot order the ubsec as requested
   1042        1.1  jonathan 			 */
   1043        1.1  jonathan 			ubsecstats.hst_badalg++;
   1044        1.1  jonathan 			err = EINVAL;
   1045        1.1  jonathan 			goto errout;
   1046        1.1  jonathan 		}
   1047        1.1  jonathan 	}
   1048        1.1  jonathan 
   1049        1.1  jonathan 	if (enccrd) {
   1050        1.1  jonathan 		encoffset = enccrd->crd_skip;
   1051        1.1  jonathan 		ctx.pc_flags |= htole16(UBS_PKTCTX_ENC_3DES);
   1052        1.1  jonathan 
   1053        1.1  jonathan 		if (enccrd->crd_flags & CRD_F_ENCRYPT) {
   1054        1.1  jonathan 			q->q_flags |= UBSEC_QFLAGS_COPYOUTIV;
   1055        1.1  jonathan 
   1056        1.1  jonathan 			if (enccrd->crd_flags & CRD_F_IV_EXPLICIT)
   1057        1.1  jonathan 				bcopy(enccrd->crd_iv, ctx.pc_iv, 8);
   1058        1.1  jonathan 			else {
   1059        1.1  jonathan 				ctx.pc_iv[0] = ses->ses_iv[0];
   1060        1.1  jonathan 				ctx.pc_iv[1] = ses->ses_iv[1];
   1061        1.1  jonathan 			}
   1062        1.1  jonathan 
   1063        1.1  jonathan 			if ((enccrd->crd_flags & CRD_F_IV_PRESENT) == 0) {
   1064        1.1  jonathan 				if (crp->crp_flags & CRYPTO_F_IMBUF)
   1065        1.1  jonathan 					m_copyback(q->q_src_m,
   1066        1.1  jonathan 					    enccrd->crd_inject,
   1067       1.12  christos 					    8, (void *)ctx.pc_iv);
   1068        1.1  jonathan 				else if (crp->crp_flags & CRYPTO_F_IOV)
   1069        1.1  jonathan 					cuio_copyback(q->q_src_io,
   1070        1.1  jonathan 					    enccrd->crd_inject,
   1071       1.12  christos 					    8, (void *)ctx.pc_iv);
   1072        1.1  jonathan 			}
   1073        1.1  jonathan 		} else {
   1074        1.1  jonathan 			ctx.pc_flags |= htole16(UBS_PKTCTX_INBOUND);
   1075        1.1  jonathan 
   1076        1.1  jonathan 			if (enccrd->crd_flags & CRD_F_IV_EXPLICIT)
   1077        1.1  jonathan 				bcopy(enccrd->crd_iv, ctx.pc_iv, 8);
   1078        1.1  jonathan 			else if (crp->crp_flags & CRYPTO_F_IMBUF)
   1079        1.1  jonathan 				m_copydata(q->q_src_m, enccrd->crd_inject,
   1080       1.12  christos 				    8, (void *)ctx.pc_iv);
   1081        1.1  jonathan 			else if (crp->crp_flags & CRYPTO_F_IOV)
   1082        1.1  jonathan 				cuio_copydata(q->q_src_io,
   1083        1.1  jonathan 				    enccrd->crd_inject, 8,
   1084       1.12  christos 				    (void *)ctx.pc_iv);
   1085        1.1  jonathan 		}
   1086        1.1  jonathan 
   1087        1.1  jonathan 		ctx.pc_deskey[0] = ses->ses_deskey[0];
   1088        1.1  jonathan 		ctx.pc_deskey[1] = ses->ses_deskey[1];
   1089        1.1  jonathan 		ctx.pc_deskey[2] = ses->ses_deskey[2];
   1090        1.1  jonathan 		ctx.pc_deskey[3] = ses->ses_deskey[3];
   1091        1.1  jonathan 		ctx.pc_deskey[4] = ses->ses_deskey[4];
   1092        1.1  jonathan 		ctx.pc_deskey[5] = ses->ses_deskey[5];
   1093        1.1  jonathan 		SWAP32(ctx.pc_iv[0]);
   1094        1.1  jonathan 		SWAP32(ctx.pc_iv[1]);
   1095        1.1  jonathan 	}
   1096        1.1  jonathan 
   1097        1.1  jonathan 	if (maccrd) {
   1098        1.1  jonathan 		macoffset = maccrd->crd_skip;
   1099        1.1  jonathan 
   1100  1.13.14.1       mjf 		if (maccrd->crd_alg == CRYPTO_MD5_HMAC_96)
   1101        1.1  jonathan 			ctx.pc_flags |= htole16(UBS_PKTCTX_AUTH_MD5);
   1102        1.1  jonathan 		else
   1103        1.1  jonathan 			ctx.pc_flags |= htole16(UBS_PKTCTX_AUTH_SHA1);
   1104        1.1  jonathan 
   1105        1.1  jonathan 		for (i = 0; i < 5; i++) {
   1106        1.1  jonathan 			ctx.pc_hminner[i] = ses->ses_hminner[i];
   1107        1.1  jonathan 			ctx.pc_hmouter[i] = ses->ses_hmouter[i];
   1108        1.1  jonathan 
   1109        1.1  jonathan 			HTOLE32(ctx.pc_hminner[i]);
   1110        1.1  jonathan 			HTOLE32(ctx.pc_hmouter[i]);
   1111        1.1  jonathan 		}
   1112        1.1  jonathan 	}
   1113        1.1  jonathan 
   1114        1.1  jonathan 	if (enccrd && maccrd) {
   1115        1.1  jonathan 		/*
   1116        1.1  jonathan 		 * ubsec cannot handle packets where the end of encryption
   1117        1.1  jonathan 		 * and authentication are not the same, or where the
   1118        1.1  jonathan 		 * encrypted part begins before the authenticated part.
   1119        1.1  jonathan 		 */
   1120        1.1  jonathan 		if ((encoffset + enccrd->crd_len) !=
   1121        1.1  jonathan 		    (macoffset + maccrd->crd_len)) {
   1122        1.1  jonathan 			ubsecstats.hst_lenmismatch++;
   1123        1.1  jonathan 			err = EINVAL;
   1124        1.1  jonathan 			goto errout;
   1125        1.1  jonathan 		}
   1126        1.1  jonathan 		if (enccrd->crd_skip < maccrd->crd_skip) {
   1127        1.1  jonathan 			ubsecstats.hst_skipmismatch++;
   1128        1.1  jonathan 			err = EINVAL;
   1129        1.1  jonathan 			goto errout;
   1130        1.1  jonathan 		}
   1131        1.1  jonathan 		sskip = maccrd->crd_skip;
   1132        1.1  jonathan 		cpskip = dskip = enccrd->crd_skip;
   1133        1.1  jonathan 		stheend = maccrd->crd_len;
   1134        1.1  jonathan 		dtheend = enccrd->crd_len;
   1135        1.1  jonathan 		coffset = enccrd->crd_skip - maccrd->crd_skip;
   1136        1.1  jonathan 		cpoffset = cpskip + dtheend;
   1137        1.1  jonathan #ifdef UBSEC_DEBUG
   1138        1.1  jonathan 		if (ubsec_debug) {
   1139        1.1  jonathan 			printf("mac: skip %d, len %d, inject %d\n",
   1140        1.1  jonathan 			       maccrd->crd_skip, maccrd->crd_len, maccrd->crd_inject);
   1141        1.1  jonathan 			printf("enc: skip %d, len %d, inject %d\n",
   1142        1.1  jonathan 			       enccrd->crd_skip, enccrd->crd_len, enccrd->crd_inject);
   1143        1.1  jonathan 			printf("src: skip %d, len %d\n", sskip, stheend);
   1144        1.1  jonathan 			printf("dst: skip %d, len %d\n", dskip, dtheend);
   1145        1.1  jonathan 			printf("ubs: coffset %d, pktlen %d, cpskip %d, cpoffset %d\n",
   1146        1.1  jonathan 			       coffset, stheend, cpskip, cpoffset);
   1147        1.1  jonathan 		}
   1148        1.1  jonathan #endif
   1149        1.1  jonathan 	} else {
   1150        1.1  jonathan 		cpskip = dskip = sskip = macoffset + encoffset;
   1151        1.1  jonathan 		dtheend = stheend = (enccrd)?enccrd->crd_len:maccrd->crd_len;
   1152        1.1  jonathan 		cpoffset = cpskip + dtheend;
   1153        1.1  jonathan 		coffset = 0;
   1154        1.1  jonathan 	}
   1155        1.1  jonathan 	ctx.pc_offset = htole16(coffset >> 2);
   1156        1.1  jonathan 
   1157        1.1  jonathan 	/* XXX FIXME: jonathan asks, what the heck's that 0xfff0?  */
   1158        1.1  jonathan 	if (bus_dmamap_create(sc->sc_dmat, 0xfff0, UBS_MAX_SCATTER,
   1159        1.1  jonathan 		0xfff0, 0, BUS_DMA_NOWAIT, &q->q_src_map) != 0) {
   1160        1.1  jonathan 		err = ENOMEM;
   1161        1.1  jonathan 		goto errout;
   1162        1.1  jonathan 	}
   1163        1.1  jonathan 	if (crp->crp_flags & CRYPTO_F_IMBUF) {
   1164        1.1  jonathan 		if (bus_dmamap_load_mbuf(sc->sc_dmat, q->q_src_map,
   1165        1.1  jonathan 		    q->q_src_m, BUS_DMA_NOWAIT) != 0) {
   1166        1.1  jonathan 			bus_dmamap_destroy(sc->sc_dmat, q->q_src_map);
   1167        1.1  jonathan 			q->q_src_map = NULL;
   1168        1.1  jonathan 			ubsecstats.hst_noload++;
   1169        1.1  jonathan 			err = ENOMEM;
   1170        1.1  jonathan 			goto errout;
   1171        1.1  jonathan 		}
   1172        1.1  jonathan 	} else if (crp->crp_flags & CRYPTO_F_IOV) {
   1173        1.1  jonathan 		if (bus_dmamap_load_uio(sc->sc_dmat, q->q_src_map,
   1174        1.1  jonathan 		    q->q_src_io, BUS_DMA_NOWAIT) != 0) {
   1175        1.1  jonathan 			bus_dmamap_destroy(sc->sc_dmat, q->q_src_map);
   1176        1.1  jonathan 			q->q_src_map = NULL;
   1177        1.1  jonathan 			ubsecstats.hst_noload++;
   1178        1.1  jonathan 			err = ENOMEM;
   1179        1.1  jonathan 			goto errout;
   1180        1.1  jonathan 		}
   1181        1.1  jonathan 	}
   1182        1.1  jonathan 	nicealign = ubsec_dmamap_aligned(q->q_src_map);
   1183        1.1  jonathan 
   1184        1.1  jonathan 	dmap->d_dma->d_mcr.mcr_pktlen = htole16(stheend);
   1185        1.1  jonathan 
   1186        1.1  jonathan #ifdef UBSEC_DEBUG
   1187        1.1  jonathan 	if (ubsec_debug)
   1188        1.1  jonathan 		printf("src skip: %d nicealign: %u\n", sskip, nicealign);
   1189        1.1  jonathan #endif
   1190        1.1  jonathan 	for (i = j = 0; i < q->q_src_map->dm_nsegs; i++) {
   1191        1.1  jonathan 		struct ubsec_pktbuf *pb;
   1192        1.1  jonathan 		bus_size_t packl = q->q_src_map->dm_segs[i].ds_len;
   1193        1.1  jonathan 		bus_addr_t packp = q->q_src_map->dm_segs[i].ds_addr;
   1194        1.1  jonathan 
   1195        1.1  jonathan 		if (sskip >= packl) {
   1196        1.1  jonathan 			sskip -= packl;
   1197        1.1  jonathan 			continue;
   1198        1.1  jonathan 		}
   1199        1.1  jonathan 
   1200        1.1  jonathan 		packl -= sskip;
   1201        1.1  jonathan 		packp += sskip;
   1202        1.1  jonathan 		sskip = 0;
   1203        1.1  jonathan 
   1204        1.1  jonathan 		if (packl > 0xfffc) {
   1205        1.1  jonathan 			err = EIO;
   1206        1.1  jonathan 			goto errout;
   1207        1.1  jonathan 		}
   1208        1.1  jonathan 
   1209        1.1  jonathan 		if (j == 0)
   1210        1.1  jonathan 			pb = &dmap->d_dma->d_mcr.mcr_ipktbuf;
   1211        1.1  jonathan 		else
   1212        1.1  jonathan 			pb = &dmap->d_dma->d_sbuf[j - 1];
   1213        1.1  jonathan 
   1214        1.1  jonathan 		pb->pb_addr = htole32(packp);
   1215        1.1  jonathan 
   1216        1.1  jonathan 		if (stheend) {
   1217        1.1  jonathan 			if (packl > stheend) {
   1218        1.1  jonathan 				pb->pb_len = htole32(stheend);
   1219        1.1  jonathan 				stheend = 0;
   1220        1.1  jonathan 			} else {
   1221        1.1  jonathan 				pb->pb_len = htole32(packl);
   1222        1.1  jonathan 				stheend -= packl;
   1223        1.1  jonathan 			}
   1224        1.1  jonathan 		} else
   1225        1.1  jonathan 			pb->pb_len = htole32(packl);
   1226        1.1  jonathan 
   1227        1.1  jonathan 		if ((i + 1) == q->q_src_map->dm_nsegs)
   1228        1.1  jonathan 			pb->pb_next = 0;
   1229        1.1  jonathan 		else
   1230        1.1  jonathan 			pb->pb_next = htole32(dmap->d_alloc.dma_paddr +
   1231        1.1  jonathan 			    offsetof(struct ubsec_dmachunk, d_sbuf[j]));
   1232        1.1  jonathan 		j++;
   1233        1.1  jonathan 	}
   1234        1.1  jonathan 
   1235        1.1  jonathan 	if (enccrd == NULL && maccrd != NULL) {
   1236        1.1  jonathan 		dmap->d_dma->d_mcr.mcr_opktbuf.pb_addr = 0;
   1237        1.1  jonathan 		dmap->d_dma->d_mcr.mcr_opktbuf.pb_len = 0;
   1238        1.1  jonathan 		dmap->d_dma->d_mcr.mcr_opktbuf.pb_next = htole32(dmap->d_alloc.dma_paddr +
   1239        1.1  jonathan 		    offsetof(struct ubsec_dmachunk, d_macbuf[0]));
   1240        1.1  jonathan #ifdef UBSEC_DEBUG
   1241        1.1  jonathan 		if (ubsec_debug)
   1242        1.1  jonathan 			printf("opkt: %x %x %x\n",
   1243        1.1  jonathan 	 		    dmap->d_dma->d_mcr.mcr_opktbuf.pb_addr,
   1244        1.1  jonathan 	 		    dmap->d_dma->d_mcr.mcr_opktbuf.pb_len,
   1245        1.1  jonathan 	 		    dmap->d_dma->d_mcr.mcr_opktbuf.pb_next);
   1246        1.1  jonathan 
   1247        1.1  jonathan #endif
   1248        1.1  jonathan 	} else {
   1249        1.1  jonathan 		if (crp->crp_flags & CRYPTO_F_IOV) {
   1250        1.1  jonathan 			if (!nicealign) {
   1251        1.1  jonathan 				ubsecstats.hst_iovmisaligned++;
   1252        1.1  jonathan 				err = EINVAL;
   1253        1.1  jonathan 				goto errout;
   1254        1.1  jonathan 			}
   1255        1.1  jonathan 			/* XXX: ``what the heck's that'' 0xfff0? */
   1256        1.1  jonathan 			if (bus_dmamap_create(sc->sc_dmat, 0xfff0,
   1257        1.1  jonathan 			    UBS_MAX_SCATTER, 0xfff0, 0, BUS_DMA_NOWAIT,
   1258        1.1  jonathan 			    &q->q_dst_map) != 0) {
   1259        1.1  jonathan 				ubsecstats.hst_nomap++;
   1260        1.1  jonathan 				err = ENOMEM;
   1261        1.1  jonathan 				goto errout;
   1262        1.1  jonathan 			}
   1263        1.1  jonathan 			if (bus_dmamap_load_uio(sc->sc_dmat, q->q_dst_map,
   1264        1.1  jonathan 			    q->q_dst_io, BUS_DMA_NOWAIT) != 0) {
   1265        1.1  jonathan 				bus_dmamap_destroy(sc->sc_dmat, q->q_dst_map);
   1266        1.1  jonathan 				q->q_dst_map = NULL;
   1267        1.1  jonathan 				ubsecstats.hst_noload++;
   1268        1.1  jonathan 				err = ENOMEM;
   1269        1.1  jonathan 				goto errout;
   1270        1.1  jonathan 			}
   1271        1.1  jonathan 		} else if (crp->crp_flags & CRYPTO_F_IMBUF) {
   1272        1.1  jonathan 			if (nicealign) {
   1273        1.1  jonathan 				q->q_dst_m = q->q_src_m;
   1274        1.1  jonathan 				q->q_dst_map = q->q_src_map;
   1275        1.1  jonathan 			} else {
   1276        1.1  jonathan 				int totlen, len;
   1277        1.1  jonathan 				struct mbuf *m, *top, **mp;
   1278        1.1  jonathan 
   1279        1.1  jonathan 				ubsecstats.hst_unaligned++;
   1280        1.1  jonathan 				totlen = q->q_src_map->dm_mapsize;
   1281        1.1  jonathan 				if (q->q_src_m->m_flags & M_PKTHDR) {
   1282        1.1  jonathan 					len = MHLEN;
   1283        1.1  jonathan 					MGETHDR(m, M_DONTWAIT, MT_DATA);
   1284        1.1  jonathan 					/*XXX FIXME: m_dup_pkthdr */
   1285        1.1  jonathan 					if (m && 1 /*!m_dup_pkthdr(m, q->q_src_m, M_DONTWAIT)*/) {
   1286        1.1  jonathan 						m_free(m);
   1287        1.1  jonathan 						m = NULL;
   1288        1.1  jonathan 					}
   1289        1.1  jonathan 				} else {
   1290        1.1  jonathan 					len = MLEN;
   1291        1.1  jonathan 					MGET(m, M_DONTWAIT, MT_DATA);
   1292        1.1  jonathan 				}
   1293        1.1  jonathan 				if (m == NULL) {
   1294        1.1  jonathan 					ubsecstats.hst_nombuf++;
   1295        1.1  jonathan 					err = sc->sc_nqueue ? ERESTART : ENOMEM;
   1296        1.1  jonathan 					goto errout;
   1297        1.1  jonathan 				}
   1298        1.1  jonathan 				if (len == MHLEN)
   1299        1.1  jonathan 				  /*XXX was M_DUP_PKTHDR*/
   1300        1.1  jonathan 				  M_COPY_PKTHDR(m, q->q_src_m);
   1301        1.1  jonathan 				if (totlen >= MINCLSIZE) {
   1302        1.1  jonathan 					MCLGET(m, M_DONTWAIT);
   1303        1.1  jonathan 					if ((m->m_flags & M_EXT) == 0) {
   1304        1.1  jonathan 						m_free(m);
   1305        1.1  jonathan 						ubsecstats.hst_nomcl++;
   1306        1.1  jonathan 						err = sc->sc_nqueue ? ERESTART : ENOMEM;
   1307        1.1  jonathan 						goto errout;
   1308        1.1  jonathan 					}
   1309        1.1  jonathan 					len = MCLBYTES;
   1310        1.1  jonathan 				}
   1311        1.1  jonathan 				m->m_len = len;
   1312        1.1  jonathan 				top = NULL;
   1313        1.1  jonathan 				mp = &top;
   1314        1.1  jonathan 
   1315        1.1  jonathan 				while (totlen > 0) {
   1316        1.1  jonathan 					if (top) {
   1317        1.1  jonathan 						MGET(m, M_DONTWAIT, MT_DATA);
   1318        1.1  jonathan 						if (m == NULL) {
   1319        1.1  jonathan 							m_freem(top);
   1320        1.1  jonathan 							ubsecstats.hst_nombuf++;
   1321        1.1  jonathan 							err = sc->sc_nqueue ? ERESTART : ENOMEM;
   1322        1.1  jonathan 							goto errout;
   1323        1.1  jonathan 						}
   1324        1.1  jonathan 						len = MLEN;
   1325        1.1  jonathan 					}
   1326        1.1  jonathan 					if (top && totlen >= MINCLSIZE) {
   1327        1.1  jonathan 						MCLGET(m, M_DONTWAIT);
   1328        1.1  jonathan 						if ((m->m_flags & M_EXT) == 0) {
   1329        1.1  jonathan 							*mp = m;
   1330        1.1  jonathan 							m_freem(top);
   1331        1.1  jonathan 							ubsecstats.hst_nomcl++;
   1332        1.1  jonathan 							err = sc->sc_nqueue ? ERESTART : ENOMEM;
   1333        1.1  jonathan 							goto errout;
   1334        1.1  jonathan 						}
   1335        1.1  jonathan 						len = MCLBYTES;
   1336        1.1  jonathan 					}
   1337        1.1  jonathan 					m->m_len = len = min(totlen, len);
   1338        1.1  jonathan 					totlen -= len;
   1339        1.1  jonathan 					*mp = m;
   1340        1.1  jonathan 					mp = &m->m_next;
   1341        1.1  jonathan 				}
   1342        1.1  jonathan 				q->q_dst_m = top;
   1343        1.1  jonathan 				ubsec_mcopy(q->q_src_m, q->q_dst_m,
   1344        1.1  jonathan 				    cpskip, cpoffset);
   1345        1.1  jonathan 				/* XXX again, what the heck is that 0xfff0? */
   1346        1.1  jonathan 				if (bus_dmamap_create(sc->sc_dmat, 0xfff0,
   1347        1.1  jonathan 				    UBS_MAX_SCATTER, 0xfff0, 0, BUS_DMA_NOWAIT,
   1348        1.1  jonathan 				    &q->q_dst_map) != 0) {
   1349        1.1  jonathan 					ubsecstats.hst_nomap++;
   1350        1.1  jonathan 					err = ENOMEM;
   1351        1.1  jonathan 					goto errout;
   1352        1.1  jonathan 				}
   1353        1.1  jonathan 				if (bus_dmamap_load_mbuf(sc->sc_dmat,
   1354        1.1  jonathan 				    q->q_dst_map, q->q_dst_m,
   1355        1.1  jonathan 				    BUS_DMA_NOWAIT) != 0) {
   1356        1.1  jonathan 					bus_dmamap_destroy(sc->sc_dmat,
   1357        1.1  jonathan 					q->q_dst_map);
   1358        1.1  jonathan 					q->q_dst_map = NULL;
   1359        1.1  jonathan 					ubsecstats.hst_noload++;
   1360        1.1  jonathan 					err = ENOMEM;
   1361        1.1  jonathan 					goto errout;
   1362        1.1  jonathan 				}
   1363        1.1  jonathan 			}
   1364        1.1  jonathan 		} else {
   1365        1.1  jonathan 			ubsecstats.hst_badflags++;
   1366        1.1  jonathan 			err = EINVAL;
   1367        1.1  jonathan 			goto errout;
   1368        1.1  jonathan 		}
   1369        1.1  jonathan 
   1370        1.1  jonathan #ifdef UBSEC_DEBUG
   1371        1.1  jonathan 		if (ubsec_debug)
   1372        1.1  jonathan 			printf("dst skip: %d\n", dskip);
   1373        1.1  jonathan #endif
   1374        1.1  jonathan 		for (i = j = 0; i < q->q_dst_map->dm_nsegs; i++) {
   1375        1.1  jonathan 			struct ubsec_pktbuf *pb;
   1376        1.1  jonathan 			bus_size_t packl = q->q_dst_map->dm_segs[i].ds_len;
   1377        1.1  jonathan 			bus_addr_t packp = q->q_dst_map->dm_segs[i].ds_addr;
   1378        1.1  jonathan 
   1379        1.1  jonathan 			if (dskip >= packl) {
   1380        1.1  jonathan 				dskip -= packl;
   1381        1.1  jonathan 				continue;
   1382        1.1  jonathan 			}
   1383        1.1  jonathan 
   1384        1.1  jonathan 			packl -= dskip;
   1385        1.1  jonathan 			packp += dskip;
   1386        1.1  jonathan 			dskip = 0;
   1387        1.1  jonathan 
   1388        1.1  jonathan 			if (packl > 0xfffc) {
   1389        1.1  jonathan 				err = EIO;
   1390        1.1  jonathan 				goto errout;
   1391        1.1  jonathan 			}
   1392        1.1  jonathan 
   1393        1.1  jonathan 			if (j == 0)
   1394        1.1  jonathan 				pb = &dmap->d_dma->d_mcr.mcr_opktbuf;
   1395        1.1  jonathan 			else
   1396        1.1  jonathan 				pb = &dmap->d_dma->d_dbuf[j - 1];
   1397        1.1  jonathan 
   1398        1.1  jonathan 			pb->pb_addr = htole32(packp);
   1399        1.1  jonathan 
   1400        1.1  jonathan 			if (dtheend) {
   1401        1.1  jonathan 				if (packl > dtheend) {
   1402        1.1  jonathan 					pb->pb_len = htole32(dtheend);
   1403        1.1  jonathan 					dtheend = 0;
   1404        1.1  jonathan 				} else {
   1405        1.1  jonathan 					pb->pb_len = htole32(packl);
   1406        1.1  jonathan 					dtheend -= packl;
   1407        1.1  jonathan 				}
   1408        1.1  jonathan 			} else
   1409        1.1  jonathan 				pb->pb_len = htole32(packl);
   1410        1.1  jonathan 
   1411        1.1  jonathan 			if ((i + 1) == q->q_dst_map->dm_nsegs) {
   1412        1.1  jonathan 				if (maccrd)
   1413        1.1  jonathan 					pb->pb_next = htole32(dmap->d_alloc.dma_paddr +
   1414        1.1  jonathan 					    offsetof(struct ubsec_dmachunk, d_macbuf[0]));
   1415        1.1  jonathan 				else
   1416        1.1  jonathan 					pb->pb_next = 0;
   1417        1.1  jonathan 			} else
   1418        1.1  jonathan 				pb->pb_next = htole32(dmap->d_alloc.dma_paddr +
   1419        1.1  jonathan 				    offsetof(struct ubsec_dmachunk, d_dbuf[j]));
   1420        1.1  jonathan 			j++;
   1421        1.1  jonathan 		}
   1422        1.1  jonathan 	}
   1423        1.1  jonathan 
   1424        1.1  jonathan 	dmap->d_dma->d_mcr.mcr_cmdctxp = htole32(dmap->d_alloc.dma_paddr +
   1425        1.1  jonathan 	    offsetof(struct ubsec_dmachunk, d_ctx));
   1426        1.1  jonathan 
   1427        1.1  jonathan 	if (sc->sc_flags & UBS_FLAGS_LONGCTX) {
   1428        1.1  jonathan 		struct ubsec_pktctx_long *ctxl;
   1429        1.1  jonathan 
   1430       1.12  christos 		ctxl = (struct ubsec_pktctx_long *)((char *)dmap->d_alloc.dma_vaddr +
   1431        1.1  jonathan 		    offsetof(struct ubsec_dmachunk, d_ctx));
   1432        1.5     perry 
   1433        1.1  jonathan 		/* transform small context into long context */
   1434        1.1  jonathan 		ctxl->pc_len = htole16(sizeof(struct ubsec_pktctx_long));
   1435        1.1  jonathan 		ctxl->pc_type = htole16(UBS_PKTCTX_TYPE_IPSEC);
   1436        1.1  jonathan 		ctxl->pc_flags = ctx.pc_flags;
   1437        1.1  jonathan 		ctxl->pc_offset = ctx.pc_offset;
   1438        1.1  jonathan 		for (i = 0; i < 6; i++)
   1439        1.1  jonathan 			ctxl->pc_deskey[i] = ctx.pc_deskey[i];
   1440        1.1  jonathan 		for (i = 0; i < 5; i++)
   1441        1.1  jonathan 			ctxl->pc_hminner[i] = ctx.pc_hminner[i];
   1442        1.1  jonathan 		for (i = 0; i < 5; i++)
   1443        1.5     perry 			ctxl->pc_hmouter[i] = ctx.pc_hmouter[i];
   1444        1.1  jonathan 		ctxl->pc_iv[0] = ctx.pc_iv[0];
   1445        1.1  jonathan 		ctxl->pc_iv[1] = ctx.pc_iv[1];
   1446        1.1  jonathan 	} else
   1447       1.12  christos 		memcpy((char *)dmap->d_alloc.dma_vaddr +
   1448       1.12  christos 		    offsetof(struct ubsec_dmachunk, d_ctx), &ctx,
   1449        1.1  jonathan 		    sizeof(struct ubsec_pktctx));
   1450        1.1  jonathan 
   1451        1.1  jonathan 	s = splnet();
   1452        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_queue, q, q_next);
   1453        1.1  jonathan 	sc->sc_nqueue++;
   1454        1.1  jonathan 	ubsecstats.hst_ipackets++;
   1455        1.1  jonathan 	ubsecstats.hst_ibytes += dmap->d_alloc.dma_map->dm_mapsize;
   1456        1.1  jonathan 	if ((hint & CRYPTO_HINT_MORE) == 0 || sc->sc_nqueue >= ubsec_maxbatch)
   1457        1.1  jonathan 		ubsec_feed(sc);
   1458        1.1  jonathan 	splx(s);
   1459        1.1  jonathan 	return (0);
   1460        1.1  jonathan 
   1461        1.1  jonathan errout:
   1462        1.1  jonathan 	if (q != NULL) {
   1463        1.1  jonathan 		if ((q->q_dst_m != NULL) && (q->q_src_m != q->q_dst_m))
   1464        1.1  jonathan 			m_freem(q->q_dst_m);
   1465        1.1  jonathan 
   1466        1.1  jonathan 		if (q->q_dst_map != NULL && q->q_dst_map != q->q_src_map) {
   1467        1.1  jonathan 			bus_dmamap_unload(sc->sc_dmat, q->q_dst_map);
   1468        1.1  jonathan 			bus_dmamap_destroy(sc->sc_dmat, q->q_dst_map);
   1469        1.1  jonathan 		}
   1470        1.1  jonathan 		if (q->q_src_map != NULL) {
   1471        1.1  jonathan 			bus_dmamap_unload(sc->sc_dmat, q->q_src_map);
   1472        1.1  jonathan 			bus_dmamap_destroy(sc->sc_dmat, q->q_src_map);
   1473        1.1  jonathan 		}
   1474        1.1  jonathan 
   1475        1.1  jonathan 		s = splnet();
   1476        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_freequeue, q, q_next);
   1477        1.1  jonathan 		splx(s);
   1478        1.1  jonathan 	}
   1479        1.1  jonathan #if 0 /* jonathan says: this openbsd code seems to be subsumed elsewhere */
   1480        1.1  jonathan 	if (err == EINVAL)
   1481        1.1  jonathan 		ubsecstats.hst_invalid++;
   1482        1.1  jonathan 	else
   1483        1.1  jonathan 		ubsecstats.hst_nomem++;
   1484        1.5     perry #endif
   1485        1.1  jonathan 	if (err != ERESTART) {
   1486        1.1  jonathan 		crp->crp_etype = err;
   1487        1.1  jonathan 		crypto_done(crp);
   1488        1.1  jonathan 	} else {
   1489        1.1  jonathan 		sc->sc_needwakeup |= CRYPTO_SYMQ;
   1490        1.1  jonathan 	}
   1491        1.1  jonathan 	return (err);
   1492        1.1  jonathan }
   1493        1.1  jonathan 
   1494        1.7   thorpej static void
   1495        1.7   thorpej ubsec_callback(struct ubsec_softc *sc, struct ubsec_q *q)
   1496        1.1  jonathan {
   1497        1.1  jonathan 	struct cryptop *crp = (struct cryptop *)q->q_crp;
   1498        1.1  jonathan 	struct cryptodesc *crd;
   1499        1.1  jonathan 	struct ubsec_dma *dmap = q->q_dma;
   1500        1.1  jonathan 
   1501        1.1  jonathan 	ubsecstats.hst_opackets++;
   1502        1.1  jonathan 	ubsecstats.hst_obytes += dmap->d_alloc.dma_size;
   1503        1.1  jonathan 
   1504        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, dmap->d_alloc.dma_map, 0,
   1505        1.1  jonathan 	    dmap->d_alloc.dma_map->dm_mapsize,
   1506        1.1  jonathan 	    BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
   1507        1.1  jonathan 	if (q->q_dst_map != NULL && q->q_dst_map != q->q_src_map) {
   1508        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_dst_map,
   1509        1.1  jonathan 		    0, q->q_dst_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   1510        1.1  jonathan 		bus_dmamap_unload(sc->sc_dmat, q->q_dst_map);
   1511        1.1  jonathan 		bus_dmamap_destroy(sc->sc_dmat, q->q_dst_map);
   1512        1.1  jonathan 	}
   1513        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, q->q_src_map,
   1514        1.1  jonathan 	    0, q->q_src_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1515        1.1  jonathan 	bus_dmamap_unload(sc->sc_dmat, q->q_src_map);
   1516        1.1  jonathan 	bus_dmamap_destroy(sc->sc_dmat, q->q_src_map);
   1517        1.1  jonathan 
   1518        1.1  jonathan 	if ((crp->crp_flags & CRYPTO_F_IMBUF) && (q->q_src_m != q->q_dst_m)) {
   1519        1.1  jonathan 		m_freem(q->q_src_m);
   1520       1.12  christos 		crp->crp_buf = (void *)q->q_dst_m;
   1521        1.1  jonathan 	}
   1522        1.1  jonathan 
   1523        1.1  jonathan 	/* copy out IV for future use */
   1524        1.1  jonathan 	if (q->q_flags & UBSEC_QFLAGS_COPYOUTIV) {
   1525        1.1  jonathan 		for (crd = crp->crp_desc; crd; crd = crd->crd_next) {
   1526        1.1  jonathan 			if (crd->crd_alg != CRYPTO_DES_CBC &&
   1527        1.1  jonathan 			    crd->crd_alg != CRYPTO_3DES_CBC)
   1528        1.1  jonathan 				continue;
   1529        1.1  jonathan 			if (crp->crp_flags & CRYPTO_F_IMBUF)
   1530        1.1  jonathan 				m_copydata((struct mbuf *)crp->crp_buf,
   1531        1.1  jonathan 				    crd->crd_skip + crd->crd_len - 8, 8,
   1532       1.12  christos 				    (void *)sc->sc_sessions[q->q_sesn].ses_iv);
   1533        1.1  jonathan 			else if (crp->crp_flags & CRYPTO_F_IOV) {
   1534        1.1  jonathan 				cuio_copydata((struct uio *)crp->crp_buf,
   1535        1.1  jonathan 				    crd->crd_skip + crd->crd_len - 8, 8,
   1536       1.12  christos 				    (void *)sc->sc_sessions[q->q_sesn].ses_iv);
   1537        1.1  jonathan 			}
   1538        1.1  jonathan 			break;
   1539        1.1  jonathan 		}
   1540        1.1  jonathan 	}
   1541        1.1  jonathan 
   1542        1.1  jonathan 	for (crd = crp->crp_desc; crd; crd = crd->crd_next) {
   1543  1.13.14.1       mjf 		if (crd->crd_alg != CRYPTO_MD5_HMAC_96 &&
   1544  1.13.14.1       mjf 		    crd->crd_alg != CRYPTO_SHA1_HMAC_96)
   1545        1.1  jonathan 			continue;
   1546        1.1  jonathan 		if (crp->crp_flags & CRYPTO_F_IMBUF)
   1547        1.1  jonathan 			m_copyback((struct mbuf *)crp->crp_buf,
   1548        1.1  jonathan 			    crd->crd_inject, 12,
   1549       1.12  christos 			    (void *)dmap->d_dma->d_macbuf);
   1550        1.1  jonathan 		else if (crp->crp_flags & CRYPTO_F_IOV && crp->crp_mac)
   1551       1.12  christos 			bcopy((void *)dmap->d_dma->d_macbuf,
   1552        1.1  jonathan 			    crp->crp_mac, 12);
   1553        1.1  jonathan 		break;
   1554        1.1  jonathan 	}
   1555        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_freequeue, q, q_next);
   1556        1.1  jonathan 	crypto_done(crp);
   1557        1.1  jonathan }
   1558        1.1  jonathan 
   1559        1.1  jonathan static void
   1560        1.1  jonathan ubsec_mcopy(struct mbuf *srcm, struct mbuf *dstm, int hoffset, int toffset)
   1561        1.1  jonathan {
   1562        1.1  jonathan 	int i, j, dlen, slen;
   1563       1.12  christos 	char *dptr, *sptr;
   1564        1.1  jonathan 
   1565        1.1  jonathan 	j = 0;
   1566        1.1  jonathan 	sptr = srcm->m_data;
   1567        1.1  jonathan 	slen = srcm->m_len;
   1568        1.1  jonathan 	dptr = dstm->m_data;
   1569        1.1  jonathan 	dlen = dstm->m_len;
   1570        1.1  jonathan 
   1571        1.1  jonathan 	while (1) {
   1572        1.1  jonathan 		for (i = 0; i < min(slen, dlen); i++) {
   1573        1.1  jonathan 			if (j < hoffset || j >= toffset)
   1574        1.1  jonathan 				*dptr++ = *sptr++;
   1575        1.1  jonathan 			slen--;
   1576        1.1  jonathan 			dlen--;
   1577        1.1  jonathan 			j++;
   1578        1.1  jonathan 		}
   1579        1.1  jonathan 		if (slen == 0) {
   1580        1.1  jonathan 			srcm = srcm->m_next;
   1581        1.1  jonathan 			if (srcm == NULL)
   1582        1.1  jonathan 				return;
   1583        1.1  jonathan 			sptr = srcm->m_data;
   1584        1.1  jonathan 			slen = srcm->m_len;
   1585        1.1  jonathan 		}
   1586        1.1  jonathan 		if (dlen == 0) {
   1587        1.1  jonathan 			dstm = dstm->m_next;
   1588        1.1  jonathan 			if (dstm == NULL)
   1589        1.1  jonathan 				return;
   1590        1.1  jonathan 			dptr = dstm->m_data;
   1591        1.1  jonathan 			dlen = dstm->m_len;
   1592        1.1  jonathan 		}
   1593        1.1  jonathan 	}
   1594        1.1  jonathan }
   1595        1.1  jonathan 
   1596        1.1  jonathan /*
   1597        1.1  jonathan  * feed the key generator, must be called at splnet() or higher.
   1598        1.1  jonathan  */
   1599        1.1  jonathan static void
   1600        1.1  jonathan ubsec_feed2(struct ubsec_softc *sc)
   1601        1.1  jonathan {
   1602        1.1  jonathan 	struct ubsec_q2 *q;
   1603        1.1  jonathan 
   1604        1.1  jonathan 	while (!SIMPLEQ_EMPTY(&sc->sc_queue2)) {
   1605        1.1  jonathan 		if (READ_REG(sc, BS_STAT) & BS_STAT_MCR2_FULL)
   1606        1.1  jonathan 			break;
   1607        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_queue2);
   1608        1.1  jonathan 
   1609        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_mcr.dma_map, 0,
   1610        1.1  jonathan 		    q->q_mcr.dma_map->dm_mapsize,
   1611        1.1  jonathan 		    BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
   1612        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, q->q_ctx.dma_map, 0,
   1613        1.1  jonathan 		    q->q_ctx.dma_map->dm_mapsize,
   1614        1.1  jonathan 		    BUS_DMASYNC_PREWRITE);
   1615        1.1  jonathan 
   1616        1.1  jonathan 		WRITE_REG(sc, BS_MCR2, q->q_mcr.dma_paddr);
   1617        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_queue2);
   1618        1.1  jonathan 		SIMPLEQ_REMOVE_HEAD(&sc->sc_queue2, /*q,*/ q_next);
   1619        1.1  jonathan 		--sc->sc_nqueue2;
   1620        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_qchip2, q, q_next);
   1621        1.1  jonathan 	}
   1622        1.1  jonathan }
   1623        1.1  jonathan 
   1624        1.1  jonathan /*
   1625        1.1  jonathan  * Callback for handling random numbers
   1626        1.1  jonathan  */
   1627        1.1  jonathan static void
   1628        1.1  jonathan ubsec_callback2(struct ubsec_softc *sc, struct ubsec_q2 *q)
   1629        1.1  jonathan {
   1630        1.1  jonathan 	struct cryptkop *krp;
   1631        1.1  jonathan 	struct ubsec_ctx_keyop *ctx;
   1632        1.1  jonathan 
   1633        1.1  jonathan 	ctx = (struct ubsec_ctx_keyop *)q->q_ctx.dma_vaddr;
   1634        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, q->q_ctx.dma_map, 0,
   1635        1.1  jonathan 	    q->q_ctx.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1636        1.1  jonathan 
   1637        1.1  jonathan 	switch (q->q_type) {
   1638        1.1  jonathan #ifndef UBSEC_NO_RNG
   1639        1.1  jonathan 	case UBS_CTXOP_RNGSHA1:
   1640        1.1  jonathan 	case UBS_CTXOP_RNGBYPASS: {
   1641        1.1  jonathan 		struct ubsec_q2_rng *rng = (struct ubsec_q2_rng *)q;
   1642        1.1  jonathan 		u_int32_t *p;
   1643        1.1  jonathan 		int i;
   1644        1.1  jonathan 
   1645        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, rng->rng_buf.dma_map, 0,
   1646        1.1  jonathan 		    rng->rng_buf.dma_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   1647        1.1  jonathan 		p = (u_int32_t *)rng->rng_buf.dma_vaddr;
   1648        1.1  jonathan #ifndef __NetBSD__
   1649        1.1  jonathan 		for (i = 0; i < UBSEC_RNG_BUFSIZ; p++, i++)
   1650        1.1  jonathan 			add_true_randomness(letoh32(*p));
   1651        1.1  jonathan 		rng->rng_used = 0;
   1652        1.1  jonathan #else
   1653        1.1  jonathan 		/* XXX NetBSD rnd subsystem too weak */
   1654        1.1  jonathan 		i = 0; (void)i;	/* shut off gcc warnings */
   1655        1.1  jonathan #endif
   1656        1.1  jonathan #ifdef __OpenBSD__
   1657        1.1  jonathan 		timeout_add(&sc->sc_rngto, sc->sc_rnghz);
   1658        1.1  jonathan #else
   1659        1.1  jonathan 		callout_reset(&sc->sc_rngto, sc->sc_rnghz, ubsec_rng, sc);
   1660        1.1  jonathan #endif
   1661        1.1  jonathan 		break;
   1662        1.1  jonathan 	}
   1663        1.1  jonathan #endif
   1664        1.1  jonathan 	case UBS_CTXOP_MODEXP: {
   1665        1.1  jonathan 		struct ubsec_q2_modexp *me = (struct ubsec_q2_modexp *)q;
   1666        1.1  jonathan 		u_int rlen, clen;
   1667        1.1  jonathan 
   1668        1.1  jonathan 		krp = me->me_krp;
   1669        1.1  jonathan 		rlen = (me->me_modbits + 7) / 8;
   1670        1.1  jonathan 		clen = (krp->krp_param[krp->krp_iparams].crp_nbits + 7) / 8;
   1671        1.1  jonathan 
   1672        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, me->me_M.dma_map,
   1673        1.1  jonathan 		    0, me->me_M.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1674        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, me->me_E.dma_map,
   1675        1.1  jonathan 		    0, me->me_E.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1676        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, me->me_C.dma_map,
   1677        1.1  jonathan 		    0, me->me_C.dma_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   1678        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, me->me_epb.dma_map,
   1679        1.1  jonathan 		    0, me->me_epb.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1680        1.1  jonathan 
   1681        1.1  jonathan 		if (clen < rlen)
   1682        1.1  jonathan 			krp->krp_status = E2BIG;
   1683        1.1  jonathan 		else {
   1684        1.1  jonathan 			if (sc->sc_flags & UBS_FLAGS_HWNORM) {
   1685        1.1  jonathan 				bzero(krp->krp_param[krp->krp_iparams].crp_p,
   1686        1.1  jonathan 				    (krp->krp_param[krp->krp_iparams].crp_nbits
   1687        1.1  jonathan 					+ 7) / 8);
   1688        1.1  jonathan 				bcopy(me->me_C.dma_vaddr,
   1689        1.1  jonathan 				    krp->krp_param[krp->krp_iparams].crp_p,
   1690        1.1  jonathan 				    (me->me_modbits + 7) / 8);
   1691        1.1  jonathan 			} else
   1692        1.1  jonathan 				ubsec_kshift_l(me->me_shiftbits,
   1693        1.1  jonathan 				    me->me_C.dma_vaddr, me->me_normbits,
   1694        1.1  jonathan 				    krp->krp_param[krp->krp_iparams].crp_p,
   1695        1.1  jonathan 				    krp->krp_param[krp->krp_iparams].crp_nbits);
   1696        1.1  jonathan 		}
   1697        1.1  jonathan 
   1698        1.1  jonathan 		crypto_kdone(krp);
   1699        1.1  jonathan 
   1700        1.1  jonathan 		/* bzero all potentially sensitive data */
   1701        1.1  jonathan 		bzero(me->me_E.dma_vaddr, me->me_E.dma_size);
   1702        1.1  jonathan 		bzero(me->me_M.dma_vaddr, me->me_M.dma_size);
   1703        1.1  jonathan 		bzero(me->me_C.dma_vaddr, me->me_C.dma_size);
   1704        1.1  jonathan 		bzero(me->me_q.q_ctx.dma_vaddr, me->me_q.q_ctx.dma_size);
   1705        1.1  jonathan 
   1706        1.1  jonathan 		/* Can't free here, so put us on the free list. */
   1707        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_q2free, &me->me_q, q_next);
   1708        1.1  jonathan 		break;
   1709        1.1  jonathan 	}
   1710        1.1  jonathan 	case UBS_CTXOP_RSAPRIV: {
   1711        1.1  jonathan 		struct ubsec_q2_rsapriv *rp = (struct ubsec_q2_rsapriv *)q;
   1712        1.1  jonathan 		u_int len;
   1713        1.1  jonathan 
   1714        1.1  jonathan 		krp = rp->rpr_krp;
   1715        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgin.dma_map, 0,
   1716        1.1  jonathan 		    rp->rpr_msgin.dma_map->dm_mapsize, BUS_DMASYNC_POSTWRITE);
   1717        1.1  jonathan 		bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgout.dma_map, 0,
   1718        1.1  jonathan 		    rp->rpr_msgout.dma_map->dm_mapsize, BUS_DMASYNC_POSTREAD);
   1719        1.1  jonathan 
   1720        1.1  jonathan 		len = (krp->krp_param[UBS_RSAPRIV_PAR_MSGOUT].crp_nbits + 7) / 8;
   1721        1.1  jonathan 		bcopy(rp->rpr_msgout.dma_vaddr,
   1722        1.1  jonathan 		    krp->krp_param[UBS_RSAPRIV_PAR_MSGOUT].crp_p, len);
   1723        1.1  jonathan 
   1724        1.1  jonathan 		crypto_kdone(krp);
   1725        1.1  jonathan 
   1726        1.1  jonathan 		bzero(rp->rpr_msgin.dma_vaddr, rp->rpr_msgin.dma_size);
   1727        1.1  jonathan 		bzero(rp->rpr_msgout.dma_vaddr, rp->rpr_msgout.dma_size);
   1728        1.1  jonathan 		bzero(rp->rpr_q.q_ctx.dma_vaddr, rp->rpr_q.q_ctx.dma_size);
   1729        1.1  jonathan 
   1730        1.1  jonathan 		/* Can't free here, so put us on the free list. */
   1731        1.1  jonathan 		SIMPLEQ_INSERT_TAIL(&sc->sc_q2free, &rp->rpr_q, q_next);
   1732        1.1  jonathan 		break;
   1733        1.1  jonathan 	}
   1734        1.1  jonathan 	default:
   1735        1.1  jonathan 		printf("%s: unknown ctx op: %x\n", sc->sc_dv.dv_xname,
   1736        1.1  jonathan 		    letoh16(ctx->ctx_op));
   1737        1.1  jonathan 		break;
   1738        1.1  jonathan 	}
   1739        1.1  jonathan }
   1740        1.1  jonathan 
   1741        1.1  jonathan #ifndef UBSEC_NO_RNG
   1742        1.1  jonathan static void
   1743        1.1  jonathan ubsec_rng(void *vsc)
   1744        1.1  jonathan {
   1745        1.1  jonathan 	struct ubsec_softc *sc = vsc;
   1746        1.1  jonathan 	struct ubsec_q2_rng *rng = &sc->sc_rng;
   1747        1.1  jonathan 	struct ubsec_mcr *mcr;
   1748        1.1  jonathan 	struct ubsec_ctx_rngbypass *ctx;
   1749        1.1  jonathan 	int s;
   1750        1.1  jonathan 
   1751        1.1  jonathan 	s = splnet();
   1752        1.1  jonathan 	if (rng->rng_used) {
   1753        1.1  jonathan 		splx(s);
   1754        1.1  jonathan 		return;
   1755        1.1  jonathan 	}
   1756        1.1  jonathan 	sc->sc_nqueue2++;
   1757        1.1  jonathan 	if (sc->sc_nqueue2 >= UBS_MAX_NQUEUE)
   1758        1.1  jonathan 		goto out;
   1759        1.1  jonathan 
   1760        1.1  jonathan 	mcr = (struct ubsec_mcr *)rng->rng_q.q_mcr.dma_vaddr;
   1761        1.1  jonathan 	ctx = (struct ubsec_ctx_rngbypass *)rng->rng_q.q_ctx.dma_vaddr;
   1762        1.1  jonathan 
   1763        1.1  jonathan 	mcr->mcr_pkts = htole16(1);
   1764        1.1  jonathan 	mcr->mcr_flags = 0;
   1765        1.1  jonathan 	mcr->mcr_cmdctxp = htole32(rng->rng_q.q_ctx.dma_paddr);
   1766        1.1  jonathan 	mcr->mcr_ipktbuf.pb_addr = mcr->mcr_ipktbuf.pb_next = 0;
   1767        1.1  jonathan 	mcr->mcr_ipktbuf.pb_len = 0;
   1768        1.1  jonathan 	mcr->mcr_reserved = mcr->mcr_pktlen = 0;
   1769        1.1  jonathan 	mcr->mcr_opktbuf.pb_addr = htole32(rng->rng_buf.dma_paddr);
   1770        1.1  jonathan 	mcr->mcr_opktbuf.pb_len = htole32(((sizeof(u_int32_t) * UBSEC_RNG_BUFSIZ)) &
   1771        1.1  jonathan 	    UBS_PKTBUF_LEN);
   1772        1.1  jonathan 	mcr->mcr_opktbuf.pb_next = 0;
   1773        1.1  jonathan 
   1774        1.1  jonathan 	ctx->rbp_len = htole16(sizeof(struct ubsec_ctx_rngbypass));
   1775        1.1  jonathan 	ctx->rbp_op = htole16(UBS_CTXOP_RNGSHA1);
   1776        1.1  jonathan 	rng->rng_q.q_type = UBS_CTXOP_RNGSHA1;
   1777        1.1  jonathan 
   1778        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, rng->rng_buf.dma_map, 0,
   1779        1.1  jonathan 	    rng->rng_buf.dma_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   1780        1.1  jonathan 
   1781        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_queue2, &rng->rng_q, q_next);
   1782        1.1  jonathan 	rng->rng_used = 1;
   1783        1.1  jonathan 	ubsec_feed2(sc);
   1784        1.1  jonathan 	ubsecstats.hst_rng++;
   1785        1.1  jonathan 	splx(s);
   1786        1.1  jonathan 
   1787        1.1  jonathan 	return;
   1788        1.1  jonathan 
   1789        1.1  jonathan out:
   1790        1.1  jonathan 	/*
   1791        1.1  jonathan 	 * Something weird happened, generate our own call back.
   1792        1.1  jonathan 	 */
   1793        1.1  jonathan 	sc->sc_nqueue2--;
   1794        1.1  jonathan 	splx(s);
   1795        1.1  jonathan #ifdef __OpenBSD__
   1796        1.1  jonathan 	timeout_add(&sc->sc_rngto, sc->sc_rnghz);
   1797        1.1  jonathan #else
   1798        1.1  jonathan 	callout_reset(&sc->sc_rngto, sc->sc_rnghz, ubsec_rng, sc);
   1799        1.1  jonathan #endif
   1800        1.1  jonathan }
   1801        1.1  jonathan #endif /* UBSEC_NO_RNG */
   1802        1.1  jonathan 
   1803        1.1  jonathan static int
   1804        1.1  jonathan ubsec_dma_malloc(struct ubsec_softc *sc, bus_size_t size,
   1805        1.1  jonathan 		 struct ubsec_dma_alloc *dma,int mapflags)
   1806        1.1  jonathan {
   1807        1.1  jonathan 	int r;
   1808        1.1  jonathan 
   1809        1.1  jonathan 	if ((r = bus_dmamem_alloc(sc->sc_dmat, size, PAGE_SIZE, 0,
   1810        1.1  jonathan 	    &dma->dma_seg, 1, &dma->dma_nseg, BUS_DMA_NOWAIT)) != 0)
   1811        1.1  jonathan 		goto fail_0;
   1812        1.1  jonathan 
   1813        1.1  jonathan 	if ((r = bus_dmamem_map(sc->sc_dmat, &dma->dma_seg, dma->dma_nseg,
   1814        1.1  jonathan 	    size, &dma->dma_vaddr, mapflags | BUS_DMA_NOWAIT)) != 0)
   1815        1.1  jonathan 		goto fail_1;
   1816        1.1  jonathan 
   1817        1.1  jonathan 	if ((r = bus_dmamap_create(sc->sc_dmat, size, 1, size, 0,
   1818        1.1  jonathan 	    BUS_DMA_NOWAIT, &dma->dma_map)) != 0)
   1819        1.1  jonathan 		goto fail_2;
   1820        1.1  jonathan 
   1821        1.1  jonathan 	if ((r = bus_dmamap_load(sc->sc_dmat, dma->dma_map, dma->dma_vaddr,
   1822        1.1  jonathan 	    size, NULL, BUS_DMA_NOWAIT)) != 0)
   1823        1.1  jonathan 		goto fail_3;
   1824        1.1  jonathan 
   1825        1.1  jonathan 	dma->dma_paddr = dma->dma_map->dm_segs[0].ds_addr;
   1826        1.1  jonathan 	dma->dma_size = size;
   1827        1.1  jonathan 	return (0);
   1828        1.1  jonathan 
   1829        1.1  jonathan fail_3:
   1830        1.1  jonathan 	bus_dmamap_destroy(sc->sc_dmat, dma->dma_map);
   1831        1.1  jonathan fail_2:
   1832        1.1  jonathan 	bus_dmamem_unmap(sc->sc_dmat, dma->dma_vaddr, size);
   1833        1.1  jonathan fail_1:
   1834        1.1  jonathan 	bus_dmamem_free(sc->sc_dmat, &dma->dma_seg, dma->dma_nseg);
   1835        1.1  jonathan fail_0:
   1836        1.1  jonathan 	dma->dma_map = NULL;
   1837        1.1  jonathan 	return (r);
   1838        1.1  jonathan }
   1839        1.1  jonathan 
   1840        1.1  jonathan static void
   1841        1.1  jonathan ubsec_dma_free(struct ubsec_softc *sc, struct ubsec_dma_alloc *dma)
   1842        1.1  jonathan {
   1843        1.1  jonathan 	bus_dmamap_unload(sc->sc_dmat, dma->dma_map);
   1844        1.1  jonathan 	bus_dmamem_unmap(sc->sc_dmat, dma->dma_vaddr, dma->dma_size);
   1845        1.1  jonathan 	bus_dmamem_free(sc->sc_dmat, &dma->dma_seg, dma->dma_nseg);
   1846        1.1  jonathan 	bus_dmamap_destroy(sc->sc_dmat, dma->dma_map);
   1847        1.1  jonathan }
   1848        1.1  jonathan 
   1849        1.1  jonathan /*
   1850        1.1  jonathan  * Resets the board.  Values in the regesters are left as is
   1851        1.1  jonathan  * from the reset (i.e. initial values are assigned elsewhere).
   1852        1.1  jonathan  */
   1853        1.1  jonathan static void
   1854        1.1  jonathan ubsec_reset_board(struct ubsec_softc *sc)
   1855        1.1  jonathan {
   1856        1.1  jonathan     volatile u_int32_t ctrl;
   1857        1.1  jonathan 
   1858        1.1  jonathan     ctrl = READ_REG(sc, BS_CTRL);
   1859        1.1  jonathan     ctrl |= BS_CTRL_RESET;
   1860        1.1  jonathan     WRITE_REG(sc, BS_CTRL, ctrl);
   1861        1.1  jonathan 
   1862        1.1  jonathan     /*
   1863        1.1  jonathan      * Wait aprox. 30 PCI clocks = 900 ns = 0.9 us
   1864        1.1  jonathan      */
   1865        1.1  jonathan     DELAY(10);
   1866        1.1  jonathan }
   1867        1.1  jonathan 
   1868        1.1  jonathan /*
   1869        1.1  jonathan  * Init Broadcom registers
   1870        1.1  jonathan  */
   1871        1.1  jonathan static void
   1872        1.1  jonathan ubsec_init_board(struct ubsec_softc *sc)
   1873        1.1  jonathan {
   1874        1.1  jonathan 	u_int32_t ctrl;
   1875        1.1  jonathan 
   1876        1.1  jonathan 	ctrl = READ_REG(sc, BS_CTRL);
   1877        1.1  jonathan 	ctrl &= ~(BS_CTRL_BE32 | BS_CTRL_BE64);
   1878        1.1  jonathan 	ctrl |= BS_CTRL_LITTLE_ENDIAN | BS_CTRL_MCR1INT;
   1879        1.1  jonathan 
   1880        1.1  jonathan 	/*
   1881        1.1  jonathan 	 * XXX: Sam Leffler's code has (UBS_FLAGS_KEY|UBS_FLAGS_RNG)).
   1882        1.1  jonathan 	 * anyone got hw docs?
   1883        1.1  jonathan 	 */
   1884        1.1  jonathan 	if (sc->sc_flags & UBS_FLAGS_KEY)
   1885        1.1  jonathan 		ctrl |= BS_CTRL_MCR2INT;
   1886        1.1  jonathan 	else
   1887        1.1  jonathan 		ctrl &= ~BS_CTRL_MCR2INT;
   1888        1.1  jonathan 
   1889        1.1  jonathan 	if (sc->sc_flags & UBS_FLAGS_HWNORM)
   1890        1.1  jonathan 		ctrl &= ~BS_CTRL_SWNORM;
   1891        1.1  jonathan 
   1892        1.1  jonathan 	WRITE_REG(sc, BS_CTRL, ctrl);
   1893        1.1  jonathan }
   1894        1.1  jonathan 
   1895        1.1  jonathan /*
   1896        1.1  jonathan  * Init Broadcom PCI registers
   1897        1.1  jonathan  */
   1898        1.1  jonathan static void
   1899        1.7   thorpej ubsec_init_pciregs(struct pci_attach_args *pa)
   1900        1.1  jonathan {
   1901        1.1  jonathan 	pci_chipset_tag_t pc = pa->pa_pc;
   1902        1.1  jonathan 	u_int32_t misc;
   1903        1.1  jonathan 
   1904        1.1  jonathan 	/*
   1905        1.1  jonathan 	 * This will set the cache line size to 1, this will
   1906        1.1  jonathan 	 * force the BCM58xx chip just to do burst read/writes.
   1907        1.1  jonathan 	 * Cache line read/writes are to slow
   1908        1.1  jonathan 	 */
   1909        1.1  jonathan 	misc = pci_conf_read(pc, pa->pa_tag, PCI_BHLC_REG);
   1910        1.1  jonathan 	misc = (misc & ~(PCI_CACHELINE_MASK << PCI_CACHELINE_SHIFT))
   1911        1.1  jonathan 	    | ((UBS_DEF_CACHELINE & 0xff) << PCI_CACHELINE_SHIFT);
   1912        1.1  jonathan 	pci_conf_write(pc, pa->pa_tag, PCI_BHLC_REG, misc);
   1913        1.1  jonathan }
   1914        1.1  jonathan 
   1915        1.1  jonathan /*
   1916        1.1  jonathan  * Clean up after a chip crash.
   1917        1.1  jonathan  * It is assumed that the caller in splnet()
   1918        1.1  jonathan  */
   1919        1.1  jonathan static void
   1920        1.1  jonathan ubsec_cleanchip(struct ubsec_softc *sc)
   1921        1.1  jonathan {
   1922        1.1  jonathan 	struct ubsec_q *q;
   1923        1.1  jonathan 
   1924        1.1  jonathan 	while (!SIMPLEQ_EMPTY(&sc->sc_qchip)) {
   1925        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_qchip);
   1926        1.1  jonathan 		SIMPLEQ_REMOVE_HEAD(&sc->sc_qchip, /*q,*/ q_next);
   1927        1.1  jonathan 		ubsec_free_q(sc, q);
   1928        1.1  jonathan 	}
   1929        1.1  jonathan 	sc->sc_nqchip = 0;
   1930        1.1  jonathan }
   1931        1.1  jonathan 
   1932        1.1  jonathan /*
   1933        1.1  jonathan  * free a ubsec_q
   1934        1.1  jonathan  * It is assumed that the caller is within splnet()
   1935        1.1  jonathan  */
   1936        1.1  jonathan static int
   1937        1.1  jonathan ubsec_free_q(struct ubsec_softc *sc, struct ubsec_q *q)
   1938        1.1  jonathan {
   1939        1.1  jonathan 	struct ubsec_q *q2;
   1940        1.1  jonathan 	struct cryptop *crp;
   1941        1.1  jonathan 	int npkts;
   1942        1.1  jonathan 	int i;
   1943        1.1  jonathan 
   1944        1.1  jonathan 	npkts = q->q_nstacked_mcrs;
   1945        1.1  jonathan 
   1946        1.1  jonathan 	for (i = 0; i < npkts; i++) {
   1947        1.1  jonathan 		if(q->q_stacked_mcr[i]) {
   1948        1.1  jonathan 			q2 = q->q_stacked_mcr[i];
   1949        1.1  jonathan 
   1950        1.5     perry 			if ((q2->q_dst_m != NULL) && (q2->q_src_m != q2->q_dst_m))
   1951        1.1  jonathan 				m_freem(q2->q_dst_m);
   1952        1.1  jonathan 
   1953        1.1  jonathan 			crp = (struct cryptop *)q2->q_crp;
   1954        1.5     perry 
   1955        1.1  jonathan 			SIMPLEQ_INSERT_TAIL(&sc->sc_freequeue, q2, q_next);
   1956        1.5     perry 
   1957        1.1  jonathan 			crp->crp_etype = EFAULT;
   1958        1.1  jonathan 			crypto_done(crp);
   1959        1.1  jonathan 		} else {
   1960        1.1  jonathan 			break;
   1961        1.1  jonathan 		}
   1962        1.1  jonathan 	}
   1963        1.1  jonathan 
   1964        1.1  jonathan 	/*
   1965        1.1  jonathan 	 * Free header MCR
   1966        1.1  jonathan 	 */
   1967        1.1  jonathan 	if ((q->q_dst_m != NULL) && (q->q_src_m != q->q_dst_m))
   1968        1.1  jonathan 		m_freem(q->q_dst_m);
   1969        1.1  jonathan 
   1970        1.1  jonathan 	crp = (struct cryptop *)q->q_crp;
   1971        1.5     perry 
   1972        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_freequeue, q, q_next);
   1973        1.5     perry 
   1974        1.1  jonathan 	crp->crp_etype = EFAULT;
   1975        1.1  jonathan 	crypto_done(crp);
   1976        1.1  jonathan 	return(0);
   1977        1.1  jonathan }
   1978        1.1  jonathan 
   1979        1.1  jonathan /*
   1980        1.1  jonathan  * Routine to reset the chip and clean up.
   1981        1.1  jonathan  * It is assumed that the caller is in splnet()
   1982        1.1  jonathan  */
   1983        1.1  jonathan static void
   1984        1.1  jonathan ubsec_totalreset(struct ubsec_softc *sc)
   1985        1.1  jonathan {
   1986        1.1  jonathan 	ubsec_reset_board(sc);
   1987        1.1  jonathan 	ubsec_init_board(sc);
   1988        1.1  jonathan 	ubsec_cleanchip(sc);
   1989        1.1  jonathan }
   1990        1.1  jonathan 
   1991        1.1  jonathan static int
   1992        1.1  jonathan ubsec_dmamap_aligned(bus_dmamap_t map)
   1993        1.1  jonathan {
   1994        1.1  jonathan 	int i;
   1995        1.1  jonathan 
   1996        1.1  jonathan 	for (i = 0; i < map->dm_nsegs; i++) {
   1997        1.1  jonathan 		if (map->dm_segs[i].ds_addr & 3)
   1998        1.1  jonathan 			return (0);
   1999        1.1  jonathan 		if ((i != (map->dm_nsegs - 1)) &&
   2000        1.1  jonathan 		    (map->dm_segs[i].ds_len & 3))
   2001        1.1  jonathan 			return (0);
   2002        1.1  jonathan 	}
   2003        1.1  jonathan 	return (1);
   2004        1.1  jonathan }
   2005        1.1  jonathan 
   2006        1.1  jonathan #ifdef __OpenBSD__
   2007        1.1  jonathan struct ubsec_softc *
   2008        1.7   thorpej ubsec_kfind(struct cryptkop *krp)
   2009        1.1  jonathan {
   2010        1.1  jonathan 	struct ubsec_softc *sc;
   2011        1.1  jonathan 	int i;
   2012        1.1  jonathan 
   2013        1.1  jonathan 	for (i = 0; i < ubsec_cd.cd_ndevs; i++) {
   2014        1.1  jonathan 		sc = ubsec_cd.cd_devs[i];
   2015        1.1  jonathan 		if (sc == NULL)
   2016        1.1  jonathan 			continue;
   2017        1.1  jonathan 		if (sc->sc_cid == krp->krp_hid)
   2018        1.1  jonathan 			return (sc);
   2019        1.1  jonathan 	}
   2020        1.1  jonathan 	return (NULL);
   2021        1.1  jonathan }
   2022        1.1  jonathan #endif
   2023        1.1  jonathan 
   2024        1.1  jonathan static void
   2025        1.1  jonathan ubsec_kfree(struct ubsec_softc *sc, struct ubsec_q2 *q)
   2026        1.1  jonathan {
   2027        1.1  jonathan 	switch (q->q_type) {
   2028        1.1  jonathan 	case UBS_CTXOP_MODEXP: {
   2029        1.1  jonathan 		struct ubsec_q2_modexp *me = (struct ubsec_q2_modexp *)q;
   2030        1.1  jonathan 
   2031        1.1  jonathan 		ubsec_dma_free(sc, &me->me_q.q_mcr);
   2032        1.1  jonathan 		ubsec_dma_free(sc, &me->me_q.q_ctx);
   2033        1.1  jonathan 		ubsec_dma_free(sc, &me->me_M);
   2034        1.1  jonathan 		ubsec_dma_free(sc, &me->me_E);
   2035        1.1  jonathan 		ubsec_dma_free(sc, &me->me_C);
   2036        1.1  jonathan 		ubsec_dma_free(sc, &me->me_epb);
   2037        1.1  jonathan 		free(me, M_DEVBUF);
   2038        1.1  jonathan 		break;
   2039        1.1  jonathan 	}
   2040        1.1  jonathan 	case UBS_CTXOP_RSAPRIV: {
   2041        1.1  jonathan 		struct ubsec_q2_rsapriv *rp = (struct ubsec_q2_rsapriv *)q;
   2042        1.1  jonathan 
   2043        1.1  jonathan 		ubsec_dma_free(sc, &rp->rpr_q.q_mcr);
   2044        1.1  jonathan 		ubsec_dma_free(sc, &rp->rpr_q.q_ctx);
   2045        1.1  jonathan 		ubsec_dma_free(sc, &rp->rpr_msgin);
   2046        1.1  jonathan 		ubsec_dma_free(sc, &rp->rpr_msgout);
   2047        1.1  jonathan 		free(rp, M_DEVBUF);
   2048        1.1  jonathan 		break;
   2049        1.1  jonathan 	}
   2050        1.1  jonathan 	default:
   2051        1.1  jonathan 		printf("%s: invalid kfree 0x%x\n", sc->sc_dv.dv_xname,
   2052        1.1  jonathan 		    q->q_type);
   2053        1.1  jonathan 		break;
   2054        1.1  jonathan 	}
   2055        1.1  jonathan }
   2056        1.1  jonathan 
   2057        1.1  jonathan static int
   2058        1.1  jonathan ubsec_kprocess(void *arg, struct cryptkop *krp, int hint)
   2059        1.1  jonathan {
   2060        1.1  jonathan 	struct ubsec_softc *sc;
   2061        1.1  jonathan 	int r;
   2062        1.1  jonathan 
   2063        1.1  jonathan 	if (krp == NULL || krp->krp_callback == NULL)
   2064        1.1  jonathan 		return (EINVAL);
   2065        1.1  jonathan #ifdef __OpenBSD__
   2066        1.1  jonathan 	if ((sc = ubsec_kfind(krp)) == NULL)
   2067        1.1  jonathan 		return (EINVAL);
   2068        1.1  jonathan #else
   2069        1.1  jonathan 	sc = arg;
   2070        1.1  jonathan 	KASSERT(sc != NULL /*, ("ubsec_kprocess: null softc")*/);
   2071        1.1  jonathan #endif
   2072        1.1  jonathan 
   2073        1.1  jonathan 	while (!SIMPLEQ_EMPTY(&sc->sc_q2free)) {
   2074        1.1  jonathan 		struct ubsec_q2 *q;
   2075        1.1  jonathan 
   2076        1.1  jonathan 		q = SIMPLEQ_FIRST(&sc->sc_q2free);
   2077        1.1  jonathan 		SIMPLEQ_REMOVE_HEAD(&sc->sc_q2free, /*q,*/ q_next);
   2078        1.1  jonathan 		ubsec_kfree(sc, q);
   2079        1.1  jonathan 	}
   2080        1.1  jonathan 
   2081        1.1  jonathan 	switch (krp->krp_op) {
   2082        1.1  jonathan 	case CRK_MOD_EXP:
   2083        1.1  jonathan 		if (sc->sc_flags & UBS_FLAGS_HWNORM)
   2084        1.1  jonathan 			r = ubsec_kprocess_modexp_hw(sc, krp, hint);
   2085        1.1  jonathan 		else
   2086        1.1  jonathan 			r = ubsec_kprocess_modexp_sw(sc, krp, hint);
   2087        1.1  jonathan 		break;
   2088        1.1  jonathan 	case CRK_MOD_EXP_CRT:
   2089        1.1  jonathan 		r = ubsec_kprocess_rsapriv(sc, krp, hint);
   2090        1.1  jonathan 		break;
   2091        1.1  jonathan 	default:
   2092        1.1  jonathan 		printf("%s: kprocess: invalid op 0x%x\n",
   2093        1.1  jonathan 		    sc->sc_dv.dv_xname, krp->krp_op);
   2094        1.1  jonathan 		krp->krp_status = EOPNOTSUPP;
   2095        1.1  jonathan 		crypto_kdone(krp);
   2096        1.1  jonathan 		r = 0;
   2097        1.1  jonathan 	}
   2098        1.1  jonathan 	return (r);
   2099        1.1  jonathan }
   2100        1.1  jonathan 
   2101        1.1  jonathan /*
   2102        1.1  jonathan  * Start computation of cr[C] = (cr[M] ^ cr[E]) mod cr[N] (sw normalization)
   2103        1.1  jonathan  */
   2104        1.1  jonathan static int
   2105        1.1  jonathan ubsec_kprocess_modexp_sw(struct ubsec_softc *sc, struct cryptkop *krp,
   2106       1.11  christos 			 int hint)
   2107        1.1  jonathan {
   2108        1.1  jonathan 	struct ubsec_q2_modexp *me;
   2109        1.1  jonathan 	struct ubsec_mcr *mcr;
   2110        1.1  jonathan 	struct ubsec_ctx_modexp *ctx;
   2111        1.1  jonathan 	struct ubsec_pktbuf *epb;
   2112        1.1  jonathan 	int s, err = 0;
   2113        1.1  jonathan 	u_int nbits, normbits, mbits, shiftbits, ebits;
   2114        1.1  jonathan 
   2115        1.1  jonathan 	me = (struct ubsec_q2_modexp *)malloc(sizeof *me, M_DEVBUF, M_NOWAIT);
   2116        1.1  jonathan 	if (me == NULL) {
   2117        1.1  jonathan 		err = ENOMEM;
   2118        1.1  jonathan 		goto errout;
   2119        1.1  jonathan 	}
   2120        1.1  jonathan 	bzero(me, sizeof *me);
   2121        1.1  jonathan 	me->me_krp = krp;
   2122        1.1  jonathan 	me->me_q.q_type = UBS_CTXOP_MODEXP;
   2123        1.1  jonathan 
   2124        1.1  jonathan 	nbits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_N]);
   2125        1.1  jonathan 	if (nbits <= 512)
   2126        1.1  jonathan 		normbits = 512;
   2127        1.1  jonathan 	else if (nbits <= 768)
   2128        1.1  jonathan 		normbits = 768;
   2129        1.1  jonathan 	else if (nbits <= 1024)
   2130        1.1  jonathan 		normbits = 1024;
   2131        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && nbits <= 1536)
   2132        1.1  jonathan 		normbits = 1536;
   2133        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && nbits <= 2048)
   2134        1.1  jonathan 		normbits = 2048;
   2135        1.1  jonathan 	else {
   2136        1.1  jonathan 		err = E2BIG;
   2137        1.1  jonathan 		goto errout;
   2138        1.1  jonathan 	}
   2139        1.1  jonathan 
   2140        1.1  jonathan 	shiftbits = normbits - nbits;
   2141        1.1  jonathan 
   2142        1.1  jonathan 	me->me_modbits = nbits;
   2143        1.1  jonathan 	me->me_shiftbits = shiftbits;
   2144        1.1  jonathan 	me->me_normbits = normbits;
   2145        1.1  jonathan 
   2146        1.1  jonathan 	/* Sanity check: result bits must be >= true modulus bits. */
   2147        1.1  jonathan 	if (krp->krp_param[krp->krp_iparams].crp_nbits < nbits) {
   2148        1.1  jonathan 		err = ERANGE;
   2149        1.1  jonathan 		goto errout;
   2150        1.1  jonathan 	}
   2151        1.1  jonathan 
   2152        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_mcr),
   2153        1.1  jonathan 	    &me->me_q.q_mcr, 0)) {
   2154        1.1  jonathan 		err = ENOMEM;
   2155        1.1  jonathan 		goto errout;
   2156        1.1  jonathan 	}
   2157        1.1  jonathan 	mcr = (struct ubsec_mcr *)me->me_q.q_mcr.dma_vaddr;
   2158        1.1  jonathan 
   2159        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_ctx_modexp),
   2160        1.1  jonathan 	    &me->me_q.q_ctx, 0)) {
   2161        1.1  jonathan 		err = ENOMEM;
   2162        1.1  jonathan 		goto errout;
   2163        1.1  jonathan 	}
   2164        1.1  jonathan 
   2165        1.1  jonathan 	mbits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_M]);
   2166        1.1  jonathan 	if (mbits > nbits) {
   2167        1.1  jonathan 		err = E2BIG;
   2168        1.1  jonathan 		goto errout;
   2169        1.1  jonathan 	}
   2170        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_M, 0)) {
   2171        1.1  jonathan 		err = ENOMEM;
   2172        1.1  jonathan 		goto errout;
   2173        1.1  jonathan 	}
   2174        1.1  jonathan 	ubsec_kshift_r(shiftbits,
   2175        1.1  jonathan 	    krp->krp_param[UBS_MODEXP_PAR_M].crp_p, mbits,
   2176        1.1  jonathan 	    me->me_M.dma_vaddr, normbits);
   2177        1.1  jonathan 
   2178        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_C, 0)) {
   2179        1.1  jonathan 		err = ENOMEM;
   2180        1.1  jonathan 		goto errout;
   2181        1.1  jonathan 	}
   2182        1.1  jonathan 	bzero(me->me_C.dma_vaddr, me->me_C.dma_size);
   2183        1.1  jonathan 
   2184        1.1  jonathan 	ebits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_E]);
   2185        1.1  jonathan 	if (ebits > nbits) {
   2186        1.1  jonathan 		err = E2BIG;
   2187        1.1  jonathan 		goto errout;
   2188        1.1  jonathan 	}
   2189        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_E, 0)) {
   2190        1.1  jonathan 		err = ENOMEM;
   2191        1.1  jonathan 		goto errout;
   2192        1.1  jonathan 	}
   2193        1.1  jonathan 	ubsec_kshift_r(shiftbits,
   2194        1.1  jonathan 	    krp->krp_param[UBS_MODEXP_PAR_E].crp_p, ebits,
   2195        1.1  jonathan 	    me->me_E.dma_vaddr, normbits);
   2196        1.1  jonathan 
   2197        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_pktbuf),
   2198        1.1  jonathan 	    &me->me_epb, 0)) {
   2199        1.1  jonathan 		err = ENOMEM;
   2200        1.1  jonathan 		goto errout;
   2201        1.1  jonathan 	}
   2202        1.1  jonathan 	epb = (struct ubsec_pktbuf *)me->me_epb.dma_vaddr;
   2203        1.1  jonathan 	epb->pb_addr = htole32(me->me_E.dma_paddr);
   2204        1.1  jonathan 	epb->pb_next = 0;
   2205        1.1  jonathan 	epb->pb_len = htole32(normbits / 8);
   2206        1.1  jonathan 
   2207        1.1  jonathan #ifdef UBSEC_DEBUG
   2208        1.1  jonathan 	if (ubsec_debug) {
   2209        1.1  jonathan 		printf("Epb ");
   2210        1.1  jonathan 		ubsec_dump_pb(epb);
   2211        1.1  jonathan 	}
   2212        1.1  jonathan #endif
   2213        1.1  jonathan 
   2214        1.1  jonathan 	mcr->mcr_pkts = htole16(1);
   2215        1.1  jonathan 	mcr->mcr_flags = 0;
   2216        1.1  jonathan 	mcr->mcr_cmdctxp = htole32(me->me_q.q_ctx.dma_paddr);
   2217        1.1  jonathan 	mcr->mcr_reserved = 0;
   2218        1.1  jonathan 	mcr->mcr_pktlen = 0;
   2219        1.1  jonathan 
   2220        1.1  jonathan 	mcr->mcr_ipktbuf.pb_addr = htole32(me->me_M.dma_paddr);
   2221        1.1  jonathan 	mcr->mcr_ipktbuf.pb_len = htole32(normbits / 8);
   2222        1.1  jonathan 	mcr->mcr_ipktbuf.pb_next = htole32(me->me_epb.dma_paddr);
   2223        1.1  jonathan 
   2224        1.1  jonathan 	mcr->mcr_opktbuf.pb_addr = htole32(me->me_C.dma_paddr);
   2225        1.1  jonathan 	mcr->mcr_opktbuf.pb_next = 0;
   2226        1.1  jonathan 	mcr->mcr_opktbuf.pb_len = htole32(normbits / 8);
   2227        1.1  jonathan 
   2228        1.1  jonathan #ifdef DIAGNOSTIC
   2229        1.1  jonathan 	/* Misaligned output buffer will hang the chip. */
   2230        1.1  jonathan 	if ((letoh32(mcr->mcr_opktbuf.pb_addr) & 3) != 0)
   2231        1.1  jonathan 		panic("%s: modexp invalid addr 0x%x",
   2232        1.1  jonathan 		    sc->sc_dv.dv_xname, letoh32(mcr->mcr_opktbuf.pb_addr));
   2233        1.1  jonathan 	if ((letoh32(mcr->mcr_opktbuf.pb_len) & 3) != 0)
   2234        1.1  jonathan 		panic("%s: modexp invalid len 0x%x",
   2235        1.1  jonathan 		    sc->sc_dv.dv_xname, letoh32(mcr->mcr_opktbuf.pb_len));
   2236        1.1  jonathan #endif
   2237        1.1  jonathan 
   2238        1.1  jonathan 	ctx = (struct ubsec_ctx_modexp *)me->me_q.q_ctx.dma_vaddr;
   2239        1.1  jonathan 	bzero(ctx, sizeof(*ctx));
   2240        1.1  jonathan 	ubsec_kshift_r(shiftbits,
   2241        1.1  jonathan 	    krp->krp_param[UBS_MODEXP_PAR_N].crp_p, nbits,
   2242        1.1  jonathan 	    ctx->me_N, normbits);
   2243        1.1  jonathan 	ctx->me_len = htole16((normbits / 8) + (4 * sizeof(u_int16_t)));
   2244        1.1  jonathan 	ctx->me_op = htole16(UBS_CTXOP_MODEXP);
   2245        1.1  jonathan 	ctx->me_E_len = htole16(nbits);
   2246        1.1  jonathan 	ctx->me_N_len = htole16(nbits);
   2247        1.1  jonathan 
   2248        1.1  jonathan #ifdef UBSEC_DEBUG
   2249        1.1  jonathan 	if (ubsec_debug) {
   2250        1.1  jonathan 		ubsec_dump_mcr(mcr);
   2251        1.1  jonathan 		ubsec_dump_ctx2((struct ubsec_ctx_keyop *)ctx);
   2252        1.1  jonathan 	}
   2253        1.1  jonathan #endif
   2254        1.1  jonathan 
   2255        1.1  jonathan 	/*
   2256        1.1  jonathan 	 * ubsec_feed2 will sync mcr and ctx, we just need to sync
   2257        1.1  jonathan 	 * everything else.
   2258        1.1  jonathan 	 */
   2259        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_M.dma_map,
   2260        1.1  jonathan 	    0, me->me_M.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2261        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_E.dma_map,
   2262        1.1  jonathan 	    0, me->me_E.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2263        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_C.dma_map,
   2264        1.1  jonathan 	    0, me->me_C.dma_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   2265        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_epb.dma_map,
   2266        1.1  jonathan 	    0, me->me_epb.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2267        1.1  jonathan 
   2268        1.1  jonathan 	/* Enqueue and we're done... */
   2269        1.1  jonathan 	s = splnet();
   2270        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_queue2, &me->me_q, q_next);
   2271        1.1  jonathan 	ubsec_feed2(sc);
   2272        1.1  jonathan 	ubsecstats.hst_modexp++;
   2273        1.1  jonathan 	splx(s);
   2274        1.1  jonathan 
   2275        1.1  jonathan 	return (0);
   2276        1.1  jonathan 
   2277        1.1  jonathan errout:
   2278        1.1  jonathan 	if (me != NULL) {
   2279        1.1  jonathan 		if (me->me_q.q_mcr.dma_map != NULL)
   2280        1.1  jonathan 			ubsec_dma_free(sc, &me->me_q.q_mcr);
   2281        1.1  jonathan 		if (me->me_q.q_ctx.dma_map != NULL) {
   2282        1.1  jonathan 			bzero(me->me_q.q_ctx.dma_vaddr, me->me_q.q_ctx.dma_size);
   2283        1.1  jonathan 			ubsec_dma_free(sc, &me->me_q.q_ctx);
   2284        1.1  jonathan 		}
   2285        1.1  jonathan 		if (me->me_M.dma_map != NULL) {
   2286        1.1  jonathan 			bzero(me->me_M.dma_vaddr, me->me_M.dma_size);
   2287        1.1  jonathan 			ubsec_dma_free(sc, &me->me_M);
   2288        1.1  jonathan 		}
   2289        1.1  jonathan 		if (me->me_E.dma_map != NULL) {
   2290        1.1  jonathan 			bzero(me->me_E.dma_vaddr, me->me_E.dma_size);
   2291        1.1  jonathan 			ubsec_dma_free(sc, &me->me_E);
   2292        1.1  jonathan 		}
   2293        1.1  jonathan 		if (me->me_C.dma_map != NULL) {
   2294        1.1  jonathan 			bzero(me->me_C.dma_vaddr, me->me_C.dma_size);
   2295        1.1  jonathan 			ubsec_dma_free(sc, &me->me_C);
   2296        1.1  jonathan 		}
   2297        1.1  jonathan 		if (me->me_epb.dma_map != NULL)
   2298        1.1  jonathan 			ubsec_dma_free(sc, &me->me_epb);
   2299        1.1  jonathan 		free(me, M_DEVBUF);
   2300        1.1  jonathan 	}
   2301        1.1  jonathan 	krp->krp_status = err;
   2302        1.1  jonathan 	crypto_kdone(krp);
   2303        1.1  jonathan 	return (0);
   2304        1.1  jonathan }
   2305        1.1  jonathan 
   2306        1.1  jonathan /*
   2307        1.1  jonathan  * Start computation of cr[C] = (cr[M] ^ cr[E]) mod cr[N] (hw normalization)
   2308        1.1  jonathan  */
   2309        1.1  jonathan static int
   2310        1.1  jonathan ubsec_kprocess_modexp_hw(struct ubsec_softc *sc, struct cryptkop *krp,
   2311       1.11  christos 			 int hint)
   2312        1.1  jonathan {
   2313        1.1  jonathan 	struct ubsec_q2_modexp *me;
   2314        1.1  jonathan 	struct ubsec_mcr *mcr;
   2315        1.1  jonathan 	struct ubsec_ctx_modexp *ctx;
   2316        1.1  jonathan 	struct ubsec_pktbuf *epb;
   2317        1.1  jonathan 	int s, err = 0;
   2318        1.1  jonathan 	u_int nbits, normbits, mbits, shiftbits, ebits;
   2319        1.1  jonathan 
   2320        1.1  jonathan 	me = (struct ubsec_q2_modexp *)malloc(sizeof *me, M_DEVBUF, M_NOWAIT);
   2321        1.1  jonathan 	if (me == NULL) {
   2322        1.1  jonathan 		err = ENOMEM;
   2323        1.1  jonathan 		goto errout;
   2324        1.1  jonathan 	}
   2325        1.1  jonathan 	bzero(me, sizeof *me);
   2326        1.1  jonathan 	me->me_krp = krp;
   2327        1.1  jonathan 	me->me_q.q_type = UBS_CTXOP_MODEXP;
   2328        1.1  jonathan 
   2329        1.1  jonathan 	nbits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_N]);
   2330        1.1  jonathan 	if (nbits <= 512)
   2331        1.1  jonathan 		normbits = 512;
   2332        1.1  jonathan 	else if (nbits <= 768)
   2333        1.1  jonathan 		normbits = 768;
   2334        1.1  jonathan 	else if (nbits <= 1024)
   2335        1.1  jonathan 		normbits = 1024;
   2336        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && nbits <= 1536)
   2337        1.1  jonathan 		normbits = 1536;
   2338        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && nbits <= 2048)
   2339        1.1  jonathan 		normbits = 2048;
   2340        1.1  jonathan 	else {
   2341        1.1  jonathan 		err = E2BIG;
   2342        1.1  jonathan 		goto errout;
   2343        1.1  jonathan 	}
   2344        1.1  jonathan 
   2345        1.1  jonathan 	shiftbits = normbits - nbits;
   2346        1.1  jonathan 
   2347        1.1  jonathan 	/* XXX ??? */
   2348        1.1  jonathan 	me->me_modbits = nbits;
   2349        1.1  jonathan 	me->me_shiftbits = shiftbits;
   2350        1.1  jonathan 	me->me_normbits = normbits;
   2351        1.1  jonathan 
   2352        1.1  jonathan 	/* Sanity check: result bits must be >= true modulus bits. */
   2353        1.1  jonathan 	if (krp->krp_param[krp->krp_iparams].crp_nbits < nbits) {
   2354        1.1  jonathan 		err = ERANGE;
   2355        1.1  jonathan 		goto errout;
   2356        1.1  jonathan 	}
   2357        1.1  jonathan 
   2358        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_mcr),
   2359        1.1  jonathan 	    &me->me_q.q_mcr, 0)) {
   2360        1.1  jonathan 		err = ENOMEM;
   2361        1.1  jonathan 		goto errout;
   2362        1.1  jonathan 	}
   2363        1.1  jonathan 	mcr = (struct ubsec_mcr *)me->me_q.q_mcr.dma_vaddr;
   2364        1.1  jonathan 
   2365        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_ctx_modexp),
   2366        1.1  jonathan 	    &me->me_q.q_ctx, 0)) {
   2367        1.1  jonathan 		err = ENOMEM;
   2368        1.1  jonathan 		goto errout;
   2369        1.1  jonathan 	}
   2370        1.1  jonathan 
   2371        1.1  jonathan 	mbits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_M]);
   2372        1.1  jonathan 	if (mbits > nbits) {
   2373        1.1  jonathan 		err = E2BIG;
   2374        1.1  jonathan 		goto errout;
   2375        1.1  jonathan 	}
   2376        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_M, 0)) {
   2377        1.1  jonathan 		err = ENOMEM;
   2378        1.1  jonathan 		goto errout;
   2379        1.1  jonathan 	}
   2380        1.1  jonathan 	bzero(me->me_M.dma_vaddr, normbits / 8);
   2381        1.1  jonathan 	bcopy(krp->krp_param[UBS_MODEXP_PAR_M].crp_p,
   2382        1.1  jonathan 	    me->me_M.dma_vaddr, (mbits + 7) / 8);
   2383        1.1  jonathan 
   2384        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_C, 0)) {
   2385        1.1  jonathan 		err = ENOMEM;
   2386        1.1  jonathan 		goto errout;
   2387        1.1  jonathan 	}
   2388        1.1  jonathan 	bzero(me->me_C.dma_vaddr, me->me_C.dma_size);
   2389        1.1  jonathan 
   2390        1.1  jonathan 	ebits = ubsec_ksigbits(&krp->krp_param[UBS_MODEXP_PAR_E]);
   2391        1.1  jonathan 	if (ebits > nbits) {
   2392        1.1  jonathan 		err = E2BIG;
   2393        1.1  jonathan 		goto errout;
   2394        1.1  jonathan 	}
   2395        1.1  jonathan 	if (ubsec_dma_malloc(sc, normbits / 8, &me->me_E, 0)) {
   2396        1.1  jonathan 		err = ENOMEM;
   2397        1.1  jonathan 		goto errout;
   2398        1.1  jonathan 	}
   2399        1.1  jonathan 	bzero(me->me_E.dma_vaddr, normbits / 8);
   2400        1.1  jonathan 	bcopy(krp->krp_param[UBS_MODEXP_PAR_E].crp_p,
   2401        1.1  jonathan 	    me->me_E.dma_vaddr, (ebits + 7) / 8);
   2402        1.1  jonathan 
   2403        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_pktbuf),
   2404        1.1  jonathan 	    &me->me_epb, 0)) {
   2405        1.1  jonathan 		err = ENOMEM;
   2406        1.1  jonathan 		goto errout;
   2407        1.1  jonathan 	}
   2408        1.1  jonathan 	epb = (struct ubsec_pktbuf *)me->me_epb.dma_vaddr;
   2409        1.1  jonathan 	epb->pb_addr = htole32(me->me_E.dma_paddr);
   2410        1.1  jonathan 	epb->pb_next = 0;
   2411        1.1  jonathan 	epb->pb_len = htole32((ebits + 7) / 8);
   2412        1.1  jonathan 
   2413        1.1  jonathan #ifdef UBSEC_DEBUG
   2414        1.1  jonathan 	if (ubsec_debug) {
   2415        1.1  jonathan 		printf("Epb ");
   2416        1.1  jonathan 		ubsec_dump_pb(epb);
   2417        1.1  jonathan 	}
   2418        1.1  jonathan #endif
   2419        1.1  jonathan 
   2420        1.1  jonathan 	mcr->mcr_pkts = htole16(1);
   2421        1.1  jonathan 	mcr->mcr_flags = 0;
   2422        1.1  jonathan 	mcr->mcr_cmdctxp = htole32(me->me_q.q_ctx.dma_paddr);
   2423        1.1  jonathan 	mcr->mcr_reserved = 0;
   2424        1.1  jonathan 	mcr->mcr_pktlen = 0;
   2425        1.1  jonathan 
   2426        1.1  jonathan 	mcr->mcr_ipktbuf.pb_addr = htole32(me->me_M.dma_paddr);
   2427        1.1  jonathan 	mcr->mcr_ipktbuf.pb_len = htole32(normbits / 8);
   2428        1.1  jonathan 	mcr->mcr_ipktbuf.pb_next = htole32(me->me_epb.dma_paddr);
   2429        1.1  jonathan 
   2430        1.1  jonathan 	mcr->mcr_opktbuf.pb_addr = htole32(me->me_C.dma_paddr);
   2431        1.1  jonathan 	mcr->mcr_opktbuf.pb_next = 0;
   2432        1.1  jonathan 	mcr->mcr_opktbuf.pb_len = htole32(normbits / 8);
   2433        1.1  jonathan 
   2434        1.1  jonathan #ifdef DIAGNOSTIC
   2435        1.1  jonathan 	/* Misaligned output buffer will hang the chip. */
   2436        1.1  jonathan 	if ((letoh32(mcr->mcr_opktbuf.pb_addr) & 3) != 0)
   2437        1.1  jonathan 		panic("%s: modexp invalid addr 0x%x",
   2438        1.1  jonathan 		    sc->sc_dv.dv_xname, letoh32(mcr->mcr_opktbuf.pb_addr));
   2439        1.1  jonathan 	if ((letoh32(mcr->mcr_opktbuf.pb_len) & 3) != 0)
   2440        1.1  jonathan 		panic("%s: modexp invalid len 0x%x",
   2441        1.1  jonathan 		    sc->sc_dv.dv_xname, letoh32(mcr->mcr_opktbuf.pb_len));
   2442        1.1  jonathan #endif
   2443        1.1  jonathan 
   2444        1.1  jonathan 	ctx = (struct ubsec_ctx_modexp *)me->me_q.q_ctx.dma_vaddr;
   2445        1.1  jonathan 	bzero(ctx, sizeof(*ctx));
   2446        1.1  jonathan 	bcopy(krp->krp_param[UBS_MODEXP_PAR_N].crp_p, ctx->me_N,
   2447        1.1  jonathan 	    (nbits + 7) / 8);
   2448        1.1  jonathan 	ctx->me_len = htole16((normbits / 8) + (4 * sizeof(u_int16_t)));
   2449        1.1  jonathan 	ctx->me_op = htole16(UBS_CTXOP_MODEXP);
   2450        1.1  jonathan 	ctx->me_E_len = htole16(ebits);
   2451        1.1  jonathan 	ctx->me_N_len = htole16(nbits);
   2452        1.1  jonathan 
   2453        1.1  jonathan #ifdef UBSEC_DEBUG
   2454        1.1  jonathan 	if (ubsec_debug) {
   2455        1.1  jonathan 		ubsec_dump_mcr(mcr);
   2456        1.1  jonathan 		ubsec_dump_ctx2((struct ubsec_ctx_keyop *)ctx);
   2457        1.1  jonathan 	}
   2458        1.1  jonathan #endif
   2459        1.1  jonathan 
   2460        1.1  jonathan 	/*
   2461        1.1  jonathan 	 * ubsec_feed2 will sync mcr and ctx, we just need to sync
   2462        1.1  jonathan 	 * everything else.
   2463        1.1  jonathan 	 */
   2464        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_M.dma_map,
   2465        1.1  jonathan 	    0, me->me_M.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2466        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_E.dma_map,
   2467        1.1  jonathan 	    0, me->me_E.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2468        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_C.dma_map,
   2469        1.1  jonathan 	    0, me->me_C.dma_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   2470        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, me->me_epb.dma_map,
   2471        1.1  jonathan 	    0, me->me_epb.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2472        1.1  jonathan 
   2473        1.1  jonathan 	/* Enqueue and we're done... */
   2474        1.1  jonathan 	s = splnet();
   2475        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_queue2, &me->me_q, q_next);
   2476        1.1  jonathan 	ubsec_feed2(sc);
   2477        1.1  jonathan 	splx(s);
   2478        1.1  jonathan 
   2479        1.1  jonathan 	return (0);
   2480        1.1  jonathan 
   2481        1.1  jonathan errout:
   2482        1.1  jonathan 	if (me != NULL) {
   2483        1.1  jonathan 		if (me->me_q.q_mcr.dma_map != NULL)
   2484        1.1  jonathan 			ubsec_dma_free(sc, &me->me_q.q_mcr);
   2485        1.1  jonathan 		if (me->me_q.q_ctx.dma_map != NULL) {
   2486        1.1  jonathan 			bzero(me->me_q.q_ctx.dma_vaddr, me->me_q.q_ctx.dma_size);
   2487        1.1  jonathan 			ubsec_dma_free(sc, &me->me_q.q_ctx);
   2488        1.1  jonathan 		}
   2489        1.1  jonathan 		if (me->me_M.dma_map != NULL) {
   2490        1.1  jonathan 			bzero(me->me_M.dma_vaddr, me->me_M.dma_size);
   2491        1.1  jonathan 			ubsec_dma_free(sc, &me->me_M);
   2492        1.1  jonathan 		}
   2493        1.1  jonathan 		if (me->me_E.dma_map != NULL) {
   2494        1.1  jonathan 			bzero(me->me_E.dma_vaddr, me->me_E.dma_size);
   2495        1.1  jonathan 			ubsec_dma_free(sc, &me->me_E);
   2496        1.1  jonathan 		}
   2497        1.1  jonathan 		if (me->me_C.dma_map != NULL) {
   2498        1.1  jonathan 			bzero(me->me_C.dma_vaddr, me->me_C.dma_size);
   2499        1.1  jonathan 			ubsec_dma_free(sc, &me->me_C);
   2500        1.1  jonathan 		}
   2501        1.1  jonathan 		if (me->me_epb.dma_map != NULL)
   2502        1.1  jonathan 			ubsec_dma_free(sc, &me->me_epb);
   2503        1.1  jonathan 		free(me, M_DEVBUF);
   2504        1.1  jonathan 	}
   2505        1.1  jonathan 	krp->krp_status = err;
   2506        1.1  jonathan 	crypto_kdone(krp);
   2507        1.1  jonathan 	return (0);
   2508        1.1  jonathan }
   2509        1.1  jonathan 
   2510        1.1  jonathan static int
   2511        1.1  jonathan ubsec_kprocess_rsapriv(struct ubsec_softc *sc, struct cryptkop *krp,
   2512       1.11  christos 		       int hint)
   2513        1.1  jonathan {
   2514        1.1  jonathan 	struct ubsec_q2_rsapriv *rp = NULL;
   2515        1.1  jonathan 	struct ubsec_mcr *mcr;
   2516        1.1  jonathan 	struct ubsec_ctx_rsapriv *ctx;
   2517        1.1  jonathan 	int s, err = 0;
   2518        1.1  jonathan 	u_int padlen, msglen;
   2519        1.1  jonathan 
   2520        1.1  jonathan 	msglen = ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_P]);
   2521        1.1  jonathan 	padlen = ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_Q]);
   2522        1.1  jonathan 	if (msglen > padlen)
   2523        1.1  jonathan 		padlen = msglen;
   2524        1.1  jonathan 
   2525        1.1  jonathan 	if (padlen <= 256)
   2526        1.1  jonathan 		padlen = 256;
   2527        1.1  jonathan 	else if (padlen <= 384)
   2528        1.1  jonathan 		padlen = 384;
   2529        1.1  jonathan 	else if (padlen <= 512)
   2530        1.1  jonathan 		padlen = 512;
   2531        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && padlen <= 768)
   2532        1.1  jonathan 		padlen = 768;
   2533        1.1  jonathan 	else if (sc->sc_flags & UBS_FLAGS_BIGKEY && padlen <= 1024)
   2534        1.1  jonathan 		padlen = 1024;
   2535        1.1  jonathan 	else {
   2536        1.1  jonathan 		err = E2BIG;
   2537        1.1  jonathan 		goto errout;
   2538        1.1  jonathan 	}
   2539        1.1  jonathan 
   2540        1.1  jonathan 	if (ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_DP]) > padlen) {
   2541        1.1  jonathan 		err = E2BIG;
   2542        1.1  jonathan 		goto errout;
   2543        1.1  jonathan 	}
   2544        1.1  jonathan 
   2545        1.1  jonathan 	if (ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_DQ]) > padlen) {
   2546        1.1  jonathan 		err = E2BIG;
   2547        1.1  jonathan 		goto errout;
   2548        1.1  jonathan 	}
   2549        1.1  jonathan 
   2550        1.1  jonathan 	if (ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_PINV]) > padlen) {
   2551        1.1  jonathan 		err = E2BIG;
   2552        1.1  jonathan 		goto errout;
   2553        1.1  jonathan 	}
   2554        1.1  jonathan 
   2555        1.1  jonathan 	rp = (struct ubsec_q2_rsapriv *)malloc(sizeof *rp, M_DEVBUF, M_NOWAIT);
   2556        1.1  jonathan 	if (rp == NULL)
   2557        1.1  jonathan 		return (ENOMEM);
   2558        1.1  jonathan 	bzero(rp, sizeof *rp);
   2559        1.1  jonathan 	rp->rpr_krp = krp;
   2560        1.1  jonathan 	rp->rpr_q.q_type = UBS_CTXOP_RSAPRIV;
   2561        1.1  jonathan 
   2562        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_mcr),
   2563        1.1  jonathan 	    &rp->rpr_q.q_mcr, 0)) {
   2564        1.1  jonathan 		err = ENOMEM;
   2565        1.1  jonathan 		goto errout;
   2566        1.1  jonathan 	}
   2567        1.1  jonathan 	mcr = (struct ubsec_mcr *)rp->rpr_q.q_mcr.dma_vaddr;
   2568        1.1  jonathan 
   2569        1.1  jonathan 	if (ubsec_dma_malloc(sc, sizeof(struct ubsec_ctx_rsapriv),
   2570        1.1  jonathan 	    &rp->rpr_q.q_ctx, 0)) {
   2571        1.1  jonathan 		err = ENOMEM;
   2572        1.1  jonathan 		goto errout;
   2573        1.1  jonathan 	}
   2574        1.1  jonathan 	ctx = (struct ubsec_ctx_rsapriv *)rp->rpr_q.q_ctx.dma_vaddr;
   2575        1.1  jonathan 	bzero(ctx, sizeof *ctx);
   2576        1.1  jonathan 
   2577        1.1  jonathan 	/* Copy in p */
   2578        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_P].crp_p,
   2579        1.1  jonathan 	    &ctx->rpr_buf[0 * (padlen / 8)],
   2580        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_P].crp_nbits + 7) / 8);
   2581        1.1  jonathan 
   2582        1.1  jonathan 	/* Copy in q */
   2583        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_Q].crp_p,
   2584        1.1  jonathan 	    &ctx->rpr_buf[1 * (padlen / 8)],
   2585        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_Q].crp_nbits + 7) / 8);
   2586        1.1  jonathan 
   2587        1.1  jonathan 	/* Copy in dp */
   2588        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_DP].crp_p,
   2589        1.1  jonathan 	    &ctx->rpr_buf[2 * (padlen / 8)],
   2590        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_DP].crp_nbits + 7) / 8);
   2591        1.1  jonathan 
   2592        1.1  jonathan 	/* Copy in dq */
   2593        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_DQ].crp_p,
   2594        1.1  jonathan 	    &ctx->rpr_buf[3 * (padlen / 8)],
   2595        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_DQ].crp_nbits + 7) / 8);
   2596        1.1  jonathan 
   2597        1.1  jonathan 	/* Copy in pinv */
   2598        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_PINV].crp_p,
   2599        1.1  jonathan 	    &ctx->rpr_buf[4 * (padlen / 8)],
   2600        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_PINV].crp_nbits + 7) / 8);
   2601        1.1  jonathan 
   2602        1.1  jonathan 	msglen = padlen * 2;
   2603        1.1  jonathan 
   2604        1.1  jonathan 	/* Copy in input message (aligned buffer/length). */
   2605        1.1  jonathan 	if (ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_MSGIN]) > msglen) {
   2606        1.1  jonathan 		/* Is this likely? */
   2607        1.1  jonathan 		err = E2BIG;
   2608        1.1  jonathan 		goto errout;
   2609        1.1  jonathan 	}
   2610        1.1  jonathan 	if (ubsec_dma_malloc(sc, (msglen + 7) / 8, &rp->rpr_msgin, 0)) {
   2611        1.1  jonathan 		err = ENOMEM;
   2612        1.1  jonathan 		goto errout;
   2613        1.1  jonathan 	}
   2614        1.1  jonathan 	bzero(rp->rpr_msgin.dma_vaddr, (msglen + 7) / 8);
   2615        1.1  jonathan 	bcopy(krp->krp_param[UBS_RSAPRIV_PAR_MSGIN].crp_p,
   2616        1.1  jonathan 	    rp->rpr_msgin.dma_vaddr,
   2617        1.1  jonathan 	    (krp->krp_param[UBS_RSAPRIV_PAR_MSGIN].crp_nbits + 7) / 8);
   2618        1.1  jonathan 
   2619        1.1  jonathan 	/* Prepare space for output message (aligned buffer/length). */
   2620        1.1  jonathan 	if (ubsec_ksigbits(&krp->krp_param[UBS_RSAPRIV_PAR_MSGOUT]) < msglen) {
   2621        1.1  jonathan 		/* Is this likely? */
   2622        1.1  jonathan 		err = E2BIG;
   2623        1.1  jonathan 		goto errout;
   2624        1.1  jonathan 	}
   2625        1.1  jonathan 	if (ubsec_dma_malloc(sc, (msglen + 7) / 8, &rp->rpr_msgout, 0)) {
   2626        1.1  jonathan 		err = ENOMEM;
   2627        1.1  jonathan 		goto errout;
   2628        1.1  jonathan 	}
   2629        1.1  jonathan 	bzero(rp->rpr_msgout.dma_vaddr, (msglen + 7) / 8);
   2630        1.1  jonathan 
   2631        1.1  jonathan 	mcr->mcr_pkts = htole16(1);
   2632        1.1  jonathan 	mcr->mcr_flags = 0;
   2633        1.1  jonathan 	mcr->mcr_cmdctxp = htole32(rp->rpr_q.q_ctx.dma_paddr);
   2634        1.1  jonathan 	mcr->mcr_ipktbuf.pb_addr = htole32(rp->rpr_msgin.dma_paddr);
   2635        1.1  jonathan 	mcr->mcr_ipktbuf.pb_next = 0;
   2636        1.1  jonathan 	mcr->mcr_ipktbuf.pb_len = htole32(rp->rpr_msgin.dma_size);
   2637        1.1  jonathan 	mcr->mcr_reserved = 0;
   2638        1.1  jonathan 	mcr->mcr_pktlen = htole16(msglen);
   2639        1.1  jonathan 	mcr->mcr_opktbuf.pb_addr = htole32(rp->rpr_msgout.dma_paddr);
   2640        1.1  jonathan 	mcr->mcr_opktbuf.pb_next = 0;
   2641        1.1  jonathan 	mcr->mcr_opktbuf.pb_len = htole32(rp->rpr_msgout.dma_size);
   2642        1.1  jonathan 
   2643        1.1  jonathan #ifdef DIAGNOSTIC
   2644        1.1  jonathan 	if (rp->rpr_msgin.dma_paddr & 3 || rp->rpr_msgin.dma_size & 3) {
   2645        1.3   thorpej 		panic("%s: rsapriv: invalid msgin 0x%lx(0x%lx)",
   2646        1.3   thorpej 		    sc->sc_dv.dv_xname, (u_long) rp->rpr_msgin.dma_paddr,
   2647        1.3   thorpej 		    (u_long) rp->rpr_msgin.dma_size);
   2648        1.1  jonathan 	}
   2649        1.1  jonathan 	if (rp->rpr_msgout.dma_paddr & 3 || rp->rpr_msgout.dma_size & 3) {
   2650        1.3   thorpej 		panic("%s: rsapriv: invalid msgout 0x%lx(0x%lx)",
   2651        1.3   thorpej 		    sc->sc_dv.dv_xname, (u_long) rp->rpr_msgout.dma_paddr,
   2652        1.3   thorpej 		    (u_long) rp->rpr_msgout.dma_size);
   2653        1.1  jonathan 	}
   2654        1.1  jonathan #endif
   2655        1.1  jonathan 
   2656        1.1  jonathan 	ctx->rpr_len = (sizeof(u_int16_t) * 4) + (5 * (padlen / 8));
   2657        1.1  jonathan 	ctx->rpr_op = htole16(UBS_CTXOP_RSAPRIV);
   2658        1.1  jonathan 	ctx->rpr_q_len = htole16(padlen);
   2659        1.1  jonathan 	ctx->rpr_p_len = htole16(padlen);
   2660        1.1  jonathan 
   2661        1.1  jonathan 	/*
   2662        1.1  jonathan 	 * ubsec_feed2 will sync mcr and ctx, we just need to sync
   2663        1.1  jonathan 	 * everything else.
   2664        1.1  jonathan 	 */
   2665        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgin.dma_map,
   2666        1.1  jonathan 	    0, rp->rpr_msgin.dma_map->dm_mapsize, BUS_DMASYNC_PREWRITE);
   2667        1.1  jonathan 	bus_dmamap_sync(sc->sc_dmat, rp->rpr_msgout.dma_map,
   2668        1.1  jonathan 	    0, rp->rpr_msgout.dma_map->dm_mapsize, BUS_DMASYNC_PREREAD);
   2669        1.1  jonathan 
   2670        1.1  jonathan 	/* Enqueue and we're done... */
   2671        1.1  jonathan 	s = splnet();
   2672        1.1  jonathan 	SIMPLEQ_INSERT_TAIL(&sc->sc_queue2, &rp->rpr_q, q_next);
   2673        1.1  jonathan 	ubsec_feed2(sc);
   2674        1.1  jonathan 	ubsecstats.hst_modexpcrt++;
   2675        1.1  jonathan 	splx(s);
   2676        1.1  jonathan 	return (0);
   2677        1.1  jonathan 
   2678        1.1  jonathan errout:
   2679        1.1  jonathan 	if (rp != NULL) {
   2680        1.1  jonathan 		if (rp->rpr_q.q_mcr.dma_map != NULL)
   2681        1.1  jonathan 			ubsec_dma_free(sc, &rp->rpr_q.q_mcr);
   2682        1.1  jonathan 		if (rp->rpr_msgin.dma_map != NULL) {
   2683        1.1  jonathan 			bzero(rp->rpr_msgin.dma_vaddr, rp->rpr_msgin.dma_size);
   2684        1.1  jonathan 			ubsec_dma_free(sc, &rp->rpr_msgin);
   2685        1.1  jonathan 		}
   2686        1.1  jonathan 		if (rp->rpr_msgout.dma_map != NULL) {
   2687        1.1  jonathan 			bzero(rp->rpr_msgout.dma_vaddr, rp->rpr_msgout.dma_size);
   2688        1.1  jonathan 			ubsec_dma_free(sc, &rp->rpr_msgout);
   2689        1.1  jonathan 		}
   2690        1.1  jonathan 		free(rp, M_DEVBUF);
   2691        1.1  jonathan 	}
   2692        1.1  jonathan 	krp->krp_status = err;
   2693        1.1  jonathan 	crypto_kdone(krp);
   2694        1.1  jonathan 	return (0);
   2695        1.1  jonathan }
   2696        1.1  jonathan 
   2697        1.1  jonathan #ifdef UBSEC_DEBUG
   2698        1.1  jonathan static void
   2699        1.1  jonathan ubsec_dump_pb(volatile struct ubsec_pktbuf *pb)
   2700        1.1  jonathan {
   2701        1.1  jonathan 	printf("addr 0x%x (0x%x) next 0x%x\n",
   2702        1.1  jonathan 	    pb->pb_addr, pb->pb_len, pb->pb_next);
   2703        1.1  jonathan }
   2704        1.1  jonathan 
   2705        1.1  jonathan static void
   2706        1.1  jonathan ubsec_dump_ctx2(volatile struct ubsec_ctx_keyop *c)
   2707        1.1  jonathan {
   2708        1.1  jonathan 	printf("CTX (0x%x):\n", c->ctx_len);
   2709        1.1  jonathan 	switch (letoh16(c->ctx_op)) {
   2710        1.1  jonathan 	case UBS_CTXOP_RNGBYPASS:
   2711        1.1  jonathan 	case UBS_CTXOP_RNGSHA1:
   2712        1.1  jonathan 		break;
   2713        1.1  jonathan 	case UBS_CTXOP_MODEXP:
   2714        1.1  jonathan 	{
   2715        1.1  jonathan 		struct ubsec_ctx_modexp *cx = (void *)c;
   2716        1.1  jonathan 		int i, len;
   2717        1.1  jonathan 
   2718        1.1  jonathan 		printf(" Elen %u, Nlen %u\n",
   2719        1.1  jonathan 		    letoh16(cx->me_E_len), letoh16(cx->me_N_len));
   2720        1.1  jonathan 		len = (cx->me_N_len + 7)/8;
   2721        1.1  jonathan 		for (i = 0; i < len; i++)
   2722        1.1  jonathan 			printf("%s%02x", (i == 0) ? " N: " : ":", cx->me_N[i]);
   2723        1.1  jonathan 		printf("\n");
   2724        1.1  jonathan 		break;
   2725        1.1  jonathan 	}
   2726        1.1  jonathan 	default:
   2727        1.1  jonathan 		printf("unknown context: %x\n", c->ctx_op);
   2728        1.1  jonathan 	}
   2729        1.1  jonathan 	printf("END CTX\n");
   2730        1.1  jonathan }
   2731        1.1  jonathan 
   2732        1.1  jonathan static void
   2733        1.1  jonathan ubsec_dump_mcr(struct ubsec_mcr *mcr)
   2734        1.1  jonathan {
   2735        1.1  jonathan 	volatile struct ubsec_mcr_add *ma;
   2736        1.1  jonathan 	int i;
   2737        1.1  jonathan 
   2738        1.1  jonathan 	printf("MCR:\n");
   2739        1.1  jonathan 	printf(" pkts: %u, flags 0x%x\n",
   2740        1.1  jonathan 	    letoh16(mcr->mcr_pkts), letoh16(mcr->mcr_flags));
   2741        1.1  jonathan 	ma = (volatile struct ubsec_mcr_add *)&mcr->mcr_cmdctxp;
   2742        1.1  jonathan 	for (i = 0; i < letoh16(mcr->mcr_pkts); i++) {
   2743        1.1  jonathan 		printf(" %d: ctx 0x%x len 0x%x rsvd 0x%x\n", i,
   2744        1.1  jonathan 		    letoh32(ma->mcr_cmdctxp), letoh16(ma->mcr_pktlen),
   2745        1.1  jonathan 		    letoh16(ma->mcr_reserved));
   2746        1.1  jonathan 		printf(" %d: ipkt ", i);
   2747        1.1  jonathan 		ubsec_dump_pb(&ma->mcr_ipktbuf);
   2748        1.1  jonathan 		printf(" %d: opkt ", i);
   2749        1.1  jonathan 		ubsec_dump_pb(&ma->mcr_opktbuf);
   2750        1.1  jonathan 		ma++;
   2751        1.1  jonathan 	}
   2752        1.1  jonathan 	printf("END MCR\n");
   2753        1.1  jonathan }
   2754        1.1  jonathan #endif /* UBSEC_DEBUG */
   2755        1.1  jonathan 
   2756        1.1  jonathan /*
   2757        1.1  jonathan  * Return the number of significant bits of a big number.
   2758        1.1  jonathan  */
   2759        1.1  jonathan static int
   2760        1.1  jonathan ubsec_ksigbits(struct crparam *cr)
   2761        1.1  jonathan {
   2762        1.1  jonathan 	u_int plen = (cr->crp_nbits + 7) / 8;
   2763        1.1  jonathan 	int i, sig = plen * 8;
   2764        1.1  jonathan 	u_int8_t c, *p = cr->crp_p;
   2765        1.1  jonathan 
   2766        1.1  jonathan 	for (i = plen - 1; i >= 0; i--) {
   2767        1.1  jonathan 		c = p[i];
   2768        1.1  jonathan 		if (c != 0) {
   2769        1.1  jonathan 			while ((c & 0x80) == 0) {
   2770        1.1  jonathan 				sig--;
   2771        1.1  jonathan 				c <<= 1;
   2772        1.1  jonathan 			}
   2773        1.1  jonathan 			break;
   2774        1.1  jonathan 		}
   2775        1.1  jonathan 		sig -= 8;
   2776        1.1  jonathan 	}
   2777        1.1  jonathan 	return (sig);
   2778        1.1  jonathan }
   2779        1.1  jonathan 
   2780        1.1  jonathan static void
   2781        1.7   thorpej ubsec_kshift_r(u_int shiftbits, u_int8_t *src, u_int srcbits,
   2782        1.7   thorpej     u_int8_t *dst, u_int dstbits)
   2783        1.1  jonathan {
   2784        1.1  jonathan 	u_int slen, dlen;
   2785        1.1  jonathan 	int i, si, di, n;
   2786        1.1  jonathan 
   2787        1.1  jonathan 	slen = (srcbits + 7) / 8;
   2788        1.1  jonathan 	dlen = (dstbits + 7) / 8;
   2789        1.1  jonathan 
   2790        1.1  jonathan 	for (i = 0; i < slen; i++)
   2791        1.1  jonathan 		dst[i] = src[i];
   2792        1.1  jonathan 	for (i = 0; i < dlen - slen; i++)
   2793        1.1  jonathan 		dst[slen + i] = 0;
   2794        1.1  jonathan 
   2795        1.1  jonathan 	n = shiftbits / 8;
   2796        1.1  jonathan 	if (n != 0) {
   2797        1.1  jonathan 		si = dlen - n - 1;
   2798        1.1  jonathan 		di = dlen - 1;
   2799        1.1  jonathan 		while (si >= 0)
   2800        1.1  jonathan 			dst[di--] = dst[si--];
   2801        1.1  jonathan 		while (di >= 0)
   2802        1.1  jonathan 			dst[di--] = 0;
   2803        1.1  jonathan 	}
   2804        1.1  jonathan 
   2805        1.1  jonathan 	n = shiftbits % 8;
   2806        1.1  jonathan 	if (n != 0) {
   2807        1.1  jonathan 		for (i = dlen - 1; i > 0; i--)
   2808        1.1  jonathan 			dst[i] = (dst[i] << n) |
   2809        1.1  jonathan 			    (dst[i - 1] >> (8 - n));
   2810        1.1  jonathan 		dst[0] = dst[0] << n;
   2811        1.1  jonathan 	}
   2812        1.1  jonathan }
   2813        1.1  jonathan 
   2814        1.1  jonathan static void
   2815        1.7   thorpej ubsec_kshift_l(u_int shiftbits, u_int8_t *src, u_int srcbits,
   2816        1.7   thorpej     u_int8_t *dst, u_int dstbits)
   2817        1.1  jonathan {
   2818        1.1  jonathan 	int slen, dlen, i, n;
   2819        1.1  jonathan 
   2820        1.1  jonathan 	slen = (srcbits + 7) / 8;
   2821        1.1  jonathan 	dlen = (dstbits + 7) / 8;
   2822        1.1  jonathan 
   2823        1.1  jonathan 	n = shiftbits / 8;
   2824        1.1  jonathan 	for (i = 0; i < slen; i++)
   2825        1.1  jonathan 		dst[i] = src[i + n];
   2826        1.1  jonathan 	for (i = 0; i < dlen - slen; i++)
   2827        1.1  jonathan 		dst[slen + i] = 0;
   2828        1.1  jonathan 
   2829        1.1  jonathan 	n = shiftbits % 8;
   2830        1.1  jonathan 	if (n != 0) {
   2831        1.1  jonathan 		for (i = 0; i < (dlen - 1); i++)
   2832        1.1  jonathan 			dst[i] = (dst[i] >> n) | (dst[i + 1] << (8 - n));
   2833        1.1  jonathan 		dst[dlen - 1] = dst[dlen - 1] >> n;
   2834        1.1  jonathan 	}
   2835        1.1  jonathan }
   2836