use warnings;
use strict;
use IkiWiki;
-use IPC::Open2;
sub import { #{{{
hook(type => "preprocess", id => "googlecalendar",
sub sanitize (@) { #{{{
my %params=@_;
- my $tries=10;
my $pid;
- while (1) {
- eval {
- $pid=open2(*IN, *OUT, 'tidy -quiet -asxhtml -utf8 --show-body-only yes --show-warnings no --tidy-mark no');
- };
- last unless $@;
- $tries--;
- if ($tries < 1) {
- debug("failed to run tidy: $@");
- return $params{content};
- }
- }
+ my $sigpipe=0;
+ $SIG{PIPE}=sub { $sigpipe=1 };
+ $pid=open2(*IN, *OUT, 'tidy -quiet -asxhtml -utf8 --show-body-only yes --show-warnings no --tidy-mark no');
+
# open2 doesn't respect "use open ':utf8'"
- binmode (IN, ':utf8');
+ binmode (IN, ':utf8');
binmode (OUT, ':utf8');
print OUT $params{content};
close IN;
waitpid $pid, 0;
+ return $params{content} if $sigpipe;
+ $SIG{PIPE}="DEFAULT";
+
return $ret;
} # }}}
# TODO: should really add the png to renderedfiles and call
# check_overwrite, but currently renderedfiles
# only supports listing one file per page.
- my $tries=10;
my $pid;
- while (1) {
- eval {
- $pid=open2(*IN, *OUT, "dot -Tpng -o '$config{destdir}/$params{page}.png' -Tcmapx");
- };
- last unless $@;
- $tries--;
- if ($tries < 1) {
- return "failed to run dot: $@";
- }
- }
+ my $sigpipe=0;;
+ $SIG{PIPE}=sub { $sigpipe=1 };
+ $pid=open2(*IN, *OUT, "dot -Tpng -o '$config{destdir}/$params{page}.png' -Tcmapx");
+
# open2 doesn't respect "use open ':utf8'"
binmode (IN, ':utf8');
binmode (OUT, ':utf8');
local $/=undef;
my $ret="<object data=\"".
- IkiWiki::abs2rel("$params{page}.png", IkiWiki::dirname($params{page})).
- "\" type=\"image/png\" usemap=\"#linkmap$mapnum\">\n".
- <IN>.
- "</object>";
+ IkiWiki::abs2rel("$params{page}.png", IkiWiki::dirname($params{page})).
+ "\" type=\"image/png\" usemap=\"#linkmap$mapnum\">\n".
+ <IN>.
+ "</object>";
close IN;
+
waitpid $pid, 0;
+ $SIG{PIPE}="DEFAULT";
+ if ($sigpipe) {
+ return "[[linkmap failed to run dot]]";
+ }
+
return $ret;
} #}}}
my %params=@_;
my $content=$params{content};
- my $tries=10;
my $pid;
- while (1) {
- eval {
- # Try to call python and run our command
- $pid=open2(*IN, *OUT, "python", "-c", $pyCmnd)
- or return $content;
- };
- last unless $@;
- $tries--;
- if ($tries < 1) {
- debug("failed to run python to convert rst: $@");
- return $content;
- }
- }
+ my $sigpipe=0;
+ $SIG{PIPE}=sub { $sigpipe=1 };
+ $pid=open2(*IN, *OUT, "python", "-c", $pyCmnd);
+
# open2 doesn't respect "use open ':utf8'"
binmode (IN, ':utf8');
binmode (OUT, ':utf8');
close IN;
waitpid $pid, 0;
+ return $content if $sigpipe;
+ $SIG{PIPE}="DEFAULT";
+
return $ret;
} # }}}
* inline: Add ability to sort by page name, based on a patch from
Benjamin A'Lee.
+ * Fix a forkbomb in various calls to IPC::Open2, which has a highly
+ braindead interface. Closes: #389383
- -- Joey Hess <joeyh@debian.org> Mon, 25 Sep 2006 17:06:39 -0400
+ -- Joey Hess <joeyh@debian.org> Mon, 25 Sep 2006 17:22:52 -0400
ikiwiki (1.27) unstable; urgency=low