2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* VIA PadLock support functions
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
Update license headers to Apache-2.0 OR GPL-2.0-or-later
This will allow us to ship the LTS branches in a single archive
This commit was generated using the following script:
# ========================
#!/bin/sh
header1='\ * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later\
*\
* This file is provided under the Apache License 2.0, or the\
* GNU General Public License v2.0 or later.\
*\
* **********\
* Apache License 2.0:\
*\
* Licensed under the Apache License, Version 2.0 (the "License"); you may\
* not use this file except in compliance with the License.\
* You may obtain a copy of the License at\
*\
* http://www.apache.org/licenses/LICENSE-2.0\
*\
* Unless required by applicable law or agreed to in writing, software\
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT\
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\
* See the License for the specific language governing permissions and\
* limitations under the License.\
*\
* **********\
*\
* **********\
* GNU General Public License v2.0 or later:\
*\
* This program is free software; you can redistribute it and/or modify\
* it under the terms of the GNU General Public License as published by\
* the Free Software Foundation; either version 2 of the License, or\
* (at your option) any later version.\
*\
* This program is distributed in the hope that it will be useful,\
* but WITHOUT ANY WARRANTY; without even the implied warranty of\
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\
* GNU General Public License for more details.\
*\
* You should have received a copy of the GNU General Public License along\
* with this program; if not, write to the Free Software Foundation, Inc.,\
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\
*\
* **********'
find -path './.git' -prune -o '(' -name '*.c' -o -name '*.cpp' -o -name '*.fmt' -o -name '*.h' ')' -print | xargs sed -i "
# Normalize the first line of the copyright headers (no text on the first line of a block comment)
/^\/\*.*Copyright.*Arm/I s/\/\*/&\n */
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header1
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# Format copyright header for inclusion into scripts
header2=$(echo "$header1" | sed 's/^\\\? \* \?/#/')
find -path './.git' -prune -o '(' -name '*.gdb' -o -name '*.pl' -o -name '*.py' -o -name '*.sh' ')' -print | xargs sed -i "
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header2
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# ========================
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-05 13:02:18 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
*
|
|
|
|
* This file is provided under the Apache License 2.0, or the
|
|
|
|
* GNU General Public License v2.0 or later.
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
* Apache License 2.0:
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2009-01-03 22:22:43 +01:00
|
|
|
*
|
Update license headers to Apache-2.0 OR GPL-2.0-or-later
This will allow us to ship the LTS branches in a single archive
This commit was generated using the following script:
# ========================
#!/bin/sh
header1='\ * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later\
*\
* This file is provided under the Apache License 2.0, or the\
* GNU General Public License v2.0 or later.\
*\
* **********\
* Apache License 2.0:\
*\
* Licensed under the Apache License, Version 2.0 (the "License"); you may\
* not use this file except in compliance with the License.\
* You may obtain a copy of the License at\
*\
* http://www.apache.org/licenses/LICENSE-2.0\
*\
* Unless required by applicable law or agreed to in writing, software\
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT\
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\
* See the License for the specific language governing permissions and\
* limitations under the License.\
*\
* **********\
*\
* **********\
* GNU General Public License v2.0 or later:\
*\
* This program is free software; you can redistribute it and/or modify\
* it under the terms of the GNU General Public License as published by\
* the Free Software Foundation; either version 2 of the License, or\
* (at your option) any later version.\
*\
* This program is distributed in the hope that it will be useful,\
* but WITHOUT ANY WARRANTY; without even the implied warranty of\
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\
* GNU General Public License for more details.\
*\
* You should have received a copy of the GNU General Public License along\
* with this program; if not, write to the Free Software Foundation, Inc.,\
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\
*\
* **********'
find -path './.git' -prune -o '(' -name '*.c' -o -name '*.cpp' -o -name '*.fmt' -o -name '*.h' ')' -print | xargs sed -i "
# Normalize the first line of the copyright headers (no text on the first line of a block comment)
/^\/\*.*Copyright.*Arm/I s/\/\*/&\n */
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header1
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# Format copyright header for inclusion into scripts
header2=$(echo "$header1" | sed 's/^\\\? \* \?/#/')
find -path './.git' -prune -o '(' -name '*.gdb' -o -name '*.pl' -o -name '*.py' -o -name '*.sh' ')' -print | xargs sed -i "
# Insert new copyright header
/SPDX-License-Identifier/ i\
$header2
# Delete old copyright header
/SPDX-License-Identifier/,$ {
# Delete lines until the one preceding the mbedtls declaration
N
1,/This file is part of/ {
/This file is part of/! D
}
}
"
# ========================
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-06-05 13:02:18 +02:00
|
|
|
* **********
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
* GNU General Public License v2.0 or later:
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* **********
|
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* This implementation is based on the VIA PadLock Programming Guide:
|
|
|
|
*
|
|
|
|
* http://www.via.com.tw/en/downloads/whitepapers/initiatives/padlock/
|
|
|
|
* programming_guide.pdf
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PADLOCK_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/padlock.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-02-10 14:50:47 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-05-29 09:47:57 +02:00
|
|
|
#ifndef asm
|
|
|
|
#define asm __asm
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HAVE_X86)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* PadLock detection routine
|
|
|
|
*/
|
2015-06-02 11:38:50 +02:00
|
|
|
int mbedtls_padlock_has_support( int feature )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
static int flags = -1;
|
2013-12-30 20:43:40 +01:00
|
|
|
int ebx = 0, edx = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( flags == -1 )
|
|
|
|
{
|
2014-06-23 12:40:01 +02:00
|
|
|
asm( "movl %%ebx, %0 \n\t"
|
|
|
|
"movl $0xC0000000, %%eax \n\t"
|
|
|
|
"cpuid \n\t"
|
|
|
|
"cmpl $0xC0000001, %%eax \n\t"
|
|
|
|
"movl $0, %%edx \n\t"
|
|
|
|
"jb unsupported \n\t"
|
|
|
|
"movl $0xC0000001, %%eax \n\t"
|
|
|
|
"cpuid \n\t"
|
|
|
|
"unsupported: \n\t"
|
|
|
|
"movl %%edx, %1 \n\t"
|
|
|
|
"movl %2, %%ebx \n\t"
|
2009-01-03 22:22:43 +01:00
|
|
|
: "=m" (ebx), "=m" (edx)
|
|
|
|
: "m" (ebx)
|
|
|
|
: "eax", "ecx", "edx" );
|
|
|
|
|
|
|
|
flags = edx;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( flags & feature );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PadLock AES-ECB block en(de)cryption
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_padlock_xcryptecb( mbedtls_aes_context *ctx,
|
2009-01-03 22:22:43 +01:00
|
|
|
int mode,
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char input[16],
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char output[16] )
|
|
|
|
{
|
2013-12-30 20:43:40 +01:00
|
|
|
int ebx = 0;
|
2012-10-01 16:41:15 +02:00
|
|
|
uint32_t *rk;
|
|
|
|
uint32_t *blk;
|
|
|
|
uint32_t *ctrl;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buf[256];
|
|
|
|
|
|
|
|
rk = ctx->rk;
|
2015-04-08 12:49:31 +02:00
|
|
|
blk = MBEDTLS_PADLOCK_ALIGN16( buf );
|
2009-01-03 22:22:43 +01:00
|
|
|
memcpy( blk, input, 16 );
|
|
|
|
|
|
|
|
ctrl = blk + 4;
|
|
|
|
*ctrl = 0x80 | ctx->nr | ( ( ctx->nr + ( mode^1 ) - 10 ) << 9 );
|
|
|
|
|
2014-06-23 12:40:01 +02:00
|
|
|
asm( "pushfl \n\t"
|
|
|
|
"popfl \n\t"
|
|
|
|
"movl %%ebx, %0 \n\t"
|
|
|
|
"movl $1, %%ecx \n\t"
|
|
|
|
"movl %2, %%edx \n\t"
|
|
|
|
"movl %3, %%ebx \n\t"
|
|
|
|
"movl %4, %%esi \n\t"
|
|
|
|
"movl %4, %%edi \n\t"
|
|
|
|
".byte 0xf3,0x0f,0xa7,0xc8 \n\t"
|
|
|
|
"movl %1, %%ebx \n\t"
|
2009-01-03 22:22:43 +01:00
|
|
|
: "=m" (ebx)
|
|
|
|
: "m" (ebx), "m" (ctrl), "m" (rk), "m" (blk)
|
2015-04-02 11:46:55 +02:00
|
|
|
: "memory", "ecx", "edx", "esi", "edi" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
memcpy( output, blk, 16 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PadLock AES-CBC buffer en(de)cryption
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_padlock_xcryptcbc( mbedtls_aes_context *ctx,
|
2009-01-03 22:22:43 +01:00
|
|
|
int mode,
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t length,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char iv[16],
|
2010-03-16 22:09:09 +01:00
|
|
|
const unsigned char *input,
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *output )
|
|
|
|
{
|
2013-12-30 20:43:40 +01:00
|
|
|
int ebx = 0;
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t count;
|
2012-10-01 16:41:15 +02:00
|
|
|
uint32_t *rk;
|
|
|
|
uint32_t *iw;
|
|
|
|
uint32_t *ctrl;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char buf[256];
|
|
|
|
|
|
|
|
if( ( (long) input & 15 ) != 0 ||
|
|
|
|
( (long) output & 15 ) != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_PADLOCK_DATA_MISALIGNED );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
rk = ctx->rk;
|
2015-04-08 12:49:31 +02:00
|
|
|
iw = MBEDTLS_PADLOCK_ALIGN16( buf );
|
2009-01-03 22:22:43 +01:00
|
|
|
memcpy( iw, iv, 16 );
|
|
|
|
|
|
|
|
ctrl = iw + 4;
|
2014-06-17 16:39:18 +02:00
|
|
|
*ctrl = 0x80 | ctx->nr | ( ( ctx->nr + ( mode ^ 1 ) - 10 ) << 9 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
count = ( length + 15 ) >> 4;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2014-06-23 12:40:01 +02:00
|
|
|
asm( "pushfl \n\t"
|
|
|
|
"popfl \n\t"
|
|
|
|
"movl %%ebx, %0 \n\t"
|
|
|
|
"movl %2, %%ecx \n\t"
|
|
|
|
"movl %3, %%edx \n\t"
|
|
|
|
"movl %4, %%ebx \n\t"
|
|
|
|
"movl %5, %%esi \n\t"
|
|
|
|
"movl %6, %%edi \n\t"
|
|
|
|
"movl %7, %%eax \n\t"
|
|
|
|
".byte 0xf3,0x0f,0xa7,0xd0 \n\t"
|
|
|
|
"movl %1, %%ebx \n\t"
|
2009-01-03 22:22:43 +01:00
|
|
|
: "=m" (ebx)
|
|
|
|
: "m" (ebx), "m" (count), "m" (ctrl),
|
|
|
|
"m" (rk), "m" (input), "m" (output), "m" (iw)
|
2015-04-02 11:46:55 +02:00
|
|
|
: "memory", "eax", "ecx", "edx", "esi", "edi" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
memcpy( iv, iw, 16 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_HAVE_X86 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PADLOCK_C */
|