This file is indexed.

/usr/share/perl5/HTML/TagFilter.pm is in libhtml-tagfilter-perl 1.03-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
package HTML::TagFilter;
use strict;
use base qw(HTML::Parser);
use URI::Escape;
use vars qw($VERSION);

$VERSION = '1.03';

=head1 NAME

HTML::TagFilter - A fine-grained html-filter, xss-blocker and mailto-obfuscator

=head1 SYNOPSIS

    use HTML::TagFilter;
    my $tf = new HTML::TagFilter;
    my $clean_html = $tf->filter($dirty_html);
    
    # or
    
    my $tf = HTML::TagFilter->new(
        allow=>{...}, 
        deny=>{...}, 
        log_rejects => 1, 
        strip_comments => 1, 
        echo => 1,
        verbose => 1,
        skip_xss_protection => 1,
        skip_entification => 1,
        skip_mailto_entification => 1,
        xss_risky_attributes => [...],
        xss_permitted_protocols => [...],
        xss_allow_local_links => 1,
    );
    
    # or

    my $tf = HTML::TagFilter->new(
        on_finish_document =>sub {
        	return "\n<p>" . $self->report . "</p>\n";
        }, 
    );
    
    $tf->parse($some_html);
    $tf->parse($more_html);
    my $clean_html = $tf->output;
    my $cleaning_summary = $tf->report;
    my @tags_removed = $tf->report;
    my $error_log = $tf->error;

=head1 DESCRIPTION

HTML::TagFilter is a subclass of HTML::Parser with a single purpose: it will remove unwanted html tags and attributes from a piece of text. It can act in a more or less fine-grained way - you can specify permitted tags, permitted attributes of each tag, and permitted values for each attribute in as much detail as you like.

Tags which are not allowed are removed. Tags which are allowed are trimmed down to only the attributes which are allowed for each tag. It is possible to allow all or no attributes from a tag, or to allow all or no values for an attribute, and so on.

The filter will also guard against cross-site scripting attacks and obfuscate any mailto:email addresses, unless you tell it not to.

The original purpose for this was to screen user input. In that setting you'll often find that just using:

    my $tf = new HTML::TagFilter;
    put_in_database($tf->filter($my_text));

will do. However, it can also be used for display processes (eg text-only translation) or cleanup (eg removal of old javascript). In those cases you'll probably want to override the default rule set with a small number of denial rules. 

    my $self = HTML::TagFilter->new(deny => {img => {'all'}});
    print $tf->filter($my_text);

Will strip out all images, for example, but leave everything else untouched.

nb (faq #1) the filter only removes the tags themselves: all it does to text which is not part of a tag is to escape the <s and >s, to guard against false negatives and some common cross-site attacks.

obPascal: Sorry about the incredibly long documentation, by the way. When I have time I'll make it shorter.

=head1 CONFIGURATION: RULES

Creating the rule set is fairly simple. You have three options:

=head2 use the defaults

which will produce safe but still formatted html, without tables, javascript or much else apart from inline text formatting, links and images.

=head2 selectively override the defaults

use the allow_tags and deny_tags methods to pass in one or more additional tag settings. eg:

    $self->allow_tags({ p => { class=> ['lurid','sombre','plain']} });
    $self->deny_tags({ img => { all => [] });

will mean that all attributes other than class="lurid|sombre|plain" will be removed from <p> tags, but the other default rules will remain unchanged. See below for more about how to specify rules.

=head2 supply your own configuration

To override the defaults completely, supply the constructor with some rules:

    my $self = HTML::TagFilter->new( 
        allow=>{ p => { class=> ['lurid','sombre','plain']} }
    );

In this case only the rules you supply will be applied: the defaults are ignored. You can achieve the same thing after construction by first clearing the rule set:

    my $self = HTML::TagFilter->new();
    $self->clear_rules();
    $self->allow_tags({ p => { align=> ['left','right','center']} });

Future versions are intended to offer a more sophisticated rule system, allowing you to specify combinations of attributes, ranges for values and generally match names in a more fuzzy way.

=head1 CONFIGURATION: BEHAVIOUR

There are currently seven switches that will change the behaviour of the filter. They're supplied at construction time alongside any rules you care to specify. All of them default to 'off':

  my $tf = HTML::TagFilter->new(
    log_rejects => 1,
    strip_comments => 1,
    echo => 1,
    verbose => 1,
    skip_xss_protection => 1,
    skip_ltgt_entification => 1,
    skip_mailto_entification => 1,
  );

=over 4

=item log_rejects

Set log to something true and the filter will keep a detailed log of all the tags it removes. The log can be retrieved by calling report(), which will return a summary in scalar context and a detailed AoH in list.

=item echo

Set echo to 1, or anything true, and the output of the filter will be sent straight to STDOUT. Otherwise the filter is silent until you call output().

=item verbose

Set verbose to 1, or anything true, and error messages will be output to STDERR as well as being stockpiled ready for a call to error().

=item strip_comments

Set strip_comments to 1 and comments will be stripped. If you don't, they won't.

=item skip_xss_protection

Unless you set skip_xss_protection to 1, the filter will postprocess some of its output to protect against common cross-site scripting attacks. 

It will entify any < and > in non-tag text, entify quotes in attribute values (the Parser will have unencoded them) and strip out values for vulnerable attributes if they don't look suitably like urls. By default these attributes are checked: src, lowsrc, href, background and cite. You can replace that list (not extend it) at any time:

    $self->xss_risky_attributes( qw(your list of attributes) );

=item skip_ltgt_entification

Disables the entification of < and > even if cross-site protection is on.

=item skip_mailto_entification

Unless you specify otherwise, any mailto:url seen by the filter is completely turned into html entities. <a href="mailto:wross@cpan.org">will</a> becomes <a href="mailto:%77%72%6F%73%73%40%63%70%61%6E%2E%6F%72%67">will</a>. This should defeat most email-harvesting software, but note that it has no effect on the text of your link, only its address. Links like <a href="mailto:wross@cpan.org">wross@cpan.org</a> are only partly obscured and should be avoided.

=item other constructor parameters

You can also supply values that will be used as default values for the methods of the same name:

  xss_risky_attributes
  xss_permitted_protocols

each of which expects a list of strings, and 

  xss_allow_local_links

which wants a single true or false value.

=back

=head1 RULES

Each element is tested as it is encountered, in two stages:

=over 4

=item tag filter

Just checks that this tag is permitted, and blocks the whole thing if not. Applied to both opening and closing tags.

=item attribute filter

Any tag that passes the tag filter will remain in the text, but the attribute filter will strip out of it any attributes that are not permitted, or which have values that are not permitted for that tag/attribute combination.

=back

=head2 format for rules

There are two kinds of rule: permissions and denials. They work as you'd expect, and can coexist, but they're not quite symmetrical. Denial rules are intended to complement permission rules, so that they can provide a kind of compound 'unless'.

* If there are any 'permission' rules, then everything that doesn't satisfy any of them is eliminated.

* If there are any 'deny' rules, then anything that satisfies any of them is eliminated.

* If there are both denial and permission rules, then everything either satisfies a denial rule or fails to satisfy any of the permission rules is eliminated.

* If there is neither kind, we strip out everything just to be on the safe side.

The two most likely setups are 

1. a full set of permission rules and maybe a couple of denial rules to eliminate pet hates.

2. no permission rules at all and a small set of denial rules to remove particular tags.

Rules are passed in as a HoHoL:

    { tag name->{attribute name}->[valuelist] }

There are three reserved words: 'any and 'none' stand respectively for 'anything is permitted' and 'nothing is permitted', or if in denial: 'anything is removed' and 'nothing is removed'. 'all' is only used in denial rules and it indicates that the whole tag should be stripped out: see below for an explanation and some mumbled excuses.

For example:

    $self->allow_tags({ p => { any => [] });

Will permit <p> tags with any attributes. For clarity's sake it may be shortened to:

    $self->allow_tags({ p => { 'any' });

but note that you'll get a warning about the odd number of hash elements if -w is on, and in the absence of the => the quotes are required. And

    $self->allow_tags({ p => { none => [] });

Will allow <p> tags to remain in the text, but all attributes will be removed. The same rules apply at all levels in the tag/attribute/value hierarchy, so you can say things like:

    $self->allow_tags({ any => { align => [qw(left center right)] });
    $self->allow_tags({ p => { align => ['any'] });

=head2 examples

To indicate that a link destination is ok and you don't mind what value it takes:

    $self->allow_tags({ a => { 'href' } });

To limit the values an attribute can take:

    $self->allow_tags({ a => { class => [qw(big small middling)] } });

To clear all permissions:

    $self->allow_tags({});

To remove all onClicks from links but allow all targets:

    $self->allow_tags({ a => { onClick => ['none'], target => [], } });

You can combine allows and denies to create 'unless' rules:

    $self->allow_tags({ a => { any => [] } });
    $self->deny_tags({ a => { onClick => [] } });

Will remove only the onClick attribute of a link, allowing everything else through. If this was your only purpose, you could achieve the same thing just with the denial rule and an empty permission set, but if there's other stuff going on then you probably need this combination.

=head2 order of application

denial rules are applied first. we take out whatever you specify in deny, then take out whatever you don't specify in allow, unless the allow set is empty, in which case we ignore it. If both sets are empty, no tags gets through.

(We prefer to err on the side of less markup, but I expect this will be configurable soon.)

=head2 oddities

Only one deliberate one, so far. The main asymmetry between permission and denial rules is that from

    allow_tags->{ p => {...}}

it follows that p tags are permitted, but the reverse is not true: 

    deny_tags->{ p => {...}}

doesn't imply that p tags are removed, just that the relevant attributes are removed from them. If you want to use a denial rule to eliminate a whole tag, you have to say so explicitly:

    deny_tags->{ p => {'all'}}

will remove every <p> tag, whereas

    deny_tags->{ p => {'any'}}

will just remove all the attributes from <p> tags. Not very pretty, I know. It's likely to change, but probably not until after we've invented a system for supplying rules in a more readable format.

=cut

sub allowed_by_default {
	return {
		h1 => { none => [] },
		h2 => { none => [] },
		h3 => { none => [] },
		h4 => { none => [] },
		h5 => { none => [] },
		p => { none => [] },
		a => { href => [], name => [], target => [] },
		br => { clear => [qw(left right all)] },
		ul =>{ type => [] },
		li =>{ type => [] },
		ol => { none => [] },
		em => { none => [] },
		i => { none => [] },
		b => { none => [] },
		strong => { none => [] },
		tt => { none => [] },
		pre => { none => [] },
		code => { none => [] },
		hr => { none => [] },
		blockquote => { none => [] },
		img => { src => [], height => [], width => [], alt => [], align => [] },
		any => { align => [qw(left right center)]  },
	};
}

sub denied_by_default {
	return {
		blink => { all => [] },
		marquee => { all => [] },
		any => { style => [], onMouseover => [], onClick => [], onMouseout => [], },
	};
}

sub new {
    my $class = shift;
    my $config = {@_};
    
    my $self = $class->SUPER::new(api_version => 3);

    $self->SUPER::handler(start => "filter_start", 'self, tagname, attr, attrseq');
    $self->SUPER::handler(end =>  "filter_end", 'self, tagname');
    $self->SUPER::handler(default => "clean_text", "self, text");
    $self->SUPER::handler(comment => "") if delete $config->{strip_comments};
    
    $self->{_allows} = {};
    $self->{_denies} = {};
    $self->{_settings} = {};
    $self->{_log} = ();
    $self->{_error} = ();
    $self->{_triggers} = ();

    $config->{allow} = allowed_by_default() unless $config->{allow} || $config->{deny};
    $config->{deny} = denied_by_default() unless $config->{allow} || $config->{deny};

    $self->_add_trigger($_ => delete $config->{$_}) for (qw(on_construct on_start_document on_open_tag on_process_text on_close_tag on_finish_document));
    $self->allow_tags(delete $config->{allow});
    $self->deny_tags(delete $config->{deny});
    
    $self->{_settings}->{log} = 1 if delete $config->{log_rejects};
    $self->{_settings}->{echo} = 1 if delete $config->{echo};
    $self->{_settings}->{xss} = 1 unless delete $config->{skip_xss_protection};
    $self->{_settings}->{ent} = 1 unless delete $config->{skip_entification} || delete $config->{skip_ltgt_entification};
    $self->{_settings}->{mailto} = 1 unless delete $config->{skip_mailto_entification};
    $self->{_settings}->{verbose} = 1 if delete $config->{verbose};
    $self->_log_error("[warning] ignored unknown config field: $_") for keys %$config;
    
	$self->_call_trigger('on_construct');
    return $self;
}

sub _add_trigger {
	my ($self, $point, $sub) = @_;
	if ($sub && ref $sub eq 'CODE') {
		$self->{_triggers}{$point} = $sub;
	} else {
		$self->{_triggers}{$point} = 1;
		my $class = ref $self;
    	no strict ('refs');
		*{"HTML::TagFilter::$point"} = sub { return };
	}
}

sub _call_trigger {
	my ($self, $point, @args) = @_;
	my $sub = $self->{_triggers}{$point};
	if ( $sub && ref $sub eq 'CODE') {
		my $response;
		eval {
			$response = &$sub($self, @args);
		};
		if ($@) {
			$self->_log_error("[warning] $point callback failed: $@");
		} elsif ($response) {
			$self->add_to_output( $response );
		}
		
	} elsif ($sub) {
		$self->$point(@args);
		
	} else {
		my ($package, $filename, $line) = caller;
		$self->_log_error("[warning] unknown trigger point '$point' called at $package line $line");
	}
}

=head1 CALLBACKS

Several trigger points are provided for the convenience of people who want to extend rather than replacing the normal behaviour of a tagfilter object. To use them, you just pass in a code reference with the appropriate name at construction time. 

The example below will maintain a stack of seen tags and make the filter repair tag nesting, so that any unclosed tags are closed in roughly the right place, and any unopened close tags are omitted:

  my $filter = HTML::TagFilter->new(
	on_start_document => sub {
		my ($self, $rawtext) = @_;
		$self->{_tag_stack} = [];
		return;
	},
	on_open_tag => sub {
		my ($self, $tag, $attributes, $sequence) = @_;
		push @{ $self->{_tag_stack} }, $$tag unless grep {$_ eq $$tag} qw(img br hr meta link);
		return;
	},
	on_close_tag => sub {
		my ($self, $tag) = @_;
		unless (@{ $self->{_tag_stack} } && grep {$_ eq $$tag} @{ $self->{_tag_stack} }) {
			undef ${ $tag };
			return;
		}
		my @unclosed;
		while (my $lasttag = pop @{ $self->{_tag_stack} })  {
			return join '', map "</$_>", @unclosed if $lasttag eq $$tag;
			push @unclosed, $lasttag;
		}
	},
	on_finish_document => sub {
		my ($self, $cleantext) = @_;
		return join '', map "</$_>", reverse @{ $self->{_tag_stack} };
	},
  );

You can also fill these trigger points in subclass: If no callback method is supplied, we will call the class method of the same (triggerpoint) name instead. In this class those methods do nothing, so you can selectively override them without affecting normal functionality. To change all <b> tags to <strong> tags, for example:

  sub on_open_tag {
	my ($self, $tag, $attributes, $sequence) = @_;
  	$$tag = 'strong' if $$tag eq 'b';
  }

  sub on_close_tag {
	my ($self, $tag) = @_;
  	$$tag = 'strong' if $$tag eq 'b';
  }

As you can see here The tag and attribute values are passed in as string references: changes you make in callback will change the tag itself.

The available trigger points are:

=head3 on_construct ()

This is called during construction of a new TagFilter object, just before the constructed object is returned. It receives no arguments apart from the tagfilter object.

=head3 on_start_document ( $text )

This is called by the filter() method, and passed a reference to the text that is to be filtered. You can change the text, or return any values that should be prepended to output.

=head3 on_open_tag ( $tagname, $attributes, $attribute_sequence )

This is called by the filter_start() method, with is the checker of opening and single tags. It is passed the same variables as that method uses: the name of the tag, a hashref containing all its attributes and a listref holding attribute names in order.

Together with on_close_tag, this hook is very useful for adding document-tidying functions like tag closure, or for more sophisticated logging than tagfilter provides by itself.

=head3 on_process_text ( $text )

We normally just translate disallowed characters in text blocks, but this method receives a reference to the text string, so you can do what you like with it.

Note that if you just want to add more disallowed characters, you can just subclass character_map().

=head3 on_close_tag ( $text )

This is called by the filter_end() method, which is the checker of closing tags. It is passed the closing tag name.

=head3 on_finish_document ( $text )

This is called by the output() method. It receives no arguments, or we get the output a bit tangled up, but whatever you return will be appended to the final output string.

=head1 METHODS

For reference:

=head3 HTML::TagFilter->new();

If called without parameters, loads the default set. Otherwise loads the rules you supply. For the rule format, see above.

=head2 FILTER METHODS

These make up the main interface. You probably won't often need to call anything but filter().

=head3 $tf->filter($html);

Exactly equivalent to:

    $tf->parse($html);
    $tf->output();

but more useful, because it'll fit in a oneliner. eg:

    print $tf->filter( $pages{$_} ) for keys %pages;

Note that calling filter() will clear anything that was waiting in the output buffer, and will clear the buffer again when it's finished. it's meant to be a one-shot operation and doesn't co-operate well. use parse() and output() if you want to daisychain.

=cut

sub filter {
    my ($self, $text) = @_;
    return unless $text;
	$self->_call_trigger('on_start_document', \$text);
    $self->{output} = '';
    $self->parse($text);
    return $self->output unless $self->{_settings}->{echo};
}

=head3 parse($text);

The parse method is inherited from HTML::Parser, but most of its ancillary methods are subclassed here and the output they normally print is kept for later. The other configuration options that HTML::Parser normally offers are not passed on, at the moment, nor can you override the handler definitions in this module.

=head3 output()

This will return and clear the output buffer. It will conclude the processing of your text, but you can of course pass a new piece of text to the same parser object and begin again.

=cut

sub output {
    my $self = shift;
    $self->eof;
    $self->_call_trigger('on_finish_document');
    my $output = $self->{output};
    $self->_log_error("[warning] no output from filter") unless $output;
    $self->{output} = '';
    return $output;
}

=head3 report()

If called in list context, returns the array of rejected tag/attribute/value combinations. 

In scalar context returns a more or less readable summary. Returns () if logging not enabled. Clears the log.

=cut

sub report {
    my $self = shift;
    return () unless defined $self->{_log};
    my @rejects = @{ $self->{_log} };
    $self->{_log} = ();
    return @rejects if wantarray;

    my $report = "The following tags and attributes have been stripped:\n";
    for (@rejects) {
        if ($_->{attribute}) {
            $report .= $_->{attribute} . '="' . $_->{value} . '" from the tag &lt;' . $_->{tag} . "&gt;";
            $report .= "(url disallowed)" if $_->{reason} eq 'url';
            $report .= "\n";
        } else {
            $report .= '&lt;' . $_->{tag} . "&gt;\n";
        }
    }
    return $report;
}

=head3 filter_start($tag, $attributes_hashref, $attribute_sequence_listref);

This is the handler for html start tags: it checks the tag against the current set of rules, then checks each attribute and its value. Any text that fails is stripped out: the rest is passed to output.

=cut

sub filter_start {
    my ($self, $tagname, $attributes, $attribute_sequence) = @_;
    return unless $self->tag_ok(lc($tagname));
    $self->_call_trigger('on_open_tag', \$tagname, $attributes, $attribute_sequence);
    return unless $tagname;
    
    for (@$attribute_sequence) {
        my @data = (lc($tagname), lc($_), lc($attributes->{$_}));      # (tag, attribute, value)
        delete $attributes->{$_} unless $self->attribute_ok(@data) && $self->url_ok(@data);
    }
    my $surviving_attributes = join('', map { " $_=\"" . $self->_xss_clean_attribute($attributes->{$_}, $_) . '"' } grep { defined $attributes->{$_} } @$attribute_sequence);
    $self->add_to_output("<$tagname$surviving_attributes>");
}

=head3 filter_end($tag);

This is the handler for html end tags: it checks the tag against the current set of rules, and passes it to output if it's ok.

=cut

sub filter_end {
    my ($self, $tagname) = @_;
    return unless $self->tag_ok(lc($tagname));
    $self->_call_trigger('on_close_tag', \$tagname);
    return unless $tagname;
    $self->add_to_output( "</$tagname>" );
}

=head3 clean_text($text);

This is the handler for text: anything which is not tag is passed through here before being passed to output. At the moment it only applies some very simple cross-site protection: subclassing this method is an easy way to modify just the text part of your page.

=cut

sub clean_text {
    my ($self, $text) = @_;
	$self->_call_trigger('on_process_text', \$text);
    $self->add_to_output($self->_xss_clean_text($text));
}

sub _xss_clean_text {
    my ($self, $text) = @_;
    return $text unless $self->{_settings}->{xss};
    return $text unless $self->{_settings}->{ent};
    return $self->_clean_text($text);
}

sub _clean_text {
    my ($self, $text) = @_;
    my $filter = $self->character_map;
    $text =~ s/$_/$$filter{$_}/gs for keys %$filter;
    return $text;
}

=head3 character_map($text);

Returns a hashref of {disallowed_character => replacement_character} for use when cleaning text blocks.

=cut

sub character_map {
    my $self = shift;
    return $self->{_settings}->{charmap} = $_[0] if @_;
    return $self->{_settings}->{charmap} if exists $self->{_settings}->{charmap};
	return $self->{_settings}->{charmap} = {
		'"' => '&quot;',
		"'" => '&#39;',
		'>' => '&gt;',
		'<' => '&lt;',
	};
}

=head3 add_to_output($text);

The supplied text is appended to the output buffer (or immediately printed, if echo is on).

=cut

sub add_to_output {
    my $self = shift;
    return unless @_ && defined $_[0];
    if ($self->{_settings}->{echo}) {
        print $_[0];
    } else {
        $self->{output} .= $_[0];
    }
}

=head3 logging($boolean);

This provides get-or-set access to the 'log' configuration parameter. Switching logging on or off during parsing will result in incomplete reports, of course.

=cut

sub logging {
    my $self = shift;
    $self->{_settings}->{log} = $_[0] if @_;
    return $self->{_settings}->{log};
}

=head3 log_denied($refused_tag);

If logging is on, this method will append the supplied failure information to the log. The standard form for this is a hashref that will contain some or all of these keys: 'tag', 'attribute', 'value' and 'reason'.

=cut

sub log_denied {
    my ($self, $bad_tag) = @_;
    return unless $self->logging;
    push @{ $self->{_log} } , $bad_tag;
}

=head2 RULE CHECKERS

Compare individual tags and attributes against the rule set currently in force. These simple methods are the core of tagfilter: most of the rest is configuration, and the filter methods are really just glue to connect these tests to HTML::Parser's progress through a document.

=head3 tag_ok($tag);

Returns true if the supplied tag name is allowed in the text. If not, returns false and logs the failure with the reason 'tag'.

=cut

sub tag_ok {
    my ($self, $tagname) = @_;
    my $ok = $self->_tag_ok($tagname);
    $self->log_denied({tag => $tagname, reason => 'tag' }) unless $ok;
    return $ok;
}

sub _tag_ok {
    my ($self, $tagname) = @_;
    return 0 unless $tagname && $self->has_rules;
    return 0 if $self->_check('_denies', 'attributes', $tagname, 'all');
    return 1 unless $self->has_allow_rules;
    return 1 if $self->_check('_allows', 'tags', $tagname);
    return 0;
}

=head3 attribute_ok($tag, $attribute);

Returns true if it that attribute is allowed for that tag, and it is allowed to have the supplied value. If not, returns false and logs the failure with the reason 'attribute'.

=cut

sub attribute_ok {
    my ($self, $tagname, $attribute, $value) = @_;
    my $ok = $self->_attribute_ok( $tagname, $attribute, $value );
    $self->log_denied({ tag => $tagname, attribute => $attribute, value => $value, reason => 'attribute' }) unless $ok;
    return $ok;
}

sub _attribute_ok {
    my ($self, $tagname, $attribute, $value) = @_;
    return 0 unless $tagname && $attribute && $self->has_rules;
    return 0 if $self->_check('_denies','attributes', $tagname, 'any');
    return 0 if $self->_check('_denies','values', $tagname, 'all',);
    return 0 if $self->_check('_denies','values', $tagname, $attribute, 'any');
    return 0 if $self->_check('_denies','values', $tagname, $attribute, $value);
    return 1 unless $self->has_allow_rules;
    return 1 if $self->_check('_allows','attributes', $tagname, 'any');
    return 1 if $self->_check('_allows','values', 'any', $attribute, 'any');
    return 1 if $self->_check('_allows','values', 'any', $attribute, $value);
    return 1 if $self->_check('_allows','values', $tagname, $attribute, 'any');
    return 1 if $self->_check('_allows','values', $tagname, $attribute, $value);
    return 0;
}

=head3 url_ok($tag, $attributes, $value);

If xss protection is on, we check whether this attribute is a url field, and if it is we check that the url is a url (rather than a script tag or some other naughtiness). Failures are logged with the reason 'url'.

=cut

sub url_ok {
    my ($self, $tagname, $attribute, $value) = @_;    
    my $ok = $self->_url_ok( $attribute, $value );
    $self->log_denied({ tag => $tagname, attribute => $attribute, value => $value, reason => 'url' }) unless $ok;
    return $ok;
}

sub _url_ok {
    my ($self, $attribute, $value) = @_;    
    return 1 unless $self->{_settings}->{xss};
	return 1 unless $self->_is_risky($attribute);
	return 1 if $self->xss_allow_local_links && ($value =~ /^\.*\//s || $value !~ /:/s);
    return 1 if grep { $value =~ /^$_:/s } $self->xss_permitted_protocols;
    return 0;
}

# _xss_clean_attribute(): defends against very basic XSS attacks by entifying quote marks and <>

sub _xss_clean_attribute {
    my ($self, $text, $attribute) = @_;
    return $text unless $self->{_settings}->{xss};
    my $filter = $self->character_map;
    $text =~ s/$_/$$filter{$_}/gs for keys %$filter;
    return $self->_obfuscate_mailto($text) if $attribute eq 'href';
    return $text;
}

sub _is_risky {
    my ($self, $attribute) = @_;
    my %risky = map { $_ => 1 } $self->xss_risky_attributes;
    return $risky{$attribute};
}

# uri_escape is imported from URI::Escape

sub _obfuscate_mailto {
	my ($self, $address) = @_;
	return $address unless $self->{_settings}->{mailto};
	return $address unless $address =~ /^mailto:(.*)/;
	my $garbled = join '', map { uri_escape($_, "\0-\377") } split //, $1;
	return "mailto:$garbled";
}

# _check(): a private function to test for a value buried deep in a HoHoHo 
# without cluttering the place up with autovivification.

sub _check {
    my $self = shift;
    my $field = shift;
    my @russian_dolls = @_;
    unless (@russian_dolls) {
        $self->_log_error("[warning] _check: no keys supplied");
        return 0;
    }
    my $deepref = $self->{$field};
    for (@russian_dolls) {
        unless (ref $deepref eq 'HASH') {
            $self->_log_error("[error] _check: deepref not a hashref");
            return 0;
        }
        return 0 unless $deepref->{$_};
        $deepref = $deepref->{$_};
    }
    return 1;
}

=head2 configuration methods

The configuration of the filter is held in a hash of hashes, usually referred to here as a hohoho as it usually has at least three levels. These methods expect to receive full or partial rule sets in the simplified form described above and merge them into - or drop them on top of - the active set.

=head3 allow_tags($hashref)

Takes a hashref of permissions and adds them to what we already have, replacing at the tag level where rules are already defined. In other words, you can add a tag to the existing set, but to add an attribute to an existing tag you have to specify the whole set of attribute permissions.  

If no rules are sent (eg an empty hashref, or nothing at all, or a non-hashref) this clears the permission rule set.

=cut

sub allow_tags {
    my ($self, $tagset) = @_;
    if ($tagset && ref $tagset eq 'HASH' && %$tagset) {
        $self->_configurise('_allows', $tagset);
    } else {
        $self->{_allows} = {};
    }
    return 1;
}

=head3 deny_tags($hashref)

likewise but sets up (or clears) denial rules.

=cut

sub deny_tags {
    my ($self, $tagset) = @_;
    if ($tagset && ref $tagset eq 'HASH' && %$tagset) {
        $self->_configurise('_denies', $tagset);
    } else {
        $self->{_denies} = {};
    }
    return 1;
}

=head3 has_rules()

Returns true only if either allow or deny rules have been defined.

=cut

sub has_rules {
    my $self = shift;
    return 1 if $self->has_allow_rules || $self->has_deny_rules;
    return 0;
}

=head3 has_allow_rules()

Returns true if allow rules have been defined.

=cut

sub has_allow_rules {
    my $self = shift;
    return 1 if $self->{_allows} && %{ $self->{_allows} };
    return 0;
}

=head3 has_deny_rules()

Returns true if denial rules have been defined.

=cut

sub has_deny_rules {
    my $self = shift;
    return 1 if $self->{_denies} && %{ $self->{_denies} };
    return 0;
}

=head3 clear_rules()

Clears the entire rule set ready for the supply of a new set. A filter with no rules will strip *all* html from supplied text, by the way.

=cut

sub clear_rules {
    my $self = shift;
    $self->{_allows} = {};
    $self->{_denies} = {};
}

# _configurise(): a private function that translates input rules into
# the bushy HoHoHo's we're using for lookup.

sub _configurise {
    my ($self, $field, $tagset) = @_;

     unless (ref $tagset eq 'HASH') {
         $self->_log_error("[error] _configurise: supplied rules not a hashref");
         return ();
     }
     $self->_log_error("[warning] _configurise: supplied rule set empty") unless keys %$tagset;

    TAG: foreach my $tag (keys %$tagset) {
        $self->{$field}->{tags}->{$tag} = 1;
        
        ATT: foreach my $att (keys %{ $tagset->{$tag} }) {
			if ($att eq 'none') {
				$self->{$field}->{attributes}->{$tag} = {};
				next TAG;
			}
            $self->{$field}->{attributes}->{$tag}->{$att} = 1;
            $self->{$field}->{values}->{$tag}->{$att}->{any} = 1
            	unless defined( $tagset->{$tag}->{$att} ) && @{ $tagset->{$tag}->{$att} };
            foreach my $val (@{ $tagset->{$tag}->{$att} }) {
                $self->{$field}->{values}->{$tag}->{$att}->{$val} = 1;
            }
        }
    }
}

=head3 allows()

Returns the full set of permissions as a HoHoho. Can't be set this way: just a utility function in case you want to either display the rule set, or get the whole thing so you can send it back to allow_tags in a modified form.

=head3 denies()

Likewise for denial rules.

=cut

sub allows {
    my $self = shift;
    return $self->{_allows};
}

sub denies {
    my $self = shift;
    return $self->{_denies};
}

=head2 XSS configuration

Cross-site scripting attacks are invented or identified all the time. We'll try and stay up to date, but you may be more paranoid or up to date than us: if so, just override one or more of these methods.

=head3 xss_risky_attributes( @list_of_attributes );

Sets and returns a list of attributes that are considered to be urls, and should be checked for well-formedness. 

The default list is href, src, lowsrc, cite and background: any supplied values will be used to replace (not extend) this list.

=cut

sub xss_risky_attributes { 
    my $self = shift;
    return @{ $self->{_xss_att} } = @_ if @_;
    return @{ $self->{_xss_att} } if $self->{_xss_att};
    return @{ $self->{_xss_att} } = qw(src href cite lowsrc background) ;
}

=head3 xss_permitted_protocols( @list_of_prefixes );

Sets and returns a list of protocols that are acceptable in attributes that we considered to be urls (ie they're in the list returned by C<xss_risky_attributes>).

The default list is http, https, ftp and mailto. Any supplied values will be used to replace (not extend) this list. Don't include the colon.

=cut

sub xss_permitted_protocols { 
    my $self = shift;
    return @{ $self->{_xss_stems} } = @_ if @_;
    return @{ $self->{_xss_stems} } if $self->{_xss_stems};
    return @{ $self->{_xss_stems} } = qw(http https mailto ftp) ;
}

=head3 xss_allow_local_links( $boolean );

If this method returns a true value, then addresses that begin '/' or '../' will be accepted in url fields. 

You can set this value by calling the method with a parameter, as usual. The default is true.

=cut

sub xss_allow_local_links { 
    my $self = shift;
    return $self->{_xss_local} = $_[0] if @_;
    return $self->{_xss_local} if defined $self->{_xss_local};
    return $self->{_xss_local} = 1;
}

=head3 error()

Returns an error report of currently dubious usefulness. If you want to record error messages in subclass, call $self->_add_error(@messages). 

There is no class-level error logging mechanism at the moment, which is why the usefulness of this is rather limited.

=cut

sub error {
    my $self = shift;
    return "HTML::TagFilter errors:\n" . join("\n", @{$self->{_error}}) if $self->{_error};
	return '';
}

# _log_error: append a message to the error log

sub _log_error {
    my $self = shift;
    push @{ $self ->{_error} } , @_;
    warn @_ if $self->{_settings}->{verbose};
}

# handler() exists here only to admonish people who try to use this module as they would
# HTML::Parser. The handler definitions in new() use SUPER::handler() to get around this.

sub handler {
    die("You can't set handlers for HTML::TagFilter. Perhaps you should be using HTML::Parser directly?");
}

sub version {
	return $VERSION;
}

1;

=head1 TO DO

Make the documentation about half as long

More sanity checks on incoming rules

Simpler rule-definition interface

Complex rules. The long term goal is that someone can supply a rule like "remove all images where height or width is missing" or "change all font tags where size="2" to <span class="small">. Which will be hard. For a start, HTML::Parser doesn't see paired start and close tags, which would be required for conditional actions.

An option to speed up operations by working only at the tag level and using HTML::Parser's built-in screens.

=head1 REQUIRES

HTML::Parser

=head1 SEE ALSO

L<HTML::Parser>

=head1 AUTHOR

William Ross, wross@cpan.org

=head1 COPYRIGHT

Copyright 2001-3 William Ross

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Please use https://rt.cpan.org/ to report bugs & omissions, describe cross-site attacks that get through, or suggest improvements.

=cut