]> git.mxchange.org Git - friendica.git/blob - include/security.php
Merge pull request #494 from fermionic/diaspora-contact-lookup-fails
[friendica.git] / include / security.php
1 <?php
2
3 function authenticate_success($user_record, $login_initial = false, $interactive = false) {
4
5         $a = get_app();
6
7         $_SESSION['uid'] = $user_record['uid'];
8         $_SESSION['theme'] = $user_record['theme'];
9         $_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme');
10         $_SESSION['authenticated'] = 1;
11         $_SESSION['page_flags'] = $user_record['page-flags'];
12         $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $user_record['nickname'];
13         $_SESSION['my_address'] = $user_record['nickname'] . '@' . substr($a->get_baseurl(),strpos($a->get_baseurl(),'://')+3);
14         $_SESSION['addr'] = $_SERVER['REMOTE_ADDR'];
15
16         $a->user = $user_record;
17
18         if($interactive) {
19                 if($a->user['login_date'] === '0000-00-00 00:00:00') {
20                         $_SESSION['return_url'] = 'profile_photo/new';
21                         $a->module = 'profile_photo';
22                         info( t("Welcome ") . $a->user['username'] . EOL);
23                         info( t('Please upload a profile photo.') . EOL);
24                 }
25                 else
26                         info( t("Welcome back ") . $a->user['username'] . EOL);
27         }
28
29         $member_since = strtotime($a->user['register_date']);
30         if(time() < ($member_since + ( 60 * 60 * 24 * 14)))
31                 $_SESSION['new_member'] = true;
32         else
33                 $_SESSION['new_member'] = false;
34         if(strlen($a->user['timezone'])) {
35                 date_default_timezone_set($a->user['timezone']);
36                 $a->timezone = $a->user['timezone'];
37         }
38
39         $master_record = $a->user;      
40
41         if((x($_SESSION,'submanage')) && intval($_SESSION['submanage'])) {
42                 $r = q("select * from user where uid = %d limit 1",
43                         intval($_SESSION['submanage'])
44                 );
45                 if(count($r))
46                         $master_record = $r[0];
47         }
48
49         $r = q("SELECT `uid`,`username`,`nickname` FROM `user` WHERE `password` = '%s' AND `email` = '%s'",
50                 dbesc($master_record['password']),
51                 dbesc($master_record['email'])
52         );
53         if($r && count($r))
54                 $a->identities = $r;
55         else
56                 $a->identities = array();
57
58         $r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname` 
59                 from manage left join user on manage.mid = user.uid 
60                 where `manage`.`uid` = %d",
61                 intval($master_record['uid'])
62         );
63         if($r && count($r))
64                 $a->identities = array_merge($a->identities,$r);
65
66         if($login_initial)
67                 logger('auth_identities: ' . print_r($a->identities,true), LOGGER_DEBUG);
68
69         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
70                 intval($_SESSION['uid']));
71         if(count($r)) {
72                 $a->contact = $r[0];
73                 $a->cid = $r[0]['id'];
74                 $_SESSION['cid'] = $a->cid;
75         }
76
77         header('X-Account-Management-Status: active; name="' . $a->user['username'] . '"; id="' . $a->user['nickname'] .'"');
78
79         if($login_initial) {
80                 $l = get_browser_language();
81
82                 q("UPDATE `user` SET `login_date` = '%s', `language` = '%s' WHERE `uid` = %d LIMIT 1",
83                         dbesc(datetime_convert()),
84                         dbesc($l),
85                         intval($_SESSION['uid'])
86                 );
87
88                 call_hooks('logged_in', $a->user);
89
90                 if(($a->module !== 'home') && isset($_SESSION['return_url']))
91                         goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
92         }
93
94 }
95
96
97
98 function can_write_wall(&$a,$owner) {
99
100         static $verified = 0;
101
102         if((! (local_user())) && (! (remote_user())))
103                 return false;
104
105         $uid = local_user();
106
107         if(($uid) && ($uid == $owner)) {
108                 return true;
109         }
110
111         if(remote_user()) {
112
113                 // use remembered decision and avoid a DB lookup for each and every display item
114                 // DO NOT use this function if there are going to be multiple owners
115
116                 // We have a contact-id for an authenticated remote user, this block determines if the contact
117                 // belongs to this page owner, and has the necessary permissions to post content
118
119                 if($verified === 2)
120                         return true;
121                 elseif($verified === 1)
122                         return false;
123                 else {
124                         $cid = 0;
125
126                         if(is_array($_SESSION['remote'])) {
127                                 foreach($_SESSION['remote'] as $visitor) {
128                                         if($visitor['uid'] == $owner) {
129                                                 $cid = $visitor['cid'];
130                                                 break;
131                                         }
132                                 }
133                         }
134
135                         if(! $cid)
136                                 return false;
137
138
139                         $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `user`.`uid` = `contact`.`uid` 
140                                 WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
141                                 AND `user`.`blockwall` = 0 AND `readonly` = 0  AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1",
142                                 intval($owner),
143                                 intval($cid),
144                                 intval(CONTACT_IS_SHARING),
145                                 intval(CONTACT_IS_FRIEND),
146                                 intval(PAGE_COMMUNITY)
147                         );
148
149                         if(count($r)) {
150                                 $verified = 2;
151                                 return true;
152                         }
153                         else {
154                                 $verified = 1;
155                         }
156                 }
157         }
158
159         return false;
160 }
161
162
163 function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
164
165         $local_user = local_user();
166         $remote_user = remote_user();
167
168         /**
169          * Construct permissions
170          *
171          * default permissions - anonymous user
172          */
173
174         $sql = " AND allow_cid = '' 
175                          AND allow_gid = '' 
176                          AND deny_cid  = '' 
177                          AND deny_gid  = '' 
178         ";
179
180         /**
181          * Profile owner - everything is visible
182          */
183
184         if(($local_user) && ($local_user == $owner_id)) {
185                 $sql = ''; 
186         }
187
188         /**
189          * Authenticated visitor. Unless pre-verified, 
190          * check that the contact belongs to this $owner_id
191          * and load the groups the visitor belongs to.
192          * If pre-verified, the caller is expected to have already
193          * done this and passed the groups into this function.
194          */
195
196         elseif($remote_user) {
197
198                 if(! $remote_verified) {
199                         $r = q("SELECT id FROM contact WHERE id = %d AND uid = %d AND blocked = 0 LIMIT 1",
200                                 intval($remote_user),
201                                 intval($owner_id)
202                         );
203                         if(count($r)) {
204                                 $remote_verified = true;
205                                 $groups = init_groups_visitor($remote_user);
206                         }
207                 }
208                 if($remote_verified) {
209                 
210                         $gs = '<<>>'; // should be impossible to match
211
212                         if(is_array($groups) && count($groups)) {
213                                 foreach($groups as $g)
214                                         $gs .= '|<' . intval($g) . '>';
215                         } 
216
217                         /*$sql = sprintf(
218                                 " AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' ) 
219                                   AND ( deny_cid  = '' OR  NOT deny_cid REGEXP '<%d>' ) 
220                                   AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
221                                   AND ( deny_gid  = '' OR NOT deny_gid REGEXP '%s')
222                                 ",
223                                 intval($remote_user),
224                                 intval($remote_user),
225                                 dbesc($gs),
226                                 dbesc($gs)
227                         );*/
228                         $sql = sprintf(
229                                 " AND ( NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
230                                   AND ( allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
231                                   )
232                                 ",
233                                 intval($remote_user),
234                                 dbesc($gs),
235                                 intval($remote_user),
236                                 dbesc($gs)
237                         );
238                 }
239         }
240         return $sql;
241 }
242
243
244 function item_permissions_sql($owner_id,$remote_verified = false,$groups = null) {
245
246         $local_user = local_user();
247         $remote_user = remote_user();
248
249         /**
250          * Construct permissions
251          *
252          * default permissions - anonymous user
253          */
254
255         $sql = " AND allow_cid = '' 
256                          AND allow_gid = '' 
257                          AND deny_cid  = '' 
258                          AND deny_gid  = '' 
259                          AND private = 0
260         ";
261
262         /**
263          * Profile owner - everything is visible
264          */
265
266         if(($local_user) && ($local_user == $owner_id)) {
267                 $sql = ''; 
268         }
269
270         /**
271          * Authenticated visitor. Unless pre-verified, 
272          * check that the contact belongs to this $owner_id
273          * and load the groups the visitor belongs to.
274          * If pre-verified, the caller is expected to have already
275          * done this and passed the groups into this function.
276          */
277
278         elseif($remote_user) {
279
280                 if(! $remote_verified) {
281                         $r = q("SELECT id FROM contact WHERE id = %d AND uid = %d AND blocked = 0 LIMIT 1",
282                                 intval($remote_user),
283                                 intval($owner_id)
284                         );
285                         if(count($r)) {
286                                 $remote_verified = true;
287                                 $groups = init_groups_visitor($remote_user);
288                         }
289                 }
290                 if($remote_verified) {
291                 
292                         $gs = '<<>>'; // should be impossible to match
293
294                         if(is_array($groups) && count($groups)) {
295                                 foreach($groups as $g)
296                                         $gs .= '|<' . intval($g) . '>';
297                         } 
298
299                         $sql = sprintf(
300                                 " AND ( private = 0 OR ( private = 1 AND wall = 1 AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' ) 
301                                   AND ( deny_cid  = '' OR  NOT deny_cid REGEXP '<%d>' ) 
302                                   AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
303                                   AND ( deny_gid  = '' OR NOT deny_gid REGEXP '%s'))) 
304                                 ",
305                                 intval($remote_user),
306                                 intval($remote_user),
307                                 dbesc($gs),
308                                 dbesc($gs)
309                         );
310                 }
311         }
312
313         return $sql;
314 }
315
316
317 /*
318  * Functions used to protect against Cross-Site Request Forgery
319  * 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.
320  * In this implementation, a security token is reusable (if the user submits a form, goes back and resubmits the form, maybe with small changes;
321  * or if the security token is used for ajax-calls that happen several times), but only valid for a certain amout of time (3hours).
322  * The "typename" seperates the security tokens of different types of forms. This could be relevant in the following case:
323  *    A security token is used to protekt a link from CSRF (e.g. the "delete this profile"-link).
324  *    If the new page contains by any chance external elements, then the used security token is exposed by the referrer.
325  *    Actually, important actions should not be triggered by Links / GET-Requests at all, but somethimes they still are,
326  *    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).
327  */ 
328 function get_form_security_token($typename = '') {
329         $a = get_app();
330         
331         $timestamp = time();
332         $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $timestamp . $typename);
333         
334         return $timestamp . '.' . $sec_hash;
335 }
336
337 function check_form_security_token($typename = '', $formname = 'form_security_token') {
338         if (!x($_REQUEST, $formname)) return false;
339         $hash = $_REQUEST[$formname];
340         
341         $max_livetime = 10800; // 3 hours
342         
343         $a = get_app();
344         
345         $x = explode('.', $hash);
346         if (time() > (IntVal($x[0]) + $max_livetime)) return false;
347         
348         $sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
349         
350         return ($sec_hash == $x[1]);
351 }
352
353 function check_form_security_std_err_msg() {
354         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;
355 }
356 function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token') {
357         if (!check_form_security_token($typename, $formname)) {
358                 $a = get_app();
359                 logger('check_form_security_token failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
360                 logger('check_form_security_token failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA);
361                 notice( check_form_security_std_err_msg() );
362                 goaway($a->get_baseurl() . $err_redirect );
363         }
364 }
365 function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'form_security_token') {
366         if (!check_form_security_token($typename, $formname)) {
367             $a = get_app();
368                 logger('check_form_security_token failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
369                 logger('check_form_security_token failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA);
370                 header('HTTP/1.1 403 Forbidden');
371                 killme();
372         }
373 }