mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
after merge fix
config/ac-macros/yassl.m4: added HAVE_YASSL variable sql/mysqld.cc: added HAVE_YASSL define
This commit is contained in:
@ -20,7 +20,7 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
|
|||||||
-L\$(top_builddir)/extra/yassl/taocrypt/src -ltaocrypt"
|
-L\$(top_builddir)/extra/yassl/taocrypt/src -ltaocrypt"
|
||||||
openssl_includes="-I\$(top_srcdir)/extra/yassl/include"
|
openssl_includes="-I\$(top_srcdir)/extra/yassl/include"
|
||||||
AC_DEFINE([HAVE_OPENSSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
|
AC_DEFINE([HAVE_OPENSSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
|
||||||
|
AC_DEFINE([HAVE_YASSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
|
||||||
# System specific checks
|
# System specific checks
|
||||||
yassl_integer_extra_cxxflags=""
|
yassl_integer_extra_cxxflags=""
|
||||||
case $host_cpu--$CXX_VERSION in
|
case $host_cpu--$CXX_VERSION in
|
||||||
|
@ -580,21 +580,21 @@ HANDLE smem_event_connect_request= 0;
|
|||||||
#include "sslopt-vars.h"
|
#include "sslopt-vars.h"
|
||||||
#ifdef HAVE_OPENSSL
|
#ifdef HAVE_OPENSSL
|
||||||
#include <openssl/crypto.h>
|
#include <openssl/crypto.h>
|
||||||
|
#ifndef HAVE_YASSL
|
||||||
typedef struct CRYPTO_dynlock_value
|
typedef struct CRYPTO_dynlock_value
|
||||||
{
|
{
|
||||||
rw_lock_t lock;
|
rw_lock_t lock;
|
||||||
} openssl_lock_t;
|
} openssl_lock_t;
|
||||||
|
|
||||||
char *des_key_file;
|
|
||||||
struct st_VioSSLAcceptorFd *ssl_acceptor_fd;
|
|
||||||
static openssl_lock_t *openssl_stdlocks;
|
static openssl_lock_t *openssl_stdlocks;
|
||||||
|
|
||||||
static openssl_lock_t *openssl_dynlock_create(const char *, int);
|
static openssl_lock_t *openssl_dynlock_create(const char *, int);
|
||||||
static void openssl_dynlock_destroy(openssl_lock_t *, const char *, int);
|
static void openssl_dynlock_destroy(openssl_lock_t *, const char *, int);
|
||||||
static void openssl_lock_function(int, int, const char *, int);
|
static void openssl_lock_function(int, int, const char *, int);
|
||||||
static void openssl_lock(int, openssl_lock_t *, const char *, int);
|
static void openssl_lock(int, openssl_lock_t *, const char *, int);
|
||||||
static unsigned long openssl_id_function();
|
static unsigned long openssl_id_function();
|
||||||
|
#endif
|
||||||
|
char *des_key_file;
|
||||||
|
struct st_VioSSLAcceptorFd *ssl_acceptor_fd;
|
||||||
#endif /* HAVE_OPENSSL */
|
#endif /* HAVE_OPENSSL */
|
||||||
|
|
||||||
|
|
||||||
@ -1184,10 +1184,12 @@ static void clean_up_mutexes()
|
|||||||
(void) pthread_mutex_destroy(&LOCK_user_conn);
|
(void) pthread_mutex_destroy(&LOCK_user_conn);
|
||||||
#ifdef HAVE_OPENSSL
|
#ifdef HAVE_OPENSSL
|
||||||
(void) pthread_mutex_destroy(&LOCK_des_key_file);
|
(void) pthread_mutex_destroy(&LOCK_des_key_file);
|
||||||
|
#ifndef HAVE_YASSL
|
||||||
for (int i= 0; i < CRYPTO_num_locks(); ++i)
|
for (int i= 0; i < CRYPTO_num_locks(); ++i)
|
||||||
(void) rwlock_destroy(&openssl_stdlocks[i].lock);
|
(void) rwlock_destroy(&openssl_stdlocks[i].lock);
|
||||||
OPENSSL_free(openssl_stdlocks);
|
OPENSSL_free(openssl_stdlocks);
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
#ifdef HAVE_REPLICATION
|
#ifdef HAVE_REPLICATION
|
||||||
(void) pthread_mutex_destroy(&LOCK_rpl_status);
|
(void) pthread_mutex_destroy(&LOCK_rpl_status);
|
||||||
(void) pthread_cond_destroy(&COND_rpl_status);
|
(void) pthread_cond_destroy(&COND_rpl_status);
|
||||||
@ -2743,6 +2745,17 @@ static int init_thread_environment()
|
|||||||
(void) pthread_mutex_init(&LOCK_uuid_generator, MY_MUTEX_INIT_FAST);
|
(void) pthread_mutex_init(&LOCK_uuid_generator, MY_MUTEX_INIT_FAST);
|
||||||
#ifdef HAVE_OPENSSL
|
#ifdef HAVE_OPENSSL
|
||||||
(void) pthread_mutex_init(&LOCK_des_key_file,MY_MUTEX_INIT_FAST);
|
(void) pthread_mutex_init(&LOCK_des_key_file,MY_MUTEX_INIT_FAST);
|
||||||
|
#ifndef HAVE_YASSL
|
||||||
|
openssl_stdlocks= (openssl_lock_t*) OPENSSL_malloc(CRYPTO_num_locks() *
|
||||||
|
sizeof(openssl_lock_t));
|
||||||
|
for (int i= 0; i < CRYPTO_num_locks(); ++i)
|
||||||
|
(void) my_rwlock_init(&openssl_stdlocks[i].lock, NULL);
|
||||||
|
CRYPTO_set_dynlock_create_callback(openssl_dynlock_create);
|
||||||
|
CRYPTO_set_dynlock_destroy_callback(openssl_dynlock_destroy);
|
||||||
|
CRYPTO_set_dynlock_lock_callback(openssl_lock);
|
||||||
|
CRYPTO_set_locking_callback(openssl_lock_function);
|
||||||
|
CRYPTO_set_id_callback(openssl_id_function);
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
(void) my_rwlock_init(&LOCK_sys_init_connect, NULL);
|
(void) my_rwlock_init(&LOCK_sys_init_connect, NULL);
|
||||||
(void) my_rwlock_init(&LOCK_sys_init_slave, NULL);
|
(void) my_rwlock_init(&LOCK_sys_init_slave, NULL);
|
||||||
@ -2771,22 +2784,11 @@ static int init_thread_environment()
|
|||||||
sql_print_error("Can't create thread-keys");
|
sql_print_error("Can't create thread-keys");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
#ifdef HAVE_OPENSSL
|
|
||||||
openssl_stdlocks= (openssl_lock_t*) OPENSSL_malloc(CRYPTO_num_locks() *
|
|
||||||
sizeof(openssl_lock_t));
|
|
||||||
for (int i= 0; i < CRYPTO_num_locks(); ++i)
|
|
||||||
(void) my_rwlock_init(&openssl_stdlocks[i].lock, NULL);
|
|
||||||
CRYPTO_set_dynlock_create_callback(openssl_dynlock_create);
|
|
||||||
CRYPTO_set_dynlock_destroy_callback(openssl_dynlock_destroy);
|
|
||||||
CRYPTO_set_dynlock_lock_callback(openssl_lock);
|
|
||||||
CRYPTO_set_locking_callback(openssl_lock_function);
|
|
||||||
CRYPTO_set_id_callback(openssl_id_function);
|
|
||||||
#endif
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef HAVE_OPENSSL
|
#if defined(HAVE_OPENSSL) && !defined(HAVE_YASSL)
|
||||||
static unsigned long openssl_id_function()
|
static unsigned long openssl_id_function()
|
||||||
{
|
{
|
||||||
return (unsigned long) pthread_self();
|
return (unsigned long) pthread_self();
|
||||||
|
@ -3194,36 +3194,36 @@ end_with_restore_list:
|
|||||||
if (result != 2)
|
if (result != 2)
|
||||||
break;
|
break;
|
||||||
case SQLCOM_UPDATE_MULTI:
|
case SQLCOM_UPDATE_MULTI:
|
||||||
|
{
|
||||||
|
DBUG_ASSERT(first_table == all_tables && first_table != 0);
|
||||||
|
/* if we switched from normal update, rights are checked */
|
||||||
|
if (result != 2)
|
||||||
{
|
{
|
||||||
DBUG_ASSERT(first_table == all_tables && first_table != 0);
|
if ((res= multi_update_precheck(thd, all_tables)))
|
||||||
/* if we switched from normal update, rights are checked */
|
break;
|
||||||
if (result != 2)
|
}
|
||||||
{
|
else
|
||||||
if ((res= multi_update_precheck(thd, all_tables)))
|
res= 0;
|
||||||
break;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
res= 0;
|
|
||||||
|
|
||||||
if ((res= mysql_multi_update_prepare(thd)))
|
if ((res= mysql_multi_update_prepare(thd)))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef HAVE_REPLICATION
|
#ifdef HAVE_REPLICATION
|
||||||
/* Check slave filtering rules */
|
/* Check slave filtering rules */
|
||||||
if (thd->slave_thread && all_tables_not_ok(thd, all_tables))
|
if (thd->slave_thread && all_tables_not_ok(thd, all_tables))
|
||||||
{
|
{
|
||||||
/* we warn the slave SQL thread */
|
/* we warn the slave SQL thread */
|
||||||
my_error(ER_SLAVE_IGNORED_TABLE, MYF(0));
|
my_error(ER_SLAVE_IGNORED_TABLE, MYF(0));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif /* HAVE_REPLICATION */
|
#endif /* HAVE_REPLICATION */
|
||||||
|
|
||||||
res= mysql_multi_update(thd, all_tables,
|
res= mysql_multi_update(thd, all_tables,
|
||||||
&select_lex->item_list,
|
&select_lex->item_list,
|
||||||
&lex->value_list,
|
&lex->value_list,
|
||||||
select_lex->where,
|
select_lex->where,
|
||||||
select_lex->options,
|
select_lex->options,
|
||||||
lex->duplicates, lex->ignore, unit, select_lex);
|
lex->duplicates, lex->ignore, unit, select_lex);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case SQLCOM_REPLACE:
|
case SQLCOM_REPLACE:
|
||||||
|
Reference in New Issue
Block a user