2010-10-12 11:07:03 +00:00
|
|
|
<?php
|
|
|
|
|
2011-08-10 01:55:46 +00:00
|
|
|
require_once('include/crypto.php');
|
2010-10-12 11:07:03 +00:00
|
|
|
|
2010-10-21 11:53:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
function get_salmon_key($uri,$keyhash) {
|
|
|
|
$ret = array();
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
logger('Fetching salmon key for '.$uri);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2010-10-25 03:39:24 +00:00
|
|
|
$arr = lrdd($uri);
|
2010-10-21 11:53:43 +00:00
|
|
|
|
2010-10-25 03:39:24 +00:00
|
|
|
if(is_array($arr)) {
|
2010-10-21 11:53:43 +00:00
|
|
|
foreach($arr as $a) {
|
|
|
|
if($a['@attributes']['rel'] === 'magic-public-key') {
|
|
|
|
$ret[] = $a['@attributes']['href'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-21 22:32:09 +00:00
|
|
|
else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have found at least one key URL
|
|
|
|
// If it's inline, parse it - otherwise get the key
|
|
|
|
|
2010-10-21 11:53:43 +00:00
|
|
|
if(count($ret)) {
|
|
|
|
for($x = 0; $x < count($ret); $x ++) {
|
|
|
|
if(substr($ret[$x],0,5) === 'data:') {
|
|
|
|
if(strstr($ret[$x],','))
|
|
|
|
$ret[$x] = substr($ret[$x],strpos($ret[$x],',')+1);
|
|
|
|
else
|
|
|
|
$ret[$x] = substr($ret[$x],5);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$ret[$x] = fetch_url($ret[$x]);
|
|
|
|
}
|
|
|
|
}
|
2010-10-21 22:32:09 +00:00
|
|
|
|
2010-10-27 05:09:13 +00:00
|
|
|
|
|
|
|
logger('Key located: ' . print_r($ret,true));
|
2010-10-21 11:53:43 +00:00
|
|
|
|
|
|
|
if(count($ret) == 1) {
|
2010-10-21 22:32:09 +00:00
|
|
|
|
|
|
|
// We only found one one key so we don't care if the hash matches.
|
2015-06-09 06:27:04 +00:00
|
|
|
// If it's the wrong key we'll find out soon enough because
|
|
|
|
// message verification will fail. This also covers some older
|
2010-10-21 22:32:09 +00:00
|
|
|
// software which don't supply a keyhash. As long as they only
|
2015-06-09 06:27:04 +00:00
|
|
|
// have one key we'll be right.
|
2010-10-21 22:32:09 +00:00
|
|
|
|
2010-10-21 11:53:43 +00:00
|
|
|
return $ret[0];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foreach($ret as $a) {
|
|
|
|
$hash = base64url_encode(hash('sha256',$a));
|
|
|
|
if($hash == $keyhash)
|
|
|
|
return $a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
|
|
|
|
|
2010-11-01 03:36:59 +00:00
|
|
|
function slapper($owner,$url,$slap) {
|
2010-10-25 03:39:24 +00:00
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
// does contact have a salmon endpoint?
|
2010-10-25 03:39:24 +00:00
|
|
|
|
2010-11-01 03:36:59 +00:00
|
|
|
if(! strlen($url))
|
2010-10-25 03:39:24 +00:00
|
|
|
return;
|
|
|
|
|
2011-08-25 03:40:08 +00:00
|
|
|
|
|
|
|
if(! $owner['sprvkey']) {
|
2015-06-09 06:27:04 +00:00
|
|
|
logger(sprintf("user '%s' (%d) does not have a salmon private key. Send failed.",
|
2011-08-25 03:40:08 +00:00
|
|
|
$owner['username'],$owner['uid']));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-23 22:49:14 +00:00
|
|
|
logger('slapper called for '.$url.'. Data: ' . $slap);
|
|
|
|
|
2010-10-25 03:39:24 +00:00
|
|
|
// create a magic envelope
|
|
|
|
|
|
|
|
$data = base64url_encode($slap);
|
|
|
|
$data_type = 'application/atom+xml';
|
|
|
|
$encoding = 'base64url';
|
|
|
|
$algorithm = 'RSA-SHA256';
|
2011-08-05 05:37:45 +00:00
|
|
|
$keyhash = base64url_encode(hash('sha256',salmon_key($owner['spubkey'])),true);
|
2010-10-25 03:39:24 +00:00
|
|
|
|
2010-10-26 22:56:19 +00:00
|
|
|
// precomputed base64url encoding of data_type, encoding, algorithm concatenated with periods
|
|
|
|
|
|
|
|
$precomputed = '.YXBwbGljYXRpb24vYXRvbSt4bWw=.YmFzZTY0dXJs.UlNBLVNIQTI1Ng==';
|
|
|
|
|
2011-08-25 23:37:27 +00:00
|
|
|
$signature = base64url_encode(rsa_sign(str_replace('=','',$data . $precomputed),$owner['sprvkey']));
|
2010-10-26 22:56:19 +00:00
|
|
|
|
2011-08-25 23:37:27 +00:00
|
|
|
$signature2 = base64url_encode(rsa_sign($data . $precomputed,$owner['sprvkey']));
|
2011-08-05 05:37:45 +00:00
|
|
|
|
2011-08-25 23:37:27 +00:00
|
|
|
$signature3 = base64url_encode(rsa_sign($data,$owner['sprvkey']));
|
2010-10-25 03:39:24 +00:00
|
|
|
|
2011-05-11 11:37:13 +00:00
|
|
|
$salmon_tpl = get_markup_template('magicsig.tpl');
|
2011-08-05 05:37:45 +00:00
|
|
|
|
2010-10-25 03:39:24 +00:00
|
|
|
$salmon = replace_macros($salmon_tpl,array(
|
|
|
|
'$data' => $data,
|
|
|
|
'$encoding' => $encoding,
|
|
|
|
'$algorithm' => $algorithm,
|
|
|
|
'$keyhash' => $keyhash,
|
|
|
|
'$signature' => $signature
|
|
|
|
));
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
// slap them
|
2010-11-01 03:36:59 +00:00
|
|
|
post_url($url,$salmon, array(
|
2010-10-26 04:52:30 +00:00
|
|
|
'Content-type: application/magic-envelope+xml',
|
|
|
|
'Content-length: ' . strlen($salmon)
|
|
|
|
));
|
2010-10-25 03:39:24 +00:00
|
|
|
|
2010-10-26 04:52:30 +00:00
|
|
|
$a = get_app();
|
2010-11-22 07:07:25 +00:00
|
|
|
$return_code = $a->get_curl_code();
|
2010-10-26 22:56:19 +00:00
|
|
|
|
|
|
|
// check for success, e.g. 2xx
|
|
|
|
|
2010-11-23 03:58:35 +00:00
|
|
|
if($return_code > 299) {
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
logger('compliant salmon failed. Falling back to status.net hack2');
|
2010-10-26 22:56:19 +00:00
|
|
|
|
|
|
|
// Entirely likely that their salmon implementation is
|
|
|
|
// non-compliant. Let's try once more, this time only signing
|
2011-08-05 05:37:45 +00:00
|
|
|
// the data, without stripping '=' chars
|
2010-10-26 22:56:19 +00:00
|
|
|
|
|
|
|
$salmon = replace_macros($salmon_tpl,array(
|
|
|
|
'$data' => $data,
|
|
|
|
'$encoding' => $encoding,
|
|
|
|
'$algorithm' => $algorithm,
|
|
|
|
'$keyhash' => $keyhash,
|
|
|
|
'$signature' => $signature2
|
|
|
|
));
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
// slap them
|
2010-11-01 03:36:59 +00:00
|
|
|
post_url($url,$salmon, array(
|
2010-10-26 22:56:19 +00:00
|
|
|
'Content-type: application/magic-envelope+xml',
|
|
|
|
'Content-length: ' . strlen($salmon)
|
|
|
|
));
|
2010-11-22 07:07:25 +00:00
|
|
|
$return_code = $a->get_curl_code();
|
2010-10-27 02:01:16 +00:00
|
|
|
|
2011-08-05 05:37:45 +00:00
|
|
|
|
|
|
|
if($return_code > 299) {
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
logger('compliant salmon failed. Falling back to status.net hack3');
|
2011-08-05 05:37:45 +00:00
|
|
|
|
|
|
|
// Entirely likely that their salmon implementation is
|
|
|
|
// non-compliant. Let's try once more, this time only signing
|
2015-06-09 06:27:04 +00:00
|
|
|
// the data, without the precomputed blob
|
2011-08-05 05:37:45 +00:00
|
|
|
|
|
|
|
$salmon = replace_macros($salmon_tpl,array(
|
|
|
|
'$data' => $data,
|
|
|
|
'$encoding' => $encoding,
|
|
|
|
'$algorithm' => $algorithm,
|
|
|
|
'$keyhash' => $keyhash,
|
|
|
|
'$signature' => $signature3
|
|
|
|
));
|
|
|
|
|
2015-06-09 06:27:04 +00:00
|
|
|
// slap them
|
2011-08-05 05:37:45 +00:00
|
|
|
post_url($url,$salmon, array(
|
|
|
|
'Content-type: application/magic-envelope+xml',
|
|
|
|
'Content-length: ' . strlen($salmon)
|
|
|
|
));
|
|
|
|
$return_code = $a->get_curl_code();
|
|
|
|
}
|
2010-10-26 22:56:19 +00:00
|
|
|
}
|
2015-06-09 06:27:04 +00:00
|
|
|
logger('slapper for '.$url.' returned ' . $return_code);
|
2010-11-22 07:00:01 +00:00
|
|
|
if(! $return_code)
|
|
|
|
return(-1);
|
2011-09-28 02:27:47 +00:00
|
|
|
if(($return_code == 503) && (stristr($a->get_curl_headers(),'retry-after')))
|
|
|
|
return(-1);
|
|
|
|
|
2010-11-22 07:07:25 +00:00
|
|
|
return ((($return_code >= 200) && ($return_code < 300)) ? 0 : 1);
|
2010-10-26 22:56:19 +00:00
|
|
|
}
|
|
|
|
|