On some operating systems, the default umask is not 002 as it should
be (for the sensible setup with personal groups).
If a user with an 022 or 077 umask invokes osstest in Executive mode,
they end up creating directories in $c{Logs} which are writeable only
by them, and that can stop the whole system because the service user
cannot expire them.
Prevent this from happening.
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
}
$c{Stash} //= $c{Logs};
+
+ if ($c{MaxUmask}) {
+ my $bad = umask() & ~oct $c{MaxUmask};
+ die sprintf(
+ "bad umask %03o: contains bits %03o, not permitted by MaxUmask %03o\n",
+ umask(), $bad, $c{MaxUmask})
+ if $bad;
+ }
}
sub augmentconfigdefaults {
Repos => "$ENV{'HOME'}/repos",
BisectionRevisonGraphSize => '600x300',
ExecutiveDbOwningRoleRegexp => 'osstest',
+ MaxUmask => '007',
);
augmentconfigdefaults(