Home | History | Annotate | Line # | Download | only in testutil
      1 /*
      2  * Copyright 2017-2025 The OpenSSL Project Authors. All Rights Reserved.
      3  *
      4  * Licensed under the Apache License 2.0 (the "License").  You may not use
      5  * this file except in compliance with the License.  You can obtain a copy
      6  * in the file LICENSE in the source distribution or at
      7  * https://www.openssl.org/source/license.html
      8  */
      9 
     10 #include "../testutil.h"
     11 #include "output.h"
     12 #include "tu_local.h"
     13 
     14 #include <errno.h>
     15 #include <string.h>
     16 #include <ctype.h>
     17 #include "internal/nelem.h"
     18 #include <openssl/asn1.h>
     19 
     20 /*
     21  * Output a failed test first line.
     22  * All items are optional are generally not preinted if passed as NULL.
     23  * The special cases are for prefix where "ERROR" is assumed and for left
     24  * and right where a non-failure message is produced if either is NULL.
     25  */
     26 void test_fail_message_prefix(const char *prefix, const char *file,
     27                               int line, const char *type,
     28                               const char *left, const char *right,
     29                               const char *op)
     30 {
     31     test_printf_stderr("%s: ", prefix != NULL ? prefix : "ERROR");
     32     if (type)
     33         test_printf_stderr("(%s) ", type);
     34     if (op != NULL) {
     35         if (left != NULL && right != NULL)
     36             test_printf_stderr("'%s %s %s' failed", left, op, right);
     37         else
     38             test_printf_stderr("'%s'", op);
     39     }
     40     if (file != NULL) {
     41         test_printf_stderr(" @ %s:%d", file, line);
     42     }
     43     test_printf_stderr("\n");
     44 }
     45 
     46 /*
     47  * A common routine to output test failure messages.  Generally this should not
     48  * be called directly, rather it should be called by the following functions.
     49  *
     50  * |desc| is a printf formatted description with arguments |args| that is
     51  * supplied by the user and |desc| can be NULL.  |type| is the data type
     52  * that was tested (int, char, ptr, ...).  |fmt| is a system provided
     53  * printf format with following arguments that spell out the failure
     54  * details i.e. the actual values compared and the operator used.
     55  *
     56  * The typical use for this is from an utility test function:
     57  *
     58  * int test6(const char *file, int line, int n) {
     59  *     if (n != 6) {
     60  *         test_fail_message(1, file, line, "int", "value %d is not %d", n, 6);
     61  *         return 0;
     62  *     }
     63  *     return 1;
     64  * }
     65  *
     66  * calling test6(3, "oops") will return 0 and produce out along the lines of:
     67  *      FAIL oops: (int) value 3 is not 6\n
     68  */
     69 static void test_fail_message(const char *prefix, const char *file, int line,
     70                               const char *type, const char *left,
     71                               const char *right, const char *op,
     72                               const char *fmt, ...)
     73             PRINTF_FORMAT(8, 9);
     74 
     75 PRINTF_FORMAT(8, 0)
     76 static void test_fail_message_va(const char *prefix, const char *file,
     77                                  int line, const char *type,
     78                                  const char *left, const char *right,
     79                                  const char *op, const char *fmt, va_list ap)
     80 {
     81     test_fail_message_prefix(prefix, file, line, type, left, right, op);
     82     if (fmt != NULL) {
     83         test_vprintf_stderr(fmt, ap);
     84         test_printf_stderr("\n");
     85     }
     86     test_flush_stderr();
     87 }
     88 
     89 static void test_fail_message(const char *prefix, const char *file,
     90                               int line, const char *type,
     91                               const char *left, const char *right,
     92                               const char *op, const char *fmt, ...)
     93 {
     94     va_list ap;
     95 
     96     va_start(ap, fmt);
     97     test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap);
     98     va_end(ap);
     99 }
    100 
    101 void test_info_c90(const char *desc, ...)
    102 {
    103     va_list ap;
    104 
    105     va_start(ap, desc);
    106     test_fail_message_va("INFO", NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
    107     va_end(ap);
    108 }
    109 
    110 void test_info(const char *file, int line, const char *desc, ...)
    111 {
    112     va_list ap;
    113 
    114     va_start(ap, desc);
    115     test_fail_message_va("INFO", file, line, NULL, NULL, NULL, NULL, desc, ap);
    116     va_end(ap);
    117 }
    118 
    119 void test_error_c90(const char *desc, ...)
    120 {
    121     va_list ap;
    122 
    123     va_start(ap, desc);
    124     test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
    125     va_end(ap);
    126     test_printf_stderr("\n");
    127 }
    128 
    129 void test_error(const char *file, int line, const char *desc, ...)
    130 {
    131     va_list ap;
    132 
    133     va_start(ap, desc);
    134     test_fail_message_va(NULL, file, line, NULL, NULL, NULL, NULL, desc, ap);
    135     va_end(ap);
    136     test_printf_stderr("\n");
    137 }
    138 
    139 void test_perror(const char *s)
    140 {
    141     /*
    142      * Using openssl_strerror_r causes linking issues since it isn't
    143      * exported from libcrypto.so
    144      */
    145     TEST_error("%s: %s", s, strerror(errno));
    146 }
    147 
    148 void test_note(const char *fmt, ...)
    149 {
    150     test_flush_stdout();
    151     if (fmt != NULL) {
    152         va_list ap;
    153 
    154         va_start(ap, fmt);
    155         test_vprintf_stderr(fmt, ap);
    156         va_end(ap);
    157         test_printf_stderr("\n");
    158     }
    159     test_flush_stderr();
    160 }
    161 
    162 
    163 int test_skip(const char *file, int line, const char *desc, ...)
    164 {
    165     va_list ap;
    166 
    167     va_start(ap, desc);
    168     test_fail_message_va("SKIP", file, line, NULL, NULL, NULL, NULL, desc, ap);
    169     va_end(ap);
    170     return TEST_SKIP_CODE;
    171 }
    172 
    173 int test_skip_c90(const char *desc, ...)
    174 {
    175     va_list ap;
    176 
    177     va_start(ap, desc);
    178     test_fail_message_va("SKIP", NULL, -1, NULL, NULL, NULL, NULL, desc, ap);
    179     va_end(ap);
    180     test_printf_stderr("\n");
    181     return TEST_SKIP_CODE;
    182 }
    183 
    184 
    185 void test_openssl_errors(void)
    186 {
    187     ERR_print_errors_cb(openssl_error_cb, NULL);
    188     ERR_clear_error();
    189 }
    190 
    191 /*
    192  * Define some comparisons between pairs of various types.
    193  * These functions return 1 if the test is true.
    194  * Otherwise, they return 0 and pretty-print diagnostics.
    195  *
    196  * In each case the functions produced are:
    197  *  int test_name_eq(const type t1, const type t2, const char *desc, ...);
    198  *  int test_name_ne(const type t1, const type t2, const char *desc, ...);
    199  *  int test_name_lt(const type t1, const type t2, const char *desc, ...);
    200  *  int test_name_le(const type t1, const type t2, const char *desc, ...);
    201  *  int test_name_gt(const type t1, const type t2, const char *desc, ...);
    202  *  int test_name_ge(const type t1, const type t2, const char *desc, ...);
    203  *
    204  * The t1 and t2 arguments are to be compared for equality, inequality,
    205  * less than, less than or equal to, greater than and greater than or
    206  * equal to respectively.  If the specified condition holds, the functions
    207  * return 1.  If the condition does not hold, the functions print a diagnostic
    208  * message and return 0.
    209  *
    210  * The desc argument is a printf format string followed by its arguments and
    211  * this is included in the output if the condition being tested for is false.
    212  */
    213 #define DEFINE_COMPARISON(type, name, opname, op, fmt)                  \
    214     int test_ ## name ## _ ## opname(const char *file, int line,        \
    215                                      const char *s1, const char *s2,    \
    216                                      const type t1, const type t2)      \
    217     {                                                                   \
    218         if (t1 op t2)                                                   \
    219             return 1;                                                   \
    220         test_fail_message(NULL, file, line, #type, s1, s2, #op,         \
    221                           "[" fmt "] compared to [" fmt "]",            \
    222                           t1, t2);                                      \
    223         return 0;                                                       \
    224     }
    225 
    226 #define DEFINE_COMPARISONS(type, name, fmt)                             \
    227     DEFINE_COMPARISON(type, name, eq, ==, fmt)                          \
    228     DEFINE_COMPARISON(type, name, ne, !=, fmt)                          \
    229     DEFINE_COMPARISON(type, name, lt, <, fmt)                           \
    230     DEFINE_COMPARISON(type, name, le, <=, fmt)                          \
    231     DEFINE_COMPARISON(type, name, gt, >, fmt)                           \
    232     DEFINE_COMPARISON(type, name, ge, >=, fmt)
    233 
    234 DEFINE_COMPARISONS(int, int, "%d")
    235 DEFINE_COMPARISONS(unsigned int, uint, "%u")
    236 DEFINE_COMPARISONS(char, char, "%c")
    237 DEFINE_COMPARISONS(unsigned char, uchar, "%u")
    238 DEFINE_COMPARISONS(long, long, "%ld")
    239 DEFINE_COMPARISONS(unsigned long, ulong, "%lu")
    240 DEFINE_COMPARISONS(size_t, size_t, "%zu")
    241 DEFINE_COMPARISONS(double, double, "%g")
    242 
    243 DEFINE_COMPARISON(void *, ptr, eq, ==, "%p")
    244 DEFINE_COMPARISON(void *, ptr, ne, !=, "%p")
    245 
    246 int test_ptr_null(const char *file, int line, const char *s, const void *p)
    247 {
    248     if (p == NULL)
    249         return 1;
    250     test_fail_message(NULL, file, line, "ptr", s, "NULL", "==", "%p", p);
    251     return 0;
    252 }
    253 
    254 int test_ptr(const char *file, int line, const char *s, const void *p)
    255 {
    256     if (p != NULL)
    257         return 1;
    258     test_fail_message(NULL, file, line, "ptr", s, "NULL", "!=", "%p", p);
    259     return 0;
    260 }
    261 
    262 int test_true(const char *file, int line, const char *s, int b)
    263 {
    264     if (b)
    265         return 1;
    266     test_fail_message(NULL, file, line, "bool", s, "true", "==", "false");
    267     return 0;
    268 }
    269 
    270 int test_false(const char *file, int line, const char *s, int b)
    271 {
    272     if (!b)
    273         return 1;
    274     test_fail_message(NULL, file, line, "bool", s, "false", "==", "true");
    275     return 0;
    276 }
    277 
    278 int test_str_eq(const char *file, int line, const char *st1, const char *st2,
    279                 const char *s1, const char *s2)
    280 {
    281     if (s1 == NULL && s2 == NULL)
    282       return 1;
    283     if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) {
    284         test_fail_string_message(NULL, file, line, "string", st1, st2, "==",
    285                                  s1, s1 == NULL ? 0 : strlen(s1),
    286                                  s2, s2 == NULL ? 0 : strlen(s2));
    287         return 0;
    288     }
    289     return 1;
    290 }
    291 
    292 int test_str_ne(const char *file, int line, const char *st1, const char *st2,
    293                 const char *s1, const char *s2)
    294 {
    295     if ((s1 == NULL) ^ (s2 == NULL))
    296       return 1;
    297     if (s1 == NULL || strcmp(s1, s2) == 0) {
    298         test_fail_string_message(NULL, file, line, "string", st1, st2, "!=",
    299                                  s1, s1 == NULL ? 0 : strlen(s1),
    300                                  s2, s2 == NULL ? 0 : strlen(s2));
    301         return 0;
    302     }
    303     return 1;
    304 }
    305 
    306 int test_strn_eq(const char *file, int line, const char *st1, const char *st2,
    307                  const char *s1, size_t n1, const char *s2, size_t n2)
    308 {
    309     if (s1 == NULL && s2 == NULL)
    310       return 1;
    311     if (n1 != n2 || s1 == NULL || s2 == NULL || strncmp(s1, s2, n1) != 0) {
    312         test_fail_string_message(NULL, file, line, "string", st1, st2, "==",
    313                                  s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1),
    314                                  s2, s2 == NULL ? 0 : OPENSSL_strnlen(s2, n2));
    315         return 0;
    316     }
    317     return 1;
    318 }
    319 
    320 int test_strn_ne(const char *file, int line, const char *st1, const char *st2,
    321                  const char *s1, size_t n1, const char *s2, size_t n2)
    322 {
    323     if ((s1 == NULL) ^ (s2 == NULL))
    324       return 1;
    325     if (n1 != n2 || s1 == NULL || strncmp(s1, s2, n1) == 0) {
    326         test_fail_string_message(NULL, file, line, "string", st1, st2, "!=",
    327                                  s1, s1 == NULL ? 0 : OPENSSL_strnlen(s1, n1),
    328                                  s2, s2 == NULL ? 0 : OPENSSL_strnlen(s2, n2));
    329         return 0;
    330     }
    331     return 1;
    332 }
    333 
    334 int test_mem_eq(const char *file, int line, const char *st1, const char *st2,
    335                 const void *s1, size_t n1, const void *s2, size_t n2)
    336 {
    337     if (s1 == NULL && s2 == NULL)
    338         return 1;
    339     if (n1 != n2 || s1 == NULL || s2 == NULL || memcmp(s1, s2, n1) != 0) {
    340         test_fail_memory_message(NULL, file, line, "memory", st1, st2, "==",
    341                                  s1, n1, s2, n2);
    342         return 0;
    343     }
    344     return 1;
    345 }
    346 
    347 int test_mem_ne(const char *file, int line, const char *st1, const char *st2,
    348                 const void *s1, size_t n1, const void *s2, size_t n2)
    349 {
    350     if ((s1 == NULL) ^ (s2 == NULL))
    351         return 1;
    352     if (n1 != n2)
    353         return 1;
    354     if (s1 == NULL || memcmp(s1, s2, n1) == 0) {
    355         test_fail_memory_message(NULL, file, line, "memory", st1, st2, "!=",
    356                                  s1, n1, s2, n2);
    357         return 0;
    358     }
    359     return 1;
    360 }
    361 
    362 #define DEFINE_BN_COMPARISONS(opname, op, zero_cond)                    \
    363     int test_BN_ ## opname(const char *file, int line,                  \
    364                            const char *s1, const char *s2,              \
    365                            const BIGNUM *t1, const BIGNUM *t2)          \
    366     {                                                                   \
    367         if (BN_cmp(t1, t2) op 0)                                        \
    368             return 1;                                                   \
    369         test_fail_bignum_message(NULL, file, line, "BIGNUM", s1, s2,    \
    370                                  #op, t1, t2);                          \
    371         return 0;                                                       \
    372     }                                                                   \
    373     int test_BN_ ## opname ## _zero(const char *file, int line,         \
    374                                     const char *s, const BIGNUM *a)     \
    375     {                                                                   \
    376         if (a != NULL &&(zero_cond))                                    \
    377             return 1;                                                   \
    378         test_fail_bignum_mono_message(NULL, file, line, "BIGNUM",       \
    379                                       s, "0", #op, a);                  \
    380         return 0;                                                       \
    381     }
    382 
    383 DEFINE_BN_COMPARISONS(eq, ==, BN_is_zero(a))
    384 DEFINE_BN_COMPARISONS(ne, !=, !BN_is_zero(a))
    385 DEFINE_BN_COMPARISONS(gt, >,  !BN_is_negative(a) && !BN_is_zero(a))
    386 DEFINE_BN_COMPARISONS(ge, >=, !BN_is_negative(a) || BN_is_zero(a))
    387 DEFINE_BN_COMPARISONS(lt, <,  BN_is_negative(a) && !BN_is_zero(a))
    388 DEFINE_BN_COMPARISONS(le, <=, BN_is_negative(a) || BN_is_zero(a))
    389 
    390 int test_BN_eq_one(const char *file, int line, const char *s, const BIGNUM *a)
    391 {
    392     if (a != NULL && BN_is_one(a))
    393         return 1;
    394     test_fail_bignum_mono_message(NULL, file, line, "BIGNUM", s, "1", "==", a);
    395     return 0;
    396 }
    397 
    398 int test_BN_odd(const char *file, int line, const char *s, const BIGNUM *a)
    399 {
    400     if (a != NULL && BN_is_odd(a))
    401         return 1;
    402     test_fail_bignum_mono_message(NULL, file, line, "BIGNUM", "ODD(", ")", s, a);
    403     return 0;
    404 }
    405 
    406 int test_BN_even(const char *file, int line, const char *s, const BIGNUM *a)
    407 {
    408     if (a != NULL && !BN_is_odd(a))
    409         return 1;
    410     test_fail_bignum_mono_message(NULL, file, line, "BIGNUM", "EVEN(", ")", s,
    411                                   a);
    412     return 0;
    413 }
    414 
    415 int test_BN_eq_word(const char *file, int line, const char *bns, const char *ws,
    416                     const BIGNUM *a, BN_ULONG w)
    417 {
    418     BIGNUM *bw;
    419 
    420     if (a != NULL && BN_is_word(a, w))
    421         return 1;
    422     if ((bw = BN_new()) != NULL)
    423         BN_set_word(bw, w);
    424     test_fail_bignum_message(NULL, file, line, "BIGNUM", bns, ws, "==", a, bw);
    425     BN_free(bw);
    426     return 0;
    427 }
    428 
    429 int test_BN_abs_eq_word(const char *file, int line, const char *bns,
    430                         const char *ws, const BIGNUM *a, BN_ULONG w)
    431 {
    432     BIGNUM *bw, *aa;
    433 
    434     if (a != NULL && BN_abs_is_word(a, w))
    435         return 1;
    436     if ((aa = BN_dup(a)) != NULL)
    437         BN_set_negative(aa, 0);
    438     if ((bw = BN_new()) != NULL)
    439         BN_set_word(bw, w);
    440     test_fail_bignum_message(NULL, file, line, "BIGNUM", bns, ws, "abs==",
    441                              aa, bw);
    442     BN_free(bw);
    443     BN_free(aa);
    444     return 0;
    445 }
    446 
    447 static const char *print_time(const ASN1_TIME *t)
    448 {
    449     return t == NULL ? "<null>" : (const char *)ASN1_STRING_get0_data(t);
    450 }
    451 
    452 #define DEFINE_TIME_T_COMPARISON(opname, op)                            \
    453     int test_time_t_ ## opname(const char *file, int line,              \
    454                                const char *s1, const char *s2,          \
    455                                const time_t t1, const time_t t2)        \
    456     {                                                                   \
    457         ASN1_TIME *at1 = ASN1_TIME_set(NULL, t1);                       \
    458         ASN1_TIME *at2 = ASN1_TIME_set(NULL, t2);                       \
    459         int r = at1 != NULL && at2 != NULL                              \
    460                 && ASN1_TIME_compare(at1, at2) op 0;                    \
    461         if (!r)                                                         \
    462             test_fail_message(NULL, file, line, "time_t", s1, s2, #op,  \
    463                               "[%s] compared to [%s]",                  \
    464                               print_time(at1), print_time(at2));        \
    465         ASN1_STRING_free(at1);                                          \
    466         ASN1_STRING_free(at2);                                          \
    467         return r;                                                       \
    468     }
    469 DEFINE_TIME_T_COMPARISON(eq, ==)
    470 DEFINE_TIME_T_COMPARISON(ne, !=)
    471 DEFINE_TIME_T_COMPARISON(gt, >)
    472 DEFINE_TIME_T_COMPARISON(ge, >=)
    473 DEFINE_TIME_T_COMPARISON(lt, <)
    474 DEFINE_TIME_T_COMPARISON(le, <=)
    475