123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #! /usr/bin/perl
- # ex:ts=8 sw=4:
- # $OpenBSD: pkg_subst,v 1.6 2015/11/07 09:52:24 espie Exp $
- #
- # Copyright (c) 2008 Marc Espie <espie@openbsd.org>
- #
- # Permission to use, copy, modify, and distribute this software for any
- # purpose with or without fee is hereby granted, provided that the above
- # copyright notice and this permission notice appear in all copies.
- #
- # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- # rather simple script
- use strict;
- use warnings;
- use OpenBSD::Getopt;
- use OpenBSD::Subst;
- use OpenBSD::State;
- use OpenBSD::IdCache;
- sub fatal
- {
- print STDERR @_, "\n";
- exit 1;
- }
- my @basedirs;
- sub ensure_basedir
- {
- my $file = shift;
-
- for my $b (@basedirs) {
- return if $file =~ m/^\Q$b\E\//;
- }
- # try harder!
- require File::Spec;
- $file = File::Spec->canonpath(File::Spec->rel2abs($file));
- for my $b (@basedirs) {
- return if $file =~ m/^\Q$b\E\//;
- }
- fatal("must use -m to copy $file which is outside ".
- join(" ", @basedirs));
- }
- my $subst = OpenBSD::Subst->new;
- our ($opt_c, $opt_i);
- my ($fuid, $fgid, $fmode);
- my ($uidc, $gidc);
- my $ui = OpenBSD::State->new('pkg_subst');
- $ui->usage_is( '[-ci] [-Dvar=value ...] [-B basedir] [-g group] [-m mode] [-o owner] [file ...]');
- $ui->do_options(
- sub {
- getopts('B:D:g:m:o:chi',
- {'D' =>
- sub {
- $subst->parse_option(shift);
- },
- 'o' => sub {
- my $owner = shift;
- $uidc //= OpenBSD::UidCache->new;
- $fuid = $uidc->lookup($owner, -1);
- fatal("$owner is not a valid user") if $fuid == -1;
- },
- 'g' => sub {
- my $group = shift;
- $gidc //= OpenBSD::GidCache->new;
- $fgid = $gidc->lookup($group, -1);
- fatal("$group is not a valid group") if $fgid == -1;
- },
- 'B' => sub {
- push(@basedirs, shift);
- },
- 'm' => sub {
- my $mode = shift;
- $fmode = oct($mode);
- fatal("$mode is not a valid mode") if $fmode == 0;
- },
- 'h' => sub { $ui->usage; },
- });
- });
- my $bak = $subst->value('BAK');
- if (!defined $bak) {
- $bak = '.beforesubst';
- }
- if (@ARGV == 0) {
- $subst->copy_fh2(\*STDIN, \*STDOUT);
- }
- while (my $src = shift) {
- my $dest;
- if ($opt_c) {
- $dest = shift or die "odd number of files";
- if (@basedirs > 0 && !defined $fmode) {
- ensure_basedir($src);
- }
- } else {
- $dest = $src;
- $src .= $bak;
- rename($dest, $src) or fatal("Can't rename $dest: $!");
- }
- my $fh = $subst->copy($src, $dest);
- # copy rights, owner, group as well
- my ($uid, $gid, $mode) = (stat $src)[4, 5, 2];
- my $r1 = chown $fuid // $uid, $fgid // $gid, $fh;
- if (defined $fmode) {
- $mode = $fmode;
- }
- my $r2 = chmod $mode & 07777, $fh;
- if (defined $fuid || defined $fgid || $< == 0) {
- if ($r1 == 0 && !$opt_i) {
- fatal("chown on $dest failed");
- }
- if ($r2 == 0) {
- fatal("chmod on $dest failed");
- }
- }
- }
|