mirror of
https://github.com/Yubico/yubikey-val.git
synced 2025-01-20 10:52:15 +01:00
120 lines
2.8 KiB
PHP
120 lines
2.8 KiB
PHP
<?php require_once '../yubiphpbase/appinclude.php';
|
|
require_once '../yubiphpbase/yubi_lib.php';
|
|
require_once 'common.php';
|
|
|
|
header("content-type: text/plain");
|
|
|
|
$tokenId = $secret = '';
|
|
|
|
$nonce = getHttpVal('nonce', '');
|
|
if ($nonce == '') {
|
|
reply(S_MISSING_PARAMETER, '', $client, '', 'nonce');
|
|
exit;
|
|
}
|
|
|
|
$client = getHttpVal('id', 0);
|
|
if ($client <= 0) {
|
|
reply(S_MISSING_PARAMETER, '', $client, $nonce, '', 'id');
|
|
exit;
|
|
}
|
|
$ci = getClientInfo($client);
|
|
|
|
$h = getHttpVal('h', '');
|
|
if ($h == '') {
|
|
reply(S_MISSING_PARAMETER, '', $client, $nonce, '', 'h');
|
|
exit;
|
|
}
|
|
|
|
$op = getHttpVal('operation', '');
|
|
|
|
if ($op == '') {
|
|
reply(S_MISSING_PARAMETER, '', $client, $nonce, '', 'operation');
|
|
exit;
|
|
} else if ($op != 'add_key') {
|
|
reply(S_OPERATION_NOT_ALLOWED, $ci['secret'], $client, $nonce, '', $op);
|
|
exit;
|
|
}
|
|
|
|
if (! isset($ci['id'])) {
|
|
debug('Client '.$client.' not found!');
|
|
$client = 1;
|
|
if (($ci = getClientInfo($client)) == null) {
|
|
debug('Root client not found, service not installed properly!');
|
|
reply(S_BACKEND_ERROR, '', $client, $nonce, '', 'root client missing');
|
|
exit;
|
|
}
|
|
reply(S_BAD_CLIENT, $ci['secret'], $client, $nonce);
|
|
exit;
|
|
}
|
|
|
|
if ($ci['perm_id'] != 1 && $ci['perm_id'] != 2) {
|
|
reply(S_OPERATION_NOT_ALLOWED, $ci['secret'], $client, $nonce, '', $ci['perm_id']);
|
|
exit;
|
|
}
|
|
|
|
//// Verify request signature
|
|
//
|
|
$reqArr = array();
|
|
$reqArr['id'] = $client;
|
|
$reqArr['nonce'] = $nonce;
|
|
$reqArr['operation'] = 'add_key';
|
|
$reqHash = sign($reqArr, $ci['secret']);
|
|
if ($reqHash != $h) {
|
|
reply(S_BAD_SIGNATURE, $ci['secret'], $client, $nonce);
|
|
if ($trace) {
|
|
echo 'Secret: '.$ci['secret']."\n";
|
|
echo 'Sign: '; print_r($reqArr);
|
|
echo 'Correct h: '.$reqHash;
|
|
}
|
|
exit;
|
|
}
|
|
|
|
$tokenId = base64_encode(genRandRaw(6));
|
|
$secret = base64_encode(genRandRaw(16));
|
|
|
|
$a = addNewKey($tokenId, 1, $secret, '', $client);
|
|
$keyid = $a['keyid'];
|
|
$sn = $a['sn'];
|
|
|
|
if ($keyid > 0) {
|
|
debug('Key '.$keyid.' added');
|
|
reply(S_OK, $ci['secret'], $client, $nonce, $sn);
|
|
} else {
|
|
reply(S_BACKEND_ERROR, $ci['secret'], $client, $nonce);
|
|
exit;
|
|
}
|
|
|
|
function reply($status, $apiKey, $client_id, $nonce, $sn='', $info='') {
|
|
global $tokenId, $secret;
|
|
|
|
if ($status == null) {
|
|
$status = S_BACKEND_ERROR;
|
|
}
|
|
|
|
$a = array();
|
|
|
|
echo 'nonce='.($a['nonce'] = $nonce).PHP_EOL;
|
|
echo 'status='.($a['status'] = $status).PHP_EOL;
|
|
|
|
if ($info != '') {
|
|
echo 'info='.($a['info'] = $info).PHP_EOL;
|
|
}
|
|
|
|
if ($sn != '') {
|
|
echo 'sn='.$sn.PHP_EOL;
|
|
}
|
|
|
|
if ($tokenId != '') {
|
|
echo 'token_id='.($a['token_id'] = $tokenId).PHP_EOL;
|
|
echo 'user_id='.($a['user_id'] = $tokenId).PHP_EOL;//TODO
|
|
}
|
|
|
|
echo 't='.($a['t']=getUTCTimeStamp()).PHP_EOL;
|
|
$h = sign($a, $apiKey);
|
|
echo 'h='.$h.PHP_EOL;
|
|
echo PHP_EOL;
|
|
|
|
} // End reply
|
|
|
|
?>
|