-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathtable_trigger_dispatcher.cc
699 lines (536 loc) · 21.6 KB
/
table_trigger_dispatcher.cc
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
699
/*
Copyright (c) 2013, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, 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 */
#include "sql/table_trigger_dispatcher.h"
#include <assert.h>
#include <sys/types.h>
#include <memory>
#include <string>
#include <utility>
#include "my_alloc.h"
#include "my_sqlcommand.h"
#include "mysql/strings/m_ctype.h"
#include "sql/auth/auth_acls.h"
#include "sql/auth/auth_common.h" // check_global_access
#include "sql/auth/sql_authorization.h" // check_valid_definer
#include "sql/auth/sql_security_ctx.h"
#include "sql/dd/cache/dictionary_client.h"
#include "sql/dd/dd_trigger.h" // dd::create_trigger
#include "sql/dd/string_type.h"
#include "sql/dd/types/trigger.h" // name_collation
#include "sql/derror.h" // ER_THD
#include "sql/field.h"
#include "sql/handler.h"
#include "sql/mysqld.h" // table_alias_charset
#include "sql/psi_memory_key.h"
#include "sql/sp_head.h" // sp_head
#include "sql/sql_class.h"
#include "sql/sql_error.h"
#include "sql/sql_lex.h"
#include "sql/sql_list.h"
#include "sql/sql_parse.h" // create_default_definer
#include "sql/table.h"
#include "sql/table_cache.h" // table_cache_manager
#include "sql/thr_malloc.h"
#include "sql/trigger.h"
#include "sql/trigger_chain.h"
#include "string_with_len.h"
#include "thr_lock.h"
namespace dd {
class Schema;
class Table;
} // namespace dd
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
/**
Create an instance of Table_trigger_dispatcher for the given subject table.
@param subject_table valid (not fake!) TABLE-object representing
the subject table
@return a pointer to a new Table_trigger_dispatcher instance.
*/
Table_trigger_dispatcher *Table_trigger_dispatcher::create(
TABLE *subject_table) {
return new (&subject_table->mem_root) Table_trigger_dispatcher(subject_table);
}
/**
Private form of Table_trigger_dispatcher constructor. In order to construct an
instance of Table_trigger_dispatcher with a valid pointer to the subject
table, use Table_trigger_dispatcher::create().
*/
Table_trigger_dispatcher::Table_trigger_dispatcher(TABLE *subject_table)
: m_subject_table(subject_table),
m_record1_field(nullptr),
m_new_field(nullptr),
m_old_field(nullptr),
m_parse_error_message(nullptr),
m_load_finalized(false) {
memset(m_trigger_map, 0, sizeof(m_trigger_map));
}
Table_trigger_dispatcher::~Table_trigger_dispatcher() {
// Destroy fields.
if (m_record1_field) {
for (Field **fld_ptr = m_record1_field; *fld_ptr; fld_ptr++)
::destroy_at(*fld_ptr);
}
// Destroy trigger chains.
for (int i = 0; i < (int)TRG_EVENT_MAX; ++i) {
for (int j = 0; j < (int)TRG_ACTION_MAX; ++j) {
if (m_trigger_map[i][j] != nullptr) ::destroy_at(m_trigger_map[i][j]);
}
}
}
bool Table_trigger_dispatcher::create_trigger(
THD *thd, String *binlog_create_trigger_stmt, bool if_not_exists,
bool &already_exists) {
assert(m_subject_table);
assert(!already_exists);
LEX *lex = thd->lex;
const dd::cache::Dictionary_client::Auto_releaser releaser(thd->dd_client());
// If this table has broken triggers, CREATE TRIGGER is not allowed.
if (check_for_broken_triggers()) return true;
// Check that the new trigger is in the same schema as the base table.
if (my_strcasecmp(table_alias_charset, m_subject_table->s->db.str,
lex->spname->m_db.str)) {
my_error(ER_TRG_IN_WRONG_SCHEMA, MYF(0));
return true;
}
// Check if a trigger with the same name already exist in this schema.
const dd::Schema *sch_obj = nullptr;
if (thd->dd_client()->acquire(lex->spname->m_db.str, &sch_obj)) return true;
// The table is already open, so the schema must exist.
assert(sch_obj != nullptr);
dd::String_type table_name;
if (thd->dd_client()->get_table_name_by_trigger_name(
*sch_obj, lex->spname->m_name.str, &table_name))
return true;
// Make sure DEFINER clause is specified.
if (!lex->definer) {
/*
DEFINER-clause is missing.
If we are in slave thread, this means that we received CREATE TRIGGER
from the master, that does not support definer in triggers. So, we
should mark this trigger as non-SUID. Note that this does not happen
when we parse triggers' definitions during reading metadata from
the Data Dictionary. LEX::definer is ignored in that case.
Otherwise, we should use CURRENT_USER() as definer.
NOTE: when CREATE TRIGGER statement is allowed to be executed in PS/SP,
it will be required to create the definer below in persistent MEM_ROOT
of PS/SP.
NOTE: here we allocate lex->definer on THD->mem_root. Later it will be
copied into the base table mem-root to be used inside Trigger.
*/
if (!thd->slave_thread) {
if (!(lex->definer = create_default_definer(thd))) return true;
} else {
my_error(ER_TRG_NO_DEFINER, MYF(0), m_subject_table->s->db.str,
lex->spname->m_name.str);
return true;
}
}
if (table_name != "") {
// Trigger with the same name already exists in this schema.
if (if_not_exists) {
/*
IF NOT EXISTS clause is only supported for triggers associated with the
same table.
*/
if (my_strcasecmp(table_alias_charset, m_subject_table->s->table_name.str,
table_name.c_str())) {
my_error(ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFERENT_TABLE,
MYF(0), m_subject_table->s->db.str, lex->spname->m_name.str);
return true;
}
// Trigger with the same name already exists on the same table.
already_exists = true;
push_warning_printf(
thd, Sql_condition::SL_NOTE, ER_WARN_TRG_ALREADY_EXISTS,
ER_THD(thd, ER_WARN_TRG_ALREADY_EXISTS), lex->spname->m_name.str,
m_subject_table->s->db.str, table_name.c_str());
/* SUID trigger is only supported (DEFINER is specified by the user). */
return (Trigger::construct_create_trigger_stmt_with_definer(
thd, binlog_create_trigger_stmt, lex->definer->user,
lex->definer->host));
}
my_error(ER_TRG_ALREADY_EXISTS, MYF(0));
return true;
}
if (check_valid_definer(thd, lex->definer)) return true;
if (thd->get_stmt_da()->is_error()) return true;
/*
Check if all references to fields in OLD/NEW-rows in this trigger are valid.
NOTE: Setting m_old_field / m_new_field here is required because of
Item_trigger_field::fix_fields() later.
NOTE: We do it here more from ease of use standpoint. We still have to
do some checks on each execution. E.g. we can catch privilege changes
only during execution. Also in near future, when we will allow access
to other tables from trigger we won't be able to catch changes in other
tables...
Since we don't plan to access to contents of the fields it does not
matter that we choose for both OLD and NEW values the same versions
of Field objects here.
*/
m_old_field = m_subject_table->field;
m_new_field = m_subject_table->field;
if (lex->sphead->setup_trigger_fields(thd, this, nullptr, true)) return true;
m_old_field = nullptr;
m_new_field = nullptr;
// Create new trigger.
Trigger *t = Trigger::create_from_parser(thd, m_subject_table,
binlog_create_trigger_stmt);
if (!t) return true;
// Create trigger chain.
Trigger_chain *tc = create_trigger_chain(
&m_subject_table->mem_root, t->get_event(), t->get_action_time());
if (!tc) {
::destroy_at(t);
return true;
}
// Add the newly created trigger to the chain.
if (tc->add_trigger(&m_subject_table->mem_root, t,
lex->sphead->m_trg_chistics.ordering_clause,
lex->sphead->m_trg_chistics.anchor_trigger_name)) {
::destroy_at(t);
return true;
}
return dd::create_trigger(thd, t, lex->sphead->m_trg_chistics.ordering_clause,
lex->sphead->m_trg_chistics.anchor_trigger_name);
}
/**
Prepare array of Field objects referencing to TABLE::record[1] instead
of record[0] (they will represent OLD.* row values in ON UPDATE trigger
and in ON DELETE trigger which will be called during REPLACE execution).
@return Operation status.
@retval false Success
@retval true Failure
*/
bool Table_trigger_dispatcher::prepare_record1_accessors() {
Field **fld, **old_fld;
assert(m_subject_table);
m_record1_field = (Field **)m_subject_table->mem_root.Alloc(
(m_subject_table->s->fields + 1) * sizeof(Field *));
if (!m_record1_field) return true;
for (fld = m_subject_table->field, old_fld = m_record1_field; *fld;
fld++, old_fld++) {
*old_fld = (*fld)->new_field(&m_subject_table->mem_root, m_subject_table);
if (!(*old_fld)) return true;
(*old_fld)->move_field_offset(
(ptrdiff_t)(m_subject_table->record[1] - m_subject_table->record[0]));
}
*old_fld = nullptr;
return false;
}
/**
Finalize load of triggers for the table by creating Trigger objects to
be associated with TABLE/Table_trigger_dispatcher (rather than with
TABLE_SHARE), parsing trigger bodies, creating trigger chains, preparing
sp_head objects and row accessors.
@param thd current thread context
@return Operation status.
@retval false Success
@retval true Failure
*/
bool Table_trigger_dispatcher::finalize_load(THD *thd) {
assert(m_subject_table);
List<Trigger> triggers;
/*
Create Trigger objects to be bound to TABLE from those stored
in TABLE_SHARE.
*/
List_iterator_fast<Trigger> it_share(*m_subject_table->s->triggers);
const Trigger *t_share;
while ((t_share = it_share++)) {
Trigger *t_clone = t_share->clone_shallow(&m_subject_table->mem_root);
if (!t_clone || triggers.push_back(t_clone, &m_subject_table->mem_root))
return true;
}
// 'false' flag for 'is_upgrade' as we read Trigger from DD.
parse_triggers(thd, &triggers, false);
// Create trigger chains and assigns triggers to chains.
Trigger_chain unparseable_triggers;
List_iterator_fast<Trigger> it(triggers);
Trigger *t;
while ((t = it++)) {
Trigger_chain *tc =
t->has_parse_error()
? &unparseable_triggers
: create_trigger_chain(&m_subject_table->mem_root, t->get_event(),
t->get_action_time());
if (!tc || tc->add_trigger(&m_subject_table->mem_root, t)) return true;
}
// Prepare fields for the OLD-row.
if (has_update_triggers() || has_delete_triggers()) {
if (prepare_record1_accessors()) return true;
}
/*
Bind Item_trigger_field in the trigger's SP-head to this
Table_trigger_dispatcher object.
*/
it.rewind();
while ((t = it++)) {
sp_head *sp = t->get_sp();
if (!sp) continue;
sp->setup_trigger_fields(thd, this, t->get_subject_table_grant(), false);
}
m_load_finalized = true;
table_cache_manager.get_cache(thd)->notify_triggers_load();
return false;
}
/**
Make sure there is a chain for the specified event and action time.
@return A pointer to newly created Trigger_chain object,
NULL in case of OOM error.
*/
Trigger_chain *Table_trigger_dispatcher::create_trigger_chain(
MEM_ROOT *mem_root, enum_trigger_event_type event,
enum_trigger_action_time_type action_time) {
assert(event != TRG_EVENT_MAX);
assert(action_time != TRG_ACTION_MAX);
Trigger_chain *tc = get_triggers(event, action_time);
if (tc) return tc;
tc = new (mem_root) Trigger_chain();
if (tc) m_trigger_map[event][action_time] = tc;
return tc;
}
/**
Get trigger object by trigger name.
@param [in] trigger_name trigger name
@return a pointer to Trigger object, NULL if the trigger not found.
*/
Trigger *Table_trigger_dispatcher::find_trigger(
const LEX_STRING &trigger_name) {
for (int i = 0; i < static_cast<int>(TRG_EVENT_MAX); ++i) {
for (int j = 0; j < static_cast<int>(TRG_ACTION_MAX); ++j) {
Trigger_chain *tc = get_triggers(i, j);
if (tc == nullptr) continue;
List_iterator<Trigger> it(tc->get_trigger_list());
Trigger *t;
while ((t = it++) != nullptr) {
if (!my_strnncoll(
dd::Trigger::name_collation(),
pointer_cast<const uchar *>(t->get_trigger_name().str),
t->get_trigger_name().length,
pointer_cast<const uchar *>(trigger_name.str),
trigger_name.length))
return t;
}
}
}
return nullptr;
}
/**
Parse trigger definition statements (CREATE TRIGGER).
@param [in] thd Thread context
@param [in] is_upgrade Flag to indicate that trigger being parsed is read
from .TRG file in case of upgrade.
@param [in] triggers List of triggers to parse
*/
void Table_trigger_dispatcher::parse_triggers(THD *thd, List<Trigger> *triggers,
bool is_upgrade) {
List_iterator<Trigger> it(*triggers);
while (true) {
Trigger *t = it++;
if (!t) break;
const bool fatal_parse_error = t->parse(thd, is_upgrade);
/*
There are two kinds of parse errors here:
- "soft errors" -- these are the errors when we were able to parse out
the trigger name and the base table name. However there was some
parse error that prevents the trigger from being executed.
This kind of errors is designated by:
- fatal_parse_error is false
- Trigger::has_parse_error() returns true
In case of these errors we put the failed trigger into the list so
that it will be shown in the informational statements (queries from
INFORMATION_SCHEMA and so on), but it's forbidden to execute such
triggers.
- "fatal errors" -- there are the errors when we were unable to get
even basic information about the trigger (or out-of-memory error
happens). The trigger is in completely useless state.
This kind of errors is signalled by fatal_parse_error being true.
In case of these errors we just remember the error message and delete
the trigger instance (do not put it into the list).
*/
if (fatal_parse_error || t->has_parse_error()) {
assert(!t->get_sp()); // SP must be NULL.
if (t->has_parse_error())
set_parse_error_message(t->get_parse_error_message());
/*
In case we are upgrading, call set_parse_error_message() to set
m_parse_error_message in case of fatal errors too. As return type
of this function is void, we use m_parse_error_message to check
for any errors in Trigger upgrade upgrade.
*/
if (is_upgrade && fatal_parse_error) {
set_parse_error_message("Fatal Error in Parsing Trigger.");
}
if (fatal_parse_error) {
::destroy_at(t);
it.remove();
}
continue;
}
assert(!t->has_parse_error());
sp_head *sp = t->get_sp();
if (sp) sp->m_trg_list = this;
}
}
/**
Execute trigger for given (event, time) pair.
The operation executes trigger for the specified event (insert, update,
delete) and time (after, before) if it is set.
@param thd Thread handle
@param event Insert, update or delete
@param action_time Before or after
@param old_row_is_record1 If record1 contains old or new field.
@return Operation status.
@retval false Success
@retval true Failure
*/
bool Table_trigger_dispatcher::process_triggers(
THD *thd, enum_trigger_event_type event,
enum_trigger_action_time_type action_time, bool old_row_is_record1) {
if (check_for_broken_triggers()) return true;
Trigger_chain *tc = get_triggers(event, action_time);
if (!tc) return false;
assert(m_subject_table);
if (old_row_is_record1) {
m_old_field = m_record1_field;
m_new_field = m_subject_table->field;
} else {
m_new_field = m_record1_field;
m_old_field = m_subject_table->field;
}
/*
This trigger must have been processed by the pre-locking
algorithm.
*/
assert(m_subject_table->pos_in_table_list->trg_event_map &
static_cast<uint>(1 << static_cast<int>(event)));
const bool rc = tc->execute_triggers(thd);
m_new_field = nullptr;
m_old_field = nullptr;
return rc;
}
/**
Add triggers for table to the set of routines used by statement.
Add tables used by them to statement table list. Do the same for
routines used by triggers.
@param thd Thread context.
@param prelocking_ctx Prelocking context of the statement.
@param table_list Table list element for table with trigger.
@return Operation status.
@retval false Success
@retval true Failure
*/
bool Table_trigger_dispatcher::add_tables_and_routines_for_triggers(
THD *thd, Query_tables_list *prelocking_ctx, Table_ref *table_list) {
assert(static_cast<int>(table_list->lock_descriptor().type) >=
static_cast<int>(TL_WRITE_ALLOW_WRITE));
for (int i = 0; i < (int)TRG_EVENT_MAX; ++i) {
if (table_list->trg_event_map & static_cast<uint8>(1 << i)) {
for (int j = 0; j < (int)TRG_ACTION_MAX; ++j) {
Trigger_chain *tc = table_list->table->triggers->get_triggers(i, j);
if (tc) tc->add_tables_and_routines(thd, prelocking_ctx, table_list);
}
}
}
return false;
}
/**
Mark all trigger fields as "temporary nullable" and remember the current
THD::check_for_truncated_fields value.
@param thd Thread context.
*/
void Table_trigger_dispatcher::enable_fields_temporary_nullability(THD *thd) {
assert(m_subject_table);
for (Field **next_field = m_subject_table->field; *next_field; ++next_field) {
(*next_field)->set_tmp_nullable();
(*next_field)
->set_check_for_truncated_fields(thd->check_for_truncated_fields);
/*
For statement LOAD INFILE we set field values during parsing of data file
and later run fill_record_n_invoke_before_triggers() to invoke table's
triggers. fill_record_n_invoke_before_triggers() calls this method
to enable temporary nullability before running trigger's instructions
Since for the case of handling statement LOAD INFILE the null value of
fields have been already set we don't have to reset these ones here.
In case of handling statements INSERT/REPLACE/INSERT SELECT/
REPLACE SELECT we set field's values inside method fill_record
that is called from fill_record_n_invoke_before_triggers()
after the method enable_fields_temporary_nullability has been executed.
*/
if (thd->lex->sql_command != SQLCOM_LOAD) (*next_field)->reset_tmp_null();
}
}
/**
Reset "temporary nullable" flag from trigger fields.
*/
void Table_trigger_dispatcher::disable_fields_temporary_nullability() {
assert(m_subject_table);
for (Field **next_field = m_subject_table->field; *next_field; ++next_field)
(*next_field)->reset_tmp_nullable();
}
/**
Iterate along triggers and print necessary upgrade warnings.
Now it prints the warning about missing 'CREATED' attribute.
@param thd Thread context.
*/
void Table_trigger_dispatcher::print_upgrade_warnings(THD *thd) {
for (int i = 0; i < static_cast<int>(TRG_EVENT_MAX); ++i) {
for (int j = 0; j < static_cast<int>(TRG_ACTION_MAX); ++j) {
Trigger_chain *tc = get_triggers(i, j);
if (tc == nullptr) continue;
List_iterator<Trigger> it(tc->get_trigger_list());
Trigger *t;
while ((t = it++) != nullptr) {
t->print_upgrade_warning(thd);
}
}
}
}
/**
Mark fields of subject table which we read/set in its triggers
as such.
This method marks fields of subject table which are read/set in its
triggers as such (by properly updating TABLE::read_set/write_set)
and thus informs handler that values for these fields should be
retrieved/stored during execution of statement.
@param event Type of event triggers for which we are going to inspect
@returns false if success, true if error
*/
bool Table_trigger_dispatcher::mark_fields(enum_trigger_event_type event) {
if (check_for_broken_triggers()) return true;
assert(m_subject_table);
for (int i = 0; i < (int)TRG_ACTION_MAX; ++i) {
Trigger_chain *tc = get_triggers(event, i);
if (!tc) continue;
tc->mark_fields(m_subject_table);
}
m_subject_table->file->column_bitmaps_signal();
return false;
}
void Table_trigger_dispatcher::set_parse_error_message(
const char *error_message) {
if (!m_parse_error_message) {
m_parse_error_message =
strdup_root(&m_subject_table->mem_root, error_message);
// Play safe even in case of OOM.
if (!m_parse_error_message) m_parse_error_message = ER_DEFAULT(ER_DA_OOM);
}
}