bug 696215
[phpmyadmin/crack.git] / server_privileges.php3
blobdeff63cff15c977761e07b8e4ec08758912a2e57
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` = "' . $username . '" AND `Host` = "' . $hostname . '";';
159 } else if ($table == '*') {
160 $sql_query = 'SELECT * FROM `db` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '" AND `Db` = "' . $db . '";';
161 } else {
162 $sql_query = 'SELECT `Table_priv` FROM `tables_priv` WHERE `User` = "' . $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'], 5, strlen($row1['Type']) - 7));
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` = "' . $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']);
369 if (isset($row['Lock_tables_priv'])) {
370 $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="' . $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` = "' . $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` = "' . $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 "' . $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') || 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 (isset($max_questions)) {
630 $real_sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
631 $sql_query .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
633 if (isset($max_connections)) {
634 $real_sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
635 $sql_query .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
637 if (isset($max_updates)) {
638 $real_sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
639 $sql_query .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
642 $real_sql_query .= ';';
643 $sql_query .= ';';
644 if (empty($change_copy)) {
645 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
646 $message = $strAddUserMessage;
647 } else {
648 $queries[] = $sql_query;
650 unset($real_sql_query);
651 } else {
652 $privileges = PMA_extractPrivInfo();
653 $real_sql_query = 'INSERT INTO `user` SET `Host` = "' . $hostname . '", `User` = "' . $username . '"';
654 if ($pred_password != 'none') {
655 $pma_pw_hidden = '';
656 for ($i = 0; $i < strlen($pma_pw); $i++) {
657 $pma_pw_hidden .= '*';
659 $sql_query = $real_sql_query . ', `Password` = PASSWORD("' . $pma_pw_hidden . '")';
660 $real_sql_query .= ', `Password` = PASSWORD("' . $pma_pw . '")';
661 } else {
662 $sql_query = $real_sql_query;
664 while (list(, $priv) = each($privileges)) {
665 $real_sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
666 $sql_query .= ', `' . substr($priv, 0, 1) . strtolower(substr($priv, 1)) . '_priv` = "Y"';
668 PMA_mysql_query($real_sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
669 unset($real_sql_query);
670 $message = $strAddUserMessage . '<br />' . "\n" . $strRememberReload;
672 mysql_free_result($res);
673 unset($res);
679 * Changes / copies a user, part III
681 if (!empty($change_copy)) {
682 $local_query = 'SELECT * FROM `mysql`.`db` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '";';
683 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
684 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
685 $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) . ' ON `' . $row['Db'] . '`.* TO "' . $username . '"@"' . $hostname . '"' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION' : '') . ';';
687 mysql_free_result($res);
688 $local_query = 'SELECT `Db`, `Table_name`, `Table_priv` FROM `mysql`.`tables_priv` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '";';
689 $res = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
690 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
691 $local_query = 'SELECT `Column_name`, `Column_priv` FROM `mysql`.`columns_priv` WHERE `User` = "' . $old_username . '" AND `Host` = "' . $old_hostname . '" AND `Db` = "' . $row['Db'] . '";';
692 $res2 = PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $local_query);
693 $tmp_privs1 = PMA_extractPrivInfo($row);
694 $tmp_privs2 = array(
695 'Select' => array(),
696 'Insert' => array(),
697 'Update' => array(),
698 'References' => array()
700 while ($row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
701 $tmp_array = explode(',', $row2['Column_priv']);
702 if (in_array('Select', $tmp_array)) {
703 $tmp_privs2['Select'][] = $row2['Column_name'];
705 if (in_array('Insert', $tmp_array)) {
706 $tmp_privs2['Insert'][] = $row2['Column_name'];
708 if (in_array('Update', $tmp_array)) {
709 $tmp_privs2['Update'][] = $row2['Column_name'];
711 if (in_array('References', $tmp_array)) {
712 $tmp_privs2['References'][] = $row2['Column_name'];
714 unset($tmp_array);
716 if (count($tmp_privs2['Select']) > 0 && !in_array('SELECT', $tmp_privs1)) {
717 $tmp_privs1[] = 'SELECT (`' . join('`, `', $tmp_privs2['Select']) . '`)';
719 if (count($tmp_privs2['Insert']) > 0 && !in_array('INSERT', $tmp_privs1)) {
720 $tmp_privs1[] = 'INSERT (`' . join(', ', $tmp_privs2['Insert']) . '`)';
722 if (count($tmp_privs2['Update']) > 0 && !in_array('UPDATE', $tmp_privs1)) {
723 $tmp_privs1[] = 'UPDATE (`' . join(', ', $tmp_privs2['Update']) . '`)';
725 if (count($tmp_privs2['References']) > 0 && !in_array('REFERENCES', $tmp_privs1)) {
726 $tmp_privs1[] = 'REFERENCES (`' . join(', ', $tmp_privs2['References']) . '`)';
728 unset($tmp_privs2);
729 $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON `' . $row['Db'] . '`.`' . $row['Table_name'] . '` TO "' . $username . '"@"' . $hostname . '"' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION' : '') . ';';
735 * Updates privileges
737 if (!empty($update_privs)) {
738 if (PMA_MYSQL_INT_VERSION >= 32211) {
739 $db_and_table = empty($dbname) ? '*.*' : PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
740 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
741 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
742 $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $db_and_table . ' TO "' . $username . '"@"' . $hostname . '"';
743 if ((isset($Grant_priv) && $Grant_priv == 'Y') || (empty($dbname) && (isset($max_questions) || isset($max_connections) || isset($max_updates)))) {
744 $sql_query2 .= 'WITH';
745 if (isset($Grant_priv) && $Grant_priv == 'Y') {
746 $sql_query2 .= ' GRANT OPTION';
748 if (isset($max_questions)) {
749 $sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
751 if (isset($max_connections)) {
752 $sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
754 if (isset($max_updates)) {
755 $sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
758 $sql_query2 .= ';';
759 PMA_mysql_query($sql_query0, $userlink); // this query may fail, but this does not matter :o)
760 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
761 PMA_mysql_query($sql_query2, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query2);
762 $sql_query = $sql_query0 . ' ' . $sql_query1 . ' ' . $sql_query2;
763 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
764 } else {
765 $sql_query = 'SHOW COLUMNS FROM `user`;';
766 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
767 $grants = array();
768 while ($row = PMA_mysql_fetch_row($res)) {
769 if (substr($row[0], -5) == '_priv') {
770 $grants[] = PMA_backquote($row[0]) . ' = "' . (empty($$row[0]) ? 'N' : 'Y') . '"';
773 mysql_free_result($res);
774 unset($res);
775 unset($row);
776 $sql_query = 'UPDATE `user` SET ' . join(', ', $grants) . ' WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";';
777 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
778 $message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'') . '<br />' . "\n" . $strRememberReload;
784 * Revokes Privileges
786 if (!empty($revokeall)) {
787 if (PMA_MYSQL_INT_VERSION >= 32211) {
788 $db_and_table = PMA_backquote($dbname) . '.' . (empty($tablename) ? '*' : PMA_backquote($tablename));
789 $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
790 $sql_query1 = 'REVOKE GRANT OPTION ON ' . $db_and_table . ' FROM "' . $username . '"@"' . $hostname . '";';
791 PMA_mysql_query($sql_query0, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query0);
792 PMA_mysql_query($sql_query1, $userlink); // this one may fail, too...
793 $sql_query = $sql_query0 . ' ' . $sql_query1;
794 $message = sprintf($strRevokeMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
796 if (empty($tablename)) {
797 unset($dbname);
798 } else {
799 unset($tablename);
805 * Updates the password
807 if (!empty($change_pw)) {
808 if ($nopass == 1) {
809 $sql_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = ""';
810 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
811 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
812 } else if (empty($pma_pw) || empty($pma_pw2)) {
813 $message = $strPasswordEmpty;
814 } else if ($pma_pw != $pma_pw2) {
815 $message = $strPasswordNotSame;
816 } else {
817 $hidden_pw = '';
818 for ($i = 0; $i < strlen($pma_pw); $i++) {
819 $hidden_pw .= '*';
821 $local_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = PASSWORD("' . $pma_pw . '")';
822 $sql_query = 'SET PASSWORD FOR "' . $username . '"@"' . $hostname . '" = PASSWORD("' . $hidden_pw . '")';
823 PMA_mysql_query($local_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
824 $message = sprintf($strPasswordChanged, '\'' . $username . '\'@\'' . $hostname . '\'');
830 * Deletes users
831 * (Changes / copies a user, part IV)
833 if (!empty($delete) || (!empty($change_copy) && $mode < 4)) {
834 if (!empty($change_copy)) {
835 $selected_usr = array($old_username . '@' . $old_hostname);
836 } else {
837 $queries = array();
839 for ($i = 0; isset($selected_usr[$i]); $i++) {
840 list($this_user, $this_host) = explode('@', $selected_usr[$i]);
841 $queries[] = '# ' . sprintf($strDeleting, '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
842 if ($mode == 2) {
843 // The SHOW GRANTS query may fail if the user has not been loaded
844 // into memory
845 $res = PMA_mysql_query('SHOW GRANTS FOR "' . $this_user . '"@"' . $this_host . '";', $userlink);
846 if ($res) {
847 $queries[] = 'REVOKE ALL PRIVILEGES ON *.* FROM "' . $this_user . '"@"' . $this_host . '";';
848 while ($row = PMA_mysql_fetch_row($res)) {
849 $this_table = substr($row[0], (strpos($row[0], 'ON') + 3), (strpos($row[0], ' TO ') - strpos($row[0], 'ON') - 3));
850 if ($this_table != '*.*') {
851 $queries[] = 'REVOKE ALL PRIVILEGES ON ' . $this_table . ' FROM "' . $this_user . '"@"' . $this_host . '";';
852 $queries[] = 'REVOKE GRANT OPTION ON ' . $this_table . ' FROM "' . $this_user . '"@"' . $this_host . '";';
854 unset($this_table);
856 mysql_free_result($res);
858 unset($res);
860 $queries[] = 'DELETE FROM `user` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
861 if ($mode != 2) {
862 // If we REVOKE the table grants, we should not need to modify the
863 // `db`, `tables_priv` and `columns_priv` tables manually...
864 $queries[] = 'DELETE FROM `db` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
865 $queries[] = 'DELETE FROM `tables_priv` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
866 $queries[] = 'DELETE FROM `columns_priv` WHERE `User` = "' . $this_user . '" AND `Host` = "' . $this_host . '";';
868 if (!empty($drop_users_db)) {
869 $queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
872 if (empty($change_copy)) {
873 if (empty($queries)) {
874 $message = $strError . ': ' . $strDeleteNoUsersSelected;
875 } else {
876 if ($mode == 3) {
877 $queries[] = '# ' . $strReloadingThePrivileges . ' ...';
878 $queries[] = 'FLUSH PRIVILEGES;';
880 while (list(, $sql_query) = each($queries)) {
881 if (substr($sql_query, 0, 1) != '#') {
882 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
885 $sql_query = join("\n", $queries);
886 $message = $strUsersDeleted;
888 unset($queries);
894 * Changes / copies a user, part V
896 if (!empty($change_copy)) {
897 while (list(, $sql_query) = each($queries)) {
898 if (substr($sql_query, 0, 1) != '#') {
899 PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink));
902 $message = $strSuccess;
903 $sql_query = join("\n", $queries);
908 * Reloads the privilege tables into memory
910 if (!empty($flush_privileges)) {
911 $sql_query = 'FLUSH PRIVILEGES';
912 if (@PMA_mysql_query($sql_query, $userlink)) {
913 $message = $strPrivilegesReloaded;
914 } else {
915 PMA_mysqlDie(PMA_mysql_error($userlink));
921 * Displays the links
923 require('./server_links.inc.php3');
927 * Displays the page
929 if (empty($adduser) && empty($checkprivs)) {
930 if (!isset($username)) {
931 // No username is given --> display the overview
932 echo '<h2>' . "\n"
933 . ' ' . $strUserOverview . "\n"
934 . '</h2>' . "\n";
935 $oldPrivTables = FALSE;
936 if (PMA_MYSQL_INT_VERSION >= 40002) {
937 $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);
938 if (!$res) {
939 // the query failed! This may have two reasons:
940 // - the user has not enough privileges
941 // - the privilege tables use a structure of an earlier version.
942 $oldPrivTables = TRUE;
945 if (empty($res) || (PMA_MYSQL_INT_VERSION >= 32211 && PMA_MYSQL_INT_VERSION < 40002)) {
946 $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);
947 if (!$res) {
948 // the query failed! This may have two reasons:
949 // - the user has not enough privileges
950 // - the privilege tables use a structure of an earlier version.
951 $oldPrivTables = TRUE;
954 if (empty($res) || PMA_MYSQL_INT_VERSION < 32211) {
955 $res = PMA_mysql_query('SELECT * FROM `user` ORDER BY `User` ASC, `Host` ASC;', $userlink);
957 if (!$res) {
958 echo '<i>' . $strNoPrivileges . '</i>' . "\n";
959 @mysql_free_result($res);
960 unset($res);
961 } else {
962 if ($oldPrivTables) {
963 // rabus: This message is hardcoded because I will replace it by
964 // a automatic repair feature soon.
965 echo '<div class="warning">' . "\n"
966 . ' Warning: Your privilege table structure seem to be older than this MySQL version!<br />' . "\n"
967 . ' Please run the script <tt>mysql_fix_privilege_tables</tt> that should be included in your MySQL server distribution to solve this problem!' . "\n"
968 . '</div><br />' . "\n";
970 echo '<form name="usersForm" action="server_privileges.php3" method="post" />' . "\n"
971 . PMA_generate_common_hidden_inputs('', '', 1)
972 . ' <table border="0">' . "\n"
973 . ' <tr>' . "\n"
974 . ' <th></th>' . "\n"
975 . ' <th>&nbsp;' . $strUser . '&nbsp;</th>' . "\n"
976 . ' <th>&nbsp;' . $strHost . '&nbsp;</th>' . "\n"
977 . ' <th>&nbsp;' . $strPassword . '&nbsp;</th>' . "\n"
978 . ' <th>&nbsp;' . $strGlobalPrivileges . '&nbsp;</th>' . "\n"
979 . ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n"
980 . ' <th>&nbsp;' . $strAction . '&nbsp;</th>' . "\n";
981 echo ' </tr>' . "\n";
982 $useBgcolorOne = TRUE;
983 for ($i = 0; $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC); $i++) {
984 echo ' <tr>' . "\n"
985 . ' <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"
986 . ' <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"
987 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row['Host']) . '</td>' . "\n";
988 $privs = PMA_extractPrivInfo($row, TRUE);
989 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Password'] == 'Y' ? $strYes : '<span style="color: #FF0000">' . $strNo . '</span>') . '</td>' . "\n"
990 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
991 . ' ' . join(',' . "\n" . ' ', $privs) . "\n"
992 . ' </tt></td>' . "\n"
993 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Grant_priv'] == 'Y' ? $strYes : $strNo) . '</td>' . "\n"
994 . ' <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"
995 . ' </tr>' . "\n";
996 $useBgcolorOne = !$useBgcolorOne;
998 @mysql_free_result($res);
999 unset($res);
1000 unset ($row);
1001 echo ' <tr>' . "\n"
1002 . ' <td></td>' . "\n"
1003 . ' <td colspan="5">' . "\n"
1004 . ' &nbsp;<i>' . $strEnglishPrivileges . '</i>&nbsp;' . "\n"
1005 . ' </td>' . "\n"
1006 . ' </tr>' . "\n"
1007 . ' <tr>' . "\n"
1008 . ' <td colspan="6" valign="bottom">' . "\n"
1009 . ' <img src="./images/arrow_' . $text_dir . '.gif" border="0" width="38" height="22" alt="' . $strWithChecked . '" />' . "\n"
1010 . ' <a href="./server_privileges.php3?' . $url_query . '&amp;checkall=1" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', true); return false;">' . $strCheckAll . '</a>' . "\n"
1011 . ' &nbsp;/&nbsp;' . "\n"
1012 . ' <a href="server_privileges.php3?' . $url_query . '" onclick="setCheckboxes(\'usersForm\', \'selected_usr\', false); return false;">' . $strUncheckAll . '</a>' . "\n"
1013 . ' </td>' . "\n"
1014 . ' </tr>' . "\n"
1015 . ' </table>' . "\n"
1016 . ' <ul>' . "\n"
1017 . ' <li>' . "\n"
1018 . ' <b><a href="server_privileges.php3?' . $url_query . '&amp;adduser=1">' . $strAddUser . '</a></b><br />' . "\n"
1019 . ' </li><br /><br />' . "\n"
1020 . ' <li>' . "\n"
1021 . ' <b>' . $strRemoveSelectedUsers . '</b><br />' . "\n"
1022 . ' <input type="radio" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '" name="mode" id="radio_mode_1" value="1" checked="checked" />' . "\n"
1023 . ' <label for="radio_mode_1" title="' . $strJustDelete . ' ' . $strJustDeleteDescr . '">' . "\n"
1024 . ' ' . $strJustDelete . "\n"
1025 . ' </label><br />' . "\n";
1026 if (PMA_MYSQL_INT_VERSION >= 32304) {
1027 echo ' <input type="radio" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '" name="mode" id="radio_mode_2" value="2" />' . "\n"
1028 . ' <label for="radio_mode_2" title="' . $strRevokeAndDelete . ' ' . $strRevokeAndDeleteDescr . '">' . "\n"
1029 . ' ' . $strRevokeAndDelete . "\n"
1030 . ' </label><br />' . "\n";
1032 echo ' <input type="radio" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '" name="mode" id="radio_mode_3" value="3" />' . "\n"
1033 . ' <label for="radio_mode_3" title="' . $strDeleteAndFlush . ' ' . $strDeleteAndFlushDescr . '">' . "\n"
1034 . ' ' . $strDeleteAndFlush . "\n"
1035 . ' </label><br />' . "\n"
1036 . ' <input type="checkbox" title="' . $strDropUsersDb . '" name="drop_users_db" id="checkbox_drop_users_db" />' . "\n"
1037 . ' <label for="checkbox_drop_users_db" title="' . $strDropUsersDb . '">' . "\n"
1038 . ' ' . $strDropUsersDb . "\n"
1039 . ' </label><br />' . "\n"
1040 . ' <input type="submit" name="delete" value="' . $strGo . '" />' . "\n"
1041 . ' </li>' . "\n"
1042 . ' </ul>' . "\n"
1043 . '</form>' . "\n"
1044 . '<div>' . "\n"
1045 . ' ' . sprintf($strFlushPrivilegesNote, '<a href="server_privileges.php3?' . $url_query . '&amp;flush_privileges=1">', '</a>') . "\n"
1046 . '</div>' . "\n";
1048 } else {
1049 // A user was selected -> display the user's properties
1050 echo '<h2>' . "\n"
1051 . ' ' . $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";
1052 if (!empty($dbname)) {
1053 echo ' - ' . $strDatabase . ' <i><a class="h2" href="' . $cfg['DefaultTabDatabase'] . '?' . $url_query . '&amp;db=' . urlencode($dbname) . '&amp;reload=1">' . htmlspecialchars($dbname) . '</a></i>' . "\n";
1054 if (!empty($tablename)) {
1055 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";
1058 echo '</h2>' . "\n";
1059 $res = PMA_mysql_query('SELECT "foo" FROM `user` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '";', $userlink);
1060 if (mysql_affected_rows($userlink) <= 0) {
1061 echo $strUserNotFound;
1062 include('./footer.inc.php3');
1063 exit;
1065 mysql_free_result($res);
1066 unset($res);
1067 echo '<ul>' . "\n"
1068 . ' <li>' . "\n"
1069 . ' <form action="server_privileges.php3" method="post">' . "\n"
1070 . PMA_generate_common_hidden_inputs('', '', 3)
1071 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1072 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1073 if (!empty($dbname)) {
1074 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
1075 if (!empty($tablename)) {
1076 echo ' <input type="hidden" name="tablename" value="' . htmlspecialchars($tablename) . '" />' . "\n";
1079 echo ' <b>' . $strEditPrivileges . '</b><br />' . "\n";
1080 PMA_displayPrivTable((empty($dbname) ? '*' : $dbname), ((empty($dbname) || empty($tablename)) ? '*' : $tablename), TRUE, 3);
1081 echo ' </form>' . "\n"
1082 . ' </li>' . "\n";
1083 if (empty($tablename)) {
1084 echo ' <li>' . "\n"
1085 . ' <b>' . (empty($dbname) ? $strDbPrivileges : $strTblPrivileges) . '</b><br />' . "\n"
1086 . ' <table border="0">' . "\n"
1087 . ' <tr>' . "\n"
1088 . ' <th>&nbsp;' . (empty($dbname) ? $strDatabase : $strTable) . '&nbsp;</th>' . "\n"
1089 . ' <th>&nbsp;' . $strPrivileges . '&nbsp;</th>' . "\n";
1090 if (PMA_MYSQL_INT_VERSION >= 32211) {
1091 echo ' <th>&nbsp;' . $strGrantOption . '&nbsp;</th>' . "\n";
1093 echo ' <th>&nbsp;' . (empty($dbname) ? $strTblPrivileges : $strColumnPrivileges) . '&nbsp;</th>' . "\n"
1094 . ' <th colspan="2">&nbsp;' . $strAction . '&nbsp;</th>' . "\n"
1095 . ' </tr>' . "\n";
1096 if (empty($dbname)) {
1097 $sql_query = 'SELECT * FROM `db` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" ORDER BY `Db` ASC;';
1098 } else {
1099 $sql_query = 'SELECT `Table_name`, `Table_priv`, IF(`Column_priv` = "", 0, 1) AS "Column_priv" FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $username . '" AND `Db` = "' . $dbname . '" ORDER BY `Table_name` ASC;';
1101 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1102 if (mysql_affected_rows($userlink) == 0) {
1103 echo ' <tr>' . "\n"
1104 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '6' : '5') . '"><center><i>' . $strNone . '</i></center></td>' . "\n"
1105 . ' </tr>' . "\n";
1106 } else {
1107 $useBgcolorOne = TRUE;
1108 if (empty($dbname)) {
1109 $res2 = PMA_mysql_query('SELECT `Db` FROM `tables_priv` WHERE `Host` = "' . $hostname . '" AND `User` = "' . $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` = "' . $username . '" GROUP BY `Db` ORDER BY `Db` ASC;');
1110 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1112 $found_rows = array();
1113 while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
1114 while (empty($dbname) && $row2 && $row['Db'] > $row2['Db']) {
1115 $found_rows[] = $row2['Db'];
1116 echo ' <tr>' . "\n"
1117 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1118 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1119 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1120 . ' </tt></td>' . "\n";
1121 if (PMA_MYSQL_INT_VERSION >= 32211) {
1122 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1124 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1125 . ' <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"
1126 . ' <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"
1127 . ' </tr>' . "\n";
1128 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1129 $useBgcolorOne = !$useBgcolorOne;
1130 } // end while
1131 $found_rows[] = empty($dbname) ? $row['Db'] : $row['Table_name'];
1132 echo ' <tr>' . "\n"
1133 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars(empty($dbname) ? $row['Db'] : $row['Table_name']) . '</td>' . "\n"
1134 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1135 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($row, TRUE)) . "\n"
1136 . ' </tt></td>' . "\n";
1137 if (PMA_MYSQL_INT_VERSION >= 32211) {
1138 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";
1140 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">';
1141 if ((empty($dbname) && $row2 && $row['Db'] == $row2['Db'])
1142 || (!empty($dbname) && $row['Column_priv'])) {
1143 echo $strYes;
1144 if (empty($dbname)) {
1145 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1147 } else {
1148 echo $strNo;
1150 echo '</td>' . "\n"
1151 . ' <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"
1152 . ' <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"
1153 . ' </tr>' . "\n";
1154 $useBgcolorOne = !$useBgcolorOne;
1155 } // end while
1156 while (empty($dbname) && $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC)) {
1157 $found_rows[] = $row2['Db'];
1158 echo ' <tr>' . "\n"
1159 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row2['Db']) . '</td>' . "\n"
1160 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
1161 . ' <dfn title="' . $strPrivDescUsage . '">USAGE</dfn>' . "\n"
1162 . ' </tt></td>' . "\n";
1163 if (PMA_MYSQL_INT_VERSION >= 32211) {
1164 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strNo . '</td>' . "\n";
1166 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . $strYes . '</td>' . "\n"
1167 . ' <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"
1168 . ' <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"
1169 . ' </tr>' . "\n";
1170 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1171 $useBgcolorOne = !$useBgcolorOne;
1172 } // end while
1173 if (empty($dbname)) {
1174 mysql_free_result($res2);
1175 unset($res2);
1176 unset($row2);
1179 mysql_free_result($res);
1180 unset($res);
1181 unset($row);
1182 echo ' <tr>' . "\n"
1183 . ' <td colspan="' .(PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '4') . '">' . "\n"
1184 . ' <form action="server_privileges.php3" method="post">' . "\n"
1185 . PMA_generate_common_hidden_inputs('', '', 6)
1186 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1187 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1188 if (empty($dbname)) {
1189 echo ' <label for="text_dbname">' . $strAddPrivilegesOnDb . ':</label>' . "\n";
1190 $res = PMA_mysql_query('SHOW DATABASES;', $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), 'SHOW DATABASES;');
1191 $pred_db_array = array();
1192 while ($row = PMA_mysql_fetch_row($res)) {
1193 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1194 $pred_db_array[] = $row[0];
1197 mysql_free_result($res);
1198 unset($res);
1199 unset($row);
1200 if (!empty($pred_db_array)) {
1201 echo ' <select name="pred_dbname" onchange="this.form.submit();">' . "\n"
1202 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1203 while (list(, $current_db) = each($pred_db_array)) {
1204 echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_db)) . '">' . htmlspecialchars($current_db) . '</option>' . "\n";
1206 echo ' </select>' . "\n";
1208 echo ' <input type="text" id="text_dbname" name="dbname" class="textfield" />' . "\n";
1209 } else {
1210 echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n"
1211 . ' <label for="text_tablename">' . $strAddPrivilegesOnTbl . ':</label>' . "\n";
1212 if ($res = @PMA_mysql_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', $userlink)) {
1213 $pred_tbl_array = array();
1214 while ($row = PMA_mysql_fetch_row($res)) {
1215 if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
1216 $pred_tbl_array[] = $row[0];
1219 mysql_free_result($res);
1220 unset($res);
1221 unset($row);
1222 if (!empty($pred_tbl_array)) {
1223 echo ' <select name="pred_tablename" onchange="this.form.submit();">' . "\n"
1224 . ' <option value="" selected="selected">' . $strUseTextField . ':</option>' . "\n";
1225 while (list(, $current_table) = each($pred_tbl_array)) {
1226 echo ' <option value="' . htmlspecialchars(PMA_escape_mysql_wildcards($current_table)) . '">' . htmlspecialchars($current_table) . '</option>' . "\n";
1228 echo ' </select>' . "\n";
1230 } else {
1231 unset($res);
1233 echo ' <input type="text" id="text_tablename" name="tablename" class="textfield" />' . "\n";
1235 echo ' <input type="submit" value="' . $strGo . '" />' . "\n"
1236 . ' </form>' . "\n"
1237 . ' </td>' . "\n"
1238 . ' </tr>' . "\n"
1239 . ' </table><br />' . "\n"
1240 . ' </li>' . "\n";
1242 if (empty($dbname)) {
1243 echo ' <li>' . "\n"
1244 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1245 . PMA_generate_common_hidden_inputs('', '', 3)
1246 . ' <input type="hidden" name="username" value="' . htmlspecialchars($username) . '" />' . "\n"
1247 . ' <input type="hidden" name="hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1248 echo ' <b>' . $strChangePassword . '</b><br />' . "\n"
1249 . ' <table border="0">' . "\n"
1250 . ' <tr>' . "\n"
1251 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '"><input type="radio" name="nopass" value="1" id="radio_nopass_1" onclick="pma_pw.value=\'\'; pma_pw2.value=\'\';" /></td>' . "\n"
1252 . ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"><label for="radio_nopass_1">' . $strNoPassword . '</label></td>' . "\n"
1253 . ' </tr>' . "\n"
1254 . ' <tr>' . "\n"
1255 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="radio" name="nopass" value="0" id="radio_nopass_0" onclick="document.getElementById(\'pw_pma_pw\').focus();" /></td>' . "\n"
1256 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="radio_nopass_0">' . $strPassword . ':</label></td>' . "\n"
1257 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw" id="pw_pma_pw" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1258 . ' </tr>' . "\n"
1259 . ' <tr>' . "\n"
1260 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '">&nbsp;</td>' . "\n"
1261 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="pw_pma_pw2">' . $strReType . ':</label></td>' . "\n"
1262 . ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="password" name="pma_pw2" id="pw_pma_pw2" class="textfield" onchange="nopass[1].checked = true;" /></td>' . "\n"
1263 . ' </tr>' . "\n"
1264 . ' <tr>' . "\n"
1265 . ' <td colspan="3" align="center">' . "\n"
1266 . ' <input type="submit" name="change_pw" value="' . $strGo . '" />' . "\n"
1267 . ' </td>' . "\n"
1268 . ' </tr>' . "\n"
1269 . ' </table>' . "\n"
1270 . ' </form>' . "\n"
1271 . ' </li>' . "\n";
1272 if (PMA_MYSQL_INT_VERSION >= 32211) {
1273 echo ' <li>' . "\n"
1274 . ' <form action="server_privileges.php3" method="post" onsubmit="checkPassword(this);">' . "\n"
1275 . PMA_generate_common_hidden_inputs('', '', 3)
1276 . ' <input type="hidden" name="old_username" value="' . htmlspecialchars($username) . '" />' . "\n"
1277 . ' <input type="hidden" name="old_hostname" value="' . htmlspecialchars($hostname) . '" />' . "\n";
1278 echo ' <b>' . $strChangeCopyUser . '</b><br />' . "\n"
1279 . ' <table border="0">' . "\n";
1280 PMA_displayLoginInformationFields('change', 3);
1281 echo ' </table>' . "\n"
1282 . ' ' . $strChangeCopyMode . '<br />' . "\n"
1283 . ' <input type="radio" name="mode" value="4" id="radio_mode_4" checked="checked" />' . "\n"
1284 . ' <label for="radio_mode_4">' . "\n"
1285 . ' ' . $strChangeCopyModeCopy . "\n"
1286 . ' </label>' . "\n"
1287 . ' <br />' . "\n"
1288 . ' <input type="radio" name="mode" value="1" id="radio_mode_1" />' . "\n"
1289 . ' <label for="radio_mode_1">' . "\n"
1290 . ' ' . $strChangeCopyModeJustDelete . "\n"
1291 . ' </label>' . "\n"
1292 . ' <br />' . "\n"
1293 . ' <input type="radio" name="mode" value="2" id="radio_mode_2" />' . "\n"
1294 . ' <label for="radio_mode_2">' . "\n"
1295 . ' ' . $strChangeCopyModeRevoke . "\n"
1296 . ' </label>' . "\n"
1297 . ' <br />' . "\n"
1298 . ' <input type="radio" name="mode" value="3" id="radio_mode_3" />' . "\n"
1299 . ' <label for="radio_mode_3">' . "\n"
1300 . ' ' . $strChangeCopyModeDeleteAndReload . "\n"
1301 . ' </label>' . "\n"
1302 . ' <br />' . "\n"
1303 . ' <input type="submit" name="change_copy" value="' . $strGo . '" />' . "\n"
1304 . ' </form>' . "\n"
1305 . ' </li>' . "\n";
1308 echo '</ul>' . "\n";
1310 } else if (!empty($adduser)) {
1311 // Add a new user
1312 echo '<h2>' . "\n"
1313 . ' ' . $strAddUser . "\n"
1314 . '</h2>' . "\n"
1315 . '<form action="server_privileges.php3" method="post" onsubmit="return checkAddUser(this);">' . "\n"
1316 . PMA_generate_common_hidden_inputs('', '', 1)
1317 . ' <table border="0">' . "\n"
1318 . ' <tr>' . "\n"
1319 . ' <th colspan="3">' . "\n"
1320 . ' ' . $strLoginInformation . "\n"
1321 . ' </th>' . "\n"
1322 . ' </tr>' . "\n";
1323 PMA_displayLoginInformationFields('new', 2);
1324 echo ' </table><br />' . "\n";
1325 PMA_displayPrivTable('*', '*', FALSE, 1);
1326 echo ' <br />' . "\n"
1327 . ' <input type="submit" name="adduser_submit" value="' . $strGo . '" />' . "\n"
1328 . '</form>' . "\n";
1329 } else {
1330 // check the privileges for a particular database.
1331 echo '<h2>' . "\n"
1332 . ' ' . sprintf($strUsersHavingAccessToDb, htmlspecialchars($checkprivs)) . "\n"
1333 . '</h2>' . "\n"
1334 . '<table border="0">' . "\n"
1335 . ' <tr>' . "\n"
1336 . ' <th>' . "\n"
1337 . ' &nbsp;' . $strUser . '&nbsp;' . "\n"
1338 . ' </th>' . "\n"
1339 . ' <th>' . "\n"
1340 . ' &nbsp;' . $strHost . '&nbsp;' . "\n"
1341 . ' </th>' . "\n"
1342 . ' <th>' . "\n"
1343 . ' &nbsp;' . $strType . '&nbsp;' . "\n"
1344 . ' </th>' . "\n"
1345 . ' <th>' . "\n"
1346 . ' &nbsp;' . $strPrivileges . '&nbsp;' . "\n"
1347 . ' </th>' . "\n";
1348 if (PMA_MYSQL_INT_VERSION >= 32211) {
1349 echo ' <th>' . "\n"
1350 . ' &nbsp;' . $strGrantOption . '&nbsp;' . "\n"
1351 . ' </th>' . "\n";
1353 echo ' <th>' . "\n"
1354 . ' &nbsp;' . $strAction . '&nbsp;' . "\n"
1355 . ' </th>' . "\n"
1356 . ' </tr>' . "\n";
1357 $useBgcolorOne = TRUE;
1358 unset($row);
1359 unset($row1);
1360 unset($row2);
1361 // now, we build the table...
1362 if (PMA_MYSQL_INT_VERSION >= 40000) {
1363 // Starting with MySQL 4.0.0, we may use UNION SELECTs and this makes
1364 // the job much easier here!
1365 $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;';
1366 $res = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1367 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1368 if ($row) {
1369 $found = TRUE;
1371 } else {
1372 // With MySQL 3, we need 2 seperate queries here.
1373 $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;';
1374 $res1 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1375 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1376 $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;';
1377 $res2 = PMA_mysql_query($sql_query, $userlink) or PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query);
1378 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1379 if ($row1 || $row2) {
1380 $found = TRUE;
1382 } // end if (PMA_MYSQL_INT_VERSION >= 40000) ... else ...
1383 if ($found) {
1384 while (TRUE) {
1385 // prepare the current user
1386 if (PMA_MYSQL_INT_VERSION >= 40000) {
1387 $current_privileges = array();
1388 $current_user = $row['User'];
1389 $current_host = $row['Host'];
1390 while ($row && $current_user == $row['User'] && $current_host == $row['Host']) {
1391 $current_privileges[] = $row;
1392 $row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
1394 } else {
1395 $current_privileges = array();
1396 if ($row1 && (!$row2 || ($row1['User'] < $row2['User'] || ($row1['User'] == $row2['User'] && $row1['Host'] <= $row2['Host'])))) {
1397 $current_user = $row1['User'];
1398 $current_host = $row1['Host'];
1399 $current_privileges = array($row1);
1400 $row1 = PMA_mysql_fetch_array($res1, MYSQL_ASSOC);
1401 } else {
1402 $current_user = $row2['User'];
1403 $current_host = $row2['Host'];
1404 $current_privileges = array();
1406 while ($row2 && $current_user == $row2['User'] && $current_host == $row2['Host']) {
1407 $current_privileges[] = $row2;
1408 $row2 = PMA_mysql_fetch_array($res2, MYSQL_ASSOC);
1411 echo ' <tr>' . "\n"
1412 . ' <td';
1413 if (count($current_privileges) > 1) {
1414 echo ' rowspan="' . count($current_privileges) . '"';
1416 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1417 . ' ' . (empty($current_user) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($current_user)) . "\n"
1418 . ' </td>' . "\n"
1419 . ' <td';
1420 if (count($current_privileges) > 1) {
1421 echo ' rowspan="' . count($current_privileges) . '"';
1423 echo ' bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1424 . ' ' . htmlspecialchars($current_host) . "\n"
1425 . ' </td>' . "\n";
1426 while (list(, $current) = each($current_privileges)) {
1427 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1428 . ' ';
1429 if (!isset($current['Db']) || $current['Db'] == '*') {
1430 echo $strGlobal;
1431 } else if ($current['Db'] == $checkprivs) {
1432 echo $strDbSpecific;
1433 } else {
1434 echo $strWildcard, ': <tt>' . htmlspecialchars($current['Db']) . '</tt>';
1436 echo "\n"
1437 . ' </td>' . "\n"
1438 . ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1439 . ' <tt>' . "\n"
1440 . ' ' . join(',' . "\n" . ' ', PMA_extractPrivInfo($current, TRUE)) . "\n"
1441 . ' <tt>' . "\n"
1442 . ' </td>' . "\n";
1443 if (PMA_MYSQL_INT_VERSION >= 32211) {
1444 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1445 . ' ' . ($current['Grant_priv'] == 'Y' ? $strYes : $strNo) . "\n"
1446 . ' </td>' . "\n";
1448 echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . "\n"
1449 . ' <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"
1450 . ' ' . $strEdit . "\n"
1451 . ' </a>' . "\n"
1452 . ' </td>' . "\n"
1453 . ' </tr>' . "\n";
1455 if (empty($row) && empty($row1) && empty($row2)) {
1456 break;
1458 $useBgcolorOne = !$useBgcolorOne;
1460 } else {
1461 echo ' <tr>' . "\n"
1462 . ' <td colspan="' . (PMA_MYSQL_INT_VERSION >= 32211 ? '5' : '6') . '" bgcolor="' . $cfg['BgcolorTwo'] . '">' . "\n"
1463 . ' ' . $strNoUsersFound . "\n"
1464 . ' </td>' . "\n"
1465 . ' </tr>' . "\n";
1467 echo '</table>' . "\n";
1468 } // end if (empty($adduser) && empty($checkprivs)) ... else if ... else ...
1472 * Displays the footer
1474 echo "\n\n";
1475 require('./footer.inc.php3');