~ubuntu-branches/ubuntu/quantal/drizzle/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
/* Copyright (C) 2000-2003 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */


/* create and drop of databases */
#include "config.h"

#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>

#include <set>
#include <string>
#include <fstream>

#include <drizzled/message/schema.pb.h>
#include "drizzled/error.h"
#include <drizzled/gettext.h>
#include <drizzled/my_hash.h>
#include "drizzled/internal/m_string.h"
#include <drizzled/session.h>
#include <drizzled/db.h>
#include <drizzled/sql_base.h>
#include <drizzled/lock.h>
#include <drizzled/errmsg_print.h>
#include <drizzled/transaction_services.h>
#include <drizzled/message/schema.pb.h>
#include "drizzled/sql_table.h"
#include "drizzled/plugin/storage_engine.h"
#include "drizzled/plugin/authorization.h"
#include "drizzled/global_charset_info.h"
#include "drizzled/pthread_globals.h"
#include "drizzled/charset.h"

#include <boost/thread/mutex.hpp>

boost::mutex LOCK_create_db;

#include "drizzled/internal/my_sys.h"

#define MAX_DROP_TABLE_Q_LEN      1024

using namespace std;

namespace drizzled
{

static long drop_tables_via_filenames(Session *session,
                                 SchemaIdentifier &schema_identifier,
                                 TableIdentifier::vector &dropped_tables);
static void change_db_impl(Session *session);
static void change_db_impl(Session *session, SchemaIdentifier &schema_identifier);

/*
  Create a database

  SYNOPSIS
  create_db()
  session		Thread handler
  db		Name of database to create
		Function assumes that this is already validated.
  create_info	Database create options (like character set)

  SIDE-EFFECTS
   1. Report back to client that command succeeded (my_ok)
   2. Report errors to client
   3. Log event to binary log

  RETURN VALUES
  false ok
  true  Error

*/

bool create_db(Session *session, const message::Schema &schema_message, const bool is_if_not_exists)
{
  TransactionServices &transaction_services= TransactionServices::singleton();
  bool error= false;

  /*
    Do not create database if another thread is holding read lock.
    Wait for global read lock before acquiring LOCK_create_db.
    After wait_if_global_read_lock() we have protection against another
    global read lock. If we would acquire LOCK_create_db first,
    another thread could step in and get the global read lock before we
    reach wait_if_global_read_lock(). If this thread tries the same as we
    (admin a db), it would then go and wait on LOCK_create_db...
    Furthermore wait_if_global_read_lock() checks if the current thread
    has the global read lock and refuses the operation with
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
  */
  if (session->wait_if_global_read_lock(false, true))
  {
    return false;
  }

  assert(schema_message.has_name());
  assert(schema_message.has_collation());

  // @todo push this lock down into the engine
  {
    boost::mutex::scoped_lock scopedLock(LOCK_create_db);

    // Check to see if it exists already.  
    SchemaIdentifier schema_identifier(schema_message.name());
    if (plugin::StorageEngine::doesSchemaExist(schema_identifier))
    {
      if (not is_if_not_exists)
      {
        my_error(ER_DB_CREATE_EXISTS, MYF(0), schema_message.name().c_str());
        error= true;
      }
      else
      {
        push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
                            ER_DB_CREATE_EXISTS, ER(ER_DB_CREATE_EXISTS),
                            schema_message.name().c_str());
        session->my_ok();
      }
    }
    else if (not plugin::StorageEngine::createSchema(schema_message)) // Try to create it 
    {
      my_error(ER_CANT_CREATE_DB, MYF(0), schema_message.name().c_str(), errno);
      error= true;
    }
    else // Created !
    {
      transaction_services.createSchema(session, schema_message);
      session->my_ok(1);
    }
  }
  session->startWaitingGlobalReadLock();

  return error;
}


/* db-name is already validated when we come here */

bool alter_db(Session *session, const message::Schema &schema_message)
{
  TransactionServices &transaction_services= TransactionServices::singleton();

  /*
    Do not alter database if another thread is holding read lock.
    Wait for global read lock before acquiring LOCK_create_db.
    After wait_if_global_read_lock() we have protection against another
    global read lock. If we would acquire LOCK_create_db first,
    another thread could step in and get the global read lock before we
    reach wait_if_global_read_lock(). If this thread tries the same as we
    (admin a db), it would then go and wait on LOCK_create_db...
    Furthermore wait_if_global_read_lock() checks if the current thread
    has the global read lock and refuses the operation with
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
  */
  if ((session->wait_if_global_read_lock(false, true)))
    return false;

  bool success;
  {
    boost::mutex::scoped_lock scopedLock(LOCK_create_db);

    SchemaIdentifier schema_idenifier(schema_message.name());
    if (not plugin::StorageEngine::doesSchemaExist(schema_idenifier))
    {
      my_error(ER_SCHEMA_DOES_NOT_EXIST, MYF(0), schema_message.name().c_str());
      return false;
    }

    /* Change options if current database is being altered. */
    success= plugin::StorageEngine::alterSchema(schema_message);

    if (success)
    {
      transaction_services.rawStatement(session, *session->getQueryString());
      session->my_ok(1);
    }
    else
    {
      my_error(ER_ALTER_SCHEMA, MYF(0), schema_message.name().c_str());
    }
  }
  session->startWaitingGlobalReadLock();

  return success;
}


/*
  Drop all tables in a database and the database itself

  SYNOPSIS
    rm_db()
    session			Thread handle
    db			Database name in the case given by user
		        It's already validated and set to lower case
                        (if needed) when we come here
    if_exists		Don't give error if database doesn't exists
    silent		Don't generate errors

  RETURN
    false ok (Database dropped)
    ERROR Error
*/

bool rm_db(Session *session, SchemaIdentifier &schema_identifier, const bool if_exists)
{
  long deleted=0;
  int error= false;
  TableIdentifier::vector dropped_tables;
  message::Schema schema_proto;

  /*
    Do not drop database if another thread is holding read lock.
    Wait for global read lock before acquiring LOCK_create_db.
    After wait_if_global_read_lock() we have protection against another
    global read lock. If we would acquire LOCK_create_db first,
    another thread could step in and get the global read lock before we
    reach wait_if_global_read_lock(). If this thread tries the same as we
    (admin a db), it would then go and wait on LOCK_create_db...
    Furthermore wait_if_global_read_lock() checks if the current thread
    has the global read lock and refuses the operation with
    ER_CANT_UPDATE_WITH_READLOCK if applicable.
  */
  if (session->wait_if_global_read_lock(false, true))
  {
    return -1;
  }

  // Lets delete the temporary tables first outside of locks.  
  set<string> set_of_names;
  session->doGetTableNames(schema_identifier, set_of_names);

  for (set<string>::iterator iter= set_of_names.begin(); iter != set_of_names.end(); iter++)
  {
    TableIdentifier identifier(schema_identifier, *iter, message::Table::TEMPORARY);
    Table *table= session->find_temporary_table(identifier);
    session->close_temporary_table(table);
  }

  {
    boost::mutex::scoped_lock scopedLock(LOCK_create_db);

    /* See if the schema exists */
    if (not plugin::StorageEngine::doesSchemaExist(schema_identifier))
    {
      std::string path;
      schema_identifier.getSQLPath(path);

      if (if_exists)
      {
        push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
                            ER_DB_DROP_EXISTS, ER(ER_DB_DROP_EXISTS),
                            path.c_str());
      }
      else
      {
        error= -1;
        my_error(ER_DB_DROP_EXISTS, MYF(0), path.c_str());
        goto exit;
      }
    }
    else
    {
      /* After deleting database, remove all cache entries related to schema */
      table::Cache::singleton().removeSchema(schema_identifier);

      error= -1;
      deleted= drop_tables_via_filenames(session, schema_identifier, dropped_tables);
      if (deleted >= 0)
      {
        error= 0;
        
        /* We've already verified that the schema does exist, so safe to log it */
        TransactionServices &transaction_services= TransactionServices::singleton();
        transaction_services.dropSchema(session, schema_identifier.getSchemaName());
      }
    }
    if (deleted >= 0)
    {
      session->clear_error();
      session->server_status|= SERVER_STATUS_DB_DROPPED;
      session->my_ok((uint32_t) deleted);
      session->server_status&= ~SERVER_STATUS_DB_DROPPED;
    }
    else
    {
      char *query, *query_pos, *query_end, *query_data_start;

      if (!(query= (char*) session->alloc(MAX_DROP_TABLE_Q_LEN)))
        goto exit; /* not much else we can do */
      query_pos= query_data_start= strcpy(query,"drop table ")+11;
      query_end= query + MAX_DROP_TABLE_Q_LEN;

      TransactionServices &transaction_services= TransactionServices::singleton();
      for (TableIdentifier::vector::iterator it= dropped_tables.begin();
           it != dropped_tables.end();
           it++)
      {
        uint32_t tbl_name_len;

        /* 3 for the quotes and the comma*/
        tbl_name_len= (*it).getTableName().length() + 3;
        if (query_pos + tbl_name_len + 1 >= query_end)
        {
          /* These DDL methods and logging protected with LOCK_create_db */
          transaction_services.rawStatement(session, query);
          query_pos= query_data_start;
        }

        *query_pos++ = '`';
        query_pos= strcpy(query_pos, (*it).getTableName().c_str()) + (tbl_name_len-3);
        *query_pos++ = '`';
        *query_pos++ = ',';
      }

      if (query_pos != query_data_start)
      {
        /* These DDL methods and logging protected with LOCK_create_db */
        transaction_services.rawStatement(session, query);
      }
    }

exit:
    /*
      If this database was the client's selected database, we silently
      change the client's selected database to nothing (to have an empty
      SELECT DATABASE() in the future). For this we free() session->db and set
      it to 0.
    */
    if (schema_identifier.compare(*session->schema()))
      change_db_impl(session);
  }

  session->startWaitingGlobalReadLock();

  return error;
}


static int rm_table_part2(Session *session, TableList *tables)
{
  TransactionServices &transaction_services= TransactionServices::singleton();

  TableList *table;
  String wrong_tables;
  int error= 0;
  bool foreign_key_error= false;

  {
    table::Cache::singleton().mutex().lock(); /* Part 2 of rm a table */

    if (session->lock_table_names_exclusively(tables))
    {
      table::Cache::singleton().mutex().unlock();
      return 1;
    }

    /* Don't give warnings for not found errors, as we already generate notes */
    session->no_warnings_for_error= 1;

    for (table= tables; table; table= table->next_local)
    {
      const char *db=table->getSchemaName();
      TableIdentifier identifier(table->getSchemaName(), table->getTableName());

      plugin::StorageEngine *table_type;

      error= session->drop_temporary_table(identifier);

      switch (error) {
      case  0:
        // removed temporary table
        continue;
      case -1:
        error= 1;
        tables->unlock_table_names();
        table::Cache::singleton().mutex().unlock();
        session->no_warnings_for_error= 0;

        return(error);
      default:
        // temporary table not found
        error= 0;
      }

      table_type= table->getDbType();

      {
        Table *locked_table;
        abort_locked_tables(session, identifier);
        table::Cache::singleton().removeTable(session, identifier,
                                              RTFC_WAIT_OTHER_THREAD_FLAG |
                                              RTFC_CHECK_KILLED_FLAG);
        /*
          If the table was used in lock tables, remember it so that
          unlock_table_names can free it
        */
        if ((locked_table= drop_locked_tables(session, identifier)))
          table->table= locked_table;

        if (session->getKilled())
        {
          error= -1;
          tables->unlock_table_names();
          table::Cache::singleton().mutex().unlock();
          session->no_warnings_for_error= 0;

          return(error);
        }
      }
      identifier.getPath();

      if (table_type == NULL && not plugin::StorageEngine::doesTableExist(*session, identifier))
      {
        // Table was not found on disk and table can't be created from engine
        push_warning_printf(session, DRIZZLE_ERROR::WARN_LEVEL_NOTE,
                            ER_BAD_TABLE_ERROR, ER(ER_BAD_TABLE_ERROR),
                            table->getTableName());
      }
      else
      {
        error= plugin::StorageEngine::dropTable(*session, identifier);

        /* Generate transaction event ONLY when we successfully drop */ 
        if (error == 0)
        {
          transaction_services.dropTable(session, string(db), string(table->getTableName()));
        }

        if ((error == ENOENT || error == HA_ERR_NO_SUCH_TABLE))
        {
          error= 0;
          session->clear_error();
        }

        if (error == HA_ERR_ROW_IS_REFERENCED)
        {
          /* the table is referenced by a foreign key constraint */
          foreign_key_error= true;
        }
      }

      if (error)
      {
        if (wrong_tables.length())
          wrong_tables.append(',');
        wrong_tables.append(String(table->getTableName(),system_charset_info));
      }
    }
    /*
      It's safe to unlock table::Cache::singleton().mutex(): we have an exclusive lock
      on the table name.
    */
    table::Cache::singleton().mutex().unlock();
  }

  error= 0;
  if (wrong_tables.length())
  {
    if (not foreign_key_error)
      my_printf_error(ER_BAD_TABLE_ERROR, ER(ER_BAD_TABLE_ERROR), MYF(0),
                      wrong_tables.c_ptr());
    else
    {
      my_message(ER_ROW_IS_REFERENCED, ER(ER_ROW_IS_REFERENCED), MYF(0));
    }
    error= 1;
  }

  {
    boost::mutex::scoped_lock scopedLock(table::Cache::singleton().mutex()); /* final bit in rm table lock */
    tables->unlock_table_names();
  }
  session->no_warnings_for_error= 0;

  return(error);
}

/*
  Removes files with known extensions plus.
  session MUST be set when calling this function!
*/

static long drop_tables_via_filenames(Session *session,
                                      SchemaIdentifier &schema_identifier,
                                      TableIdentifier::vector &dropped_tables)
{
  long deleted= 0;
  TableList *tot_list= NULL, **tot_list_next;

  tot_list_next= &tot_list;

  plugin::StorageEngine::getIdentifiers(*session, schema_identifier, dropped_tables);

  for (TableIdentifier::vector::iterator it= dropped_tables.begin();
       it != dropped_tables.end();
       it++)
  {
    size_t db_len= schema_identifier.getSchemaName().size();

    /* Drop the table nicely */
    TableList *table_list=(TableList*)
      session->calloc(sizeof(*table_list) +
                      db_len + 1 +
                      (*it).getTableName().length() + 1);

    if (not table_list)
      return -1;

    table_list->setSchemaName((char*) (table_list+1));
    table_list->setTableName(strcpy((char*) (table_list+1), schema_identifier.getSchemaName().c_str()) + db_len + 1);
    TableIdentifier::filename_to_tablename((*it).getTableName().c_str(), const_cast<char *>(table_list->getTableName()), (*it).getTableName().size() + 1);
    table_list->alias= table_list->getTableName();  // If lower_case_table_names=2
    table_list->setInternalTmpTable((strncmp((*it).getTableName().c_str(),
                                             TMP_FILE_PREFIX,
                                             strlen(TMP_FILE_PREFIX)) == 0));
    /* Link into list */
    (*tot_list_next)= table_list;
    tot_list_next= &table_list->next_local;
    deleted++;
  }
  if (session->getKilled())
    return -1;

  if (tot_list)
  {
    if (rm_table_part2(session, tot_list))
      return -1;
  }


  if (not plugin::StorageEngine::dropSchema(schema_identifier))
  {
    std::string path;
    schema_identifier.getSQLPath(path);
    my_error(ER_DROP_SCHEMA, MYF(0), path.c_str());

    return -1;
  }

  return deleted;
}

/**
  @brief Change the current database and its attributes unconditionally.

  @param session          thread handle
  @param new_db_name  database name
  @param force_switch if force_switch is false, then the operation will fail if

                        - new_db_name is NULL or empty;

                        - OR new database name is invalid
                          (check_db_name() failed);

                        - OR user has no privilege on the new database;

                        - OR new database does not exist;

                      if force_switch is true, then

                        - if new_db_name is NULL or empty, the current
                          database will be NULL, @@collation_database will
                          be set to @@collation_server, the operation will
                          succeed.

                        - if new database name is invalid
                          (check_db_name() failed), the current database
                          will be NULL, @@collation_database will be set to
                          @@collation_server, but the operation will fail;

                        - user privileges will not be checked
                          (Session::db_access however is updated);

                          TODO: is this really the intention?
                                (see sp-security.test).

                        - if new database does not exist,the current database
                          will be NULL, @@collation_database will be set to
                          @@collation_server, a warning will be thrown, the
                          operation will succeed.

  @details The function checks that the database name corresponds to a
  valid and existent database, checks access rights and changes the current
  database with database attributes (@@collation_database session variable,
  Session::db_access).

  This function is not the only way to switch the database that is
  currently employed. When the replication slave thread switches the
  database before executing a query, it calls session->set_db directly.
  However, if the query, in turn, uses a stored routine, the stored routine
  will use this function, even if it's run on the slave.

  This function allocates the name of the database on the system heap: this
  is necessary to be able to uniformly change the database from any module
  of the server. Up to 5.0 different modules were using different memory to
  store the name of the database, and this led to memory corruption:
  a stack pointer set by Stored Procedures was used by replication after
  the stack address was long gone.

  @return Operation status
    @retval false Success
    @retval true  Error
*/

bool change_db(Session *session, SchemaIdentifier &schema_identifier)
{

  if (not plugin::Authorization::isAuthorized(session->user(), schema_identifier))
  {
    /* Error message is set in isAuthorized */
    return true;
  }

  if (not check_db_name(session, schema_identifier))
  {
    std::string path;
    schema_identifier.getSQLPath(path);
    my_error(ER_WRONG_DB_NAME, MYF(0), path.c_str());

    return true;
  }

  if (not plugin::StorageEngine::doesSchemaExist(schema_identifier))
  {
    /* Report an error and free new_db_file_name. */
    std::string path;
    schema_identifier.getSQLPath(path);

    my_error(ER_BAD_DB_ERROR, MYF(0), path.c_str());

    /* The operation failed. */

    return true;
  }

  change_db_impl(session, schema_identifier);

  return false;
}

/**
  @brief Internal implementation: switch current database to a valid one.

  @param session            Thread context.
  @param new_db_name    Name of the database to switch to. The function will
                        take ownership of the name (the caller must not free
                        the allocated memory). If the name is NULL, we're
                        going to switch to NULL db.
  @param new_db_charset Character set of the new database.
*/

static void change_db_impl(Session *session, SchemaIdentifier &schema_identifier)
{
  /* 1. Change current database in Session. */

#if 0
  if (new_db_name == NULL)
  {
    /*
      Session::set_db() does all the job -- it frees previous database name and
      sets the new one.
    */

    session->set_db(NULL, 0);
  }
  else
#endif
  {
    /*
      Here we already have a copy of database name to be used in Session. So,
      we just call Session::reset_db(). Since Session::reset_db() does not releases
      the previous database name, we should do it explicitly.
    */

    session->set_db(schema_identifier.getSchemaName());
  }
}

static void change_db_impl(Session *session)
{
  session->set_db(string());
}

} /* namespace drizzled */