1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate *
4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate * with the License.
8*7c478bd9Sstevel@tonic-gate *
9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate *
14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate *
20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate * Copyright 2002-2003 Sun Microsystems, Inc. All rights reserved.
24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate */
26*7c478bd9Sstevel@tonic-gate
27*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI"
28*7c478bd9Sstevel@tonic-gate
29*7c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
30*7c478bd9Sstevel@tonic-gate #if defined(_KERNEL) && !defined(_BOOT)
31*7c478bd9Sstevel@tonic-gate #include <sys/systm.h>
32*7c478bd9Sstevel@tonic-gate #else
33*7c478bd9Sstevel@tonic-gate #include <strings.h>
34*7c478bd9Sstevel@tonic-gate #endif
35*7c478bd9Sstevel@tonic-gate #include "cbc.h"
36*7c478bd9Sstevel@tonic-gate
37*7c478bd9Sstevel@tonic-gate #define CBC_MAX_BLOCK_SIZE 64
38*7c478bd9Sstevel@tonic-gate
39*7c478bd9Sstevel@tonic-gate static void
cbc_xorblock(uint8_t * lastp,uint8_t * thisp,int blocksize)40*7c478bd9Sstevel@tonic-gate cbc_xorblock(uint8_t *lastp, uint8_t *thisp, int blocksize)
41*7c478bd9Sstevel@tonic-gate {
42*7c478bd9Sstevel@tonic-gate uint32_t *this32p;
43*7c478bd9Sstevel@tonic-gate uint32_t *last32p;
44*7c478bd9Sstevel@tonic-gate int i;
45*7c478bd9Sstevel@tonic-gate
46*7c478bd9Sstevel@tonic-gate if (IS_P2ALIGNED(thisp, sizeof (uint32_t)) &&
47*7c478bd9Sstevel@tonic-gate IS_P2ALIGNED(lastp, sizeof (uint32_t)) &&
48*7c478bd9Sstevel@tonic-gate IS_P2ALIGNED(blocksize, sizeof (uint32_t))) {
49*7c478bd9Sstevel@tonic-gate /* LINTED */
50*7c478bd9Sstevel@tonic-gate this32p = (uint32_t *)thisp;
51*7c478bd9Sstevel@tonic-gate /* LINTED */
52*7c478bd9Sstevel@tonic-gate last32p = (uint32_t *)lastp;
53*7c478bd9Sstevel@tonic-gate for (i = 0; i < blocksize; i += 4) {
54*7c478bd9Sstevel@tonic-gate *this32p ^= *last32p;
55*7c478bd9Sstevel@tonic-gate this32p++;
56*7c478bd9Sstevel@tonic-gate last32p++;
57*7c478bd9Sstevel@tonic-gate }
58*7c478bd9Sstevel@tonic-gate } else {
59*7c478bd9Sstevel@tonic-gate for (i = 0; i < blocksize; i++) {
60*7c478bd9Sstevel@tonic-gate thisp[i] ^= lastp[i];
61*7c478bd9Sstevel@tonic-gate }
62*7c478bd9Sstevel@tonic-gate }
63*7c478bd9Sstevel@tonic-gate }
64*7c478bd9Sstevel@tonic-gate
65*7c478bd9Sstevel@tonic-gate boolean_t
cbc_encrypt(cbc_handle_t * ch,uint8_t * data,size_t datalen,uint8_t * IV)66*7c478bd9Sstevel@tonic-gate cbc_encrypt(cbc_handle_t *ch, uint8_t *data, size_t datalen,
67*7c478bd9Sstevel@tonic-gate uint8_t *IV)
68*7c478bd9Sstevel@tonic-gate {
69*7c478bd9Sstevel@tonic-gate uint8_t *lastp;
70*7c478bd9Sstevel@tonic-gate uint8_t *thisp;
71*7c478bd9Sstevel@tonic-gate size_t i;
72*7c478bd9Sstevel@tonic-gate
73*7c478bd9Sstevel@tonic-gate if (!IS_P2ALIGNED(datalen, ch->blocklen)) {
74*7c478bd9Sstevel@tonic-gate return (B_FALSE);
75*7c478bd9Sstevel@tonic-gate }
76*7c478bd9Sstevel@tonic-gate
77*7c478bd9Sstevel@tonic-gate thisp = data;
78*7c478bd9Sstevel@tonic-gate lastp = IV;
79*7c478bd9Sstevel@tonic-gate
80*7c478bd9Sstevel@tonic-gate for (i = 0; i < datalen; i += ch->blocklen) {
81*7c478bd9Sstevel@tonic-gate cbc_xorblock(lastp, thisp, ch->blocklen);
82*7c478bd9Sstevel@tonic-gate /* Encrypt the current block. */
83*7c478bd9Sstevel@tonic-gate ch->encrypt(ch->ks, thisp);
84*7c478bd9Sstevel@tonic-gate lastp = thisp;
85*7c478bd9Sstevel@tonic-gate thisp += ch->blocklen;
86*7c478bd9Sstevel@tonic-gate }
87*7c478bd9Sstevel@tonic-gate
88*7c478bd9Sstevel@tonic-gate bcopy(lastp, IV, ch->blocklen);
89*7c478bd9Sstevel@tonic-gate return (B_TRUE);
90*7c478bd9Sstevel@tonic-gate }
91*7c478bd9Sstevel@tonic-gate
92*7c478bd9Sstevel@tonic-gate boolean_t
cbc_decrypt(cbc_handle_t * ch,uint8_t * data,size_t datalen,uint8_t * IV)93*7c478bd9Sstevel@tonic-gate cbc_decrypt(cbc_handle_t *ch, uint8_t *data, size_t datalen,
94*7c478bd9Sstevel@tonic-gate uint8_t *IV)
95*7c478bd9Sstevel@tonic-gate {
96*7c478bd9Sstevel@tonic-gate uint8_t cbcblock[CBC_MAX_BLOCK_SIZE];
97*7c478bd9Sstevel@tonic-gate uint8_t *lastp;
98*7c478bd9Sstevel@tonic-gate uint8_t *thisp;
99*7c478bd9Sstevel@tonic-gate size_t i;
100*7c478bd9Sstevel@tonic-gate
101*7c478bd9Sstevel@tonic-gate if (!IS_P2ALIGNED(datalen, ch->blocklen)) {
102*7c478bd9Sstevel@tonic-gate return (B_FALSE);
103*7c478bd9Sstevel@tonic-gate }
104*7c478bd9Sstevel@tonic-gate
105*7c478bd9Sstevel@tonic-gate thisp = data;
106*7c478bd9Sstevel@tonic-gate lastp = IV;
107*7c478bd9Sstevel@tonic-gate
108*7c478bd9Sstevel@tonic-gate for (i = 0; i < datalen; i += ch->blocklen) {
109*7c478bd9Sstevel@tonic-gate
110*7c478bd9Sstevel@tonic-gate /* Copy the current ciphertext block. */
111*7c478bd9Sstevel@tonic-gate bcopy(thisp, cbcblock, ch->blocklen);
112*7c478bd9Sstevel@tonic-gate
113*7c478bd9Sstevel@tonic-gate /* Decrypt the current block. */
114*7c478bd9Sstevel@tonic-gate ch->decrypt(ch->ks, thisp);
115*7c478bd9Sstevel@tonic-gate
116*7c478bd9Sstevel@tonic-gate cbc_xorblock(lastp, thisp, ch->blocklen);
117*7c478bd9Sstevel@tonic-gate
118*7c478bd9Sstevel@tonic-gate /* Save the last ciphertext block. */
119*7c478bd9Sstevel@tonic-gate bcopy(cbcblock, lastp, ch->blocklen);
120*7c478bd9Sstevel@tonic-gate thisp += ch->blocklen;
121*7c478bd9Sstevel@tonic-gate }
122*7c478bd9Sstevel@tonic-gate
123*7c478bd9Sstevel@tonic-gate return (B_TRUE);
124*7c478bd9Sstevel@tonic-gate }
125*7c478bd9Sstevel@tonic-gate
126*7c478bd9Sstevel@tonic-gate void
cbc_makehandle(cbc_handle_t * ch,void * cookie,uint32_t keysize,uint32_t blocksize,uint32_t ivsize,void (* encrypt)(void *,uint8_t *),void (* decrypt)(void *,uint8_t *))127*7c478bd9Sstevel@tonic-gate cbc_makehandle(cbc_handle_t *ch, void *cookie, uint32_t keysize,
128*7c478bd9Sstevel@tonic-gate uint32_t blocksize, uint32_t ivsize,
129*7c478bd9Sstevel@tonic-gate void (*encrypt)(void *, uint8_t *),
130*7c478bd9Sstevel@tonic-gate void (*decrypt)(void *, uint8_t *))
131*7c478bd9Sstevel@tonic-gate {
132*7c478bd9Sstevel@tonic-gate ch->ks = cookie;
133*7c478bd9Sstevel@tonic-gate ch->keylen = keysize;
134*7c478bd9Sstevel@tonic-gate ch->blocklen = blocksize;
135*7c478bd9Sstevel@tonic-gate ch->ivlen = ivsize;
136*7c478bd9Sstevel@tonic-gate ch->encrypt = encrypt;
137*7c478bd9Sstevel@tonic-gate ch->decrypt = decrypt;
138*7c478bd9Sstevel@tonic-gate }
139