1 |
5b237745
|
Scott Ullrich
|
<?php
|
2 |
856e58a6
|
Scott Ullrich
|
/* vim: set expandtab tabstop=4 shiftwidth=4: */
|
3 |
409d2492
|
Scott Ullrich
|
/*
|
4 |
856e58a6
|
Scott Ullrich
|
$Id$
|
5 |
|
|
|
6 |
|
|
Copyright (c) 2006, Jonathan De Graeve <jonathan.de.graeve@imelda.be>
|
7 |
|
|
All rights reserved.
|
8 |
|
|
|
9 |
ef345a70
|
Scott Ullrich
|
Redistribution and use in source and binary forms, with or without
|
10 |
|
|
modification, are permitted provided that the following conditions
|
11 |
856e58a6
|
Scott Ullrich
|
are met:
|
12 |
|
|
|
13 |
ef345a70
|
Scott Ullrich
|
1. Redistributions of source code must retain the above copyright
|
14 |
856e58a6
|
Scott Ullrich
|
notice, this list of conditions and the following disclaimer.
|
15 |
ef345a70
|
Scott Ullrich
|
2. Redistributions in binary form must reproduce the above copyright
|
16 |
|
|
notice, this list of conditions and the following disclaimer in the
|
17 |
856e58a6
|
Scott Ullrich
|
documentation and/or other materials provided with the distribution.
|
18 |
ef345a70
|
Scott Ullrich
|
3. The names of the authors may not be used to endorse or promote products
|
19 |
856e58a6
|
Scott Ullrich
|
derived from this software without specific prior written permission.
|
20 |
|
|
|
21 |
ef345a70
|
Scott Ullrich
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
22 |
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
23 |
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
24 |
|
|
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
25 |
|
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
26 |
|
|
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
27 |
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
28 |
|
|
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
29 |
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
30 |
856e58a6
|
Scott Ullrich
|
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
31 |
|
|
|
32 |
ef345a70
|
Scott Ullrich
|
This code cannot simply be copied and put under the GNU Public License or
|
33 |
856e58a6
|
Scott Ullrich
|
any other GPL-like (LGPL, GPL2) License.
|
34 |
|
|
|
35 |
|
|
This code is made possible thx to samples made by Michael Bretterklieber <michael@bretterklieber.com>
|
36 |
|
|
author of the PHP PECL Radius package
|
37 |
|
|
|
38 |
409d2492
|
Scott Ullrich
|
*/
|
39 |
856e58a6
|
Scott Ullrich
|
|
40 |
|
|
/*
|
41 |
|
|
RADIUS AUTHENTICATION
|
42 |
|
|
---------------------
|
43 |
|
|
*/
|
44 |
|
|
|
45 |
|
|
function RADIUS_AUTHENTICATION($username,$password,$radiusservers,$clientip,$clientmac,$ruleno) {
|
46 |
|
|
|
47 |
ef345a70
|
Scott Ullrich
|
global $config;
|
48 |
856e58a6
|
Scott Ullrich
|
|
49 |
|
|
$retvalue = array();
|
50 |
|
|
$nas_mac = mac_format(get_interface_mac($config['interfaces']['wan']['if']));
|
51 |
|
|
$clientmac = mac_format($clientmac);
|
52 |
|
|
$nas_port = $ruleno - 10000;
|
53 |
|
|
$radiusvendor = $config['captiveportal']['radiusvendor'] ? $config['captiveportal']['radiusvendor'] : null;
|
54 |
|
|
// Do we even need to set it to NULL?
|
55 |
|
|
$retvalue['error'] = $retvalue['reply_message'] = $retvalue['url_redirection'] = $retvalue['session_timeout'] = $retvalue['idle_timeout'] = $retvalue['session_terminate_time'] = null;
|
56 |
|
|
|
57 |
|
|
switch($radiusvendor) {
|
58 |
|
|
|
59 |
|
|
case 'cisco':
|
60 |
|
|
$calledstationid = $clientmac;
|
61 |
|
|
$callingstationid = $clientip;
|
62 |
|
|
break;
|
63 |
|
|
|
64 |
|
|
default:
|
65 |
|
|
$calledstationid = $nas_mac;
|
66 |
|
|
$callingstationid = $clientmac;
|
67 |
|
|
}
|
68 |
|
|
|
69 |
|
|
// Create our instance
|
70 |
|
|
$rauth = new Auth_RADIUS_PAP($username, $password);
|
71 |
|
|
|
72 |
|
|
/*
|
73 |
ef345a70
|
Scott Ullrich
|
Add support for more then one radiusserver.
|
74 |
|
|
At most 10 servers may be specified.
|
75 |
|
|
When multiple servers are given, they are tried in round-robin fashion until a valid response is received
|
76 |
856e58a6
|
Scott Ullrich
|
*/
|
77 |
|
|
|
78 |
|
|
foreach ($radiusservers as $radsrv) {
|
79 |
|
|
|
80 |
|
|
// Add a new server to our instance
|
81 |
|
|
$rauth->addServer($radsrv['ipaddr'], $radsrv['port'], $radsrv['key']);
|
82 |
|
|
|
83 |
|
|
}
|
84 |
|
|
|
85 |
|
|
// Construct data package
|
86 |
|
|
$rauth->username = $username;
|
87 |
|
|
$rauth->password = $password;
|
88 |
|
|
|
89 |
|
|
if (PEAR::isError($rauth->start())) {
|
90 |
|
|
$retvalue['auth_val'] = 1;
|
91 |
ef345a70
|
Scott Ullrich
|
$retvalue['error'] = $rauth->getError();
|
92 |
5918fbaf
|
Scott Ullrich
|
|
93 |
856e58a6
|
Scott Ullrich
|
// If we encounter an error immediately stop this function and go back
|
94 |
|
|
$rauth->close();
|
95 |
|
|
return $retvalue;
|
96 |
|
|
}
|
97 |
|
|
|
98 |
|
|
// Default attributes
|
99 |
|
|
$rauth->putAttribute(RADIUS_SERVICE_TYPE, RADIUS_LOGIN);
|
100 |
|
|
$rauth->putAttribute(RADIUS_NAS_PORT_TYPE, RADIUS_ETHERNET);
|
101 |
|
|
$rauth->putAttribute(RADIUS_NAS_PORT, $nas_port);
|
102 |
|
|
|
103 |
|
|
// Extra data to identify the client and nas
|
104 |
|
|
$rauth->putAttribute(RADIUS_FRAMED_IP_ADDRESS, $clientip, addr);
|
105 |
|
|
$rauth->putAttribute(RADIUS_CALLED_STATION_ID, $calledstationid);
|
106 |
|
|
$rauth->putAttribute(RADIUS_CALLING_STATION_ID, $callingstationid);
|
107 |
|
|
|
108 |
|
|
// Send request
|
109 |
|
|
$result = $rauth->send();
|
110 |
|
|
|
111 |
|
|
// Evaluation of the response
|
112 |
|
|
// 1 -> Access-Request => We will use this value as an error indicator since we can't get a 1 back from the radius
|
113 |
|
|
// 2 -> Access-Accept
|
114 |
|
|
// 3 -> Access-Reject
|
115 |
|
|
// See RFC2865 for this.
|
116 |
|
|
if (PEAR::isError($result)) {
|
117 |
|
|
$retvalue['auth_val'] = 1;
|
118 |
|
|
$retvalue['error'] = $result->getMessage();
|
119 |
637345f3
|
Scott Ullrich
|
|
120 |
856e58a6
|
Scott Ullrich
|
} else if ($result === true) {
|
121 |
|
|
$retvalue['auth_val'] = 2;
|
122 |
637345f3
|
Scott Ullrich
|
|
123 |
856e58a6
|
Scott Ullrich
|
} else {
|
124 |
|
|
$retvalue['auth_val'] = 3;
|
125 |
637345f3
|
Scott Ullrich
|
|
126 |
856e58a6
|
Scott Ullrich
|
}
|
127 |
|
|
|
128 |
|
|
// Get attributes, even if auth failed.
|
129 |
|
|
// We will push the results in the retvalue array
|
130 |
|
|
if (!$rauth->getAttributes()) {
|
131 |
|
|
$retvalue['error'] = $rauth->getError();
|
132 |
637345f3
|
Scott Ullrich
|
|
133 |
856e58a6
|
Scott Ullrich
|
} else {
|
134 |
|
|
$retvalue = array_merge($retvalue,$rauth->listAttributes());
|
135 |
637345f3
|
Scott Ullrich
|
|
136 |
856e58a6
|
Scott Ullrich
|
// We convert the session_terminate_time to unixtimestamp if its set before returning the whole array to our caller
|
137 |
|
|
if (!empty($retvalue['session_terminate_time'])) {
|
138 |
|
|
$stt = &$retvalue['session_terminate_time'];
|
139 |
|
|
$stt = strtotime(preg_replace("/\+(\d+):(\d+)$/", " +\${1}\${2}", preg_replace("/(\d+)T(\d+)/", "\${1} \${2}",$stt)));
|
140 |
|
|
}
|
141 |
|
|
}
|
142 |
|
|
|
143 |
|
|
// close OO RADIUS_AUTHENTICATION
|
144 |
|
|
$rauth->close();
|
145 |
|
|
|
146 |
|
|
return $retvalue;
|
147 |
|
|
|
148 |
5b237745
|
Scott Ullrich
|
}
|
149 |
409d2492
|
Scott Ullrich
|
|
150 |
856e58a6
|
Scott Ullrich
|
?>
|