4 * @file mod/dfrn_notify.php
5 * @brief The dfrn notify endpoint
6 * @see PDF with dfrn specs: https://github.com/friendica/friendica/blob/master/spec/dfrn2.pdf
8 require_once('include/items.php');
9 require_once('include/dfrn.php');
10 require_once('include/event.php');
12 require_once('library/defuse/php-encryption-1.2.1/Crypto.php');
14 function dfrn_notify_post(App $a) {
15 logger(__function__, LOGGER_TRACE);
16 $dfrn_id = ((x($_POST,'dfrn_id')) ? notags(trim($_POST['dfrn_id'])) : '');
17 $dfrn_version = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version'] : 2.0);
18 $challenge = ((x($_POST,'challenge')) ? notags(trim($_POST['challenge'])) : '');
19 $data = ((x($_POST,'data')) ? $_POST['data'] : '');
20 $key = ((x($_POST,'key')) ? $_POST['key'] : '');
21 $rino_remote = ((x($_POST,'rino')) ? intval($_POST['rino']) : 0);
22 $dissolve = ((x($_POST,'dissolve')) ? intval($_POST['dissolve']) : 0);
23 $perm = ((x($_POST,'perm')) ? notags(trim($_POST['perm'])) : 'r');
24 $ssl_policy = ((x($_POST,'ssl_policy')) ? notags(trim($_POST['ssl_policy'])): 'none');
25 $page = ((x($_POST,'page')) ? intval($_POST['page']) : 0);
27 $forum = (($page == 1) ? 1 : 0);
28 $prv = (($page == 2) ? 1 : 0);
31 if($dfrn_version >= 2.21) {
32 $writable = (($perm === 'rw') ? 1 : 0);
36 if(strpos($dfrn_id,':') == 1) {
37 $direction = intval(substr($dfrn_id,0,1));
38 $dfrn_id = substr($dfrn_id,2);
41 $r = q("SELECT * FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1",
45 if (! dbm::is_result($r)) {
46 logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
50 $r = q("DELETE FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s'",
55 // find the local user who owns this relationship.
60 $sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id));
63 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
66 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
73 // be careful - $importer will contain both the contact information for the contact
74 // sending us the post, and also the user information for the person receiving it.
75 // since they are mixed together, it is easy to get them confused.
77 $r = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
78 `contact`.`pubkey` AS `cpubkey`,
79 `contact`.`prvkey` AS `cprvkey`,
80 `contact`.`thumb` AS `thumb`,
81 `contact`.`url` as `url`,
82 `contact`.`name` as `senderName`,
85 LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
86 WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
87 AND `user`.`nickname` = '%s' AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $sql_extra LIMIT 1",
91 if (! dbm::is_result($r)) {
92 logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id);
97 // $importer in this case contains the contact record for the remote contact joined with the user record of our user.
101 logger("Remote rino version: ".$rino_remote." for ".$importer["url"], LOGGER_DEBUG);
103 if((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) {
104 q("UPDATE `contact` SET `writable` = %d, forum = %d, prv = %d WHERE `id` = %d",
105 intval(($writable == (-1)) ? $importer['writable'] : $writable),
108 intval($importer['id'])
110 if($writable != (-1))
111 $importer['writable'] = $writable;
112 $importer['forum'] = $page;
116 // if contact's ssl policy changed, update our links
118 fix_contact_ssl_policy($importer,$ssl_policy);
120 logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']);
121 logger('dfrn_notify: data: ' . $data, LOGGER_DATA);
126 * Relationship is dissolved permanently
129 require_once('include/Contact.php');
130 contact_remove($importer['id']);
131 logger('relationship dissolved : ' . $importer['name'] . ' dissolved ' . $importer['username']);
137 // If we are setup as a soapbox we aren't accepting input from this person
138 // This behaviour is deactivated since it really doesn't make sense to even disallow comments
139 // The check if someone is a friend or simply a follower is done in a later place so it needn't to be done here
140 //if($importer['page-flags'] == PAGE_SOAPBOX)
143 $rino = get_config('system','rino_encrypt');
144 $rino = intval($rino);
145 // use RINO1 if mcrypt isn't installed and RINO2 was selected
146 if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
148 logger("Local rino version: ". $rino, LOGGER_DEBUG);
152 // if local rino is lower than remote rino, abort: should not happen!
153 // but only for $remote_rino > 1, because old code did't send rino version
154 if ($rino_remote_version > 1 && $rino < $rino_remote) {
155 logger("rino version '$rino_remote' is lower than supported '$rino'");
156 xml_status(0,"rino version '$rino_remote' is lower than supported '$rino'");
159 $rawkey = hex2bin(trim($key));
160 logger('rino: md5 raw key: ' . md5($rawkey));
163 if($dfrn_version >= 2.1) {
164 if((($importer['duplex']) && strlen($importer['cprvkey'])) || (! strlen($importer['cpubkey']))) {
165 openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']);
168 openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']);
172 if((($importer['duplex']) && strlen($importer['cpubkey'])) || (! strlen($importer['cprvkey']))) {
173 openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']);
176 openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']);
180 #logger('rino: received key : ' . $final_key);
182 switch($rino_remote) {
185 // we got a key. old code send only the key, without RINO version.
186 // we assume RINO 1 if key and no RINO version
187 $data = aes_decrypt(hex2bin($data),$final_key);
191 $data = Crypto::decrypt(hex2bin($data),$final_key);
192 } catch (InvalidCiphertext $ex) { // VERY IMPORTANT
194 // 1. The ciphertext was modified by the attacker,
195 // 2. The key is wrong, or
196 // 3. $ciphertext is not a valid ciphertext or was corrupted.
198 logger('The ciphertext has been tampered with!');
199 xml_status(0,'The ciphertext has been tampered with!');
200 } catch (Ex\CryptoTestFailed $ex) {
201 logger('Cannot safely perform dencryption');
202 xml_status(0,'CryptoTestFailed');
203 } catch (Ex\CannotPerformOperation $ex) {
204 logger('Cannot safely perform decryption');
205 xml_status(0,'Cannot safely perform decryption');
209 logger("rino: invalid sent verision '$rino_remote'");
214 logger('rino: decrypted data: ' . $data, LOGGER_DATA);
217 $ret = dfrn::import($data, $importer);
224 function dfrn_notify_content(App $a) {
226 if(x($_GET,'dfrn_id')) {
228 // initial communication from external contact, $direction is their direction.
229 // If this is a duplex communication, ours will be the opposite.
231 $dfrn_id = notags(trim($_GET['dfrn_id']));
232 $dfrn_version = (float) $_GET['dfrn_version'];
233 $rino_remote = ((x($_GET,'rino')) ? intval($_GET['rino']) : 0);
237 logger('dfrn_notify: new notification dfrn_id=' . $dfrn_id);
240 if(strpos($dfrn_id,':') == 1) {
241 $direction = intval(substr($dfrn_id,0,1));
242 $dfrn_id = substr($dfrn_id,2);
245 $hash = random_string();
249 $r = q("DELETE FROM `challenge` WHERE `expire` < " . intval(time()));
251 $r = q("INSERT INTO `challenge` ( `challenge`, `dfrn-id`, `expire` , `type`, `last_update` )
252 VALUES( '%s', '%s', %d, '%s', '%s' ) ",
255 intval(time() + 90 ),
260 logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG);
265 $sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id));
269 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
270 $my_id = '1:' . $dfrn_id;
273 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
274 $my_id = '0:' . $dfrn_id;
281 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`page-flags` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
282 WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `user`.`nickname` = '%s'
283 AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 $sql_extra LIMIT 1",
287 if (! dbm::is_result($r)) {
291 logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG);
295 $id_str = $my_id . '.' . mt_rand(1000,9999);
297 $prv_key = trim($r[0]['prvkey']);
298 $pub_key = trim($r[0]['pubkey']);
299 $dplx = intval($r[0]['duplex']);
301 if((($dplx) && (strlen($prv_key))) || ((strlen($prv_key)) && (!(strlen($pub_key))))) {
302 openssl_private_encrypt($hash,$challenge,$prv_key);
303 openssl_private_encrypt($id_str,$encrypted_id,$prv_key);
305 elseif(strlen($pub_key)) {
306 openssl_public_encrypt($hash,$challenge,$pub_key);
307 openssl_public_encrypt($id_str,$encrypted_id,$pub_key);
312 $challenge = bin2hex($challenge);
313 $encrypted_id = bin2hex($encrypted_id);
316 $rino = get_config('system','rino_encrypt');
317 $rino = intval($rino);
318 // use RINO1 if mcrypt isn't installed and RINO2 was selected
319 if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
321 logger("Local rino version: ". $rino, LOGGER_DEBUG);
323 // if requested rino is lower than enabled local rino, lower local rino version
324 // if requested rino is higher than enabled local rino, reply with local rino
325 if ($rino_remote < $rino) $rino = $rino_remote;
327 if((($r[0]['rel']) && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) {
334 header("Content-type: text/xml");
336 echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n"
337 . '<dfrn_notify>' . "\r\n"
338 . "\t" . '<status>' . $status . '</status>' . "\r\n"
339 . "\t" . '<dfrn_version>' . DFRN_PROTOCOL_VERSION . '</dfrn_version>' . "\r\n"
340 . "\t" . '<rino>' . $rino . '</rino>' . "\r\n"
341 . "\t" . '<perm>' . $perm . '</perm>' . "\r\n"
342 . "\t" . '<dfrn_id>' . $encrypted_id . '</dfrn_id>' . "\r\n"
343 . "\t" . '<challenge>' . $challenge . '</challenge>' . "\r\n"
344 . '</dfrn_notify>' . "\r\n" ;