/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm is in debconf 1.5.61.
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 | #!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::FrontEnd::Passthrough;
use strict;
use Carp;
use IO::Socket;
use IO::Handle;
use Debconf::FrontEnd;
use Debconf::Element;
use Debconf::Element::Select;
use Debconf::Element::Multiselect;
use Debconf::Log qw(:all);
use Debconf::Encoding;
use base qw(Debconf::FrontEnd);
my ($READFD, $WRITEFD, $SOCKET);
if (defined $ENV{DEBCONF_PIPE}) {
$SOCKET = $ENV{DEBCONF_PIPE};
} elsif (defined $ENV{DEBCONF_READFD} && defined $ENV{DEBCONF_WRITEFD}) {
$READFD = $ENV{DEBCONF_READFD};
$WRITEFD = $ENV{DEBCONF_WRITEFD};
} else {
die "Neither DEBCONF_PIPE nor DEBCONF_READFD and DEBCONF_WRITEFD were set\n";
}
sub init {
my $this=shift;
if (defined $SOCKET) {
$this->{readfh} = $this->{writefh} = IO::Socket::UNIX->new(
Type => SOCK_STREAM,
Peer => $SOCKET
) || croak "Cannot connect to $SOCKET: $!";
} else {
$this->{readfh} = IO::Handle->new_from_fd(int($READFD), "r") || croak "Failed to open fd $READFD: $!";
$this->{writefh} = IO::Handle->new_from_fd(int($WRITEFD), "w") || croak "Failed to open fd $WRITEFD: $!";
}
binmode $this->{readfh}, ":utf8";
binmode $this->{writefh}, ":utf8";
$this->{readfh}->autoflush(1);
$this->{writefh}->autoflush(1);
$this->elements([]);
$this->interactive(1);
$this->need_tty(0);
}
sub talk {
my $this=shift;
my $command=join(' ', map { Debconf::Encoding::to_Unicode($_) } @_);
my $reply;
my $readfh = $this->{readfh} || croak "Broken pipe";
my $writefh = $this->{writefh} || croak "Broken pipe";
debug developer => "----> $command";
print $writefh $command."\n";
$writefh->flush;
$reply = <$readfh>;
chomp($reply);
debug developer => "<---- $reply";
my ($tag, $val) = split(' ', $reply, 2);
$val = '' unless defined $val;
$val = Debconf::Encoding::convert("UTF-8", $val);
return ($tag, $val) if wantarray;
return $tag;
}
sub makeelement
{
my $this=shift;
my $question=shift;
my $type=$question->type;
if ($type eq "select" || $type eq "multiselect") {
$type=ucfirst($type);
return "Debconf::Element::$type"->new(question => $question);
} else {
return Debconf::Element->new(question => $question);
}
}
sub capb_backup
{
my $this=shift;
my $val = shift;
$this->{capb_backup} = $val;
$this->talk('CAPB', 'backup') if $val;
}
sub capb
{
my $this=shift;
my $ret;
return $this->{capb} if exists $this->{capb};
($ret, $this->{capb}) = $this->talk('CAPB');
return $this->{capb} if $ret eq '0';
}
sub title
{
my $this = shift;
return $this->{title} unless @_;
my $title = shift;
$this->{title} = $title;
$this->talk('TITLE', $title);
}
sub settitle
{
my $this = shift;
my $question = shift;
$this->{title} = $question->description;
my $tag = $question->template->template;
my $type = $question->template->type;
my $desc = $question->description;
my $extdesc = $question->extended_description;
$this->talk('DATA', $tag, 'type', $type);
if ($desc) {
$desc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'description', $desc);
}
if ($extdesc) {
$extdesc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'extended_description', $extdesc);
}
$this->talk('SETTITLE', $tag);
}
sub go {
my $this = shift;
my @elements=grep $_->visible, @{$this->elements};
foreach my $element (@elements) {
my $question = $element->question;
my $tag = $question->template->template;
my $type = $question->template->type;
my $desc = $question->description;
my $extdesc = $question->extended_description;
my $default;
if ($type eq 'select') {
$default = $element->translate_default;
} elsif ($type eq 'multiselect') {
$default = join ', ', $element->translate_default;
} else {
$default = $question->value;
}
$this->talk('DATA', $tag, 'type', $type);
if ($desc) {
$desc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'description', $desc);
}
if ($extdesc) {
$extdesc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'extended_description',
$extdesc);
}
if ($type eq "select" || $type eq "multiselect") {
my $choices = $question->choices;
$choices =~ s/\n/\\n/g if ($choices);
$this->talk('DATA', $tag, 'choices', $choices);
}
$this->talk('SET', $tag, $default) if $default ne '';
my @vars=$Debconf::Db::config->variables($question->{name});
for my $var (@vars) {
my $val=$Debconf::Db::config->getvariable($question->{name}, $var);
$val='' unless defined $val;
$this->talk('SUBST', $tag, $var, $val);
}
$this->talk('INPUT', $question->priority, $tag);
}
if (@elements && (scalar($this->talk('GO')) eq "30") && $this->{capb_backup}) {
return;
}
foreach my $element (@{$this->elements}) {
if ($element->visible) {
my $tag = $element->question->template->template;
my $type = $element->question->template->type;
my ($ret, $val)=$this->talk('GET', $tag);
if ($ret eq "0") {
if ($type eq 'select') {
$element->value($element->translate_to_C($val));
} elsif ($type eq 'multiselect') {
$element->value(join(', ', map { $element->translate_to_C($_) } split(', ', $val)));
} else {
$element->value($val);
}
debug developer => "Got \"$val\" for $tag";
}
} else {
$element->show;
}
}
return 1;
}
sub progress_data {
my $this=shift;
my $question=shift;
my $tag=$question->template->template;
my $type=$question->template->type;
my $desc=$question->description;
my $extdesc=$question->extended_description;
$this->talk('DATA', $tag, 'type', $type);
if ($desc) {
$desc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'description', $desc);
}
if ($extdesc) {
$extdesc =~ s/\n/\\n/g;
$this->talk('DATA', $tag, 'extended_description', $extdesc);
}
}
sub progress_start {
my $this=shift;
$this->progress_data($_[2]);
return $this->talk('PROGRESS', 'START', $_[0], $_[1], $_[2]->template->template);
}
sub progress_set {
my $this=shift;
return (scalar($this->talk('PROGRESS', 'SET', $_[0])) ne "30");
}
sub progress_step {
my $this=shift;
return (scalar($this->talk('PROGRESS', 'STEP', $_[0])) ne "30");
}
sub progress_info {
my $this=shift;
$this->progress_data($_[0]);
return (scalar($this->talk('PROGRESS', 'INFO', $_[0]->template->template)) ne "30");
}
sub progress_stop {
my $this=shift;
return $this->talk('PROGRESS', 'STOP');
}
1
|