blob: 35c5b956acf94ec6be8db7f3de13cd6af91d1760 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * VIA PadLock support functions
3 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00004 * Based on XySSL: Copyright (C) 2006-2008 Christophe Devine
5 *
6 * Copyright (C) 2009 Paul Bakker
Paul Bakker5121ce52009-01-03 21:22:43 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22/*
23 * This implementation is based on the VIA PadLock Programming Guide:
24 *
25 * http://www.via.com.tw/en/downloads/whitepapers/initiatives/padlock/
26 * programming_guide.pdf
27 */
28
Paul Bakker40e46942009-01-03 21:51:57 +000029#include "polarssl/config.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000030
Paul Bakker40e46942009-01-03 21:51:57 +000031#if defined(POLARSSL_PADLOCK_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000032
Paul Bakker40e46942009-01-03 21:51:57 +000033#include "polarssl/aes.h"
34#include "polarssl/padlock.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000035
Paul Bakker40e46942009-01-03 21:51:57 +000036#if defined(POLARSSL_HAVE_X86)
Paul Bakker5121ce52009-01-03 21:22:43 +000037
38#include <string.h>
39
40/*
41 * PadLock detection routine
42 */
43int padlock_supports( int feature )
44{
45 static int flags = -1;
46 int ebx, edx;
47
48 if( flags == -1 )
49 {
50 asm( "movl %%ebx, %0 \n" \
51 "movl $0xC0000000, %%eax \n" \
52 "cpuid \n" \
53 "cmpl $0xC0000001, %%eax \n" \
54 "movl $0, %%edx \n" \
55 "jb unsupported \n" \
56 "movl $0xC0000001, %%eax \n" \
57 "cpuid \n" \
58 "unsupported: \n" \
59 "movl %%edx, %1 \n" \
60 "movl %2, %%ebx \n"
61 : "=m" (ebx), "=m" (edx)
62 : "m" (ebx)
63 : "eax", "ecx", "edx" );
64
65 flags = edx;
66 }
67
68 return( flags & feature );
69}
70
71/*
72 * PadLock AES-ECB block en(de)cryption
73 */
74int padlock_xcryptecb( aes_context *ctx,
75 int mode,
76 unsigned char input[16],
77 unsigned char output[16] )
78{
79 int ebx;
80 unsigned long *rk;
81 unsigned long *blk;
82 unsigned long *ctrl;
83 unsigned char buf[256];
84
85 rk = ctx->rk;
86 blk = PADLOCK_ALIGN16( buf );
87 memcpy( blk, input, 16 );
88
89 ctrl = blk + 4;
90 *ctrl = 0x80 | ctx->nr | ( ( ctx->nr + ( mode^1 ) - 10 ) << 9 );
91
92 asm( "pushfl; popfl \n" \
93 "movl %%ebx, %0 \n" \
94 "movl $1, %%ecx \n" \
95 "movl %2, %%edx \n" \
96 "movl %3, %%ebx \n" \
97 "movl %4, %%esi \n" \
98 "movl %4, %%edi \n" \
99 ".byte 0xf3,0x0f,0xa7,0xc8\n" \
100 "movl %1, %%ebx \n"
101 : "=m" (ebx)
102 : "m" (ebx), "m" (ctrl), "m" (rk), "m" (blk)
103 : "ecx", "edx", "esi", "edi" );
104
105 memcpy( output, blk, 16 );
106
107 return( 0 );
108}
109
110/*
111 * PadLock AES-CBC buffer en(de)cryption
112 */
113int padlock_xcryptcbc( aes_context *ctx,
114 int mode,
115 int length,
116 unsigned char iv[16],
117 unsigned char *input,
118 unsigned char *output )
119{
120 int ebx, count;
121 unsigned long *rk;
122 unsigned long *iw;
123 unsigned long *ctrl;
124 unsigned char buf[256];
125
126 if( ( (long) input & 15 ) != 0 ||
127 ( (long) output & 15 ) != 0 )
128 return( 1 );
129
130 rk = ctx->rk;
131 iw = PADLOCK_ALIGN16( buf );
132 memcpy( iw, iv, 16 );
133
134 ctrl = iw + 4;
135 *ctrl = 0x80 | ctx->nr | ( ( ctx->nr + (mode^1) - 10 ) << 9 );
136
137 count = (length + 15) >> 4;
138
139 asm( "pushfl; popfl \n" \
140 "movl %%ebx, %0 \n" \
141 "movl %2, %%ecx \n" \
142 "movl %3, %%edx \n" \
143 "movl %4, %%ebx \n" \
144 "movl %5, %%esi \n" \
145 "movl %6, %%edi \n" \
146 "movl %7, %%eax \n" \
147 ".byte 0xf3,0x0f,0xa7,0xd0\n" \
148 "movl %1, %%ebx \n"
149 : "=m" (ebx)
150 : "m" (ebx), "m" (count), "m" (ctrl),
151 "m" (rk), "m" (input), "m" (output), "m" (iw)
152 : "eax", "ecx", "edx", "esi", "edi" );
153
154 memcpy( iv, iw, 16 );
155
156 return( 0 );
157}
158
159#endif
160
161#endif