]> git.mxchange.org Git - friendica.git/blob - include/security.php
05371f71ca55d1a44559480ffc2c350197cc3add
[friendica.git] / include / security.php
1 <?php
2
3 /**
4  * @brief Calculate the hash that is needed for the "Friendica" cookie
5  *
6  * @param array $user Record from "user" table
7  *
8  * @return string Hashed data
9  */
10 function cookie_hash($user) {
11         return(hash("sha256", get_config("system", "site_prvkey").
12                                 $user["uprvkey"].
13                                 $user["password"]));
14 }
15
16 /**
17  * @brief Set the "Friendica" cookie
18  *
19  * @param int $time
20  * @param array $user Record from "user" table
21  */
22 function new_cookie($time, $user = array()) {
23
24         if ($time != 0) {
25                 $time = $time + time();
26         }
27
28         if ($user) {
29                 $value = json_encode(array("uid" => $user["uid"],
30                                         "hash" => cookie_hash($user),
31                                         "ip" => $_SERVER['REMOTE_ADDR']));
32         }
33         else {
34                 $value = "";
35         }
36
37         setcookie("Friendica", $value, $time, "/", "",
38                 (get_config('system', 'ssl_policy') == SSL_POLICY_FULL), true);
39
40 }
41
42 function authenticate_success($user_record, $login_initial = false, $interactive = false, $login_refresh = false) {
43
44         $a = get_app();
45
46         $_SESSION['uid'] = $user_record['uid'];
47         $_SESSION['theme'] = $user_record['theme'];
48         $_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme');
49         $_SESSION['authenticated'] = 1;
50         $_SESSION['page_flags'] = $user_record['page-flags'];
51         $_SESSION['my_url'] = App::get_baseurl() . '/profile/' . $user_record['nickname'];
52         $_SESSION['my_address'] = $user_record['nickname'] . '@' . substr(App::get_baseurl(),strpos(App::get_baseurl(),'://')+3);
53         $_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
54
55         $a->user = $user_record;
56
57         if($interactive) {
58                 if ($a->user['login_date'] <= NULL_DATE) {
59                         $_SESSION['return_url'] = 'profile_photo/new';
60                         $a->module = 'profile_photo';
61                         info( t("Welcome ") . $a->user['username'] . EOL);
62                         info( t('Please upload a profile photo.') . EOL);
63                 }
64                 else
65                         info( t("Welcome back ") . $a->user['username'] . EOL);
66         }
67
68         $member_since = strtotime($a->user['register_date']);
69         if(time() < ($member_since + ( 60 * 60 * 24 * 14)))
70                 $_SESSION['new_member'] = true;
71         else
72                 $_SESSION['new_member'] = false;
73         if(strlen($a->user['timezone'])) {
74                 date_default_timezone_set($a->user['timezone']);
75                 $a->timezone = $a->user['timezone'];
76         }
77
78         $master_record = $a->user;
79
80         if((x($_SESSION,'submanage')) && intval($_SESSION['submanage'])) {
81                 $r = q("select * from user where uid = %d limit 1",
82                         intval($_SESSION['submanage'])
83                 );
84                 if (dbm::is_result($r))
85                         $master_record = $r[0];
86         }
87
88         $r = q("SELECT `uid`,`username`,`nickname` FROM `user` WHERE `password` = '%s' AND `email` = '%s' AND `account_removed` = 0 ",
89                 dbesc($master_record['password']),
90                 dbesc($master_record['email'])
91         );
92         if (dbm::is_result($r))
93                 $a->identities = $r;
94         else
95                 $a->identities = array();
96
97         $r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname`
98                 from manage INNER JOIN user on manage.mid = user.uid where `user`.`account_removed` = 0
99                 and `manage`.`uid` = %d",
100                 intval($master_record['uid'])
101         );
102         if (dbm::is_result($r))
103                 $a->identities = array_merge($a->identities,$r);
104
105         if($login_initial)
106                 logger('auth_identities: ' . print_r($a->identities,true), LOGGER_DEBUG);
107         if($login_refresh)
108                 logger('auth_identities refresh: ' . print_r($a->identities,true), LOGGER_DEBUG);
109
110         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
111                 intval($_SESSION['uid']));
112         if (dbm::is_result($r)) {
113                 $a->contact = $r[0];
114                 $a->cid = $r[0]['id'];
115                 $_SESSION['cid'] = $a->cid;
116         }
117
118         header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"');
119
120         if($login_initial || $login_refresh) {
121
122                 q("UPDATE `user` SET `login_date` = '%s' WHERE `uid` = %d",
123                         dbesc(datetime_convert()),
124                         intval($_SESSION['uid'])
125                 );
126
127                 // Set the login date for all identities of the user
128                 q("UPDATE `user` SET `login_date` = '%s' WHERE `password` = '%s' AND `email` = '%s' AND `account_removed` = 0",
129                         dbesc(datetime_convert()),
130                         dbesc($master_record['password']),
131                         dbesc($master_record['email'])
132                 );
133
134
135         }
136
137         if ($login_initial) {
138                 // If the user specified to remember the authentication, then set a cookie
139                 // that expires after one week (the default is when the browser is closed).
140                 // The cookie will be renewed automatically.
141                 // The week ensures that sessions will expire after some inactivity.
142                 if ($_SESSION['remember']) {
143                         logger('Injecting cookie for remembered user '. $_SESSION['remember_user']['nickname']);
144                         new_cookie(604800, $user_record);
145                         unset($_SESSION['remember']);
146                 }
147         }
148
149
150
151         if ($login_initial) {
152                 call_hooks('logged_in', $a->user);
153
154                 if (($a->module !== 'home') && isset($_SESSION['return_url'])) {
155                         goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
156                 }
157         }
158
159 }
160
161
162
163 function can_write_wall(App $a, $owner) {
164
165         static $verified = 0;
166
167         if ((! (local_user())) && (! (remote_user()))) {
168                 return false;
169         }
170
171         $uid = local_user();
172
173         if (($uid) && ($uid == $owner)) {
174                 return true;
175         }
176
177         if (remote_user()) {
178
179                 // use remembered decision and avoid a DB lookup for each and every display item
180                 // DO NOT use this function if there are going to be multiple owners
181
182                 // We have a contact-id for an authenticated remote user, this block determines if the contact
183                 // belongs to this page owner, and has the necessary permissions to post content
184
185                 if ($verified === 2) {
186                         return true;
187                 } elseif ($verified === 1) {
188                         return false;
189                 } else {
190                         $cid = 0;
191
192                         if (is_array($_SESSION['remote'])) {
193                                 foreach ($_SESSION['remote'] as $visitor) {
194                                         if ($visitor['uid'] == $owner) {
195                                                 $cid = $visitor['cid'];
196                                                 break;
197                                         }
198                                 }
199                         }
200
201                         if (! $cid) {
202                                 return false;
203                         }
204
205                         $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `user`.`uid` = `contact`.`uid`
206                                 WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
207                                 AND `user`.`blockwall` = 0 AND `readonly` = 0  AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1",
208                                 intval($owner),
209                                 intval($cid),
210                                 intval(CONTACT_IS_SHARING),
211                                 intval(CONTACT_IS_FRIEND),
212                                 intval(PAGE_COMMUNITY)
213                         );
214
215                         if (dbm::is_result($r)) {
216                                 $verified = 2;
217                                 return true;
218                         }
219                         else {
220                                 $verified = 1;
221                         }
222                 }
223         }
224
225         return false;
226 }
227
228
229 function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
230
231         $local_user = local_user();
232         $remote_user = remote_user();
233
234         /**
235          * Construct permissions
236          *
237          * default permissions - anonymous user
238          */
239
240         $sql = " AND allow_cid = ''
241                          AND allow_gid = ''
242                          AND deny_cid  = ''
243                          AND deny_gid  = ''
244         ";
245
246         /**
247          * Profile owner - everything is visible
248          */
249
250         if(($local_user) && ($local_user == $owner_id)) {
251                 $sql = '';
252         }
253
254         /**
255          * Authenticated visitor. Unless pre-verified,
256          * check that the contact belongs to this $owner_id
257          * and load the groups the visitor belongs to.
258          * If pre-verified, the caller is expected to have already
259          * done this and passed the groups into this function.
260          */
261
262         elseif($remote_user) {
263
264                 if(! $remote_verified) {
265                         $r = q("SELECT id FROM contact WHERE id = %d AND uid = %d AND blocked = 0 LIMIT 1",
266                                 intval($remote_user),
267                                 intval($owner_id)
268                         );
269                         if (dbm::is_result($r)) {
270                                 $remote_verified = true;
271                                 $groups = init_groups_visitor($remote_user);
272                         }
273                 }
274                 if($remote_verified) {
275
276                         $gs = '<<>>'; // should be impossible to match
277
278                         if(is_array($groups) && count($groups)) {
279                                 foreach($groups as $g)
280                                         $gs .= '|<' . intval($g) . '>';
281                         }
282
283                         /*$sql = sprintf(
284                                 " AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
285                                   AND ( deny_cid  = '' OR  NOT deny_cid REGEXP '<%d>' )
286                                   AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
287                                   AND ( deny_gid  = '' OR NOT deny_gid REGEXP '%s')
288                                 ",
289                                 intval($remote_user),
290                                 intval($remote_user),
291                                 dbesc($gs),
292                                 dbesc($gs)
293                         );*/
294                         $sql = sprintf(
295                                 " AND ( NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
296                                   AND ( allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
297                                   )
298                                 ",
299                                 intval($remote_user),
300                                 dbesc($gs),
301                                 intval($remote_user),
302                                 dbesc($gs)
303                         );
304                 }
305         }
306         return $sql;
307 }
308
309
310 function item_permissions_sql($owner_id,$remote_verified = false,$groups = null) {
311
312         $local_user = local_user();
313         $remote_user = remote_user();
314
315         /**
316          * Construct permissions
317          *
318          * default permissions - anonymous user
319          */
320
321         $sql = " AND `item`.allow_cid = ''
322                          AND `item`.allow_gid = ''
323                          AND `item`.deny_cid  = ''
324                          AND `item`.deny_gid  = ''
325                          AND `item`.private = 0
326         ";
327
328         /**
329          * Profile owner - everything is visible
330          */
331
332         if($local_user && ($local_user == $owner_id)) {
333                 $sql = '';
334         }
335
336         /**
337          * Authenticated visitor. Unless pre-verified,
338          * check that the contact belongs to this $owner_id
339          * and load the groups the visitor belongs to.
340          * If pre-verified, the caller is expected to have already
341          * done this and passed the groups into this function.
342          */
343
344         elseif($remote_user) {
345
346                 if(! $remote_verified) {
347                         $r = q("SELECT id FROM contact WHERE id = %d AND uid = %d AND blocked = 0 LIMIT 1",
348                                 intval($remote_user),
349                                 intval($owner_id)
350                         );
351                         if (dbm::is_result($r)) {
352                                 $remote_verified = true;
353                                 $groups = init_groups_visitor($remote_user);
354                         }
355                 }
356                 if($remote_verified) {
357
358                         $gs = '<<>>'; // should be impossible to match
359
360                         if(is_array($groups) && count($groups)) {
361                                 foreach($groups as $g)
362                                         $gs .= '|<' . intval($g) . '>';
363                         }
364
365                         $sql = sprintf(
366                                 /*" AND ( private = 0 OR ( private in (1,2) AND wall = 1 AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
367                                   AND ( deny_cid  = '' OR  NOT deny_cid REGEXP '<%d>' )
368                                   AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
369                                   AND ( deny_gid  = '' OR NOT deny_gid REGEXP '%s')))
370                                 ",
371                                 intval($remote_user),
372                                 intval($remote_user),
373                                 dbesc($gs),
374                                 dbesc($gs)
375 */
376                                 " AND ( `item`.private = 0 OR ( `item`.private in (1,2) AND `item`.`wall` = 1
377                                   AND ( NOT (`item`.deny_cid REGEXP '<%d>' OR `item`.deny_gid REGEXP '%s')
378                                   AND ( `item`.allow_cid REGEXP '<%d>' OR `item`.allow_gid REGEXP '%s' OR ( `item`.allow_cid = '' AND `item`.allow_gid = '')))))
379                                 ",
380                                 intval($remote_user),
381                                 dbesc($gs),
382                                 intval($remote_user),
383                                 dbesc($gs)
384                         );
385                 }
386         }
387
388         return $sql;
389 }
390
391
392 /*
393  * Functions used to protect against Cross-Site Request Forgery
394  * The security token has to base on at least one value that an attacker can't know - here it's the session ID and the private key.
395  * In this implementation, a security token is reusable (if the user submits a form, goes back and resubmits the form, maybe with small changes;
396  * or if the security token is used for ajax-calls that happen several times), but only valid for a certain amout of time (3hours).
397  * The "typename" seperates the security tokens of different types of forms. This could be relevant in the following case:
398  *    A security token is used to protekt a link from CSRF (e.g. the "delete this profile"-link).
399  *    If the new page contains by any chance external elements, then the used security token is exposed by the referrer.
400  *    Actually, important actions should not be triggered by Links / GET-Requests at all, but somethimes they still are,
401  *    so this mechanism brings in some damage control (the attacker would be able to forge a request to a form of this type, but not to forms of other types).
402  */
403 function get_form_security_token($typename = '') {
404         $a = get_app();
405
406         $timestamp = time();
407         $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename);
408
409         return $timestamp . '.' . $sec_hash;
410 }
411
412 function check_form_security_token($typename = '', $formname = 'form_security_token') {
413         if (!x($_REQUEST, $formname)) return false;
414         $hash = $_REQUEST[$formname];
415
416         $max_livetime = 10800; // 3 hours
417
418         $a = get_app();
419
420         $x = explode('.', $hash);
421         if (time() > (IntVal($x[0]) + $max_livetime)) return false;
422
423         $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
424
425         return ($sec_hash == $x[1]);
426 }
427
428 function check_form_security_std_err_msg() {
429         return t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it.') . EOL;
430 }
431 function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token') {
432         if (!check_form_security_token($typename, $formname)) {
433                 $a = get_app();
434                 logger('check_form_security_token failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
435                 logger('check_form_security_token failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA);
436                 notice( check_form_security_std_err_msg() );
437                 goaway(App::get_baseurl() . $err_redirect );
438         }
439 }
440 function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'form_security_token') {
441         if (!check_form_security_token($typename, $formname)) {
442             $a = get_app();
443                 logger('check_form_security_token failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
444                 logger('check_form_security_token failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA);
445                 header('HTTP/1.1 403 Forbidden');
446                 killme();
447         }
448 }
449
450 // Returns an array of group id's this contact is a member of.
451 // This array will only contain group id's related to the uid of this
452 // DFRN contact. They are *not* neccessarily unique across the entire site.
453
454
455 if(! function_exists('init_groups_visitor')) {
456 function init_groups_visitor($contact_id) {
457         $groups = array();
458         $r = q("SELECT `gid` FROM `group_member`
459                 WHERE `contact-id` = %d ",
460                 intval($contact_id)
461         );
462         if (dbm::is_result($r)) {
463                 foreach($r as $rr)
464                         $groups[] = $rr['gid'];
465         }
466         return $groups;
467 }}
468