Advertisement
asan13

Untitled

Aug 25th, 2017
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.67 KB | None | 0 0
  1. #!/usr/bin/perl
  2. use common::sense;
  3. use Data::Dumper;
  4.  
  5. use Fcntl;
  6. use Socket;
  7. use IO::Pty;
  8.  
  9. my @cmd = qw(/usr/bin/gpg --enable-special-filenames --verify -);
  10. #my @cmd = (qw(perl -n -E), 'BEGIN {open my $fh, "<&=3" or die "aaa: $!" } chomp; syswrite \*STDOUT, "### $_\n"');
  11.  
  12. pipe my $parent_data, my $child_data or die "pipe: $!";
  13.  
  14. socketpair my $parent_in,  my $child_in,  AF_UNIX, SOCK_STREAM, 0 or die "socketpair: $!";
  15. socketpair my $parent_out, my $child_out, AF_UNIX, SOCK_STREAM, 0 or die "socketpair: $!";
  16. pipe my $rsync, my $wsync or die "pipe: $!";
  17.  
  18. my $pid = fork;
  19. die "fork: $!" unless defined $pid;
  20.  
  21. unless ($pid) {
  22.     $child_in->close;
  23.     $child_out->close;
  24.     $child_data->close;
  25.     $rsync->close;
  26.  
  27.     $wsync->autoflush(1);
  28.  
  29.  
  30.     $parent_out->autoflush(1);
  31.  
  32.     open STDIN,  '<&', $parent_in or die "redirect STDIN: $!";
  33.     open STDOUT, '>&', $parent_out or die "redirect STDOUT $!";
  34.     open STDERR, '>&', $parent_out or die "redirect STDERR $!";
  35.  
  36.     syswrite $wsync, "\n";
  37.     $wsync->close;
  38.  
  39.     fcntl($parent_data, F_SETFD, 0) or die "fcntl: $!";
  40.     push @cmd, '-&' . fileno $parent_data;
  41.  
  42.     exec {$cmd[0]} $cmd[0], @cmd[1..@cmd - 1];
  43.     die "exec: $!";
  44. }
  45.  
  46.  
  47. $parent_in->close;
  48. $parent_out->close;
  49. $parent_data->close;
  50. $wsync->close;
  51.  
  52. { sysread $rsync, my $c, 1 or die "sync read: $!" }
  53. $rsync->close;
  54.  
  55. my $sign = do { local $/; open my $fh, '<', 'sign' or die $!; <$fh> };
  56.  
  57. $child_in->autoflush(1);
  58.  
  59. syswrite $child_in, $sign;
  60. $child_in->close;
  61.  
  62. syswrite $child_data, '1;2';
  63. $child_data->close;
  64.  
  65. say "after write";
  66.  
  67. while (<$child_out>) {
  68.     chomp;
  69.     say '=> ', $_;
  70. }
  71.  
  72. waitpid $pid, 0;
  73. say "$?" if $?;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement