Stored programs (procedures, functions, triggers, and events) and
views are defined prior to use and, when referenced, execute
within a security context that determines their privileges. The
privileges applicable to execution of a stored object are
controlled by its DEFINER attribute and
SQL SECURITY characteristic.
A stored object definition can include a
DEFINER attribute that names a MySQL account.
If a definition omits the DEFINER attribute,
the default object definer is the user who creates it.
The following rules determine which accounts you can specify as
the DEFINER attribute for a stored object:
If you have the
SET_ANY_DEFINERprivilege, you can specify any account as theDEFINERattribute. If the account does not exist, a warning is generated. Additionally, to set a stored objectDEFINERattribute to an account that has theSYSTEM_USERprivilege, you must have theSYSTEM_USERprivilege.Otherwise, the only permitted account is your own, specified either literally or as
CURRENT_USERorCURRENT_USER(). You cannot set the definer to any other account.
Creating a stored object with a nonexistent
DEFINER account creates an orphan object,
which may have negative consequences; see
Orphan Stored Objects.
For stored routines (procedures and functions) and views, the
object definition can include an SQL SECURITY
characteristic with a value of DEFINER or
INVOKER to specify whether the object
executes in definer or invoker context. If the definition omits
the SQL SECURITY characteristic, the default
is definer context.
Triggers and events have no SQL SECURITY
characteristic and always execute in definer context. The server
invokes these objects automatically as necessary, so there is no
invoking user.
Definer and invoker security contexts differ as follows:
A stored object that executes in definer security context executes with the privileges of the account named by its
DEFINERattribute. These privileges may be entirely different from those of the invoking user. The invoker must have appropriate privileges to reference the object (for example,EXECUTEto call a stored procedure orSELECTto select from a view), but during object execution, the invoker's privileges are ignored and only theDEFINERaccount privileges matter. If theDEFINERaccount has few privileges, the object is correspondingly limited in the operations it can perform. If theDEFINERaccount is highly privileged (such as an administrative account), the object can perform powerful operations no matter who invokes it.A stored routine or view that executes in invoker security context can perform only operations for which the invoker has privileges. The
DEFINERattribute has no effect on object execution.
Consider the following stored procedure, which is declared with
SQL SECURITY DEFINER to execute in definer
security context:
CREATE DEFINER = 'admin'@'localhost' PROCEDURE p1()
SQL SECURITY DEFINER
BEGIN
UPDATE t1 SET counter = counter + 1;
END;
Any user who has the EXECUTE
privilege for p1 can invoke it with a
CALL statement. However, when
p1 executes, it does so in definer security
context and thus executes with the privileges of
'admin'@'localhost', the account named as its
DEFINER attribute. This account must have the
EXECUTE privilege for
p1 as well as the
UPDATE privilege for the table
t1 referenced within the object body.
Otherwise, the procedure fails.
Now consider this stored procedure, which is identical to
p1 except that its SQL
SECURITY characteristic is INVOKER:
CREATE DEFINER = 'admin'@'localhost' PROCEDURE p2()
SQL SECURITY INVOKER
BEGIN
UPDATE t1 SET counter = counter + 1;
END;
Unlike p1, p2 executes in
invoker security context and thus with the privileges of the
invoking user regardless of the DEFINER
attribute value. p2 fails if the invoker
lacks the EXECUTE privilege for
p2 or the
UPDATE privilege for the table
t1.
An orphan stored object is one for which its
DEFINER attribute names a nonexistent
account:
An orphan stored object can be created by specifying a nonexistent
DEFINERaccount at object-creation time.An existing stored object can become orphaned through execution of a
DROP USERstatement that drops the objectDEFINERaccount, or aRENAME USERstatement that renames the objectDEFINERaccount.
An orphan stored object may be problematic in these ways:
Because the
DEFINERaccount does not exist, the object may not work as expected if it executes in definer security context:For a stored routine, an error occurs at routine execution time if the
SQL SECURITYvalue isDEFINERbut the definer account does not exist.For a trigger, it is not a good idea for trigger activation to occur until the account actually does exist. Otherwise, the behavior with respect to privilege checking is undefined.
For an event, an error occurs at event execution time if the account does not exist.
For a view, an error occurs when the view is referenced if the
SQL SECURITYvalue isDEFINERbut the definer account does not exist.
The object may present a security risk if the nonexistent
DEFINERaccount is subsequently re-created for a purpose unrelated to the object. In this case, the account “adopts” the object and, with the appropriate privileges, is able to execute it even if that is not intended.
The server imposes the following account-management security checks designed to prevent operations that (perhaps inadvertently) cause stored objects to become orphaned or that cause adoption of stored objects that are currently orphaned:
DROP USERfails with an error if any account to be dropped is named as theDEFINERattribute for any stored object. (That is, the statement fails if dropping an account would cause a stored object to become orphaned.)RENAME USERfails with an error if any account to be renamed is named as theDEFINERattribute for any stored object. (That is, the statement fails if renaming an account would cause a stored object to become orphaned.)CREATE USERfails with an error if any account to be created is named as theDEFINERattribute for any stored object. (That is, the statement fails if creating an account would cause the account to adopt a currently orphaned stored object.)
In certain situations, it may be necessary to deliberately
execute those account-management statements even when they would
otherwise fail. To make this possible, if a user has the
ALLOW_NONEXISTENT_DEFINER
privilege, that privilege overrides the orphan object security
checks and the statements succeed with a warning rather than
failing with an error.
To obtain information about the accounts used as stored object
definers in a MySQL installation, query the
INFORMATION_SCHEMA.
This query identifies which
INFORMATION_SCHEMA tables describe objects
that have a DEFINER attribute:
mysql> SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'DEFINER';
+--------------------+------------+
| TABLE_SCHEMA | TABLE_NAME |
+--------------------+------------+
| information_schema | EVENTS |
| information_schema | ROUTINES |
| information_schema | TRIGGERS |
| information_schema | VIEWS |
+--------------------+------------+
The result tells you which tables to query to discover which
stored object DEFINER values exist and which
objects have a particular DEFINER value:
To identify which
DEFINERvalues exist in each table, use these queries:SELECT DISTINCT DEFINER FROM INFORMATION_SCHEMA.EVENTS; SELECT DISTINCT DEFINER FROM INFORMATION_SCHEMA.ROUTINES; SELECT DISTINCT DEFINER FROM INFORMATION_SCHEMA.TRIGGERS; SELECT DISTINCT DEFINER FROM INFORMATION_SCHEMA.VIEWS;The query results are significant for any account displayed as follows:
If the account exists, dropping or renaming it causes stored objects to become orphaned. If you plan to drop or rename the account, consider first dropping its associated stored objects or redefining them to have a different definer.
If the account does not exist, creating it causes it to adopt currently orphaned stored objects. If you plan to create the account, consider whether the orphaned objects should be associated with it. If not, redefine them to have a different definer.
To redefine an object with a different definer, you can use
ALTER EVENTorALTER VIEWto directly modify theDEFINERaccount of events and views. For stored procedures and functions and for triggers, you must drop the object and re-create it to assign a differentDEFINERaccountTo identify which objects have a given
DEFINERaccount, use these queries, substituting the account of interest for:user_name@host_nameSELECT EVENT_SCHEMA, EVENT_NAME FROM INFORMATION_SCHEMA.EVENTS WHERE DEFINER = 'user_name@host_name'; SELECT ROUTINE_SCHEMA, ROUTINE_NAME, ROUTINE_TYPE FROM INFORMATION_SCHEMA.ROUTINES WHERE DEFINER = 'user_name@host_name'; SELECT TRIGGER_SCHEMA, TRIGGER_NAME FROM INFORMATION_SCHEMA.TRIGGERS WHERE DEFINER = 'user_name@host_name'; SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE DEFINER = 'user_name@host_name';For the
ROUTINEStable, the query includes theROUTINE_TYPEcolumn so that output rows distinguish whether theDEFINERis for a stored procedure or stored function.If the account you are searching for does not exist, any objects displayed by those queries are orphan objects.
To minimize the risk potential for stored object creation and use, follow these guidelines:
Do not create orphan stored objects; that is, objects for which the
DEFINERattribute names a nonexistent account. Do not cause stored objects to become orphaned by dropping or renaming an account named by theDEFINERattribute of any existing object.For a stored routine or view, use
SQL SECURITY INVOKERin the object definition when possible so that it can be used only by users with permissions appropriate for the operations performed by the object.If you create definer-context stored objects while using an account that has the
SET_ANY_DEFINERprivilege, specify an explicitDEFINERattribute that names an account possessing only the privileges required for the operations performed by the object. Specify a highly privilegedDEFINERaccount only when absolutely necessary.Administrators can prevent users from creating stored objects that specify highly privileged
DEFINERaccounts by not granting them theSET_ANY_DEFINERprivilege.Definer-context objects should be written keeping in mind that they may be able to access data for which the invoking user has no privileges. In some cases, you can prevent references to these objects by not granting unauthorized users particular privileges:
However, no such control exists for triggers and events because they always execute in definer context. The server invokes these objects automatically as necessary, and users do not reference them directly:
A trigger is activated by access to the table with which it is associated, even ordinary table accesses by users with no special privileges.
An event is executed by the server on a scheduled basis.
In both cases, if the
DEFINERaccount is highly privileged, the object may be able to perform sensitive or dangerous operations. This remains true if the privileges needed to create the object are revoked from the account of the user who created it. Administrators should be especially careful about granting users object-creation privileges.By default, when a routine with the
SQL SECURITY DEFINERcharacteristic is executed, MySQL Server does not set any active roles for the MySQL account named in theDEFINERclause, only the default roles. The exception is if theactivate_all_roles_on_loginsystem variable is enabled, in which case MySQL Server sets all roles granted to theDEFINERuser, including mandatory roles. Any privileges granted through roles are therefore not checked by default when theCREATE PROCEDUREorCREATE FUNCTIONstatement is issued. For stored programs, if execution should occur with roles different from the default, the program body can executeSET ROLEto activate the required roles. This must be done with caution since the privileges assigned to roles can be changed.