2001-04-11 13:04:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000
|
|
|
|
* SWsoft company
|
|
|
|
*
|
|
|
|
* This material is provided "as is", with absolutely no warranty expressed
|
|
|
|
* or implied. Any use is at your own risk.
|
|
|
|
*
|
|
|
|
* Permission to use or copy this software for any purpose is hereby granted
|
|
|
|
* without fee, provided the above notices are retained on all copies.
|
|
|
|
* Permission to modify the code and to distribute modified code is granted,
|
|
|
|
* provided the above notices are retained, and a notice that the code was
|
|
|
|
* modified is included with the above copyright notice.
|
|
|
|
*
|
2002-07-23 17:31:22 +02:00
|
|
|
|
|
|
|
This code was modified by the MySQL team
|
|
|
|
*/
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-09-30 04:47:34 +02:00
|
|
|
/*
|
|
|
|
The following is needed to not cause conflicts when we include mysqld.cc
|
|
|
|
*/
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
#define main main1
|
|
|
|
#define mysql_unix_port mysql_inix_port1
|
|
|
|
#define mysql_port mysql_port1
|
|
|
|
|
2002-10-23 13:55:35 +02:00
|
|
|
static int fake_argc= 1;
|
|
|
|
static char *fake_argv[]= {(char *)"", 0};
|
|
|
|
static const char *fake_groups[] = { "server", "embedded", 0 };
|
|
|
|
static char inited, org_my_init_done;
|
|
|
|
|
2002-01-09 08:38:48 +01:00
|
|
|
#if defined (__WIN__)
|
|
|
|
#include "../sql/mysqld.cpp"
|
|
|
|
#else
|
2001-06-05 00:34:04 +02:00
|
|
|
#include "../sql/mysqld.cc"
|
2002-01-09 08:38:48 +01:00
|
|
|
#endif
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
#define SCRAMBLE_LENGTH 8
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_START
|
2002-07-23 17:31:22 +02:00
|
|
|
#include "lib_vio.c"
|
2002-10-13 11:23:55 +02:00
|
|
|
#include "errmsg.h"
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
static int check_connections1(THD * thd);
|
|
|
|
static int check_connections2(THD * thd);
|
|
|
|
static bool check_user(THD *thd, enum_server_command command,
|
|
|
|
const char *user, const char *passwd, const char *db,
|
|
|
|
bool check_count);
|
2001-09-30 04:47:34 +02:00
|
|
|
char * get_mysql_home(){ return mysql_home;};
|
|
|
|
char * get_mysql_real_data_home(){ return mysql_real_data_home;};
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
my_bool simple_command(MYSQL *mysql,enum enum_server_command command, const char *arg,
|
|
|
|
ulong length, my_bool skipp_check)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-10-13 11:23:55 +02:00
|
|
|
NET *net= &mysql->net;
|
|
|
|
my_bool result= 1;
|
2001-06-15 21:55:15 +02:00
|
|
|
THD *thd=(THD *) net->vio->dest_thd;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
|
|
|
/* Check that we are calling the client functions in right order */
|
|
|
|
if (mysql->status != MYSQL_STATUS_READY)
|
|
|
|
{
|
|
|
|
strmov(net->last_error,ER(mysql->net.last_errno=CR_COMMANDS_OUT_OF_SYNC));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear result variables */
|
|
|
|
mysql->net.last_error[0]=0;
|
|
|
|
mysql->net.last_errno=0;
|
|
|
|
mysql->info=0;
|
|
|
|
mysql->affected_rows= ~(my_ulonglong) 0;
|
|
|
|
|
|
|
|
/* Clear receive buffer and vio packet list */
|
|
|
|
net_clear(net);
|
|
|
|
vio_reset(net->vio);
|
|
|
|
|
2001-06-15 21:55:15 +02:00
|
|
|
thd->store_globals(); // Fix if more than one connect
|
2002-10-13 11:23:55 +02:00
|
|
|
// thd->net.last_error[0]=0; // Clear error message
|
|
|
|
// thd->net.last_errno=0;
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
net_new_transaction(net);
|
|
|
|
result= dispatch_command(command, thd, (char *) arg, length + 1);
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
if (!skipp_check)
|
|
|
|
result= net->last_errno ? -1 : 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
return result;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
#ifdef _DUMMY
|
2001-09-30 04:47:34 +02:00
|
|
|
void lib_connection_phase(NET * net, int phase)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2001-06-24 21:11:00 +02:00
|
|
|
THD * thd;
|
|
|
|
thd = (THD *)(net->vio->dest_thd);
|
|
|
|
if (thd)
|
|
|
|
{
|
|
|
|
switch (phase)
|
|
|
|
{
|
|
|
|
case 2:
|
|
|
|
check_connections2(thd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_END
|
2001-09-30 04:47:34 +02:00
|
|
|
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
void start_embedded_conn1(NET * net)
|
|
|
|
{
|
|
|
|
THD * thd = new THD;
|
|
|
|
my_net_init(&thd->net,NULL);
|
|
|
|
/* if (protocol_version>9) */
|
|
|
|
thd->net.return_errno=1;
|
|
|
|
thd->thread_id = thread_id++;
|
|
|
|
|
|
|
|
Vio * v = net->vio;
|
|
|
|
if (!v)
|
|
|
|
{
|
2002-06-17 13:24:51 +02:00
|
|
|
v = vio_new(0,VIO_BUFFER,0);
|
2001-04-11 13:04:03 +02:00
|
|
|
net->vio = v;
|
|
|
|
}
|
|
|
|
if (v)
|
|
|
|
{
|
|
|
|
v -> dest_thd = thd;
|
|
|
|
}
|
|
|
|
thd->net.vio = v;
|
|
|
|
if (thd->store_globals())
|
|
|
|
{
|
2001-06-15 21:55:15 +02:00
|
|
|
fprintf(stderr,"store_globals failed.\n");
|
2001-04-11 13:04:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
thd->mysys_var=my_thread_var;
|
|
|
|
thd->dbug_thread_id=my_thread_id();
|
|
|
|
thd->thread_stack= (char*) &thd;
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
if (thd->variables.max_join_size == (ulong) HA_POS_ERROR)
|
2001-04-11 13:04:03 +02:00
|
|
|
thd->options |= OPTION_BIG_SELECTS;
|
|
|
|
|
|
|
|
thd->proc_info=0; // Remove 'login'
|
|
|
|
thd->command=COM_SLEEP;
|
|
|
|
thd->version=refresh_version;
|
|
|
|
thd->set_time();
|
2002-10-21 06:56:30 +02:00
|
|
|
bzero(thd->scramble, sizeof(thd->scramble));
|
2001-04-11 13:04:03 +02:00
|
|
|
init_sql_alloc(&thd->mem_root,8192,8192);
|
|
|
|
|
|
|
|
check_connections1(thd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
check_connections1(THD *thd)
|
|
|
|
{
|
|
|
|
uint connect_errors=0;
|
|
|
|
NET *net= &thd->net;
|
|
|
|
/*
|
|
|
|
** store the connection details
|
|
|
|
*/
|
|
|
|
DBUG_PRINT("info", (("check_connections called by thread %d"),
|
|
|
|
thd->thread_id));
|
|
|
|
DBUG_PRINT("general",("New connection received on %s",
|
|
|
|
vio_description(net->vio)));
|
|
|
|
if (!thd->host) // If TCP/IP connection
|
|
|
|
{
|
|
|
|
thd->host=(char*) localhost;
|
|
|
|
}
|
|
|
|
else /* Hostname given means that the connection was on a socket */
|
|
|
|
{
|
|
|
|
DBUG_PRINT("general",("Host: %s",thd->host));
|
|
|
|
thd->ip=0;
|
|
|
|
bzero((char*) &thd->remote,sizeof(struct sockaddr));
|
|
|
|
}
|
|
|
|
//vio_keepalive(net->vio, TRUE);
|
|
|
|
|
|
|
|
/* nasty, but any other way? */
|
|
|
|
uint pkt_len = 0;
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
char buff[80],*end;
|
|
|
|
int client_flags = CLIENT_LONG_FLAG | CLIENT_CONNECT_WITH_DB |
|
|
|
|
CLIENT_TRANSACTIONS;
|
|
|
|
LINT_INIT(pkt_len);
|
|
|
|
|
|
|
|
end=strmov(buff,server_version)+1;
|
|
|
|
int4store((uchar*) end,thd->thread_id);
|
|
|
|
end+=4;
|
|
|
|
memcpy(end,thd->scramble,SCRAMBLE_LENGTH+1);
|
|
|
|
end+=SCRAMBLE_LENGTH +1;
|
|
|
|
int2store(end,client_flags);
|
|
|
|
end[2]=MY_CHARSET_CURRENT;
|
|
|
|
int2store(end+3,thd->server_status);
|
|
|
|
bzero(end+5,13);
|
|
|
|
end+=18;
|
2002-10-02 12:33:08 +02:00
|
|
|
if (net_write_command(net,protocol_version,
|
|
|
|
NullS, 0,
|
|
|
|
buff, (uint) (end-buff)))
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
inc_host_errors(&thd->remote.sin_addr);
|
|
|
|
return(ER_HANDSHAKE_ERROR);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
#define MIN_HANDSHAKE_SIZE 6
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
static int
|
|
|
|
check_connections2(THD * thd)
|
|
|
|
{
|
2001-09-17 14:40:03 +02:00
|
|
|
uint connect_errors=0;
|
|
|
|
uint pkt_len = 0;
|
|
|
|
NET * net = &thd -> net;
|
|
|
|
if (protocol_version>9) net -> return_errno=1;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-09-17 14:40:03 +02:00
|
|
|
if ( (pkt_len=my_net_read(net)) == packet_error ||
|
|
|
|
pkt_len < MIN_HANDSHAKE_SIZE)
|
|
|
|
{
|
|
|
|
inc_host_errors(&thd->remote.sin_addr);
|
|
|
|
return(ER_HANDSHAKE_ERROR);
|
|
|
|
}
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
#ifdef _CUSTOMCONFIG_
|
|
|
|
#include "_cust_sql_parse.h"
|
|
|
|
#endif
|
|
|
|
if (connect_errors)
|
|
|
|
reset_host_errors(&thd->remote.sin_addr);
|
2002-07-23 17:31:22 +02:00
|
|
|
if (thd->packet.alloc(thd->variables.net_buffer_length))
|
2001-04-11 13:04:03 +02:00
|
|
|
return(ER_OUT_OF_RESOURCES);
|
|
|
|
|
|
|
|
thd->client_capabilities=uint2korr(net->read_pos);
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
thd->max_client_packet_length=uint3korr(net->read_pos+2);
|
2001-04-11 13:04:03 +02:00
|
|
|
char *user= (char*) net->read_pos+5;
|
|
|
|
char *passwd= strend(user)+1;
|
|
|
|
char *db=0;
|
|
|
|
if (passwd[0] && strlen(passwd) != SCRAMBLE_LENGTH)
|
|
|
|
return ER_HANDSHAKE_ERROR;
|
|
|
|
if (thd->client_capabilities & CLIENT_CONNECT_WITH_DB)
|
|
|
|
db=strend(passwd)+1;
|
|
|
|
if (thd->client_capabilities & CLIENT_TRANSACTIONS)
|
|
|
|
thd->net.return_status= &thd->server_status;
|
2002-07-23 17:31:22 +02:00
|
|
|
net->read_timeout=thd->variables.net_read_timeout;
|
2001-04-11 13:04:03 +02:00
|
|
|
if (check_user(thd,COM_CONNECT, user, passwd, db, 1))
|
|
|
|
return (-1);
|
|
|
|
thd->password=test(passwd[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-17 13:24:51 +02:00
|
|
|
#else
|
|
|
|
C_MODE_END
|
|
|
|
#endif /* _DUMMY */
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
static bool check_user(THD *thd,enum_server_command command, const char *user,
|
|
|
|
const char *passwd, const char *db, bool check_count)
|
|
|
|
{
|
2002-05-15 17:41:36 +02:00
|
|
|
USER_RESOURCES ur;
|
2001-04-11 13:04:03 +02:00
|
|
|
thd->db=0;
|
|
|
|
|
|
|
|
if (!(thd->user = my_strdup(user, MYF(0))))
|
|
|
|
{
|
2002-10-02 12:33:08 +02:00
|
|
|
send_error(thd,ER_OUT_OF_RESOURCES);
|
2001-04-11 13:04:03 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2002-12-06 21:01:12 +01:00
|
|
|
thd->master_access= ~0L; // No user checking
|
|
|
|
thd->priv_user= thd->user;
|
2001-04-11 13:04:03 +02:00
|
|
|
mysql_log.write(thd,command,
|
|
|
|
(thd->priv_user == thd->user ?
|
|
|
|
(char*) "%s@%s on %s" :
|
|
|
|
(char*) "%s@%s as anonymous on %s"),
|
|
|
|
user,
|
2002-05-15 17:41:36 +02:00
|
|
|
thd->host_or_ip,
|
2001-04-11 13:04:03 +02:00
|
|
|
db ? db : (char*) "");
|
|
|
|
thd->db_access=0;
|
|
|
|
if (db && db[0])
|
|
|
|
return test(mysql_change_db(thd,db));
|
|
|
|
else
|
2002-10-02 12:33:08 +02:00
|
|
|
send_ok(thd); // Ready to handle questions
|
2001-04-11 13:04:03 +02:00
|
|
|
return 0; // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
/*
|
|
|
|
Make a copy of array and the strings array points to
|
|
|
|
*/
|
|
|
|
|
|
|
|
char **copy_arguments(int argc, char **argv)
|
|
|
|
{
|
|
|
|
uint length= 0;
|
|
|
|
char **from, **res, **end= argv+argc;
|
|
|
|
|
|
|
|
for (from=argv ; from != end ; from++)
|
|
|
|
length+= strlen(*from);
|
|
|
|
|
|
|
|
if ((res= (char**) my_malloc(sizeof(argv)*(argc+1)+length+argc,
|
|
|
|
MYF(MY_WME))))
|
|
|
|
{
|
|
|
|
char **to= res, *to_str= (char*) (res+argc+1);
|
|
|
|
for (from=argv ; from != end ;)
|
|
|
|
{
|
|
|
|
*to++= to_str;
|
|
|
|
to_str= strmov(to_str, *from++)+1;
|
|
|
|
}
|
|
|
|
*to= 0; // Last ptr should be null
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
ulong max_allowed_packet, net_buffer_length;
|
2002-12-05 15:38:49 +01:00
|
|
|
char ** copy_arguments_ptr= 0;
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2002-11-06 11:42:44 +01:00
|
|
|
int STDCALL mysql_server_init(int argc, char **argv, char **groups)
|
|
|
|
{
|
|
|
|
char glob_hostname[FN_REFLEN];
|
|
|
|
|
|
|
|
/* This mess is to allow people to call the init function without
|
|
|
|
* having to mess with a fake argv */
|
|
|
|
int *argcp;
|
|
|
|
char ***argvp;
|
|
|
|
int fake_argc = 1;
|
|
|
|
char *fake_argv[] = { (char *)"", 0 };
|
|
|
|
const char *fake_groups[] = { "server", "embedded", 0 };
|
|
|
|
if (argc)
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &argc;
|
|
|
|
argvp= (char***) &argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &fake_argc;
|
|
|
|
argvp= (char ***) &fake_argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
if (!groups)
|
2002-12-12 09:49:56 +01:00
|
|
|
groups= (char**) fake_groups;
|
2002-11-06 11:42:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Only call MY_INIT() if it hasn't been called before */
|
|
|
|
if (!inited)
|
|
|
|
{
|
|
|
|
inited=1;
|
|
|
|
org_my_init_done=my_init_done;
|
|
|
|
}
|
|
|
|
if (!org_my_init_done)
|
|
|
|
{
|
|
|
|
MY_INIT((char *)"mysql_embedded"); // init my_sys library & pthreads
|
|
|
|
}
|
|
|
|
|
|
|
|
if (init_common_variables("my", argc, argv, (const char **)groups))
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get default temporary directory */
|
|
|
|
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
|
|
|
|
#if defined( __WIN__) || defined(OS2)
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TEMP");
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TMP");
|
|
|
|
#endif
|
|
|
|
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
|
|
|
|
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
|
|
|
|
|
|
|
|
if (init_thread_environement())
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
umask(((~my_umask) & 0666));
|
|
|
|
if (init_server_components())
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_handler_hook = my_message_sql;
|
|
|
|
|
|
|
|
opt_noacl = 1; // No permissions
|
2002-12-12 09:16:34 +01:00
|
|
|
if (acl_init((THD *)0, opt_noacl))
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!opt_noacl)
|
2002-12-12 09:16:34 +01:00
|
|
|
(void) grant_init((THD *)0);
|
2002-11-06 11:42:44 +01:00
|
|
|
init_max_user_conn();
|
|
|
|
init_update_queries();
|
|
|
|
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
if (!opt_noacl)
|
|
|
|
udf_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (opt_bin_log)
|
|
|
|
{
|
|
|
|
if (!opt_bin_logname)
|
|
|
|
{
|
|
|
|
char tmp[FN_REFLEN];
|
|
|
|
/* TODO: The following should be using fn_format(); We just need to
|
|
|
|
first change fn_format() to cut the file name if it's too long.
|
|
|
|
*/
|
|
|
|
strmake(tmp,glob_hostname,FN_REFLEN-5);
|
|
|
|
strmov(strcend(tmp,'.'),"-bin");
|
|
|
|
opt_bin_logname=my_strdup(tmp,MYF(MY_WME));
|
|
|
|
}
|
|
|
|
open_log(&mysql_bin_log, glob_hostname, opt_bin_logname, "-bin",
|
|
|
|
opt_binlog_index_name, LOG_BIN);
|
|
|
|
using_update_log=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void) thr_setconcurrency(concurrency); // 10 by default
|
|
|
|
|
|
|
|
if (
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
|
|
|
!berkeley_skip ||
|
|
|
|
#endif
|
|
|
|
(flush_time && flush_time != ~(ulong) 0L))
|
|
|
|
{
|
|
|
|
pthread_t hThread;
|
|
|
|
if (pthread_create(&hThread,&connection_attrib,handle_manager,0))
|
|
|
|
sql_print_error("Warning: Can't create thread to manage maintenance");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Update mysqld variables from client variables if set
|
|
|
|
The client variables are set also by get_one_option() in mysqld.cc
|
|
|
|
*/
|
|
|
|
if (max_allowed_packet)
|
|
|
|
global_system_variables.max_allowed_packet= max_allowed_packet;
|
|
|
|
if (net_buffer_length)
|
|
|
|
global_system_variables.net_buffer_length= net_buffer_length;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __DUMMY
|
2001-11-03 20:33:11 +01:00
|
|
|
int STDCALL mysql_server_init(int argc, char **argv, char **groups)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
char glob_hostname[FN_REFLEN];
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-08-10 18:37:36 +02:00
|
|
|
/* This mess is to allow people to call the init function without
|
|
|
|
* having to mess with a fake argv */
|
|
|
|
int *argcp;
|
|
|
|
char ***argvp;
|
|
|
|
int fake_argc = 1;
|
|
|
|
char *fake_argv[] = { (char *)"", 0 };
|
2001-10-08 03:58:07 +02:00
|
|
|
const char *fake_groups[] = { "server", "embedded", 0 };
|
2001-08-10 18:37:36 +02:00
|
|
|
if (argc)
|
|
|
|
{
|
|
|
|
argcp = &argc;
|
2001-09-17 14:40:03 +02:00
|
|
|
argvp = (char***) &argv;
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
argcp = &fake_argc;
|
2001-09-17 14:40:03 +02:00
|
|
|
argvp = (char ***) &fake_argv;
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
if (!groups)
|
2002-12-05 15:38:49 +01:00
|
|
|
groups = (char**) fake_groups;
|
2001-08-10 18:37:36 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
my_umask=0660; // Default umask for new files
|
|
|
|
my_umask_dir=0700; // Default umask for new directories
|
2001-10-02 04:53:00 +02:00
|
|
|
|
|
|
|
/* Only call MY_INIT() if it hasn't been called before */
|
|
|
|
if (!inited)
|
|
|
|
{
|
|
|
|
inited=1;
|
|
|
|
org_my_init_done=my_init_done;
|
|
|
|
}
|
|
|
|
if (!org_my_init_done)
|
2001-10-08 03:58:07 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
MY_INIT((char *)"mysql_embedded"); // init my_sys library & pthreads
|
2001-10-08 03:58:07 +02:00
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
/*
|
|
|
|
Make a copy of the arguments to guard against applications that
|
|
|
|
may change or move the initial arguments.
|
|
|
|
*/
|
|
|
|
if (argvp == &argv)
|
|
|
|
if (!(copy_arguments_ptr= argv= copy_arguments(argc, argv)))
|
|
|
|
return 1;
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
tzset(); // Set tzname
|
|
|
|
|
|
|
|
start_time=time((time_t*) 0);
|
|
|
|
#ifdef HAVE_TZNAME
|
|
|
|
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
|
|
|
|
{
|
|
|
|
struct tm tm_tmp;
|
|
|
|
localtime_r(&start_time,&tm_tmp);
|
2001-10-02 04:53:00 +02:00
|
|
|
strmov(time_zone,tzname[tm_tmp.tm_isdst != 0 ? 1 : 0]);
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
struct tm *start_tm;
|
|
|
|
start_tm=localtime(&start_time);
|
2001-10-02 04:53:00 +02:00
|
|
|
strmov(time_zone,tzname[start_tm->tm_isdst != 0 ? 1 : 0]);
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
if (gethostname(glob_hostname,sizeof(glob_hostname)-4) < 0)
|
|
|
|
strmov(glob_hostname,"mysql");
|
2001-04-11 13:04:03 +02:00
|
|
|
#ifndef DBUG_OFF
|
2002-07-23 17:31:22 +02:00
|
|
|
strxmov(strend(server_version),MYSQL_SERVER_SUFFIX,"-debug",NullS);
|
|
|
|
#else
|
|
|
|
strmov(strend(server_version),MYSQL_SERVER_SUFFIX);
|
2001-04-11 13:04:03 +02:00
|
|
|
#endif
|
2001-10-08 03:58:07 +02:00
|
|
|
load_defaults("my", (const char **) groups, argcp, argvp);
|
2001-08-10 18:37:36 +02:00
|
|
|
defaults_argv=*argvp;
|
2002-07-23 17:31:22 +02:00
|
|
|
|
|
|
|
/* Get default temporary directory */
|
|
|
|
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
|
2001-10-02 04:53:00 +02:00
|
|
|
#if defined( __WIN__) || defined(OS2)
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TEMP");
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TMP");
|
2001-04-11 13:04:03 +02:00
|
|
|
#endif
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
|
|
|
|
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
set_options();
|
2001-08-10 18:37:36 +02:00
|
|
|
get_options(*argcp, *argvp);
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
if (opt_log || opt_update_log || opt_slow_log || opt_bin_log)
|
|
|
|
strcat(server_version,"-log");
|
|
|
|
DBUG_PRINT("info",("%s Ver %s for %s on %s\n",my_progname,
|
|
|
|
server_version, SYSTEM_TYPE,MACHINE_TYPE));
|
|
|
|
|
|
|
|
/* These must be set early */
|
|
|
|
|
2001-04-25 00:11:29 +02:00
|
|
|
(void) pthread_mutex_init(&LOCK_mysql_create_db,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_Acl,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_open,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_thread_count,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_mapped_file,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_status,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_error_log,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_insert,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_status,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_create,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_manager,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_crypt,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_bytes_sent,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_bytes_received,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_timezone,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_user_conn, MY_MUTEX_INIT_FAST);
|
2002-07-23 17:31:22 +02:00
|
|
|
(void) pthread_mutex_init(&LOCK_rpl_status, MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_active_mi, MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_global_system_variables, MY_MUTEX_INIT_FAST);
|
2002-10-02 12:33:08 +02:00
|
|
|
(void) my_rwlock_init(&LOCK_grant, NULL);
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) pthread_cond_init(&COND_thread_count,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_refresh,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_thread_cache,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_flush_thread_cache,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_manager,NULL);
|
2002-07-23 17:31:22 +02:00
|
|
|
(void) pthread_cond_init(&COND_rpl_status, NULL);
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
if (set_default_charset_by_name(sys_charset.value, MYF(MY_WME)))
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
2002-07-30 11:02:29 +02:00
|
|
|
charsets_list = list_charsets(MYF(MY_CS_COMPILED|MY_CS_CONFIG));
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/* Parameter for threads created for connections */
|
|
|
|
(void) pthread_attr_init(&connection_attrib);
|
|
|
|
(void) pthread_attr_setdetachstate(&connection_attrib,
|
|
|
|
PTHREAD_CREATE_DETACHED);
|
|
|
|
pthread_attr_setstacksize(&connection_attrib,thread_stack);
|
|
|
|
pthread_attr_setscope(&connection_attrib, PTHREAD_SCOPE_SYSTEM);
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
#if defined( SET_RLIMIT_NOFILE) || defined( OS2)
|
|
|
|
/* connections and databases needs lots of files */
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
uint wanted_files=10+(uint) max(max_connections*5,
|
|
|
|
max_connections+table_cache_size*2);
|
2002-07-23 17:31:22 +02:00
|
|
|
set_if_bigger(wanted_files, open_files_limit);
|
|
|
|
// Note that some system returns 0 if we succeed here:
|
2001-04-11 13:04:03 +02:00
|
|
|
uint files=set_maximum_open_files(wanted_files);
|
2002-07-23 17:31:22 +02:00
|
|
|
if (files && files < wanted_files && ! open_files_limit)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
max_connections= (ulong) min((files-10),max_connections);
|
|
|
|
table_cache_size= (ulong) max((files-10-max_connections)/2,64);
|
|
|
|
DBUG_PRINT("warning",
|
|
|
|
("Changed limits: max_connections: %ld table_cache: %ld",
|
|
|
|
max_connections,table_cache_size));
|
|
|
|
sql_print_error("Warning: Changed limits: max_connections: %ld table_cache: %ld",max_connections,table_cache_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
unireg_init(opt_specialflag); /* Set up extern variabels */
|
|
|
|
init_errmessage(); /* Read error messages from file */
|
|
|
|
lex_init();
|
|
|
|
item_init();
|
2002-07-23 17:31:22 +02:00
|
|
|
set_var_init();
|
2001-04-11 13:04:03 +02:00
|
|
|
mysys_uses_curses=0;
|
|
|
|
#ifdef USE_REGEX
|
|
|
|
regex_init();
|
|
|
|
#endif
|
2001-12-15 05:00:01 +01:00
|
|
|
if (use_temp_pool && bitmap_init(&temp_pool,1024,1))
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/*
|
2002-07-23 17:31:22 +02:00
|
|
|
We have enough space for fiddling with the argv, continue
|
2001-04-11 13:04:03 +02:00
|
|
|
*/
|
|
|
|
umask(((~my_umask) & 0666));
|
|
|
|
table_cache_init();
|
|
|
|
hostname_cache_init();
|
2002-07-23 17:31:22 +02:00
|
|
|
query_cache_result_size_limit(query_cache_limit);
|
|
|
|
query_cache_resize(query_cache_size);
|
2001-04-11 13:04:03 +02:00
|
|
|
randominit(&sql_rand,(ulong) start_time,(ulong) start_time/2);
|
|
|
|
reset_floating_point_exceptions();
|
|
|
|
init_thr_lock();
|
2001-10-02 04:53:00 +02:00
|
|
|
init_slave_list();
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/* Setup log files */
|
|
|
|
if (opt_log)
|
2002-08-08 02:12:02 +02:00
|
|
|
open_log(&mysql_log, glob_hostname, opt_logname, ".log", NullS,
|
|
|
|
LOG_NORMAL);
|
2001-04-11 13:04:03 +02:00
|
|
|
if (opt_update_log)
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
open_log(&mysql_update_log, glob_hostname, opt_update_logname, "",
|
2002-08-08 02:12:02 +02:00
|
|
|
NullS, LOG_NEW);
|
2001-10-02 04:53:00 +02:00
|
|
|
using_update_log=1;
|
|
|
|
}
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
if (opt_slow_log)
|
2001-10-02 04:53:00 +02:00
|
|
|
open_log(&mysql_slow_log, glob_hostname, opt_slow_logname, "-slow.log",
|
2002-08-08 02:12:02 +02:00
|
|
|
NullS, LOG_NORMAL);
|
2001-04-11 13:04:03 +02:00
|
|
|
if (ha_init())
|
|
|
|
{
|
|
|
|
sql_print_error("Can't init databases");
|
|
|
|
exit(1);
|
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
ha_key_cache();
|
2002-07-23 17:31:22 +02:00
|
|
|
#if defined(HAVE_MLOCKALL) && defined(MCL_CURRENT)
|
2001-04-11 13:04:03 +02:00
|
|
|
if (locked_in_memory && !geteuid())
|
|
|
|
{
|
|
|
|
if (mlockall(MCL_CURRENT))
|
|
|
|
{
|
|
|
|
sql_print_error("Warning: Failed to lock memory. Errno: %d\n",errno);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
locked_in_memory=1;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
locked_in_memory=0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (opt_myisam_log)
|
|
|
|
(void) mi_log( 1 );
|
2002-07-23 17:31:22 +02:00
|
|
|
ft_init_stopwords(ft_precompiled_stopwords);
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
init signals & alarm
|
|
|
|
After this we can't quit by a simple unireg_abort
|
|
|
|
*/
|
|
|
|
error_handler_hook = my_message_sql;
|
2002-10-02 12:33:08 +02:00
|
|
|
if (pthread_key_create(&THR_THD,NULL) ||
|
2001-04-11 13:04:03 +02:00
|
|
|
pthread_key_create(&THR_MALLOC,NULL))
|
|
|
|
{
|
|
|
|
sql_print_error("Can't create thread-keys");
|
|
|
|
exit(1);
|
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
opt_noacl = 1; // No permissions
|
2002-12-12 09:16:34 +01:00
|
|
|
if (acl_init(opt_noacl))
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_noacl)
|
2002-12-12 09:16:34 +01:00
|
|
|
(void) grant_init();
|
2002-07-23 17:31:22 +02:00
|
|
|
init_max_user_conn();
|
2002-09-16 14:55:19 +02:00
|
|
|
init_update_queries();
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
if (!opt_noacl)
|
|
|
|
udf_init();
|
|
|
|
#endif
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
if (opt_bin_log)
|
|
|
|
{
|
|
|
|
if (!opt_bin_logname)
|
|
|
|
{
|
|
|
|
char tmp[FN_REFLEN];
|
|
|
|
/* TODO: The following should be using fn_format(); We just need to
|
|
|
|
first change fn_format() to cut the file name if it's too long.
|
|
|
|
*/
|
|
|
|
strmake(tmp,glob_hostname,FN_REFLEN-5);
|
|
|
|
strmov(strcend(tmp,'.'),"-bin");
|
|
|
|
opt_bin_logname=my_strdup(tmp,MYF(MY_WME));
|
|
|
|
}
|
|
|
|
open_log(&mysql_bin_log, glob_hostname, opt_bin_logname, "-bin",
|
2002-08-08 02:12:02 +02:00
|
|
|
opt_binlog_index_name, LOG_BIN);
|
2002-07-23 17:31:22 +02:00
|
|
|
using_update_log=1;
|
|
|
|
}
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) thr_setconcurrency(concurrency); // 10 by default
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
if (
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
|
|
|
!berkeley_skip ||
|
|
|
|
#endif
|
|
|
|
(flush_time && flush_time != ~(ulong) 0L))
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
pthread_t hThread;
|
|
|
|
if (pthread_create(&hThread,&connection_attrib,handle_manager,0))
|
|
|
|
sql_print_error("Warning: Can't create thread to manage maintenance");
|
|
|
|
}
|
2002-07-23 17:31:22 +02:00
|
|
|
|
2002-08-16 23:35:51 +02:00
|
|
|
/*
|
|
|
|
Update mysqld variables from client variables if set
|
|
|
|
The client variables are set also by get_one_option() in mysqld.cc
|
|
|
|
*/
|
|
|
|
if (max_allowed_packet)
|
|
|
|
global_system_variables.max_allowed_packet= max_allowed_packet;
|
|
|
|
if (net_buffer_length)
|
|
|
|
global_system_variables.net_buffer_length= net_buffer_length;
|
2001-10-02 04:53:00 +02:00
|
|
|
return 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2001-11-03 20:33:11 +01:00
|
|
|
int STDCALL mysql_server_init(int argc, char **argv, char **groups)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
char glob_hostname[FN_REFLEN];
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-08-10 18:37:36 +02:00
|
|
|
/* This mess is to allow people to call the init function without
|
|
|
|
* having to mess with a fake argv */
|
|
|
|
int *argcp;
|
|
|
|
char ***argvp;
|
|
|
|
int fake_argc = 1;
|
|
|
|
char *fake_argv[] = { (char *)"", 0 };
|
2001-10-08 03:58:07 +02:00
|
|
|
const char *fake_groups[] = { "server", "embedded", 0 };
|
2001-08-10 18:37:36 +02:00
|
|
|
if (argc)
|
|
|
|
{
|
|
|
|
argcp = &argc;
|
2001-09-17 14:40:03 +02:00
|
|
|
argvp = (char***) &argv;
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
argcp = &fake_argc;
|
2001-09-17 14:40:03 +02:00
|
|
|
argvp = (char ***) &fake_argv;
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
if (!groups)
|
2001-10-08 03:58:07 +02:00
|
|
|
groups = (char**) fake_groups;
|
2001-08-10 18:37:36 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
my_umask=0660; // Default umask for new files
|
|
|
|
my_umask_dir=0700; // Default umask for new directories
|
2001-10-02 04:53:00 +02:00
|
|
|
|
|
|
|
/* Only call MY_INIT() if it hasn't been called before */
|
|
|
|
if (!inited)
|
|
|
|
{
|
|
|
|
inited=1;
|
|
|
|
org_my_init_done=my_init_done;
|
|
|
|
}
|
|
|
|
if (!org_my_init_done)
|
2001-10-08 03:58:07 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
MY_INIT((char *)"mysql_embedded"); // init my_sys library & pthreads
|
2001-10-08 03:58:07 +02:00
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
tzset(); // Set tzname
|
|
|
|
|
|
|
|
start_time=time((time_t*) 0);
|
|
|
|
#ifdef HAVE_TZNAME
|
|
|
|
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
|
|
|
|
{
|
|
|
|
struct tm tm_tmp;
|
|
|
|
localtime_r(&start_time,&tm_tmp);
|
2001-10-02 04:53:00 +02:00
|
|
|
strmov(time_zone,tzname[tm_tmp.tm_isdst != 0 ? 1 : 0]);
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
struct tm *start_tm;
|
|
|
|
start_tm=localtime(&start_time);
|
2001-10-02 04:53:00 +02:00
|
|
|
strmov(time_zone,tzname[start_tm->tm_isdst != 0 ? 1 : 0]);
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
2001-08-10 18:37:36 +02:00
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
if (gethostname(glob_hostname,sizeof(glob_hostname)-4) < 0)
|
|
|
|
strmov(glob_hostname,"mysql");
|
2001-04-11 13:04:03 +02:00
|
|
|
#ifndef DBUG_OFF
|
2002-07-23 17:31:22 +02:00
|
|
|
strxmov(strend(server_version),MYSQL_SERVER_SUFFIX,"-debug",NullS);
|
2001-08-10 18:37:36 +02:00
|
|
|
#else
|
2002-07-23 17:31:22 +02:00
|
|
|
strmov(strend(server_version),MYSQL_SERVER_SUFFIX);
|
2001-08-10 18:37:36 +02:00
|
|
|
#endif
|
2001-10-08 03:58:07 +02:00
|
|
|
load_defaults("my", (const char **) groups, argcp, argvp);
|
2001-08-10 18:37:36 +02:00
|
|
|
defaults_argv=*argvp;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
/* Get default temporary directory */
|
|
|
|
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
|
2001-10-02 04:53:00 +02:00
|
|
|
#if defined( __WIN__) || defined(OS2)
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TEMP");
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TMP");
|
2001-08-10 18:37:36 +02:00
|
|
|
#endif
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
|
|
|
|
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
|
2001-08-10 18:37:36 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
set_options();
|
2001-08-10 18:37:36 +02:00
|
|
|
get_options(*argcp, *argvp);
|
2001-09-30 04:47:34 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
if (opt_log || opt_update_log || opt_slow_log || opt_bin_log)
|
|
|
|
strcat(server_version,"-log");
|
|
|
|
DBUG_PRINT("info",("%s Ver %s for %s on %s\n",my_progname,
|
|
|
|
server_version, SYSTEM_TYPE,MACHINE_TYPE));
|
|
|
|
|
|
|
|
/* These must be set early */
|
|
|
|
|
2001-04-25 00:11:29 +02:00
|
|
|
(void) pthread_mutex_init(&LOCK_mysql_create_db,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_Acl,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_open,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_thread_count,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_mapped_file,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_status,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_error_log,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_insert,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_status,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_delayed_create,MY_MUTEX_INIT_SLOW);
|
|
|
|
(void) pthread_mutex_init(&LOCK_manager,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_crypt,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_bytes_sent,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_bytes_received,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_timezone,MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_user_conn, MY_MUTEX_INIT_FAST);
|
2002-07-23 17:31:22 +02:00
|
|
|
(void) pthread_mutex_init(&LOCK_rpl_status, MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_active_mi, MY_MUTEX_INIT_FAST);
|
|
|
|
(void) pthread_mutex_init(&LOCK_global_system_variables, MY_MUTEX_INIT_FAST);
|
2002-10-02 12:33:08 +02:00
|
|
|
(void) my_rwlock_init(&LOCK_grant, NULL);
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) pthread_cond_init(&COND_thread_count,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_refresh,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_thread_cache,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_flush_thread_cache,NULL);
|
|
|
|
(void) pthread_cond_init(&COND_manager,NULL);
|
2002-07-23 17:31:22 +02:00
|
|
|
(void) pthread_cond_init(&COND_rpl_status, NULL);
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
if (set_default_charset_by_name(sys_charset.value, MYF(MY_WME)))
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
2002-07-30 11:02:29 +02:00
|
|
|
charsets_list = list_charsets(MYF(MY_CS_COMPILED|MY_CS_CONFIG));
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/* Parameter for threads created for connections */
|
|
|
|
(void) pthread_attr_init(&connection_attrib);
|
|
|
|
(void) pthread_attr_setdetachstate(&connection_attrib,
|
|
|
|
PTHREAD_CREATE_DETACHED);
|
|
|
|
pthread_attr_setstacksize(&connection_attrib,thread_stack);
|
|
|
|
pthread_attr_setscope(&connection_attrib, PTHREAD_SCOPE_SYSTEM);
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
#if defined( SET_RLIMIT_NOFILE) || defined( OS2)
|
|
|
|
/* connections and databases needs lots of files */
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
uint wanted_files=10+(uint) max(max_connections*5,
|
|
|
|
max_connections+table_cache_size*2);
|
2002-07-23 17:31:22 +02:00
|
|
|
set_if_bigger(wanted_files, open_files_limit);
|
|
|
|
// Note that some system returns 0 if we succeed here:
|
2001-04-11 13:04:03 +02:00
|
|
|
uint files=set_maximum_open_files(wanted_files);
|
2002-07-23 17:31:22 +02:00
|
|
|
if (files && files < wanted_files && ! open_files_limit)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
max_connections= (ulong) min((files-10),max_connections);
|
|
|
|
table_cache_size= (ulong) max((files-10-max_connections)/2,64);
|
|
|
|
DBUG_PRINT("warning",
|
|
|
|
("Changed limits: max_connections: %ld table_cache: %ld",
|
|
|
|
max_connections,table_cache_size));
|
|
|
|
sql_print_error("Warning: Changed limits: max_connections: %ld table_cache: %ld",max_connections,table_cache_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
unireg_init(opt_specialflag); /* Set up extern variabels */
|
|
|
|
init_errmessage(); /* Read error messages from file */
|
|
|
|
lex_init();
|
|
|
|
item_init();
|
2002-07-23 17:31:22 +02:00
|
|
|
set_var_init();
|
2001-04-11 13:04:03 +02:00
|
|
|
mysys_uses_curses=0;
|
|
|
|
#ifdef USE_REGEX
|
|
|
|
regex_init();
|
|
|
|
#endif
|
2001-12-15 05:00:01 +01:00
|
|
|
if (use_temp_pool && bitmap_init(&temp_pool,1024,1))
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/*
|
2002-07-23 17:31:22 +02:00
|
|
|
We have enough space for fiddling with the argv, continue
|
2001-04-11 13:04:03 +02:00
|
|
|
*/
|
|
|
|
umask(((~my_umask) & 0666));
|
|
|
|
table_cache_init();
|
|
|
|
hostname_cache_init();
|
2002-07-23 17:31:22 +02:00
|
|
|
query_cache_result_size_limit(query_cache_limit);
|
|
|
|
query_cache_resize(query_cache_size);
|
2001-04-11 13:04:03 +02:00
|
|
|
randominit(&sql_rand,(ulong) start_time,(ulong) start_time/2);
|
|
|
|
reset_floating_point_exceptions();
|
|
|
|
init_thr_lock();
|
2001-10-02 04:53:00 +02:00
|
|
|
init_slave_list();
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/* Setup log files */
|
|
|
|
if (opt_log)
|
2002-08-08 02:12:02 +02:00
|
|
|
open_log(&mysql_log, glob_hostname, opt_logname, ".log", NullS,
|
|
|
|
LOG_NORMAL);
|
2001-04-11 13:04:03 +02:00
|
|
|
if (opt_update_log)
|
2001-10-02 04:53:00 +02:00
|
|
|
{
|
|
|
|
open_log(&mysql_update_log, glob_hostname, opt_update_logname, "",
|
2002-08-08 02:12:02 +02:00
|
|
|
NullS, LOG_NEW);
|
2001-10-02 04:53:00 +02:00
|
|
|
using_update_log=1;
|
|
|
|
}
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
if (opt_slow_log)
|
2001-10-02 04:53:00 +02:00
|
|
|
open_log(&mysql_slow_log, glob_hostname, opt_slow_logname, "-slow.log",
|
2002-08-08 02:12:02 +02:00
|
|
|
NullS, LOG_NORMAL);
|
2001-04-11 13:04:03 +02:00
|
|
|
if (ha_init())
|
|
|
|
{
|
|
|
|
sql_print_error("Can't init databases");
|
|
|
|
exit(1);
|
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
ha_key_cache();
|
2002-07-23 17:31:22 +02:00
|
|
|
#if defined(HAVE_MLOCKALL) && defined(MCL_CURRENT)
|
2001-04-11 13:04:03 +02:00
|
|
|
if (locked_in_memory && !geteuid())
|
|
|
|
{
|
|
|
|
if (mlockall(MCL_CURRENT))
|
|
|
|
{
|
|
|
|
sql_print_error("Warning: Failed to lock memory. Errno: %d\n",errno);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
locked_in_memory=1;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
locked_in_memory=0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (opt_myisam_log)
|
|
|
|
(void) mi_log( 1 );
|
2002-07-23 17:31:22 +02:00
|
|
|
ft_init_stopwords(ft_precompiled_stopwords);
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
init signals & alarm
|
|
|
|
After this we can't quit by a simple unireg_abort
|
|
|
|
*/
|
|
|
|
error_handler_hook = my_message_sql;
|
2002-10-02 12:33:08 +02:00
|
|
|
if (pthread_key_create(&THR_THD,NULL) ||
|
2001-04-11 13:04:03 +02:00
|
|
|
pthread_key_create(&THR_MALLOC,NULL))
|
|
|
|
{
|
|
|
|
sql_print_error("Can't create thread-keys");
|
|
|
|
exit(1);
|
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
opt_noacl = 1; // No permissions
|
2001-04-11 13:04:03 +02:00
|
|
|
if (acl_init(opt_noacl))
|
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2002-07-23 17:31:22 +02:00
|
|
|
if (!opt_noacl)
|
|
|
|
(void) grant_init();
|
|
|
|
init_max_user_conn();
|
2002-09-16 14:55:19 +02:00
|
|
|
init_update_queries();
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
if (!opt_noacl)
|
|
|
|
udf_init();
|
|
|
|
#endif
|
|
|
|
|
2002-07-23 17:31:22 +02:00
|
|
|
if (opt_bin_log)
|
|
|
|
{
|
|
|
|
if (!opt_bin_logname)
|
|
|
|
{
|
|
|
|
char tmp[FN_REFLEN];
|
|
|
|
/* TODO: The following should be using fn_format(); We just need to
|
|
|
|
first change fn_format() to cut the file name if it's too long.
|
|
|
|
*/
|
|
|
|
strmake(tmp,glob_hostname,FN_REFLEN-5);
|
|
|
|
strmov(strcend(tmp,'.'),"-bin");
|
|
|
|
opt_bin_logname=my_strdup(tmp,MYF(MY_WME));
|
|
|
|
}
|
|
|
|
open_log(&mysql_bin_log, glob_hostname, opt_bin_logname, "-bin",
|
2002-08-08 02:12:02 +02:00
|
|
|
opt_binlog_index_name, LOG_BIN);
|
2002-07-23 17:31:22 +02:00
|
|
|
using_update_log=1;
|
|
|
|
}
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
(void) thr_setconcurrency(concurrency); // 10 by default
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
if (
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
|
|
|
!berkeley_skip ||
|
|
|
|
#endif
|
|
|
|
(flush_time && flush_time != ~(ulong) 0L))
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
|
|
|
pthread_t hThread;
|
|
|
|
if (pthread_create(&hThread,&connection_attrib,handle_manager,0))
|
|
|
|
sql_print_error("Warning: Can't create thread to manage maintenance");
|
|
|
|
}
|
2002-07-23 17:31:22 +02:00
|
|
|
|
2002-08-16 23:35:51 +02:00
|
|
|
/*
|
|
|
|
Update mysqld variables from client variables if set
|
|
|
|
The client variables are set also by get_one_option() in mysqld.cc
|
|
|
|
*/
|
|
|
|
if (max_allowed_packet)
|
|
|
|
global_system_variables.max_allowed_packet= max_allowed_packet;
|
|
|
|
if (net_buffer_length)
|
|
|
|
global_system_variables.net_buffer_length= net_buffer_length;
|
2001-10-02 04:53:00 +02:00
|
|
|
return 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2002-11-06 11:42:44 +01:00
|
|
|
#endif
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-11-03 20:33:11 +01:00
|
|
|
void STDCALL mysql_server_end()
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
my_free((char*) copy_arguments_ptr, MYF(MY_ALLOW_ZERO_PTR));
|
|
|
|
copy_arguments_ptr=0;
|
2001-10-02 04:53:00 +02:00
|
|
|
clean_up(0);
|
|
|
|
#ifdef THREAD
|
|
|
|
/* Don't call my_thread_end() if the application is using MY_INIT() */
|
|
|
|
if (!org_my_init_done)
|
|
|
|
my_thread_end();
|
2001-04-11 13:04:03 +02:00
|
|
|
#endif
|
2002-05-15 15:36:41 +02:00
|
|
|
/* If library called my_init(), free memory allocated by it */
|
|
|
|
if (!org_my_init_done)
|
|
|
|
my_end(0);
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
|
2001-11-03 20:33:11 +01:00
|
|
|
my_bool STDCALL mysql_thread_init()
|
2001-08-10 18:37:36 +02:00
|
|
|
{
|
|
|
|
#ifdef THREAD
|
2001-10-02 04:53:00 +02:00
|
|
|
return my_thread_init();
|
2001-08-10 18:37:36 +02:00
|
|
|
#else
|
2001-10-02 04:53:00 +02:00
|
|
|
return 0;
|
2001-08-10 18:37:36 +02:00
|
|
|
#endif
|
|
|
|
}
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-11-03 20:33:11 +01:00
|
|
|
void STDCALL mysql_thread_end()
|
2001-08-10 18:37:36 +02:00
|
|
|
{
|
|
|
|
#ifdef THREAD
|
2001-10-02 04:53:00 +02:00
|
|
|
my_thread_end();
|
2001-08-10 18:37:36 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void start_embedded_connection(NET * net)
|
|
|
|
{
|
2002-06-17 13:24:51 +02:00
|
|
|
// start_embedded_conn1(net);
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2001-09-30 04:47:34 +02:00
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
void end_embedded_connection(NET * net)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2001-10-02 04:53:00 +02:00
|
|
|
THD *thd = (THD *) net->vio->dest_thd;
|
|
|
|
delete thd;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
|
|
|
|
} /* extern "C" */
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_START
|
2002-06-17 13:24:51 +02:00
|
|
|
NET *get_mysql_net(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
return &((THD *)mysql->net.vio->dest_thd)->net;
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_embedded_mysql(MYSQL *mysql, int client_flag, char *db)
|
|
|
|
{
|
|
|
|
THD *thd = (THD *)mysql->net.vio->dest_thd;
|
|
|
|
mysql->reconnect= 1; /* Reconnect as default */
|
|
|
|
mysql->server_status= SERVER_STATUS_AUTOCOMMIT;
|
|
|
|
|
|
|
|
mysql->protocol_version= ::protocol_version;
|
|
|
|
mysql->thread_id= thd->thread_id;
|
|
|
|
strmake(mysql->scramble_buff, thd->scramble, 8);
|
|
|
|
mysql->server_capabilities= CLIENT_LONG_FLAG | CLIENT_CONNECT_WITH_DB |
|
|
|
|
CLIENT_TRANSACTIONS;
|
|
|
|
mysql->server_language= MY_CHARSET_CURRENT;
|
|
|
|
mysql->server_status= thd->server_status;
|
|
|
|
mysql->client_flag= client_flag | mysql->options.client_flag;
|
|
|
|
mysql->db= db;
|
|
|
|
thd->mysql= mysql;
|
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_END
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
static int embedded_thd_net_init(NET *net, unsigned char *buff)
|
|
|
|
{
|
|
|
|
net->buff = buff;
|
|
|
|
if (net_buffer_length > max_allowed_packet)
|
|
|
|
max_allowed_packet= net_buffer_length;
|
|
|
|
net->buff_end= net->buff+(net->max_packet=net_buffer_length);
|
|
|
|
net->vio= NULL;
|
|
|
|
net->no_send_ok= 0;
|
|
|
|
net->error=0; net->return_errno=0; net->return_status=0;
|
2002-10-13 11:23:55 +02:00
|
|
|
// net->timeout=(uint) net_read_timeout; /* Timeout for read */
|
2002-06-17 13:24:51 +02:00
|
|
|
net->pkt_nr= net->compress_pkt_nr=0;
|
|
|
|
net->write_pos= net->read_pos = net->buff;
|
|
|
|
net->last_error[0]= 0;
|
|
|
|
net->compress= 0;
|
|
|
|
net->reading_or_writing= 0;
|
|
|
|
net->where_b = net->remain_in_buf= 0;
|
|
|
|
net->last_errno= 0;
|
|
|
|
net->query_cache_query= 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_START
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
void *create_embedded_thd(Vio *vio, unsigned char *buff, int client_flag, char *db)
|
|
|
|
{
|
|
|
|
THD * thd= new THD;
|
|
|
|
embedded_thd_net_init(&thd->net, buff);
|
|
|
|
|
|
|
|
/* if (protocol_version>9) */
|
|
|
|
thd->net.return_errno=1;
|
|
|
|
thd->thread_id= thread_id++;
|
|
|
|
|
|
|
|
if (thd->store_globals())
|
|
|
|
{
|
|
|
|
fprintf(stderr,"store_globals failed.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
thd->mysys_var= my_thread_var;
|
|
|
|
thd->dbug_thread_id= my_thread_id();
|
|
|
|
thd->thread_stack= (char*) &thd;
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
// if (thd->max_join_size == HA_POS_ERROR)
|
|
|
|
// thd->options |= OPTION_BIG_SELECTS;
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
thd->proc_info=0; // Remove 'login'
|
|
|
|
thd->command=COM_SLEEP;
|
|
|
|
thd->version=refresh_version;
|
|
|
|
thd->set_time();
|
|
|
|
init_sql_alloc(&thd->mem_root,8192,8192);
|
|
|
|
thd->client_capabilities= client_flag;
|
2002-10-13 11:23:55 +02:00
|
|
|
// thd->max_packet_length= max_allowed_packet;
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->net.vio = vio;
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
// if (thd->client_capabilities & CLIENT_INTERACTIVE)
|
|
|
|
// thd->inactive_timeout= net_interactive_timeout;
|
2002-06-17 13:24:51 +02:00
|
|
|
if (thd->client_capabilities & CLIENT_TRANSACTIONS)
|
|
|
|
thd->net.return_status= &thd->server_status;
|
|
|
|
|
|
|
|
thd->db= db;
|
2002-06-18 17:35:34 +02:00
|
|
|
thd->db_length= db ? strip_sp(db) : 0;
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->db_access= DB_ACLS;
|
|
|
|
thd->master_access= ~NO_ACCESS;
|
|
|
|
|
|
|
|
return thd;
|
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_END
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
bool send_fields(THD *thd, List<Item> &list, uint flag)
|
|
|
|
{
|
|
|
|
List_iterator_fast<Item> it(list);
|
|
|
|
Item *item;
|
|
|
|
MEM_ROOT *alloc;
|
|
|
|
MYSQL_FIELD *field, *client_field;
|
|
|
|
unsigned int field_count= list.elements;
|
|
|
|
MYSQL *mysql= thd->mysql;
|
|
|
|
|
|
|
|
if (!(mysql->result=(MYSQL_RES*) my_malloc(sizeof(MYSQL_RES)+
|
2002-12-12 09:16:34 +01:00
|
|
|
sizeof(ulong) * (field_count + 1),
|
2002-06-17 13:24:51 +02:00
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err;
|
2002-12-12 09:16:34 +01:00
|
|
|
mysql->result->lengths= (ulong *)(mysql->result + 1);
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
mysql->field_count=field_count;
|
|
|
|
alloc= &mysql->field_alloc;
|
|
|
|
field= (MYSQL_FIELD *)alloc_root(alloc, sizeof(MYSQL_FIELD)*list.elements);
|
|
|
|
if (!field)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
client_field= field;
|
|
|
|
while ((item= it++))
|
|
|
|
{
|
|
|
|
Send_field server_field;
|
|
|
|
item->make_field(&server_field);
|
|
|
|
|
|
|
|
client_field->table= strdup_root(alloc, server_field.table_name);
|
|
|
|
client_field->name= strdup_root(alloc,server_field.col_name);
|
|
|
|
client_field->length= server_field.length;
|
|
|
|
client_field->type= server_field.type;
|
|
|
|
client_field->flags= server_field.flags;
|
|
|
|
client_field->decimals= server_field.decimals;
|
|
|
|
|
|
|
|
if (INTERNAL_NUM_FIELD(client_field))
|
|
|
|
client_field->flags|= NUM_FLAG;
|
|
|
|
|
|
|
|
if (flag & 2)
|
|
|
|
{
|
|
|
|
char buff[80];
|
|
|
|
String tmp(buff, sizeof(buff), default_charset_info), *res;
|
|
|
|
|
|
|
|
if (!(res=item->val_str(&tmp)))
|
|
|
|
client_field->def= strdup_root(alloc, "");
|
|
|
|
else
|
|
|
|
client_field->def= strdup_root(alloc, tmp.ptr());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
client_field->def=0;
|
|
|
|
client_field->max_length= 0;
|
|
|
|
++client_field;
|
|
|
|
}
|
|
|
|
mysql->result->fields = field;
|
|
|
|
|
|
|
|
if (!(mysql->result->data= (MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
init_alloc_root(&mysql->result->data->alloc,8192,0); /* Assume rowlength < 8192 */
|
|
|
|
mysql->result->data->alloc.min_malloc=sizeof(MYSQL_ROWS);
|
|
|
|
mysql->result->data->rows=0;
|
|
|
|
mysql->result->data->fields=field_count;
|
|
|
|
mysql->result->field_count=field_count;
|
|
|
|
mysql->result->data->prev_ptr= &mysql->result->data->data;
|
|
|
|
|
|
|
|
mysql->result->field_alloc= mysql->field_alloc;
|
|
|
|
mysql->result->current_field=0;
|
|
|
|
mysql->result->current_row=0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
2002-10-13 11:23:55 +02:00
|
|
|
send_error(thd, ER_OUT_OF_RESOURCES); /* purecov: inspected */
|
2002-06-17 13:24:51 +02:00
|
|
|
return 1; /* purecov: inspected */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the length of next field. Change parameter to point at fieldstart */
|
|
|
|
static ulong
|
|
|
|
net_field_length(uchar **packet)
|
|
|
|
{
|
|
|
|
reg1 uchar *pos= *packet;
|
|
|
|
if (*pos < 251)
|
|
|
|
{
|
|
|
|
(*packet)++;
|
|
|
|
return (ulong) *pos;
|
|
|
|
}
|
|
|
|
if (*pos == 251)
|
|
|
|
{
|
|
|
|
(*packet)++;
|
|
|
|
return NULL_LENGTH;
|
|
|
|
}
|
|
|
|
if (*pos == 252)
|
|
|
|
{
|
|
|
|
(*packet)+=3;
|
|
|
|
return (ulong) uint2korr(pos+1);
|
|
|
|
}
|
|
|
|
if (*pos == 253)
|
|
|
|
{
|
|
|
|
(*packet)+=4;
|
|
|
|
return (ulong) uint3korr(pos+1);
|
|
|
|
}
|
|
|
|
(*packet)+=9; /* Must be 254 when here */
|
|
|
|
return (ulong) uint4korr(pos+1);
|
|
|
|
}
|
|
|
|
|
2002-11-06 11:42:44 +01:00
|
|
|
bool select_send::send_data(List<Item> &items)
|
|
|
|
{
|
|
|
|
List_iterator_fast<Item> li(items);
|
|
|
|
Item *item;
|
|
|
|
MYSQL_ROWS *cur;
|
|
|
|
int n_fields= items.elements;
|
|
|
|
ulong len;
|
|
|
|
CONVERT *convert= thd->variables.convert_set;
|
|
|
|
CHARSET_INFO *charset_info= thd->packet.charset();
|
|
|
|
MYSQL_DATA *result= thd->mysql->result->data;
|
|
|
|
MEM_ROOT *alloc= &result->alloc;
|
|
|
|
MYSQL_ROW cur_field;
|
|
|
|
MYSQL_FIELD *mysql_fields= thd->mysql->result->fields;
|
|
|
|
|
|
|
|
DBUG_ENTER("send_data");
|
|
|
|
|
|
|
|
if (unit->offset_limit_cnt)
|
|
|
|
{ // using limit offset,count
|
|
|
|
unit->offset_limit_cnt--;
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
result->rows++;
|
|
|
|
if (!(cur= (MYSQL_ROWS *)alloc_root(alloc, sizeof(MYSQL_ROWS)+(n_fields + 1) * sizeof(char *))))
|
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
cur->data= (MYSQL_ROW)(((char *)cur) + sizeof(MYSQL_ROWS));
|
|
|
|
|
|
|
|
*result->prev_ptr= cur;
|
|
|
|
result->prev_ptr= &cur->next;
|
|
|
|
cur_field=cur->data;
|
|
|
|
for (item=li++; item; item=li++, cur_field++, mysql_fields++)
|
|
|
|
{
|
|
|
|
if (item->embedded_send(convert, charset_info, alloc, cur_field, &len))
|
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
if (mysql_fields->max_length < len)
|
|
|
|
mysql_fields->max_length=len;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cur_field= 0;
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
bool do_command(THD *thd)
|
|
|
|
{
|
|
|
|
MYSQL *mysql= thd->mysql;
|
|
|
|
|
|
|
|
char *packet;
|
|
|
|
uint old_timeout;
|
|
|
|
ulong packet_length;
|
|
|
|
NET *net;
|
|
|
|
enum enum_server_command command;
|
|
|
|
DBUG_ENTER("do_command");
|
|
|
|
|
|
|
|
net= &thd->net;
|
|
|
|
thd->current_tablenr=0;
|
|
|
|
|
|
|
|
packet=0;
|
2002-10-13 11:23:55 +02:00
|
|
|
// old_timeout=net->timeout;
|
|
|
|
// net->timeout=(uint) thd->inactive_timeout; // Wait max for 8 hours
|
2002-06-17 13:24:51 +02:00
|
|
|
net->last_error[0]=0; // Clear error message
|
|
|
|
net->last_errno=0;
|
|
|
|
|
|
|
|
net_new_transaction(net);
|
|
|
|
if ((packet_length=my_net_read(net)) == packet_error)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("info",("Got error reading command from socket %s",
|
|
|
|
vio_description(net->vio) ));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
packet=(char*) net->read_pos;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
|
|
|
command = (enum enum_server_command) (uchar) packet[0];
|
2002-06-17 13:24:51 +02:00
|
|
|
DBUG_PRINT("info",("Command on %s = %d (%s)",
|
|
|
|
vio_description(net->vio), command,
|
|
|
|
command_name[command]));
|
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
// net->timeout=old_timeout; // Timeout for writing
|
2002-06-17 13:24:51 +02:00
|
|
|
DBUG_RETURN(dispatch_command(command,thd, packet+1, (uint) packet_length));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-10-13 11:23:55 +02:00
|
|
|
send_ok(THD *thd,ha_rows affected_rows,ulonglong id,const char *message)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
2002-10-13 11:23:55 +02:00
|
|
|
NET *net= &thd->net;
|
2002-06-17 13:24:51 +02:00
|
|
|
if (net->no_send_ok) // hack for re-parsing queries
|
|
|
|
return;
|
|
|
|
|
|
|
|
DBUG_ENTER("send_ok");
|
|
|
|
MYSQL *mysql= current_thd->mysql;
|
|
|
|
mysql->affected_rows= affected_rows;
|
|
|
|
mysql->insert_id= id;
|
|
|
|
if (net->return_status)
|
|
|
|
mysql->server_status= *net->return_status;
|
|
|
|
if (message)
|
|
|
|
{
|
|
|
|
strmake(net->last_error, message, sizeof(net->last_error));
|
|
|
|
mysql->info= net->last_error;
|
|
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
void
|
|
|
|
send_eof(THD *thd, bool no_flush)
|
|
|
|
{
|
|
|
|
/* static char eof_buff[1]= { (char) 254 };
|
|
|
|
NET *net= &thd->net;
|
|
|
|
DBUG_ENTER("send_eof");
|
|
|
|
if (net->vio != 0)
|
|
|
|
{
|
|
|
|
if (!no_flush && (thd->client_capabilities & CLIENT_PROTOCOL_41))
|
|
|
|
{
|
|
|
|
char buff[5];
|
|
|
|
uint tmp= min(thd->total_warn_count, 65535);
|
|
|
|
buff[0]=254;
|
|
|
|
int2store(buff+1, tmp);
|
|
|
|
int2store(buff+3, 0); // No flags yet
|
|
|
|
VOID(my_net_write(net,buff,5));
|
|
|
|
VOID(net_flush(net));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VOID(my_net_write(net,eof_buff,1));
|
|
|
|
if (!no_flush)
|
|
|
|
VOID(net_flush(net));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
int embedded_send_row(THD *thd, int n_fields, char *data, int data_len)
|
|
|
|
{
|
|
|
|
MYSQL *mysql= thd->mysql;
|
|
|
|
MYSQL_DATA *result= mysql->result->data;
|
|
|
|
MYSQL_ROWS **prev_ptr= &mysql->result->data->data;
|
|
|
|
MYSQL_ROWS *cur;
|
|
|
|
MEM_ROOT *alloc= &mysql->result->data->alloc;
|
|
|
|
char *to;
|
|
|
|
uchar *cp;
|
|
|
|
MYSQL_FIELD *mysql_fields= mysql->result->fields;
|
|
|
|
MYSQL_ROW cur_field, end_field;
|
|
|
|
ulong len;
|
|
|
|
|
|
|
|
DBUG_ENTER("embedded_send_row");
|
|
|
|
|
|
|
|
result->rows++;
|
2002-12-12 09:16:34 +01:00
|
|
|
if (!(cur= (MYSQL_ROWS *)alloc_root(alloc, sizeof(MYSQL_ROWS) + (n_fields + 1) * sizeof(MYSQL_ROW) + data_len)))
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2002-12-12 09:16:34 +01:00
|
|
|
cur->data= (MYSQL_ROW)(cur + 1);
|
2002-06-17 13:24:51 +02:00
|
|
|
|
|
|
|
*result->prev_ptr= cur;
|
|
|
|
result->prev_ptr= &cur->next;
|
|
|
|
to= (char*) (cur->data+n_fields+1);
|
|
|
|
cp= (uchar *)data;
|
2002-07-11 10:43:21 +02:00
|
|
|
end_field= cur->data + n_fields;
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2002-10-23 13:55:35 +02:00
|
|
|
for (cur_field=cur->data; cur_field<end_field; cur_field++, mysql_fields++)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
if ((len= (ulong) net_field_length(&cp)) == NULL_LENGTH)
|
|
|
|
{
|
|
|
|
*cur_field = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*cur_field= to;
|
|
|
|
memcpy(to,(char*) cp,len);
|
|
|
|
to[len]=0;
|
|
|
|
to+=len+1;
|
|
|
|
cp+=len;
|
|
|
|
if (mysql_fields->max_length < len)
|
|
|
|
mysql_fields->max_length=len;
|
|
|
|
}
|
|
|
|
}
|
2002-07-11 10:43:21 +02:00
|
|
|
|
|
|
|
*cur_field= to;
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
2001-10-02 04:53:00 +02:00
|
|
|
|