OSDN Git Service

Oh. that seems a spammer's mistake!
[pukiwiki/pukiwiki_sandbox.git] / spam / spam.php
1 <?php
2 // $Id: spam.php,v 1.108 2007/01/11 16:21:25 henoheno Exp $
3 // Copyright (C) 2006-2007 PukiWiki Developers Team
4 // License: GPL v2 or (at your option) any later version
5 // Functions for Concept-work of spam-uri metrics
6 // (PHP 4 >= 4.3.0): preg_match_all(PREG_OFFSET_CAPTURE): $method['uri_XXX'] related feature
7
8 if (! defined('SPAM_INI_FILE')) define('SPAM_INI_FILE', 'spam.ini.php');
9
10 // ---------------------
11 // Compat etc
12
13 // (PHP 4 >= 4.2.0): var_export(): mail-reporting and dump related
14 if (! function_exists('var_export')) {
15         function var_export() {
16                 return 'var_export() is not found on this server' . "\n";
17         }
18 }
19
20 // (PHP 4 >= 4.2.0): preg_grep() enables invert option
21 function preg_grep_invert($pattern = '//', $input = array())
22 {
23         static $invert;
24         if (! isset($invert)) $invert = defined('PREG_GREP_INVERT');
25
26         if ($invert) {
27                 return preg_grep($pattern, $input, PREG_GREP_INVERT);
28         } else {
29                 $result = preg_grep($pattern, $input);
30                 if ($result) {
31                         return array_diff($input, preg_grep($pattern, $input));
32                 } else {
33                         return $input;
34                 }
35         }
36 }
37
38 // ---------------------
39 // URI pickup
40
41 // Return an array of URIs in the $string
42 // [OK] http://nasty.example.org#nasty_string
43 // [OK] http://nasty.example.org:80/foo/xxx#nasty_string/bar
44 // [OK] ftp://nasty.example.org:80/dfsdfs
45 // [OK] ftp://cnn.example.com&story=breaking_news@10.0.0.1/top_story.htm (from RFC3986)
46 function uri_pickup($string = '', $normalize = TRUE,
47         $preserve_rawuri = FALSE, $preserve_chunk = TRUE)
48 {
49         // Not available for: IDN(ignored)
50         $array = array();
51         preg_match_all(
52                 // scheme://userinfo@host:port/path/or/pathinfo/maybefile.and?query=string#fragment
53                 // Refer RFC3986 (Regex below is not strict)
54                 '#(\b[a-z][a-z0-9.+-]{1,8})://' .       // 1: Scheme
55                 '(?:' .
56                         '([^\s<>"\'\[\]/\#?@]*)' .              // 2: Userinfo (Username)
57                 '@)?' .
58                 '(' .
59                         // 3: Host
60                         '\[[0-9a-f:.]+\]' . '|' .                               // IPv6([colon-hex and dot]): RFC2732
61                         '(?:[0-9]{1-3}\.){3}[0-9]{1-3}' . '|' . // IPv4(dot-decimal): 001.22.3.44
62                         '[a-z0-9.-]+' .                                                 // hostname(FQDN) : foo.example.org
63                 ')' .
64                 '(?::([0-9]*))?' .                                      // 4: Port
65                 '((?:/+[^\s<>"\'\[\]/\#]+)*/+)?' .      // 5: Directory path or path-info
66                 '([^\s<>"\'\[\]\#?]+)?' .                       // 6: File?
67                 '(?:\?([^\s<>"\'\[\]\#]+))?' .          // 7: Query string
68                 '(?:\#([a-z0-9._~%!$&\'()*+,;=:@-]*))?' .       // 8: Fragment
69                 '#i',
70                  $string, $array, PREG_SET_ORDER | PREG_OFFSET_CAPTURE
71         );
72
73         // Shrink $array
74         static $parts = array(
75                 1 => 'scheme', 2 => 'userinfo', 3 => 'host', 4 => 'port',
76                 5 => 'path', 6 => 'file', 7 => 'query', 8 => 'fragment'
77         );
78         $default = array('');
79         foreach(array_keys($array) as $uri) {
80                 $_uri = & $array[$uri];
81                 array_rename_keys($_uri, $parts, TRUE, $default);
82
83                 $offset = $_uri['scheme'][1]; // Scheme's offset
84                 foreach(array_keys($_uri) as $part) {
85                         // Remove offsets for each part
86                         $_uri[$part] = & $_uri[$part][0];
87                 }
88
89                 if ($normalize) {
90                         $_uri['scheme'] = scheme_normalize($_uri['scheme']);
91                         if ($_uri['scheme'] === '') {
92                                 unset($array[$uri]);
93                                 continue;
94                         }
95                         $_uri['host']  = strtolower($_uri['host']);
96                         $_uri['port']  = port_normalize($_uri['port'], $_uri['scheme'], FALSE);
97                         $_uri['path']  = path_normalize($_uri['path']);
98                         if ($preserve_rawuri) $_uri['rawuri'] = & $_uri[0];
99
100                         // DEBUG
101                         //$_uri['uri'] = uri_array_implode($_uri);
102                 } else {
103                         $_uri['uri'] = & $_uri[0]; // Raw
104                 }
105                 unset($_uri[0]); // Matched string itself
106                 if (! $preserve_chunk) {
107                         unset(
108                                 $_uri['scheme'],
109                                 $_uri['userinfo'],
110                                 $_uri['host'],
111                                 $_uri['port'],
112                                 $_uri['path'],
113                                 $_uri['file'],
114                                 $_uri['query'],
115                                 $_uri['fragment']
116                         );
117                 }
118
119                 // Area offset for area_measure()
120                 $_uri['area']['offset'] = $offset;
121         }
122
123         return $array;
124 }
125
126 // Destructive normalize of URI array
127 // NOTE: Give me the uri_pickup() result with chunks
128 function uri_array_normalize(& $pickups, $preserve = TRUE)
129 {
130         if (! is_array($pickups)) return $pickups;
131
132         foreach (array_keys($pickups) as $key) {
133                 $_key = & $pickups[$key];
134                 $_key['path']     = isset($_key['path']) ? strtolower($_key['path']) : '';
135                 $_key['file']     = isset($_key['file']) ? file_normalize($_key['file']) : '';
136                 $_key['query']    = isset($_key['query']) ? query_normalize(strtolower($_key['query']), TRUE) : '';
137                 $_key['fragment'] = (isset($_key['fragment']) && $preserve) ?
138                         strtolower($_key['fragment']) : ''; // Just ignore
139         }
140
141         return $pickups;
142 }
143
144 // An URI array => An URI (See uri_pickup())
145 function uri_array_implode($uri = array())
146 {
147         if (empty($uri) || ! is_array($uri)) return NULL;
148
149         $tmp = array();
150         if (isset($uri['scheme']) && $uri['scheme'] !== '') {
151                 $tmp[] = & $uri['scheme'];
152                 $tmp[] = '://';
153         }
154         if (isset($uri['userinfo']) && $uri['userinfo'] !== '') {
155                 $tmp[] = & $uri['userinfo'];
156                 $tmp[] = '@';
157         }
158         if (isset($uri['host']) && $uri['host'] !== '') {
159                 $tmp[] = & $uri['host'];
160         }
161         if (isset($uri['port']) && $uri['port'] !== '') {
162                 $tmp[] = ':';
163                 $tmp[] = & $uri['port'];
164         }
165         if (isset($uri['path']) && $uri['path'] !== '') {
166                 $tmp[] = & $uri['path'];
167         }
168         if (isset($uri['file']) && $uri['file'] !== '') {
169                 $tmp[] = & $uri['file'];
170         }
171         if (isset($uri['query']) && $uri['query'] !== '') {
172                 $tmp[] = '?';
173                 $tmp[] = & $uri['query'];
174         }
175         if (isset($uri['fragment']) && $uri['fragment'] !== '') {
176                 $tmp[] = '#';
177                 $tmp[] = & $uri['fragment'];
178         }
179
180         return implode('', $tmp);
181 }
182
183 // $array['something'] => $array['wanted']
184 function array_rename_keys(& $array, $keys = array('from' => 'to'), $force = FALSE, $default = '')
185 {
186         if (! is_array($array) || ! is_array($keys)) return FALSE;
187
188         // Nondestructive test
189         if (! $force)
190                 foreach(array_keys($keys) as $from)
191                         if (! isset($array[$from]))
192                                 return FALSE;
193
194         foreach($keys as $from => $to) {
195                 if ($from === $to) continue;
196                 if (! $force || isset($array[$from])) {
197                         $array[$to] = & $array[$from];
198                         unset($array[$from]);
199                 } else  {
200                         $array[$to] = $default;
201                 }
202         }
203
204         return TRUE;
205 }
206
207 // ---------------------
208 // Area pickup
209
210 // Pickup all of markup areas
211 function area_pickup($string = '', $method = array())
212 {
213         $area = array();
214         if (empty($method)) return $area;
215
216         // Anchor tag pair by preg_match and preg_match_all()
217         // [OK] <a href></a>
218         // [OK] <a href=  >Good site!</a>
219         // [OK] <a href= "#" >test</a>
220         // [OK] <a href="http://nasty.example.com">visit http://nasty.example.com/</a>
221         // [OK] <a href=\'http://nasty.example.com/\' >discount foobar</a> 
222         // [NG] <a href="http://ng.example.com">visit http://ng.example.com _not_ended_
223         $regex = '#<a\b[^>]*\bhref\b[^>]*>.*?</a\b[^>]*(>)#i';
224         if (isset($method['area_anchor'])) {
225                 $areas = array();
226                 $count = isset($method['asap']) ?
227                         preg_match($regex, $string) :
228                         preg_match_all($regex, $string, $areas);
229                 if (! empty($count)) $area['area_anchor'] = $count;
230         }
231         if (isset($method['uri_anchor'])) {
232                 $areas = array();
233                 preg_match_all($regex, $string, $areas, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
234                 foreach(array_keys($areas) as $_area) {
235                         $areas[$_area] =  array(
236                                 $areas[$_area][0][1], // Area start (<a href>)
237                                 $areas[$_area][1][1], // Area end   (</a>)
238                         );
239                 }
240                 if (! empty($areas)) $area['uri_anchor'] = $areas;
241         }
242
243         // phpBB's "BBCode" pair by preg_match and preg_match_all()
244         // [OK] [url][/url]
245         // [OK] [url]http://nasty.example.com/[/url]
246         // [OK] [link]http://nasty.example.com/[/link]
247         // [OK] [url=http://nasty.example.com]visit http://nasty.example.com/[/url]
248         // [OK] [link http://nasty.example.com/]buy something[/link]
249         $regex = '#\[(url|link)\b[^\]]*\].*?\[/\1\b[^\]]*(\])#i';
250         if (isset($method['area_bbcode'])) {
251                 $areas = array();
252                 $count = isset($method['asap']) ?
253                         preg_match($regex, $string) :
254                         preg_match_all($regex, $string, $areas, PREG_SET_ORDER);
255                 if (! empty($count)) $area['area_bbcode'] = $count;
256         }
257         if (isset($method['uri_bbcode'])) {
258                 $areas = array();
259                 preg_match_all($regex, $string, $areas, PREG_SET_ORDER | PREG_OFFSET_CAPTURE);
260                 foreach(array_keys($areas) as $_area) {
261                         $areas[$_area] = array(
262                                 $areas[$_area][0][1], // Area start ([url])
263                                 $areas[$_area][2][1], // Area end   ([/url])
264                         );
265                 }
266                 if (! empty($areas)) $area['uri_bbcode'] = $areas;
267         }
268
269         // Various Wiki syntax
270         // [text_or_uri>text_or_uri]
271         // [text_or_uri:text_or_uri]
272         // [text_or_uri|text_or_uri]
273         // [text_or_uri->text_or_uri]
274         // [text_or_uri text_or_uri] // MediaWiki
275         // MediaWiki: [http://nasty.example.com/ visit http://nasty.example.com/]
276
277         return $area;
278 }
279
280 // If in doubt, it's a little doubtful
281 // if (Area => inside <= Area) $brief += -1
282 function area_measure($areas, & $array, $belief = -1, $a_key = 'area', $o_key = 'offset')
283 {
284         if (! is_array($areas) || ! is_array($array)) return;
285
286         $areas_keys = array_keys($areas);
287         foreach(array_keys($array) as $u_index) {
288                 $offset = isset($array[$u_index][$o_key]) ?
289                         intval($array[$u_index][$o_key]) : 0;
290                 foreach($areas_keys as $a_index) {
291                         if (isset($array[$u_index][$a_key])) {
292                                 $offset_s = intval($areas[$a_index][0]);
293                                 $offset_e = intval($areas[$a_index][1]);
294                                 // [Area => inside <= Area]
295                                 if ($offset_s < $offset && $offset < $offset_e) {
296                                         $array[$u_index][$a_key] += $belief;
297                                 }
298                         }
299                 }
300         }
301 }
302
303 // ---------------------
304 // Spam-uri pickup
305
306 // Domain exposure callback (See spam_uri_pickup_preprocess())
307 // http://victim.example.org/?foo+site:nasty.example.com+bar
308 // => http://nasty.example.com/?refer=victim.example.org
309 // NOTE: 'refer=' is not so good for (at this time).
310 // Consider about using IP address of the victim, try to avoid that.
311 function _preg_replace_callback_domain_exposure($matches = array())
312 {
313         $result = '';
314
315         // Preserve the victim URI as a complicity or ...
316         if (isset($matches[5])) {
317                 $result =
318                         $matches[1] . '://' .   // scheme
319                         $matches[2] . '/' .             // victim.example.org
320                         $matches[3];                    // The rest of all (before victim)
321         }
322
323         // Flipped URI
324         if (isset($matches[4])) {
325                 $result = 
326                         $matches[1] . '://' .   // scheme
327                         $matches[4] .                   // nasty.example.com
328                         '/?refer=' . strtolower($matches[2]) .  // victim.example.org
329                         ' ' . $result;
330         }
331
332         return $result;
333 }
334
335 // Preprocess: rawurldecode() and adding space(s) and something
336 // to detect/count some URIs _if possible_
337 // NOTE: It's maybe danger to var_dump(result). [e.g. 'javascript:']
338 // [OK] http://victim.example.org/go?http%3A%2F%2Fnasty.example.org
339 // [OK] http://victim.example.org/http://nasty.example.org
340 function spam_uri_pickup_preprocess($string = '')
341 {
342         if (! is_string($string)) return '';
343
344         $string = rawurldecode($string);
345
346         // Domain exposure (See _preg_replace_callback_domain_exposure())
347         $string = preg_replace_callback(
348                 array(
349                         // Something Google: http://www.google.com/supported_domains
350                         '#(http)://((?:[a-z0-9.]+\.)?google\.[a-z]{2,3}(?:\.[a-z]{2})?)/' .
351                         '([a-z0-9?=&.%_+-]+)' .                                         // ?query=foo+bar+
352                         '\bsite:([a-z0-9.%_-]+\.[a-z0-9.%_-]+)' .       // site:nasty.example.com
353                         //'()' .        // Preserve or remove?
354                         '#i',
355                 ),
356                 '_preg_replace_callback_domain_exposure',
357                 $string
358         );
359
360         // URI exposure (uriuri => uri uri)
361         $string = preg_replace(
362                 array(
363                         '#(?<! )(?:https?|ftp):/#i',
364                 //      '#[a-z][a-z0-9.+-]{1,8}://#i',
365                 //      '#[a-z][a-z0-9.+-]{1,8}://#i'
366                 ),
367                 ' $0',
368                 $string
369         );
370
371         return $string;
372 }
373
374 // Main function of spam-uri pickup
375 function spam_uri_pickup($string = '', $method = array())
376 {
377         if (! is_array($method) || empty($method)) {
378                 $method = check_uri_spam_method();
379         }
380
381         $string = spam_uri_pickup_preprocess($string);
382
383         $array  = uri_pickup($string);
384
385         // Area elevation of URIs, for '(especially external)link' intension
386         if (! empty($array)) {
387                 $_method = array();
388                 if (isset($method['uri_anchor'])) $_method['uri_anchor'] = & $method['uri_anchor'];
389                 if (isset($method['uri_bbcode'])) $_method['uri_bbcode'] = & $method['uri_bbcode'];
390                 $areas = area_pickup($string, $_method, TRUE);
391                 if (! empty($areas)) {
392                         $area_shadow = array();
393                         foreach (array_keys($array) as $key) {
394                                 $area_shadow[$key] = & $array[$key]['area'];
395                                 foreach (array_keys($_method) as $_key) {
396                                         $area_shadow[$key][$_key] = 0;
397                                 }
398                         }
399                         foreach (array_keys($_method) as $_key) {
400                                 if (isset($areas[$_key])) {
401                                         area_measure($areas[$_key], $area_shadow, 1, $_key);
402                                 }
403                         }
404                 }
405         }
406
407         // Remove 'offset's for area_measure()
408         foreach(array_keys($array) as $key)
409                 unset($array[$key]['area']['offset']);
410
411         return $array;
412 }
413
414
415 // ---------------------
416 // Normalization
417
418 // Scheme normalization: Renaming the schemes
419 // snntp://example.org =>  nntps://example.org
420 // NOTE: Keep the static lists simple. See also port_normalize().
421 function scheme_normalize($scheme = '', $considerd_harmfull = TRUE)
422 {
423         // Abbreviations considerable they don't have link intension
424         static $abbrevs = array(
425                 'ttp'   => 'http',
426                 'ttps'  => 'https',
427         );
428
429         // Alias => normalized
430         static $aliases = array(
431                 'pop'   => 'pop3',
432                 'news'  => 'nntp',
433                 'imap4' => 'imap',
434                 'snntp' => 'nntps',
435                 'snews' => 'nntps',
436                 'spop3' => 'pop3s',
437                 'pops'  => 'pop3s',
438         );
439
440         $scheme = strtolower(trim($scheme));
441         if (isset($abbrevs[$scheme])) {
442                 if ($considerd_harmfull) {
443                         $scheme = $abbrevs[$scheme];
444                 } else {
445                         $scheme = '';
446                 }
447         }
448         if (isset($aliases[$scheme])) $scheme = $aliases[$scheme];
449
450         return $scheme;
451 }
452
453 // Port normalization: Suppress the (redundant) default port
454 // HTTP://example.org:80/ => http://example.org/
455 // HTTP://example.org:8080/ => http://example.org:8080/
456 // HTTPS://example.org:443/ => https://example.org/
457 function port_normalize($port, $scheme, $scheme_normalize = TRUE)
458 {
459         // Schemes that users _maybe_ want to add protocol-handlers
460         // to their web browsers. (and attackers _maybe_ want to use ...)
461         // Reference: http://www.iana.org/assignments/port-numbers
462         static $array = array(
463                 // scheme => default port
464                 'ftp'     =>    21,
465                 'ssh'     =>    22,
466                 'telnet'  =>    23,
467                 'smtp'    =>    25,
468                 'tftp'    =>    69,
469                 'gopher'  =>    70,
470                 'finger'  =>    79,
471                 'http'    =>    80,
472                 'pop3'    =>   110,
473                 'sftp'    =>   115,
474                 'nntp'    =>   119,
475                 'imap'    =>   143,
476                 'irc'     =>   194,
477                 'wais'    =>   210,
478                 'https'   =>   443,
479                 'nntps'   =>   563,
480                 'rsync'   =>   873,
481                 'ftps'    =>   990,
482                 'telnets' =>   992,
483                 'imaps'   =>   993,
484                 'ircs'    =>   994,
485                 'pop3s'   =>   995,
486                 'mysql'   =>  3306,
487         );
488
489         $port = trim($port);
490         if ($port === '') return $port;
491
492         if ($scheme_normalize) $scheme = scheme_normalize($scheme);
493         if (isset($array[$scheme]) && $port == $array[$scheme])
494                 $port = ''; // Ignore the defaults
495
496         return $port;
497 }
498
499 // Path normalization
500 // http://example.org => http://example.org/
501 // http://example.org#hoge => http://example.org/#hoge
502 // http://example.org/path/a/b/./c////./d => http://example.org/path/a/b/c/d
503 // http://example.org/path/../../a/../back => http://example.org/back
504 function path_normalize($path = '', $divider = '/', $addroot = TRUE)
505 {
506         if (! is_string($path) || $path == '')
507                 return $addroot ? $divider : '';
508
509         $path = trim($path);
510         $last = ($path[strlen($path) - 1] == $divider) ? $divider : '';
511         $array = explode($divider, $path);
512
513         // Remove paddings
514         foreach(array_keys($array) as $key) {
515                 if ($array[$key] == '' || $array[$key] == '.')
516                          unset($array[$key]);
517         }
518         // Back-track
519         $tmp = array();
520         foreach($array as $value) {
521                 if ($value == '..') {
522                         array_pop($tmp);
523                 } else {
524                         array_push($tmp, $value);
525                 }
526         }
527         $array = & $tmp;
528
529         $path = $addroot ? $divider : '';
530         if (! empty($array)) $path .= implode($divider, $array) . $last;
531
532         return $path;
533 }
534
535 // DirectoryIndex normalize (Destructive and rough)
536 function file_normalize($string = 'index.html.en')
537 {
538         static $array = array(
539                 'index'                 => TRUE,        // Some system can omit the suffix
540                 'index.htm'             => TRUE,
541                 'index.html'    => TRUE,
542                 'index.shtml'   => TRUE,
543                 'index.jsp'             => TRUE,
544                 'index.php'             => TRUE,
545                 'index.php3'    => TRUE,
546                 'index.php4'    => TRUE,
547                 //'index.pl'    => TRUE,
548                 //'index.py'    => TRUE,
549                 //'index.rb'    => TRUE,
550                 'index.cgi'             => TRUE,
551                 'default.htm'   => TRUE,
552                 'default.html'  => TRUE,
553                 'default.asp'   => TRUE,
554                 'default.aspx'  => TRUE,
555         );
556
557         // Content-negothiation filter:
558         // Roughly removing ISO 639 -like
559         // 2-letter suffixes (See RFC3066)
560         $matches = array();
561         if (preg_match('/(.*)\.[a-z][a-z](?:-[a-z][a-z])?$/i', $string, $matches)) {
562                 $_string = $matches[1];
563         } else {
564                 $_string = & $string;
565         }
566
567         if (isset($array[strtolower($_string)])) {
568                 return '';
569         } else {
570                 return $string;
571         }
572 }
573
574 // Sort query-strings if possible (Destructive and rough)
575 // [OK] &&&&f=d&b&d&c&a=0dd  =>  a=0dd&b&c&d&f=d
576 // [OK] nothing==&eg=dummy&eg=padding&eg=foobar  =>  eg=foobar
577 function query_normalize($string = '', $equal = FALSE, $equal_cutempty = TRUE)
578 {
579         $array = explode('&', $string);
580
581         // Remove '&' paddings
582         foreach(array_keys($array) as $key) {
583                 if ($array[$key] == '') {
584                          unset($array[$key]);
585                 }
586         }
587
588         // Consider '='-sepalated input and paddings
589         if ($equal) {
590                 $equals = $not_equals = array();
591                 foreach ($array as $part) {
592                         if (strpos($part, '=') === FALSE) {
593                                  $not_equals[] = $part;
594                         } else {
595                                 list($key, $value) = explode('=', $part, 2);
596                                 $value = ltrim($value, '=');
597                                 if (! $equal_cutempty || $value != '') {
598                                         $equals[$key] = $value;
599                                 }
600                         }
601                 }
602
603                 $array = & $not_equals;
604                 foreach ($equals as $key => $value) {
605                         $array[] = $key . '=' . $value;
606                 }
607                 unset($equals);
608         }
609
610         natsort($array);
611         return implode('&', $array);
612 }
613
614 // ---------------------
615 // Part One : Checker
616
617 function generate_glob_regex($string = '', $divider = '/')
618 {
619         static $from = array(
620                          1 => '*',
621                         11 => '?',
622         //              22 => '[',      // Maybe cause regex compilation error (e.g. '[]')
623         //              23 => ']',      //
624                 );
625         static $mid = array(
626                          1 => '_AST_',
627                         11 => '_QUE_',
628         //              22 => '_RBR_',
629         //              23 => '_LBR_',
630                 );
631         static $to = array(
632                          1 => '.*',
633                         11 => '.',
634         //              22 => '[',
635         //              23 => ']',
636                 );
637
638         if (is_array($string)) {
639                 // Recurse
640                 return '(?:' .
641                         implode('|',    // OR
642                                 array_map('generate_glob_regex',
643                                         $string,
644                                         array_pad(array(), count($string), $divider)
645                                 )
646                         ) .
647                 ')';
648         } else {
649                 $string = str_replace($from, $mid, $string); // Hide
650                 $string = preg_quote($string, $divider);
651                 $string = str_replace($mid, $to, $string);   // Unhide
652                 return $string;
653         }
654 }
655
656 function get_blocklist($list = '')
657 {
658         static $regex;
659
660         if (! isset($regex)) {
661                 $regex = array();
662
663                 // Sample
664                 if (FALSE) {
665                         $blocklist['badhost'] = array(
666                                 //'*',                  // Deny all uri
667                                 //'10.20.*.*',  // 10.20.example.com also matches
668                                 //'*.blogspot.com',     // Blog services subdomains
669                                 //array('blogspot.com', '*.blogspot.com')
670                         );
671                         foreach ($blocklist['badhost'] as $part) {
672                                 $_part = is_array($part) ? implode('/', $part) : $part;
673                                 $regex['badhost'][$_part] = '/^' . generate_glob_regex($part) . '$/i';
674                         }
675                 }
676
677                 // Load
678                 if (file_exists(SPAM_INI_FILE)) {
679                         $blocklist = array();
680                         require(SPAM_INI_FILE);
681                         foreach(array('goodhost', 'badhost') as $key) {
682                                 if (! isset($blocklist[$key])) continue;
683                                 foreach ($blocklist[$key] as $part) {
684                                         $_part = is_array($part) ? implode('/', $part) : $part;
685                                         $regex[$key][$_part] = '/^' . generate_glob_regex($part) . '$/i';
686                                 }
687                         }
688                 }
689         }
690
691         if ($list == '') {
692                 return $regex;
693         } else if (isset($regex[$list])) {
694                 return $regex[$list];
695         } else {        
696                 return array();
697         }
698 }
699
700 function is_badhost($hosts = array(), $asap = TRUE, & $remains)
701 {
702         $result = array();
703         if (! is_array($hosts)) $hosts = array($hosts);
704         foreach(array_keys($hosts) as $key) {
705                 if (! is_string($hosts[$key])) unset($hosts[$key]);
706         }
707         if (empty($hosts)) return $result;
708
709         foreach (get_blocklist('goodhost') as $_regex) {
710                 $hosts = preg_grep_invert($_regex, $hosts);
711         }
712         if (empty($hosts)) return $result;
713
714         $tmp = array();
715         foreach (get_blocklist('badhost') as $part => $_regex) {
716                 $result[$part] = preg_grep($_regex, $hosts);
717                 if (empty($result[$part])) {
718                         unset($result[$part]);
719                 } else {
720                         $hosts = array_diff($hosts, $result[$part]);
721                         if ($asap) break;
722                 }
723         }
724
725         $remains = $hosts;
726
727         return $result;
728 }
729
730 // Default (enabled) methods and thresholds (for content insertion)
731 function check_uri_spam_method($times = 1, $t_area = 0, $rule = TRUE)
732 {
733         $times  = intval($times);
734         $t_area = intval($t_area);
735
736         $positive = array(
737                 // Thresholds
738                 'quantity'     =>  8 * $times,  // Allow N URIs
739                 'non_uniqhost' =>  3 * $times,  // Allow N duped (and normalized) Hosts
740                 //'non_uniquri'=>  3 * $times,  // Allow N duped (and normalized) URIs
741
742                 // Areas
743                 'area_anchor'  => $t_area,      // Using <a href> HTML tag
744                 'area_bbcode'  => $t_area,      // Using [url] or [link] BBCode
745                 //'uri_anchor' => $t_area,      // URI inside <a href> HTML tag
746                 //'uri_bbcode' => $t_area,      // URI inside [url] or [link] BBCode
747         );
748         if ($rule) {
749                 $bool = array(
750                         // Rules
751                         //'asap'   => TRUE,     // Quit or return As Soon As Possible
752                         'uniqhost' => TRUE,     // Show uniq host (at block notification mail)
753                         'badhost'  => TRUE,     // Check badhost
754                 );
755         } else {
756                 $bool = array();
757         }
758
759         // Remove non-$positive values
760         foreach (array_keys($positive) as $key) {
761                 if ($positive[$key] < 0) unset($positive[$key]);
762         }
763
764         return $positive + $bool;
765 }
766
767 // Simple/fast spam check
768 function check_uri_spam($target = '', $method = array())
769 {
770         if (! is_array($method) || empty($method)) {
771                 $method = check_uri_spam_method();
772         }
773         $progress = array(
774                 'sum' => array(
775                         'quantity'    => 0,
776                         'uniqhost'    => 0,
777                         'non_uniqhost'=> 0,
778                         'non_uniquri' => 0,
779                         'badhost'     => 0,
780                         'area_anchor' => 0,
781                         'area_bbcode' => 0,
782                         'uri_anchor'  => 0,
783                         'uri_bbcode'  => 0,
784                 ),
785                 'is_spam' => array(),
786                 'method'  => & $method,
787                 'remains' => array(),
788         );
789         $sum     = & $progress['sum'];
790         $is_spam = & $progress['is_spam'];
791         $remains = & $progress['remains'];
792         $asap    = isset($method['asap']);
793
794         // Return if ...
795         if (is_array($target)) {
796                 foreach($target as $str) {
797                         // Recurse
798                         $_progress = check_uri_spam($str, $method);
799                         $_sum      = & $_progress['sum'];
800                         $_is_spam  = & $_progress['is_spam'];
801                         $_remains  = & $_progress['remains'];
802                         foreach (array_keys($_sum) as $key) {
803                                 $sum[$key] += $_sum[$key];
804                         }
805                         foreach (array_keys($_is_spam) as $key) {
806                                 if (is_array($_is_spam[$key])) {
807                                         // Marge keys (badhost)
808                                         foreach(array_keys($_is_spam[$key]) as $_key) {
809                                                 if (! isset($is_spam[$key][$_key])) {
810                                                         $is_spam[$key][$_key] =  $_is_spam[$key][$_key];
811                                                 } else {
812                                                         $is_spam[$key][$_key] += $_is_spam[$key][$_key];
813                                                 }
814                                         }
815                                 } else {
816                                         $is_spam[$key] = TRUE;
817                                 }
818                         }
819                         foreach ($_remains as $key=>$value) {
820                                 foreach ($value as $_key=>$_value) {
821                                         $remains[$key][$_key] = $_value;
822                                 }
823                         }
824                         if ($asap && $is_spam) break;
825                 }
826                 return $progress;
827         }
828
829         // Area: There's HTML anchor tag
830         if ((! $asap || ! $is_spam) && isset($method['area_anchor'])) {
831                 $key = 'area_anchor';
832                 $_asap = isset($method['asap']) ? array('asap' => TRUE) : array();
833                 $result = area_pickup($target, array($key => TRUE) + $_asap);
834                 if ($result) {
835                         $sum[$key] = $result[$key];
836                         if (isset($method[$key]) && $sum[$key] > $method[$key]) {
837                                 $is_spam[$key] = TRUE;
838                         }
839                 }
840         }
841
842         // Area: There's 'BBCode' linking tag
843         if ((! $asap || ! $is_spam) && isset($method['area_bbcode'])) {
844                 $key = 'area_bbcode';
845                 $_asap = isset($method['asap']) ? array('asap' => TRUE) : array();
846                 $result = area_pickup($target, array($key => TRUE) + $_asap);
847                 if ($result) {
848                         $sum[$key] = $result[$key];
849                         if (isset($method[$key]) && $sum[$key] > $method[$key]) {
850                                 $is_spam[$key] = TRUE;
851                         }
852                 }
853         }
854
855         // Return if ...
856         if ($asap && $is_spam) {
857                 return $progress;
858         }
859         // URI Init
860         $pickups = spam_uri_pickup($target, $method);
861         if (empty($pickups)) {
862                 return $progress;
863         }
864
865         // URI: Check quantity
866         $sum['quantity'] += count($pickups);
867                 // URI quantity
868         if ((! $asap || ! $is_spam) && isset($method['quantity']) &&
869                 $sum['quantity'] > $method['quantity']) {
870                 $is_spam['quantity'] = TRUE;
871         }
872
873         // URI: used inside HTML anchor tag pair
874         if ((! $asap || ! $is_spam) && isset($method['uri_anchor'])) {
875                 $key = 'uri_anchor';
876                 foreach($pickups as $pickup) {
877                         if (isset($pickup['area'][$key])) {
878                                 $sum[$key] += $pickup['area'][$key];
879                                 if(isset($method[$key]) &&
880                                         $sum[$key] > $method[$key]) {
881                                         $is_spam[$key] = TRUE;
882                                         if ($asap && $is_spam) break;
883                                 }
884                                 if ($asap && $is_spam) break;
885                         }
886                 }
887         }
888
889         // URI: used inside 'BBCode' pair
890         if ((! $asap || ! $is_spam) && isset($method['uri_bbcode'])) {
891                 $key = 'uri_bbcode';
892                 foreach($pickups as $pickup) {
893                         if (isset($pickup['area'][$key])) {
894                                 $sum[$key] += $pickup['area'][$key];
895                                 if(isset($method[$key]) &&
896                                         $sum[$key] > $method[$key]) {
897                                         $is_spam[$key] = TRUE;
898                                         if ($asap && $is_spam) break;
899                                 }
900                                 if ($asap && $is_spam) break;
901                         }
902                 }
903         }
904
905         // URI: Uniqueness (and removing non-uniques)
906         if ((! $asap || ! $is_spam) && isset($method['non_uniquri'])) {
907
908                 // Destructive normalize of URIs
909                 uri_array_normalize($pickups);
910
911                 $uris = array();
912                 foreach (array_keys($pickups) as $key) {
913                         $uris[$key] = uri_array_implode($pickups[$key]);
914                 }
915                 $count = count($uris);
916                 $uris  = array_unique($uris);
917                 $sum['non_uniquri'] += $count - count($uris);
918                 if ($sum['non_uniquri'] > $method['non_uniquri']) {
919                         $is_spam['non_uniquri'] = TRUE;
920                 }
921                 if (! $asap || ! $is_spam) {
922                         foreach (array_diff(array_keys($pickups),
923                                 array_keys($uris)) as $remove) {
924                                 unset($pickups[$remove]);
925                         }
926                 }
927                 unset($uris);
928         }
929
930         // Return if ...
931         if ($asap && $is_spam) {
932                 return $progress;
933         }
934
935         // Host: Uniqueness (uniq / non-uniq)
936         $hosts = array();
937         foreach ($pickups as $pickup) $hosts[] = & $pickup['host'];
938         $hosts = array_unique($hosts);
939         $sum['uniqhost'] += count($hosts);
940         if ((! $asap || ! $is_spam) && isset($method['non_uniqhost'])) {
941                 $sum['non_uniqhost'] = $sum['quantity'] - $sum['uniqhost'];
942                 if ($sum['non_uniqhost'] > $method['non_uniqhost']) {
943                         $is_spam['non_uniqhost'] = TRUE;
944                 }
945         }
946
947         // Return if ...
948         if ($asap && $is_spam) {
949                 return $progress;
950         }
951
952         // URI: Bad host
953         if ((! $asap || ! $is_spam) && isset($method['badhost'])) {
954                 $__remains = array();
955                 if ($asap) {
956                         $badhost = is_badhost($hosts, $asap, $__remains);
957                 } else {
958                         $badhost = is_badhost($hosts, $asap, $__remains);
959                         if ($__remains) {
960                                 $progress['remains']['badhost'] = array();
961                                 foreach ($__remains as $value) {
962                                         $progress['remains']['badhost'][$value] = TRUE;
963                                 }
964                         }
965                 }
966                 unset($__remains);
967                 if (! empty($badhost)) {
968                         $sum['badhost'] += array_count_leaves($badhost);
969                         foreach(array_keys($badhost) as $keys) {
970                                 $is_spam['badhost'][$keys] =
971                                         array_count_leaves($badhost[$keys]);
972                         }
973                         unset($badhost);
974                 }
975         }
976
977         return $progress;
978 }
979
980 // Count leaves
981 function array_count_leaves($array = array(), $count_empty_array = FALSE)
982 {
983         if (! is_array($array) || (empty($array) && $count_empty_array))
984                 return 1;
985
986         // Recurse
987         $result = 0;
988         foreach ($array as $part) {
989                 $result += array_count_leaves($part, $count_empty_array);
990         }
991         return $result;
992 }
993
994 // ---------------------
995 // Reporting
996
997 // TODO: Don't show unused $method!
998 // Summarize $progress (blocked only)
999 function summarize_spam_progress($progress = array(), $blockedonly = FALSE)
1000 {
1001         if ($blockedonly) {
1002                 $tmp = array_keys($progress['is_spam']);
1003         } else {
1004                 $tmp = array();
1005                 $method = & $progress['method'];
1006                 if (isset($progress['sum'])) {
1007                         foreach ($progress['sum'] as $key => $value) {
1008                                 if (isset($method[$key])) {
1009                                         $tmp[] = $key . '(' . $value . ')';
1010                                 }
1011                         }
1012                 }
1013         }
1014
1015         return implode(', ', $tmp);
1016 }
1017
1018 // ---------------------
1019 // Exit
1020
1021 // Common bahavior for blocking
1022 // NOTE: Call this function from various blocking feature, to disgueise the reason 'why blocked'
1023 function spam_exit($mode = '', $data = array())
1024 {
1025         switch ($mode) {
1026                 case '':        echo("\n");     break;
1027                 case 'dump':
1028                         echo('<pre>' . "\n");
1029                         echo htmlspecialchars(var_export($data, TRUE));
1030                         echo('</pre>' . "\n");
1031                         break;
1032         };
1033
1034         // Force exit
1035         exit;
1036 }
1037
1038
1039 // ---------------------
1040 // Simple filtering
1041
1042 // TODO: Record them
1043 // Simple/fast spam filter ($target: 'a string' or an array())
1044 function pkwk_spamfilter($action, $page, $target = array('title' => ''), $method = array(), $exitmode = '')
1045 {
1046         $progress = check_uri_spam($target, $method);
1047
1048         if (! empty($progress['is_spam'])) {
1049                 // Mail to administrator(s)
1050                 pkwk_spamnotify($action, $page, $target, $progress, $method);
1051
1052                 // Exit
1053                 spam_exit($exitmode, $progress);
1054         }
1055 }
1056
1057 // ---------------------
1058 // PukiWiki original
1059
1060 // Mail to administrator(s)
1061 function pkwk_spamnotify($action, $page, $target = array('title' => ''), $progress = array(), $method = array())
1062 {
1063         global $notify, $notify_subject;
1064
1065         if (! $notify) return;
1066
1067         $asap = isset($method['asap']);
1068
1069         $summary['ACTION']  = 'Blocked by: ' . summarize_spam_progress($progress, TRUE);
1070         if (! $asap) {
1071                 $summary['METRICS'] = summarize_spam_progress($progress);
1072         }
1073         if (isset($progress['is_spam']['badhost'])) {
1074                 $badhost = array();
1075                 foreach($progress['is_spam']['badhost'] as $glob=>$number) {
1076                         $badhost[] = $glob . '(' . $number . ')';
1077                 }
1078                 $summary['DETAIL_BADHOST'] = implode(', ', $badhost);
1079         }
1080         if (! $asap && $progress['remains']['badhost']) {
1081                 $count = count($progress['remains']['badhost']);
1082                 $summary['DETAIL_NEUTRAL_HOST'] = $count .
1083                         ' (' .
1084                                 preg_replace(
1085                                         '/[^, a-z0-9.-]/i', '',
1086                                         implode(', ', array_keys($progress['remains']['badhost']))
1087                                 ) .
1088                         ')';
1089         }
1090         $summary['COMMENT'] = $action;
1091         $summary['PAGE']    = '[blocked] ' . (is_pagename($page) ? $page : '');
1092         $summary['URI']     = get_script_uri() . '?' . rawurlencode($page);
1093         $summary['USER_AGENT']  = TRUE;
1094         $summary['REMOTE_ADDR'] = TRUE;
1095         pkwk_mail_notify($notify_subject,  var_export($target, TRUE), $summary);
1096 }
1097
1098 ?>