remove control M
[phpmyadmin/crack.git] / server_privileges.php3
blob97c378195e010ba59659c6f71847a31dce10ed1b
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Does the common work
8 */
9 $js_to_run = 'server_privileges.js';
10 require('./server_common.inc.php3');
13 /**
14 * Checks if a dropdown box has been used for selecting a database / table
16 if (!empty($pred_dbname)) {
17 $dbname = $pred_dbname;
18 unset($pred_dbname);
20 if (!empty($pred_tablename)) {
21 $tablename = $pred_tablename;
22 unset($pred_tablename);
26 /**
27 * Checks if the user is allowed to do what he tries to...
29 if (!$is_superuser) {
30 include('./server_links.inc.php3');
31 echo '<h2>' . "\n"
32 . ' ' . $strPrivileges . "\n"
33 . '</h2>' . "\n"
34 . $strNoPrivileges . "\n";
35 include('./footer.inc.php3');
36 exit;
40 /**
41 * Extracts the privilege information of a priv table row
43 * @param array the row
44 * @param boolean add <dfn> tag with tooltips
46 * @global ressource the database connection
48 * @return array
50 function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
52 global $userlink;
54 $grants = array(
55 array('Select_priv', 'SELECT', $GLOBALS['strPrivDescSelect']),
56 array('Insert_priv', 'INSERT', $GLOBALS['strPrivDescInsert']),
57 array('Update_priv', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
58 array('Delete_priv', 'DELETE', $GLOBALS['strPrivDescDelete']),
59 array('Create_priv', 'CREATE', $GLOBALS['strPrivDescCreateDb']),
60 array('Drop_priv', 'DROP', $GLOBALS['strPrivDescDropDb']),
61 array('Reload_priv', 'RELOAD', $GLOBALS['strPrivDescReload']),
62 array('Shutdown_priv', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']),
63 array('Process_priv', 'PROCESS', $GLOBALS['strPrivDescProcess' . ((!empty($row) && isset($row['Super_priv'])) || (empty($row) && isset($GLOBALS['Super_priv'])) ? '4' : '3')]),
64 array('File_priv', 'FILE', $GLOBALS['strPrivDescFile']),
65 array('References_priv', 'REFERENCES', $GLOBALS['strPrivDescReferences']),
66 array('Index_priv', 'INDEX', $GLOBALS['strPrivDescIndex']),
67 array('Alter_priv', 'ALTER', $GLOBALS['strPrivDescAlter']),
68 array('Show_db_priv', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']),
69 array('Super_priv', 'SUPER', $GLOBALS['strPrivDescSuper']),
70 array('Create_tmp_table_priv', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
71 array('Lock_tables_priv', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']),
72 array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
73 array('Repl_slave_priv', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']),
74 array('Repl_client_priv', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient'])
76 if (!empty($row) && isset($row['Table_priv'])) {
77 $sql_query = 'SHOW COLUMNS FROM `tables_priv` LIKE "Table_priv";';
78 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
79 unset($sql_query);
80 $row1 = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
81 mysql_free_result($res);
82 $av_grants = explode ('\',\'' , substr($row1['Type'], 5, strlen($row1['Type']) - 7));
83 unset($row1);
84 $users_grants = explode(',', $row['Table_priv']);
85 while (list(, $current_grant) = each($av_grants)) {
86 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
88 unset($current_grant);
89 unset($av_grants);
90 unset($users_grants);
92 $privs = array();
93 $allPrivileges = TRUE;
94 while (list(, $current_grant) = each($grants)) {
95 if ((!empty($row) && isset($row[$current_grant[0]])) || (empty($row) && isset($GLOBALS[$current_grant[0]]))) {
96 if ((!empty($row) && $row[$current_grant[0]] == 'Y') || (empty($row) && ($GLOBALS[$current_grant[0]] == 'Y' || (is_array($GLOBALS[$current_grant[0]]) && count($GLOBALS[$current_grant[0]]) == $GLOBALS['column_count'] && empty($GLOBALS[$current_grant[0] . '_none']))))) {
97 if ($enableHTML) {
98 $privs[] = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', '&nbsp;', $current_grant[1]) . '</dfn>';
99 } else {
100 $privs[] = $current_grant[1];
102 } else if (!empty($GLOBALS[$current_grant[0]]) && is_array($GLOBALS[$current_grant[0]]) && empty($GLOBALS[$current_grant[0] . '_none'])) {
103 if ($enableHTML) {
104 $priv_string = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', '&nbsp;', $current_grant[1]) . '</dfn>';
105 } else {
106 $priv_string = $current_grant[1];
108 $privs[] = $priv_string . ' (`' . join('`, `', $GLOBALS[$current_grant[0]]) . '`)';
109 } else {
110 $allPrivileges = FALSE;
114 if (empty($privs)) {
115 if ($enableHTML) {
116 $privs[] = '<dfn title="' . $GLOBALS['strPrivDescUsage'] . '">USAGE</dfn>';
117 } else {
118 $privs[] = 'USAGE';
120 } else if ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
121 if ($enableHTML) {
122 $privs = array('<dfn title="' . $GLOBALS['strPrivDescAllPrivileges'] . '">ALL&nbsp;PRIVILEGES</dfn>');
123 } else {
124 $privs = array('ALL PRIVILEGES');
127 return $privs;
128 } // end of the 'PMA_extractPrivInfo()' function
131 * Displays the privileges form table
133 * @param string the database
134 * @param string the table
135 * @param boolean wheather to display the submit button or not
136 * @param int the indenting level of the code
138 * @global array the phpMyAdmin configuration
139 * @global ressource the database connection
141 * @return void
143 function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE, $indent = 0)
145 global $cfg, $userlink;
147 if ($db == '*') {
148 $table = '*';
150 $spaces = '';
151 for ($i = 0; $i < $indent; $i++) {
152 $spaces .= ' ';
154 if (isset($GLOBALS['username'])) {
155 $username = $GLOBALS['username'];
156 $hostname = $GLOBALS['hostname'];
157 if ($db == '*') {
158 $sql_query = 'SELECT * FROM `user` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '";';
159 } else if ($table == '*') {
160 $sql_query = 'SELECT * FROM `db` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '";';
161 } else {
162 $sql_query = 'SELECT `Table_priv` FROM `tables_priv` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '" AND `Table_name` = "' . $table . '";';
164 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
165 if ($res) {
166 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
168 @mysql_free_result($res);
170 if (empty($row)) {
171 if ($table == '*') {
172 if ($db == '*') {
173 $sql_query = 'SHOW COLUMNS FROM `mysql`.`user`;';
174 } else if ($table == '*') {
175 $sql_query = 'SHOW COLUMNS FROM `mysql`.`db`;';
177 $res = PMA_mysql_query($sql_query, $userlink)
178 or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
179 while ($row1 = PMA_mysql_fetch_row($res)) {
180 if (substr($row1[0], 0, 4) == 'max_') {
181 $row[$row1[0]] = 0;
182 } else {
183 $row[$row1[0]] = 'N';
186 mysql_free_result($res);
187 } else {
188 $row = array('Table_priv' => '');
191 if (isset($row['Table_priv'])) {
192 $sql_query = 'SHOW COLUMNS FROM `tables_priv` LIKE "Table_priv";';
193 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
194 unset($sql_query);
195 $row1 = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
196 mysql_free_result($res);
197 $av_grants = explode ('\',\'' , substr($row1['Type'], strpos($row1['Type'], '(') + 2, strpos($row1['Type'], ')') - strpos($row1['Type'], '(') - 3));
198 unset($row1);
199 $users_grants = explode(',', $row['Table_priv']);
200 while (list(, $current_grant) = each($av_grants)) {
201 $row[$current_grant . '_priv'] = in_array($current_grant, $users_grants) ? 'Y' : 'N';
203 unset($row['Table_priv']);
204 unset($current_grant);
205 unset($av_grants);
206 unset($users_grants);
207 if ($res = PMA_mysql_query('SHOW COLUMNS FROM `' . $db . '`.`' . $table . '`;', $userlink)) {
208 $columns = array();
209 while ($row1 = PMA_mysql_fetch_row($res)) {
210 $columns[$row1[0]] = array(
211 'Select' => FALSE,
212 'Insert' => FALSE,
213 'Update' => FALSE,
214 'References' => FALSE
217 mysql_free_result($res);
218 unset($res);
219 unset($row1);
222 if (!empty($columns)) {
223 $sql_query = 'SELECT `Column_name`, `Column_priv` FROM `columns_priv` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '" AND `Table_name` = "' . $table . '";';
224 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
225 while ($row1 = PMA_mysql_fetch_row($res)) {
226 $row1[1] = explode(',', $row1[1]);
227 while (list(, $current) = each($row1[1])) {
228 $columns[$row1[0]][$current] = TRUE;
231 mysql_free_result($res);
232 unset($res);
233 unset($row1);
234 unset($current);
235 echo $spaces . '<input type="hidden" name="grant_count" value="' . count($row) . '" />' . "\n"
236 . $spaces . '<input type="hidden" name="column_count" value="' . count($columns) . '" />' . "\n"
237 . $spaces . '<table border="0">' . "\n"
238 . $spaces . ' <tr>' . "\n"
239 . $spaces . ' <th colspan="6">&nbsp;' . $GLOBALS['strTblPrivileges'] . '&nbsp;</th>' . "\n"
240 . $spaces . ' </tr>' . "\n"
241 . $spaces . ' <tr>' . "\n"
242 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></td>' . "\n"
243 . $spaces . ' </tr>' . "\n"
244 . $spaces . ' <tr>' . "\n"
245 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescSelect'] . '">SELECT</dfn></tt>&nbsp;</td>' . "\n"
246 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescInsert'] . '">INSERT</dfn></tt>&nbsp;</td>' . "\n"
247 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescUpdate'] . '">UPDATE</dfn></tt>&nbsp;</td>' . "\n"
248 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '">&nbsp;<tt><dfn title="' . $GLOBALS['strPrivDescReferences'] . '">REFERENCES</dfn></tt>&nbsp;</td>' . "\n";
249 list($current_grant, $current_grant_value) = each($row);
250 while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
251 list($current_grant, $current_grant_value) = each($row);
253 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
254 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
255 . $spaces . ' </tr>' . "\n"
256 . $spaces . ' <tr>' . "\n";
257 $rowspan = count($row) - 5;
258 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
259 . $spaces . ' <select name="Select_priv[]" multiple="multiple">' . "\n";
260 while (list($current_column, $current_column_privileges) = each($columns)) {
261 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
262 if ($row['Select_priv'] == 'Y' || $current_column_privileges['Select']) {
263 echo ' selected="selected"';
265 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
267 echo $spaces . ' </select><br />' . "\n"
268 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
269 . $spaces . ' <input type="checkbox" name="Select_priv_none" id="checkbox_Select_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
270 . $spaces . ' <label for="checkbox_Select_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
271 . $spaces . ' </td>' . "\n"
272 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
273 . $spaces . ' <select name="Insert_priv[]" multiple="multiple">' . "\n";
274 reset($columns);
275 while (list($current_column, $current_column_privileges) = each($columns)) {
276 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
277 if ($row['Insert_priv'] == 'Y' || $current_column_privileges['Insert']) {
278 echo ' selected="selected"';
280 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
282 echo $spaces . ' </select><br />' . "\n"
283 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
284 . $spaces . ' <input type="checkbox" name="Insert_priv_none" id="checkbox_Insert_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
285 . $spaces . ' <label for="checkbox_Insert_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
286 . $spaces . ' </td>' . "\n"
287 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
288 . $spaces . ' <select name="Update_priv[]" multiple="multiple">' . "\n";
289 reset($columns);
290 while (list($current_column, $current_column_privileges) = each($columns)) {
291 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
292 if ($row['Update_priv'] == 'Y' || $current_column_privileges['Update']) {
293 echo ' selected="selected"';
295 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
297 echo $spaces . ' </select><br />' . "\n"
298 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
299 . $spaces . ' <input type="checkbox" name="Update_priv_none" id="checkbox_Update_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
300 . $spaces . ' <label for="checkbox_Update_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
301 . $spaces . ' </td>' . "\n"
302 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" rowspan="' . $rowspan . '" valign="top">' . "\n"
303 . $spaces . ' <select name="References_priv[]" multiple="multiple">' . "\n";
304 reset($columns);
305 while (list($current_column, $current_column_privileges) = each($columns)) {
306 echo $spaces . ' <option value="' . htmlspecialchars($current_column) . '"';
307 if ($row['References_priv'] == 'Y' || $current_column_privileges['References']) {
308 echo ' selected="selected"';
310 echo '>' . htmlspecialchars($current_column) . '</option>' . "\n";
312 echo $spaces . ' </select><br />' . "\n"
313 . $spaces . ' <i>' . $GLOBALS['strOr'] . '</i><br />' . "\n"
314 . $spaces . ' <input type="checkbox" name="References_priv_none" id="checkbox_References_priv_none" title="' . $GLOBALS['strNone'] . '" />' . "\n"
315 . $spaces . ' <label for="checkbox_References_priv_none">' . $GLOBALS['strNone'] . '</label>' . "\n"
316 . $spaces . ' </td>' . "\n";
317 unset($rowspan);
318 list($current_grant, $current_grant_value) = each($row);
319 while (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
320 list($current_grant, $current_grant_value) = each($row);
322 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
323 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
324 . $spaces . ' </tr>' . "\n";
325 while (list($current_grant, $current_grant_value) = each($row)) {
326 if (in_array(substr($current_grant, 0, (strlen($current_grant) - 5)), array('Select', 'Insert', 'Update', 'References'))) {
327 continue;
329 echo $spaces . ' <tr>' . "\n"
330 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $current_grant . '" id="checkbox_' . $current_grant . '" value="Y" ' . ($current_grant_value == 'Y' ? 'checked="checked" ' : '') . 'title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '"/></td>' . "\n"
331 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $current_grant . '"><tt><dfn title="' . (isset($GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))]) ? $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5))] : $GLOBALS['strPrivDesc' . substr($current_grant, 0, (strlen($current_grant) - 5)) . 'Tbl']) . '">' . strtoupper(substr($current_grant, 0, strlen($current_grant) - 5)) . '</dfn></tt></label></td>' . "\n"
332 . $spaces . ' </tr>' . "\n";
334 } else {
335 $privTable[0] = array(
336 array('Select', 'SELECT', $GLOBALS['strPrivDescSelect']),
337 array('Insert', 'INSERT', $GLOBALS['strPrivDescInsert']),
338 array('Update', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
339 array('Delete', 'DELETE', $GLOBALS['strPrivDescDelete'])
341 if ($db == '*') {
342 $privTable[0][] = array('File', 'FILE', $GLOBALS['strPrivDescFile']);
344 $privTable[1] = array(
345 array('Create', 'CREATE', ($table == '*' ? $GLOBALS['strPrivDescCreateDb'] : $GLOBALS['strPrivDescCreateTbl'])),
346 array('Alter', 'ALTER', $GLOBALS['strPrivDescAlter']),
347 array('Index', 'INDEX', $GLOBALS['strPrivDescIndex']),
348 array('Drop', 'DROP', ($table == '*' ? $GLOBALS['strPrivDescDropDb'] : $GLOBALS['strPrivDescDropTbl']))
350 if (isset($row['Create_tmp_table_priv'])) {
351 $privTable[1][] = array('Create_tmp_table', 'CREATE&nbsp;TEMPORARY&nbsp;TABLES', $GLOBALS['strPrivDescCreateTmpTable']);
353 $privTable[2] = array();
354 if (isset($row['Grant_priv'])) {
355 $privTable[2][] = array('Grant', 'GRANT', $GLOBALS['strPrivDescGrant']);
357 if ($db == '*') {
358 if (isset($row['Super_priv'])) {
359 $privTable[2][] = array('Super', 'SUPER', $GLOBALS['strPrivDescSuper']);
360 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess4']);
361 } else {
362 $privTable[2][] = array('Process', 'PROCESS', $GLOBALS['strPrivDescProcess3']);
364 $privTable[2][] = array('Reload', 'RELOAD', $GLOBALS['strPrivDescReload']);
365 $privTable[2][] = array('Shutdown', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']);
366 if (isset($row['Show_db_priv'])) {
367 $privTable[2][] = array('Show_db', 'SHOW&nbsp;DATABASES', $GLOBALS['strPrivDescShowDb']);
370 if (isset($row['Lock_tables_priv'])) {
371 $privTable[2][] = array('Lock_tables', 'LOCK&nbsp;TABLES', $GLOBALS['strPrivDescLockTables']);
373 $privTable[2][] = array('References', 'REFERENCES', $GLOBALS['strPrivDescReferences']);
374 if ($db == '*') {
375 if (isset($row['Execute_priv'])) {
376 $privTable[2][] = array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute']);
378 if (isset($row['Repl_client_priv'])) {
379 $privTable[2][] = array('Repl_client', 'REPLICATION&nbsp;CLIENT', $GLOBALS['strPrivDescReplClient']);
381 if (isset($row['Repl_slave_priv'])) {
382 $privTable[2][] = array('Repl_slave', 'REPLICATION&nbsp;SLAVE', $GLOBALS['strPrivDescReplSlave']);
385 echo $spaces . '<input type="hidden" name="grant_count" value="' . (count($privTable[0]) + count($privTable[1]) + count($privTable[2]) - (isset($row['Grant_priv']) ? 1 : 0)) . '" />' . "\n"
386 . $spaces . '<table border="0">' . "\n"
387 . $spaces . ' <tr>' . "\n"
388 . $spaces . ' <th colspan="6">&nbsp;' . ($db == '*' ? $GLOBALS['strGlobalPrivileges'] : ($table == '*' ? $GLOBALS['strDbPrivileges'] : $GLOBALS['strTblPrivileges'])) . '&nbsp;</th>' . "\n"
389 . $spaces . ' </tr>' . "\n"
390 . $spaces . ' <tr>' . "\n"
391 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $GLOBALS['strEnglishPrivileges'] . '</i></small></td>' . "\n"
392 . $spaces . ' </tr>' . "\n"
393 . $spaces . ' <tr>' . "\n"
394 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strData'] . '</i></b>&nbsp;</td>' . "\n"
395 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strStructure'] . '</i></b>&nbsp;</td>' . "\n"
396 . $spaces . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2">&nbsp;<b><i>' . $GLOBALS['strAdministration'] . '</i></b>&nbsp;</td>' . "\n"
397 . $spaces . ' </tr>' . "\n";
398 $limitTable = FALSE;
399 for ($i = 0; isset($privTable[0][$i]) || isset($privTable[1][$i]) || isset($privTable[2][$i]); $i++) {
400 echo $spaces . ' <tr>' . "\n";
401 for ($j = 0; $j < 3; $j++) {
402 if (isset($privTable[$j][$i])) {
403 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $privTable[$j][$i][0] . '_priv" id="checkbox_' . $privTable[$j][$i][0] . '_priv" value="Y" ' . ($row[$privTable[$j][$i][0] . '_priv'] == 'Y' ? 'checked="checked" ' : '') . 'title="' . $privTable[$j][$i][2] . '"/></td>' . "\n"
404 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $privTable[$j][$i][0] . '_priv"><tt><dfn title="' . $privTable[$j][$i][2] . '">' . $privTable[$j][$i][1] . '</dfn></tt></label></td>' . "\n";
405 } else if ($db == '*' && !isset($privTable[0][$i]) && !isset($privTable[1][$i])
406 && isset($row['max_questions']) && isset($row['max_updates']) && isset($row['max_connections'])
407 && !$limitTable) {
408 echo $spaces . ' <td colspan="4" rowspan="' . (count($privTable[2]) - $i) . '">' . "\n"
409 . $spaces . ' <table border="0">' . "\n"
410 . $spaces . ' <tr>' . "\n"
411 . $spaces . ' <th colspan="2">&nbsp;' . $GLOBALS['strResourceLimits'] . '&nbsp;</th>' . "\n"
412 . $spaces . ' </tr>' . "\n"
413 . $spaces . ' <tr>' . "\n"
414 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2"><small><i>' . $GLOBALS['strZeroRemovesTheLimit'] . '</i></small></td>' . "\n"
415 . $spaces . ' </tr>' . "\n"
416 . $spaces . ' <tr>' . "\n"
417 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_questions"><tt><dfn title="' . $GLOBALS['strPrivDescMaxQuestions'] . '">MAX&nbsp;QUERIES&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
418 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_questions" id="text_max_questions" value="' . $row['max_questions'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxQuestions'] . '" /></td>' . "\n"
419 . $spaces . ' </tr>' . "\n"
420 . $spaces . ' <tr>' . "\n"
421 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_updates"><tt><dfn title="' . $GLOBALS['strPrivDescMaxUpdates'] . '">MAX&nbsp;UPDATES&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
422 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_updates" id="text_max_updates" value="' . $row['max_updates'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxUpdates'] . '" /></td>' . "\n"
423 . $spaces . ' </tr>' . "\n"
424 . $spaces . ' <tr>' . "\n"
425 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_connections"><tt><dfn title="' . $GLOBALS['strPrivDescMaxConnections'] . '">MAX&nbsp;CONNECTIONS&nbsp;PER&nbsp;HOUR</dfn></tt></label></td>' . "\n"
426 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" class="textfield" name="max_connections" id="text_max_connections" value="' . $row['max_connections'] . '" size="11" maxlength="11" title="' . $GLOBALS['strPrivDescMaxConnections'] . '" /></td>' . "\n"
427 . $spaces . ' </tr>' . "\n"
428 . $spaces . ' </table>' . "\n"
429 . $spaces . ' </td>' . "\n";
430 $limitTable = TRUE;
431 } else if (!$limitTable) {
432 echo $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2">&nbsp;</td>' . "\n";
436 echo $spaces . ' </tr>' . "\n";
438 if ($submit) {
439 echo $spaces . ' <tr>' . "\n"
440 . $spaces . ' <td colspan="6" align="center">' . "\n"
441 . $spaces . ' <input type="submit" name="update_privs" value="' . $GLOBALS['strGo'] . '" />' . "\n"
442 . $spaces . ' </td>' . "\n"
443 . $spaces . ' </tr>' . "\n";
445 echo $spaces . '</table>' . "\n";
446 } // end of the 'PMA_displayPrivTable()' function
450 * Displays the fields used by the "new user" form as well as the
451 * "change login information / copy user" form.
453 * @param string are we creating a new user or are we just changing one?
454 * (allowed values: 'new', 'change')
455 * @param int the indenting level of the code
457 * @global array the phpMyAdmin configuration
458 * @global ressource the database connection
460 * @return void
462 function PMA_displayLoginInformationFields($mode = 'new', $indent = 0)
464 global $cfg, $userlink;
465 $spaces = '';
466 for ($i = 0; $i < $indent; $i++) {
467 $spaces .= ' ';
469 echo $spaces . '<tr>' . "\n"
470 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
471 . $spaces . ' <label for="select_pred_username">' . "\n"
472 . $spaces . ' ' . $GLOBALS['strUserName'] . ':' . "\n"
473 . $spaces . ' </label>' . "\n"
474 . $spaces . ' </td>' . "\n"
475 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
476 . $spaces . ' <select name="pred_username" id="select_pred_username" title="' . $GLOBALS['strUserName'] . '"' . "\n"
477 . $spaces . ' onchange="if (this.value == \'any\') { username.value = \'\'; } else if (this.value == \'userdefined\') { username.focus(); username.select(); }">' . "\n"
478 . $spaces . ' <option value="any"' . ((isset($GLOBALS['pred_username']) && $GLOBALS['pred_username'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyUser'] . '</option>' . "\n"
479 . $spaces . ' <option value="userdefined"' . ((!isset($GLOBALS['pred_username']) || $GLOBALS['pred_username'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
480 . $spaces . ' </select>' . "\n"
481 . $spaces . ' </td>' . "\n"
482 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
483 . $spaces . ' <input type="text" class="textfield" name="username" class="textfield" title="' . $GLOBALS['strUserName'] . '"' . (empty($GLOBALS['username']) ? '' : ' value="' . (isset($GLOBALS['new_username']) ? $GLOBALS['new_username'] : $GLOBALS['username']) . '"') . ' onchange="pred_username.value = \'userdefined\';" />' . "\n"
484 . $spaces . ' </td>' . "\n"
485 . $spaces . '</tr>' . "\n"
486 . $spaces . '<tr>' . "\n"
487 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
488 . $spaces . ' <label for="select_pred_hostname">' . "\n"
489 . $spaces . ' ' . $GLOBALS['strHost'] . ':' . "\n"
490 . $spaces . ' </label>' . "\n"
491 . $spaces . ' </td>' . "\n"
492 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
493 . $spaces . ' <select name="pred_hostname" id="select_pred_hostname" title="' . $GLOBALS['strHost'] . '"' . "\n";
494 $res = PMA_mysql_query('SELECT USER();', $userlink);
495 $row = @PMA_mysql_fetch_row($res);
496 @mysql_free_result($res);
497 unset($res);
498 if (!empty($row[0])) {
499 $thishost = str_replace("'", '', substr($row[0], (strrpos($row[0], '@') + 1)));
500 if ($thishost == 'localhost' || $thishost == '127.0.0.1') {
501 unset($thishost);
504 echo $spaces . ' onchange="if (this.value == \'any\') { hostname.value = \'%\'; } else if (this.value == \'localhost\') { hostname.value = \'localhost\'; } '
505 . (empty($thishost) ? '' : 'else if (this.value == \'thishost\') { hostname.value = \'' . addslashes(htmlspecialchars($thishost)) . '\'; } ')
506 . 'else if (this.value == \'hosttable\') { hostname.value = \'\'; } else if (this.value == \'userdefined\') { hostname.focus(); hostname.select(); }">' . "\n";
507 unset($row);
508 echo $spaces . ' <option value="any"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'any') ? ' selected="selected"' : '') . '>' . $GLOBALS['strAnyHost'] . '</option>' . "\n"
509 . $spaces . ' <option value="localhost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'localhost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strLocalhost'] . '</option>' . "\n";
510 if (!empty($thishost)) {
511 echo $spaces . ' <option value="thishost"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'thishost') ? ' selected="selected"' : '') . '>' . $GLOBALS['strThisHost'] . '</option>' . "\n";
513 unset($thishost);
514 echo $spaces . ' <option value="hosttable"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'hosttable') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseHostTable'] . '</option>' . "\n"
515 . $spaces . ' <option value="userdefined"' . ((isset($GLOBALS['pred_hostname']) && $GLOBALS['pred_hostname'] == 'userdefined') ? ' selected="selected"' : '') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
516 . $spaces . ' </select>' . "\n"
517 . $spaces . ' </td>' . "\n"
518 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
519 . $spaces . ' <input type="text" class="textfield" name="hostname" value="' . ( isset($GLOBALS['hostname']) ? $GLOBALS['hostname'] : '' ) . '" class="textfield" title="' . $GLOBALS['strHost'] . '" onchange="pred_hostname.value = \'userdefined\';" />' . "\n"
520 . $spaces . ' </td>' . "\n"
521 . $spaces . '</tr>' . "\n"
522 . $spaces . '<tr>' . "\n"
523 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
524 . $spaces . ' <label for="select_pred_password">' . "\n"
525 . $spaces . ' ' . $GLOBALS['strPassword'] . ':' . "\n"
526 . $spaces . ' </label>' . "\n"
527 . $spaces . ' </td>' . "\n"
528 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
529 . $spaces . ' <select name="pred_password" id="select_pred_password" title="' . $GLOBALS['strPassword'] . '"' . "\n"
530 . $spaces . ' onchange="if (this.value == \'none\') { pma_pw.value = \'\'; pma_pw2.value = \'\'; } else if (this.value == \'userdefined\') { pma_pw.focus(); pma_pw.select(); }">' . "\n"
531 . ($mode == 'change' ? $spaces . ' <option value="keep" selected="selected">' . $GLOBALS['strKeepPass'] . '</option>' . "\n" : '')
532 . $spaces . ' <option value="none">' . $GLOBALS['strNoPassword'] . '</option>' . "\n"
533 . $spaces . ' <option value="userdefined"' . ($mode == 'change' ? '' : ' selected="selected"') . '>' . $GLOBALS['strUseTextField'] . ':</option>' . "\n"
534 . $spaces . ' </select>' . "\n"
535 . $spaces . ' </td>' . "\n"
536 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
537 . $spaces . ' <input type="password" name="pma_pw" class="textfield" title="' . $GLOBALS['strPassword'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
538 . $spaces . ' </td>' . "\n"
539 . $spaces . '</tr>' . "\n"
540 . $spaces . '<tr>' . "\n"
541 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
542 . $spaces . ' <label for="text_pma_pw2">' . "\n"
543 . $spaces . ' ' . $GLOBALS['strReType'] . ':' . "\n"
544 . $spaces . ' </label>' . "\n"
545 . $spaces . ' </td>' . "\n"
546 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">&nbsp;</td>' . "\n"
547 . $spaces . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
548 . $spaces . ' <input type="password" name="pma_pw2" id="text_pma_pw2" class="textfield" title="' . $GLOBALS['strReType'] . '" onchange="pred_password.value = \'userdefined\';" />' . "\n"
549 . $spaces . ' </td>' . "\n"
550 . $spaces . '</tr>' . "\n";
551 } // end of the 'PMA_displayUserAndHostFields()' function
555 * Changes / copies a user, part I
557 if (!empty($change_copy)) {
558 $local_query = 'SELECT * FROM `mysql`.`user` WHERE `User` = "' . PMA_sqlAddslashes($old_username) . '" AND `Host` = "' . $old_hostname . '";';
559 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
560 if (!$res) {
561 $message = $strNoUsersFound;
562 unset($change_copy);
563 } else {
564 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
565 extract($row, EXTR_OVERWRITE);
566 mysql_free_result($res);
567 $queries = array();
573 * Adds a user
574 * (Changes / copies a user, part II)
576 if (!empty($adduser_submit) || !empty($change_copy)) {
577 unset($sql_query);
578 if ($pred_username == 'any') {
579 $username = '';
581 switch ($pred_hostname) {
582 case 'any':
583 $hostname = '%';
584 break;
585 case 'localhost':
586 $hostname = 'localhost';
587 break;
588 case 'hosttable':
589 $hostname = '';
590 break;
591 case 'thishost':
592 $res = PMA_mysql_query('SELECT USER();', $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SELECT USER();');
593 $row = PMA_mysql_fetch_row($res);
594 mysql_free_result($res);
595 unset($res);
596 $hostname = substr($row[0], (strrpos($row[0], '@') + 1));
597 unset($row);
598 break;
600 $local_query = 'SELECT "foo" FROM `user` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '";';
601 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
602 unset($local_query);
603 if (mysql_affected_rows($userlink) == 1) {
604 $message = sprintf($strUserAlreadyExists, '<i>\'' . $username . '\'@\'' . $hostname . '\'</i>');
605 $adduser = 1;
606 } else {
607 if (PMA_MYSQL_INT_VERSION >= 32211) {
608 $real_sql_query = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '"';
609 if ($pred_password != 'none' && $pred_password != 'keep') {
610 $pma_pw_hidden = '';
611 for ($i = 0; $i < strlen($pma_pw); $i++) {
612 $pma_pw_hidden .= '*';
614 $sql_query = $real_sql_query . ' IDENTIFIED BY "' . $pma_pw_hidden . '"';
615 $real_sql_query .= ' IDENTIFIED BY "' . $pma_pw . '"';
616 } else {
617 if ($pred_password == 'keep' && !empty($password)) {
618 $real_sql_query .= ' IDENTIFIED BY PASSWORD "' . $password . '"';
620 $sql_query = $real_sql_query;
622 if ((isset($Grant_priv) && $Grant_priv == 'Y') || (PMA_MYSQL_INT_VERSION >= 40002 && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
623 $real_sql_query .= 'WITH';
624 $sql_query .= 'WITH';
625 if (isset($Grant_priv) && $Grant_priv == 'Y') {
626 $real_sql_query .= ' GRANT OPTION';
627 $sql_query .= ' GRANT OPTION';
629 if (PMA_MYSQL_INT_VERSION >= 40002) {
630 if (isset($max_questions)) {
631 $real_sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
632 $sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
634 if (isset($max_connections)) {
635 $real_sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
636 $sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
638 if (isset($max_updates)) {
639 $real_sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
640 $sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
644 $real_sql_query .= ';';
645 $sql_query .= ';';
646 if (empty($change_copy)) {
647 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
648 $message = $strAddUserMessage;
649 } else {
650 $queries[] = $sql_query;
652 unset($real_sql_query);
653 } else {
654 $privileges = PMA_extractPrivInfo();
655 $real_sql_query = 'INSERT INTO `user` SET `Host` = "' . $hostname . '", `User` = "' . PMA_sqlAddslashes($username) . '"';
656 if ($pred_password != 'none') {
657 $pma_pw_hidden = '';
658 for ($i = 0; $i < strlen($pma_pw); $i++) {
659 $pma_pw_hidden .= '*';
661 $sql_query = $real_sql_query . ', `Password` = PASSWORD("' . $pma_pw_hidden . '")';
662 $real_sql_query .= ', `Password` = PASSWORD("' . $pma_pw . '")';
663 } else {
664 $sql_query = $real_sql_query;
666 while (list(, $priv) = each($privileges)) {
667 $real_sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
668 $sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
670 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
671 unset($real_sql_query);
672 $message = $strAddUserMessage . '<br />' . "\n" . $strRememberReload;
674 mysql_free_result($res);
675 unset($res);
681 * Changes / copies a user, part III
683 if (!empty($change_copy)) {
684 $local_query = 'SELECT * FROM `mysql`.`db` WHERE `User` = "' . PMA_sqlAddslashes($old_username) . '" AND `Host` = "' . $old_hostname . '";';
685 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
686 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
687 $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) . ' ON `' . $row['Db'] . '`.* TO "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '"' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION' : '') . ';';
689 mysql_free_result($res);
690 $local_query = 'SELECT `Db`, `Table_name`, `Table_priv` FROM `mysql`.`tables_priv` WHERE `User` = "' . PMA_sqlAddslashes($old_username) . '" AND `Host` = "' . $old_hostname . '";';
691 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
692 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
693 $local_query = 'SELECT `Column_name`, `Column_priv` FROM `mysql`.`columns_priv` WHERE `User` = "' . PMA_sqlAddslashes($old_username) . '" AND `Host` = "' . $old_hostname . '" AND `Db` = "' . $row['Db'] . '";';
694 $res2 = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
695 $tmp_privs1 = PMA_extractPrivInfo($row);
696 $tmp_privs2 = array(
697 'Select' => array(),
698 'Insert' => array(),
699 'Update' => array(),
700 'References' => array()
702 while ($row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
703 $tmp_array = explode(',', $row2['Column_priv']);
704 if (in_array('Select', $tmp_array)) {
705 $tmp_privs2['Select'][] = $row2['Column_name'];
707 if (in_array('Insert', $tmp_array)) {
708 $tmp_privs2['Insert'][] = $row2['Column_name'];
710 if (in_array('Update', $tmp_array)) {
711 $tmp_privs2['Update'][] = $row2['Column_name'];
713 if (in_array('References', $tmp_array)) {
714 $tmp_privs2['References'][] = $row2['Column_name'];
716 unset($tmp_array);
718 if (count($tmp_privs2['Select']) > 0 && !in_array('SELECT', $tmp_privs1)) {
719 $tmp_privs1[] = 'SELECT (`' . join('`, `', $tmp_privs2['Select']) . '`)';
721 if (count($tmp_privs2['Insert']) > 0 && !in_array('INSERT', $tmp_privs1)) {
722 $tmp_privs1[] = 'INSERT (`' . join(', ', $tmp_privs2['Insert']) . '`)';
724 if (count($tmp_privs2['Update']) > 0 && !in_array('UPDATE', $tmp_privs1)) {
725 $tmp_privs1[] = 'UPDATE (`' . join(', ', $tmp_privs2['Update']) . '`)';
727 if (count($tmp_privs2['References']) > 0 && !in_array('REFERENCES', $tmp_privs1)) {
728 $tmp_privs1[] = 'REFERENCES (`' . join(', ', $tmp_privs2['References']) . '`)';
730 unset($tmp_privs2);
731 $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON `' . $row['Db'] . '`.`' . $row['Table_name'] . '` TO "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '"' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION' : '') . ';';
737 * Updates privileges
739 if (!empty($update_privs)) {
740 if (PMA_MYSQL_INT_VERSION >= 32211) {
741 $db_and_table = empty($dbname) ? '*.*' : PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
742 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '";';
743 if (!isset($Grant_priv) || $Grant_priv != 'Y') {
744 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '";';
746 $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $db_and_table . ' TO "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '"';
747 if ((isset($Grant_priv) && $Grant_priv == 'Y') || (empty($dbname) && PMA_MYSQL_INT_VERSION >= 40002 && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
748 $sql_query2 .= 'WITH';
749 if (isset($Grant_priv) && $Grant_priv == 'Y') {
750 $sql_query2 .= ' GRANT OPTION';
752 if (PMA_MYSQL_INT_VERSION >= 40002) {
753 if (isset($max_questions)) {
754 $sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
756 if (isset($max_connections)) {
757 $sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
759 if (isset($max_updates)) {
760 $sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
764 $sql_query2 .= ';';
765 PMA_mysql_query($sql_query0, $userlink); // this query may fail, but this does not matter :o)
766 if (isset($sql_query1)) {
767 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
769 PMA_mysql_query($sql_query2, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query2);
770 $sql_query = $sql_query0 . ' ' . (isset($sql_query1) ? $sql_query1 . ' ' : '') . $sql_query2;
771 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
772 } else {
773 $sql_query = 'SHOW COLUMNS FROM `user`;';
774 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
775 $grants = array();
776 while ($row = PMA_mysql_fetch_row($res)) {
777 if (substr($row[0], -5) == '_priv') {
778 $grants[] = PMA_backquote($row[0]) . ' = "' . (empty($$row[0]) ? 'N' : 'Y') . '"';
781 mysql_free_result($res);
782 unset($res);
783 unset($row);
784 $sql_query = 'UPDATE `user` SET ' . join(', ', $grants) . ' WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";';
785 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
786 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'') . '<br />' . "\n" . $strRememberReload;
792 * Revokes Privileges
794 if (!empty($revokeall)) {
795 if (PMA_MYSQL_INT_VERSION >= 32211) {
796 $db_and_table = PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
797 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
798 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
799 PMA_mysql_query($sql_query0, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query0);
800 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
801 $sql_query = $sql_query0 . ' ' . $sql_query1;
802 $message = sprintf($strRevokeMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
804 if (empty($tablename)) {
805 unset($dbname);
806 } else {
807 unset($tablename);
813 * Updates the password
815 if (!empty($change_pw)) {
816 if ($nopass == 1) {
817 $sql_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = ""';
818 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
819 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
820 } else if (empty($pma_pw) || empty($pma_pw2)) {
821 $message = $strPasswordEmpty;
822 } else if ($pma_pw != $pma_pw2) {
823 $message = $strPasswordNotSame;
824 } else {
825 $hidden_pw = '';
826 for ($i = 0; $i < strlen($pma_pw); $i++) {
827 $hidden_pw .= '*';
829 $local_query = 'SET PASSWORD FOR "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '" = PASSWORD("' . PMA_sqlAddslashes($pma_pw) . '")';
830 $sql_query = 'SET PASSWORD FOR "' . PMA_sqlAddslashes($username) . '"@"' . $hostname . '" = PASSWORD("' . $hidden_pw . '")';
831 PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
832 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
838 * Deletes users
839 * (Changes / copies a user, part IV)
841 if (!empty($delete) || (!empty($change_copy) && $mode < 4)) {
842 if (!empty($change_copy)) {
843 $selected_usr = array($old_username . '@' . $old_hostname);
844 } else {
845 $queries = array();
847 for ($i = 0; isset($selected_usr[$i]); $i++) {
848 list($this_user, $this_host) = explode('@', $selected_usr[$i]);
849 $queries[] = '# ' . sprintf($strDeleting, '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
850 if ($mode == 2) {
851 // The SHOW GRANTS query may fail if the user has not been loaded
852 // into memory
853 $res = PMA_mysql_query('SHOW GRANTS FOR "' . PMA_sqlAddslashes($this_user) . '"@"' . $this_host . '";', $userlink);
854 if ($res) {
855 $queries[] = 'REVOKE ALL PRIVILEGES ON *.* FROM "' . PMA_sqlAddslashes($this_user) . '"@"' . $this_host . '";';
856 while ($row = PMA_mysql_fetch_row($res)) {
857 $this_table = substr($row[0], (strpos($row[0], 'ON') + 3), (strpos($row[0], ' TO ') - strpos($row[0], 'ON') - 3));
858 if ($this_table != '*.*') {
859 $queries[] = 'REVOKE ALL PRIVILEGES ON ' . $this_table . ' FROM "' . PMA_sqlAddslashes($this_user) . '"@"' . $this_host . '";';
861 if (strpos($row[0], 'WITH GRANT OPTION')) {
862 $queries[] = 'REVOKE GRANT OPTION ON ' . $this_table . ' FROM "' . PMA_sqlAddslashes($this_user) . '"@"' . $this_host . '";';
865 unset($this_table);
867 mysql_free_result($res);
869 unset($res);
871 $queries[] = 'DELETE FROM `user` WHERE `User` = "' . PMA_sqlAddslashes($this_user) . '" AND `Host` = "' . $this_host . '";';
872 if ($mode != 2) {
873 // If we REVOKE the table grants, we should not need to modify the
874 // `db`, `tables_priv` and `columns_priv` tables manually...
875 $queries[] = 'DELETE FROM `db` WHERE `User` = "' . PMA_sqlAddslashes($this_user) . '" AND `Host` = "' . $this_host . '";';
876 $queries[] = 'DELETE FROM `tables_priv` WHERE `User` = "' . PMA_sqlAddslashes($this_user) . '" AND `Host` = "' . $this_host . '";';
877 $queries[] = 'DELETE FROM `columns_priv` WHERE `User` = "' . PMA_sqlAddslashes($this_user) . '" AND `Host` = "' . $this_host . '";';
879 if (!empty($drop_users_db)) {
880 $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
883 if (empty($change_copy)) {
884 if (empty($queries)) {
885 $message = $strError . ': ' . $strDeleteNoUsersSelected;
886 } else {
887 if ($mode == 3) {
888 $queries[] = '# ' . $strReloadingThePrivileges . ' ...';
889 $queries[] = 'FLUSH PRIVILEGES;';
891 while (list(, $sql_query) = each($queries)) {
892 if (substr($sql_query, 0, 1) != '#') {
893 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
896 $sql_query = join("\n", $queries);
897 $message = $strUsersDeleted;
899 unset($queries);
905 * Changes / copies a user, part V
907 if (!empty($change_copy)) {
908 while (list(, $sql_query) = each($queries)) {
909 if (substr($sql_query, 0, 1) != '#') {
910 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
913 $message = $strSuccess;
914 $sql_query = join("\n", $queries);
919 * Reloads the privilege tables into memory
921 if (!empty($flush_privileges)) {
922 $sql_query = 'FLUSH PRIVILEGES';
923 if (@PMA_mysql_query($sql_query, $userlink)) {
924 $message = $strPrivilegesReloaded;
925 } else {
926 PMA_mysqlDie(PMA_mysql_error($userlink));
932 * Displays the links
934 require('./server_links.inc.php3');
938 * Displays the page
940 if (empty($adduser) && empty($checkprivs)) {
941 if (!isset($username)) {
942 // No username is given --> display the overview
943 echo '<h2>' . "\n"
944 . ' ' . $strUserOverview . "\n"
945 . '</h2>' . "\n";
946 $oldPrivTables = FALSE;
947 if (PMA_MYSQL_INT_VERSION >= 40002) {
948 $res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv`, `Grant_priv`, `References_priv`, `Index_priv`, `Alter_priv`, `Show_db_priv`, `Super_priv`, `Create_tmp_table_priv`, `Lock_tables_priv`, `Execute_priv`, `Repl_slave_priv`, `Repl_client_priv` FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
949 if (!$res) {
950 // the query failed! This may have two reasons:
951 // - the user has not enough privileges
952 // - the privilege tables use a structure of an earlier version.
953 $oldPrivTables = TRUE;
956 if (empty($res) || (PMA_MYSQL_INT_VERSION >= 32211 && PMA_MYSQL_INT_VERSION < 40002)) {
957 $res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Index_priv`, `Alter_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv` FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
958 if (!$res) {
959 // the query failed! This may have two reasons:
960 // - the user has not enough privileges
961 // - the privilege tables use a structure of an earlier version.
962 $oldPrivTables = TRUE;
965 if (empty($res) || PMA_MYSQL_INT_VERSION < 32211) {
966 $res = PMA_mysql_query('SELECT * FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
968 if (!$res) {
969 echo '<i>' . $strNoPrivileges . '</i>' . "\n";
970 @mysql_free_result($res);
971 unset($res);
972 } else {
973 if ($oldPrivTables) {
974 // rabus: This message is hardcoded because I will replace it by
975 // a automatic repair feature soon.
976 echo '<div class="warning">' . "\n"
977 . ' Warning: Your privilege table structure seem to be older than this MySQL version!<br />' . "\n"
978 . ' Please run the script <tt>mysql_fix_privilege_tables</tt> that should be included in your MySQL server distribution to solve this problem!' . "\n"
979 . '</div><br />' . "\n";
981 echo '<form name="usersForm" action="server_privileges.php3" method="post" />' . "\n"
982 . PMA_generate_common_hidden_inputs('', '', 1)
983 . ' <table border="0">' . "\n"
984 . ' <tr>' . "\n"
985 . ' <th></th>' . "\n"
986 . ' <th>&nbsp;' . $strUser . '&nbsp;</th>' . "\n"
987 . ' <th>&nbsp;' . $strHost . '&nbsp;</th>' . "\n"
988 . ' <th>&nbsp;' . $strPassword . '&nbsp;</th>' . "\n"
989 . ' <th>&nbsp;' . $strGlobalPrivileges . '&nbsp;</th>' . "\n"
990 . ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n"
991 . ' <th>&nbsp;' . $strAction . '&nbsp;</th>' . "\n";
992 echo ' </tr>' . "\n";
993 $useBgcolorOne = TRUE;
994 for ($i = 0; $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC); $i++) {
995 echo ' <tr>' . "\n"
996 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><input type="checkbox" name="selected_usr[]" id="checkbox_sel_users_' . $i . '" value="' . htmlspecialchars($row['User'] . '@' . $row['Host']) . '"' . (empty($checkall) ? '' : ' checked="checked"') . ' /></td>' . "\n"
997 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><label for="checkbox_sel_users_' . $i . '">' . (empty($row['User']) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($row['User'])) . '</label></td>' . "\n"
998 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row['Host']) . '</td>' . "\n";
999 $privs = PMA_extractPrivInfo($row, TRUE);
1000 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Password'] == 'Y' ? $strYes : '<span style="color: #FF0000">' . $strNo . '</span>') . '</td>' . "\n"
1001 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1002 . ' ' . join(',' . "\n" . ' ', $privs) . "\n"
1003 . ' </tt></td>' . "\n"
1004 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Grant_priv'] == 'Y' ? $strYes : $strNo) . '</td>' . "\n"
1005 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($row['User']) . '&amp;hostname=' . urlencode($row['Host']) . '">' . $strEdit . '</a></td>' . "\n"
1006 . ' </tr>' . "\n";
1007 $useBgcolorOne = !$useBgcolorOne;
1009 @mysql_free_result($res);
1010 unset($res);
1011 unset ($row);
1012 echo ' <tr>' . "\n"
1013 . ' <td></td>' . "\n"
1014 . ' <td colspan="5">' . "\n"
1015 . ' &nbsp;<i>' . $strEnglishPrivileges . '</i>&nbsp;' . "\n"
1016 . ' </td>' . "\n"
1017 . ' </tr>' . "\n"
1018 . ' <tr>' . "\n"
1019 . ' <td colspan="6" valign="bottom">' . "\n"
1020 . ' <img src="./images/arrow_' . $text_dir . '.gif" border="0" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n"
1021 . ' <a href="./server_privileges.php3?' . $url_query . '&amp;checkall=1" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', true); return false;">' . $strCheckAll . '</a>' . "\n"
1022 . ' &nbsp;/&nbsp;' . "\n"
1023 . ' <a href="server_privileges.php3?' . $url_query . '" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', false); return false;">' . $strUncheckAll . '</a>' . "\n"
1024 . ' </td>' . "\n"
1025 . ' </tr>' . "\n"
1026 . ' </table>' . "\n"
1027 . ' <ul>' . "\n"
1028 . ' <li>' . "\n"
1029 . ' <b><a href="server_privileges.php3?' . $url_query . '&amp;adduser=1">' . $strAddUser . '</a></b><br />' . "\n"
1030 . ' </li><br /><br />' . "\n"
1031 . ' <li>' . "\n"
1032 . ' <b>' . $strRemoveSelectedUsers . '</b><br />' . "\n"
1033 . ' <input type="radio" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '" name="mode" id="radio_mode_1" value="1" checked="checked" />' . "\n"
1034 . ' <label for="radio_mode_1" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '">' . "\n"
1035 . ' ' . $strJustDelete . "\n"
1036 . ' </label><br />' . "\n";
1037 if (PMA_MYSQL_INT_VERSION >= 32304) {
1038 echo ' <input type="radio" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '" name="mode" id="radio_mode_2" value="2" />' . "\n"
1039 . ' <label for="radio_mode_2" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '">' . "\n"
1040 . ' ' . $strRevokeAndDelete . "\n"
1041 . ' </label><br />' . "\n";
1043 echo ' <input type="radio" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '" name="mode" id="radio_mode_3" value="3" />' . "\n"
1044 . ' <label for="radio_mode_3" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '">' . "\n"
1045 . ' ' . $strDeleteAndFlush . "\n"
1046 . ' </label><br />' . "\n"
1047 . ' <input type="checkbox" title="' . $strDropUsersDb . '" name="drop_users_db" id="checkbox_drop_users_db" />' . "\n"
1048 . ' <label for="checkbox_drop_users_db" title="' . $strDropUsersDb . '">' . "\n"
1049 . ' ' . $strDropUsersDb . "\n"
1050 . ' </label><br />' . "\n"
1051 . ' <input type="submit" name="delete" value="' . $strGo . '" />' . "\n"
1052 . ' </li>' . "\n"
1053 . ' </ul>' . "\n"
1054 . '</form>' . "\n"
1055 . '<div>' . "\n"
1056 . ' ' . sprintf($strFlushPrivilegesNote, '<a href="server_privileges.php3?' . $url_query . '&amp;flush_privileges=1">', '</a>') . "\n"
1057 . '</div>' . "\n";
1059 } else {
1060 // A user was selected -> display the user's properties
1061 echo '<h2>' . "\n"
1062 . ' ' . $strUser . ' <i><a class="h2" href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '">\'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'</a></i>' . "\n";
1063 if (!empty($dbname)) {
1064 echo ' - ' . $strDatabase . ' <i><a class="h2" href="' . $cfg['DefaultTabDatabase'] . '?' . $url_query . '&amp;db=' . urlencode($dbname) . '&amp;reload=1">' . htmlspecialchars($dbname) . '</a></i>' . "\n";
1065 if (!empty($tablename)) {
1066 echo ' - ' . $strTable . ' <i><a class="h2" href="' . $cfg['DefaultTabTable'] . '?' . $url_query . '&amp;db=' . urlencode($dbname) . '&amp;table=' . urlencode($tablename) . '&amp;reload=1">' . htmlspecialchars($tablename) . '</a></i>' . "\n";
1069 echo '</h2>' . "\n";
1070 $res = PMA_mysql_query('SELECT "foo" FROM `user` WHERE `User` = "' . PMA_sqlAddslashes($username) . '" AND `Host` = "' . $hostname . '";', $userlink);
1071 if (mysql_affected_rows($userlink) <= 0) {
1072 echo $strUserNotFound;
1073 include('./footer.inc.php3');
1074 exit;
1076 mysql_free_result($res);
1077 unset($res);
1078 echo '<ul>' . "\n"
1079 . ' <li>' . "\n"
1080 . ' <form action="server_privileges.php3" method="post">' . "\n"
1081 . PMA_generate_common_hidden_inputs('', '', 3)
1082 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1083 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1084 if (!empty($dbname)) {
1085 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
1086 if (!empty($tablename)) {
1087 echo ' <input type="hidden" name="tablename" value="' . htmlspecialchars($tablename) . '" />' . "\n";
1090 echo ' <b>' . $strEditPrivileges . '</b><br />' . "\n";
1091 PMA_displayPrivTable((empty($dbname) ? '*' : $dbname), ((empty($dbname) || empty($tablename)) ? '*' : $tablename), TRUE, 3);
1092 echo ' </form>' . "\n"
1093 . ' </li>' . "\n";
1094 if (empty($tablename)) {
1095 echo ' <li>' . "\n"
1096 . ' <b>' . (empty($dbname) ? $strDbPrivileges : $strTblPrivileges) . '</b><br />' . "\n"
1097 . ' <table border="0">' . "\n"
1098 . ' <tr>' . "\n"
1099 . ' <th>&nbsp;' . (empty($dbname) ? $strDatabase : $strTable) . '&nbsp;</th>' . "\n"
1100 . ' <th>&nbsp;' . $strPrivileges . '&nbsp;</th>' . "\n";
1101 if (PMA_MYSQL_INT_VERSION >= 32211) {
1102 echo ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n";
1104 echo ' <th>&nbsp;' . (empty($dbname) ? $strTblPrivileges : $strColumnPrivileges) . '&nbsp;</th>' . "\n"
1105 . ' <th colspan="2">&nbsp;' . $strAction . '&nbsp;</th>' . "\n"
1106 . ' </tr>' . "\n";
1107 if (empty($dbname)) {
1108 $sql_query = 'SELECT * FROM `db` WHERE `Host` = "' . $hostname . '" AND `User` = "' . PMA_sqlAddslashes($username) . '" ORDER BY `Db` ASC;';
1109 } else {
1110 $sql_query = 'SELECT `Table_name`, `Table_priv`, IF(`Column_priv` = "", 0, 1) AS "Column_priv" FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . PMA_sqlAddslashes($username) . '" AND `Db` = "' . $dbname . '" ORDER BY `Table_name` ASC;';
1112 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1113 if (mysql_affected_rows($userlink) == 0) {
1114 echo ' <tr>' . "\n"
1115 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '6' : '5') . '"><center><i>' . $strNone . '</i></center></td>' . "\n"
1116 . ' </tr>' . "\n";
1117 } else {
1118 $useBgcolorOne = TRUE;
1119 if (empty($dbname)) {
1120 $res2 = PMA_mysql_query('SELECT `Db` FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . PMA_sqlAddslashes($username) . '" GROUP BY `Db` ORDER BY `Db` ASC;') or PMA_mysqlDie(PMA_mysql_error($userlink), 'SELECT `Db` FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . PMA_sqlAddslashes($username) . '" GROUP BY `Db` ORDER BY `Db` ASC;');
1121 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1123 $found_rows = array();
1124 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
1125 while (empty($dbname) && $row2 && $row['Db'] > $row2['Db']) {
1126 $found_rows[] = $row2['Db'];
1127 echo ' <tr>' . "\n"
1128 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1129 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1130 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1131 . ' </tt></td>' . "\n";
1132 if (PMA_MYSQL_INT_VERSION >= 32211) {
1133 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1135 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1136 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
1137 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . urlencode($row2['Db']) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1138 . ' </tr>' . "\n";
1139 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1140 $useBgcolorOne = !$useBgcolorOne;
1141 } // end while
1142 $found_rows[] = empty($dbname) ? $row['Db'] : $row['Table_name'];
1143 echo ' <tr>' . "\n"
1144 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars(empty($dbname) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
1145 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1146 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($row, TRUE)) . "\n"
1147 . ' </tt></td>' . "\n";
1148 if (PMA_MYSQL_INT_VERSION >= 32211) {
1149 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . (((empty($dbname) && $row['Grant_priv'] == 'Y') || (!empty($dbname) && in_array('Grant', explode(',', $row['Table_priv'])))) ? $strYes : $strNo) . '</td>' . "\n";
1151 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">';
1152 if ((empty($dbname) && $row2 && $row['Db'] == $row2['Db'])
1153 || (!empty($dbname) && $row['Column_priv'])) {
1154 echo $strYes;
1155 if (empty($dbname)) {
1156 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1158 } else {
1159 echo $strNo;
1161 echo '</td>' . "\n"
1162 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&amp;tablename=' . urlencode($row['Table_name'])) . '">' . $strEdit . '</a></td>' . "\n"
1163 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . (empty($dbname) ? urlencode($row['Db']) : urlencode($dbname) . '&amp;tablename=' . urlencode($row['Table_name'])) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1164 . ' </tr>' . "\n";
1165 $useBgcolorOne = !$useBgcolorOne;
1166 } // end while
1167 while (empty($dbname) && $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
1168 $found_rows[] = $row2['Db'];
1169 echo ' <tr>' . "\n"
1170 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1171 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1172 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1173 . ' </tt></td>' . "\n";
1174 if (PMA_MYSQL_INT_VERSION >= 32211) {
1175 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1177 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1178 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . urlencode($row2['Db']) . '">' . $strEdit . '</a></td>' . "\n"
1179 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($username) . '&amp;hostname=' . urlencode($hostname) . '&amp;dbname=' . urlencode($row2['Db']) . '&amp;revokeall=1">' . $strRevoke . '</a></td>' . "\n"
1180 . ' </tr>' . "\n";
1181 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1182 $useBgcolorOne = !$useBgcolorOne;
1183 } // end while
1184 if (empty($dbname)) {
1185 mysql_free_result($res2);
1186 unset($res2);
1187 unset($row2);
1190 mysql_free_result($res);
1191 unset($res);
1192 unset($row);
1193 echo ' <tr>' . "\n"
1194 . ' <td colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '4') . '">' . "\n"
1195 . ' <form action="server_privileges.php3" method="post">' . "\n"
1196 . PMA_generate_common_hidden_inputs('', '', 6)
1197 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1198 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1199 if (empty($dbname)) {
1200 echo ' <label for="text_dbname">' . $strAddPrivilegesOnDb . ':</label>' . "\n";
1201 $res = PMA_mysql_query('SHOW DATABASES;', $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW DATABASES;');
1202 $pred_db_array = array();
1203 while ($row = PMA_mysql_fetch_row($res)) {
1204 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1205 $pred_db_array[] = $row[0];
1208 mysql_free_result($res);
1209 unset($res);
1210 unset($row);
1211 if (!empty($pred_db_array)) {
1212 echo ' <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
1213 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1214 while (list(, $current_db) = each($pred_db_array)) {
1215 echo ' <option value="' . htmlspecialchars($current_db) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
1217 echo ' </select>' . "\n";
1219 echo ' <input type="text" id="text_dbname" name="dbname" class="textfield" />' . "\n";
1220 } else {
1221 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n"
1222 . ' <label for="text_tablename">' . $strAddPrivilegesOnTbl . ':</label>' . "\n";
1223 if ($res = @PMA_mysql_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', $userlink)) {
1224 $pred_tbl_array = array();
1225 while ($row = PMA_mysql_fetch_row($res)) {
1226 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1227 $pred_tbl_array[] = $row[0];
1230 mysql_free_result($res);
1231 unset($res);
1232 unset($row);
1233 if (!empty($pred_tbl_array)) {
1234 echo ' <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
1235 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1236 while (list(, $current_table) = each($pred_tbl_array)) {
1237 echo ' <option value="' . htmlspecialchars($current_table) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
1239 echo ' </select>' . "\n";
1241 } else {
1242 unset($res);
1244 echo ' <input type="text" id="text_tablename" name="tablename" class="textfield" />' . "\n";
1246 echo ' <input type="submit" value="' . $strGo . '" />' . "\n"
1247 . ' </form>' . "\n"
1248 . ' </td>' . "\n"
1249 . ' </tr>' . "\n"
1250 . ' </table><br />' . "\n"
1251 . ' </li>' . "\n";
1253 if (empty($dbname)) {
1254 echo ' <li>' . "\n"
1255 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1256 . PMA_generate_common_hidden_inputs('', '', 3)
1257 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1258 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1259 echo ' <b>' . $strChangePassword . '</b><br />' . "\n"
1260 . ' <table border="0">' . "\n"
1261 . ' <tr>' . "\n"
1262 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '"><input type="radio" name="nopass" value="1" id="radio_nopass_1" onclick="pma_pw.value=\'\'; pma_pw2.value=\'\';" /></td>' . "\n"
1263 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"><label for="radio_nopass_1">' . $strNoPassword . '</label></td>' . "\n"
1264 . ' </tr>' . "\n"
1265 . ' <tr>' . "\n"
1266 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="radio" name="nopass" value="0" id="radio_nopass_0" onclick="document.getElementById(\'pw_pma_pw\').focus();" /></td>' . "\n"
1267 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="radio_nopass_0">' . $strPassword . ':</label></td>' . "\n"
1268 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw" id="pw_pma_pw" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1269 . ' </tr>' . "\n"
1270 . ' <tr>' . "\n"
1271 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">&nbsp;</td>' . "\n"
1272 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="pw_pma_pw2">' . $strReType . ':</label></td>' . "\n"
1273 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw2" id="pw_pma_pw2" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1274 . ' </tr>' . "\n"
1275 . ' <tr>' . "\n"
1276 . ' <td colspan="3" align="center">' . "\n"
1277 . ' <input type="submit" name="change_pw" value="' . $strGo . '" />' . "\n"
1278 . ' </td>' . "\n"
1279 . ' </tr>' . "\n"
1280 . ' </table>' . "\n"
1281 . ' </form>' . "\n"
1282 . ' </li>' . "\n";
1283 if (PMA_MYSQL_INT_VERSION >= 32211) {
1284 echo ' <li>' . "\n"
1285 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1286 . PMA_generate_common_hidden_inputs('', '', 3)
1287 . ' <input type="hidden" name="old_username" value="' . htmlspecialchars($username) . '" />' . "\n"
1288 . ' <input type="hidden" name="old_hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1289 echo ' <b>' . $strChangeCopyUser . '</b><br />' . "\n"
1290 . ' <table border="0">' . "\n";
1291 PMA_displayLoginInformationFields('change', 3);
1292 echo ' </table>' . "\n"
1293 . ' ' . $strChangeCopyMode . '<br />' . "\n"
1294 . ' <input type="radio" name="mode" value="4" id="radio_mode_4" checked="checked" />' . "\n"
1295 . ' <label for="radio_mode_4">' . "\n"
1296 . ' ' . $strChangeCopyModeCopy . "\n"
1297 . ' </label>' . "\n"
1298 . ' <br />' . "\n"
1299 . ' <input type="radio" name="mode" value="1" id="radio_mode_1" />' . "\n"
1300 . ' <label for="radio_mode_1">' . "\n"
1301 . ' ' . $strChangeCopyModeJustDelete . "\n"
1302 . ' </label>' . "\n"
1303 . ' <br />' . "\n"
1304 . ' <input type="radio" name="mode" value="2" id="radio_mode_2" />' . "\n"
1305 . ' <label for="radio_mode_2">' . "\n"
1306 . ' ' . $strChangeCopyModeRevoke . "\n"
1307 . ' </label>' . "\n"
1308 . ' <br />' . "\n"
1309 . ' <input type="radio" name="mode" value="3" id="radio_mode_3" />' . "\n"
1310 . ' <label for="radio_mode_3">' . "\n"
1311 . ' ' . $strChangeCopyModeDeleteAndReload . "\n"
1312 . ' </label>' . "\n"
1313 . ' <br />' . "\n"
1314 . ' <input type="submit" name="change_copy" value="' . $strGo . '" />' . "\n"
1315 . ' </form>' . "\n"
1316 . ' </li>' . "\n";
1319 echo '</ul>' . "\n";
1321 } else if (!empty($adduser)) {
1322 // Add a new user
1323 echo '<h2>' . "\n"
1324 . ' ' . $strAddUser . "\n"
1325 . '</h2>' . "\n"
1326 . '<form action="server_privileges.php3" method="post" onsubmit="return checkAddUser(this);">' . "\n"
1327 . PMA_generate_common_hidden_inputs('', '', 1)
1328 . ' <table border="0">' . "\n"
1329 . ' <tr>' . "\n"
1330 . ' <th colspan="3">' . "\n"
1331 . ' ' . $strLoginInformation . "\n"
1332 . ' </th>' . "\n"
1333 . ' </tr>' . "\n";
1334 PMA_displayLoginInformationFields('new', 2);
1335 echo ' </table><br />' . "\n";
1336 PMA_displayPrivTable('*', '*', FALSE, 1);
1337 echo ' <br />' . "\n"
1338 . ' <input type="submit" name="adduser_submit" value="' . $strGo . '" />' . "\n"
1339 . '</form>' . "\n";
1340 } else {
1341 // check the privileges for a particular database.
1342 echo '<h2>' . "\n"
1343 . ' ' . sprintf($strUsersHavingAccessToDb, htmlspecialchars($checkprivs)) . "\n"
1344 . '</h2>' . "\n"
1345 . '<table border="0">' . "\n"
1346 . ' <tr>' . "\n"
1347 . ' <th>' . "\n"
1348 . ' &nbsp;' . $strUser . '&nbsp;' . "\n"
1349 . ' </th>' . "\n"
1350 . ' <th>' . "\n"
1351 . ' &nbsp;' . $strHost . '&nbsp;' . "\n"
1352 . ' </th>' . "\n"
1353 . ' <th>' . "\n"
1354 . ' &nbsp;' . $strType . '&nbsp;' . "\n"
1355 . ' </th>' . "\n"
1356 . ' <th>' . "\n"
1357 . ' &nbsp;' . $strPrivileges . '&nbsp;' . "\n"
1358 . ' </th>' . "\n";
1359 if (PMA_MYSQL_INT_VERSION >= 32211) {
1360 echo ' <th>' . "\n"
1361 . ' &nbsp;' . $strGrantOption . '&nbsp;' . "\n"
1362 . ' </th>' . "\n";
1364 echo ' <th>' . "\n"
1365 . ' &nbsp;' . $strAction . '&nbsp;' . "\n"
1366 . ' </th>' . "\n"
1367 . ' </tr>' . "\n";
1368 $useBgcolorOne = TRUE;
1369 unset($row);
1370 unset($row1);
1371 unset($row2);
1372 // now, we build the table...
1373 if (PMA_MYSQL_INT_VERSION >= 40000) {
1374 // Starting with MySQL 4.0.0, we may use UNION SELECTs and this makes
1375 // the job much easier here!
1376 $sql_query = '(SELECT `User`, `Host`, `Db`, `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv` FROM `db` WHERE "' . $checkprivs . '" LIKE `Db` AND NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" AND `Grant_priv` = "N" AND `References_priv` = "N")) UNION (SELECT `User`, `Host`, "*" AS "Db", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv` FROM `user` WHERE NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" AND `Grant_priv` = "N" AND `References_priv` = "N")) ORDER BY `User` ASC, `Host` ASC, `Db` ASC;';
1377 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1378 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1379 if ($row) {
1380 $found = TRUE;
1382 } else {
1383 // With MySQL 3, we need 2 seperate queries here.
1384 $sql_query = 'SELECT * FROM `user` WHERE NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" ' . (PMA_MYSQL_INT_VERSION >= 32211 ? 'AND `Grant_priv` = "N" ' : '') . 'AND `References_priv` = "N") ORDER BY `User` ASC, `Host` ASC;';
1385 $res1 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1386 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1387 $sql_query = 'SELECT * FROM `db` WHERE "' . $checkprivs . '" LIKE `Db` AND NOT (`Select_priv` = "N" AND `Insert_priv` = "N" AND `Update_priv` = "N" AND `Delete_priv` = "N" AND `Create_priv` = "N" AND `Drop_priv` = "N" ' . (PMA_MYSQL_INT_VERSION >= 32211 ? 'AND `Grant_priv` = "N" ' : '') . 'AND `References_priv` = "N") ORDER BY `User` ASC, `Host` ASC;';
1388 $res2 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1389 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1390 if ($row1 || $row2) {
1391 $found = TRUE;
1393 } // end if (PMA_MYSQL_INT_VERSION >= 40000) ... else ...
1394 if ($found) {
1395 while (TRUE) {
1396 // prepare the current user
1397 if (PMA_MYSQL_INT_VERSION >= 40000) {
1398 $current_privileges = array();
1399 $current_user = $row['User'];
1400 $current_host = $row['Host'];
1401 while ($row && $current_user == $row['User'] && $current_host == $row['Host']) {
1402 $current_privileges[] = $row;
1403 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1405 } else {
1406 $current_privileges = array();
1407 if ($row1 && (!$row2 || ($row1['User'] < $row2['User'] || ($row1['User'] == $row2['User'] && $row1['Host'] <= $row2['Host'])))) {
1408 $current_user = $row1['User'];
1409 $current_host = $row1['Host'];
1410 $current_privileges = array($row1);
1411 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1412 } else {
1413 $current_user = $row2['User'];
1414 $current_host = $row2['Host'];
1415 $current_privileges = array();
1417 while ($row2 && $current_user == $row2['User'] && $current_host == $row2['Host']) {
1418 $current_privileges[] = $row2;
1419 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1422 echo ' <tr>' . "\n"
1423 . ' <td';
1424 if (count($current_privileges) > 1) {
1425 echo ' rowspan="' . count($current_privileges) . '"';
1427 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1428 . ' ' . (empty($current_user) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($current_user)) . "\n"
1429 . ' </td>' . "\n"
1430 . ' <td';
1431 if (count($current_privileges) > 1) {
1432 echo ' rowspan="' . count($current_privileges) . '"';
1434 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1435 . ' ' . htmlspecialchars($current_host) . "\n"
1436 . ' </td>' . "\n";
1437 while (list(, $current) = each($current_privileges)) {
1438 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1439 . ' ';
1440 if (!isset($current['Db']) || $current['Db'] == '*') {
1441 echo $strGlobal;
1442 } else if ($current['Db'] == $checkprivs) {
1443 echo $strDbSpecific;
1444 } else {
1445 echo $strWildcard, ': <tt>' . htmlspecialchars($current['Db']) . '</tt>';
1447 echo "\n"
1448 . ' </td>' . "\n"
1449 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1450 . ' <tt>' . "\n"
1451 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($current, TRUE)) . "\n"
1452 . ' <tt>' . "\n"
1453 . ' </td>' . "\n";
1454 if (PMA_MYSQL_INT_VERSION >= 32211) {
1455 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1456 . ' ' . ($current['Grant_priv'] == 'Y' ? $strYes : $strNo) . "\n"
1457 . ' </td>' . "\n";
1459 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1460 . ' <a href="./server_privileges.php3?' . $url_query . '&amp;username=' . urlencode($current_user) . '&amp;hostname=' . urlencode($current_host) . (!isset($current['Db']) || $current['Db'] == '*' ? '' : '&amp;dbname=' . urlencode($current['Db'])) . '">' . "\n"
1461 . ' ' . $strEdit . "\n"
1462 . ' </a>' . "\n"
1463 . ' </td>' . "\n"
1464 . ' </tr>' . "\n";
1466 if (empty($row) && empty($row1) && empty($row2)) {
1467 break;
1469 $useBgcolorOne = !$useBgcolorOne;
1471 } else {
1472 echo ' <tr>' . "\n"
1473 . ' <td colspan="' . (PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '6') . '" bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
1474 . ' ' . $strNoUsersFound . "\n"
1475 . ' </td>' . "\n"
1476 . ' </tr>' . "\n";
1478 echo '</table>' . "\n";
1479 } // end if (empty($adduser) && empty($checkprivs)) ... else if ... else ...
1483 * Displays the footer
1485 echo "\n\n";
1486 require('./footer.inc.php3');