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
|
package Mojo::IOLoop::ReadWriteProcess::Namespace;
use Mojo::Base -base;
use Mojo::File 'path';
use Carp 'confess';
use Config;
use constant {
CLONE_ALL => 0,
CLONE_NEWNS => 0x00020000,
CLONE_NEWIPC => 0x08000000,
CLONE_NEWNET => 0x40000000,
CLONE_NEWUTS => 0x04000000,
CLONE_NEWPID => 0x20000000,
CLONE_NEWUSER => 0x10000000,
CLONE_NEWCGROUP => 0x02000000,
MS_REC => 0x4000,
MS_PRIVATE => 1 << 18,
MS_NOSUID => 2,
MS_NOEXEC => 8,
MS_NODEV => 4,
};
our @EXPORT_OK = (
qw(CLONE_ALL CLONE_NEWNS CLONE_NEWIPC CLONE_NEWUTS),
qw(CLONE_NEWNET CLONE_NEWPID CLONE_NEWUSER CLONE_NEWCGROUP),
qw(MS_REC MS_PRIVATE MS_NOSUID MS_NOEXEC MS_NODEV)
);
use Exporter 'import';
sub _get_unshare_syscall {
confess "Only Linux is supported" unless $^O eq 'linux';
my $machine = (POSIX::uname())[4];
die "Could not get machine type" unless $machine;
# if we're running on an x86_64 kernel, but a 32-bit process,
# we need to use the i386 syscall numbers.
$machine = "i386" if ($machine eq "x86_64" && $Config{ptrsize} == 4);
my $prctl_call
= $machine
=~ /^i[3456]86|^blackfin|cris|frv|h8300|m32r|m68k|microblaze|mn10300|sh|parisc$/
? 310
: $machine eq "s390" ? 303
: $machine eq "x86_64" ? 272
: $machine eq "ppc" ? 282
: $machine eq "ia64" ? 1296
: undef;
unless (defined $prctl_call) {
delete @INC{
qw<syscall.ph asm/unistd.ph bits/syscall.ph _h2ph_pre.ph
sys/syscall.ph>
};
my $rv = eval { require 'syscall.ph'; 1 } ## no critic
or eval { require 'sys/syscall.ph'; 1 }; ## no critic
$prctl_call = eval { &SYS_unshare; };
}
return $prctl_call;
}
sub _get_mount_syscall {
confess "Only Linux is supported" unless $^O eq 'linux';
my $machine = (POSIX::uname())[4];
die "Could not get machine type" unless $machine;
# if we're running on an x86_64 kernel, but a 32-bit process,
# we need to use the i386 syscall numbers.
$machine = "i386" if ($machine eq "x86_64" && $Config{ptrsize} == 4);
my $prctl_call;
# $machine
# =~ /^i[3456]86|^blackfin|cris|frv|h8300|m32r|m68k|microblaze|mn10300|sh|parisc$/
# ? 310
# : $machine eq "s390" ? 303
#
# : $machine eq "x86_64" ? 272
# : $machine eq "ppc" ? 282
# : $machine eq "ia64" ? 1296
# :
unless (defined $prctl_call) {
delete @INC{
qw<syscall.ph asm/unistd.ph bits/syscall.ph _h2ph_pre.ph
sys/syscall.ph>
};
my $rv = eval { require 'syscall.ph'; 1 } ## no critic
or eval { require 'sys/syscall.ph'; 1 }; ## no critic
$prctl_call = eval { &SYS_mount; };
}
return $prctl_call;
}
sub mount {
my ($self, $arg1, $arg2, $arg3, $opts) = (@_);
$arg3 //= 0;
local $!;
my $ret
= syscall(_get_mount_syscall(), my $s = $arg1, my $t = $arg2, $arg3, $opts,
0);
warn "mount is unavailable on this platform." if $!{EINVAL};
warn "Mount failed! $!" if $!;
return $ret;
}
sub unshare {
my ($self, $opts) = @_;
local $!;
my $ret = syscall(_get_unshare_syscall(), $opts, 0, 0);
warn "unshare is unavailable on this platform." if $!{EINVAL};
warn "Unshare failed! $!" if $!;
return $ret;
}
sub isolate {
my ($self, $procdir) = shift;
$procdir //= "/proc";
$self->mount("none", "/", 0, MS_REC | MS_PRIVATE);
warn "Failed isolating proc"
if $self->mount("none", $procdir, 0, MS_REC | MS_PRIVATE) != 0
|| $self->mount("proc", $procdir, "proc", MS_NOSUID | MS_NOEXEC | MS_NODEV)
!= 0;
}
=encoding utf-8
=head1 NAME
Mojo::IOLoop::ReadWriteProcess::Namespace - Namespace object for Mojo::IOLoop::ReadWriteProcess.
=head1 SYNOPSIS
use Mojo::IOLoop::ReadWriteProcess::Namespace qw(CLONE_ALL);
my $ns = Mojo::IOLoop::ReadWriteProcess::Namespace->new();
$ns->unshare(CLONE_ALL);
$ns->mount("proc", "/proc", "proc");
$ns->isolate();
=head1 METHODS
L<Mojo::IOLoop::ReadWriteProcess::Namespace> inherits all methods from L<Mojo::Base> and implements
the following new ones.
=head2 unshare
use Mojo::IOLoop::ReadWriteProcess::Namespace qw(CLONE_ALL);
my $ns = Mojo::IOLoop::ReadWriteProcess::Namespace->new();
$ns->unshare(CLONE_ALL);
Wrapper around the unshare syscall, accepts the same arguments,
constants can be exported from L<Mojo::IOLoop::ReadWriteProcess::Namespace>.
=head2 mount
my $ns = Mojo::IOLoop::ReadWriteProcess::Namespace->new();
$ns->mount("proc", "/proc", "proc");
Wrapper around the mount syscall, accepts the same arguments.
=head2 isolate
my $ns = Mojo::IOLoop::ReadWriteProcess::Namespace->new();
$ns->isolate();
Mount appropriately /proc to achieve process isolation during process containment, see L<Mojo::IOLoop::ReadWriteProcess::Container>.
=head1 LICENSE
Copyright (C) Ettore Di Giacinto.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
Ettore Di Giacinto E<lt>edigiacinto@suse.comE<gt>
=cut
1;
|