bug #2744353, FAQ 1.41 added
[phpmyadmin/crack.git] / server_privileges.php
blob69d0ffeae69b02930eb7c282d120b3546abd405a
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
14 /**
15 * Does the common work
17 $GLOBALS['js_include'][] = 'server_privileges.js';
18 $GLOBALS['js_include'][] = 'functions.js';
19 require './libraries/server_common.inc.php';
22 /**
23 * Checks if a dropdown box has been used for selecting a database / table
25 if (PMA_isValid($_REQUEST['pred_tablename'])) {
26 $tablename = $_REQUEST['pred_tablename'];
27 unset($pred_tablename);
28 } elseif (PMA_isValid($_REQUEST['tablename'])) {
29 $tablename = $_REQUEST['tablename'];
30 } else {
31 unset($tablename);
34 if (PMA_isValid($_REQUEST['pred_dbname'])) {
35 $dbname = $_REQUEST['pred_dbname'];
36 unset($pred_dbname);
37 } elseif (PMA_isValid($_REQUEST['dbname'])) {
38 $dbname = $_REQUEST['dbname'];
39 } else {
40 unset($dbname);
41 unset($tablename);
44 if (isset($dbname)) {
45 $db_and_table = PMA_backquote(PMA_unescape_mysql_wildcards($dbname)) . '.';
46 if (isset($tablename)) {
47 $db_and_table .= PMA_backquote($tablename);
48 } else {
49 $db_and_table .= '*';
51 } else {
52 $db_and_table = '*.*';
55 // check if given $dbname is a wildcard or not
56 if (isset($dbname)) {
57 //if (preg_match('/\\\\(?:_|%)/i', $dbname)) {
58 if (preg_match('/(?<!\\\\)(?:_|%)/i', $dbname)) {
59 $dbname_is_wildcard = true;
60 } else {
61 $dbname_is_wildcard = false;
65 /**
66 * Checks if the user is allowed to do what he tries to...
68 if (!$is_superuser) {
69 require './libraries/server_links.inc.php';
70 echo '<h2>' . "\n"
71 . PMA_getIcon('b_usrlist.png')
72 . $GLOBALS['strPrivileges'] . "\n"
73 . '</h2>' . "\n";
74 PMA_Message::error('strNoPrivileges')->display();
75 require_once './libraries/footer.inc.php';
78 /**
79 * Escapes wildcard in a database+table specification
80 * before using it in a GRANT statement.
82 * Escaping a wildcard character in a GRANT is only accepted at the global
83 * or database level, not at table level; this is why I remove
84 * the escaping character. Internally, in mysql.tables_priv.Db there are
85 * no escaping (for example test_db) but in mysql.db you'll see test\_db
86 * for a db-specific privilege.
88 * @param string $db_and_table
89 * @param string $dbname
90 * @param string $tablename
91 * @return string the escaped (if necessary) $db_and_table
93 function PMA_WildcardEscapeForGrant($db_and_table, $dbname, $tablename) {
95 if (! strlen($dbname)) {
96 $db_and_table = '*.*';
97 } else {
98 if (strlen($tablename)) {
99 $db_and_table = PMA_backquote(PMA_unescape_mysql_wildcards($dbname)) . '.';
100 $db_and_table .= PMA_backquote($tablename);
101 } else {
102 $db_and_table = PMA_backquote($dbname) . '.';
103 $db_and_table .= '*';
106 return $db_and_table;
110 * Generates a condition on the user name
112 * @param string the user's initial
113 * @return string the generated condition
115 function PMA_RangeOfUsers($initial = '')
117 // strtolower() is used because the User field
118 // might be BINARY, so LIKE would be case sensitive
119 if (!empty($initial)) {
120 $ret = " WHERE `User` LIKE '" . $initial . "%'"
121 . " OR `User` LIKE '" . strtolower($initial) . "%'";
122 } else {
123 $ret = '';
125 return $ret;
126 } // end function
129 * Extracts the privilege information of a priv table row
131 * @param array $row the row
132 * @param boolean $enableHTML add <dfn> tag with tooltips
134 * @global ressource $user_link the database connection
136 * @return array
138 function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
140 $grants = array(
141 array('Select_priv', 'SELECT', $GLOBALS['strPrivDescSelect']),
142 array('Insert_priv', 'INSERT', $GLOBALS['strPrivDescInsert']),
143 array('Update_priv', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
144 array('Delete_priv', 'DELETE', $GLOBALS['strPrivDescDelete']),
145 array('Create_priv', 'CREATE', $GLOBALS['strPrivDescCreateDb']),
146 array('Drop_priv', 'DROP', $GLOBALS['strPrivDescDropDb']),
147 array('Reload_priv', 'RELOAD', $GLOBALS['strPrivDescReload']),
148 array('Shutdown_priv', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']),
149 array('Process_priv', 'PROCESS', $GLOBALS['strPrivDescProcess']),
150 array('File_priv', 'FILE', $GLOBALS['strPrivDescFile']),
151 array('References_priv', 'REFERENCES', $GLOBALS['strPrivDescReferences']),
152 array('Index_priv', 'INDEX', $GLOBALS['strPrivDescIndex']),
153 array('Alter_priv', 'ALTER', $GLOBALS['strPrivDescAlter']),
154 array('Show_db_priv', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']),
155 array('Super_priv', 'SUPER', $GLOBALS['strPrivDescSuper']),
156 array('Create_tmp_table_priv', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
157 array('Lock_tables_priv', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']),
158 array('Repl_slave_priv', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']),
159 array('Repl_client_priv', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient']),
160 array('Create_view_priv', 'CREATE VIEW', $GLOBALS['strPrivDescCreateView']),
161 array('Event_priv', 'EVENT', $GLOBALS['strPrivDescEvent']),
162 array('Trigger_priv', 'TRIGGER', $GLOBALS['strPrivDescTrigger']),
163 // for table privs:
164 array('Create View_priv', 'CREATE VIEW', $GLOBALS['strPrivDescCreateView']),
165 array('Show_view_priv', 'SHOW VIEW', $GLOBALS['strPrivDescShowView']),
166 // for table privs:
167 array('Show view_priv', 'SHOW VIEW', $GLOBALS['strPrivDescShowView']),
168 array('Create_routine_priv', 'CREATE ROUTINE', $GLOBALS['strPrivDescCreateRoutine']),
169 array('Alter_routine_priv', 'ALTER ROUTINE', $GLOBALS['strPrivDescAlterRoutine']),
170 array('Create_user_priv', 'CREATE USER', $GLOBALS['strPrivDescCreateUser']),
171 array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute5']),
174 if (!empty($row) && isset($row['Table_priv'])) {
175 $row1 = PMA_DBI_fetch_single_row(
176 'SHOW COLUMNS FROM `mysql`.`tables_priv` LIKE \'Table_priv\';',
177 'ASSOC', $GLOBALS['userlink']);
178 $av_grants = explode('\',\'', substr($row1['Type'], 5, strlen($row1['Type']) - 7));
179 unset($row1);
180 $users_grants = explode(',', $row['Table_priv']);
181 foreach ($av_grants as $current_grant) {
182 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
184 unset($current_grant);
185 unset($av_grants);
186 unset($users_grants);
188 $privs = array();
189 $allPrivileges = TRUE;
190 foreach ($grants as $current_grant) {
191 if ((!empty($row) && isset($row[$current_grant[0]]))
192 || (empty($row) && isset($GLOBALS[$current_grant[0]]))) {
193 if ((!empty($row) && $row[$current_grant[0]] == 'Y')
194 || (empty($row)
195 && ($GLOBALS[$current_grant[0]] == 'Y'
196 || (is_array($GLOBALS[$current_grant[0]])
197 && count($GLOBALS[$current_grant[0]]) == $GLOBALS['column_count']
198 && empty($GLOBALS[$current_grant[0] . '_none'])))))
200 if ($enableHTML) {
201 $privs[] = '<dfn title="' . $current_grant[2] . '">' . $current_grant[1] . '</dfn>';
202 } else {
203 $privs[] = $current_grant[1];
205 } elseif (!empty($GLOBALS[$current_grant[0]])
206 && is_array($GLOBALS[$current_grant[0]])
207 && empty($GLOBALS[$current_grant[0] . '_none'])) {
208 if ($enableHTML) {
209 $priv_string = '<dfn title="' . $current_grant[2] . '">' . $current_grant[1] . '</dfn>';
210 } else {
211 $priv_string = $current_grant[1];
213 $privs[] = $priv_string . ' (`' . join('`, `', $GLOBALS[$current_grant[0]]) . '`)';
214 } else {
215 $allPrivileges = FALSE;
219 if (empty($privs)) {
220 if ($enableHTML) {
221 $privs[] = '<dfn title="' . $GLOBALS['strPrivDescUsage'] . '">USAGE</dfn>';
222 } else {
223 $privs[] = 'USAGE';
225 } elseif ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
226 if ($enableHTML) {
227 $privs = array('<dfn title="' . $GLOBALS['strPrivDescAllPrivileges'] . '">ALL PRIVILEGES</dfn>');
228 } else {
229 $privs = array('ALL PRIVILEGES');
232 return $privs;
233 } // end of the 'PMA_extractPrivInfo()' function
236 * Displays on which column(s) a table-specific privilege is granted
238 function PMA_display_column_privs($columns, $row, $name_for_select,
239 $priv_for_header, $name, $name_for_dfn, $name_for_current)
241 echo ' <div class="item" id="div_item_' . $name . '">' . "\n"
242 . ' <label for="select_' . $name . '_priv">' . "\n"
243 . ' <tt><dfn title="' . $name_for_dfn . '">'
244 . $priv_for_header . '</dfn></tt>' . "\n"
245 . ' </label><br />' . "\n"
246 . ' <select id="select_' . $name . '_priv" name="'
247 . $name_for_select . '[]" multiple="multiple" size="8">' . "\n";
249 foreach ($columns as $current_column => $current_column_privileges) {
250 echo ' <option value="' . htmlspecialchars($current_column) . '"';
251 if ($row[$name_for_select] == 'Y' || $current_column_privileges[$name_for_current]) {
252 echo ' selected="selected"';
254 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
257 echo ' </select>' . "\n"
258 . ' <i>' . $GLOBALS['strOr'] . '</i>' . "\n"
259 . ' <label for="checkbox_' . $name_for_select
260 . '_none"><input type="checkbox"'
261 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
262 . ' name="' . $name_for_select . '_none" id="checkbox_'
263 . $name_for_select . '_none" title="' . $GLOBALS['strNone'] . '" />'
264 . $GLOBALS['strNone'] . '</label>' . "\n"
265 . ' </div>' . "\n";
266 } // end function
270 * Displays the privileges form table
272 * @param string $db the database
273 * @param string $table the table
274 * @param boolean $submit wheather to display the submit button or not
275 * @global array $cfg the phpMyAdmin configuration
276 * @global ressource $user_link the database connection
278 * @return void
280 function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE)
282 if ($db == '*') {
283 $table = '*';
286 if (isset($GLOBALS['username'])) {
287 $username = $GLOBALS['username'];
288 $hostname = $GLOBALS['hostname'];
289 if ($db == '*') {
290 $sql_query =
291 "SELECT * FROM `mysql`.`user`"
292 ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
293 ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';";
294 } elseif ($table == '*') {
295 $sql_query =
296 "SELECT * FROM `mysql`.`db`"
297 ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
298 ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'"
299 ." AND '" . PMA_unescape_mysql_wildcards($db) . "'"
300 ." LIKE `Db`;";
301 } else {
302 $sql_query =
303 "SELECT `Table_priv`"
304 ." FROM `mysql`.`tables_priv`"
305 ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
306 ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'"
307 ." AND `Db` = '" . PMA_unescape_mysql_wildcards($db) . "'"
308 ." AND `Table_name` = '" . PMA_sqlAddslashes($table) . "';";
310 $row = PMA_DBI_fetch_single_row($sql_query);
312 if (empty($row)) {
313 if ($table == '*') {
314 if ($db == '*') {
315 $sql_query = 'SHOW COLUMNS FROM `mysql`.`user`;';
316 } elseif ($table == '*') {
317 $sql_query = 'SHOW COLUMNS FROM `mysql`.`db`;';
319 $res = PMA_DBI_query($sql_query);
320 while ($row1 = PMA_DBI_fetch_row($res)) {
321 if (substr($row1[0], 0, 4) == 'max_') {
322 $row[$row1[0]] = 0;
323 } else {
324 $row[$row1[0]] = 'N';
327 PMA_DBI_free_result($res);
328 } else {
329 $row = array('Table_priv' => '');
332 if (isset($row['Table_priv'])) {
333 $row1 = PMA_DBI_fetch_single_row(
334 'SHOW COLUMNS FROM `mysql`.`tables_priv` LIKE \'Table_priv\';',
335 'ASSOC', $GLOBALS['userlink']);
336 // note: in MySQL 5.0.3 we get "Create View', 'Show view';
337 // the View for Create is spelled with uppercase V
338 // the view for Show is spelled with lowercase v
339 // and there is a space between the words
341 $av_grants = explode('\',\'', substr($row1['Type'], strpos($row1['Type'], '(') + 2, strpos($row1['Type'], ')') - strpos($row1['Type'], '(') - 3));
342 unset($row1);
343 $users_grants = explode(',', $row['Table_priv']);
345 foreach ($av_grants as $current_grant) {
346 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
348 unset($row['Table_priv'], $current_grant, $av_grants, $users_grants);
350 // get collumns
351 $res = PMA_DBI_try_query('SHOW COLUMNS FROM ' . PMA_backquote(PMA_unescape_mysql_wildcards($db)) . '.' . PMA_backquote($table) . ';');
352 $columns = array();
353 if ($res) {
354 while ($row1 = PMA_DBI_fetch_row($res)) {
355 $columns[$row1[0]] = array(
356 'Select' => FALSE,
357 'Insert' => FALSE,
358 'Update' => FALSE,
359 'References' => FALSE
362 PMA_DBI_free_result($res);
364 unset($res, $row1);
366 // t a b l e - s p e c i f i c p r i v i l e g e s
367 if (! empty($columns)) {
368 $res = PMA_DBI_query(
369 'SELECT `Column_name`, `Column_priv`'
370 .' FROM `mysql`.`columns_priv`'
371 .' WHERE `User`'
372 .' = \'' . PMA_sqlAddslashes($username) . "'"
373 .' AND `Host`'
374 .' = \'' . PMA_sqlAddslashes($hostname) . "'"
375 .' AND `Db`'
376 .' = \'' . PMA_unescape_mysql_wildcards($db) . "'"
377 .' AND `Table_name`'
378 .' = \'' . PMA_sqlAddslashes($table) . '\';');
380 while ($row1 = PMA_DBI_fetch_row($res)) {
381 $row1[1] = explode(',', $row1[1]);
382 foreach ($row1[1] as $current) {
383 $columns[$row1[0]][$current] = TRUE;
386 PMA_DBI_free_result($res);
387 unset($res, $row1, $current);
389 echo '<input type="hidden" name="grant_count" value="' . count($row) . '" />' . "\n"
390 . '<input type="hidden" name="column_count" value="' . count($columns) . '" />' . "\n"
391 . '<fieldset id="fieldset_user_priv">' . "\n"
392 . ' <legend>' . $GLOBALS['strTblPrivileges']
393 . PMA_showHint($GLOBALS['strEnglishPrivileges'])
394 . '</legend>' . "\n";
398 // privs that are attached to a specific column
399 PMA_display_column_privs($columns, $row, 'Select_priv',
400 'SELECT', 'select', $GLOBALS['strPrivDescSelect'], 'Select');
402 PMA_display_column_privs($columns, $row, 'Insert_priv',
403 'INSERT', 'insert', $GLOBALS['strPrivDescInsert'], 'Insert');
405 PMA_display_column_privs($columns, $row, 'Update_priv',
406 'UPDATE', 'update', $GLOBALS['strPrivDescUpdate'], 'Update');
408 PMA_display_column_privs($columns, $row, 'References_priv',
409 'REFERENCES', 'references', $GLOBALS['strPrivDescReferences'], 'References');
411 // privs that are not attached to a specific column
413 echo ' <div class="item">' . "\n";
414 foreach ($row as $current_grant => $current_grant_value) {
415 if (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)),
416 array('Select', 'Insert', 'Update', 'References'))) {
417 continue;
419 // make a substitution to match the messages variables;
420 // also we must substitute the grant we get, because we can't generate
421 // a form variable containing blanks (those would get changed to
422 // an underscore when receiving the POST)
423 if ($current_grant == 'Create View_priv') {
424 $tmp_current_grant = 'CreateView_priv';
425 $current_grant = 'Create_view_priv';
426 } elseif ($current_grant == 'Show view_priv') {
427 $tmp_current_grant = 'ShowView_priv';
428 $current_grant = 'Show_view_priv';
429 } else {
430 $tmp_current_grant = $current_grant;
433 echo ' <div class="item">' . "\n"
434 . ' <input type="checkbox"'
435 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
436 . ' name="' . $current_grant . '" id="checkbox_' . $current_grant
437 . '" value="Y" '
438 . ($current_grant_value == 'Y' ? 'checked="checked" ' : '')
439 . 'title="';
441 echo (isset($GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5))])
442 ? $GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5))]
443 : $GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5)) . 'Tbl']) . '"/>' . "\n";
445 echo ' <label for="checkbox_' . $current_grant
446 . '"><tt><dfn title="'
447 . (isset($GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5))])
448 ? $GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5))]
449 : $GLOBALS['strPrivDesc' . substr($tmp_current_grant, 0, (strlen($tmp_current_grant) - 5)) . 'Tbl'])
450 . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label>' . "\n"
451 . ' </div>' . "\n";
452 } // end foreach ()
454 echo ' </div>' . "\n";
455 // for Safari 2.0.2
456 echo ' <div class="clearfloat"></div>' . "\n";
458 } else {
460 // g l o b a l o r d b - s p e c i f i c
462 // d a t a
463 $privTable[0] = array(
464 array('Select', 'SELECT', $GLOBALS['strPrivDescSelect']),
465 array('Insert', 'INSERT', $GLOBALS['strPrivDescInsert']),
466 array('Update', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
467 array('Delete', 'DELETE', $GLOBALS['strPrivDescDelete'])
469 if ($db == '*') {
470 $privTable[0][] = array('File', 'FILE', $GLOBALS['strPrivDescFile']);
473 // s t r u c t u r e
474 $privTable[1] = array(
475 array('Create', 'CREATE', ($table == '*' ? $GLOBALS['strPrivDescCreateDb'] : $GLOBALS['strPrivDescCreateTbl'])),
476 array('Alter', 'ALTER', $GLOBALS['strPrivDescAlter']),
477 array('Index', 'INDEX', $GLOBALS['strPrivDescIndex']),
478 array('Drop', 'DROP', ($table == '*' ? $GLOBALS['strPrivDescDropDb'] : $GLOBALS['strPrivDescDropTbl'])),
479 array('Create_tmp_table', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
480 array('Show_view', 'SHOW VIEW', $GLOBALS['strPrivDescShowView']),
481 array('Create_routine', 'CREATE ROUTINE', $GLOBALS['strPrivDescCreateRoutine']),
482 array('Alter_routine', 'ALTER ROUTINE', $GLOBALS['strPrivDescAlterRoutine']),
483 array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute5']),
485 // this one is for a db-specific priv: Create_view_priv
486 if (isset($row['Create_view_priv'])) {
487 $privTable[1][] = array('Create_view', 'CREATE VIEW', $GLOBALS['strPrivDescCreateView']);
489 // this one is for a table-specific priv: Create View_priv
490 if (isset($row['Create View_priv'])) {
491 $privTable[1][] = array('Create View', 'CREATE VIEW', $GLOBALS['strPrivDescCreateView']);
493 if (isset($row['Event_priv'])) {
494 // MySQL 5.1.6
495 $privTable[1][] = array('Event', 'EVENT', $GLOBALS['strPrivDescEvent']);
496 $privTable[1][] = array('Trigger', 'TRIGGER', $GLOBALS['strPrivDescTrigger']);
499 // a d m i n i s t r a t i o n
500 $privTable[2] = array(
501 array('Grant', 'GRANT', $GLOBALS['strPrivDescGrant']),
503 if ($db == '*') {
504 $privTable[2][] = array('Super', 'SUPER', $GLOBALS['strPrivDescSuper']);
505 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess']);
506 $privTable[2][] = array('Reload', 'RELOAD', $GLOBALS['strPrivDescReload']);
507 $privTable[2][] = array('Shutdown', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']);
508 $privTable[2][] = array('Show_db', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']);
510 $privTable[2][] = array('Lock_tables', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']);
511 $privTable[2][] = array('References', 'REFERENCES', $GLOBALS['strPrivDescReferences']);
512 if ($db == '*') {
513 $privTable[2][] = array('Repl_client', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient']);
514 $privTable[2][] = array('Repl_slave', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']);
515 $privTable[2][] = array('Create_user', 'CREATE USER', $GLOBALS['strPrivDescCreateUser']);
517 echo '<input type="hidden" name="grant_count" value="'
518 . (count($privTable[0]) + count($privTable[1]) + count($privTable[2]) - (isset($row['Grant_priv']) ? 1 : 0))
519 . '" />' . "\n"
520 . '<fieldset id="fieldset_user_global_rights">' . "\n"
521 . ' <legend>' . "\n"
522 . ' '
523 . ($db == '*'
524 ? $GLOBALS['strGlobalPrivileges']
525 : ($table == '*'
526 ? $GLOBALS['strDbPrivileges']
527 : $GLOBALS['strTblPrivileges'])) . "\n"
528 . ' (<a href="server_privileges.php?'
529 . $GLOBALS['url_query'] . '&amp;checkall=1" onclick="setCheckboxes(\'usersForm\', true); return false;">'
530 . $GLOBALS['strCheckAll'] . '</a> /' . "\n"
531 . ' <a href="server_privileges.php?'
532 . $GLOBALS['url_query'] . '" onclick="setCheckboxes(\'usersForm\', false); return false;">'
533 . $GLOBALS['strUncheckAll'] . '</a>)' . "\n"
534 . ' </legend>' . "\n"
535 . ' <p><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></p>' . "\n"
536 . ' <fieldset>' . "\n"
537 . ' <legend>' . $GLOBALS['strData'] . '</legend>' . "\n";
538 foreach ($privTable[0] as $priv)
540 echo ' <div class="item">' . "\n"
541 . ' <input type="checkbox"'
542 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
543 . ' name="' . $priv[0] . '_priv" id="checkbox_' . $priv[0]
544 . '_priv" value="Y" '
545 . ($row[$priv[0] . '_priv'] == 'Y' ? 'checked="checked" ' : '')
546 . 'title="' . $priv[2] . '"/>' . "\n"
547 . ' <label for="checkbox_' . $priv[0]
548 . '_priv"><tt><dfn title="' . $priv[2] . '">' . $priv[1]
549 . '</dfn></tt></label>' . "\n"
550 . ' </div>' . "\n";
552 echo ' </fieldset>' . "\n"
553 . ' <fieldset>' . "\n"
554 . ' <legend>' . $GLOBALS['strStructure'] . '</legend>' . "\n";
555 foreach ($privTable[1] as $priv)
557 echo ' <div class="item">' . "\n"
558 . ' <input type="checkbox"'
559 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
560 . ' name="' . $priv[0] . '_priv" id="checkbox_' . $priv[0]
561 . '_priv" value="Y" '
562 . ($row[$priv[0] . '_priv'] == 'Y' ? 'checked="checked" ' : '')
563 . 'title="' . $priv[2] . '"/>' . "\n"
564 . ' <label for="checkbox_' . $priv[0]
565 . '_priv"><tt><dfn title="' . $priv[2] . '">' . $priv[1]
566 . '</dfn></tt></label>' . "\n"
567 . ' </div>' . "\n";
569 echo ' </fieldset>' . "\n"
570 . ' <fieldset>' . "\n"
571 . ' <legend>' . $GLOBALS['strAdministration'] . '</legend>' . "\n";
572 foreach ($privTable[2] as $priv)
574 echo ' <div class="item">' . "\n"
575 . ' <input type="checkbox"'
576 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
577 . ' name="' . $priv[0] . '_priv" id="checkbox_' . $priv[0]
578 . '_priv" value="Y" '
579 . ($row[$priv[0] . '_priv'] == 'Y' ? 'checked="checked" ' : '')
580 . 'title="' . $priv[2] . '"/>' . "\n"
581 . ' <label for="checkbox_' . $priv[0]
582 . '_priv"><tt><dfn title="' . $priv[2] . '">' . $priv[1]
583 . '</dfn></tt></label>' . "\n"
584 . ' </div>' . "\n";
587 echo ' </fieldset>' . "\n";
588 // The "Resource limits" box is not displayed for db-specific privs
589 if ($db == '*') {
590 echo ' <fieldset>' . "\n"
591 . ' <legend>' . $GLOBALS['strResourceLimits'] . '</legend>' . "\n"
592 . ' <p><small><i>' . $GLOBALS['strZeroRemovesTheLimit'] . '</i></small></p>' . "\n"
593 . ' <div class="item">' . "\n"
594 . ' <label for="text_max_questions"><tt><dfn title="'
595 . $GLOBALS['strPrivDescMaxQuestions'] . '">MAX QUERIES PER HOUR</dfn></tt></label>' . "\n"
596 . ' <input type="text" name="max_questions" id="text_max_questions" value="'
597 . $row['max_questions'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxQuestions'] . '" />' . "\n"
598 . ' </div>' . "\n"
599 . ' <div class="item">' . "\n"
600 . ' <label for="text_max_updates"><tt><dfn title="'
601 . $GLOBALS['strPrivDescMaxUpdates'] . '">MAX UPDATES PER HOUR</dfn></tt></label>' . "\n"
602 . ' <input type="text" name="max_updates" id="text_max_updates" value="'
603 . $row['max_updates'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxUpdates'] . '" />' . "\n"
604 . ' </div>' . "\n"
605 . ' <div class="item">' . "\n"
606 . ' <label for="text_max_connections"><tt><dfn title="'
607 . $GLOBALS['strPrivDescMaxConnections'] . '">MAX CONNECTIONS PER HOUR</dfn></tt></label>' . "\n"
608 . ' <input type="text" name="max_connections" id="text_max_connections" value="'
609 . $row['max_connections'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxConnections'] . '" />' . "\n"
610 . ' </div>' . "\n"
611 . ' <div class="item">' . "\n"
612 . ' <label for="text_max_user_connections"><tt><dfn title="'
613 . $GLOBALS['strPrivDescMaxUserConnections'] . '">MAX USER_CONNECTIONS</dfn></tt></label>' . "\n"
614 . ' <input type="text" name="max_user_connections" id="text_max_user_connections" value="'
615 . $row['max_user_connections'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxUserConnections'] . '" />' . "\n"
616 . ' </div>' . "\n"
617 . ' </fieldset>' . "\n";
619 // for Safari 2.0.2
620 echo ' <div class="clearfloat"></div>' . "\n";
622 echo '</fieldset>' . "\n";
623 if ($submit) {
624 echo '<fieldset id="fieldset_user_privtable_footer" class="tblFooters">' . "\n"
625 . ' <input type="submit" name="update_privs" value="' . $GLOBALS['strGo'] . '" />' . "\n"
626 . '</fieldset>' . "\n";
628 } // end of the 'PMA_displayPrivTable()' function
632 * Displays the fields used by the "new user" form as well as the
633 * "change login information / copy user" form.
635 * @param string $mode are we creating a new user or are we just
636 * changing one? (allowed values: 'new', 'change')
637 * @global array $cfg the phpMyAdmin configuration
638 * @global ressource $user_link the database connection
640 * @return void
642 function PMA_displayLoginInformationFields($mode = 'new')
644 // Get user/host name lengths
645 $fields_info = PMA_DBI_get_fields('mysql', 'user');
646 $username_length = 16;
647 $hostname_length = 41;
648 foreach ($fields_info as $key => $val) {
649 if ($val['Field'] == 'User') {
650 strtok($val['Type'], '()');
651 $v = strtok('()');
652 if (is_int($v)) {
653 $username_length = $v;
655 } elseif ($val['Field'] == 'Host') {
656 strtok($val['Type'], '()');
657 $v = strtok('()');
658 if (is_int($v)) {
659 $hostname_length = $v;
663 unset($fields_info);
665 if (isset($GLOBALS['username']) && strlen($GLOBALS['username']) === 0) {
666 $GLOBALS['pred_username'] = 'any';
668 echo '<fieldset id="fieldset_add_user_login">' . "\n"
669 . '<legend>' . $GLOBALS['strLoginInformation'] . '</legend>' . "\n"
670 . '<div class="item">' . "\n"
671 . '<label for="select_pred_username">' . "\n"
672 . ' ' . $GLOBALS['strUserName'] . ':' . "\n"
673 . '</label>' . "\n"
674 . '<span class="options">' . "\n"
675 . ' <select name="pred_username" id="select_pred_username" title="' . $GLOBALS['strUserName'] . '"' . "\n"
676 . ' onchange="if (this.value == \'any\') { username.value = \'\'; } else if (this.value == \'userdefined\') { username.focus(); username.select(); }">' . "\n"
677 . ' <option value="any"' . ((isset($GLOBALS['pred_username']) && $GLOBALS['pred_username'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyUser'] . '</option>' . "\n"
678 . ' <option value="userdefined"' . ((!isset($GLOBALS['pred_username']) || $GLOBALS['pred_username'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
679 . ' </select>' . "\n"
680 . '</span>' . "\n"
681 . '<input type="text" name="username" maxlength="'
682 . $username_length . '" title="' . $GLOBALS['strUserName'] . '"'
683 . (empty($GLOBALS['username'])
684 ? ''
685 : ' value="' . (isset($GLOBALS['new_username'])
686 ? $GLOBALS['new_username']
687 : $GLOBALS['username']) . '"')
688 . ' onchange="pred_username.value = \'userdefined\';" />' . "\n"
689 . '</div>' . "\n"
690 . '<div class="item">' . "\n"
691 . '<label for="select_pred_hostname">' . "\n"
692 . ' ' . $GLOBALS['strHost'] . ':' . "\n"
693 . '</label>' . "\n"
694 . '<span class="options">' . "\n"
695 . ' <select name="pred_hostname" id="select_pred_hostname" title="' . $GLOBALS['strHost'] . '"' . "\n";
696 $_current_user = PMA_DBI_fetch_value('SELECT USER();');
697 if (! empty($_current_user)) {
698 $thishost = str_replace("'", '', substr($_current_user, (strrpos($_current_user, '@') + 1)));
699 if ($thishost == 'localhost' || $thishost == '127.0.0.1') {
700 unset($thishost);
703 echo ' onchange="if (this.value == \'any\') { hostname.value = \'%\'; } else if (this.value == \'localhost\') { hostname.value = \'localhost\'; } '
704 . (empty($thishost) ? '' : 'else if (this.value == \'thishost\') { hostname.value = \'' . addslashes(htmlspecialchars($thishost)) . '\'; } ')
705 . 'else if (this.value == \'hosttable\') { hostname.value = \'\'; } else if (this.value == \'userdefined\') { hostname.focus(); hostname.select(); }">' . "\n";
706 unset($_current_user);
708 // when we start editing a user, $GLOBALS['pred_hostname'] is not defined
709 if (!isset($GLOBALS['pred_hostname']) && isset($GLOBALS['hostname'])) {
710 switch (strtolower($GLOBALS['hostname'])) {
711 case 'localhost':
712 case '127.0.0.1':
713 $GLOBALS['pred_hostname'] = 'localhost';
714 break;
715 case '%':
716 $GLOBALS['pred_hostname'] = 'any';
717 break;
718 default:
719 $GLOBALS['pred_hostname'] = 'userdefined';
720 break;
723 echo ' <option value="any"'
724 . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'any')
725 ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyHost']
726 . '</option>' . "\n"
727 . ' <option value="localhost"'
728 . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'localhost')
729 ? ' selected="selected"' : '') . '>' . $GLOBALS['strLocalhost']
730 . '</option>' . "\n";
731 if (!empty($thishost)) {
732 echo ' <option value="thishost"'
733 . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'thishost')
734 ? ' selected="selected"' : '') . '>' . $GLOBALS['strThisHost']
735 . '</option>' . "\n";
737 unset($thishost);
738 echo ' <option value="hosttable"'
739 . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'hosttable')
740 ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseHostTable']
741 . '</option>' . "\n"
742 . ' <option value="userdefined"'
743 . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'userdefined')
744 ? ' selected="selected"' : '')
745 . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
746 . ' </select>' . "\n"
747 . '</span>' . "\n"
748 . '<input type="text" name="hostname" maxlength="'
749 . $hostname_length . '" value="'
750 . (isset($GLOBALS['hostname']) ? $GLOBALS['hostname'] : '')
751 . '" title="' . $GLOBALS['strHost']
752 . '" onchange="pred_hostname.value = \'userdefined\';" />' . "\n"
753 . PMA_showHint($GLOBALS['strHostTableExplanation'])
754 . '</div>' . "\n"
755 . '<div class="item">' . "\n"
756 . '<label for="select_pred_password">' . "\n"
757 . ' ' . $GLOBALS['strPassword'] . ':' . "\n"
758 . '</label>' . "\n"
759 . '<span class="options">' . "\n"
760 . ' <select name="pred_password" id="select_pred_password" title="'
761 . $GLOBALS['strPassword'] . '"' . "\n"
762 . ' onchange="if (this.value == \'none\') { pma_pw.value = \'\'; pma_pw2.value = \'\'; } else if (this.value == \'userdefined\') { pma_pw.focus(); pma_pw.select(); }">' . "\n"
763 . ($mode == 'change' ? ' <option value="keep" selected="selected">' . $GLOBALS['strKeepPass'] . '</option>' . "\n" : '')
764 . ' <option value="none"';
765 if (isset($GLOBALS['username']) && $mode != 'change') {
766 echo ' selected="selected"';
768 echo '>' . $GLOBALS['strNoPassword'] . '</option>' . "\n"
769 . ' <option value="userdefined"' . (isset($GLOBALS['username']) ? '' : ' selected="selected"') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
770 . ' </select>' . "\n"
771 . '</span>' . "\n"
772 . '<input type="password" id="text_pma_pw" name="pma_pw" title="' . $GLOBALS['strPassword'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
773 . '</div>' . "\n"
774 . '<div class="item">' . "\n"
775 . '<label for="text_pma_pw2">' . "\n"
776 . ' ' . $GLOBALS['strReType'] . ':' . "\n"
777 . '</label>' . "\n"
778 . '<span class="options">&nbsp;</span>' . "\n"
779 . '<input type="password" name="pma_pw2" id="text_pma_pw2" title="' . $GLOBALS['strReType'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
780 . '</div>' . "\n"
781 . '<div class="item">' . "\n"
782 . '<label for="button_generate_password">' . "\n"
783 . ' ' . $GLOBALS['strGeneratePassword'] . ':' . "\n"
784 . '</label>' . "\n"
785 . '<span class="options">' . "\n"
786 . ' <input type="button" id="button_generate_password" value="' . $GLOBALS['strGenerate'] . '" onclick="suggestPassword()" />' . "\n"
787 . ' <input type="button" id="button_copy_password" value="' . $GLOBALS['strCopy'] . '" onclick="suggestPasswordCopy(this.form)" />' . "\n"
788 . '</span>' . "\n"
789 . '<input type="text" name="generated_pw" id="generated_pw" />' . "\n"
790 . '</div>' . "\n"
791 . '</fieldset>' . "\n";
792 } // end of the 'PMA_displayUserAndHostFields()' function
796 * Changes / copies a user, part I
798 if (isset($_REQUEST['change_copy'])) {
799 $user_host_condition =
800 ' WHERE `User`'
801 .' = \'' . PMA_sqlAddslashes($old_username) . "'"
802 .' AND `Host`'
803 .' = \'' . $old_hostname . '\';';
804 $row = PMA_DBI_fetch_single_row('SELECT * FROM `mysql`.`user` ' . $user_host_condition);
805 if (! $row) {
806 PMA_Message::notice('strNoUsersFound')->display();
807 unset($_REQUEST['change_copy']);
808 } else {
809 extract($row, EXTR_OVERWRITE);
810 // Recent MySQL versions have the field "Password" in mysql.user,
811 // so the previous extract creates $Password but this script
812 // uses $password
813 if (!isset($password) && isset($Password)) {
814 $password = $Password;
816 $queries = array();
822 * Adds a user
823 * (Changes / copies a user, part II)
825 if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
826 $sql_query = '';
827 if ($pred_username == 'any') {
828 $username = '';
830 switch ($pred_hostname) {
831 case 'any':
832 $hostname = '%';
833 break;
834 case 'localhost':
835 $hostname = 'localhost';
836 break;
837 case 'hosttable':
838 $hostname = '';
839 break;
840 case 'thishost':
841 $_user_name = PMA_DBI_fetch_value('SELECT USER()');
842 $hostname = substr($_user_name, (strrpos($_user_name, '@') + 1));
843 unset($_user_name);
844 break;
846 $sql = "SELECT '1' FROM `mysql`.`user`"
847 . " WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
848 . " AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';";
849 if (PMA_DBI_fetch_value($sql) == 1) {
850 $message = PMA_Message::error('strUserAlreadyExists');
851 $message->addParam('[i]\'' . $username . '\'@\'' . $hostname . '\'[/i]');
852 $_REQUEST['adduser'] = true;
853 } else {
855 $create_user_real = 'CREATE USER \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
857 $real_sql_query =
858 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO \''
859 . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
860 if ($pred_password != 'none' && $pred_password != 'keep') {
861 $sql_query = $real_sql_query . ' IDENTIFIED BY \'***\'';
862 $real_sql_query .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\'';
863 if (isset($create_user_real)) {
864 $create_user_show = $create_user_real . ' IDENTIFIED BY \'***\'';
865 $create_user_real .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\'';
867 } else {
868 if ($pred_password == 'keep' && !empty($password)) {
869 $real_sql_query .= ' IDENTIFIED BY PASSWORD \'' . $password . '\'';
870 if (isset($create_user_real)) {
871 $create_user_real .= ' IDENTIFIED BY PASSWORD \'' . $password . '\'';
874 $sql_query = $real_sql_query;
875 if (isset($create_user_real)) {
876 $create_user_show = $create_user_real;
880 * @todo similar code appears twice in this script
882 if ((isset($Grant_priv) && $Grant_priv == 'Y')
883 || (isset($max_questions) || isset($max_connections)
884 || isset($max_updates) || isset($max_user_connections))) {
885 $real_sql_query .= ' WITH';
886 $sql_query .= ' WITH';
887 if (isset($Grant_priv) && $Grant_priv == 'Y') {
888 $real_sql_query .= ' GRANT OPTION';
889 $sql_query .= ' GRANT OPTION';
891 if (isset($max_questions)) {
892 // avoid negative values
893 $max_questions = max(0, (int)$max_questions);
894 $real_sql_query .= ' MAX_QUERIES_PER_HOUR ' . $max_questions;
895 $sql_query .= ' MAX_QUERIES_PER_HOUR ' . $max_questions;
897 if (isset($max_connections)) {
898 $max_connections = max(0, (int)$max_connections);
899 $real_sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . $max_connections;
900 $sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . $max_connections;
902 if (isset($max_updates)) {
903 $max_updates = max(0, (int)$max_updates);
904 $real_sql_query .= ' MAX_UPDATES_PER_HOUR ' . $max_updates;
905 $sql_query .= ' MAX_UPDATES_PER_HOUR ' . $max_updates;
907 if (isset($max_user_connections)) {
908 $max_user_connections = max(0, (int)$max_user_connections);
909 $real_sql_query .= ' MAX_USER_CONNECTIONS ' . $max_user_connections;
910 $sql_query .= ' MAX_USER_CONNECTIONS ' . $max_user_connections;
913 if (isset($create_user_real)) {
914 $create_user_real .= ';';
915 $create_user_show .= ';';
917 $real_sql_query .= ';';
918 $sql_query .= ';';
919 if (empty($_REQUEST['change_copy'])) {
920 $_error = false;
922 if (isset($create_user_real)) {
923 if (! PMA_DBI_try_query($create_user_real)) {
924 $_error = true;
926 $sql_query = $create_user_show . $sql_query;
929 if ($_error || ! PMA_DBI_try_query($real_sql_query)) {
930 $_REQUEST['createdb'] = false;
931 $message = PMA_Message::rawError(PMA_DBI_getError());
932 } else {
933 $message = PMA_Message::success('strAddUserMessage');
936 switch (PMA_ifSetOr($_REQUEST['createdb'], '0')) {
937 case '1' :
938 // Create database with same name and grant all privileges
939 $q = 'CREATE DATABASE IF NOT EXISTS '
940 . PMA_backquote(PMA_sqlAddslashes($username)) . ';';
941 $sql_query .= $q;
942 if (! PMA_DBI_try_query($q)) {
943 $message = PMA_Message::rawError(PMA_DBI_getError());
944 break;
946 $GLOBALS['reload'] = TRUE;
947 PMA_reloadNavigation();
949 $q = 'GRANT ALL PRIVILEGES ON '
950 . PMA_backquote(PMA_sqlAddslashes($username)) . '.* TO \''
951 . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
952 $sql_query .= $q;
953 if (! PMA_DBI_try_query($q)) {
954 $message = PMA_Message::rawError(PMA_DBI_getError());
956 break;
957 case '2' :
958 // Grant all privileges on wildcard name (username\_%)
959 $q = 'GRANT ALL PRIVILEGES ON '
960 . PMA_backquote(PMA_sqlAddslashes($username) . '\_%') . '.* TO \''
961 . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
962 $sql_query .= $q;
963 if (! PMA_DBI_try_query($q)) {
964 $message = PMA_Message::rawError(PMA_DBI_getError());
966 break;
967 case '3' :
968 // Grant all privileges on the specified database to the new user
969 $q = 'GRANT ALL PRIVILEGES ON '
970 . PMA_backquote(PMA_sqlAddslashes($dbname)) . '.* TO \''
971 . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
972 $sql_query .= $q;
973 if (! PMA_DBI_try_query($q)) {
974 $message = PMA_Message::rawError(PMA_DBI_getError());
976 break;
977 case '0' :
978 default :
979 break;
981 } else {
982 if (isset($create_user_real)) {
983 $queries[] = $create_user_real;
985 $queries[] = $real_sql_query;
986 // we put the query containing the hidden password in
987 // $queries_for_display, at the same position occupied
988 // by the real query in $queries
989 $tmp_count = count($queries);
990 if (isset($create_user_real)) {
991 $queries_for_display[$tmp_count - 2] = $create_user_show;
993 $queries_for_display[$tmp_count - 1] = $sql_query;
995 unset($res, $real_sql_query);
1001 * Changes / copies a user, part III
1003 if (isset($_REQUEST['change_copy'])) {
1004 $user_host_condition =
1005 ' WHERE `User`'
1006 .' = \'' . PMA_sqlAddslashes($old_username) . "'"
1007 .' AND `Host`'
1008 .' = \'' . $old_hostname . '\';';
1009 $res = PMA_DBI_query('SELECT * FROM `mysql`.`db`' . $user_host_condition);
1010 while ($row = PMA_DBI_fetch_assoc($res)) {
1011 $queries[] =
1012 'GRANT ' . join(', ', PMA_extractPrivInfo($row))
1013 .' ON ' . PMA_backquote($row['Db']) . '.*'
1014 .' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\''
1015 . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION;' : ';');
1017 PMA_DBI_free_result($res);
1018 $res = PMA_DBI_query(
1019 'SELECT `Db`, `Table_name`, `Table_priv`'
1020 .' FROM `mysql`.`tables_priv`' . $user_host_condition,
1021 $GLOBALS['userlink'], PMA_DBI_QUERY_STORE);
1022 while ($row = PMA_DBI_fetch_assoc($res)) {
1024 $res2 = PMA_DBI_QUERY(
1025 'SELECT `Column_name`, `Column_priv`'
1026 .' FROM `mysql`.`columns_priv`'
1027 .' WHERE `User`'
1028 .' = \'' . PMA_sqlAddslashes($old_username) . "'"
1029 .' AND `Host`'
1030 .' = \'' . $old_hostname . '\''
1031 .' AND `Db`'
1032 .' = \'' . $row['Db'] . "'"
1033 .' AND `Table_name`'
1034 .' = \'' . $row['Table_name'] . "'"
1035 .';',
1036 null, PMA_DBI_QUERY_STORE);
1038 $tmp_privs1 = PMA_extractPrivInfo($row);
1039 $tmp_privs2 = array(
1040 'Select' => array(),
1041 'Insert' => array(),
1042 'Update' => array(),
1043 'References' => array()
1046 while ($row2 = PMA_DBI_fetch_assoc($res2)) {
1047 $tmp_array = explode(',', $row2['Column_priv']);
1048 if (in_array('Select', $tmp_array)) {
1049 $tmp_privs2['Select'][] = $row2['Column_name'];
1051 if (in_array('Insert', $tmp_array)) {
1052 $tmp_privs2['Insert'][] = $row2['Column_name'];
1054 if (in_array('Update', $tmp_array)) {
1055 $tmp_privs2['Update'][] = $row2['Column_name'];
1057 if (in_array('References', $tmp_array)) {
1058 $tmp_privs2['References'][] = $row2['Column_name'];
1060 unset($tmp_array);
1062 if (count($tmp_privs2['Select']) > 0 && !in_array('SELECT', $tmp_privs1)) {
1063 $tmp_privs1[] = 'SELECT (`' . join('`, `', $tmp_privs2['Select']) . '`)';
1065 if (count($tmp_privs2['Insert']) > 0 && !in_array('INSERT', $tmp_privs1)) {
1066 $tmp_privs1[] = 'INSERT (`' . join('`, `', $tmp_privs2['Insert']) . '`)';
1068 if (count($tmp_privs2['Update']) > 0 && !in_array('UPDATE', $tmp_privs1)) {
1069 $tmp_privs1[] = 'UPDATE (`' . join('`, `', $tmp_privs2['Update']) . '`)';
1071 if (count($tmp_privs2['References']) > 0 && !in_array('REFERENCES', $tmp_privs1)) {
1072 $tmp_privs1[] = 'REFERENCES (`' . join('`, `', $tmp_privs2['References']) . '`)';
1074 unset($tmp_privs2);
1075 $queries[] =
1076 'GRANT ' . join(', ', $tmp_privs1)
1077 . ' ON ' . PMA_backquote($row['Db']) . '.' . PMA_backquote($row['Table_name'])
1078 . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\''
1079 . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION;' : ';');
1085 * Updates privileges
1087 if (!empty($update_privs)) {
1088 $db_and_table = PMA_WildcardEscapeForGrant($db_and_table, $dbname, (isset($tablename) ? $tablename : ''));
1090 $sql_query0 =
1091 'REVOKE ALL PRIVILEGES ON ' . $db_and_table
1092 . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
1093 if (!isset($Grant_priv) || $Grant_priv != 'Y') {
1094 $sql_query1 =
1095 'REVOKE GRANT OPTION ON ' . $db_and_table
1096 . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\';';
1097 } else {
1098 $sql_query1 = '';
1101 // Should not do a GRANT USAGE for a table-specific privilege, it
1102 // causes problems later (cannot revoke it)
1103 if (! (isset($tablename) && 'USAGE' == implode('', PMA_extractPrivInfo()))) {
1104 $sql_query2 =
1105 'GRANT ' . join(', ', PMA_extractPrivInfo())
1106 . ' ON ' . $db_and_table
1107 . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\'';
1110 * @todo similar code appears twice in this script
1112 if ((isset($Grant_priv) && $Grant_priv == 'Y')
1113 || (! isset($dbname)
1114 && (isset($max_questions) || isset($max_connections)
1115 || isset($max_updates) || isset($max_user_connections))))
1117 $sql_query2 .= 'WITH';
1118 if (isset($Grant_priv) && $Grant_priv == 'Y') {
1119 $sql_query2 .= ' GRANT OPTION';
1121 if (isset($max_questions)) {
1122 $max_questions = max(0, (int)$max_questions);
1123 $sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . $max_questions;
1125 if (isset($max_connections)) {
1126 $max_connections = max(0, (int)$max_connections);
1127 $sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . $max_connections;
1129 if (isset($max_updates)) {
1130 $max_updates = max(0, (int)$max_updates);
1131 $sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . $max_updates;
1133 if (isset($max_user_connections)) {
1134 $max_user_connections = max(0, (int)$max_user_connections);
1135 $sql_query2 .= ' MAX_USER_CONNECTIONS ' . $max_user_connections;
1138 $sql_query2 .= ';';
1140 if (! PMA_DBI_try_query($sql_query0)) {
1141 // this query may fail, but this does not matter :o)
1142 $sql_query0 = '';
1144 if (isset($sql_query1) && !PMA_DBI_try_query($sql_query1)) {
1145 // this one may fail, too...
1146 $sql_query1 = '';
1148 if (isset($sql_query2)) {
1149 PMA_DBI_query($sql_query2);
1150 } else {
1151 $sql_query2 = '';
1153 $sql_query = $sql_query0 . ' ' . $sql_query1 . ' ' . $sql_query2;
1154 $message = PMA_Message::success('strUpdatePrivMessage');
1155 $message->addParam('\'' . $username . '\'@\'' . $hostname . '\'');
1160 * Revokes Privileges
1162 if (isset($_REQUEST['revokeall'])) {
1163 $db_and_table = PMA_WildcardEscapeForGrant($db_and_table, $dbname, isset($tablename) ? $tablename : '');
1165 $sql_query0 =
1166 'REVOKE ALL PRIVILEGES ON ' . $db_and_table
1167 . ' FROM \'' . $username . '\'@\'' . $hostname . '\';';
1168 $sql_query1 =
1169 'REVOKE GRANT OPTION ON ' . $db_and_table
1170 . ' FROM \'' . $username . '\'@\'' . $hostname . '\';';
1172 PMA_DBI_query($sql_query0);
1173 if (! PMA_DBI_try_query($sql_query1)) {
1174 // this one may fail, too...
1175 $sql_query1 = '';
1177 $sql_query = $sql_query0 . ' ' . $sql_query1;
1178 $message = PMA_Message::success('strRevokeMessage');
1179 $message->addParam('\'' . $username . '\'@\'' . $hostname . '\'');
1180 if (! isset($tablename)) {
1181 unset($dbname);
1182 } else {
1183 unset($tablename);
1189 * Updates the password
1191 if (isset($_REQUEST['change_pw'])) {
1192 // similar logic in user_password.php
1193 $message = '';
1195 if ($nopass == 0 && isset($pma_pw) && isset($pma_pw2)) {
1196 if ($pma_pw != $pma_pw2) {
1197 $message = PMA_Message::error('strPasswordNotSame');
1198 } elseif (empty($pma_pw) || empty($pma_pw2)) {
1199 $message = PMA_Message::error('strPasswordEmpty');
1201 } // end if
1203 // here $nopass could be == 1
1204 if (empty($message)) {
1206 $hashing_function = (!empty($pw_hash) && $pw_hash == 'old' ? 'OLD_' : '')
1207 . 'PASSWORD';
1209 // in $sql_query which will be displayed, hide the password
1210 $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $pma_pw) . '\')');
1211 $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . $hostname . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . PMA_sqlAddslashes($pma_pw) . '\')');
1212 PMA_DBI_try_query($local_query)
1213 or PMA_mysqlDie(PMA_DBI_getError(), $sql_query, FALSE, $err_url);
1214 $message = PMA_Message::success('strPasswordChanged');
1215 $message->addParam('\'' . $username . '\'@\'' . $hostname . '\'');
1221 * Deletes users
1222 * (Changes / copies a user, part IV)
1225 if (isset($_REQUEST['delete']) || (isset($_REQUEST['change_copy']) && $_REQUEST['mode'] < 4)) {
1226 if (isset($_REQUEST['change_copy'])) {
1227 $selected_usr = array($old_username . chr(27) . $old_hostname);
1228 } else {
1229 $selected_usr = $_REQUEST['selected_usr'];
1230 $queries = array();
1232 foreach ($selected_usr as $each_user) {
1233 list($this_user, $this_host) = explode('&amp;#27;', $each_user);
1234 $queries[] = '# ' . sprintf($GLOBALS['strDeleting'], '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
1235 $queries[] = 'DROP USER \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . $this_host . '\';';
1237 if (isset($_REQUEST['drop_users_db'])) {
1238 $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
1239 $GLOBALS['reload'] = TRUE;
1240 PMA_reloadNavigation();
1243 if (empty($_REQUEST['change_copy'])) {
1244 if (empty($queries)) {
1245 $message = PMA_Message::error('strDeleteNoUsersSelected');
1246 } else {
1247 if ($_REQUEST['mode'] == 3) {
1248 $queries[] = '# ' . $GLOBALS['strReloadingThePrivileges'] . ' ...';
1249 $queries[] = 'FLUSH PRIVILEGES;';
1251 $drop_user_error = '';
1252 foreach ($queries as $sql_query) {
1253 if ($sql_query{0} != '#') {
1254 if (! PMA_DBI_try_query($sql_query, $GLOBALS['userlink'])) {
1255 $drop_user_error .= PMA_DBI_getError() . "\n";
1259 $sql_query = join("\n", $queries);
1260 if (! empty($drop_user_error)) {
1261 $message = PMA_Message::rawError($drop_user_error);
1262 } else {
1263 $message = PMA_Message::success('strUsersDeleted');
1266 unset($queries);
1272 * Changes / copies a user, part V
1274 if (isset($_REQUEST['change_copy'])) {
1275 $tmp_count = 0;
1276 foreach ($queries as $sql_query) {
1277 if ($sql_query{0} != '#') {
1278 PMA_DBI_query($sql_query);
1280 // when there is a query containing a hidden password, take it
1281 // instead of the real query sent
1282 if (isset($queries_for_display[$tmp_count])) {
1283 $queries[$tmp_count] = $queries_for_display[$tmp_count];
1285 $tmp_count++;
1287 $message = PMA_Message::success();
1288 $sql_query = join("\n", $queries);
1293 * Reloads the privilege tables into memory
1295 if (isset($_REQUEST['flush_privileges'])) {
1296 $sql_query = 'FLUSH PRIVILEGES;';
1297 PMA_DBI_query($sql_query);
1298 $message = PMA_Message::success('strPrivilegesReloaded');
1303 * Displays the links
1305 if (isset($viewing_mode) && $viewing_mode == 'db') {
1306 $db = $checkprivs;
1307 $url_query .= '&amp;goto=db_operations.php';
1309 // Gets the database structure
1310 $sub_part = '_structure';
1311 require './libraries/db_info.inc.php';
1312 echo "\n";
1313 } else {
1314 require './libraries/server_links.inc.php';
1319 * defines some standard links
1321 $link_edit = '<a href="server_privileges.php?' . $GLOBALS['url_query']
1322 . '&amp;username=%s'
1323 . '&amp;hostname=%s'
1324 . '&amp;dbname=%s'
1325 . '&amp;tablename=%s">'
1326 . PMA_getIcon('b_usredit.png', $GLOBALS['strEditPrivileges'])
1327 . '</a>';
1329 $link_revoke = '<a href="server_privileges.php?' . $GLOBALS['url_query']
1330 . '&amp;username=%s'
1331 . '&amp;hostname=%s'
1332 . '&amp;dbname=%s'
1333 . '&amp;tablename=%s'
1334 . '&amp;revokeall=1">'
1335 . PMA_getIcon('b_usrdrop.png', $GLOBALS['strRevoke'])
1336 . '</a>';
1339 * Displays the page
1341 if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs))) {
1342 if (! isset($username)) {
1343 // No username is given --> display the overview
1344 echo '<h2>' . "\n"
1345 . PMA_getIcon('b_usrlist.png')
1346 . $GLOBALS['strUserOverview'] . "\n"
1347 . '</h2>' . "\n";
1349 $sql_query =
1350 'SELECT *,' .
1351 " IF(`Password` = _latin1 '', 'N', 'Y') AS 'Password'" .
1352 ' FROM `mysql`.`user`';
1354 $sql_query .= (isset($initial) ? PMA_RangeOfUsers($initial) : '');
1356 $sql_query .= ' ORDER BY `User` ASC, `Host` ASC;';
1357 $res = PMA_DBI_try_query($sql_query, null, PMA_DBI_QUERY_STORE);
1359 if (! $res) {
1360 // the query failed! This may have two reasons:
1361 // - the user does not have enough privileges
1362 // - the privilege tables use a structure of an earlier version.
1363 // so let's try a more simple query
1365 $sql_query = 'SELECT * FROM `mysql`.`user`';
1366 $res = PMA_DBI_try_query($sql_query, null, PMA_DBI_QUERY_STORE);
1368 if (!$res) {
1369 PMA_Message::error('strNoPrivileges')->display();
1370 PMA_DBI_free_result($res);
1371 unset($res);
1372 } else {
1373 // rabus: This message is hardcoded because I will replace it by
1374 // a automatic repair feature soon.
1375 $raw = 'Your privilege table structure seems to be older than'
1376 . ' this MySQL version!<br />'
1377 . 'Please run the <tt>mysql_upgrade</tt> command'
1378 . '(<tt>mysql_fix_privilege_tables</tt> on older systems)'
1379 . ' that should be included in your MySQL server distribution'
1380 . ' to solve this problem!';
1381 PMA_Message::rawError($raw)->display();
1383 } else {
1385 // we also want users not in table `user` but in other table
1386 $tables = PMA_DBI_fetch_result('SHOW TABLES FROM `mysql`;');
1388 $tables_to_search_for_users = array(
1389 'user', 'db', 'tables_priv', 'columns_priv', 'procs_priv',
1392 $db_rights_sqls = array();
1393 foreach ($tables_to_search_for_users as $table_search_in) {
1394 if (in_array($table_search_in, $tables)) {
1395 $db_rights_sqls[] = 'SELECT DISTINCT `User`, `Host` FROM `mysql`.`' . $table_search_in . '` ' . (isset($initial) ? PMA_RangeOfUsers($initial) : '');
1399 $user_defaults = array(
1400 'User' => '',
1401 'Host' => '%',
1402 'Password' => '?',
1403 'Grant_priv' => 'N',
1404 'privs' => array('USAGE'),
1407 // for all initials, even non A-Z
1408 $array_initials = array();
1409 // for the rights
1410 $db_rights = array();
1412 $db_rights_sql = '(' . implode(') UNION (', $db_rights_sqls) . ')'
1413 .' ORDER BY `User` ASC, `Host` ASC';
1415 $db_rights_result = PMA_DBI_query($db_rights_sql);
1417 while ($db_rights_row = PMA_DBI_fetch_assoc($db_rights_result)) {
1418 $db_rights_row = array_merge($user_defaults, $db_rights_row);
1419 $db_rights[$db_rights_row['User']][$db_rights_row['Host']] =
1420 $db_rights_row;
1422 PMA_DBI_free_result($db_rights_result);
1423 unset($db_rights_sql, $db_rights_sqls, $db_rights_result, $db_rights_row);
1424 ksort($db_rights);
1427 * Displays the initials
1430 // initialize to FALSE the letters A-Z
1431 for ($letter_counter = 1; $letter_counter < 27; $letter_counter++) {
1432 if (! isset($array_initials[chr($letter_counter + 64)])) {
1433 $array_initials[chr($letter_counter + 64)] = FALSE;
1437 $initials = PMA_DBI_try_query('SELECT DISTINCT UPPER(LEFT(`User`,1)) FROM `user` ORDER BY `User` ASC', null, PMA_DBI_QUERY_STORE);
1438 while (list($tmp_initial) = PMA_DBI_fetch_row($initials)) {
1439 $array_initials[$tmp_initial] = TRUE;
1442 // Display the initials, which can be any characters, not
1443 // just letters. For letters A-Z, we add the non-used letters
1444 // as greyed out.
1446 uksort($array_initials, "strnatcasecmp");
1448 echo '<table cellspacing="5"><tr>';
1449 foreach ($array_initials as $tmp_initial => $initial_was_found) {
1450 if ($initial_was_found) {
1451 echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;initial=' . urlencode($tmp_initial) . '">' . $tmp_initial . '</a></td>' . "\n";
1452 } else {
1453 echo '<td>' . $tmp_initial . '</td>';
1456 echo '<td><a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;showall=1">[' . $GLOBALS['strShowAll'] . ']</a></td>' . "\n";
1457 echo '</tr></table>';
1460 * Display the user overview
1461 * (if less than 50 users, display them immediately)
1464 if (isset($initial) || isset($showall) || PMA_DBI_num_rows($res) < 50) {
1466 while ($row = PMA_DBI_fetch_assoc($res)) {
1467 $row['privs'] = PMA_extractPrivInfo($row, true);
1468 $db_rights[$row['User']][$row['Host']] = $row;
1470 @PMA_DBI_free_result($res);
1471 unset($res);
1473 echo '<form name="usersForm" id="usersForm" action="server_privileges.php" method="post">' . "\n"
1474 . PMA_generate_common_hidden_inputs('', '')
1475 . ' <table id="tableuserrights" class="data">' . "\n"
1476 . ' <thead>' . "\n"
1477 . ' <tr><th></th>' . "\n"
1478 . ' <th>' . $GLOBALS['strUser'] . '</th>' . "\n"
1479 . ' <th>' . $GLOBALS['strHost'] . '</th>' . "\n"
1480 . ' <th>' . $GLOBALS['strPassword'] . '</th>' . "\n"
1481 . ' <th>' . $GLOBALS['strGlobalPrivileges'] . ' '
1482 . PMA_showHint($GLOBALS['strEnglishPrivileges']) . '</th>' . "\n"
1483 . ' <th>' . $GLOBALS['strGrantOption'] . '</th>' . "\n"
1484 . ' <th>' . ($GLOBALS['cfg']['PropertiesIconic'] ? '' : $GLOBALS['strAction']) . '</th>' . "\n";
1485 echo ' </tr>' . "\n";
1486 echo ' </thead>' . "\n";
1487 echo ' <tbody>' . "\n";
1488 $odd_row = true;
1489 $index_checkbox = -1;
1490 foreach ($db_rights as $user) {
1491 $index_checkbox++;
1492 ksort($user);
1493 foreach ($user as $host) {
1494 $index_checkbox++;
1495 echo ' <tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
1496 . ' <td><input type="checkbox" name="selected_usr[]" id="checkbox_sel_users_'
1497 . $index_checkbox . '" value="'
1498 . htmlspecialchars($host['User'] . '&amp;#27;' . $host['Host'])
1499 . '"'
1500 . (empty($GLOBALS['checkall']) ? '' : ' checked="checked"')
1501 . ' /></td>' . "\n"
1502 . ' <td><label for="checkbox_sel_users_' . $index_checkbox . '">' . (empty($host['User']) ? '<span style="color: #FF0000">' . $GLOBALS['strAny'] . '</span>' : htmlspecialchars($host['User'])) . '</label></td>' . "\n"
1503 . ' <td>' . htmlspecialchars($host['Host']) . '</td>' . "\n";
1504 echo ' <td>';
1505 switch ($host['Password']) {
1506 case 'Y':
1507 echo $GLOBALS['strYes'];
1508 break;
1509 case 'N':
1510 echo '<span style="color: #FF0000">' . $GLOBALS['strNo'] . '</span>';
1511 break;
1512 // this happens if this is a definition not coming from mysql.user
1513 default:
1514 echo '--'; // in future version, replace by "not present"
1515 break;
1516 } // end switch
1517 echo '</td>' . "\n"
1518 . ' <td><tt>' . "\n"
1519 . ' ' . implode(',' . "\n" . ' ', $host['privs']) . "\n"
1520 . ' </tt></td>' . "\n"
1521 . ' <td>' . ($host['Grant_priv'] == 'Y' ? $GLOBALS['strYes'] : $GLOBALS['strNo']) . '</td>' . "\n"
1522 . ' <td align="center">';
1523 printf($link_edit, urlencode($host['User']),
1524 urlencode($host['Host']), '', '');
1525 echo '</td>' . "\n"
1526 . ' </tr>' . "\n";
1527 $odd_row = ! $odd_row;
1531 unset($user, $host, $odd_row);
1532 echo ' </tbody></table>' . "\n"
1533 .'<img class="selectallarrow"'
1534 .' src="' . $pmaThemeImage . 'arrow_' . $text_dir . '.png"'
1535 .' width="38" height="22"'
1536 .' alt="' . $GLOBALS['strWithChecked'] . '" />' . "\n"
1537 .'<a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;checkall=1"'
1538 .' onclick="if (markAllRows(\'usersForm\')) return false;">'
1539 . $GLOBALS['strCheckAll'] . '</a>' . "\n"
1540 .'/' . "\n"
1541 .'<a href="server_privileges.php?' . $GLOBALS['url_query'] . '"'
1542 .' onclick="if (unMarkAllRows(\'usersForm\')) return false;">'
1543 . $GLOBALS['strUncheckAll'] . '</a>' . "\n";
1545 // add/delete user fieldset
1546 echo ' <fieldset id="fieldset_add_user">' . "\n"
1547 . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;adduser=1">' . "\n"
1548 . PMA_getIcon('b_usradd.png')
1549 . ' ' . $GLOBALS['strAddUser'] . '</a>' . "\n"
1550 . ' </fieldset>' . "\n"
1551 . ' <fieldset id="fieldset_delete_user">'
1552 . ' <legend>' . "\n"
1553 . PMA_getIcon('b_usrdrop.png')
1554 . ' ' . $GLOBALS['strRemoveSelectedUsers'] . '' . "\n"
1555 . ' </legend>' . "\n"
1556 . ' <input type="hidden" name="mode" value="2" />' . "\n"
1557 . '(' . $GLOBALS['strRevokeAndDelete'] . ')<br />' . "\n"
1558 . ' <input type="checkbox" title="' . $GLOBALS['strDropUsersDb'] . '" name="drop_users_db" id="checkbox_drop_users_db" />' . "\n"
1559 . ' <label for="checkbox_drop_users_db" title="' . $GLOBALS['strDropUsersDb'] . '">' . "\n"
1560 . ' ' . $GLOBALS['strDropUsersDb'] . "\n"
1561 . ' </label>' . "\n"
1562 . ' </fieldset>' . "\n"
1563 . ' <fieldset id="fieldset_delete_user_footer" class="tblFooters">' . "\n"
1564 . ' <input type="submit" name="delete" value="' . $GLOBALS['strGo'] . '" id="buttonGo" />' . "\n"
1565 . ' </fieldset>' . "\n"
1566 . '</form>' . "\n";
1567 } else {
1569 unset ($row);
1570 echo ' <fieldset id="fieldset_add_user">' . "\n"
1571 . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;adduser=1">' . "\n"
1572 . PMA_getIcon('b_usradd.png')
1573 . ' ' . $GLOBALS['strAddUser'] . '</a>' . "\n"
1574 . ' </fieldset>' . "\n";
1575 } // end if (display overview)
1576 $flushnote = new PMA_Message('strFlushPrivilegesNote', PMA_Message::NOTICE);
1577 $flushnote->addParam('<a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;flush_privileges=1">', false);
1578 $flushnote->addParam('</a>', false);
1579 $flushnote->display();
1583 } else {
1585 // A user was selected -> display the user's properties
1587 echo '<h2>' . "\n"
1588 . PMA_getIcon('b_usredit.png')
1589 . $GLOBALS['strEditPrivileges'] . ': '
1590 . $GLOBALS['strUser'] ;
1592 if (isset($dbname)) {
1593 echo ' <i><a href="server_privileges.php?'
1594 . $GLOBALS['url_query'] . '&amp;username=' . urlencode($username)
1595 . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=&amp;tablename=">\''
1596 . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname)
1597 . '\'</a></i>' . "\n";
1598 $url_dbname = urlencode(str_replace(array('\_', '\%'), array('_', '%'), $dbname));
1600 echo ' - ' . ($dbname_is_wildcard ? $GLOBALS['strDatabases'] : $GLOBALS['strDatabase'] );
1601 if (isset($tablename)) {
1602 echo ' <i><a href="server_privileges.php?' . $GLOBALS['url_query']
1603 . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname)
1604 . '&amp;dbname=' . $url_dbname . '&amp;tablename=">' . htmlspecialchars($dbname) . '</a></i>';
1605 echo ' - ' . $GLOBALS['strTable'] . ' <i>' . htmlspecialchars($tablename) . '</i>';
1606 } else {
1607 echo ' <i>' . htmlspecialchars($dbname) . '</i>';
1610 } else {
1611 echo ' <i>\'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname)
1612 . '\'</i>' . "\n";
1615 echo '</h2>' . "\n";
1618 $sql = "SELECT '1' FROM `mysql`.`user`"
1619 . " WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
1620 . " AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';";
1621 $user_does_not_exists = (bool) ! PMA_DBI_fetch_value($sql);
1622 unset($sql);
1623 if ($user_does_not_exists) {
1624 PMA_Message::warning('strUserNotFound')->display();
1625 PMA_displayLoginInformationFields();
1626 //require_once './libraries/footer.inc.php';
1629 echo '<form name="usersForm" id="usersForm" action="server_privileges.php" method="post">' . "\n";
1630 $_params = array(
1631 'username' => $username,
1632 'hostname' => $hostname,
1634 if (isset($dbname)) {
1635 $_params['dbname'] = $dbname;
1636 if (isset($tablename)) {
1637 $_params['tablename'] = $tablename;
1640 echo PMA_generate_common_hidden_inputs($_params);
1642 PMA_displayPrivTable(PMA_ifSetOr($dbname, '*', 'length'),
1643 PMA_ifSetOr($tablename, '*', 'length'));
1645 echo '</form>' . "\n";
1647 if (! isset($tablename) && empty($dbname_is_wildcard)) {
1649 // no table name was given, display all table specific rights
1650 // but only if $dbname contains no wildcards
1652 // table header
1653 echo '<form action="server_privileges.php" method="post">' . "\n"
1654 . PMA_generate_common_hidden_inputs('', '')
1655 . '<input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1656 . '<input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n"
1657 . '<fieldset>' . "\n"
1658 . '<legend>' . (! isset($dbname) ? $GLOBALS['strDbPrivileges'] : $GLOBALS['strTblPrivileges']) . '</legend>' . "\n"
1659 . '<table class="data">' . "\n"
1660 . '<thead>' . "\n"
1661 . '<tr><th>' . (! isset($dbname) ? $GLOBALS['strDatabase'] : $GLOBALS['strTable']) . '</th>' . "\n"
1662 . ' <th>' . $GLOBALS['strPrivileges'] . '</th>' . "\n"
1663 . ' <th>' . $GLOBALS['strGrantOption'] . '</th>' . "\n"
1664 . ' <th>' . (! isset($dbname) ? $GLOBALS['strTblPrivileges'] : $GLOBALS['strColumnPrivileges']) . '</th>' . "\n"
1665 . ' <th colspan="2">' . $GLOBALS['strAction'] . '</th>' . "\n"
1666 . '</tr>' . "\n"
1667 . '</thead>' . "\n"
1668 . '<tbody>' . "\n";
1670 $user_host_condition =
1671 ' WHERE `User`'
1672 . ' = \'' . PMA_sqlAddslashes($username) . "'"
1673 . ' AND `Host`'
1674 . ' = \'' . PMA_sqlAddslashes($hostname) . "'";
1676 // table body
1677 // get data
1679 // we also want privielgs for this user not in table `db` but in other table
1680 $tables = PMA_DBI_fetch_result('SHOW TABLES FROM `mysql`;');
1681 if (! isset($dbname)) {
1683 // no db name given, so we want all privs for the given user
1685 $tables_to_search_for_users = array(
1686 'tables_priv', 'columns_priv',
1689 $db_rights_sqls = array();
1690 foreach ($tables_to_search_for_users as $table_search_in) {
1691 if (in_array($table_search_in, $tables)) {
1692 $db_rights_sqls[] = '
1693 SELECT DISTINCT `Db`
1694 FROM `mysql`.`' . $table_search_in . '`
1695 ' . $user_host_condition;
1699 $user_defaults = array(
1700 'Db' => '',
1701 'Grant_priv' => 'N',
1702 'privs' => array('USAGE'),
1703 'Table_privs' => true,
1706 // for the rights
1707 $db_rights = array();
1709 $db_rights_sql = '(' . implode(') UNION (', $db_rights_sqls) . ')'
1710 .' ORDER BY `Db` ASC';
1712 $db_rights_result = PMA_DBI_query($db_rights_sql);
1714 while ($db_rights_row = PMA_DBI_fetch_assoc($db_rights_result)) {
1715 $db_rights_row = array_merge($user_defaults, $db_rights_row);
1716 // only Db names in the table `mysql`.`db` uses wildcards
1717 // as we are in the db specific rights display we want
1718 // all db names escaped, also from other sources
1719 $db_rights_row['Db'] = PMA_escape_mysql_wildcards(
1720 $db_rights_row['Db']);
1721 $db_rights[$db_rights_row['Db']] = $db_rights_row;
1724 PMA_DBI_free_result($db_rights_result);
1725 unset($db_rights_sql, $db_rights_sqls, $db_rights_result, $db_rights_row);
1727 $sql_query = 'SELECT * FROM `mysql`.`db`' . $user_host_condition . ' ORDER BY `Db` ASC';
1728 $res = PMA_DBI_query($sql_query);
1729 $sql_query = '';
1731 while ($row = PMA_DBI_fetch_assoc($res)) {
1732 if (isset($db_rights[$row['Db']])) {
1733 $db_rights[$row['Db']] = array_merge($db_rights[$row['Db']], $row);
1734 } else {
1735 $db_rights[$row['Db']] = $row;
1737 // there are db specific rights for this user
1738 // so we can drop this db rights
1739 $db_rights[$row['Db']]['can_delete'] = true;
1741 PMA_DBI_free_result($res);
1742 unset($row, $res);
1744 } else {
1746 // db name was given,
1747 // so we want all user specific rights for this db
1749 $user_host_condition .=
1750 ' AND `Db`'
1751 .' LIKE \'' . $dbname . "'";
1753 $tables_to_search_for_users = array(
1754 'columns_priv',
1757 $db_rights_sqls = array();
1758 foreach ($tables_to_search_for_users as $table_search_in) {
1759 if (in_array($table_search_in, $tables)) {
1760 $db_rights_sqls[] = '
1761 SELECT DISTINCT `Table_name`
1762 FROM `mysql`.`' . $table_search_in . '`
1763 ' . $user_host_condition;
1767 $user_defaults = array(
1768 'Table_name' => '',
1769 'Grant_priv' => 'N',
1770 'privs' => array('USAGE'),
1771 'Column_priv' => true,
1774 // for the rights
1775 $db_rights = array();
1777 $db_rights_sql = '(' . implode(') UNION (', $db_rights_sqls) . ')'
1778 .' ORDER BY `Table_name` ASC';
1780 $db_rights_result = PMA_DBI_query($db_rights_sql);
1782 while ($db_rights_row = PMA_DBI_fetch_assoc($db_rights_result)) {
1783 $db_rights_row = array_merge($user_defaults, $db_rights_row);
1784 $db_rights[$db_rights_row['Table_name']] = $db_rights_row;
1786 PMA_DBI_free_result($db_rights_result);
1787 unset($db_rights_sql, $db_rights_sqls, $db_rights_result, $db_rights_row);
1789 $sql_query =
1790 'SELECT `Table_name`,'
1791 .' `Table_priv`,'
1792 .' IF(`Column_priv` = _latin1 \'\', 0, 1)'
1793 .' AS \'Column_priv\''
1794 .' FROM `mysql`.`tables_priv`'
1795 . $user_host_condition
1796 .' ORDER BY `Table_name` ASC;';
1797 $res = PMA_DBI_query($sql_query);
1798 $sql_query = '';
1800 while ($row = PMA_DBI_fetch_assoc($res)) {
1801 if (isset($db_rights[$row['Table_name']])) {
1802 $db_rights[$row['Table_name']] = array_merge($db_rights[$row['Table_name']], $row);
1803 } else {
1804 $db_rights[$row['Table_name']] = $row;
1807 PMA_DBI_free_result($res);
1808 unset($row, $res);
1810 ksort($db_rights);
1812 // display rows
1813 if (count($db_rights) < 1) {
1814 echo '<tr class="odd">' . "\n"
1815 . ' <td colspan="6"><center><i>' . $GLOBALS['strNone'] . '</i></center></td>' . "\n"
1816 . '</tr>' . "\n";
1817 } else {
1818 $odd_row = true;
1819 $found_rows = array();
1820 //while ($row = PMA_DBI_fetch_assoc($res)) {
1821 foreach ($db_rights as $row) {
1822 $found_rows[] = (! isset($dbname)) ? $row['Db'] : $row['Table_name'];
1824 echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
1825 . ' <td>' . htmlspecialchars((! isset($dbname)) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
1826 . ' <td><tt>' . "\n"
1827 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($row, TRUE)) . "\n"
1828 . ' </tt></td>' . "\n"
1829 . ' <td>' . ((((! isset($dbname)) && $row['Grant_priv'] == 'Y') || (isset($dbname) && in_array('Grant', explode(',', $row['Table_priv'])))) ? $GLOBALS['strYes'] : $GLOBALS['strNo']) . '</td>' . "\n"
1830 . ' <td>';
1831 if (! empty($row['Table_privs']) || ! empty ($row['Column_priv'])) {
1832 echo $GLOBALS['strYes'];
1833 } else {
1834 echo $GLOBALS['strNo'];
1836 echo '</td>' . "\n"
1837 . ' <td>';
1838 printf($link_edit, urlencode($username),
1839 urlencode($hostname),
1840 urlencode((! isset($dbname)) ? $row['Db'] : $dbname),
1841 urlencode((! isset($dbname)) ? '' : $row['Table_name']));
1842 echo '</td>' . "\n"
1843 . ' <td>';
1844 if (! empty($row['can_delete']) || isset($row['Table_name']) && strlen($row['Table_name'])) {
1845 printf($link_revoke, urlencode($username),
1846 urlencode($hostname),
1847 urlencode((! isset($dbname)) ? $row['Db'] : $dbname),
1848 urlencode((! isset($dbname)) ? '' : $row['Table_name']));
1850 echo '</td>' . "\n"
1851 . '</tr>' . "\n";
1852 $odd_row = ! $odd_row;
1853 } // end while
1855 unset($row);
1856 echo '</tbody>' . "\n"
1857 . '</table>' . "\n";
1859 if (! isset($dbname)) {
1861 // no database name was given, display select db
1863 if (! empty($found_rows)) {
1864 $pred_db_array = array_diff(
1865 PMA_DBI_fetch_result('SHOW DATABASES;'),
1866 $found_rows);
1867 } else {
1868 $pred_db_array =PMA_DBI_fetch_result('SHOW DATABASES;');
1871 echo ' <label for="text_dbname">' . $GLOBALS['strAddPrivilegesOnDb'] . ':</label>' . "\n";
1872 if (!empty($pred_db_array)) {
1873 echo ' <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
1874 . ' <option value="" selected="selected">' . $GLOBALS['strUseTextField'] . ':</option>' . "\n";
1875 foreach ($pred_db_array as $current_db) {
1876 $current_db = PMA_escape_mysql_wildcards($current_db);
1877 echo ' <option value="' . htmlspecialchars($current_db) . '">'
1878 . htmlspecialchars($current_db) . '</option>' . "\n";
1880 echo ' </select>' . "\n";
1882 echo ' <input type="text" id="text_dbname" name="dbname" />' . "\n"
1883 . PMA_showHint($GLOBALS['strEscapeWildcards']);
1884 } else {
1885 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n"
1886 . ' <label for="text_tablename">' . $GLOBALS['strAddPrivilegesOnTbl'] . ':</label>' . "\n";
1887 if ($res = @PMA_DBI_try_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', null, PMA_DBI_QUERY_STORE)) {
1888 $pred_tbl_array = array();
1889 while ($row = PMA_DBI_fetch_row($res)) {
1890 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1891 $pred_tbl_array[] = $row[0];
1894 PMA_DBI_free_result($res);
1895 unset($res, $row);
1896 if (!empty($pred_tbl_array)) {
1897 echo ' <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
1898 . ' <option value="" selected="selected">' . $GLOBALS['strUseTextField'] . ':</option>' . "\n";
1899 foreach ($pred_tbl_array as $current_table) {
1900 echo ' <option value="' . htmlspecialchars($current_table) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
1902 echo ' </select>' . "\n";
1904 } else {
1905 unset($res);
1907 echo ' <input type="text" id="text_tablename" name="tablename" />' . "\n";
1909 echo '</fieldset>' . "\n";
1910 echo '<fieldset class="tblFooters">' . "\n"
1911 . ' <input type="submit" value="' . $GLOBALS['strGo'] . '" />'
1912 . '</fieldset>' . "\n"
1913 . '</form>' . "\n";
1917 // Provide a line with links to the relevant database and table
1918 if (isset($dbname) && empty($dbname_is_wildcard)) {
1919 echo '[ ' . $GLOBALS['strDatabase']
1920 . ' <a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?'
1921 . $GLOBALS['url_query'] . '&amp;db=' . $url_dbname . '&amp;reload=1">'
1922 . htmlspecialchars($dbname) . ': ' . PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabDatabase']) . "</a> ]\n";
1924 if (isset($tablename)) {
1925 echo ' [ ' . $GLOBALS['strTable'] . ' <a href="'
1926 . $GLOBALS['cfg']['DefaultTabTable'] . '?' . $GLOBALS['url_query']
1927 . '&amp;db=' . $url_dbname . '&amp;table=' . urlencode($tablename)
1928 . '&amp;reload=1">' . htmlspecialchars($tablename) . ': '
1929 . PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable'])
1930 . "</a> ]\n";
1932 unset($url_dbname);
1935 if (! isset($dbname) && ! $user_does_not_exists) {
1936 require_once './libraries/display_change_password.lib.php';
1938 echo '<form action="server_privileges.php" method="post" onsubmit="return checkPassword(this);">' . "\n"
1939 . PMA_generate_common_hidden_inputs('', '')
1940 . '<input type="hidden" name="old_username" value="' . htmlspecialchars($username) . '" />' . "\n"
1941 . '<input type="hidden" name="old_hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n"
1942 . '<fieldset id="fieldset_change_copy_user">' . "\n"
1943 . ' <legend>' . $GLOBALS['strChangeCopyUser'] . '</legend>' . "\n";
1944 PMA_displayLoginInformationFields('change');
1945 echo ' <fieldset>' . "\n"
1946 . ' <legend>' . $GLOBALS['strChangeCopyMode'] . '</legend>' . "\n";
1947 $choices = array(
1948 '4' => $GLOBALS['strChangeCopyModeCopy'],
1949 '1' => $GLOBALS['strChangeCopyModeJustDelete'],
1950 '2' => $GLOBALS['strChangeCopyModeRevoke'],
1951 '3' => $GLOBALS['strChangeCopyModeDeleteAndReload']);
1952 PMA_generate_html_radio('mode', $choices, '4', true);
1953 unset($choices);
1955 echo ' </fieldset>' . "\n"
1956 . '</fieldset>' . "\n"
1957 . '<fieldset id="fieldset_change_copy_user_footer" class="tblFooters">' . "\n"
1958 . ' <input type="submit" name="change_copy" value="' . $GLOBALS['strGo'] . '" />' . "\n"
1959 . '</fieldset>' . "\n"
1960 . '</form>' . "\n";
1963 } elseif (isset($_REQUEST['adduser'])) {
1964 // Add a new user
1965 $GLOBALS['url_query'] .= '&amp;adduser=1';
1966 echo '<h2>' . "\n"
1967 . PMA_getIcon('b_usradd.png') . $GLOBALS['strAddUser'] . "\n"
1968 . '</h2>' . "\n"
1969 . '<form name="usersForm" id="usersForm" action="server_privileges.php" method="post" onsubmit="return checkAddUser(this);">' . "\n"
1970 . PMA_generate_common_hidden_inputs('', '');
1971 PMA_displayLoginInformationFields('new');
1972 echo '<fieldset id="fieldset_add_user_database">' . "\n"
1973 . '<legend>' . $GLOBALS['strCreateUserDatabase'] . '</legend>' . "\n";
1975 $default_choice = 0;
1976 $choices = array(
1977 '0' => $GLOBALS['strCreateUserDatabaseNone'],
1978 '1' => $GLOBALS['strCreateUserDatabaseName'],
1979 '2' => $GLOBALS['strCreateUserDatabaseWildcard']);
1981 if ( !empty($dbname) ) {
1982 $choices['3'] = sprintf($GLOBALS['strCreateUserDatabasePrivileges'], htmlspecialchars($dbname));
1983 $default_choice = 3;
1984 echo '<input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
1987 // 4th parameter set to true to add line breaks
1988 // 5th parameter set to false to avoid htmlspecialchars() escaping in the label
1989 // since we have some HTML in some labels
1990 PMA_generate_html_radio('createdb', $choices, $default_choice, true, false);
1991 unset($choices);
1992 unset($default_choice);
1994 echo '</fieldset>' . "\n";
1995 PMA_displayPrivTable('*', '*', FALSE);
1996 echo ' <fieldset id="fieldset_add_user_footer" class="tblFooters">' . "\n"
1997 . ' <input type="submit" name="adduser_submit" value="' . $GLOBALS['strGo'] . '" />' . "\n"
1998 . ' </fieldset>' . "\n"
1999 . '</form>' . "\n";
2000 } else {
2001 // check the privileges for a particular database.
2002 echo '<table id="tablespecificuserrights" class="data">' . "\n"
2003 . '<caption class="tblHeaders">' . "\n"
2004 . PMA_getIcon('b_usrcheck.png')
2005 . ' ' . sprintf($GLOBALS['strUsersHavingAccessToDb'], '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($checkprivs) . '">' . htmlspecialchars($checkprivs) . '</a>') . "\n"
2006 . '</caption>' . "\n"
2007 . '<thead>' . "\n"
2008 . ' <tr><th>' . $GLOBALS['strUser'] . '</th>' . "\n"
2009 . ' <th>' . $GLOBALS['strHost'] . '</th>' . "\n"
2010 . ' <th>' . $GLOBALS['strType'] . '</th>' . "\n"
2011 . ' <th>' . $GLOBALS['strPrivileges'] . '</th>' . "\n"
2012 . ' <th>' . $GLOBALS['strGrantOption'] . '</th>' . "\n"
2013 . ' <th>' . $GLOBALS['strAction'] . '</th>' . "\n"
2014 . ' </tr>' . "\n"
2015 . '</thead>' . "\n"
2016 . '<tbody>' . "\n";
2017 $odd_row = TRUE;
2018 unset($row, $row1, $row2);
2020 // now, we build the table...
2021 $list_of_privileges =
2022 '`User`, '
2023 . '`Host`, '
2024 . '`Select_priv`, '
2025 . '`Insert_priv`, '
2026 . '`Update_priv`, '
2027 . '`Delete_priv`, '
2028 . '`Create_priv`, '
2029 . '`Drop_priv`, '
2030 . '`Grant_priv`, '
2031 . '`Index_priv`, '
2032 . '`Alter_priv`, '
2033 . '`References_priv`, '
2034 . '`Create_tmp_table_priv`, '
2035 . '`Lock_tables_priv`, '
2036 . '`Create_view_priv`, '
2037 . '`Show_view_priv`, '
2038 . '`Create_routine_priv`, '
2039 . '`Alter_routine_priv`, '
2040 . '`Execute_priv`';
2042 $list_of_compared_privileges =
2043 '`Select_priv` = \'N\''
2044 . ' AND `Insert_priv` = \'N\''
2045 . ' AND `Update_priv` = \'N\''
2046 . ' AND `Delete_priv` = \'N\''
2047 . ' AND `Create_priv` = \'N\''
2048 . ' AND `Drop_priv` = \'N\''
2049 . ' AND `Grant_priv` = \'N\''
2050 . ' AND `References_priv` = \'N\''
2051 . ' AND `Create_tmp_table_priv` = \'N\''
2052 . ' AND `Lock_tables_priv` = \'N\''
2053 . ' AND `Create_view_priv` = \'N\''
2054 . ' AND `Show_view_priv` = \'N\''
2055 . ' AND `Create_routine_priv` = \'N\''
2056 . ' AND `Alter_routine_priv` = \'N\''
2057 . ' AND `Execute_priv` = \'N\'';
2059 if (PMA_MYSQL_INT_VERSION >= 50106) {
2060 $list_of_privileges .=
2061 ', `Event_priv`, '
2062 . '`Trigger_priv`';
2063 $list_of_compared_privileges .=
2064 ' AND `Event_priv` = \'N\''
2065 . ' AND `Trigger_priv` = \'N\'';
2068 $sql_query =
2069 '(SELECT ' . $list_of_privileges . ', `Db`'
2070 .' FROM `mysql`.`db`'
2071 .' WHERE \'' . PMA_sqlAddslashes($checkprivs) . "'"
2072 .' LIKE `Db`'
2073 .' AND NOT (' . $list_of_compared_privileges. ')) '
2074 .'UNION '
2075 .'(SELECT ' . $list_of_privileges . ', \'*\' AS `Db`'
2076 .' FROM `mysql`.`user` '
2077 .' WHERE NOT (' . $list_of_compared_privileges . ')) '
2078 .' ORDER BY `User` ASC,'
2079 .' `Host` ASC,'
2080 .' `Db` ASC;';
2081 $res = PMA_DBI_query($sql_query);
2082 $row = PMA_DBI_fetch_assoc($res);
2083 if ($row) {
2084 $found = TRUE;
2087 if ($found) {
2088 while (TRUE) {
2089 // prepare the current user
2090 $current_privileges = array();
2091 $current_user = $row['User'];
2092 $current_host = $row['Host'];
2093 while ($row && $current_user == $row['User'] && $current_host == $row['Host']) {
2094 $current_privileges[] = $row;
2095 $row = PMA_DBI_fetch_assoc($res);
2097 echo ' <tr class="' . ($odd_row ? 'odd' : 'even') . '">' . "\n"
2098 . ' <td';
2099 if (count($current_privileges) > 1) {
2100 echo ' rowspan="' . count($current_privileges) . '"';
2102 echo '>' . (empty($current_user) ? '<span style="color: #FF0000">' . $GLOBALS['strAny'] . '</span>' : htmlspecialchars($current_user)) . "\n"
2103 . ' </td>' . "\n"
2104 . ' <td';
2105 if (count($current_privileges) > 1) {
2106 echo ' rowspan="' . count($current_privileges) . '"';
2108 echo '>' . htmlspecialchars($current_host) . '</td>' . "\n";
2109 foreach ($current_privileges as $current) {
2110 echo ' <td>' . "\n"
2111 . ' ';
2112 if (!isset($current['Db']) || $current['Db'] == '*') {
2113 echo $GLOBALS['strGlobal'];
2114 } elseif ($current['Db'] == PMA_escape_mysql_wildcards($checkprivs)) {
2115 echo $GLOBALS['strDbSpecific'];
2116 } else {
2117 echo $GLOBALS['strWildcard'], ': <tt>' . htmlspecialchars($current['Db']) . '</tt>';
2119 echo "\n"
2120 . ' </td>' . "\n"
2121 . ' <td>' . "\n"
2122 . ' <tt>' . "\n"
2123 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($current, TRUE)) . "\n"
2124 . ' </tt>' . "\n"
2125 . ' </td>' . "\n"
2126 . ' <td>' . "\n"
2127 . ' ' . ($current['Grant_priv'] == 'Y' ? $GLOBALS['strYes'] : $GLOBALS['strNo']) . "\n"
2128 . ' </td>' . "\n"
2129 . ' <td>' . "\n";
2130 printf($link_edit, urlencode($current_user),
2131 urlencode($current_host),
2132 urlencode(! isset($current['Db']) || $current['Db'] == '*' ? '' : $current['Db']),
2133 '');
2134 echo '</td>' . "\n"
2135 . ' </tr>' . "\n";
2137 if (empty($row) && empty($row1) && empty($row2)) {
2138 break;
2140 $odd_row = ! $odd_row;
2142 } else {
2143 echo ' <tr class="odd">' . "\n"
2144 . ' <td colspan="6">' . "\n"
2145 . ' ' . $GLOBALS['strNoUsersFound'] . "\n"
2146 . ' </td>' . "\n"
2147 . ' </tr>' . "\n";
2149 echo '</tbody>' . "\n"
2150 . '</table>' . "\n";
2152 // Offer to create a new user for the current database
2153 echo '<fieldset id="fieldset_add_user">' . "\n"
2154 . ' <a href="server_privileges.php?' . $GLOBALS['url_query'] . '&amp;adduser=1&amp;dbname=' . $checkprivs .'">' . "\n"
2155 . PMA_getIcon('b_usradd.png')
2156 . ' ' . $GLOBALS['strAddUser'] . '</a>' . "\n"
2157 . '</fieldset>' . "\n";
2159 } // end if (empty($_REQUEST['adduser']) && empty($checkprivs)) ... elseif ... else ...
2163 * Displays the footer
2165 echo "\n\n";
2166 require_once './libraries/footer.inc.php';