Edit

IABSD.fr/src/lib/libcrypto/crypto_memory.c

Branch :

  • Show log

    Commit

  • Author : tb
    Date : 2025-03-09 15:29:56
    Hash : 7362433c
    Message : Align CRYPTO_set_mem*_functions with OpenSSL 1.1 CRYPTO_set_mem_ex_functions() was renamed to CRYPTO_set_mem_functions(), replacing the latter while also correcting the arguments for the free pointer. The backstory is that a commit that was never compiled was fixed the wrong way an hour later (both committed without review, obviously), and here we are, still cleaning up the mess 23 years later. We carry patches in cjose and stunnel for this; dovecot and links+ have autoconf checks and will adapt. Oh, and then there's the mariadb configure time insanity passing wrong function pointers... ok jsing

  • lib/libcrypto/crypto_memory.c
  • /* $OpenBSD: crypto_memory.c,v 1.4 2025/03/09 15:29:56 tb Exp $ */
    /*
     * Copyright (c) 2014 Bob Beck
     *
     * Permission to use, copy, modify, and distribute this software for any
     * purpose with or without fee is hereby granted, provided that the above
     * copyright notice and this permission notice appear in all copies.
     *
     * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     */
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    #include <openssl/crypto.h>
    
    void
    OPENSSL_cleanse(void *ptr, size_t len)
    {
    	explicit_bzero(ptr, len);
    }
    LCRYPTO_ALIAS(OPENSSL_cleanse);
    
    int
    CRYPTO_set_mem_functions(void *(*m)(size_t, const char *, int),
        void *(*r)(void *, size_t, const char *, int),
        void (*f)(void *, const char *, int))
    {
    	return 0;
    }
    LCRYPTO_ALIAS(CRYPTO_set_mem_functions);
    
    void *
    CRYPTO_malloc(size_t num, const char *file, int line)
    {
    	return malloc(num);
    }
    LCRYPTO_ALIAS(CRYPTO_malloc);
    
    char *
    CRYPTO_strdup(const char *str, const char *file, int line)
    {
    	return strdup(str);
    }
    LCRYPTO_ALIAS(CRYPTO_strdup);
    
    void
    CRYPTO_free(void *ptr, const char *file, int line)
    {
    	free(ptr);
    }
    LCRYPTO_ALIAS(CRYPTO_free);