~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_connect.cc

  • Committer: Eric Herman
  • Date: 2008-12-07 15:29:44 UTC
  • mto: (656.1.14 devel)
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: eric@mysql.com-20081207152944-cq1nx1cyi0huqj0f
Added pointer to online version of the FAQ

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
 
 
21
/*
 
22
  Functions to autenticate and handle reqests for a connection
 
23
*/
 
24
#include <drizzled/server_includes.h>
 
25
#include <netdb.h>
 
26
 
 
27
#include <drizzled/authentication.h>
 
28
#include <drizzled/db.h>
 
29
#include <drizzled/error.h>
 
30
#include <drizzled/sql_parse.h>
 
31
#include <drizzled/scheduler.h>
 
32
#include <drizzled/session.h>
 
33
 
 
34
extern scheduler_functions thread_scheduler;
 
35
 
 
36
#define MIN_HANDSHAKE_SIZE      6
 
37
 
 
38
/*
 
39
  Get structure for logging connection data for the current user
 
40
*/
 
41
 
 
42
char *ip_to_hostname(struct sockaddr_storage *in, int addrLen)
 
43
{
 
44
  char *name;
 
45
 
 
46
  int gxi_error;
 
47
  char hostname_buff[NI_MAXHOST];
 
48
 
 
49
  /* Historical comparison for 127.0.0.1 */
 
50
  gxi_error= getnameinfo((struct sockaddr *)in, addrLen,
 
51
                         hostname_buff, NI_MAXHOST,
 
52
                         NULL, 0, NI_NUMERICHOST);
 
53
  if (gxi_error)
 
54
  {
 
55
    return NULL;
 
56
  }
 
57
 
 
58
  if (!(name= my_strdup(hostname_buff, MYF(0))))
 
59
  {
 
60
    return NULL;
 
61
  }
 
62
 
 
63
  return NULL;
 
64
}
 
65
 
 
66
/**
 
67
  Check if user exist and password supplied is correct.
 
68
 
 
69
  @param  session         thread handle, session->security_ctx->{host,user,ip} are used
 
70
  @param  command     originator of the check: now check_user is called
 
71
                      during connect and change user procedures; used for
 
72
                      logging.
 
73
  @param  passwd      scrambled password received from client
 
74
  @param  passwd_len  length of scrambled password
 
75
  @param  db          database name to connect to, may be NULL
 
76
  @param  check_count true if establishing a new connection. In this case
 
77
                      check that we have not exceeded the global
 
78
                      max_connections limist
 
79
 
 
80
  @note Host, user and passwd may point to communication buffer.
 
81
  Current implementation does not depend on that, but future changes
 
82
  should be done with this in mind; 'session' is INOUT, all other params
 
83
  are 'IN'.
 
84
 
 
85
  @retval  0  OK
 
86
  @retval  1  error, e.g. access denied or handshake error, not sent to
 
87
              the client. A message is pushed into the error stack.
 
88
*/
 
89
 
 
90
int
 
91
check_user(Session *session, const char *passwd,
 
92
           uint32_t passwd_len, const char *db,
 
93
           bool check_count)
 
94
{
 
95
  LEX_STRING db_str= { (char *) db, db ? strlen(db) : 0 };
 
96
  bool is_authenticated;
 
97
 
 
98
  /*
 
99
    Clear session->db as it points to something, that will be freed when
 
100
    connection is closed. We don't want to accidentally free a wrong
 
101
    pointer if connect failed. Also in case of 'CHANGE USER' failure,
 
102
    current database will be switched to 'no database selected'.
 
103
  */
 
104
  session->reset_db(NULL, 0);
 
105
 
 
106
  if (passwd_len != 0 && passwd_len != SCRAMBLE_LENGTH)
 
107
  {
 
108
    my_error(ER_HANDSHAKE_ERROR, MYF(0), session->main_security_ctx.ip);
 
109
    return(1);
 
110
  }
 
111
 
 
112
  is_authenticated= authenticate_user(session, passwd);
 
113
 
 
114
  if (is_authenticated != true)
 
115
  {
 
116
    my_error(ER_ACCESS_DENIED_ERROR, MYF(0),
 
117
             session->main_security_ctx.user,
 
118
             session->main_security_ctx.ip,
 
119
             passwd_len ? ER(ER_YES) : ER(ER_NO));
 
120
 
 
121
    return 1;
 
122
  }
 
123
 
 
124
 
 
125
  USER_RESOURCES ur;
 
126
  session->security_ctx->skip_grants();
 
127
  memset(&ur, 0, sizeof(USER_RESOURCES));
 
128
 
 
129
  if (check_count)
 
130
  {
 
131
    pthread_mutex_lock(&LOCK_connection_count);
 
132
    bool count_ok= connection_count <= max_connections;
 
133
    pthread_mutex_unlock(&LOCK_connection_count);
 
134
 
 
135
    if (!count_ok)
 
136
    {                                         // too many connections
 
137
      my_error(ER_CON_COUNT_ERROR, MYF(0));
 
138
      return(1);
 
139
    }
 
140
  }
 
141
 
 
142
  /* Change database if necessary */
 
143
  if (db && db[0])
 
144
  {
 
145
    if (mysql_change_db(session, &db_str, false))
 
146
    {
 
147
      /* mysql_change_db() has pushed the error message. */
 
148
      return(1);
 
149
    }
 
150
  }
 
151
  my_ok(session);
 
152
  session->password= test(passwd_len);          // remember for error messages
 
153
  /* Ready to handle queries */
 
154
  return(0);
 
155
}
 
156
 
 
157
 
 
158
/*
 
159
  Check for maximum allowable user connections, if the mysqld server is
 
160
  started with corresponding variable that is greater then 0.
 
161
*/
 
162
 
 
163
extern "C" unsigned char *get_key_conn(user_conn *buff, size_t *length,
 
164
                               bool not_used __attribute__((unused)))
 
165
{
 
166
  *length= buff->len;
 
167
  return (unsigned char*) buff->user;
 
168
}
 
169
 
 
170
 
 
171
extern "C" void free_user(struct user_conn *uc)
 
172
{
 
173
  free((char*) uc);
 
174
}
 
175
 
 
176
void session_init_client_charset(Session *session, uint32_t cs_number)
 
177
{
 
178
  /*
 
179
   Use server character set and collation if
 
180
   - opt_character_set_client_handshake is not set
 
181
   - client has not specified a character set
 
182
   - client character set is the same as the servers
 
183
   - client character set doesn't exists in server
 
184
  */
 
185
  if (!opt_character_set_client_handshake ||
 
186
      !(session->variables.character_set_client= get_charset(cs_number, MYF(0))) ||
 
187
      !my_strcasecmp(&my_charset_utf8_general_ci,
 
188
                     global_system_variables.character_set_client->name,
 
189
                     session->variables.character_set_client->name))
 
190
  {
 
191
    session->variables.character_set_client=
 
192
      global_system_variables.character_set_client;
 
193
    session->variables.collation_connection=
 
194
      global_system_variables.collation_connection;
 
195
    session->variables.character_set_results=
 
196
      global_system_variables.character_set_results;
 
197
  }
 
198
  else
 
199
  {
 
200
    session->variables.character_set_results=
 
201
      session->variables.collation_connection=
 
202
      session->variables.character_set_client;
 
203
  }
 
204
}
 
205
 
 
206
 
 
207
/*
 
208
  Initialize connection threads
 
209
*/
 
210
 
 
211
bool init_new_connection_handler_thread()
 
212
{
 
213
  pthread_detach_this_thread();
 
214
  /* Win32 calls this in pthread_create */
 
215
  if (my_thread_init())
 
216
    return 1;
 
217
  return 0;
 
218
}
 
219
 
 
220
/*
 
221
  Perform handshake, authorize client and update session ACL variables.
 
222
 
 
223
  SYNOPSIS
 
224
    check_connection()
 
225
    session  thread handle
 
226
 
 
227
  RETURN
 
228
     0  success, OK is sent to user, session is updated.
 
229
    -1  error, which is sent to user
 
230
   > 0  error code (not sent to user)
 
231
*/
 
232
 
 
233
static int check_connection(Session *session)
 
234
{
 
235
  NET *net= &session->net;
 
236
  uint32_t pkt_len= 0;
 
237
  char *end;
 
238
 
 
239
  // TCP/IP connection
 
240
  {
 
241
    char ip[NI_MAXHOST];
 
242
 
 
243
    if (net_peer_addr(net, ip, &session->peer_port, NI_MAXHOST))
 
244
    {
 
245
      my_error(ER_BAD_HOST_ERROR, MYF(0), session->main_security_ctx.ip);
 
246
      return 1;
 
247
    }
 
248
    if (!(session->main_security_ctx.ip= my_strdup(ip,MYF(MY_WME))))
 
249
      return 1; /* The error is set by my_strdup(). */
 
250
  }
 
251
  net_keepalive(net, true);
 
252
 
 
253
  uint32_t server_capabilites;
 
254
  {
 
255
    /* buff[] needs to big enough to hold the server_version variable */
 
256
    char buff[SERVER_VERSION_LENGTH + SCRAMBLE_LENGTH + 64];
 
257
    server_capabilites= CLIENT_BASIC_FLAGS;
 
258
 
 
259
    if (opt_using_transactions)
 
260
      server_capabilites|= CLIENT_TRANSACTIONS;
 
261
#ifdef HAVE_COMPRESS
 
262
    server_capabilites|= CLIENT_COMPRESS;
 
263
#endif /* HAVE_COMPRESS */
 
264
 
 
265
    end= my_stpncpy(buff, server_version, SERVER_VERSION_LENGTH) + 1;
 
266
    int4store((unsigned char*) end, session->thread_id);
 
267
    end+= 4;
 
268
    /*
 
269
      So as check_connection is the only entry point to authorization
 
270
      procedure, scramble is set here. This gives us new scramble for
 
271
      each handshake.
 
272
    */
 
273
    create_random_string(session->scramble, SCRAMBLE_LENGTH, &session->rand);
 
274
    /*
 
275
      Old clients does not understand long scrambles, but can ignore packet
 
276
      tail: that's why first part of the scramble is placed here, and second
 
277
      part at the end of packet.
 
278
    */
 
279
    end= strncpy(end, session->scramble, SCRAMBLE_LENGTH_323);
 
280
    end+= SCRAMBLE_LENGTH_323 + 1;
 
281
 
 
282
    int2store(end, server_capabilites);
 
283
    /* write server characteristics: up to 16 bytes allowed */
 
284
    end[2]=(char) default_charset_info->number;
 
285
    int2store(end+3, session->server_status);
 
286
    memset(end+5, 0, 13);
 
287
    end+= 18;
 
288
    /* write scramble tail */
 
289
    size_t scramble_len= SCRAMBLE_LENGTH - SCRAMBLE_LENGTH_323;
 
290
    end= strncpy(end, session->scramble + SCRAMBLE_LENGTH_323, scramble_len);
 
291
    end+= scramble_len + 1;
 
292
 
 
293
    /* At this point we write connection message and read reply */
 
294
    if (net_write_command(net, (unsigned char) protocol_version, (unsigned char*) "", 0,
 
295
                          (unsigned char*) buff, (size_t) (end-buff)) ||
 
296
        (pkt_len= my_net_read(net)) == packet_error ||
 
297
        pkt_len < MIN_HANDSHAKE_SIZE)
 
298
    {
 
299
      my_error(ER_HANDSHAKE_ERROR, MYF(0),
 
300
               session->main_security_ctx.ip);
 
301
      return 1;
 
302
    }
 
303
  }
 
304
  if (session->packet.alloc(session->variables.net_buffer_length))
 
305
    return 1; /* The error is set by alloc(). */
 
306
 
 
307
  session->client_capabilities= uint2korr(net->read_pos);
 
308
 
 
309
 
 
310
  session->client_capabilities|= ((uint32_t) uint2korr(net->read_pos+2)) << 16;
 
311
  session->max_client_packet_length= uint4korr(net->read_pos+4);
 
312
  session_init_client_charset(session, (uint) net->read_pos[8]);
 
313
  session->update_charset();
 
314
  end= (char*) net->read_pos+32;
 
315
 
 
316
  /*
 
317
    Disable those bits which are not supported by the server.
 
318
    This is a precautionary measure, if the client lies. See Bug#27944.
 
319
  */
 
320
  session->client_capabilities&= server_capabilites;
 
321
 
 
322
  if (end >= (char*) net->read_pos+ pkt_len +2)
 
323
  {
 
324
 
 
325
    my_error(ER_HANDSHAKE_ERROR, MYF(0), session->main_security_ctx.ip);
 
326
    return 1;
 
327
  }
 
328
 
 
329
  if (session->client_capabilities & CLIENT_INTERACTIVE)
 
330
    session->variables.net_wait_timeout= session->variables.net_interactive_timeout;
 
331
  if ((session->client_capabilities & CLIENT_TRANSACTIONS) &&
 
332
      opt_using_transactions)
 
333
    net->return_status= &session->server_status;
 
334
 
 
335
  char *user= end;
 
336
  char *passwd= strchr(user, '\0')+1;
 
337
  uint32_t user_len= passwd - user - 1;
 
338
  char *db= passwd;
 
339
  char db_buff[NAME_LEN + 1];           // buffer to store db in utf8
 
340
  char user_buff[USERNAME_LENGTH + 1];  // buffer to store user in utf8
 
341
  uint32_t dummy_errors;
 
342
 
 
343
  /*
 
344
    Old clients send null-terminated string as password; new clients send
 
345
    the size (1 byte) + string (not null-terminated). Hence in case of empty
 
346
    password both send '\0'.
 
347
 
 
348
    This strlen() can't be easily deleted without changing protocol.
 
349
 
 
350
    Cast *passwd to an unsigned char, so that it doesn't extend the sign for
 
351
    *passwd > 127 and become 2**32-127+ after casting to uint.
 
352
  */
 
353
  uint32_t passwd_len= session->client_capabilities & CLIENT_SECURE_CONNECTION ?
 
354
    (unsigned char)(*passwd++) : strlen(passwd);
 
355
  db= session->client_capabilities & CLIENT_CONNECT_WITH_DB ?
 
356
    db + passwd_len + 1 : 0;
 
357
  /* strlen() can't be easily deleted without changing protocol */
 
358
  uint32_t db_len= db ? strlen(db) : 0;
 
359
 
 
360
  if (passwd + passwd_len + db_len > (char *)net->read_pos + pkt_len)
 
361
  {
 
362
    my_error(ER_HANDSHAKE_ERROR, MYF(0), session->main_security_ctx.ip);
 
363
    return 1;
 
364
  }
 
365
 
 
366
  /* Since 4.1 all database names are stored in utf8 */
 
367
  if (db)
 
368
  {
 
369
    db_buff[copy_and_convert(db_buff, sizeof(db_buff)-1,
 
370
                             system_charset_info,
 
371
                             db, db_len,
 
372
                             session->charset(), &dummy_errors)]= 0;
 
373
    db= db_buff;
 
374
  }
 
375
 
 
376
  user_buff[user_len= copy_and_convert(user_buff, sizeof(user_buff)-1,
 
377
                                       system_charset_info, user, user_len,
 
378
                                       session->charset(), &dummy_errors)]= '\0';
 
379
  user= user_buff;
 
380
 
 
381
  /* If username starts and ends in "'", chop them off */
 
382
  if (user_len > 1 && user[0] == '\'' && user[user_len - 1] == '\'')
 
383
  {
 
384
    user[user_len-1]= 0;
 
385
    user++;
 
386
    user_len-= 2;
 
387
  }
 
388
 
 
389
  if (session->main_security_ctx.user)
 
390
    if (session->main_security_ctx.user)
 
391
      free(session->main_security_ctx.user);
 
392
  if (!(session->main_security_ctx.user= my_strdup(user, MYF(MY_WME))))
 
393
    return 1; /* The error is set by my_strdup(). */
 
394
  return check_user(session, passwd, passwd_len, db, true);
 
395
}
 
396
 
 
397
 
 
398
/*
 
399
  Setup thread to be used with the current thread
 
400
 
 
401
  SYNOPSIS
 
402
    bool setup_connection_thread_globals()
 
403
    session    Thread/connection handler
 
404
 
 
405
  RETURN
 
406
    0   ok
 
407
    1   Error (out of memory)
 
408
        In this case we will close the connection and increment status
 
409
*/
 
410
 
 
411
bool setup_connection_thread_globals(Session *session)
 
412
{
 
413
  if (session->store_globals())
 
414
  {
 
415
    close_connection(session, ER_OUT_OF_RESOURCES, 1);
 
416
    statistic_increment(aborted_connects,&LOCK_status);
 
417
    thread_scheduler.end_thread(session, 0);
 
418
    return 1;                                   // Error
 
419
  }
 
420
  return 0;
 
421
}
 
422
 
 
423
 
 
424
/*
 
425
  Autenticate user, with error reporting
 
426
 
 
427
  SYNOPSIS
 
428
   login_connection()
 
429
   session        Thread handler
 
430
 
 
431
  NOTES
 
432
    Connection is not closed in case of errors
 
433
 
 
434
  RETURN
 
435
    0    ok
 
436
    1    error
 
437
*/
 
438
 
 
439
 
 
440
bool login_connection(Session *session)
 
441
{
 
442
  NET *net= &session->net;
 
443
  int error;
 
444
 
 
445
  /* Use "connect_timeout" value during connection phase */
 
446
  my_net_set_read_timeout(net, connect_timeout);
 
447
  my_net_set_write_timeout(net, connect_timeout);
 
448
 
 
449
  lex_start(session);
 
450
 
 
451
  error= check_connection(session);
 
452
  net_end_statement(session);
 
453
 
 
454
  if (error)
 
455
  {                                             // Wrong permissions
 
456
    statistic_increment(aborted_connects,&LOCK_status);
 
457
    return(1);
 
458
  }
 
459
  /* Connect completed, set read/write timeouts back to default */
 
460
  my_net_set_read_timeout(net, session->variables.net_read_timeout);
 
461
  my_net_set_write_timeout(net, session->variables.net_write_timeout);
 
462
  return(0);
 
463
}
 
464
 
 
465
 
 
466
/*
 
467
  Close an established connection
 
468
 
 
469
  NOTES
 
470
    This mainly updates status variables
 
471
*/
 
472
 
 
473
void end_connection(Session *session)
 
474
{
 
475
  NET *net= &session->net;
 
476
  plugin_sessionvar_cleanup(session);
 
477
 
 
478
  if (session->killed || (net->error && net->vio != 0))
 
479
  {
 
480
    statistic_increment(aborted_threads,&LOCK_status);
 
481
  }
 
482
 
 
483
  if (net->error && net->vio != 0)
 
484
  {
 
485
    if (!session->killed && session->variables.log_warnings > 1)
 
486
    {
 
487
      Security_context *sctx= session->security_ctx;
 
488
 
 
489
      sql_print_warning(ER(ER_NEW_ABORTING_CONNECTION),
 
490
                        session->thread_id,(session->db ? session->db : "unconnected"),
 
491
                        sctx->user ? sctx->user : "unauthenticated",
 
492
                        sctx->ip,
 
493
                        (session->main_da.is_error() ? session->main_da.message() :
 
494
                         ER(ER_UNKNOWN_ERROR)));
 
495
    }
 
496
  }
 
497
}
 
498
 
 
499
 
 
500
/*
 
501
  Initialize Session to handle queries
 
502
*/
 
503
 
 
504
void prepare_new_connection_state(Session* session)
 
505
{
 
506
  Security_context *sctx= session->security_ctx;
 
507
 
 
508
  if (session->variables.max_join_size == HA_POS_ERROR)
 
509
    session->options |= OPTION_BIG_SELECTS;
 
510
  if (session->client_capabilities & CLIENT_COMPRESS)
 
511
    session->net.compress=1;                            // Use compression
 
512
 
 
513
  /*
 
514
    Much of this is duplicated in create_embedded_session() for the
 
515
    embedded server library.
 
516
    TODO: refactor this to avoid code duplication there
 
517
  */
 
518
  session->version= refresh_version;
 
519
  session->set_proc_info(0);
 
520
  session->command= COM_SLEEP;
 
521
  session->set_time();
 
522
  session->init_for_queries();
 
523
 
 
524
  /* In the past this would only run of the user did not have SUPER_ACL */
 
525
  if (sys_init_connect.value_length)
 
526
  {
 
527
    execute_init_command(session, &sys_init_connect, &LOCK_sys_init_connect);
 
528
    if (session->is_error())
 
529
    {
 
530
      session->killed= Session::KILL_CONNECTION;
 
531
      sql_print_warning(ER(ER_NEW_ABORTING_CONNECTION),
 
532
                        session->thread_id,(session->db ? session->db : "unconnected"),
 
533
                        sctx->user ? sctx->user : "unauthenticated",
 
534
                        sctx->ip, "init_connect command failed");
 
535
      sql_print_warning("%s", session->main_da.message());
 
536
    }
 
537
    session->set_proc_info(0);
 
538
    session->set_time();
 
539
    session->init_for_queries();
 
540
  }
 
541
}
 
542
 
 
543
 
 
544
/*
 
545
  Thread handler for a connection
 
546
 
 
547
  SYNOPSIS
 
548
    handle_one_connection()
 
549
    arg         Connection object (Session)
 
550
 
 
551
  IMPLEMENTATION
 
552
    This function (normally) does the following:
 
553
    - Initialize thread
 
554
    - Initialize Session to be used with this thread
 
555
    - Authenticate user
 
556
    - Execute all queries sent on the connection
 
557
    - Take connection down
 
558
    - End thread  / Handle next connection using thread from thread cache
 
559
*/
 
560
 
 
561
pthread_handler_t handle_one_connection(void *arg)
 
562
{
 
563
  Session *session= (Session*) arg;
 
564
  uint32_t launch_time= (uint32_t) ((session->thr_create_utime= my_micro_time()) -
 
565
                              session->connect_utime);
 
566
 
 
567
  if (thread_scheduler.init_new_connection_thread())
 
568
  {
 
569
    close_connection(session, ER_OUT_OF_RESOURCES, 1);
 
570
    statistic_increment(aborted_connects,&LOCK_status);
 
571
    thread_scheduler.end_thread(session,0);
 
572
    return 0;
 
573
  }
 
574
  if (launch_time >= slow_launch_time*1000000L)
 
575
    statistic_increment(slow_launch_threads,&LOCK_status);
 
576
 
 
577
  /*
 
578
    handle_one_connection() is normally the only way a thread would
 
579
    start and would always be on the very high end of the stack ,
 
580
    therefore, the thread stack always starts at the address of the
 
581
    first local variable of handle_one_connection, which is session. We
 
582
    need to know the start of the stack so that we could check for
 
583
    stack overruns.
 
584
  */
 
585
  session->thread_stack= (char*) &session;
 
586
  if (setup_connection_thread_globals(session))
 
587
    return 0;
 
588
 
 
589
  for (;;)
 
590
  {
 
591
    NET *net= &session->net;
 
592
 
 
593
    if (login_connection(session))
 
594
      goto end_thread;
 
595
 
 
596
    prepare_new_connection_state(session);
 
597
 
 
598
    while (!net->error && net->vio != 0 &&
 
599
           !(session->killed == Session::KILL_CONNECTION))
 
600
    {
 
601
      if (do_command(session))
 
602
        break;
 
603
    }
 
604
    end_connection(session);
 
605
 
 
606
end_thread:
 
607
    close_connection(session, 0, 1);
 
608
    if (thread_scheduler.end_thread(session,1))
 
609
      return 0;                                 // Probably no-threads
 
610
 
 
611
    /*
 
612
      If end_thread() returns, we are either running with
 
613
      thread-handler=no-threads or this thread has been schedule to
 
614
      handle the next connection.
 
615
    */
 
616
    session= current_session;
 
617
    session->thread_stack= (char*) &session;
 
618
  }
 
619
}