sql_view.cc 59 KB
Newer Older
unknown's avatar
VIEW  
unknown committed
1 2 3 4
/* Copyright (C) 2004 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
unknown's avatar
unknown committed
5
   the Free Software Foundation; version 2 of the License.
unknown's avatar
VIEW  
unknown committed
6 7 8 9 10 11 12 13 14 15 16

   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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

17
#define MYSQL_LEX 1
unknown's avatar
VIEW  
unknown committed
18 19 20
#include "mysql_priv.h"
#include "sql_select.h"
#include "parse_file.h"
unknown's avatar
unknown committed
21
#include "sp.h"
22
#include "sp_head.h"
unknown's avatar
unknown committed
23
#include "sp_cache.h"
unknown's avatar
VIEW  
unknown committed
24

25 26
#define MD5_BUFF_LENGTH 33

unknown's avatar
unknown committed
27
const LEX_STRING view_type= { C_STRING_WITH_LEN("VIEW") };
28

unknown's avatar
VIEW  
unknown committed
29 30 31
static int mysql_register_view(THD *thd, TABLE_LIST *view,
			       enum_view_create_mode mode);

32 33
const char *updatable_views_with_limit_names[]= { "NO", "YES", NullS };
TYPELIB updatable_views_with_limit_typelib=
unknown's avatar
VIEW  
unknown committed
34
{
35
  array_elements(updatable_views_with_limit_names)-1, "",
unknown's avatar
unknown committed
36 37
  updatable_views_with_limit_names,
  0
unknown's avatar
VIEW  
unknown committed
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
/*
  Make a unique name for an anonymous view column
  SYNOPSIS
    target        reference to the item for which a new name has to be made
    item_list     list of items within which we should check uniqueness of
                  the created name
    last_element  the last element of the list above

  NOTE
    Unique names are generated by adding 'My_exp_' to the old name of the
    column. In case the name that was created this way already exists, we
    add a numeric postfix to its end (i.e. "1") and increase the number
    until the name becomes unique. If the generated name is longer than
    NAME_LEN, it is truncated.
*/

static void make_unique_view_field_name(Item *target,
                                        List<Item> &item_list,
                                        Item *last_element)
{
  char *name= (target->orig_name ?
               target->orig_name :
               target->name);
unknown's avatar
unknown committed
64
  uint name_len, attempt;
65
  char buff[NAME_LEN+1];
unknown's avatar
unknown committed
66 67 68
  List_iterator_fast<Item> itc(item_list);

  for (attempt= 0;; attempt++)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  {
    Item *check;
    bool ok= TRUE;

    if (attempt)
      name_len= my_snprintf(buff, NAME_LEN, "My_exp_%d_%s", attempt, name);
    else
      name_len= my_snprintf(buff, NAME_LEN, "My_exp_%s", name);

    do
    {
      check= itc++;
      if (check != target &&
          my_strcasecmp(system_charset_info, buff, check->name) == 0)
      {
        ok= FALSE;
        break;
      }
    } while (check != last_element);
    if (ok)
      break;
unknown's avatar
unknown committed
90
    itc.rewind();
91 92 93 94 95 96
  }

  target->orig_name= target->name;
  target->set_name(buff, name_len, system_charset_info);
}

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

/*
  Check if items with same names are present in list and possibly
  generate unique names for them.

  SYNOPSIS
    item_list             list of Items which should be checked for duplicates
    gen_unique_view_name  flag: generate unique name or return with error when
                          duplicate names are found.

  DESCRIPTION
    This function is used on view creation and preparation of derived tables.
    It checks item_list for items with duplicate names. If it founds two
    items with same name and conversion to unique names isn't allowed, or
    names for both items are set by user - function fails.
    Otherwise it generates unique name for one item with autogenerated name
    using make_unique_view_field_name()

  RETURN VALUE
    FALSE no duplicate names found, or they are converted to unique ones
    TRUE  duplicate names are found and they can't be converted or conversion
          isn't allowed
*/

bool check_duplicate_names(List<Item> &item_list, bool gen_unique_view_name)
{
123 124 125
  Item *item;
  List_iterator_fast<Item> it(item_list);
  List_iterator_fast<Item> itc(item_list);
126
  DBUG_ENTER("check_duplicate_names");
127 128

  while ((item= it++))
129
  {
130 131 132 133 134 135
    Item *check;
    /* treat underlying fields like set by user names */
    if (item->real_item()->type() == Item::FIELD_ITEM)
      item->is_autogenerated_name= FALSE;
    itc.rewind();
    while ((check= itc++) && check != item)
136
    {
137
      if (my_strcasecmp(system_charset_info, item->name, check->name) == 0)
138
      {
139 140 141 142 143 144 145 146
        if (!gen_unique_view_name)
          goto err;
        if (item->is_autogenerated_name)
          make_unique_view_field_name(item, item_list, item);
        else if (check->is_autogenerated_name)
          make_unique_view_field_name(check, item_list, item);
        else
          goto err;
147 148 149 150
      }
    }
  }
  DBUG_RETURN(FALSE);
151 152 153 154

err:
  my_error(ER_DUP_FIELDNAME, MYF(0), item->name);
  DBUG_RETURN(TRUE);
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
/*
  Fill defined view parts

  SYNOPSIS
    fill_defined_view_parts()
      thd                current thread.
      view               view to operate on

  DESCRIPTION
    This function will initialize the parts of the view 
    definition that are not specified in ALTER VIEW
    to their values from CREATE VIEW.
    The view must be opened to get its definition.
    We use a copy of the view when opening because we want 
    to preserve the original view instance.

  RETURN VALUE
    TRUE                 can't open table
    FALSE                success
*/
static bool
fill_defined_view_parts (THD *thd, TABLE_LIST *view)
{
  LEX *lex= thd->lex;
  bool not_used;
  TABLE_LIST decoy;

  memcpy (&decoy, view, sizeof (TABLE_LIST));
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208

  /*
    Let's reset decoy.view before calling open_table(): when we start
    supporting ALTER VIEW in PS/SP that may save us from a crash.
  */

  decoy.view= NULL;

  /*
    open_table() will return NULL if 'decoy' is idenitifying a view *and*
    there is no TABLE object for that view in the table cache. However,
    decoy.view will be set to 1.

    If there is a TABLE-instance for the oject identified by 'decoy',
    open_table() will return that instance no matter if it is a table or
    a view.

    Thus, there is no need to check for the return value of open_table(),
    since the return value itself does not mean anything.
  */

  open_table(thd, &decoy, thd->mem_root, &not_used, OPEN_VIEW_NO_PARSE);

  if (!decoy.view)
209
  {
210 211
    /* It's a table. */
    my_error(ER_WRONG_OBJECT, MYF(0), view->db, view->table_name, "VIEW");
212 213
    return TRUE;
  }
unknown's avatar
unknown committed
214

215 216 217 218 219 220 221
  if (!lex->definer)
  {
    view->definer.host= decoy.definer.host;
    view->definer.user= decoy.definer.user;
    lex->definer= &view->definer;
  }
  if (lex->create_view_algorithm == VIEW_ALGORITHM_UNDEFINED)
222
    lex->create_view_algorithm= (uint8) decoy.algorithm;
223 224 225 226 227 228 229
  if (lex->create_view_suid == VIEW_SUID_DEFAULT)
    lex->create_view_suid= decoy.view_suid ? 
      VIEW_SUID_DEFINER : VIEW_SUID_INVOKER;

  return FALSE;
}

230
#ifndef NO_EMBEDDED_ACCESS_CHECKS
231

232
/**
233
  @brief CREATE VIEW privileges pre-check.
unknown's avatar
VIEW  
unknown committed
234

235
  @param thd thread handler
236
  @param tables tables used in the view
237 238
  @param views views to create
  @param mode VIEW_CREATE_NEW, VIEW_ALTER, VIEW_CREATE_OR_REPLACE
unknown's avatar
VIEW  
unknown committed
239

240 241
  @retval FALSE Operation was a success.
  @retval TRUE An error occured.
unknown's avatar
VIEW  
unknown committed
242
*/
243

244 245
bool create_view_precheck(THD *thd, TABLE_LIST *tables, TABLE_LIST *view,
                          enum_view_create_mode mode)
unknown's avatar
VIEW  
unknown committed
246 247 248
{
  LEX *lex= thd->lex;
  /* first table in list is target VIEW name => cut off it */
unknown's avatar
unknown committed
249
  TABLE_LIST *tbl;
unknown's avatar
unknown committed
250 251
  SELECT_LEX *select_lex= &lex->select_lex;
  SELECT_LEX *sl;
252 253
  bool res= TRUE;
  DBUG_ENTER("create_view_precheck");
254

255 256
  /*
    Privilege check for view creation:
unknown's avatar
unknown committed
257 258
    - user has CREATE VIEW privilege on view table
    - user has DROP privilege in case of ALTER VIEW or CREATE OR REPLACE
259
    VIEW
unknown's avatar
unknown committed
260
    - user has some (SELECT/UPDATE/INSERT/DELETE) privileges on columns of
261 262 263
    underlying tables used on top of SELECT list (because it can be
    (theoretically) updated, so it is enough to have UPDATE privilege on
    them, for example)
unknown's avatar
unknown committed
264
    - user has SELECT privilege on columns used in expressions of VIEW select
265 266 267 268
    - for columns of underly tables used on top of SELECT list also will be
    checked that we have not more privileges on correspondent column of view
    table (i.e. user will not get some privileges by view creation)
  */
269
  if ((check_access(thd, CREATE_VIEW_ACL, view->db, &view->grant.privilege,
270
                    0, 0, is_schema_db(view->db)) ||
271
       check_grant(thd, CREATE_VIEW_ACL, view, 0, 1, 0)) ||
272
      (mode != VIEW_CREATE_NEW &&
273
       (check_access(thd, DROP_ACL, view->db, &view->grant.privilege,
274
                     0, 0, is_schema_db(view->db)) ||
275
        check_grant(thd, DROP_ACL, view, 0, 1, 0))))
unknown's avatar
unknown committed
276
    goto err;
277

278
  for (sl= select_lex; sl; sl= sl->next_select())
unknown's avatar
VIEW  
unknown committed
279
  {
280
    for (tbl= sl->get_table_list(); tbl; tbl= tbl->next_local)
unknown's avatar
VIEW  
unknown committed
281
    {
282
      /*
283
        Ensure that we have some privileges on this table, more strict check
284 285
        will be done on column level after preparation,
      */
unknown's avatar
unknown committed
286
      if (check_some_access(thd, VIEW_ANY_ACL, tbl))
287
      {
288
        my_error(ER_TABLEACCESS_DENIED_ERROR, MYF(0),
289 290
                 "ANY", thd->security_ctx->priv_user,
                 thd->security_ctx->priv_host, tbl->table_name);
unknown's avatar
unknown committed
291
        goto err;
292
      }
293 294 295 296
      /*
        Mark this table as a table which will be checked after the prepare
        phase
      */
297
      tbl->table_in_first_from_clause= 1;
unknown's avatar
VIEW  
unknown committed
298

299
      /*
300 301 302
        We need to check only SELECT_ACL for all normal fields, fields for
        which we need "any" (SELECT/UPDATE/INSERT/DELETE) privilege will be
        checked later
303 304 305
      */
      tbl->grant.want_privilege= SELECT_ACL;
      /*
306
        Make sure that all rights are loaded to the TABLE::grant field.
307

308
        tbl->table_name will be correct name of table because VIEWs are
309 310 311
        not opened yet.
      */
      fill_effective_table_privileges(thd, &tbl->grant, tbl->db,
312
                                      tbl->table_name);
313
    }
unknown's avatar
VIEW  
unknown committed
314 315 316 317 318
  }

  if (&lex->select_lex != lex->all_selects_list)
  {
    /* check tables of subqueries */
unknown's avatar
unknown committed
319
    for (tbl= tables; tbl; tbl= tbl->next_global)
unknown's avatar
VIEW  
unknown committed
320 321 322 323
    {
      if (!tbl->table_in_first_from_clause)
      {
        if (check_access(thd, SELECT_ACL, tbl->db,
324
                         &tbl->grant.privilege, 0, 0, test(tbl->schema_table)) ||
325
            check_grant(thd, SELECT_ACL, tbl, 0, 1, 0))
unknown's avatar
VIEW  
unknown committed
326 327 328 329 330
          goto err;
      }
    }
  }
  /*
331
    Mark fields for special privilege check ("any" privilege)
unknown's avatar
VIEW  
unknown committed
332
  */
333
  for (sl= select_lex; sl; sl= sl->next_select())
unknown's avatar
VIEW  
unknown committed
334
  {
335
    List_iterator_fast<Item> it(sl->item_list);
unknown's avatar
VIEW  
unknown committed
336 337 338
    Item *item;
    while ((item= it++))
    {
339 340
      Item_field *field;
      if ((field= item->filed_for_view_update()))
unknown's avatar
unknown committed
341 342 343 344 345
      {
        /*
         any_privileges may be reset later by the Item_field::set_field
         method in case of a system temporary table.
        */
346
        field->any_privileges= 1;
unknown's avatar
unknown committed
347
      }
unknown's avatar
VIEW  
unknown committed
348 349
    }
  }
350 351 352 353

  res= FALSE;

err:
unknown's avatar
unknown committed
354
  DBUG_RETURN(res || thd->is_error());
355 356 357 358 359 360 361 362 363 364
}

#else

bool create_view_precheck(THD *thd, TABLE_LIST *tables, TABLE_LIST *view,
                          enum_view_create_mode mode)
{
  return FALSE;
}

unknown's avatar
VIEW  
unknown committed
365 366
#endif

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

/**
  @brief Creating/altering VIEW procedure

  @param thd thread handler
  @param views views to create
  @param mode VIEW_CREATE_NEW, VIEW_ALTER, VIEW_CREATE_OR_REPLACE

  @note This function handles both create and alter view commands.

  @retval FALSE Operation was a success.
  @retval TRUE An error occured.
*/

bool mysql_create_view(THD *thd, TABLE_LIST *views,
                       enum_view_create_mode mode)
{
  LEX *lex= thd->lex;
  bool link_to_local;
  /* first table in list is target VIEW name => cut off it */
  TABLE_LIST *view= lex->unlink_first_table(&link_to_local);
  TABLE_LIST *tables= lex->query_tables;
  TABLE_LIST *tbl;
  SELECT_LEX *select_lex= &lex->select_lex;
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  SELECT_LEX *sl;
#endif
  SELECT_LEX_UNIT *unit= &lex->unit;
  bool res= FALSE;
  DBUG_ENTER("mysql_create_view");

  /* This is ensured in the parser. */
  DBUG_ASSERT(!lex->proc_list.first && !lex->result &&
unknown's avatar
unknown committed
400
              !lex->param_list.elements);
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

  if (mode != VIEW_CREATE_NEW)
  {
    if (mode == VIEW_ALTER &&
        fill_defined_view_parts(thd, view))
    {
      res= TRUE;
      goto err;
    }
    sp_cache_invalidate();
  }

  if (!lex->definer)
  {
    /*
      DEFINER-clause is missing; we have to create default definer in
      persistent arena to be PS/SP friendly.
      If this is an ALTER VIEW then the current user should be set as
      the definer.
    */
    Query_arena original_arena;
    Query_arena *ps_arena = thd->activate_stmt_arena_if_needed(&original_arena);

    if (!(lex->definer= create_default_definer(thd)))
      res= TRUE;

    if (ps_arena)
      thd->restore_active_arena(ps_arena, &original_arena);

    if (res)
      goto err;
  }

#ifndef NO_EMBEDDED_ACCESS_CHECKS
  /*
    check definer of view:
      - same as current user
      - current user has SUPER_ACL
  */
  if (lex->definer &&
      (strcmp(lex->definer->user.str, thd->security_ctx->priv_user) != 0 ||
       my_strcasecmp(system_charset_info,
                     lex->definer->host.str,
                     thd->security_ctx->priv_host) != 0))
  {
    if (!(thd->security_ctx->master_access & SUPER_ACL))
    {
      my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), "SUPER");
      res= TRUE;
      goto err;
    }
    else
    {
      if (!is_acl_user(lex->definer->host.str,
                       lex->definer->user.str))
      {
        push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
                            ER_NO_SUCH_USER,
                            ER(ER_NO_SUCH_USER),
                            lex->definer->user.str,
                            lex->definer->host.str);
      }
    }
  }
#endif

  if ((res= create_view_precheck(thd, tables, view, mode)))
    goto err;

unknown's avatar
unknown committed
470
  if (open_and_lock_tables(thd, tables))
unknown's avatar
unknown committed
471 472 473 474
  {
    res= TRUE;
    goto err;
  }
unknown's avatar
VIEW  
unknown committed
475

476 477
  /*
    check that tables are not temporary  and this VIEW do not used in query
unknown's avatar
unknown committed
478 479 480 481
    (it is possible with ALTERing VIEW).
    open_and_lock_tables can change the value of tables,
    e.g. it may happen if before the function call tables was equal to 0. 
  */ 
482
  for (tbl= lex->query_tables; tbl; tbl= tbl->next_global)
unknown's avatar
VIEW  
unknown committed
483
  {
484 485 486
    /* is this table view and the same view which we creates now? */
    if (tbl->view &&
        strcmp(tbl->view_db.str, view->db) == 0 &&
487
        strcmp(tbl->view_name.str, view->table_name) == 0)
488 489
    {
      my_error(ER_NO_SUCH_TABLE, MYF(0), tbl->view_db.str, tbl->view_name.str);
unknown's avatar
unknown committed
490
      res= TRUE;
491 492 493
      goto err;
    }

unknown's avatar
VIEW  
unknown committed
494
    /*
495 496 497 498 499
      tbl->table can be NULL when tbl is a placeholder for a view
      that is indirectly referenced via a stored function from the
      view being created. We don't check these indirectly
      referenced views in CREATE VIEW so they don't have table
      object.
unknown's avatar
VIEW  
unknown committed
500
    */
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
    if (tbl->table)
    {
      /* is this table temporary and is not view? */
      if (tbl->table->s->tmp_table != NO_TMP_TABLE && !tbl->view &&
          !tbl->schema_table)
      {
        my_error(ER_VIEW_SELECT_TMPTABLE, MYF(0), tbl->alias);
        res= TRUE;
        goto err;
      }
      /*
        Copy the privileges of the underlying VIEWs which were filled by
        fill_effective_table_privileges
        (they were not copied at derived tables processing)
      */
      tbl->table->grant.privilege= tbl->grant.privilege;
    }
unknown's avatar
VIEW  
unknown committed
518 519
  }

520
  /* prepare select to resolve all fields */
unknown's avatar
VIEW  
unknown committed
521
  lex->view_prepare_mode= 1;
522
  if (unit->prepare(thd, 0, 0))
523 524 525 526 527
  {
    /*
      some errors from prepare are reported to user, if is not then
      it will be checked after err: label
    */
unknown's avatar
unknown committed
528
    res= TRUE;
unknown's avatar
VIEW  
unknown committed
529
    goto err;
530
  }
unknown's avatar
VIEW  
unknown committed
531 532 533 534 535 536 537 538

  /* view list (list of view fields names) */
  if (lex->view_list.elements)
  {
    List_iterator_fast<Item> it(select_lex->item_list);
    List_iterator_fast<LEX_STRING> nm(lex->view_list);
    Item *item;
    LEX_STRING *name;
539 540

    if (lex->view_list.elements != select_lex->item_list.elements)
unknown's avatar
VIEW  
unknown committed
541
    {
542
      my_message(ER_VIEW_WRONG_LIST, ER(ER_VIEW_WRONG_LIST), MYF(0));
543
      res= TRUE;
544
      goto err;
unknown's avatar
VIEW  
unknown committed
545
    }
546
    while ((item= it++, name= nm++))
547
    {
548
      item->set_name(name->str, name->length, system_charset_info);
549 550
      item->is_autogenerated_name= FALSE;
    }
unknown's avatar
VIEW  
unknown committed
551 552
  }

553
  if (check_duplicate_names(select_lex->item_list, 1))
unknown's avatar
unknown committed
554 555 556 557
  {
    res= TRUE;
    goto err;
  }
558

unknown's avatar
VIEW  
unknown committed
559 560
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  /*
561
    Compare/check grants on view with grants of underlying tables
unknown's avatar
VIEW  
unknown committed
562
  */
563 564 565 566 567 568 569 570

  fill_effective_table_privileges(thd, &view->grant, view->db,
                                  view->table_name);

  {
    Item *report_item= NULL;
    uint final_priv= VIEW_ANY_ACL;

571
  for (sl= select_lex; sl; sl= sl->next_select())
unknown's avatar
VIEW  
unknown committed
572
  {
unknown's avatar
unknown committed
573
    DBUG_ASSERT(view->db);                     /* Must be set in the parser */
574
    List_iterator_fast<Item> it(sl->item_list);
unknown's avatar
VIEW  
unknown committed
575
    Item *item;
576
    while ((item= it++))
unknown's avatar
VIEW  
unknown committed
577
    {
578
        Item_field *fld= item->filed_for_view_update();
unknown's avatar
unknown committed
579
      uint priv= (get_column_grant(thd, &view->grant, view->db,
580
                                    view->table_name, item->name) &
unknown's avatar
VIEW  
unknown committed
581
                  VIEW_ANY_ACL);
582 583

        if (fld && !fld->field->table->s->tmp_table)
unknown's avatar
VIEW  
unknown committed
584
      {
585 586 587 588 589 590 591 592 593
          final_priv&= fld->have_privileges;

          if (~fld->have_privileges & priv)
            report_item= item;
        }
      }
    }

    if (!final_priv)
unknown's avatar
VIEW  
unknown committed
594
        {
595 596
      DBUG_ASSERT(report_item);

597
          my_error(ER_COLUMNACCESS_DENIED_ERROR, MYF(0),
598
                   "create view", thd->security_ctx->priv_user,
599
               thd->security_ctx->priv_host, report_item->name,
600
                   view->table_name);
unknown's avatar
unknown committed
601 602
          res= TRUE;
          goto err;
unknown's avatar
VIEW  
unknown committed
603 604 605 606
    }
  }
#endif

607
  if (wait_if_global_read_lock(thd, 0, 0))
unknown's avatar
VIEW  
unknown committed
608
  {
unknown's avatar
unknown committed
609
    res= TRUE;
unknown's avatar
VIEW  
unknown committed
610 611 612
    goto err;
  }
  VOID(pthread_mutex_lock(&LOCK_open));
613
  res= mysql_register_view(thd, view, mode);
614 615 616 617 618

  if (mysql_bin_log.is_open())
  {
    String buff;
    const LEX_STRING command[3]=
619 620 621
      {{ C_STRING_WITH_LEN("CREATE ") },
       { C_STRING_WITH_LEN("ALTER ") },
       { C_STRING_WITH_LEN("CREATE OR REPLACE ") }};
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636

    buff.append(command[thd->lex->create_view_mode].str,
                command[thd->lex->create_view_mode].length);
    view_store_options(thd, views, &buff);
    buff.append(STRING_WITH_LEN("VIEW "));
    /* Test if user supplied a db (ie: we did not use thd->db) */
    if (views->db && views->db[0] &&
        (thd->db == NULL || strcmp(views->db, thd->db)))
    {
      append_identifier(thd, &buff, views->db,
                        views->db_length);
      buff.append('.');
    }
    append_identifier(thd, &buff, views->table_name,
                      views->table_name_length);
637 638 639 640 641 642
    if (lex->view_list.elements)
    {
      List_iterator_fast<LEX_STRING> names(lex->view_list);
      LEX_STRING *name;
      int i;
      
unknown's avatar
unknown committed
643
      for (i= 0; (name= names++); i++)
644 645 646 647 648 649
      {
        buff.append(i ? ", " : "(");
        append_identifier(thd, &buff, name->str, name->length);
      }
      buff.append(')');
    }
650 651 652
    buff.append(STRING_WITH_LEN(" AS "));
    buff.append(views->source.str, views->source.length);

653 654
    thd->binlog_query(THD::STMT_QUERY_TYPE,
                      buff.ptr(), buff.length(), FALSE, FALSE);
655 656
  }

unknown's avatar
VIEW  
unknown committed
657
  VOID(pthread_mutex_unlock(&LOCK_open));
658 659
  if (view->revision != 1)
    query_cache_invalidate3(thd, view, 0);
unknown's avatar
VIEW  
unknown committed
660
  start_waiting_global_read_lock(thd);
661 662
  if (res)
    goto err;
unknown's avatar
VIEW  
unknown committed
663

664
  my_ok(thd);
unknown's avatar
VIEW  
unknown committed
665
  lex->link_first_table_back(view, link_to_local);
unknown's avatar
unknown committed
666
  DBUG_RETURN(0);
unknown's avatar
VIEW  
unknown committed
667 668

err:
669
  thd_proc_info(thd, "end");
unknown's avatar
VIEW  
unknown committed
670 671
  lex->link_first_table_back(view, link_to_local);
  unit->cleanup();
672
  DBUG_RETURN(res || thd->is_error());
unknown's avatar
VIEW  
unknown committed
673 674 675
}


676
/* index of revision number in following table */
677
static const int revision_number_position= 8;
unknown's avatar
unknown committed
678 679
/* number of required parameters for making view */
static const int required_view_parameters= 16;
680 681
/* number of backups */
static const int num_view_backups= 3;
unknown's avatar
VIEW  
unknown committed
682

683 684 685 686 687 688
/*
  table of VIEW .frm field descriptors

  Note that one should NOT change the order for this, as it's used by
  parse()
*/
unknown's avatar
VIEW  
unknown committed
689
static File_option view_parameters[]=
unknown's avatar
unknown committed
690
{{{ C_STRING_WITH_LEN("query")},
unknown's avatar
unknown committed
691
  my_offsetof(TABLE_LIST, select_stmt),
692
  FILE_OPTIONS_ESTRING},
unknown's avatar
unknown committed
693
 {{ C_STRING_WITH_LEN("md5")},
694
  my_offsetof(TABLE_LIST, md5),
695
  FILE_OPTIONS_STRING},
unknown's avatar
unknown committed
696
 {{ C_STRING_WITH_LEN("updatable")},
697
  my_offsetof(TABLE_LIST, updatable_view),
698
  FILE_OPTIONS_ULONGLONG},
unknown's avatar
unknown committed
699
 {{ C_STRING_WITH_LEN("algorithm")},
700
  my_offsetof(TABLE_LIST, algorithm),
701
  FILE_OPTIONS_ULONGLONG},
unknown's avatar
unknown committed
702
 {{ C_STRING_WITH_LEN("definer_user")},
703
  my_offsetof(TABLE_LIST, definer.user),
unknown's avatar
VIEW  
unknown committed
704
  FILE_OPTIONS_STRING},
unknown's avatar
unknown committed
705
 {{ C_STRING_WITH_LEN("definer_host")},
706
  my_offsetof(TABLE_LIST, definer.host),
unknown's avatar
VIEW  
unknown committed
707
  FILE_OPTIONS_STRING},
unknown's avatar
unknown committed
708
 {{ C_STRING_WITH_LEN("suid")},
709
  my_offsetof(TABLE_LIST, view_suid),
unknown's avatar
VIEW  
unknown committed
710
  FILE_OPTIONS_ULONGLONG},
unknown's avatar
unknown committed
711
 {{ C_STRING_WITH_LEN("with_check_option")},
712
  my_offsetof(TABLE_LIST, with_check),
unknown's avatar
VIEW  
unknown committed
713
  FILE_OPTIONS_ULONGLONG},
unknown's avatar
unknown committed
714
 {{ C_STRING_WITH_LEN("revision")},
715
  my_offsetof(TABLE_LIST, revision),
unknown's avatar
VIEW  
unknown committed
716
  FILE_OPTIONS_REV},
unknown's avatar
unknown committed
717
 {{ C_STRING_WITH_LEN("timestamp")},
718
  my_offsetof(TABLE_LIST, timestamp),
unknown's avatar
VIEW  
unknown committed
719
  FILE_OPTIONS_TIMESTAMP},
unknown's avatar
unknown committed
720
 {{ C_STRING_WITH_LEN("create-version")},
721
  my_offsetof(TABLE_LIST, file_version),
unknown's avatar
VIEW  
unknown committed
722
  FILE_OPTIONS_ULONGLONG},
unknown's avatar
unknown committed
723
 {{ C_STRING_WITH_LEN("source")},
724
  my_offsetof(TABLE_LIST, source),
unknown's avatar
VIEW  
unknown committed
725
  FILE_OPTIONS_ESTRING},
unknown's avatar
unknown committed
726 727 728 729 730 731 732 733
 {{(char*) STRING_WITH_LEN("client_cs_name")},
  my_offsetof(TABLE_LIST, view_client_cs_name),
  FILE_OPTIONS_STRING},
 {{(char*) STRING_WITH_LEN("connection_cl_name")},
  my_offsetof(TABLE_LIST, view_connection_cl_name),
  FILE_OPTIONS_STRING},
 {{(char*) STRING_WITH_LEN("view_body_utf8")},
  my_offsetof(TABLE_LIST, view_body_utf8),
734
  FILE_OPTIONS_ESTRING},
unknown's avatar
unknown committed
735
 {{NullS, 0},			0,
unknown's avatar
VIEW  
unknown committed
736 737 738
  FILE_OPTIONS_STRING}
};

739
static LEX_STRING view_file_type[]= {{(char*) STRING_WITH_LEN("VIEW") }};
unknown's avatar
VIEW  
unknown committed
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755


/*
  Register VIEW (write .frm & process .frm's history backups)

  SYNOPSIS
    mysql_register_view()
    thd		- thread handler
    view	- view description
    mode	- VIEW_CREATE_NEW, VIEW_ALTER, VIEW_CREATE_OR_REPLACE

  RETURN
     0	OK
    -1	Error
     1	Error and error message given
*/
756

unknown's avatar
VIEW  
unknown committed
757 758 759
static int mysql_register_view(THD *thd, TABLE_LIST *view,
			       enum_view_create_mode mode)
{
760
  LEX *lex= thd->lex;
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796

  /*
    View definition query -- a SELECT statement that fully defines view. It
    is generated from the Item-tree built from the original (specified by
    the user) query. The idea is that generated query should eliminates all
    ambiguities and fix view structure at CREATE-time (once for all).
    Item::print() virtual operation is used to generate view definition
    query.

    INFORMATION_SCHEMA query (IS query) -- a SQL statement describing a
    view that is shown in INFORMATION_SCHEMA. Basically, it is 'view
    definition query' with text literals converted to UTF8 and without
    character set introducers.

    For example:
      Let's suppose we have:
        CREATE TABLE t1(a INT, b INT);
      User specified query:
        CREATE VIEW v1(x, y) AS SELECT * FROM t1;
      Generated query:
        SELECT a AS x, b AS y FROM t1;
      IS query:
        SELECT a AS x, b AS y FROM t1;

    View definition query is stored in the client character set.
  */
  char view_query_buff[4096];
  String view_query(view_query_buff,
                    sizeof (view_query_buff),
                    thd->charset());

  char is_query_buff[4096];
  String is_query(is_query_buff,
                  sizeof (is_query_buff),
                  system_charset_info);

797
  char md5[MD5_BUFF_LENGTH];
unknown's avatar
VIEW  
unknown committed
798
  bool can_be_merged;
799
  char dir_buff[FN_REFLEN], path_buff[FN_REFLEN];
800
  LEX_STRING dir, file, path;
unknown's avatar
unknown committed
801
  int error= 0;
unknown's avatar
VIEW  
unknown committed
802 803
  DBUG_ENTER("mysql_register_view");

804
  /* Generate view definition and IS queries. */
unknown's avatar
unknown committed
805
  view_query.length(0);
806
  is_query.length(0);
807 808 809
  {
    ulong sql_mode= thd->variables.sql_mode & MODE_ANSI_QUOTES;
    thd->variables.sql_mode&= ~MODE_ANSI_QUOTES;
810 811 812 813

    lex->unit.print(&view_query, QT_ORDINARY);
    lex->unit.print(&is_query, QT_IS);

814 815
    thd->variables.sql_mode|= sql_mode;
  }
unknown's avatar
unknown committed
816
  DBUG_PRINT("info", ("View: %s", view_query.ptr()));
unknown's avatar
VIEW  
unknown committed
817

unknown's avatar
unknown committed
818
  /* fill structure */
819
  view->source= thd->lex->create_view_select;
820

821 822
  if (!thd->make_lex_string(&view->select_stmt, view_query.ptr(),
                            view_query.length(), false))
823 824 825 826 827 828
  {
    my_error(ER_OUT_OF_RESOURCES, MYF(0));
    error= -1;
    goto err;   
  }

unknown's avatar
unknown committed
829 830
  view->file_version= 1;
  view->calc_md5(md5);
831
  if (!(view->md5.str= (char*) thd->memdup(md5, 32)))
832 833 834 835 836
  {
    my_error(ER_OUT_OF_RESOURCES, MYF(0));
    error= -1;
    goto err;   
  }
unknown's avatar
unknown committed
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
  view->md5.length= 32;
  can_be_merged= lex->can_be_merged();
  if (lex->create_view_algorithm == VIEW_ALGORITHM_MERGE &&
      !lex->can_be_merged())
  {
    push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_VIEW_MERGE,
                 ER(ER_WARN_VIEW_MERGE));
    lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED;
  }
  view->algorithm= lex->create_view_algorithm;
  view->definer.user= lex->definer->user;
  view->definer.host= lex->definer->host;
  view->view_suid= lex->create_view_suid;
  view->with_check= lex->create_view_check;
  if ((view->updatable_view= (can_be_merged &&
                              view->algorithm != VIEW_ALGORITHM_TMPTABLE)))
  {
    /* TODO: change here when we will support UNIONs */
    for (TABLE_LIST *tbl= (TABLE_LIST *)lex->select_lex.table_list.first;
	 tbl;
	 tbl= tbl->next_local)
    {
      if ((tbl->view && !tbl->updatable_view) || tbl->schema_table)
      {
	view->updatable_view= 0;
	break;
      }
      for (TABLE_LIST *up= tbl; up; up= up->embedding)
      {
	if (up->outer_join)
	{
	  view->updatable_view= 0;
	  goto loop_out;
	}
      }
    }
  }
loop_out:
875
  /* print file name */
876
  dir.length= build_table_filename(dir_buff, sizeof(dir_buff),
877
                                   view->db, "", "", 0);
unknown's avatar
VIEW  
unknown committed
878 879
  dir.str= dir_buff;

880
  path.length= build_table_filename(path_buff, sizeof(path_buff),
881
                                    view->db, view->table_name, reg_ext, 0);
882 883 884 885 886
  path.str= path_buff;

  file.str= path.str + dir.length;
  file.length= path.length - dir.length;

unknown's avatar
VIEW  
unknown committed
887
  /* init timestamp */
888
  if (!view->timestamp.str)
unknown's avatar
VIEW  
unknown committed
889 890
    view->timestamp.str= view->timestamp_buffer;

891
  /* check old .frm */
unknown's avatar
VIEW  
unknown committed
892 893 894
  {
    char path_buff[FN_REFLEN];
    LEX_STRING path;
895
    File_parser *parser;
unknown's avatar
unknown committed
896

unknown's avatar
VIEW  
unknown committed
897
    path.str= path_buff;
unknown's avatar
unknown committed
898
    fn_format(path_buff, file.str, dir.str, "", MY_UNPACK_FILENAME);
unknown's avatar
VIEW  
unknown committed
899 900 901 902 903 904 905
    path.length= strlen(path_buff);

    if (!access(path.str, F_OK))
    {
      if (mode == VIEW_CREATE_NEW)
      {
	my_error(ER_TABLE_EXISTS_ERROR, MYF(0), view->alias);
unknown's avatar
unknown committed
906 907
        error= -1;
        goto err;
unknown's avatar
VIEW  
unknown committed
908 909
      }

unknown's avatar
unknown committed
910
      if (!(parser= sql_parse_prepare(&path, thd->mem_root, 0)))
unknown's avatar
unknown committed
911 912 913 914
      {
        error= 1;
        goto err;
      }
915

916
      if (!parser->ok() || !is_equal(&view_type, parser->type()))
unknown's avatar
VIEW  
unknown committed
917
      {
unknown's avatar
unknown committed
918
        my_error(ER_WRONG_OBJECT, MYF(0), view->db, view->table_name, "VIEW");
unknown's avatar
unknown committed
919 920
        error= -1;
        goto err;
unknown's avatar
VIEW  
unknown committed
921
      }
922 923 924

      /*
        read revision number
925

926
        TODO: read dependence list, too, to process cascade/restrict
927 928
        TODO: special cascade/restrict procedure for alter?
      */
929
      if (parser->parse((uchar*)view, thd->mem_root,
930 931
                        view_parameters + revision_number_position, 1,
                        &file_parser_dummy_hook))
unknown's avatar
VIEW  
unknown committed
932
      {
933
        error= thd->is_error() ? -1 : 0;
unknown's avatar
unknown committed
934
        goto err;
unknown's avatar
VIEW  
unknown committed
935 936 937
      }
    }
    else
unknown's avatar
unknown committed
938
   {
unknown's avatar
VIEW  
unknown committed
939 940 941
      if (mode == VIEW_ALTER)
      {
	my_error(ER_NO_SUCH_TABLE, MYF(0), view->db, view->alias);
unknown's avatar
unknown committed
942 943
        error= -1;
        goto err;
unknown's avatar
VIEW  
unknown committed
944 945 946
      }
    }
  }
unknown's avatar
unknown committed
947

unknown's avatar
unknown committed
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
  /* Initialize view creation context from the environment. */

  view->view_creation_ctx= View_creation_ctx::create(thd);

  /*
    Set LEX_STRING attributes in view-structure for parser to create
    frm-file.
  */

  lex_string_set(&view->view_client_cs_name,
                 view->view_creation_ctx->get_client_cs()->csname);

  lex_string_set(&view->view_connection_cl_name,
                 view->view_creation_ctx->get_connection_cl()->name);

963 964 965 966 967 968 969
  if (!thd->make_lex_string(&view->view_body_utf8, is_query.ptr(),
                            is_query.length(), false))
  {
    my_error(ER_OUT_OF_RESOURCES, MYF(0));
    error= -1;
    goto err;   
  }
unknown's avatar
unknown committed
970

971 972 973 974 975 976 977 978 979 980 981
  /*
    Check that table of main select do not used in subqueries.

    This test can catch only very simple cases of such non-updateable views,
    all other will be detected before updating commands execution.
    (it is more optimisation then real check)

    NOTE: this skip cases of using table via VIEWs, joined VIEWs, VIEWs with
    UNION
  */
  if (view->updatable_view &&
982
      !lex->select_lex.master_unit()->is_union() &&
983 984 985
      !((TABLE_LIST*)lex->select_lex.table_list.first)->next_local &&
      find_table_in_global_list(lex->query_tables->next_global,
				lex->query_tables->db,
986
				lex->query_tables->table_name))
987 988 989 990
  {
    view->updatable_view= 0;
  }

unknown's avatar
unknown committed
991 992 993
  if (view->with_check != VIEW_CHECK_NONE &&
      !view->updatable_view)
  {
994
    my_error(ER_VIEW_NONUPD_CHECK, MYF(0), view->db, view->table_name);
unknown's avatar
unknown committed
995 996
    error= -1;
    goto err;
unknown's avatar
unknown committed
997 998
  }

unknown's avatar
VIEW  
unknown committed
999
  if (sql_create_definition_file(&dir, &file, view_file_type,
1000
				 (uchar*)view, view_parameters, num_view_backups))
unknown's avatar
VIEW  
unknown committed
1001
  {
1002
    error= thd->is_error() ? -1 : 1;
unknown's avatar
unknown committed
1003
    goto err;
unknown's avatar
VIEW  
unknown committed
1004 1005
  }
  DBUG_RETURN(0);
unknown's avatar
unknown committed
1006
err:
unknown's avatar
unknown committed
1007 1008
  view->select_stmt.str= NULL;
  view->select_stmt.length= 0;
unknown's avatar
unknown committed
1009
  view->md5.str= NULL;
unknown's avatar
unknown committed
1010
  view->md5.length= 0;
unknown's avatar
unknown committed
1011
  DBUG_RETURN(error);
unknown's avatar
VIEW  
unknown committed
1012 1013 1014
}


1015

unknown's avatar
VIEW  
unknown committed
1016 1017 1018 1019 1020
/*
  read VIEW .frm and create structures

  SYNOPSIS
    mysql_make_view()
1021 1022 1023
    thd			Thread handler
    parser		parser object
    table		TABLE_LIST structure for filling
1024
    flags               flags
1025
  RETURN
1026 1027
    0 ok
    1 error
unknown's avatar
VIEW  
unknown committed
1028
*/
1029

1030 1031
bool mysql_make_view(THD *thd, File_parser *parser, TABLE_LIST *table,
                     uint flags)
unknown's avatar
VIEW  
unknown committed
1032
{
1033 1034 1035
  SELECT_LEX *end, *view_select;
  LEX *old_lex, *lex;
  Query_arena *arena, backup;
1036
  TABLE_LIST *top_view= table->top_table();
unknown's avatar
unknown committed
1037
  bool parse_status;
unknown's avatar
unknown committed
1038 1039
  bool result, view_is_mergeable;
  TABLE_LIST *view_main_select_tables;
unknown's avatar
unknown committed
1040

unknown's avatar
VIEW  
unknown committed
1041
  DBUG_ENTER("mysql_make_view");
1042
  DBUG_PRINT("info", ("table: 0x%lx (%s)", (ulong) table, table->table_name));
unknown's avatar
VIEW  
unknown committed
1043 1044 1045

  if (table->view)
  {
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
    /*
      It's an execution of a PS/SP and the view has already been unfolded
      into a list of used tables. Now we only need to update the information
      about granted privileges in the view tables with the actual data
      stored in MySQL privilege system.  We don't need to restore the
      required privileges (by calling register_want_access) because they has
      not changed since PREPARE or the previous execution: the only case
      when this information is changed is execution of UPDATE on a view, but
      the original want_access is restored in its end.
    */
    if (!table->prelocking_placeholder && table->prepare_security(thd))
    {
      DBUG_RETURN(1);
    }
unknown's avatar
VIEW  
unknown committed
1060
    DBUG_PRINT("info",
1061
               ("VIEW %s.%s is already processed on previous PS/SP execution",
unknown's avatar
VIEW  
unknown committed
1062 1063 1064 1065
                table->view_db.str, table->view_name.str));
    DBUG_RETURN(0);
  }

unknown's avatar
unknown committed
1066
  if (table->index_hints && table->index_hints->elements)
unknown's avatar
unknown committed
1067
  {
unknown's avatar
unknown committed
1068
      my_error(ER_WRONG_USAGE, MYF(0), "index hints", "VIEW");
unknown's avatar
unknown committed
1069 1070 1071
      DBUG_RETURN(TRUE);
  }

1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
  /* check loop via view definition */
  for (TABLE_LIST *precedent= table->referencing_view;
       precedent;
       precedent= precedent->referencing_view)
  {
    if (precedent->view_name.length == table->table_name_length &&
        precedent->view_db.length == table->db_length &&
        my_strcasecmp(system_charset_info,
                      precedent->view_name.str, table->table_name) == 0 &&
        my_strcasecmp(system_charset_info,
                      precedent->view_db.str, table->db) == 0)
    {
      my_error(ER_VIEW_RECURSIVE, MYF(0),
               top_view->view_db.str, top_view->view_name.str);
      DBUG_RETURN(TRUE);
    }
  }

unknown's avatar
VIEW  
unknown committed
1090 1091 1092 1093
  /*
    For now we assume that tables will not be changed during PS life (it
    will be TRUE as far as we make new table cache).
  */
1094 1095
  old_lex= thd->lex;
  arena= thd->stmt_arena;
unknown's avatar
unknown committed
1096
  if (arena->is_conventional())
1097 1098
    arena= 0;
  else
unknown's avatar
unknown committed
1099
    thd->set_n_backup_active_arena(arena, &backup);
unknown's avatar
VIEW  
unknown committed
1100 1101

  /* init timestamp */
1102
  if (!table->timestamp.str)
unknown's avatar
VIEW  
unknown committed
1103
    table->timestamp.str= table->timestamp_buffer;
1104
  /* prepare default values for old format */
1105
  table->view_suid= TRUE;
1106 1107 1108
  table->definer.user.str= table->definer.host.str= 0;
  table->definer.user.length= table->definer.host.length= 0;

unknown's avatar
VIEW  
unknown committed
1109 1110 1111 1112
  /*
    TODO: when VIEWs will be stored in cache, table mem_root should
    be used here
  */
1113
  if (parser->parse((uchar*)table, thd->mem_root, view_parameters,
1114
                    required_view_parameters, &file_parser_dummy_hook))
unknown's avatar
VIEW  
unknown committed
1115 1116
    goto err;

1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
  /*
    check old format view .frm
  */
  if (!table->definer.user.str)
  {
    DBUG_ASSERT(!table->definer.host.str &&
                !table->definer.user.length &&
                !table->definer.host.length);
    push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                        ER_VIEW_FRM_NO_USER, ER(ER_VIEW_FRM_NO_USER),
                        table->db, table->table_name);
1128
    get_default_definer(thd, &table->definer);
1129
  }
1130 1131 1132 1133
  if (flags & OPEN_VIEW_NO_PARSE)
  {
    DBUG_RETURN(FALSE);
  }
1134

unknown's avatar
VIEW  
unknown committed
1135 1136 1137 1138 1139 1140
  /*
    Save VIEW parameters, which will be wiped out by derived table
    processing
  */
  table->view_db.str= table->db;
  table->view_db.length= table->db_length;
1141 1142
  table->view_name.str= table->table_name;
  table->view_name.length= table->table_name_length;
unknown's avatar
VIEW  
unknown committed
1143

unknown's avatar
unknown committed
1144
  /*TODO: md5 test here and warning if it is differ */
unknown's avatar
VIEW  
unknown committed
1145

unknown's avatar
unknown committed
1146 1147 1148 1149 1150 1151 1152 1153
  /*
    Initialize view definition context by character set names loaded from
    the view definition file. Use UTF8 character set if view definition
    file is of old version and does not contain the character set names.
  */

  table->view_creation_ctx= View_creation_ctx::create(thd, table);

unknown's avatar
unknown committed
1154 1155 1156 1157 1158 1159
  /*
    TODO: TABLE mem root should be used here when VIEW will be stored in
    TABLE cache

    now Lex placed in statement memory
  */
unknown's avatar
unknown committed
1160
  table->view= lex= thd->lex= (LEX*) new(thd->mem_root) st_lex_local;
1161

unknown's avatar
VIEW  
unknown committed
1162
  {
1163 1164 1165
    char old_db_buf[NAME_LEN+1];
    LEX_STRING old_db= { old_db_buf, sizeof(old_db_buf) };
    bool dbchanged;
1166 1167 1168
    Parser_state parser_state(thd,
                              table->select_stmt.str,
                              table->select_stmt.length);
unknown's avatar
unknown committed
1169

1170 1171 1172 1173
    /* 
      Use view db name as thread default database, in order to ensure
      that the view is parsed and prepared correctly.
    */
unknown's avatar
unknown committed
1174 1175
    if ((result= mysql_opt_change_db(thd, &table->view_db, &old_db, 1,
                                     &dbchanged)))
1176 1177
      goto end;

1178 1179 1180 1181
    lex_start(thd);
    view_select= &lex->select_lex;
    view_select->select_number= ++thd->select_number;

unknown's avatar
unknown committed
1182
    ulong saved_mode= thd->variables.sql_mode;
unknown's avatar
VIEW  
unknown committed
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
    /* switch off modes which can prevent normal parsing of VIEW
      - MODE_REAL_AS_FLOAT            affect only CREATE TABLE parsing
      + MODE_PIPES_AS_CONCAT          affect expression parsing
      + MODE_ANSI_QUOTES              affect expression parsing
      + MODE_IGNORE_SPACE             affect expression parsing
      - MODE_NOT_USED                 not used :)
      * MODE_ONLY_FULL_GROUP_BY       affect execution
      * MODE_NO_UNSIGNED_SUBTRACTION  affect execution
      - MODE_NO_DIR_IN_CREATE         affect table creation only
      - MODE_POSTGRESQL               compounded from other modes
      - MODE_ORACLE                   compounded from other modes
      - MODE_MSSQL                    compounded from other modes
      - MODE_DB2                      compounded from other modes
      - MODE_MAXDB                    affect only CREATE TABLE parsing
      - MODE_NO_KEY_OPTIONS           affect only SHOW
      - MODE_NO_TABLE_OPTIONS         affect only SHOW
      - MODE_NO_FIELD_OPTIONS         affect only SHOW
      - MODE_MYSQL323                 affect only SHOW
      - MODE_MYSQL40                  affect only SHOW
      - MODE_ANSI                     compounded from other modes
                                      (+ transaction mode)
      ? MODE_NO_AUTO_VALUE_ON_ZERO    affect UPDATEs
      + MODE_NO_BACKSLASH_ESCAPES     affect expression parsing
    */
1207 1208
    thd->variables.sql_mode&= ~(MODE_PIPES_AS_CONCAT | MODE_ANSI_QUOTES |
                                MODE_IGNORE_SPACE | MODE_NO_BACKSLASH_ESCAPES);
unknown's avatar
unknown committed
1209 1210 1211

    /* Parse the query. */

1212
    parse_status= parse_sql(thd, & parser_state, table->view_creation_ctx);
unknown's avatar
unknown committed
1213 1214

    /* Restore environment. */
1215 1216 1217 1218 1219

    if ((old_lex->sql_command == SQLCOM_SHOW_FIELDS) ||
        (old_lex->sql_command == SQLCOM_SHOW_CREATE))
        lex->sql_command= old_lex->sql_command;

unknown's avatar
unknown committed
1220
    thd->variables.sql_mode= saved_mode;
1221 1222 1223

    if (dbchanged && mysql_change_db(thd, &old_db, TRUE))
      goto err;
unknown's avatar
VIEW  
unknown committed
1224
  }
unknown's avatar
unknown committed
1225
  if (!parse_status)
unknown's avatar
VIEW  
unknown committed
1226
  {
1227 1228
    TABLE_LIST *view_tables= lex->query_tables;
    TABLE_LIST *view_tables_tail= 0;
1229
    TABLE_LIST *tbl;
unknown's avatar
unknown committed
1230

unknown's avatar
VIEW  
unknown committed
1231
    /*
1232 1233 1234
      Check rights to run commands (EXPLAIN SELECT & SHOW CREATE) which show
      underlying tables.
      Skip this step if we are opening view for prelocking only.
unknown's avatar
VIEW  
unknown committed
1235
    */
1236 1237
    if (!table->prelocking_placeholder &&
        (old_lex->sql_command == SQLCOM_SELECT && old_lex->describe))
unknown's avatar
VIEW  
unknown committed
1238
    {
1239 1240
      if (check_table_access(thd, SELECT_ACL, view_tables, UINT_MAX, TRUE) &&
          check_table_access(thd, SHOW_VIEW_ACL, table, UINT_MAX, TRUE))
unknown's avatar
VIEW  
unknown committed
1241
      {
unknown's avatar
unknown committed
1242
        my_message(ER_VIEW_NO_EXPLAIN, ER(ER_VIEW_NO_EXPLAIN), MYF(0));
unknown's avatar
VIEW  
unknown committed
1243 1244 1245
        goto err;
      }
    }
1246
    else if (!table->prelocking_placeholder &&
1247
             (old_lex->sql_command == SQLCOM_SHOW_CREATE) &&
1248
             !table->belong_to_view)
1249
    {
1250
      if (check_table_access(thd, SHOW_VIEW_ACL, table, UINT_MAX, FALSE))
1251 1252
        goto err;
    }
unknown's avatar
VIEW  
unknown committed
1253

1254 1255 1256
    if (!(table->view_tables=
          (List<TABLE_LIST>*) new(thd->mem_root) List<TABLE_LIST>))
      goto err;
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
    /*
      mark to avoid temporary table using and put view reference and find
      last view table
    */
    for (tbl= view_tables;
         tbl;
         tbl= (view_tables_tail= tbl)->next_global)
    {
      tbl->skip_temporary= 1;
      tbl->belong_to_view= top_view;
1267
      tbl->referencing_view= table;
1268
      tbl->prelocking_placeholder= table->prelocking_placeholder;
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
      /*
        First we fill want_privilege with SELECT_ACL (this is needed for the
        tables which belongs to view subqueries and temporary table views,
        then for the merged view underlying tables we will set wanted
        privileges of top_view
      */
      tbl->grant.want_privilege= SELECT_ACL;
      /*
        After unfolding the view we lose the list of tables referenced in it
        (we will have only a list of underlying tables in case of MERGE
        algorithm, which does not include the tables referenced from
        subqueries used in view definition).
        Let's build a list of all tables referenced in the view.
      */
      table->view_tables->push_back(tbl);
1284 1285
    }

1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
    /*
      Put tables of VIEW after VIEW TABLE_LIST

      NOTE: It is important for UPDATE/INSERT/DELETE checks to have this
      tables just after VIEW instead of tail of list, to be able check that
      table is unique. Also we store old next table for the same purpose.
    */
    if (view_tables)
    {
      if (table->next_global)
      {
1297
        view_tables_tail->next_global= table->next_global;
1298 1299 1300 1301
        table->next_global->prev_global= &view_tables_tail->next_global;
      }
      else
      {
1302
        old_lex->query_tables_last= &view_tables_tail->next_global;
1303 1304 1305 1306 1307
      }
      view_tables->prev_global= &table->next_global;
      table->next_global= view_tables;
    }

unknown's avatar
unknown committed
1308 1309 1310 1311
    /*
      If the view's body needs row-based binlogging (e.g. the VIEW is created
      from SELECT UUID()), the top statement also needs it.
    */
1312 1313
    if (lex->is_stmt_unsafe())
      old_lex->set_stmt_unsafe();
unknown's avatar
unknown committed
1314 1315
    view_is_mergeable= (table->algorithm != VIEW_ALGORITHM_TMPTABLE &&
                        lex->can_be_merged());
1316 1317
    LINT_INIT(view_main_select_tables);

1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
    if (view_is_mergeable)
    {
      /*
        Currently 'view_main_select_tables' differs from 'view_tables'
        only then view has CONVERT_TZ() function in its select list.
        This may change in future, for example if we enable merging of
        views with subqueries in select list.
      */
      view_main_select_tables=
        (TABLE_LIST*)lex->select_lex.table_list.first;

      /*
        Let us set proper lock type for tables of the view's main
        select since we may want to perform update or insert on
        view. This won't work for view containing union. But this is
        ok since we don't allow insert and update on such views
        anyway.
      */
      for (tbl= view_main_select_tables; tbl; tbl= tbl->next_local)
        tbl->lock_type= table->lock_type;
1338 1339 1340 1341 1342 1343 1344 1345
      /*
        If the view is mergeable, we might want to
        INSERT/UPDATE/DELETE into tables of this view. Preserve the
        original sql command and 'duplicates' of the outer lex.
        This is used later in set_trg_event_type_for_command.
      */
      lex->sql_command= old_lex->sql_command;
      lex->duplicates= old_lex->duplicates;
1346
    }
1347 1348 1349 1350 1351
    /*
      This method has a dependency on the proper lock type being set,
      so in case of views should be called here.
    */
    lex->set_trg_event_type_for_tables();
unknown's avatar
unknown committed
1352

1353 1354 1355 1356 1357 1358 1359 1360
    /*
      If we are opening this view as part of implicit LOCK TABLES, then
      this view serves as simple placeholder and we should not continue
      further processing.
    */
    if (table->prelocking_placeholder)
      goto ok2;

1361
    old_lex->derived_tables|= (DERIVED_VIEW | lex->derived_tables);
1362 1363 1364 1365 1366 1367 1368 1369

    /* move SQL_NO_CACHE & Co to whole query */
    old_lex->safe_to_cache_query= (old_lex->safe_to_cache_query &&
				   lex->safe_to_cache_query);
    /* move SQL_CACHE to whole query */
    if (view_select->options & OPTION_TO_QUERY_CACHE)
      old_lex->select_lex.options|= OPTION_TO_QUERY_CACHE;

1370 1371 1372 1373 1374 1375 1376 1377 1378
    if (table->view_suid)
    {
      /*
        Prepare a security context to check underlying objects of the view
      */
      if (!(table->view_sctx= (Security_context *)
            thd->stmt_arena->alloc(sizeof(Security_context))))
        goto err;
      /* Assign the context to the tables referenced in the view */
1379 1380 1381 1382 1383 1384 1385
      if (view_tables)
      {
        DBUG_ASSERT(view_tables_tail);
        for (tbl= view_tables; tbl != view_tables_tail->next_global;
             tbl= tbl->next_global)
          tbl->security_ctx= table->view_sctx;
      }
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
      /* assign security context to SELECT name resolution contexts of view */
      for(SELECT_LEX *sl= lex->all_selects_list;
          sl;
          sl= sl->next_select_in_list())
        sl->context.security_ctx= table->view_sctx;
    }

    /*
      Setup an error processor to hide error messages issued by stored
      routines referenced in the view
    */
    for (SELECT_LEX *sl= lex->all_selects_list;
         sl;
         sl= sl->next_select_in_list())
    {
      sl->context.error_processor= &view_error_processor;
      sl->context.error_processor_data= (void *)table;
    }

unknown's avatar
VIEW  
unknown committed
1405 1406 1407
    /*
      check MERGE algorithm ability
      - algorithm is not explicit TEMPORARY TABLE
1408
      - VIEW SELECT allow merging
unknown's avatar
VIEW  
unknown committed
1409 1410
      - VIEW used in subquery or command support MERGE algorithm
    */
1411
    if (view_is_mergeable &&
unknown's avatar
VIEW  
unknown committed
1412
        (table->select_lex->master_unit() != &old_lex->unit ||
1413 1414
         old_lex->can_use_merged()) &&
        !old_lex->can_not_use_merged())
unknown's avatar
VIEW  
unknown committed
1415 1416
    {
      /* lex should contain at least one table */
1417
      DBUG_ASSERT(view_main_select_tables != 0);
unknown's avatar
VIEW  
unknown committed
1418

1419 1420
      List_iterator_fast<TABLE_LIST> ti(view_select->top_join_list);

unknown's avatar
VIEW  
unknown committed
1421
      table->effective_algorithm= VIEW_ALGORITHM_MERGE;
1422
      DBUG_PRINT("info", ("algorithm: MERGE"));
1423
      table->updatable= (table->updatable_view != 0);
1424 1425
      table->effective_with_check=
        old_lex->get_effective_with_check(table);
1426
      table->merge_underlying_list= view_main_select_tables;
1427

1428 1429
      /* Fill correct wanted privileges. */
      for (tbl= view_main_select_tables; tbl; tbl= tbl->next_local)
1430
        tbl->grant.want_privilege= top_view->grant.orig_want_privilege;
1431 1432

      /* prepare view context */
1433
      lex->select_lex.context.resolve_in_table_list_only(view_main_select_tables);
1434 1435
      lex->select_lex.context.outer_context= 0;
      lex->select_lex.context.select_lex= table->select_lex;
unknown's avatar
unknown committed
1436 1437 1438
      lex->select_lex.select_n_having_items+=
        table->select_lex->select_n_having_items;

unknown's avatar
VIEW  
unknown committed
1439
      /*
1440 1441 1442 1443
        Tables of the main select of the view should be marked as belonging
        to the same select as original view (again we can use LEX::select_lex
        for this purprose because we don't support MERGE algorithm for views
        with unions).
unknown's avatar
VIEW  
unknown committed
1444
      */
1445
      for (tbl= lex->select_lex.get_table_list(); tbl; tbl= tbl->next_local)
1446 1447
        tbl->select_lex= table->select_lex;

1448
      {
1449
        if (view_main_select_tables->next_local)
unknown's avatar
unknown committed
1450
        {
unknown's avatar
unknown committed
1451
          table->multitable_view= TRUE;
unknown's avatar
unknown committed
1452 1453 1454
          if (table->belong_to_view)
           table->belong_to_view->multitable_view= TRUE;
        }
1455 1456 1457 1458 1459 1460 1461 1462
        /* make nested join structure for view tables */
        NESTED_JOIN *nested_join;
        if (!(nested_join= table->nested_join=
              (NESTED_JOIN *) thd->calloc(sizeof(NESTED_JOIN))))
          goto err;
        nested_join->join_list= view_select->top_join_list;

        /* re-nest tables of VIEW */
unknown's avatar
unknown committed
1463 1464
        ti.rewind();
        while ((tbl= ti++))
1465
        {
unknown's avatar
unknown committed
1466 1467
          tbl->join_list= &nested_join->join_list;
          tbl->embedding= table;
1468 1469
        }
      }
unknown's avatar
VIEW  
unknown committed
1470

1471
      /* Store WHERE clause for post-processing in setup_underlying */
1472
      table->where= view_select->where;
1473
      /*
1474 1475 1476 1477
        Add subqueries units to SELECT into which we merging current view.
        unit(->next)* chain starts with subqueries that are used by this
        view and continues with subqueries that are used by other views.
        We must not add any subquery twice (otherwise we'll form a loop),
1478
        to do this we remember in end_unit the first subquery that has
1479
        been already added.
1480

1481 1482
        NOTE: we do not support UNION here, so we take only one select
      */
1483
      SELECT_LEX_NODE *end_unit= table->select_lex->slave;
1484
      SELECT_LEX_UNIT *next_unit;
1485 1486
      for (SELECT_LEX_UNIT *unit= lex->select_lex.first_inner_unit();
           unit;
1487
           unit= next_unit)
1488
      {
1489 1490
        if (unit == end_unit)
          break;
1491 1492
        SELECT_LEX_NODE *save_slave= unit->slave;
        next_unit= unit->next_unit();
1493 1494 1495 1496
        unit->include_down(table->select_lex);
        unit->slave= save_slave; // fix include_down initialisation
      }

unknown's avatar
unknown committed
1497 1498 1499 1500 1501 1502
      /* 
        We can safely ignore the VIEW's ORDER BY if we merge into union 
        branch, as order is not important there.
      */
      if (!table->select_lex->master_unit()->is_union())
        table->select_lex->order_list.push_back(&lex->select_lex.order_list);
unknown's avatar
VIEW  
unknown committed
1503 1504 1505 1506 1507
      /*
	This SELECT_LEX will be linked in global SELECT_LEX list
	to make it processed by mysql_handle_derived(),
	but it will not be included to SELECT_LEX tree, because it
	will not be executed
unknown's avatar
unknown committed
1508
      */ 
unknown's avatar
VIEW  
unknown committed
1509 1510 1511
      goto ok;
    }

1512
    table->effective_algorithm= VIEW_ALGORITHM_TMPTABLE;
1513
    DBUG_PRINT("info", ("algorithm: TEMPORARY TABLE"));
1514
    view_select->linkage= DERIVED_TABLE_TYPE;
1515
    table->updatable= 0;
1516
    table->effective_with_check= VIEW_CHECK_NONE;
unknown's avatar
unknown committed
1517
    old_lex->subqueries= TRUE;
unknown's avatar
VIEW  
unknown committed
1518 1519 1520

    /* SELECT tree link */
    lex->unit.include_down(table->select_lex);
1521
    lex->unit.slave= view_select; // fix include_down initialisation
unknown's avatar
VIEW  
unknown committed
1522 1523 1524 1525 1526 1527 1528 1529

    table->derived= &lex->unit;
  }
  else
    goto err;

ok:
  /* global SELECT list linking */
1530
  end= view_select;	// primary SELECT_LEX is always last
unknown's avatar
VIEW  
unknown committed
1531 1532 1533 1534 1535 1536
  end->link_next= old_lex->all_selects_list;
  old_lex->all_selects_list->link_prev= &end->link_next;
  old_lex->all_selects_list= lex->all_selects_list;
  lex->all_selects_list->link_prev=
    (st_select_lex_node**)&old_lex->all_selects_list;

1537
ok2:
1538 1539
  DBUG_ASSERT(lex == thd->lex);
  thd->lex= old_lex;                            // Needed for prepare_security
1540
  result= !table->prelocking_placeholder && table->prepare_security(thd);
unknown's avatar
VIEW  
unknown committed
1541

1542
  lex_end(lex);
1543
end:
unknown's avatar
VIEW  
unknown committed
1544
  if (arena)
unknown's avatar
unknown committed
1545
    thd->restore_active_arena(arena, &backup);
1546 1547 1548 1549
  thd->lex= old_lex;
  DBUG_RETURN(result);

err:
unknown's avatar
unknown committed
1550 1551
  DBUG_ASSERT(thd->lex == table->view);
  lex_end(thd->lex);
1552
  delete table->view;
unknown's avatar
VIEW  
unknown committed
1553
  table->view= 0;	// now it is not VIEW placeholder
1554 1555
  result= 1;
  goto end;
unknown's avatar
VIEW  
unknown committed
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
}


/*
  drop view

  SYNOPSIS
    mysql_drop_view()
    thd		- thread handler
    views	- views to delete
    drop_mode	- cascade/check

  RETURN VALUE
unknown's avatar
unknown committed
1569 1570
    FALSE OK
    TRUE  Error
unknown's avatar
VIEW  
unknown committed
1571
*/
1572

unknown's avatar
unknown committed
1573
bool mysql_drop_view(THD *thd, TABLE_LIST *views, enum_drop_mode drop_mode)
unknown's avatar
VIEW  
unknown committed
1574 1575 1576
{
  char path[FN_REFLEN];
  TABLE_LIST *view;
1577 1578 1579
  String non_existant_views;
  char *wrong_object_db= NULL, *wrong_object_name= NULL;
  bool error= FALSE;
unknown's avatar
unknown committed
1580
  enum legacy_db_type not_used;
1581 1582
  bool some_views_deleted= FALSE;
  bool something_wrong= FALSE;
unknown's avatar
unknown committed
1583
  DBUG_ENTER("mysql_drop_view");
unknown's avatar
VIEW  
unknown committed
1584

1585
  VOID(pthread_mutex_lock(&LOCK_open));
unknown's avatar
VIEW  
unknown committed
1586 1587
  for (view= views; view; view= view->next_local)
  {
unknown's avatar
unknown committed
1588
    TABLE_SHARE *share;
unknown's avatar
unknown committed
1589
    frm_type_enum type= FRMTYPE_ERROR;
1590
    build_table_filename(path, sizeof(path),
1591
                         view->db, view->table_name, reg_ext, 0);
unknown's avatar
unknown committed
1592

1593 1594
    if (access(path, F_OK) || 
        FRMTYPE_VIEW != (type= mysql_frm_type(thd, path, &not_used)))
unknown's avatar
VIEW  
unknown committed
1595 1596
    {
      char name[FN_REFLEN];
1597
      my_snprintf(name, sizeof(name), "%s.%s", view->db, view->table_name);
unknown's avatar
VIEW  
unknown committed
1598 1599 1600 1601 1602 1603 1604
      if (thd->lex->drop_if_exists)
      {
	push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
			    ER_BAD_TABLE_ERROR, ER(ER_BAD_TABLE_ERROR),
			    name);
	continue;
      }
1605 1606 1607 1608 1609 1610 1611 1612
      if (type == FRMTYPE_TABLE)
      {
        if (!wrong_object_name)
        {
          wrong_object_db= view->db;
          wrong_object_name= view->table_name;
        }
      }
unknown's avatar
VIEW  
unknown committed
1613
      else
1614 1615 1616 1617 1618 1619
      {
        if (non_existant_views.length())
          non_existant_views.append(',');
        non_existant_views.append(String(view->table_name,system_charset_info));
      }
      continue;
unknown's avatar
VIEW  
unknown committed
1620 1621
    }
    if (my_delete(path, MYF(MY_WME)))
1622
      error= TRUE;
unknown's avatar
unknown committed
1623

1624 1625
    some_views_deleted= TRUE;

unknown's avatar
unknown committed
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
    /*
      For a view, there is only one table_share object which should never
      be used outside of LOCK_open
    */
    if ((share= get_cached_table_share(view->db, view->table_name)))
    {
      DBUG_ASSERT(share->ref_count == 0);
      pthread_mutex_lock(&share->mutex);
      share->ref_count++;
      share->version= 0;
      pthread_mutex_unlock(&share->mutex);
      release_table_share(share, RELEASE_WAIT_FOR_DROP);
    }
1639
    query_cache_invalidate3(thd, view, 0);
unknown's avatar
unknown committed
1640
    sp_cache_invalidate();
unknown's avatar
VIEW  
unknown committed
1641
  }
1642

1643 1644 1645 1646 1647 1648 1649 1650 1651
  if (wrong_object_name)
  {
    my_error(ER_WRONG_OBJECT, MYF(0), wrong_object_db, wrong_object_name, 
             "VIEW");
  }
  if (non_existant_views.length())
  {
    my_error(ER_BAD_TABLE_ERROR, MYF(0), non_existant_views.c_ptr());
  }
unknown's avatar
unknown committed
1652

1653 1654 1655 1656 1657 1658 1659 1660
  something_wrong= error || wrong_object_name || non_existant_views.length();
  if (some_views_deleted || !something_wrong)
  {
    /* if something goes wrong, bin-log with possible error code,
       otherwise bin-log with error code cleared.
     */
    write_bin_log(thd, !something_wrong, thd->query, thd->query_length);
  }
unknown's avatar
unknown committed
1661 1662

  VOID(pthread_mutex_unlock(&LOCK_open));
1663 1664 1665 1666 1667
  
  if (something_wrong)
  {
    DBUG_RETURN(TRUE);
  }
1668
  my_ok(thd);
unknown's avatar
unknown committed
1669
  DBUG_RETURN(FALSE);
unknown's avatar
VIEW  
unknown committed
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
}


/*
  Check type of .frm if we are not going to parse it

  SYNOPSIS
    mysql_frm_type()
    path	path to file

  RETURN
    FRMTYPE_ERROR	error
    FRMTYPE_TABLE	table
    FRMTYPE_VIEW	view
*/

unknown's avatar
unknown committed
1686
frm_type_enum mysql_frm_type(THD *thd, char *path, enum legacy_db_type *dbt)
unknown's avatar
VIEW  
unknown committed
1687 1688
{
  File file;
1689 1690
  uchar header[10];	//"TYPE=VIEW\n" it is 10 characters
  int error;
unknown's avatar
VIEW  
unknown committed
1691 1692
  DBUG_ENTER("mysql_frm_type");

1693 1694
  *dbt= DB_TYPE_UNKNOWN;

1695
  if ((file= my_open(path, O_RDONLY | O_SHARE, MYF(0))) < 0)
unknown's avatar
VIEW  
unknown committed
1696
    DBUG_RETURN(FRMTYPE_ERROR);
1697
  error= my_read(file, (uchar*) header, sizeof(header), MYF(MY_NABP));
unknown's avatar
VIEW  
unknown committed
1698
  my_close(file, MYF(MY_WME));
1699 1700

  if (error)
1701
    DBUG_RETURN(FRMTYPE_ERROR);
1702
  if (!strncmp((char*) header, "TYPE=VIEW\n", sizeof(header)))
1703
    DBUG_RETURN(FRMTYPE_VIEW);
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714

  /*
    This is just a check for DB_TYPE. We'll return default unknown type
    if the following test is true (arg #3). This should not have effect
    on return value from this function (default FRMTYPE_TABLE)
  */
  if (header[0] != (uchar) 254 || header[1] != 1 ||
      (header[2] != FRM_VER && header[2] != FRM_VER+1 &&
       (header[2] < FRM_VER+3 || header[2] > FRM_VER+4)))
    DBUG_RETURN(FRMTYPE_TABLE);

unknown's avatar
unknown committed
1715
  *dbt= (enum legacy_db_type) (uint) *(header + 3);
1716
  DBUG_RETURN(FRMTYPE_TABLE);                   // Is probably a .frm table
unknown's avatar
VIEW  
unknown committed
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
}


/*
  check of key (primary or unique) presence in updatable view

  SYNOPSIS
    check_key_in_view()
    thd     thread handler
    view    view for check with opened table

1728
  DESCRIPTION
1729 1730
    If it is VIEW and query have LIMIT clause then check that underlying
    table of view contain one of following:
1731 1732 1733 1734 1735
      1) primary key of underlying table
      2) unique key underlying table with fields for which NULL value is
         impossible
      3) all fields of underlying table

unknown's avatar
VIEW  
unknown committed
1736 1737 1738 1739 1740 1741 1742
  RETURN
    FALSE   OK
    TRUE    view do not contain key or all fields
*/

bool check_key_in_view(THD *thd, TABLE_LIST *view)
{
1743
  TABLE *table;
1744
  Field_translator *trans, *end_of_trans;
1745
  KEY *key_info, *key_info_end;
unknown's avatar
VIEW  
unknown committed
1746
  DBUG_ENTER("check_key_in_view");
1747

1748
  /*
unknown's avatar
merge  
unknown committed
1749
    we do not support updatable UNIONs in VIEW, so we can check just limit of
1750 1751
    LEX::select_lex
  */
1752 1753 1754
  if ((!view->view && !view->belong_to_view) ||
      thd->lex->sql_command == SQLCOM_INSERT ||
      thd->lex->select_lex.select_limit == 0)
1755
    DBUG_RETURN(FALSE); /* it is normal table or query without LIMIT */
1756
  table= view->table;
1757
  view= view->top_table();
1758
  trans= view->field_translation;
1759
  key_info_end= (key_info= table->key_info)+ table->s->keys;
unknown's avatar
VIEW  
unknown committed
1760

1761
  end_of_trans=  view->field_translation_end;
1762
  DBUG_ASSERT(table != 0 && view->field_translation != 0);
unknown's avatar
VIEW  
unknown committed
1763

1764 1765 1766 1767 1768 1769
  {
    /*
      We should be sure that all fields are ready to get keys from them, but
      this operation should not have influence on Field::query_id, to avoid
      marking as used fields which are not used
    */
1770 1771 1772
    enum_mark_columns save_mark_used_columns= thd->mark_used_columns;
    thd->mark_used_columns= MARK_COLUMNS_NONE;
    DBUG_PRINT("info", ("thd->mark_used_columns: %d", thd->mark_used_columns));
1773 1774 1775
    for (Field_translator *fld= trans; fld < end_of_trans; fld++)
    {
      if (!fld->item->fixed && fld->item->fix_fields(thd, &fld->item))
unknown's avatar
unknown committed
1776
      {
1777
        thd->mark_used_columns= save_mark_used_columns;
1778
        return TRUE;
unknown's avatar
unknown committed
1779
      }
1780
    }
1781 1782
    thd->mark_used_columns= save_mark_used_columns;
    DBUG_PRINT("info", ("thd->mark_used_columns: %d", thd->mark_used_columns));
1783
  }
1784 1785
  /* Loop over all keys to see if a unique-not-null key is used */
  for (;key_info != key_info_end ; key_info++)
unknown's avatar
VIEW  
unknown committed
1786
  {
1787
    if ((key_info->flags & (HA_NOSAME | HA_NULL_PART_KEY)) == HA_NOSAME)
unknown's avatar
VIEW  
unknown committed
1788 1789
    {
      KEY_PART_INFO *key_part= key_info->key_part;
1790 1791 1792 1793
      KEY_PART_INFO *key_part_end= key_part + key_info->key_parts;

      /* check that all key parts are used */
      for (;;)
unknown's avatar
VIEW  
unknown committed
1794
      {
1795 1796
        Field_translator *k;
        for (k= trans; k < end_of_trans; k++)
unknown's avatar
VIEW  
unknown committed
1797
        {
1798
          Item_field *field;
1799
          if ((field= k->item->filed_for_view_update()) &&
1800
              field->field == key_part->field)
unknown's avatar
VIEW  
unknown committed
1801 1802
            break;
        }
1803
        if (k == end_of_trans)
1804 1805 1806
          break;                                // Key is not possible
        if (++key_part == key_part_end)
          DBUG_RETURN(FALSE);                   // Found usable key
unknown's avatar
VIEW  
unknown committed
1807 1808 1809 1810
      }
    }
  }

1811
  DBUG_PRINT("info", ("checking if all fields of table are used"));
unknown's avatar
VIEW  
unknown committed
1812 1813
  /* check all fields presence */
  {
1814
    Field **field_ptr;
1815
    Field_translator *fld;
1816
    for (field_ptr= table->field; *field_ptr; field_ptr++)
unknown's avatar
VIEW  
unknown committed
1817
    {
1818
      for (fld= trans; fld < end_of_trans; fld++)
unknown's avatar
VIEW  
unknown committed
1819
      {
1820
        Item_field *field;
1821
        if ((field= fld->item->filed_for_view_update()) &&
1822
            field->field == *field_ptr)
unknown's avatar
VIEW  
unknown committed
1823 1824
          break;
      }
1825
      if (fld == end_of_trans)                // If field didn't exists
unknown's avatar
VIEW  
unknown committed
1826
      {
1827
        /*
1828
          Keys or all fields of underlying tables are not found => we have
1829 1830
          to check variable updatable_views_with_limit to decide should we
          issue an error or just a warning
1831
        */
1832
        if (thd->variables.updatable_views_with_limit)
unknown's avatar
VIEW  
unknown committed
1833
        {
1834 1835 1836 1837
          /* update allowed, but issue warning */
          push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
                       ER_WARN_VIEW_WITHOUT_KEY, ER(ER_WARN_VIEW_WITHOUT_KEY));
          DBUG_RETURN(FALSE);
unknown's avatar
VIEW  
unknown committed
1838
        }
1839 1840
        /* prohibit update */
        DBUG_RETURN(TRUE);
unknown's avatar
VIEW  
unknown committed
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852
      }
    }
  }
  DBUG_RETURN(FALSE);
}


/*
  insert fields from VIEW (MERGE algorithm) into given list

  SYNOPSIS
    insert_view_fields()
1853
    thd       thread handler
unknown's avatar
VIEW  
unknown committed
1854 1855
    list      list for insertion
    view      view for processing
1856 1857

  RETURN
unknown's avatar
unknown committed
1858 1859
    FALSE OK
    TRUE  error (is not sent to cliet)
unknown's avatar
VIEW  
unknown committed
1860 1861
*/

1862
bool insert_view_fields(THD *thd, List<Item> *list, TABLE_LIST *view)
unknown's avatar
VIEW  
unknown committed
1863
{
1864
  Field_translator *trans_end;
1865
  Field_translator *trans;
unknown's avatar
VIEW  
unknown committed
1866
  DBUG_ENTER("insert_view_fields");
1867 1868

  if (!(trans= view->field_translation))
unknown's avatar
unknown committed
1869
    DBUG_RETURN(FALSE);
1870
  trans_end= view->field_translation_end;
unknown's avatar
VIEW  
unknown committed
1871

1872
  for (Field_translator *entry= trans; entry < trans_end; entry++)
unknown's avatar
VIEW  
unknown committed
1873
  {
1874
    Item_field *fld;
1875
    if ((fld= entry->item->filed_for_view_update()))
1876
      list->push_back(fld);
1877 1878
    else
    {
1879
      my_error(ER_NON_INSERTABLE_TABLE, MYF(0), view->alias, "INSERT");
unknown's avatar
unknown committed
1880
      DBUG_RETURN(TRUE);
1881
    }
unknown's avatar
VIEW  
unknown committed
1882
  }
unknown's avatar
unknown committed
1883
  DBUG_RETURN(FALSE);
unknown's avatar
VIEW  
unknown committed
1884
}
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909

/*
  checking view md5 check suum

  SINOPSYS
    view_checksum()
    thd     threar handler
    view    view for check

  RETUIRN
    HA_ADMIN_OK               OK
    HA_ADMIN_NOT_IMPLEMENTED  it is not VIEW
    HA_ADMIN_WRONG_CHECKSUM   check sum is wrong
*/

int view_checksum(THD *thd, TABLE_LIST *view)
{
  char md5[MD5_BUFF_LENGTH];
  if (!view->view || view->md5.length != 32)
    return HA_ADMIN_NOT_IMPLEMENTED;
  view->calc_md5(md5);
  return (strncmp(md5, view->md5.str, 32) ?
          HA_ADMIN_WRONG_CHECKSUM :
          HA_ADMIN_OK);
}
1910

1911 1912
/*
  rename view
1913

1914 1915
  Synopsis:
    renames a view
1916

1917 1918 1919 1920
  Parameters:
    thd        thread handler
    new_name   new name of view
    view       view
1921

1922 1923 1924 1925
  Return values:
    FALSE      Ok 
    TRUE       Error
*/
1926 1927
bool
mysql_rename_view(THD *thd,
1928 1929
                  const char *new_name,
                  TABLE_LIST *view)
1930
{
1931
  LEX_STRING pathstr;
1932
  File_parser *parser;
1933
  char path_buff[FN_REFLEN];
1934
  bool error= TRUE;
1935 1936
  DBUG_ENTER("mysql_rename_view");

1937 1938 1939 1940
  pathstr.str= (char *) path_buff;
  pathstr.length= build_table_filename(path_buff, sizeof(path_buff) - 1,
                                       view->db, view->table_name,
                                       reg_ext, 0);
1941 1942

  if ((parser= sql_parse_prepare(&pathstr, thd->mem_root, 1)) && 
1943 1944
       is_equal(&view_type, parser->type()))
  {
1945
    TABLE_LIST view_def;
1946 1947
    char dir_buff[FN_REFLEN];
    LEX_STRING dir, file;
1948

1949 1950 1951 1952 1953 1954 1955 1956 1957 1958
    /*
      To be PS-friendly we should either to restore state of
      TABLE_LIST object pointed by 'view' after using it for
      view definition parsing or use temporary 'view_def'
      object for it.
    */
    bzero(&view_def, sizeof(view_def));
    view_def.timestamp.str= view_def.timestamp_buffer;
    view_def.view_suid= TRUE;

1959
    /* get view definition and source */
1960
    if (parser->parse((uchar*)&view_def, thd->mem_root, view_parameters,
1961 1962
                      array_elements(view_parameters)-1,
                      &file_parser_dummy_hook))
1963
      goto err;
1964 1965

    /* rename view and it's backups */
1966
    if (rename_in_schema_file(thd, view->db, view->table_name, new_name, 
1967
                              view_def.revision - 1, num_view_backups))
1968
      goto err;
1969

1970 1971 1972
    dir.str= dir_buff;
    dir.length= build_table_filename(dir_buff, sizeof(dir_buff) - 1,
                                     view->db, "", "", 0);
1973

1974 1975 1976
    pathstr.str= path_buff;
    pathstr.length= build_table_filename(path_buff, sizeof(path_buff) - 1,
                                      view->db, new_name, reg_ext, 0);
1977

1978 1979
    file.str= pathstr.str + dir.length;
    file.length= pathstr.length - dir.length;
1980

1981
    if (sql_create_definition_file(&dir, &file, view_file_type,
1982
                                   (uchar*)&view_def, view_parameters,
1983 1984
                                   num_view_backups)) 
    {
1985
      /* restore renamed view in case of error */
1986
      rename_in_schema_file(thd, view->db, new_name, view->table_name, 
1987
                            view_def.revision - 1, num_view_backups);
1988
      goto err;
1989 1990 1991 1992 1993 1994 1995
    }
  } else
    DBUG_RETURN(1);  

  /* remove cache entries */
  query_cache_invalidate3(thd, view, 0);
  sp_cache_invalidate();
1996 1997 1998 1999
  error= FALSE;

err:
  DBUG_RETURN(error);
2000
}