Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Portable interface to the CPU cycle counter |
| 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 8 | * not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
Gilles Peskine | db09ef6 | 2020-06-03 01:43:33 +0200 | [diff] [blame] | 20 | #include "common.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 21 | |
Manuel Pégourié-Gonnard | 8903fe0 | 2015-05-12 19:30:45 +0200 | [diff] [blame] | 22 | #if defined(MBEDTLS_TIMING_C) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 23 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 24 | #include "mbedtls/timing.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 25 | |
Manuel Pégourié-Gonnard | 8903fe0 | 2015-05-12 19:30:45 +0200 | [diff] [blame] | 26 | #if !defined(MBEDTLS_TIMING_ALT) |
| 27 | |
Manuel Pégourié-Gonnard | 325ce09 | 2016-02-22 10:33:34 +0100 | [diff] [blame] | 28 | #if !defined(unix) && !defined(__unix__) && !defined(__unix) && \ |
Augustin Cavalier | 60bc47d | 2018-04-11 20:27:32 -0400 | [diff] [blame] | 29 | !defined(__APPLE__) && !defined(_WIN32) && !defined(__QNXNTO__) && \ |
Ørjan Malde | 479d8de | 2020-05-20 09:32:39 +0000 | [diff] [blame] | 30 | !defined(__HAIKU__) && !defined(__midipix__) |
Manuel Pégourié-Gonnard | 325ce09 | 2016-02-22 10:33:34 +0100 | [diff] [blame] | 31 | #error "This module only works on Unix and Windows, see MBEDTLS_TIMING_C in config.h" |
| 32 | #endif |
| 33 | |
Paul Bakker | fa6a620 | 2013-10-28 18:48:30 +0100 | [diff] [blame] | 34 | #if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 35 | |
| 36 | #include <windows.h> |
irwir | e931d0e | 2018-06-23 18:55:14 +0300 | [diff] [blame] | 37 | #include <process.h> |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 38 | |
| 39 | struct _hr_time |
| 40 | { |
| 41 | LARGE_INTEGER start; |
| 42 | }; |
| 43 | |
| 44 | #else |
| 45 | |
| 46 | #include <unistd.h> |
| 47 | #include <sys/types.h> |
| 48 | #include <sys/time.h> |
| 49 | #include <signal.h> |
| 50 | #include <time.h> |
| 51 | |
| 52 | struct _hr_time |
| 53 | { |
| 54 | struct timeval start; |
| 55 | }; |
| 56 | |
Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 57 | #endif /* _WIN32 && !EFIX64 && !EFI32 */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 58 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 59 | volatile int mbedtls_timing_alarmed = 0; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 60 | |
Paul Bakker | fa6a620 | 2013-10-28 18:48:30 +0100 | [diff] [blame] | 61 | #if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 62 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 63 | unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 64 | { |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 65 | struct _hr_time *t = (struct _hr_time *) val; |
| 66 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 67 | if( reset ) |
Gilles Peskine | d92f0aa | 2017-10-16 19:33:06 +0200 | [diff] [blame] | 68 | { |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 69 | QueryPerformanceCounter( &t->start ); |
Gilles Peskine | d92f0aa | 2017-10-16 19:33:06 +0200 | [diff] [blame] | 70 | return( 0 ); |
| 71 | } |
| 72 | else |
| 73 | { |
| 74 | unsigned long delta; |
| 75 | LARGE_INTEGER now, hfreq; |
| 76 | QueryPerformanceCounter( &now ); |
| 77 | QueryPerformanceFrequency( &hfreq ); |
| 78 | delta = (unsigned long)( ( now.QuadPart - t->start.QuadPart ) * 1000ul |
| 79 | / hfreq.QuadPart ); |
| 80 | return( delta ); |
| 81 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Manuel Pégourié-Gonnard | 470fc93 | 2014-03-27 20:07:08 +0100 | [diff] [blame] | 84 | #else /* _WIN32 && !EFIX64 && !EFI32 */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 85 | |
TRodziewicz | 15a7b73 | 2021-06-16 11:22:53 +0200 | [diff] [blame^] | 86 | /** |
| 87 | * \brief Return the elapsed time in milliseconds |
| 88 | * |
| 89 | * \warning May change without notice |
| 90 | * |
| 91 | * \param val points to a timer structure |
| 92 | * \param reset If 0, query the elapsed time. Otherwise (re)start the timer. |
| 93 | * |
| 94 | * \return Elapsed time since the previous reset in ms. When |
| 95 | * restarting, this is always 0. |
| 96 | * |
| 97 | * \note To initialize a timer, call this function with reset=1. |
| 98 | * |
| 99 | * Determining the elapsed time and resetting the timer is not |
| 100 | * atomic on all platforms, so after the sequence |
| 101 | * `{ get_timer(1); ...; time1 = get_timer(1); ...; time2 = |
| 102 | * get_timer(0) }` the value time1+time2 is only approximately |
| 103 | * the delay since the first reset. |
| 104 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 105 | unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 106 | { |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 107 | struct _hr_time *t = (struct _hr_time *) val; |
| 108 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 109 | if( reset ) |
| 110 | { |
Gilles Peskine | d92f0aa | 2017-10-16 19:33:06 +0200 | [diff] [blame] | 111 | gettimeofday( &t->start, NULL ); |
Alfred Klomp | b308dd7 | 2014-07-14 22:32:21 +0200 | [diff] [blame] | 112 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 113 | } |
Gilles Peskine | d92f0aa | 2017-10-16 19:33:06 +0200 | [diff] [blame] | 114 | else |
| 115 | { |
| 116 | unsigned long delta; |
| 117 | struct timeval now; |
| 118 | gettimeofday( &now, NULL ); |
| 119 | delta = ( now.tv_sec - t->start.tv_sec ) * 1000ul |
| 120 | + ( now.tv_usec - t->start.tv_usec ) / 1000; |
| 121 | return( delta ); |
| 122 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Manuel Pégourié-Gonnard | 470fc93 | 2014-03-27 20:07:08 +0100 | [diff] [blame] | 125 | #endif /* _WIN32 && !EFIX64 && !EFI32 */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 126 | |
Manuel Pégourié-Gonnard | ca3bdc5 | 2015-05-12 20:17:06 +0200 | [diff] [blame] | 127 | /* |
| 128 | * Set delays to watch |
| 129 | */ |
| 130 | void mbedtls_timing_set_delay( void *data, uint32_t int_ms, uint32_t fin_ms ) |
| 131 | { |
| 132 | mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data; |
| 133 | |
| 134 | ctx->int_ms = int_ms; |
| 135 | ctx->fin_ms = fin_ms; |
| 136 | |
| 137 | if( fin_ms != 0 ) |
| 138 | (void) mbedtls_timing_get_timer( &ctx->timer, 1 ); |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Get number of delays expired |
| 143 | */ |
| 144 | int mbedtls_timing_get_delay( void *data ) |
| 145 | { |
| 146 | mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data; |
| 147 | unsigned long elapsed_ms; |
| 148 | |
| 149 | if( ctx->fin_ms == 0 ) |
| 150 | return( -1 ); |
| 151 | |
| 152 | elapsed_ms = mbedtls_timing_get_timer( &ctx->timer, 0 ); |
| 153 | |
| 154 | if( elapsed_ms >= ctx->fin_ms ) |
| 155 | return( 2 ); |
| 156 | |
| 157 | if( elapsed_ms >= ctx->int_ms ) |
| 158 | return( 1 ); |
| 159 | |
| 160 | return( 0 ); |
| 161 | } |
| 162 | |
Manuel Pégourié-Gonnard | 8903fe0 | 2015-05-12 19:30:45 +0200 | [diff] [blame] | 163 | #endif /* !MBEDTLS_TIMING_ALT */ |
Manuel Pégourié-Gonnard | 8903fe0 | 2015-05-12 19:30:45 +0200 | [diff] [blame] | 164 | #endif /* MBEDTLS_TIMING_C */ |