#!/usr/local/bin/perl # view_kernel.cgi # View some kernel doc file require './man-lib.pl'; &ReadParse(); $in{'file'} !~ /\.\./ || &error($text{'kernel_epath'}); $in{'file'} !~ /[\\\&\;\`\'\"\|\*\?\<\>\^\(\)\[\]\{\}\$\n\r]/ || &error($text{'kernel_epath'}); foreach $h (split(/\s+/, $config{'kernel_dir'})) { $ok++ if (substr($in{'file'}, 0, length($h)) eq $h); } $ok || &error($text{'kernel_epath'}); -r $in{'file'} || &error($text{'kernel_epath'}); &ui_print_header(undef, $text{'kernel_title'}, ""); print "
| ",&text('kernel_header', $in{'file'}), " |
";
open(FILE, $in{'file'});
read(FILE, $two, 2);
$qm = quotemeta($in{'file'});
if ($two eq "\037\213") {
close(FILE);
&open_execute_command(FILE, "gunzip -c $qm", 1, 1);
}
elsif ($two eq "BZ") {
close(FILE);
&open_execute_command(FILE, "bunzip2 -c $qm", 1, 1);
}
seek(FILE, 0, 0);
if ($in{'file'} =~ /\.htm/i) {
# Display HTML documentation
($dir = $in{'file'}) =~ s/\/[^\/]+$//;
while($line = ";
@for = split(/\s+/, $in{'for'});
while($line = ";
}
close(FILE);
print " |
\n"; &ui_print_footer("", $text{'index_return'});