Workaround for EIMS split response to SEARCH
[squirrelmail.git] / functions / auth.php
CommitLineData
3c13b9fb 1<?php
2
35586184 3/**
4 * auth.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Contains functions used to do authentication.
10 *
11 * $Id$
d6c32258 12 * @package squirrelmail
35586184 13 */
14
d6c32258 15/** Put in a safety net here, in case a naughty admin didn't run conf.pl when they upgraded */
47a29326 16
17if (! isset($smtp_auth_mech)) {
18 $smtp_auth_mech = 'none';
19}
20
21if (! isset($imap_auth_mech)) {
fe0b18b3 22 $imap_auth_mech = 'login';
47a29326 23}
24
25if (! isset($use_imap_tls)) {
26 $use_imap_tls = false;
27}
28
29if (! isset($use_smtp_tls)) {
30 $use_smtp_tls = false;
31}
32
9be8198d 33function is_logged_in() {
2d367c68 34
d7c82551 35 if ( sqsession_is_registered('user_is_logged_in') ) {
e110c214 36 return;
4d2c9f70 37 } else {
8a48b083 38 global $PHP_SELF, $session_expired_post,
f04cab07 39 $session_expired_location;
40
41 /* First we store some information in the new session to prevent
42 * information-loss.
43 */
8a48b083 44
45 $session_expired_post = $_POST;
f04cab07 46 $session_expired_location = $PHP_SELF;
d7c82551 47 if (!sqsession_is_registered('session_expired_post')) {
8a48b083 48 sqsession_register($session_expired_post,'session_expired_post');
f04cab07 49 }
d7c82551 50 if (!sqsession_is_registered('session_expired_location')) {
8a48b083 51 sqsession_register($session_expired_location,'session_expired_location');
f04cab07 52 }
014bba80 53 include_once( SM_PATH . 'functions/display_messages.php' );
9be8198d 54 logout_error( _("You must be logged in to access this page.") );
4d2c9f70 55 exit;
e110c214 56 }
e110c214 57}
3c13b9fb 58
47a29326 59function cram_md5_response ($username,$password,$challenge) {
60
61/* Given the challenge from the server, supply the response using
62 cram-md5 (See RFC 2195 for details)
47a29326 63*/
64$challenge=base64_decode($challenge);
1c6d997a 65$hash=bin2hex(hmac_md5($challenge,$password));
47a29326 66$response=base64_encode($username . " " . $hash) . "\r\n";
67return $response;
68}
69
70function digest_md5_response ($username,$password,$challenge,$service,$host) {
71/* Given the challenge from the server, calculate and return the response-string
72 for digest-md5 authentication. (See RFC 2831 for more details) */
73 $result=digest_md5_parse_challenge($challenge);
74
75// verify server supports qop=auth
83c400e7 76 // $qop = explode(",",$result['qop']);
47a29326 77 //if (!in_array("auth",$qop)) {
78 // rfc2831: client MUST fail if no qop methods supported
79 // return false;
80 //}
1c6d997a 81 $cnonce = base64_encode(bin2hex(hmac_md5(microtime())));
47a29326 82 $ncount = "00000001";
83
84 /* This can be auth (authentication only), auth-int (integrity protection), or
85 auth-conf (confidentiality protection). Right now only auth is supported.
86 DO NOT CHANGE THIS VALUE */
87 $qop_value = "auth";
88
89 $digest_uri_value = $service . '/' . $host;
90
91 // build the $response_value
92 //FIXME This will probably break badly if a server sends more than one realm
93 $string_a1 = utf8_encode($username).":";
94 $string_a1 .= utf8_encode($result['realm']).":";
95 $string_a1 .= utf8_encode($password);
1c6d997a 96 $string_a1 = hmac_md5($string_a1);
47a29326 97 $A1 = $string_a1 . ":" . $result['nonce'] . ":" . $cnonce;
1c6d997a 98 $A1 = bin2hex(hmac_md5($A1));
47a29326 99 $A2 = "AUTHENTICATE:$digest_uri_value";
100 // If qop is auth-int or auth-conf, A2 gets a little extra
101 if ($qop_value != 'auth') {
102 $A2 .= ':00000000000000000000000000000000';
103 }
1c6d997a 104 $A2 = bin2hex(hmac_md5($A2));
47a29326 105
106 $string_response = $result['nonce'] . ':' . $ncount . ':' . $cnonce . ':' . $qop_value;
1c6d997a 107 $response_value = bin2hex(hmac_md5($A1.":".$string_response.":".$A2));
47a29326 108
109 $reply = 'charset=utf-8,username="' . $username . '",realm="' . $result["realm"] . '",';
110 $reply .= 'nonce="' . $result['nonce'] . '",nc=' . $ncount . ',cnonce="' . $cnonce . '",';
111 $reply .= "digest-uri=\"$digest_uri_value\",response=$response_value";
112 $reply .= ',qop=' . $qop_value;
113 $reply = base64_encode($reply);
114 return $reply . "\r\n";
115
116}
117
118function digest_md5_parse_challenge($challenge) {
119/* This function parses the challenge sent during DIGEST-MD5 authentication and
120 returns an array. See the RFC for details on what's in the challenge string.
121*/
122 $challenge=base64_decode($challenge);
83c400e7 123 while (isset($challenge)) {
47a29326 124 if ($challenge{0} == ',') { // First char is a comma, must not be 1st time through loop
125 $challenge=substr($challenge,1);
126 }
127 $key=explode('=',$challenge,2);
128 $challenge=$key[1];
129 $key=$key[0];
130 if ($challenge{0} == '"') {
131 // We're in a quoted value
132 // Drop the first quote, since we don't care about it
133 $challenge=substr($challenge,1);
134 // Now explode() to the next quote, which is the end of our value
135 $val=explode('"',$challenge,2);
136 $challenge=$val[1]; // The rest of the challenge, work on it in next iteration of loop
137 $value=explode(',',$val[0]);
138 // Now, for those quoted values that are only 1 piece..
139 if (sizeof($value) == 1) {
140 $value=$value[0]; // Convert to non-array
141 }
142 } else {
143 // We're in a "simple" value - explode to next comma
144 $val=explode(',',$challenge,2);
83c400e7 145 if (isset($val[1])) {
146 $challenge=$val[1];
147 } else {
148 unset($challenge);
149 }
47a29326 150 $value=$val[0];
151 }
152 $parsed["$key"]=$value;
153 } // End of while loop
154 return $parsed;
155}
156
1c6d997a 157function hmac_md5($data, $key='') {
639c7164 158 // Creates a HMAC digest that can be used for auth purposes
159 // See RFCs 2104, 2617, 2831
160 // Uses mhash() extension if available
161 if (extension_loaded('mhash')) {
162 if ($key== '') {
163 $mhash=mhash(MHASH_MD5,$data);
164 } else {
165 $mhash=mhash(MHASH_MD5,$data,$key);
166 }
167 return $mhash;
168 }
169 if (!$key) {
170 return pack('H*',md5($data));
171 }
172 $key = str_pad($key,64,chr(0x00));
173 if (strlen($key) > 64) {
174 $key = pack("H*",md5($key));
175 }
176 $k_ipad = $key ^ str_repeat(chr(0x36), 64) ;
177 $k_opad = $key ^ str_repeat(chr(0x5c), 64) ;
1c6d997a 178 /* Heh, let's get recursive. */
179 $hmac=hmac_md5($k_opad . pack("H*",md5($k_ipad . $data)) );
639c7164 180 return $hmac;
181}
182
d7c82551 183?>