4 // +--------------------------------------------------------------------------+
5 // | Set of functions used to run http authentication. |
6 // | NOTE: Requires PHP loaded as a Apache module. |
7 // +--------------------------------------------------------------------------+
10 if (!defined('PMA_HTTP_AUTH_INCLUDED')) {
11 define('PMA_HTTP_AUTH_INCLUDED', 1);
14 * Displays authentication form
16 * @global string the font face to use in case of failure
17 * @global string the default font size to use in case of failure
18 * @global string the big font size to use in case of failure
20 * @return boolean always true (no return indeed)
26 global $right_font_family, $font_size, $font_bigger;
28 header('WWW-Authenticate: Basic realm="phpMyAdmin ' . sprintf($GLOBALS['strRunning'], (empty($GLOBALS['cfgServer']['verbose']) ?
str_replace('\'', '\\\'',$GLOBALS['cfgServer']['host']) : str_replace('\'', '\\\'', $GLOBALS['cfgServer']['verbose']))) . '"');
29 header('HTTP/1.0 401 Unauthorized');
30 header('status: 401 Unauthorized');
33 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
34 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
35 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang
="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir
="<?php echo $GLOBALS['text_dir']; ?>">
38 <title
><?php
echo $GLOBALS['strAccessDenied']; ?
></title
>
39 <style type
="text/css">
41 body
{font
-family
: <?php
echo $right_font_family; ?
>; font
-size
: <?php
echo $font_size; ?
>; color
: #000000}
42 h1
{font
-family
: <?php
echo $right_font_family; ?
>; font
-size
: <?php
echo $font_bigger; ?
>; font
-weight
: bold
}
47 <body bgcolor
="<?php echo $GLOBALS['cfgRightBgColor']; ?>">
50 <h1
><?php
echo sprintf($GLOBALS['strWelcome'], ' phpMyAdmin ' . PMA_VERSION
); ?
></h1
>
53 <p
><?php
echo $GLOBALS['strWrongUser']; ?
></p
>
62 } // end of the 'PMA_auth()' function
66 * Gets advanced authentication settings
68 * @global string the username if register_globals is on
69 * @global string the password if register_globals is on
70 * @global array the array of server variables if register_globals is
72 * @global array the array of environment variables if register_globals
74 * @global string the username for the ? server
75 * @global string the password for the ? server
76 * @global string the username for the WebSite Professional server
77 * @global string the password for the WebSite Professional server
78 * @global string the username of the user who logs out
80 * @return boolean whether we get authentication settings or not
84 function PMA_auth_check()
86 global $PHP_AUTH_USER, $PHP_AUTH_PW;
87 global $HTTP_SERVER_VARS, $HTTP_ENV_VARS;
88 global $REMOTE_USER, $AUTH_USER, $REMOTE_PASSWORD, $AUTH_PASSWORD;
91 // Grabs the $PHP_AUTH_USER variable whatever are the values of the
92 // 'register_globals' and the 'variables_order' directives
93 // loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
94 if (empty($PHP_AUTH_USER)) {
95 if (!empty($_SERVER) && isset($_SERVER['PHP_AUTH_USER'])) {
96 $PHP_AUTH_USER = $_SERVER['PHP_AUTH_USER'];
98 else if (!empty($HTTP_SERVER_VARS) && isset($HTTP_SERVER_VARS['PHP_AUTH_USER'])) {
99 $PHP_AUTH_USER = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
101 else if (isset($REMOTE_USER)) {
102 $PHP_AUTH_USER = $REMOTE_USER;
104 else if (!empty($_ENV) && isset($_ENV['REMOTE_USER'])) {
105 $PHP_AUTH_USER = $_ENV['REMOTE_USER'];
107 else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['REMOTE_USER'])) {
108 $PHP_AUTH_USER = $HTTP_ENV_VARS['REMOTE_USER'];
110 else if (@getenv
('REMOTE_USER')) {
111 $PHP_AUTH_USER = getenv('REMOTE_USER');
113 // Fix from Matthias Fichtner for WebSite Professional - Part 1
114 else if (isset($AUTH_USER)) {
115 $PHP_AUTH_USER = $AUTH_USER;
117 else if (!empty($_ENV) && isset($_ENV['AUTH_USER'])) {
118 $PHP_AUTH_USER = $_ENV['AUTH_USER'];
120 else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['AUTH_USER'])) {
121 $PHP_AUTH_USER = $HTTP_ENV_VARS['AUTH_USER'];
123 else if (@getenv
('AUTH_USER')) {
124 $PHP_AUTH_USER = getenv('AUTH_USER');
127 // Grabs the $PHP_AUTH_PW variable whatever are the values of the
128 // 'register_globals' and the 'variables_order' directives
129 // loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
130 if (empty($PHP_AUTH_PW)) {
131 if (!empty($_SERVER) && isset($_SERVER['PHP_AUTH_PW'])) {
132 $PHP_AUTH_PW = $_SERVER['PHP_AUTH_PW'];
134 else if (!empty($HTTP_SERVER_VARS) && isset($HTTP_SERVER_VARS['PHP_AUTH_PW'])) {
135 $PHP_AUTH_PW = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
137 else if (isset($REMOTE_PASSWORD)) {
138 $PHP_AUTH_PW = $REMOTE_PASSWORD;
140 else if (!empty($_ENV) && isset($_ENV['REMOTE_PASSWORD'])) {
141 $PHP_AUTH_PW = $_ENV['REMOTE_PASSWORD'];
143 else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['REMOTE_PASSWORD'])) {
144 $PHP_AUTH_PW = $HTTP_ENV_VARS['REMOTE_PASSWORD'];
146 else if (@getenv
('REMOTE_PASSWORD')) {
147 $PHP_AUTH_PW = getenv('REMOTE_PASSWORD');
149 // Fix from Matthias Fichtner for WebSite Professional - Part 2
150 else if (isset($AUTH_PASSWORD)) {
151 $PHP_AUTH_PW = $AUTH_PASSWORD;
153 else if (!empty($_ENV) && isset($_ENV['AUTH_PASSWORD'])) {
154 $PHP_AUTH_PW = $_ENV['AUTH_PASSWORD'];
156 else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['AUTH_PASSWORD'])) {
157 $PHP_AUTH_PW = $HTTP_ENV_VARS['AUTH_PASSWORD'];
159 else if (@getenv
('AUTH_PASSWORD')) {
160 $PHP_AUTH_PW = getenv('AUTH_PASSWORD');
164 // User logged out -> ensure the new username is not the same
166 && (isset($PHP_AUTH_USER) && $old_usr == $PHP_AUTH_USER)) {
170 // Returns whether we get authentication settings or not
171 if (empty($PHP_AUTH_USER)) {
174 if (get_magic_quotes_gpc()) {
175 $PHP_AUTH_USER = stripslashes($PHP_AUTH_USER);
176 $PHP_AUTH_PW = stripslashes($PHP_AUTH_PW);
180 } // end of the 'PMA_auth_check()' function
184 * Set the user and password after last checkings if required
186 * @global array the valid servers settings
187 * @global integer the id of the current server
188 * @global array the current server settings
189 * @global string the current username
190 * @global string the current password
192 * @return boolean always true
196 function PMA_auth_set_user()
198 global $cfgServers, $server, $cfgServer;
199 global $PHP_AUTH_USER, $PHP_AUTH_PW;
201 // Ensures the valid 'only_db' setting is used
202 if ($cfgServer['user'] != $PHP_AUTH_USER) {
203 $servers_cnt = count($cfgServers);
204 for ($i = 1; $i <= $servers_cnt; $i++
) {
205 if (isset($cfgServers[$i])
206 && ($cfgServers[$i]['host'] == $cfgServer['host'] && $cfgServers[$i]['user'] == $PHP_AUTH_USER)) {
208 $cfgServer = $cfgServers[$i];
214 $cfgServer['user'] = $PHP_AUTH_USER;
215 $cfgServer['password'] = $PHP_AUTH_PW;
218 } // end of the 'PMA_auth_set_user()' function
222 * User is not allowed to login to MySQL -> authentication failed
224 * @return boolean always true (no return indeed)
228 function PMA_auth_fails()
233 } // end of the 'PMA_auth()' function
235 } // $__PMA_HTTP_AUTH_LIB__