OSDN Git Service

summarize_detail_newtral(): Snip the redundant (main) domain
[pukiwiki/pukiwiki_sandbox.git] / spam / spam.php
1 <?php
2 // $Id: spam.php,v 1.209 2008/12/28 14:18:54 henoheno Exp $
3 // Copyright (C) 2006-2007 PukiWiki Developers Team
4 // License: GPL v2 or (at your option) any later version
5 //
6 // Functions for Concept-work of spam-uri metrics
7 //
8 // (PHP 4 >= 4.3.0): preg_match_all(PREG_OFFSET_CAPTURE): $method['uri_XXX'] related feature
9
10 if (! defined('SPAM_INI_FILE'))   define('SPAM_INI_FILE',   'spam.ini.php');
11 if (! defined('DOMAIN_INI_FILE')) define('DOMAIN_INI_FILE', 'domain.ini.php');
12
13 // ---------------------
14 // Compat etc
15
16 // (PHP 4 >= 4.2.0): var_export(): mail-reporting and dump related
17 if (! function_exists('var_export')) {
18         function var_export() {
19                 return 'var_export() is not found on this server' . "\n";
20         }
21 }
22
23 // (PHP 4 >= 4.2.0): preg_grep() enables invert option
24 function preg_grep_invert($pattern = '//', $input = array())
25 {
26         static $invert;
27         if (! isset($invert)) $invert = defined('PREG_GREP_INVERT');
28
29         if ($invert) {
30                 return preg_grep($pattern, $input, PREG_GREP_INVERT);
31         } else {
32                 $result = preg_grep($pattern, $input);
33                 if ($result) {
34                         return array_diff($input, preg_grep($pattern, $input));
35                 } else {
36                         return $input;
37                 }
38         }
39 }
40
41
42 // ---------------------
43 // Utilities
44
45 // Very roughly, shrink the lines of var_export()
46 // NOTE: If the same data exists, it must be corrupted.
47 function var_export_shrink($expression, $return = FALSE, $ignore_numeric_keys = FALSE)
48 {
49         $result = var_export($expression, TRUE);
50
51         $result = preg_replace(
52                 // Remove a newline and spaces
53                 '# => \n *array \(#', ' => array (',
54                 $result
55         );
56
57         if ($ignore_numeric_keys) {
58                 $result =preg_replace(
59                         // Remove numeric keys
60                         '#^( *)[0-9]+ => #m', '$1',
61                         $result
62                 );
63         }
64
65         if ($return) {
66                 return $result;
67         } else {
68                 echo   $result;
69                 return NULL;
70         }
71 }
72
73 // Data structure: Create an array they _refer_only_one_ value
74 function one_value_array($num = 0, $value = NULL)
75 {
76         $num   = max(0, intval($num));
77         $array = array();
78
79         for ($i = 0; $i < $num; $i++) {
80                 $array[] = & $value;
81         }
82
83         return $array;
84 }
85
86 // Reverse $string with specified delimiter
87 function delimiter_reverse($string = 'foo.bar.example.com', $from_delim = '.', $to_delim = NULL)
88 {
89         $to_null = ($to_delim === NULL);
90
91         if (! is_string($from_delim) || (! $to_null && ! is_string($to_delim))) {
92                 return FALSE;
93         }
94         if (is_array($string)) {
95                 // Map, Recurse
96                 $count = count($string);
97                 $from  = one_value_array($count, $from_delim);
98                 if ($to_null) {
99                         // Note: array_map() vanishes all keys
100                         return array_map('delimiter_reverse', $string, $from);
101                 } else {
102                         $to = one_value_array($count, $to_delim);
103                         // Note: array_map() vanishes all keys
104                         return array_map('delimiter_reverse', $string, $from, $to);
105                 }
106         }
107         if (! is_string($string)) {
108                 return FALSE;
109         }
110
111         // Returns com.example.bar.foo
112         if ($to_null) $to_delim = & $from_delim;
113         return implode($to_delim, array_reverse(explode($from_delim, $string)));
114 }
115
116 // ksort() by domain
117 function ksort_by_domain(& $array)
118 {
119         $sort = array();
120         foreach(array_keys($array) as $key) {
121                 $reversed = delimiter_reverse($key);
122                 if ($reversed !== FALSE) {
123                         $sort[$reversed] = $key;
124                 }
125         }
126         ksort($sort, SORT_STRING);
127
128         $result = array();
129         foreach($sort as $key) {
130                 $result[$key] = & $array[$key];
131         }
132
133         $array = $result;
134 }
135
136 // Roughly strings(1) using PCRE
137 // This function is useful to:
138 //   * Reduce the size of data, from removing unprintable binary data
139 //   * Detect _bare_strings_ from binary data
140 // References:
141 //   http://www.freebsd.org/cgi/man.cgi?query=strings (Man-page of GNU strings)
142 //   http://www.pcre.org/pcre.txt
143 // Note: mb_ereg_replace() is one of mbstring extension's functions
144 //   and need to init its encoding.
145 function strings($binary = '', $min_len = 4, $ignore_space = FALSE, $multibyte = FALSE)
146 {
147         // String only
148         $binary = (is_array($binary) || $binary === TRUE) ? '' : strval($binary);
149
150         $regex = $ignore_space ?
151                 '[^[:graph:] \t\n]+' :          // Remove "\0" etc, and readable spaces
152                 '[^[:graph:][:space:]]+';       // Preserve readable spaces if possible
153
154         $binary = $multibyte ?
155                 mb_ereg_replace($regex,           "\n",  $binary) :
156                 preg_replace('/' . $regex . '/s', "\n",  $binary);
157
158         if ($ignore_space) {
159                 $binary = preg_replace(
160                         array(
161                                 '/[ \t]{2,}/',
162                                 '/^[ \t]/m',
163                                 '/[ \t]$/m',
164                         ),
165                         array(
166                                 ' ',
167                                 '',
168                                 ''
169                         ),
170                          $binary);
171         }
172
173         if ($min_len > 1) {
174                 // The last character seems "\n" or not
175                 $br = (! empty($binary) && $binary[strlen($binary) - 1] == "\n") ? "\n" : '';
176
177                 $min_len = min(1024, intval($min_len));
178                 $regex = '/^.{' . $min_len . ',}/S';
179                 $binary = implode("\n", preg_grep($regex, explode("\n", $binary))) . $br;
180         }
181
182         return $binary;
183 }
184
185
186 // ---------------------
187 // Utilities: Arrays
188
189 // Count leaves (A leaf = value that is not an array, or an empty array)
190 function array_count_leaves($array = array(), $count_empty = FALSE)
191 {
192         if (! is_array($array) || (empty($array) && $count_empty)) return 1;
193
194         // Recurse
195         $count = 0;
196         foreach ($array as $part) {
197                 $count += array_count_leaves($part, $count_empty);
198         }
199         return $count;
200 }
201
202 // Merge two leaves
203 // Similar to PHP array_merge_leaves(), except strictly preserving keys as string
204 function array_merge_leaves($array1, $array2, $sort_keys = TRUE)
205 {
206         // Array(s) only 
207         $is_array1 = is_array($array1);
208         $is_array2 = is_array($array2);
209         if ($is_array1) {
210                 if ($is_array2) {
211                         ;       // Pass
212                 } else {
213                         return $array1;
214                 }
215         } else if ($is_array2) {
216                 return $array2;
217         } else {
218                 return $array2; // Not array ($array1 is overwritten)
219         }
220
221         $keys_all = array_merge(array_keys($array1), array_keys($array2));
222         if ($sort_keys) sort($keys_all, SORT_STRING);
223
224         $result = array();
225         foreach($keys_all as $key) {
226                 $isset1 = isset($array1[$key]);
227                 $isset2 = isset($array2[$key]);
228                 if ($isset1 && $isset2) {
229                         // Recurse
230                         $result[$key] = array_merge_leaves($array1[$key], $array2[$key], $sort_keys);
231                 } else if ($isset1) {
232                         $result[$key] = & $array1[$key];
233                 } else {
234                         $result[$key] = & $array2[$key];
235                 }
236         }
237         return $result;
238 }
239
240 // An array-leaves to a flat array
241 function array_flat_leaves($array, $unique = TRUE)
242 {
243         if (! is_array($array)) return $array;
244
245         $tmp = array();
246         foreach(array_keys($array) as $key) {
247                 if (is_array($array[$key])) {
248                         // Recurse
249                         foreach(array_flat_leaves($array[$key]) as $_value) {
250                                 $tmp[] = $_value;
251                         }
252                 } else {
253                         $tmp[] = & $array[$key];
254                 }
255         }
256
257         return $unique ? array_values(array_unique($tmp)) : $tmp;
258 }
259
260 // $array['something'] => $array['wanted']
261 function array_rename_keys(& $array, $keys = array('from' => 'to'), $force = FALSE, $default = '')
262 {
263         if (! is_array($array) || ! is_array($keys)) return FALSE;
264
265         // Nondestructive test
266         if (! $force) {
267                 foreach(array_keys($keys) as $from) {
268                         if (! isset($array[$from])) {
269                                 return FALSE;
270                         }
271                 }
272         }
273
274         foreach($keys as $from => $to) {
275                 if ($from === $to) continue;
276                 if (! $force || isset($array[$from])) {
277                         $array[$to] = & $array[$from];
278                         unset($array[$from]);
279                 } else  {
280                         $array[$to] = $default;
281                 }
282         }
283
284         return TRUE;
285 }
286
287 // Remove redundant values from array()
288 function array_unique_recursive($array = array())
289 {
290         if (! is_array($array)) return $array;
291
292         $tmp = array();
293         foreach($array as $key => $value){
294                 if (is_array($value)) {
295                         $array[$key] = array_unique_recursive($value);
296                 } else {
297                         if (isset($tmp[$value])) {
298                                 unset($array[$key]);
299                         } else {
300                                 $tmp[$value] = TRUE;
301                         }
302                 }
303         }
304
305         return $array;
306 }
307
308
309 // ---------------------
310 // Part One : Checker
311
312 // Rough implementation of globbing
313 //
314 // USAGE: $regex = '/^' . generate_glob_regex('*.txt', '/') . '$/i';
315 //
316 function generate_glob_regex($string = '', $divider = '/')
317 {
318         static $from = array(
319                          1 => '*',
320                         11 => '?',
321         //              22 => '[',      // Maybe cause regex compilation error (e.g. '[]')
322         //              23 => ']',      //
323                 );
324         static $mid = array(
325                          1 => '_AST_',
326                         11 => '_QUE_',
327         //              22 => '_RBR_',
328         //              23 => '_LBR_',
329                 );
330         static $to = array(
331                          1 => '.*',
332                         11 => '.',
333         //              22 => '[',
334         //              23 => ']',
335                 );
336
337         if (! is_string($string)) return '';
338
339         $string = str_replace($from, $mid, $string); // Hide
340         $string = preg_quote($string, $divider);
341         $string = str_replace($mid, $to, $string);   // Unhide
342
343         return $string;
344 }
345
346 // Generate host (FQDN, IPv4, ...) regex
347 // 'localhost'     : Matches with 'localhost' only
348 // 'example.org'   : Matches with 'example.org' only (See host_normalize() about 'www')
349 // '.example.org'  : Matches with ALL FQDN ended with '.example.org'
350 // '*.example.org' : Almost the same of '.example.org' except 'www.example.org'
351 // '10.20.30.40'   : Matches with IPv4 address '10.20.30.40' only
352 // [TODO] '192.'   : Matches with all IPv4 hosts started with '192.'
353 // TODO: IPv4, CIDR?, IPv6
354 function generate_host_regex($string = '', $divider = '/')
355 {
356         if (! is_string($string)) return '';
357
358         if (mb_strpos($string, '.') === FALSE) {
359                 // localhost
360                 return generate_glob_regex($string, $divider);
361         }
362
363         if (is_ip($string)) {
364                 // IPv4
365                 return generate_glob_regex($string, $divider);
366         } else {
367                 // FQDN or something
368                 $part = explode('.', $string, 2);
369                 if ($part[0] == '') {
370                         // .example.org
371                         $part[0] = '(?:.*\.)?';
372                 } else if ($part[0] == '*') {
373                         // *.example.org
374                         $part[0] = '.*\.';
375                 } else {
376                         // example.org, etc
377                         return generate_glob_regex($string, $divider);
378                 }
379                 $part[1] = generate_glob_regex($part[1], $divider);
380                 return implode('', $part);
381         }
382 }
383
384 // Rough hostname checker
385 // TODO: Strict digit, 0x, CIDR, '999.999.999.999', ':', '::G'
386 function is_ip($string = '')
387 {
388         if (! is_string($string)) return FALSE;
389
390         if (strpos($string, ':') !== FALSE) {
391                 return 6;       // Seems IPv6
392         }
393
394         if (preg_match('/^' .
395                 '(?:[0-9]{1,3}\.){3}[0-9]{1,3}' . '|' .
396                 '(?:[0-9]{1,3}\.){1,3}'         . '$/',
397                 $string)) {
398                 return 4;       // Seems IPv4(dot-decimal)
399         }
400
401         return FALSE;   // Seems not IP
402 }
403
404 // Load SPAM_INI_FILE and return parsed one
405 function get_blocklist($list = '')
406 {
407         static $regexes;
408
409         if ($list === NULL) {
410                 $regexes = NULL;        // Unset
411                 return array();
412         }
413
414         if (! isset($regexes)) {
415                 $regexes = array();
416                 if (file_exists(SPAM_INI_FILE)) {
417                         $blocklist = array();
418
419                         include(SPAM_INI_FILE);
420                         //      $blocklist['list'] = array(
421                         //      //'goodhost' => FALSE;
422                         //      'badhost' => TRUE;
423                         // );
424                         //      $blocklist['badhost'] = array(
425                         //              '*.blogspot.com',       // Blog services's subdomains (only)
426                         //              'IANA-examples' => '#^(?:.*\.)?example\.(?:com|net|org)$#',
427                         //      );
428
429                         foreach(array(
430                                         'pre',
431                                         'list',
432                                 ) as $special) {
433
434                                 if (! isset($blocklist[$special])) continue;
435
436                                 $regexes[$special] = $blocklist[$special];
437
438                                 foreach(array_keys($blocklist[$special]) as $_list) {
439                                         if (! isset($blocklist[$_list])) continue;
440
441                                         foreach ($blocklist[$_list] as $key => $value) {
442                                                 if (is_array($value)) {
443                                                         $regexes[$_list][$key] = array();
444                                                         foreach($value as $_key => $_value) {
445                                                                 get_blocklist_add($regexes[$_list][$key], $_key, $_value);
446                                                         }
447                                                 } else {
448                                                         get_blocklist_add($regexes[$_list], $key, $value);
449                                                 }
450                                         }
451
452                                         unset($blocklist[$_list]);
453                                 }
454                         }
455                 }
456         }
457
458         if ($list === '') {
459                 return $regexes;                // ALL of
460         } else if (isset($regexes[$list])) {
461                 return $regexes[$list]; // A part of
462         } else {
463                 return array();                 // Found nothing
464         }
465 }
466
467 // Subroutine of get_blocklist(): Add new regex to the $array
468 function get_blocklist_add(& $array, $key = 0, $value = '*.example.org/path/to/file.html')
469 {
470         if (is_string($key)) {
471                 $array[$key]   = & $value; // Treat $value as a regex for FQDN(host)s
472         } else {
473                 $array[$value] = '#^' . generate_host_regex($value, '#') . '$#i';
474         }
475 }
476
477 // Blocklist metrics: Separate $host, to $blocked and not blocked
478 function blocklist_distiller(& $hosts, $keys = array('goodhost', 'badhost'), $asap = FALSE)
479 {
480         if (! is_array($hosts)) $hosts = array($hosts);
481         if (! is_array($keys))  $keys  = array($keys);
482
483         $list = get_blocklist('list');
484         $blocked = array();
485
486         foreach($keys as $key){
487                 foreach (get_blocklist($key) as $label => $regex) {
488                         if (is_array($regex)) {
489                                 foreach($regex as $_label => $_regex) {
490                                         $group = preg_grep($_regex, $hosts);
491                                         if ($group) {
492                                                 $hosts = array_diff($hosts, $group);
493                                                 $blocked[$key][$label][$_label] = $group;
494                                                 if ($asap && $list[$key]) break;
495                                         }
496                                 }
497                         } else {
498                                 $group = preg_grep($regex, $hosts);
499                                 if ($group) {
500                                         $hosts = array_diff($hosts, $group);
501                                         $blocked[$key][$label] = $group;
502                                         if ($asap && $list[$key]) break;
503                                 }
504                         }
505                 }
506         }
507
508         return $blocked;
509 }
510
511
512 // ---------------------
513
514
515 // Default (enabled) methods and thresholds (for content insertion)
516 function check_uri_spam_method($times = 1, $t_area = 0, $rule = TRUE)
517 {
518         $times  = intval($times);
519         $t_area = intval($t_area);
520
521         $positive = array(
522                 // Thresholds
523                 'quantity'     =>  8 * $times,  // Allow N URIs
524                 'non_uniqhost' =>  3 * $times,  // Allow N duped (and normalized) Hosts
525                 //'non_uniquri'=>  3 * $times,  // Allow N duped (and normalized) URIs
526
527                 // Areas
528                 'area_anchor'  => $t_area,      // Using <a href> HTML tag
529                 'area_bbcode'  => $t_area,      // Using [url] or [link] BBCode
530                 //'uri_anchor' => $t_area,      // URI inside <a href> HTML tag
531                 //'uri_bbcode' => $t_area,      // URI inside [url] or [link] BBCode
532         );
533         if ($rule) {
534                 $bool = array(
535                         // Rules
536                         //'asap'   => TRUE,     // Quit or return As Soon As Possible
537                         'uniqhost' => TRUE,     // Show uniq host (at block notification mail)
538                         'badhost'  => TRUE,     // Check badhost
539                 );
540         } else {
541                 $bool = array();
542         }
543
544         // Remove non-$positive values
545         foreach (array_keys($positive) as $key) {
546                 if ($positive[$key] < 0) unset($positive[$key]);
547         }
548
549         return $positive + $bool;
550 }
551
552 // Simple/fast spam check
553 function check_uri_spam($target = '', $method = array())
554 {
555         // Return value
556         $progress = array(
557                 'method'  => array(
558                         // Theme to do  => Dummy, optional value, or optional array()
559                         //'quantity'    => 8,
560                         //'uniqhost'    => TRUE,
561                         //'non_uniqhost'=> 3,
562                         //'non_uniquri' => 3,
563                         //'badhost'     => TRUE,
564                         //'area_anchor' => 0,
565                         //'area_bbcode' => 0,
566                         //'uri_anchor'  => 0,
567                         //'uri_bbcode'  => 0,
568                 ),
569                 'sum' => array(
570                         // Theme        => Volume found (int)
571                 ),
572                 'is_spam' => array(
573                         // Flag. If someting defined here,
574                         // one or more spam will be included
575                         // in this report
576                 ),
577                 'blocked' => array(
578                         // Hosts blocked
579                         //'category' => array(
580                         //      'host',
581                         //)
582                 ),
583                 'hosts' => array(
584                         // Hosts not blocked
585                 ),
586         );
587
588         // ----------------------------------------
589         // Aliases
590
591         $sum     = & $progress['sum'];
592         $is_spam = & $progress['is_spam'];
593         $progress['method'] = & $method;        // Argument
594         $blocked = & $progress['blocked'];
595         $hosts   = & $progress['hosts'];
596         $asap    = isset($method['asap']);
597
598         // ----------------------------------------
599         // Init
600
601         if (! is_array($method) || empty($method)) {
602                 $method = check_uri_spam_method();
603         }
604         foreach(array_keys($method) as $key) {
605                 if (! isset($sum[$key])) $sum[$key] = 0;
606         }
607         if (! isset($sum['quantity'])) $sum['quantity'] = 0;
608
609         // ----------------------------------------
610         // Recurse
611
612         if (is_array($target)) {
613                 foreach($target as $str) {
614                         if (! is_string($str)) continue;
615
616                         $_progress = check_uri_spam($str, $method);     // Recurse
617
618                         // Merge $sum
619                         $_sum = & $_progress['sum'];
620                         foreach (array_keys($_sum) as $key) {
621                                 if (! isset($sum[$key])) {
622                                         $sum[$key] = & $_sum[$key];
623                                 } else {
624                                         $sum[$key] += $_sum[$key];
625                                 }
626                         }
627
628                         // Merge $is_spam
629                         $_is_spam = & $_progress['is_spam'];
630                         foreach (array_keys($_is_spam) as $key) {
631                                 $is_spam[$key] = TRUE;
632                                 if ($asap) break;
633                         }
634                         if ($asap && $is_spam) break;
635
636                         // Merge only
637                         $blocked = array_merge_leaves($blocked, $_progress['blocked'], FALSE);
638                         $hosts   = array_merge_leaves($hosts,   $_progress['hosts'],   FALSE);
639                 }
640
641                 // Unique values
642                 $blocked = array_unique_recursive($blocked);
643                 $hosts   = array_unique_recursive($hosts);
644
645                 // Recount $sum['badhost']
646                 $sum['badhost'] = array_count_leaves($blocked);
647
648                 return $progress;
649         }
650
651         // ----------------------------------------
652         // Area measure
653
654         // Area: There's HTML anchor tag
655         if ((! $asap || ! $is_spam) && isset($method['area_anchor'])) {
656                 $key = 'area_anchor';
657                 $_asap = isset($method['asap']) ? array('asap' => TRUE) : array();
658                 $result = area_pickup($target, array($key => TRUE) + $_asap);
659                 if ($result) {
660                         $sum[$key] = $result[$key];
661                         if (isset($method[$key]) && $sum[$key] > $method[$key]) {
662                                 $is_spam[$key] = TRUE;
663                         }
664                 }
665         }
666
667         // Area: There's 'BBCode' linking tag
668         if ((! $asap || ! $is_spam) && isset($method['area_bbcode'])) {
669                 $key = 'area_bbcode';
670                 $_asap = isset($method['asap']) ? array('asap' => TRUE) : array();
671                 $result = area_pickup($target, array($key => TRUE) + $_asap);
672                 if ($result) {
673                         $sum[$key] = $result[$key];
674                         if (isset($method[$key]) && $sum[$key] > $method[$key]) {
675                                 $is_spam[$key] = TRUE;
676                         }
677                 }
678         }
679
680         // Return if ...
681         if ($asap && $is_spam) return $progress;
682
683         // ----------------------------------------
684         // URI: Pickup
685
686         $pickups = uri_pickup_normalize(spam_uri_pickup($target, $method));
687         $hosts = array();
688         foreach ($pickups as $key => $pickup) {
689                 $hosts[$key] = & $pickup['host'];
690         }
691
692         // Return if ...
693         if (empty($pickups)) return $progress;
694
695         // ----------------------------------------
696         // URI: Bad host <pre-filter> (Separate good/bad hosts from $hosts)
697
698         if ((! $asap || ! $is_spam) && isset($method['badhost'])) {
699                 $list    = get_blocklist('pre');
700                 $blocked = blocklist_distiller($hosts, array_keys($list), $asap);
701                 foreach($list as $key=>$type){
702                         if (! $type) unset($blocked[$key]); // Ignore goodhost etc
703                 }
704                 unset($list);
705                 if (! empty($blocked)) $is_spam['badhost'] = TRUE;
706         }
707
708         // Return if ...
709         if ($asap && $is_spam) return $progress;
710
711         // Remove blocked from $pickups
712         foreach(array_keys($pickups) as $key) {
713                 if (! isset($hosts[$key])) {
714                         unset($pickups[$key]);
715                 }
716         }
717
718         // ----------------------------------------
719         // URI: Check quantity
720
721         $sum['quantity'] += count($pickups);
722                 // URI quantity
723         if ((! $asap || ! $is_spam) && isset($method['quantity']) &&
724                 $sum['quantity'] > $method['quantity']) {
725                 $is_spam['quantity'] = TRUE;
726         }
727
728         // ----------------------------------------
729         // URI: used inside HTML anchor tag pair
730
731         if ((! $asap || ! $is_spam) && isset($method['uri_anchor'])) {
732                 $key = 'uri_anchor';
733                 foreach($pickups as $pickup) {
734                         if (isset($pickup['area'][$key])) {
735                                 $sum[$key] += $pickup['area'][$key];
736                                 if(isset($method[$key]) &&
737                                         $sum[$key] > $method[$key]) {
738                                         $is_spam[$key] = TRUE;
739                                         if ($asap && $is_spam) break;
740                                 }
741                                 if ($asap && $is_spam) break;
742                         }
743                 }
744         }
745
746         // ----------------------------------------
747         // URI: used inside 'BBCode' pair
748
749         if ((! $asap || ! $is_spam) && isset($method['uri_bbcode'])) {
750                 $key = 'uri_bbcode';
751                 foreach($pickups as $pickup) {
752                         if (isset($pickup['area'][$key])) {
753                                 $sum[$key] += $pickup['area'][$key];
754                                 if(isset($method[$key]) &&
755                                         $sum[$key] > $method[$key]) {
756                                         $is_spam[$key] = TRUE;
757                                         if ($asap && $is_spam) break;
758                                 }
759                                 if ($asap && $is_spam) break;
760                         }
761                 }
762         }
763
764         // ----------------------------------------
765         // URI: Uniqueness (and removing non-uniques)
766
767         if ((! $asap || ! $is_spam) && isset($method['non_uniquri'])) {
768
769                 $uris = array();
770                 foreach (array_keys($pickups) as $key) {
771                         $uris[$key] = uri_pickup_implode($pickups[$key]);
772                 }
773                 $count = count($uris);
774                 $uris  = array_unique($uris);
775                 $sum['non_uniquri'] += $count - count($uris);
776                 if ($sum['non_uniquri'] > $method['non_uniquri']) {
777                         $is_spam['non_uniquri'] = TRUE;
778                 }
779                 if (! $asap || ! $is_spam) {
780                         foreach (array_diff(array_keys($pickups),
781                                 array_keys($uris)) as $remove) {
782                                 unset($pickups[$remove]);
783                         }
784                 }
785                 unset($uris);
786         }
787
788         // Return if ...
789         if ($asap && $is_spam) return $progress;
790
791         // ----------------------------------------
792         // Host: Uniqueness (uniq / non-uniq)
793
794         $hosts = array_unique($hosts);
795
796         if (isset($sum['uniqhost'])) $sum['uniqhost'] += count($hosts);
797         if ((! $asap || ! $is_spam) && isset($method['non_uniqhost'])) {
798                 $sum['non_uniqhost'] = $sum['quantity'] - $sum['uniqhost'];
799                 if ($sum['non_uniqhost'] > $method['non_uniqhost']) {
800                         $is_spam['non_uniqhost'] = TRUE;
801                 }
802         }
803
804         // Return if ...
805         if ($asap && $is_spam) return $progress;
806
807         // ----------------------------------------
808         // URI: Bad host (Separate good/bad hosts from $hosts)
809
810         if ((! $asap || ! $is_spam) && isset($method['badhost'])) {
811                 $list    = get_blocklist('list');
812                 $blocked = array_merge_leaves(
813                         $blocked,
814                         blocklist_distiller($hosts, array_keys($list), $asap),
815                         FALSE
816                 );
817                 foreach($list as $key=>$type){
818                         if (! $type) unset($blocked[$key]); // Ignore goodhost etc
819                 }
820                 unset($list);
821                 if (! empty($blocked)) $is_spam['badhost'] = TRUE;
822         }
823
824         // Return if ...
825         //if ($asap && $is_spam) return $progress;
826
827         // ----------------------------------------
828         // End
829
830         return $progress;
831 }
832
833 // ---------------------
834 // Reporting
835
836 // Summarize $progress (blocked only)
837 function summarize_spam_progress($progress = array(), $blockedonly = FALSE)
838 {
839         if ($blockedonly) {
840                 $tmp = array_keys($progress['is_spam']);
841         } else {
842                 $tmp = array();
843                 $method = & $progress['method'];
844                 if (isset($progress['sum'])) {
845                         foreach ($progress['sum'] as $key => $value) {
846                                 if (isset($method[$key]) && $value) {
847                                         $tmp[] = $key . '(' . $value . ')';
848                                 }
849                         }
850                 }
851         }
852
853         return implode(', ', $tmp);
854 }
855
856 function summarize_detail_badhost($progress = array())
857 {
858         if (! isset($progress['blocked']) || empty($progress['blocked'])) return '';
859
860         // Flat per group
861         $blocked = array();
862         foreach($progress['blocked'] as $list => $lvalue) {
863                 foreach($lvalue as $group => $gvalue) {
864                         $flat = implode(', ', array_flat_leaves($gvalue));
865                         if ($flat === $group) {
866                                 $blocked[$list][]       = $flat;
867                         } else {
868                                 $blocked[$list][$group] = $flat;
869                         }
870                 }
871         }
872
873         // Shrink per list
874         // From: 'A-1' => array('ie.to')
875         // To:   'A-1' => 'ie.to'
876         foreach($blocked as $list => $lvalue) {
877                 if (is_array($lvalue) &&
878                    count($lvalue) == 1 &&
879                    is_numeric(key($lvalue))) {
880                     $blocked[$list] = current($lvalue);
881                 }
882         }
883
884         return var_export_shrink($blocked, TRUE, TRUE);
885 }
886
887 function summarize_detail_newtral($progress = array())
888 {
889         if (! isset($progress['hosts'])    ||
890             ! is_array($progress['hosts']) ||
891             empty($progress['hosts'])) return '';
892
893         // Generate a responsible $trie
894         $trie = array();
895         foreach($progress['hosts'] as $value) {
896                 // 'A.foo.bar.example.com'
897                 $resp = whois_responsibility($value);   // 'example.com'
898                 if (empty($resp)) {
899                         // One or more test, or do nothing here
900                         $resp = strval($value);
901                         $rest = '';
902                 } else {
903                         $rest = rtrim(substr($value, 0, - strlen($resp)), '.'); // 'A.foo.bar'
904                 }
905                 $trie = array_merge_leaves($trie, array($resp => array($rest => NULL)), FALSE);
906         }
907
908         // Format: var_export_shrink() -like output
909         $result = array();
910         ksort_by_domain($trie);
911         foreach(array_keys($trie) as $key) {
912                 ksort_by_domain($trie[$key]);
913                 if (count($trie[$key]) == 1 && key($trie[$key]) == '') {
914                         // Just one 'responsibility.example.com'
915                         $result[] = '  \'' . $key . '\',';
916                 } else {
917                         // One subdomain-or-host, or several ones
918                         $subs = array();
919                         foreach(array_keys($trie[$key]) as $sub) {
920                                 if ($sub == '') {
921                                         $subs[] = $key;                 // 'example.com'
922                                 } else {
923                                         $subs[] = $sub . '. ';  // 'A.foo.bar. '
924                                 }
925                         }
926                         $result[] = '  \'' . $key . '\' => \'' . implode(', ', $subs) . '\',';
927                 }
928                 unset($trie[$key]);
929         }
930         return
931                 'array (' . "\n" .
932                         implode("\n", $result) . "\n" .
933                 ')';
934 }
935
936
937 // Check responsibility-root of the FQDN
938 // 'foo.bar.example.com'        => 'example.com'        (.com        has the last whois for it)
939 // 'foo.bar.example.au'         => 'example.au'         (.au         has the last whois for it)
940 // 'foo.bar.example.edu.au'     => 'example.edu.au'     (.edu.au     has the last whois for it)
941 // 'foo.bar.example.act.edu.au' => 'example.act.edu.au' (.act.edu.au has the last whois for it)
942 function whois_responsibility($fqdn = 'foo.bar.example.com', $parent = FALSE, $implicit = TRUE)
943 {
944         static $domain;
945
946         if ($fqdn === NULL) {
947                 $domain = NULL; // Unset
948                 return '';
949         }
950         if (! is_string($fqdn)) return '';
951
952         if (is_ip($fqdn)) return $fqdn;
953
954         if (! isset($domain)) {
955                 $domain = array();
956                 if (file_exists(DOMAIN_INI_FILE)) {
957                         include(DOMAIN_INI_FILE);       // Set
958                 }
959         }
960
961         $result  = array();
962         $dcursor = & $domain;
963         $array   = array_reverse(explode('.', $fqdn));
964         $i = 0;
965         while(TRUE) {
966                 if (! isset($array[$i])) break;
967                 $acursor = $array[$i];
968                 if (is_array($dcursor) && isset($dcursor[$acursor])) {
969                         $result[] = & $array[$i];
970                         $dcursor  = & $dcursor[$acursor];
971                 } else {
972                         if (! $parent && isset($acursor)) {
973                                 $result[] = & $array[$i];       // Whois servers must know this subdomain
974                         }
975                         break;
976                 }
977                 ++$i;
978         }
979
980         // Implicit responsibility: Top-Level-Domains must not be yours
981         // 'bar.foo.something' => 'foo.something'
982         if ($implicit && count($result) == 1 && count($array) > 1) {
983                 $result[] = & $array[1];
984         }
985
986         return $result ? implode('.', array_reverse($result)) : '';
987 }
988
989
990 // ---------------------
991 // Exit
992
993 // Freeing memories
994 function spam_dispose()
995 {
996         get_blocklist(NULL);
997         whois_responsibility(NULL);
998 }
999
1000 // Common bahavior for blocking
1001 // NOTE: Call this function from various blocking feature, to disgueise the reason 'why blocked'
1002 function spam_exit($mode = '', $data = array())
1003 {
1004         $exit = TRUE;
1005
1006         switch ($mode) {
1007                 case '':
1008                         echo("\n");
1009                         break;
1010                 case 'dump':
1011                         echo('<pre>' . "\n");
1012                         echo htmlspecialchars(var_export($data, TRUE));
1013                         echo('</pre>' . "\n");
1014                         break;
1015         };
1016
1017         if ($exit) exit;        // Force exit
1018 }
1019
1020
1021 // ---------------------
1022 // Simple filtering
1023
1024 // TODO: Record them
1025 // Simple/fast spam filter ($target: 'a string' or an array())
1026 function pkwk_spamfilter($action, $page, $target = array('title' => ''), $method = array(), $exitmode = '')
1027 {
1028         $progress = check_uri_spam($target, $method);
1029
1030         if (empty($progress['is_spam'])) {
1031                 spam_dispose();
1032         } else {
1033
1034 // TODO: detect encoding from $target for mbstring functions
1035 //              $tmp = array();
1036 //              foreach(array_keys($target) as $key) {
1037 //                      $tmp[strings($key, 0, FALSE, TRUE)] = strings($target[$key], 0, FALSE, TRUE);   // Removing "\0" etc
1038 //              }
1039 //              $target = & $tmp;
1040
1041                 pkwk_spamnotify($action, $page, $target, $progress, $method);
1042                 spam_exit($exitmode, $progress);
1043         }
1044 }
1045
1046 // ---------------------
1047 // PukiWiki original
1048
1049 // Mail to administrator(s)
1050 function pkwk_spamnotify($action, $page, $target = array('title' => ''), $progress = array(), $method = array())
1051 {
1052         global $notify, $notify_subject;
1053
1054         if (! $notify) return;
1055
1056         $asap = isset($method['asap']);
1057
1058         $summary['ACTION']  = 'Blocked by: ' . summarize_spam_progress($progress, TRUE);
1059         if (! $asap) {
1060                 $summary['METRICS'] = summarize_spam_progress($progress);
1061         }
1062
1063         $tmp = summarize_detail_badhost($progress);
1064         if ($tmp != '') $summary['DETAIL_BADHOST'] = $tmp;
1065
1066         $tmp = summarize_detail_newtral($progress);
1067         if (! $asap && $tmp != '') $summary['DETAIL_NEUTRAL_HOST'] = $tmp;
1068
1069         $summary['COMMENT'] = $action;
1070         $summary['PAGE']    = '[blocked] ' . (is_pagename($page) ? $page : '');
1071         $summary['URI']     = get_script_uri() . '?' . rawurlencode($page);
1072         $summary['USER_AGENT']  = TRUE;
1073         $summary['REMOTE_ADDR'] = TRUE;
1074         pkwk_mail_notify($notify_subject,  var_export($target, TRUE), $summary, TRUE);
1075 }
1076
1077 ?>