/usr/share/otrs/bin/otrs.SetPermissions.pl is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/perl
# --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . '/Kernel/cpan-lib';
use lib dirname($RealBin) . '/Custom';
use File::Find();
use File::stat();
use Getopt::Long();
my $OTRSDirectory = dirname($RealBin);
my $OTRSDirectoryLength = length($OTRSDirectory);
my $OtrsUser = 'otrs'; # default: otrs
my $WebGroup = ''; # Try to find a default from predefined group list, take the first match.
WEBGROUP:
for my $GroupCheck (qw(wwwrun apache www-data www _www)) {
my ($GroupName) = getgrnam $GroupCheck;
if ($GroupName) {
$WebGroup = $GroupName;
last WEBGROUP;
}
}
my $AdminGroup = 'root'; # default: root
my ( $Help, $DryRun, $SkipArticleDir, @SkipRegex, $OtrsUserID, $WebGroupID, $AdminGroupID );
sub PrintUsage {
print <<EOF;
Set OTRS file permissions.
Usage:
otrs.SetPermissions.pl [--otrs-user=<OTRS_USER>] [--web-group=<WEB_GROUP>] [--admin-group=<ADMIN_GROUP>] [--skip-article-dir] [--skip-regex="REGEX"] [--dry-run]
Options:
[--otrs-user=<OTRS_USER>] - OTRS user, defaults to 'otrs'.
[--web-group=<WEB_GROUP>] - Web server group ('_www', 'www-data' or similar), try to find a default.
[--admin-group=<ADMIN_GROUP>] - Admin group, defaults to 'root'.
[--skip-article-dir] - Skip var/article as it might take too long on some systems.
[--skip-regex="REGEX"] - Add another skip regex like "^/var/my/directory". Paths start with / but are relative to the OTRS directory. --skip-regex can be specified multiple times.
[--dry-run] - Only report, don't change.
[--help] - Display help for this command.
Help:
Using this script without any options it will try to detect the correct user and group settings needed for your setup.
otrs.SetPermissions.pl
EOF
return;
}
# Files/directories that should be ignored and not recursed into.
my @IgnoreFiles = (
qr{^/\.git}smx,
qr{^/\.tidyall}smx,
qr{^/\.tx}smx,
qr{^/\.settings}smx,
qr{^/\.ssh}smx,
qr{^/\.gpg}smx,
qr{^/\.gnupg}smx,
);
# Files to be marked as executable.
my @ExecutableFiles = (
qr{\.(?:pl|psgi|sh)$}smx,
qr{^/var/git/hooks/(?:pre|post)-receive$}smx,
);
# Special files that must not be written by web server user.
my @ProtectedFiles = (
qr{^/\.fetchmailrc$}smx,
qr{^/\.procmailrc$}smx,
);
my $ExitStatus = 0;
sub Run {
Getopt::Long::GetOptions(
'help' => \$Help,
'otrs-user=s' => \$OtrsUser,
'web-group=s' => \$WebGroup,
'admin-group=s' => \$AdminGroup,
'dry-run' => \$DryRun,
'skip-article-dir' => \$SkipArticleDir,
'skip-regex=s' => \@SkipRegex,
);
if ( defined $Help ) {
PrintUsage();
exit 0;
}
if ( $> != 0 ) { # $EFFECTIVE_USER_ID
print STDERR "ERROR: Please run this script as superuser (root).\n";
exit 1;
}
# check params
$OtrsUserID = getpwnam $OtrsUser;
if ( !$OtrsUser || !defined $OtrsUserID ) {
print STDERR "ERROR: --otrs-user is missing or invalid.\n";
exit 1;
}
$WebGroupID = getgrnam $WebGroup;
if ( !$WebGroup || !defined $WebGroupID ) {
print STDERR "ERROR: --web-group is missing or invalid.\n";
exit 1;
}
$AdminGroupID = getgrnam $AdminGroup;
if ( !$AdminGroup || !defined $AdminGroupID ) {
print STDERR "ERROR: --admin-group is invalid.\n";
exit 1;
}
if ( defined $SkipArticleDir ) {
push @IgnoreFiles, qr{^/var/article}smx;
}
for my $Regex (@SkipRegex) {
push @IgnoreFiles, qr{$Regex}smx;
}
print "Setting permissions on $OTRSDirectory\n";
File::Find::find(
{
wanted => \&SetPermissions,
no_chdir => 1,
follow => 1,
},
$OTRSDirectory,
);
exit $ExitStatus;
}
sub SetPermissions {
# First get a canonical full filename
my $File = $File::Find::fullname;
# If the link is a dangling symbolic link, then fullname will be set to undef.
return if !defined $File;
# Make sure it is inside the OTRS directory to avoid following symlinks outside
if ( substr( $File, 0, $OTRSDirectoryLength ) ne $OTRSDirectory ) {
$File::Find::prune = 1; # don't descend into subdirectories
return;
}
# Now get a canonical relative filename under the OTRS directory
my $RelativeFile = substr( $File, $OTRSDirectoryLength ) || '/';
for my $IgnoreRegex (@IgnoreFiles) {
if ( $RelativeFile =~ $IgnoreRegex ) {
$File::Find::prune = 1; # don't descend into subdirectories
print "Skipping $RelativeFile\n";
return;
}
}
# Ok, get target permissions for file
SetFilePermissions( $File, $RelativeFile );
return;
}
sub SetFilePermissions {
my ( $File, $RelativeFile ) = @_;
## no critic (ProhibitLeadingZeros)
# Writable by default, owner OTRS and group webserver.
my ( $TargetPermission, $TargetUserID, $TargetGroupID ) = ( 0660, $OtrsUserID, $WebGroupID );
if ( -d $File ) {
# SETGID for all directories so that both OTRS and the web server can write to the files.
# Other users should be able to read and cd to the directories.
$TargetPermission = 02775;
}
else {
# Executable bit for script files.
EXEXUTABLE_REGEX:
for my $ExecutableRegex (@ExecutableFiles) {
if ( $RelativeFile =~ $ExecutableRegex ) {
$TargetPermission = 0770;
last EXEXUTABLE_REGEX;
}
}
# Some files are protected and must not be written by webserver. Set admin group.
PROTECTED_REGEX:
for my $ProtectedRegex (@ProtectedFiles) {
if ( $RelativeFile =~ $ProtectedRegex ) {
$TargetPermission = -d $File ? 0750 : 0640;
$TargetGroupID = $AdminGroupID;
last PROTECTED_REGEX;
}
}
}
# Special treatment for toplevel folder: this must be readonly,
# otherwise procmail will refuse to read .procmailrc (see bug#9391).
if ( $RelativeFile eq '/' ) {
$TargetPermission = 0755;
}
# There seem to be cases when stat does not work on a dangling link, skip in this case.
my $Stat = File::stat::stat($File) || return;
if ( ( $Stat->mode() & 07777 ) != $TargetPermission ) {
if ( defined $DryRun ) {
print sprintf(
"$RelativeFile permissions %o -> %o\n",
$Stat->mode() & 07777,
$TargetPermission
);
}
elsif ( !chmod( $TargetPermission, $File ) ) {
print STDERR sprintf(
"ERROR: could not change $RelativeFile permissions %o -> %o: $!\n",
$Stat->mode() & 07777,
$TargetPermission
);
$ExitStatus = 1;
}
}
if ( ( $Stat->uid() != $TargetUserID ) || ( $Stat->gid() != $TargetGroupID ) ) {
if ( defined $DryRun ) {
print sprintf(
"$RelativeFile ownership %s:%s -> %s:%s\n",
$Stat->uid(),
$Stat->gid(),
$TargetUserID,
$TargetGroupID
);
}
elsif ( !chown( $TargetUserID, $TargetGroupID, $File ) ) {
print STDERR sprintf(
"ERROR: could not change $RelativeFile ownership %s:%s -> %s:%s: $!\n",
$Stat->uid(),
$Stat->gid(),
$TargetUserID,
$TargetGroupID
);
$ExitStatus = 1;
}
}
return;
## use critic
}
Run();
|