__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#! /usr/bin/perl
# Copyright (C) 2000-2004 Roland Bauerschmidt <rb@debian.org>
# 2005-2023 Marc Haber <mh+debian-packages@zugschlus.de>
# 2022 Benjamin Drung <benjamin.drung@canonical.com>
# 2023 Guillem Jover <guillem@debian.org>
# 2021-2022 Jason Franklin <jason@oneway.dev>
# 2022 Matt Barry <matt@hazelmollusk.org>
# 2016-2017 Afif Elghraoui <afif@debian.org>
# 2016 Dr. Helge Kreutzmann <debian@helgefjell.de>
# 2005-2009 Joerg Hoh <joerg@joerghoh.de>
# 2006-2011 Stephen Gran <sgran@debian.org>
#
# Original adduser:
# Copyright (C) 1997-1999 Guy Maor <maor@debian.org>
#
# Copyright (C) 1995 Ted Hajek <tedhajek@boombox.micro.umn.edu>
# Ian A. Murdock <imurdock@gnu.ai.mit.edu>
#
# The general scheme of this program was adapted from the original
# Debian "adduser" program by Ian A. Murdock <imurdock@gnu.ai.mit.edu>.
#
# License: GPL-2+
use 5.32.0;
use strict;
use warnings;
use Getopt::Long;
use Debian::AdduserCommon 3.136;
use Debian::AdduserLogging 3.136;
use Debian::AdduserRetvalues 3.136;
BEGIN {
if ( Debian::AdduserCommon->VERSION != version->declare('3.136') ||
Debian::AdduserLogging->VERSION != version->declare('3.136') ||
Debian::AdduserRetvalues->VERSION != version->declare('3.136') ) {
die "wrong module version in adduser, check your packaging or path";
}
}
my $version = "3.137ubuntu1";
BEGIN {
local $ENV{PERL_DL_NONLAZY}=1;
# we need to disable perlcritic here since this construct
# needs experession form eval, see perl cookbook 12.2.3
## no critic
eval "
require POSIX;
import POSIX qw(setlocale);
";
## use critic
if ($@) {
*setlocale = sub { return 1 };
} else {
setlocale( &POSIX::LC_MESSAGES, "" );
}
## no critic
eval "
require I18N::Langinfo;
import I18N::Langinfo qw(langinfo YESEXPR NOEXPR);
";
## use critic
if ($@) {
*langinfo = sub { return shift; };
*YESEXPR = sub { "^[yY]" };
*NOEXPR = sub { "^[nN]" };
}
}
my $yesexpr = langinfo(YESEXPR());
my %config; # configuration hash
my $nogroup_id = getgrnam("nogroup") || 65534;
$0 =~ s+.*/++;
our $verbose = 1; # should we be verbose?
my $name_check_level = 0; # should we allow bad names?
our $stderrmsglevel = "warn";
our $stdoutmsglevel = "info";
our $logmsglevel = "info";
my $allow_badname = 0; # should we allow bad names?
my $ask_passwd = 1; # ask for a passwd?
my $disabled_login = 0; # leave the new account disabled?
our @configfiles;
our @defaults = undef;
our $encrypt_home = undef;
our $found_group_opt = undef;
our $found_sys_opt = undef;
our $ingroup_name = undef;
our $new_firstgid = undef;
our $new_firstuid = undef;
our $new_comment = undef;
our $gid_option = undef;
our $primary_gid = undef;
our $new_lastgid = undef;
our $new_lastuid = undef;
our $new_uid = undef;
our $no_create_home = undef;
our $special_home = undef;
our $special_shell = undef;
our $use_extrausers = 0;
our $add_extra_groups;
our $add_extra_groups_old;
# Global variables we need later
my $existing_user = undef;
my $existing_group = undef;
my $new_name = undef;
my $make_group_also = 0;
my $home_dir = undef;
my $undohome = undef;
my $undouser = undef;
my $undogroup = undef;
my $shell = undef;
my $first_uid = undef;
my $last_uid = undef;
my $first_gid = undef;
my $last_gid = undef;
my $dir_mode = undef;
my $perm = undef;
my %uid_pool;
my %gid_pool;
our @names;
GetOptions(
'add-extra-groups' => \$add_extra_groups,
'add_extra_groups' => \$add_extra_groups_old,
'allow-all-names' => sub { $name_check_level = 2 },
'allow-badname' => sub { $name_check_level = 1 unless $name_check_level },
'allow-bad-names' => sub { $name_check_level = 1 unless $name_check_level },
'comment=s' => \$new_comment,
'conf|c=s' => \@configfiles,
'debug' => sub { $verbose = 2 },
'stdoutmsglevel=s' => \$stdoutmsglevel,
'stderrmsglevel=s' => \$stderrmsglevel,
'logmsglevel=s' => \$logmsglevel,
'disabled-login' => sub { $disabled_login = 1; $ask_passwd = 0 },
'disabled-password' => sub { $ask_passwd = 0 },
'encrypt-home' => \$encrypt_home,
'extrausers' => \$use_extrausers,
'firstgid=i' => \$new_firstgid,
'firstuid=i' => \$new_firstuid,
'force-badname' => sub { $name_check_level = 1 unless $name_check_level },
'gecos=s' => \$new_comment,
'gid=i' => \$gid_option,
'group' => \$found_group_opt,
'help|h' => sub { &usage; exit },
'home=s' => \$special_home,
'ingroup=s' => \$ingroup_name,
'lastgid=i' => \$new_lastgid,
'lastuid=i' => \$new_lastuid,
'no-create-home' => \$no_create_home,
'quiet|q' => sub { $verbose = 0 },
'shell=s' => \$special_shell,
'system' => \$found_sys_opt,
'uid=i' => \$new_uid,
'verbose' => sub { $verbose = 1 },
'version|v' => sub { &version; exit },
) or &usage_error;
if(!@configfiles) {
@defaults = ("/etc/adduser.conf");
} else {
@defaults = (@configfiles);
}
# preseed configuration data and then read the config file
preseed_config(\@defaults,\%config);
# everyone can issue "--help" and "--version", but only root can go on
if( $> != 0) {
log_fatal( mtx("Only root may add a user or group to the system.") );
exit( RET_ROOT_NEEDED );
}
# TODO: Handle configuration file input, allow bare input there.
if( $verbose == 0 ) {
set_msglevel( $stderrmsglevel, "warn", $logmsglevel );
} elsif( $verbose == 1 ) {
set_msglevel( $stderrmsglevel, "info", $logmsglevel );
} elsif( $verbose == 2 ) {
set_msglevel( $stderrmsglevel, "debug", $logmsglevel );
} else {
set_msglevel( $stderrmsglevel, $stdoutmsglevel, $logmsglevel );
}
# detect the right mode
my $action = $0 eq "addgroup" ? "addgroup" : "adduser";
if (defined($found_sys_opt)) {
$action = "addsysuser" if ($action eq "adduser");
$action = "addsysgroup" if ($action eq "addgroup");
}
# explicitly set PATH, because super (1) cleans up the path and makes adduser unusable;
# this is also a good idea for sudo (which doesn't clean up)
$ENV{"PATH"}="/bin:/usr/bin:/sbin:/usr/sbin";
$ENV{"IFS"}=" \t\n";
############################
# checks related to @names #
############################
while (defined(my $arg = shift(@ARGV))) {
push (@names, $arg);
}
if ( (! defined $names[0]) || length($names[0]) == 0 || @names > 2) {
log_fatal( mtx("Only one or two names allowed.") );
exit( RET_INVALID_CALL );
}
if (@names == 2) { # must be addusertogroup
if ($action eq "addsysuser" || $found_group_opt) {
log_fatal( mtx("Specify only one name in this mode.") );
exit( RET_INVALID_CALL );
}
if ($action eq "addgroup" or $action eq "addsysgroup") {
log_fatal( mtx("addgroup with two arguments is an unspecified operation.") );
exit( RET_INVALID_CALL );
}
$action = "addusertogroup";
$existing_user = shift (@names);
$existing_group = shift (@names);
}
else { # 1 parameter, must be adduser
$new_name = shift (@names);
}
###################################
# check for consistent parameters #
###################################
if (!defined $add_extra_groups) {
if( defined $add_extra_groups_old ) {
$add_extra_groups = $add_extra_groups_old;
} else {
$add_extra_groups = 0;
}
}
if ($action ne "addgroup" &&
defined($found_group_opt) +defined($ingroup_name) +defined($gid_option) > 1 ) {
log_fatal( mtx("The --group, --ingroup, and --gid options are mutually exclusive.") );
exit( RET_EXCLUSIVE_PARAMETERS );
}
if ((defined($special_home)) && ($special_home !~ m+^/+ )) {
log_fatal( mtx("The home dir must be an absolute path.") );
exit( RET_INVALID_HOME_DIRECTORY );
}
if (defined($special_home)) {
if (!defined($no_create_home) && -d $special_home) {
log_info( mtx("The home dir %s you specified already exists.\n"), $special_home );
}
if (defined($no_create_home) && ! -d $special_home) {
log_info( mtx("The home dir %s you specified can't be accessed: %s\n"), $special_home, $! );
}
}
if ($found_group_opt) {
if ($action eq "addsysuser") {
$make_group_also = 1;
}
elsif ($found_sys_opt) {
$action = "addsysgroup";
}
else {
$action = "addgroup";
}
}
my $ecryptfs_setup_private;
if (defined($encrypt_home)) {
$ecryptfs_setup_private = &which('ecryptfs-setup-private');
}
# TODO: map this to log levels
$ENV{"VERBOSE"} = $verbose;
$ENV{"DEBUG"} = $verbose;
# preseed_config was moved from here
# read the uid and gid pool
if ($config{"uid_pool"}) {
read_pool ($config{"uid_pool"}, "uid", \%uid_pool);
}
if ($config{"gid_pool"}) {
read_pool ($config{"gid_pool"}, "gid", \%gid_pool);
}
&checkname($new_name) if defined $new_name;
$SIG{'INT'} = $SIG{'QUIT'} = $SIG{'HUP'} = 'handler';
#####
# OK, we've processed the arguments. $action equals one of the following,
# and the appropriate variables have been set:
#
# $action = "adduser"
# $new_name - the name of the new user.
# $ingroup_name | $gid_option - the group to add the user to
# $special_home, $new_uid, $new_comment - optional overrides
# $action = "addgroup"
# $new_name - the name of the new group
# $gid_option - optional override
# $action = "addsysgroup"
# $new_name - the name of the new group
# $gid_option - optional override
# $action = "addsysuser"
# $new_name - the name of the new user
# $make_group_also | $ingroup_name | $gid_option | 0 - which group
# $special_home, $new_uid, $new_comment - optional overrides
# $action = "addusertogroup"
# $existing_user - the user to be added
# $existing_group - the group to add her to
#####
#################
## addsysgroup ##
#################
if ($action eq "addsysgroup") {
acquire_lock();
# Check if requested group already exists and we can exit safely
my $ret = existing_group_ok($new_name, $gid_option);
if ($ret == 3) {
log_info( mtx("The group `%s' already exists as a system group. Exiting."), $new_name );
exit( RET_OK );
}
if ($ret == 1) {
log_err( mtx("The group `%s' already exists and is not a system group. Exiting."), $new_name );
exit( RET_WRONG_OBJECT_PROPERTIES );
}
if ($ret == 2) {
log_err( mtx("The group `%s' already exists, but has a different GID. Exiting."), $new_name );
exit( RET_WRONG_OBJECT_PROPERTIES );
}
if (defined($gid_option) && defined(getgrgid($gid_option))) {
log_fatal( mtx("The GID `%s' is already in use."), $gid_option );
exit( RET_ID_IN_USE );
}
if (!defined($gid_option)) {
$first_gid = $new_firstgid || $config{"first_system_gid"};
$last_gid = $new_lastgid || $config{"last_system_gid"};
$gid_option = &first_avail_gid($first_gid,
$last_gid,
$gid_pool{$new_name}{'id'});
if ($gid_option == -1) {
log_warn( mtx("No GID is available in the range %d-%d (FIRST_SYS_GID - LAST_SYS_GID)."),
$first_gid, $last_gid );
log_err( mtx("The group `%s' was not created."), $new_name );
exit( RET_NO_ID_IN_RANGE );
}
}
log_info( mtx("Adding group `%s' (GID %d) ..."), $new_name, $gid_option);
my $groupadd = &which('groupadd');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($groupadd, '--extrausers', '-g', $gid_option, $new_name);
} else {
&systemcall($groupadd, '-g', $gid_option, $new_name);
}
release_lock(0);
exit( RET_OK );
}
##############
## addgroup ##
##############
if ($action eq "addgroup") {
acquire_lock();
if (defined getgrnam($new_name)) {
log_fatal( mtx("The group `%s' already exists."), $new_name);
exit( RET_OBJECT_EXISTS );
}
if (defined($gid_option) && defined(getgrgid($gid_option))) {
log_fatal( mtx("The GID `%s' is already in use."), $gid_option );
exit( RET_ID_IN_USE );
}
if (!defined($gid_option)) {
$first_gid = $new_firstgid || $config{"first_gid"};
$last_gid = $new_lastgid || $config{"last_gid"};
log_debug( "Searching for gid with first_gid=%s, last_gid=%s, new_name=%s, gid_pool=%s",
$first_gid,
$last_gid,
$new_name,
$gid_pool{$new_name}{'id'}
);
$gid_option = &first_avail_gid($first_gid,
$last_gid,
$gid_pool{$new_name}{'id'});
if ($gid_option == -1) {
log_warn( mtx("No GID is available in the range %d-%d (FIRST_GID - LAST_GID)."),
$first_gid, $last_gid );
log_fatal( mtx("The group `%s' was not created."), $new_name );
exit( RET_NO_ID_IN_RANGE );
}
}
log_info( mtx("Adding group `%s' (GID %d) ..."), $new_name, $gid_option);
my $groupadd = &which('groupadd');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($groupadd, '--extrausers', '-g', $gid_option, $new_name);
} else {
&systemcall($groupadd, '-g', $gid_option, $new_name);
}
release_lock(0);
exit( RET_OK );
}
####################
## addusertogroup ##
####################
if ($action eq 'addusertogroup') {
if (!defined getpwnam($existing_user)) {
log_fatal( mtx("The user `%s' does not exist."), $existing_user );
exit( RET_OBJECT_DOES_NOT_EXIST );
}
if (!defined getgrnam($existing_group)) {
log_fatal( mtx("The group `%s' does not exist."), $existing_group );
exit( RET_OBJECT_DOES_NOT_EXIST );
}
if (&user_is_member($existing_user, $existing_group)) {
log_info( mtx("The user `%s' is already a member of `%s'."), $existing_user, $existing_group );
exit( RET_OK );
}
log_info( mtx("Adding user `%s' to group `%s' ..."), $existing_user, $existing_group );
acquire_lock();
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall('/usr/sbin/usermod', '--extrausers', '-a', '-G', $existing_group, $existing_user);
} else {
&systemcall('/usr/sbin/usermod', '-a', '-G', $existing_group, $existing_user);
}
release_lock();
exit( RET_OK );
}
################
## addsysuser ##
################
if ($action eq "addsysuser") {
acquire_lock();
if (existing_user_ok($new_name, $new_uid) == 1) {
# a user with this name already exists; it's a problem when it's not a system user
my $tmp_u = getpwnam($new_name);
if (($tmp_u >= $config{"first_system_uid"}) and ($tmp_u <= $config{"last_system_uid"})) {
log_info( mtx("The system user `%s' already exists. Exiting.\n"), $new_name );
exit( RET_OK );
}
log_fatal( mtx("The user `%s' already exists, but is not a system user. Exiting."), $new_name );
exit( RET_WRONG_OBJECT_PROPERTIES );
}
if (existing_user_ok($new_name, $new_uid) == 2) {
log_fatal( mtx("The user `%s' already exists with a different UID. Exiting."), $new_name );
exit( RET_WRONG_OBJECT_PROPERTIES );
}
if (!$ingroup_name && !defined($gid_option) && !$make_group_also) {
$gid_option = $nogroup_id;
}
check_user_group(1);
if (!defined($new_uid) && $make_group_also) {
$new_uid = &first_avail_uid($new_firstuid || $config{"first_system_uid"},
$new_lastuid || $config{"last_system_uid"},
$uid_pool{$new_name}{'id'});
if ($new_uid == -1) {
log_warn( mtx("No UID/GID pair is available in the range %d-%d (FIRST_SYS_UID - LAST_SYS_UID)."),
$config{"first_system_uid"},
$config{"last_system_uid"} );
log_fatal( mtx("The user `%s' was not created."), $new_name );
exit( RET_NO_ID_IN_RANGE );
}
$gid_option = &first_avail_gid($new_firstgid || $config{"first_system_gid"},
$new_lastgid || $config{"last_system_gid"},
$gid_pool{$new_name}{'id'});
$ingroup_name = $new_name;
}
elsif (!defined($new_uid) && !$make_group_also) {
$new_uid = &first_avail_uid($new_firstuid || $config{"first_system_uid"},
$new_lastuid || $config{"last_system_uid"},
$uid_pool{$new_name}{'id'});
if ($new_uid == -1) {
log_warn( mtx("No UID is available in the range %d-%d (FIRST_SYS_UID - LAST_SYS_UID)."),
$config{"first_system_uid"},
$config{"last_system_uid"} );
log_fatal( mtx("The user `%s' was not created."), $new_name);
exit( RET_NO_ID_IN_RANGE );
}
if (defined($gid_option)) {
$ingroup_name = getgrgid($gid_option);
} elsif ($ingroup_name) {
$gid_option = getgrnam($ingroup_name);
} else {
log_fatal( mtx("Neither ingroup option nor gid given.") );
exit( RET_NO_PRIMARY_GROUP );
}
}
else {
if (defined($gid_option)) {
$ingroup_name = getgrgid($gid_option);
} elsif ($ingroup_name) {
$gid_option = getgrnam($ingroup_name);
} elsif ($make_group_also) {
$gid_option=$new_uid; $ingroup_name=$new_name;
} else {
log_fatal( mtx("Neither ingroup option nor gid given and make_group_also unset.") );
exit( RET_NO_PRIMARY_GROUP );
}
}
log_info( mtx("Adding system user `%s' (UID %d) ..."), $new_name, $new_uid );
# if we reach this point, and the group does already exist, we can use it.
if ($make_group_also && !getgrnam($new_name)) {
log_info( mtx("Adding new group `%s' (GID %d) ..."), $new_name, $gid_option );
$undogroup = $new_name;
my $groupadd = &which('groupadd');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($groupadd, '--extrausers', '-g', $gid_option, $new_name);
} else {
&systemcall($groupadd, '-g', $gid_option, $new_name);
}
}
log_info( mtx("Adding new user `%s' (UID %d) with group `%s' ..."),
$new_name, $new_uid, $ingroup_name );
$home_dir = $special_home || $uid_pool{$new_name}{'home'} || '/nonexistent';
$no_create_home = $home_dir =~ /^\/+nonexistent(\/|$)/ ? 1 : $no_create_home;
$shell = $special_shell || $uid_pool{$new_name}{'shell'} || '/usr/sbin/nologin';
$undouser = $new_name;
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall('/usr/sbin/useradd', '--extrausers', '-r',
'-K', sprintf('SYS_UID_MIN=%d', $config{'first_system_uid'}),
'-K', sprintf('SYS_UID_MAX=%d', $config{'last_system_uid'}),
'-d', $home_dir,
'-g', $ingroup_name,
'-s', $shell,
'-u', $new_uid,
$new_name);
} else {
&systemcall('/usr/sbin/useradd', '-r',
'-K', sprintf('SYS_UID_MIN=%d', $config{'first_system_uid'}),
'-K', sprintf('SYS_UID_MAX=%d', $config{'last_system_uid'}),
'-d', $home_dir,
'-g', $ingroup_name,
'-s', $shell,
'-u', $new_uid,
$new_name);
}
release_lock(0);
if (defined($new_comment)) {
&ch_comment($new_comment);
} elsif ($uid_pool{$new_name}{'comment'}) {
&ch_comment($uid_pool{$new_name}{'comment'});
}
$primary_gid = $gid_option;
create_homedir(0);
exit( RET_OK );
}
#############
## adduser ##
#############
if ($action eq "adduser") {
acquire_lock();
$primary_gid=-1;
my @supplemental_groups=();
log_trace( "new_uid %s", $new_uid );
log_trace( "ingroup_name %s, gid_option %s", $ingroup_name, $gid_option );
log_trace( "usergroups %s", $config{"usergroups"} );
log_trace( "users_gid %s, users_group %s", $config{"users_gid"}, $config{"users_group"} );
log_trace( "primary_gid %s, supplemental groups %s", $primary_gid, join(", ",@supplemental_groups) );
if( defined($config{"users_gid"}) && defined($config{"users_group"}) ) {
log_warn ( mtx("USERS_GID and USERS_GROUP both given in configuration. This is an error.") );
log_fatal (mtx("The user `%s' was not created."),$new_name);
exit( RET_CONFIG_ERROR );
}
if ($config{"usergroups"} =~ /yes/i) {
log_trace( "config usergroups == yes code path" );
$make_group_also = 1;
if( $gid_option ) {
$make_group_also = 0;
$primary_gid = $gid_option;
log_trace( "gid_option defined %s, make_group_also 0, primary_gid=gid_option", $gid_option );
}
if( $ingroup_name ) {
$make_group_also = 0;
$primary_gid = getgrnam($ingroup_name);
log_trace( "ingroup_name defined %s, make_group_also 0, primary_gid %s", $gid_option, $primary_gid );
}
log_trace( "make_group_also %s, primary_gid %s", $make_group_also, $primary_gid );
if( defined( $primary_gid) && $primary_gid == -1 && $make_group_also == 0 ) {
if (defined($config{"users_gid"}) && $config{"users_gid"} != -1) {
my @grgid=getgrgid($config{"users_gid"});
my $grname=$grgid[0];
log_debug( "set primary_gid to users_gid %s %s", $config{"users_gid"}, $grname);
$primary_gid = $config{"users_gid"};
} elsif (defined($config{"users_gid"}) && $config{"users_gid"} == -1) {
# nothing
} else {
my $primary_group="users";
if (defined($config{"users_group"})) {
$primary_group=$config{"users_group"};
}
$primary_gid=getgrnam($primary_group);
log_debug( "set primary_gid to users_group %s %s", $primary_gid, $primary_group);
}
} else {
if (defined($config{"users_gid"}) && $config{"users_gid"} != -1) {
my @grgid=getgrgid($config{"users_gid"});
my $grname=$grgid[0];
log_trace( "push users_gid %s %s to supplemental_groups", $config{"users_gid"}, $grname);
push(@supplemental_groups, $grname);
} elsif (defined($config{"users_gid"}) && $config{"users_gid"} == -1) {
# nothing
} else {
my $supp_group="users";
if (defined($config{"users_group"})) {
$supp_group=$config{"users_group"};
}
log_trace( "push %s to supplemental_groups", $supp_group );
push(@supplemental_groups, $supp_group);
}
}
} else {
log_debug( "config usergroups != yes code path" );
if( defined($ingroup_name) ) {
$primary_gid=getgrnam($ingroup_name);
} elsif (defined($config{"users_gid"})) {
log_trace( "primary_gid = users_gid = %d", $primary_gid );
$primary_gid = $config{"users_gid"};
} else {
if (defined($config{"users_group"})) {
my @grgid=getgrnam($config{"users_group"});
my $grgid=$grgid[2];
log_trace( "primary_gid = users_group %s %s", $config{"users_group"}, $grgid);
$primary_gid = $grgid;
} else {
log_trace( "primary_gid = literal 100");
$primary_gid = 100;
}
}
if( $primary_gid == -1 ) {
log_fatal( "no primary GID for user set. User not created." );
exit( RET_NO_PRIMARY_GID );
}
}
log_debug( "primary_gid %s, supplemental groups %s", $primary_gid, join(", ",@supplemental_groups) );
if ( defined $ingroup_name || defined $gid_option ) {
$make_group_also = 0;
log_trace( "set make_group_also 0, neither ingroup_name or gid_option defined" );
}
check_user_group(0);
$first_uid = $new_firstuid || $config{"first_uid"};
$last_uid = $new_lastuid || $config{"last_uid"};
if ($config{"usergroups"} =~ /yes/i) {
$first_gid = $first_uid;
$last_gid = $last_uid;
} else {
$first_gid = $new_firstgid || $config{"first_gid"};
$last_gid = $new_lastgid || $config{"last_gid"};
}
log_trace( "first_uid %s, last_uid %s, first_gid %s, last_gid %s", $first_uid, $last_uid, $first_gid, $last_gid );
log_info (gtx("Adding user `%s' ..."),$new_name);
if (!defined($new_uid)) {
if ( defined $ingroup_name ) {
$new_uid = &first_avail_uid( $first_uid,
$last_uid,
$uid_pool{$new_name}{'id'});
} else {
my $first_uidgid = ($first_uid, $first_gid)[$first_uid > $first_gid];
my $last_uidgid = ($last_uid, $last_gid)[$last_uid < $last_gid];
# TODO: Check what happens when those ranges do not overlap
$new_uid = &first_avail_uid_gid( $first_uidgid,
$last_uidgid,
$uid_pool{$new_name}{'id'});
log_trace( "uidgid=%s, from first_uidgid %s, last_uidgid %s", $new_uid, $first_uidgid, $last_uidgid);
}
# TODO: user can specify different UID and GID here.
# idea: split handling in uid/gid, which are equally the return value of
# first_avail_uid_gid. If either pool_id is defined, set uid and gid from
# distinct first_avail_uid and first_avail_gid calls.
log_debug( "new_uid %s selected", $new_uid);
if ($new_uid == -1) {
log_warn( mtx("No UID/GID pair is available in the range %d-%d (FIRST_UID - LAST_UID)."), $first_uid, $last_uid);
log_fatal( mtx("The user `%s' was not created."), $new_name );
exit( RET_NO_ID_IN_RANGE );
}
log_trace( "gid_option %s, ingroup_name %s", $gid_option, $ingroup_name );
if ( defined $gid_option && $gid_option == -1 && defined $ingroup_name && $ingroup_name == "") {
log_warn( mtx("USERGROUPS=no, USER_GID=-1 and USERS_GROUP empty. A user needs a primary group!") );
log_fatal( mtx("The user `%s' was not created."), $new_name );
exit( RET_NO_PRIMARY_GROUP );
} elsif (defined($gid_option) && $gid_option != -1) {
$ingroup_name = getgrgid($gid_option);
$primary_gid = $gid_option;
log_debug( "gid_option defined and not -1, ingroup_name %s, primary_gid %d", $ingroup_name, $primary_gid );
} elsif ($ingroup_name) {
$primary_gid = getgrnam($ingroup_name);
log_debug( "ingroup_name defined %s, primary_gid %d", $ingroup_name, $primary_gid );
} elsif ( defined( $primary_gid ) ) {
$ingroup_name = getgrgid($primary_gid);
log_debug( "primary_gid defined %d, ingroup_name %s", $primary_gid, $primary_gid );
} else {
$ingroup_name = 'users';
$primary_gid = 100;
log_debug( "ingroup_name hard users, primary_gid hard 100" );
}
if ($make_group_also) {
$primary_gid = $new_uid;
$ingroup_name = $new_name;
log_trace( "make_group_also %s, primary_gid %s, ingroup_name %s", $make_group_also, $primary_gid, $ingroup_name );
}
} else {
log_debug( "new_uid %s, primary_gid %s, ingroup_name %s, make_group_also %s", $new_uid, $primary_gid, $ingroup_name, $make_group_also );
if (defined($gid_option)) {
$ingroup_name = getgrgid($gid_option);
$primary_gid = $gid_option;
log_debug( "gid_option defined %s, ingroup_name %s", $gid_option, $ingroup_name );
} elsif (defined($primary_gid) && $primary_gid != -1) {
$ingroup_name = getgrgid($primary_gid);
log_debug( "primary_gid defined %s, ingroup_name %s", $primary_gid, $ingroup_name );
} elsif ($ingroup_name) {
$primary_gid = getgrnam($ingroup_name);
log_debug( "ingroup_name defined %s, primary_gid %s", $ingroup_name, $primary_gid );
} elsif ($make_group_also) {
$primary_gid=$new_uid; $ingroup_name=$new_name;
log_debug( "make_group_also %s, primary_gid defined %s, ingroup_name %s", $make_group_also, $primary_gid, $ingroup_name );
} else {
log_debug( "no gid_option, no primary_gid, no ingroup_name, no make_group_also" );
log_fatal( mtx("Internal error interpreting parameter combination") );
exit( RET_INTERNAL );
}
}
log_debug ("make_group_also %s", $make_group_also );
if ($make_group_also) {
$undogroup = $new_name;
my $groupadd = &which('groupadd');
if( defined( $primary_gid ) ) {
log_info( mtx("Adding new group `%s' (%d) ..."), $new_name, $primary_gid);
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($groupadd, '--extrausers', '-g', $primary_gid, $new_name);
} else {
&systemcall($groupadd, '-g', $primary_gid, $new_name);
}
} else {
log_info( mtx("Adding new group `%s' (new group ID) ..."), $new_name);
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($groupadd, '--extrausers', $new_name);
} else {
&systemcall($groupadd, $new_name);
}
$primary_gid = getgrnam($new_name);
log_info( mtx("new group '%s' created with GID %d"), $new_name, $primary_gid );
}
}
{
my @grgid=getgrgid($primary_gid);
my $grname=$grgid[0];
log_info( mtx("Adding new user `%s' (%d) with group `%s (%d)' ..."), $new_name, $new_uid, $grname, $primary_gid );
}
$home_dir = $special_home || $uid_pool{$new_name}{'home'} || &homedir($new_name, $ingroup_name);
if( !$disabled_login ) {
$shell = $special_shell || $uid_pool{$new_name}{'shell'} || $config{"dshell"};
} else {
$shell = $special_shell || $uid_pool{$new_name}{'shell'} || "/usr/sbin/nologin";
}
log_debug( "creating new user with home_dir %s and shell %s", $home_dir, $shell );
$undouser = $new_name;
my $useradd = &which('useradd');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($useradd, '--extrausers', '-d', $home_dir, '-g', $primary_gid, '-s',
$shell, '-u', $new_uid, $new_name);
} else {
&systemcall($useradd, '-d', $home_dir, '-g', $primary_gid, '-s',
$shell, '-u', $new_uid, $new_name);
}
create_homedir (1); # copy skeleton data
# useradd without -p has left the account disabled (password string is '!')
my $yesexpr = langinfo(YESEXPR());
my $noexpr = langinfo(NOEXPR());
if ($ask_passwd) {
PASSWD: for (;;) {
my $passwd = &which('passwd');
# do _not_ use systemcall() here, since systemcall() dies on
# non-zero exit code and we need to do special handling here!
system($passwd, $new_name);
my $ok = $?>>8;
if ($ok != 0) {
my $answer;
# hm, error, should we break now?
log_warn( mtx("Permission denied")) if ($ok == 1);
log_warn( mtx("invalid combination of options")) if ($ok == 2);
log_warn( mtx("unexpected failure, nothing done")) if ($ok == 3);
log_warn( mtx("unexpected failure, passwd file missing")) if ($ok == 4);
log_warn( mtx("passwd file busy, try again")) if ($ok == 5);
log_warn( mtx("invalid argument to option")) if ($ok == 6);
# Translators: [y/N] has to be replaced by values defined in your
# locale. You can see by running "locale noexpr" which regular
# expression will be checked to find positive answer.
PROMPT: for (;;) {
print (gtx("Try again? [y/N] "));
chop ($answer=<STDIN>);
last PROMPT if ($answer =~ m/$yesexpr/o);
last PASSWD if ($answer =~ m/$noexpr/o);
last PASSWD if (!$answer);
}
} else {
last; ## passwd ok
}
}
}
if (defined($new_comment)) {
&ch_comment($new_comment);
} elsif ($uid_pool{$new_name}{'comment'}) {
&ch_comment($uid_pool{$new_name}{'comment'});
} else {
my $noexpr = langinfo(NOEXPR());
my $yesexpr = langinfo(YESEXPR());
CHFN: for (;;) {
my $chfn = &which('chfn');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($chfn, '--extrausers', $new_name);
} else {
&systemcall($chfn, $new_name);
}
# Translators: [y/N] has to be replaced by values defined in your
# locale. You can see by running "locale yesexpr" which regular
# expression will be checked to find positive answer.
PROMPT: for (;;) {
print (gtx("Is the information correct? [Y/n] "));
chop (my $answer=<STDIN>);
last PROMPT if ($answer =~ m/$noexpr/o);
last CHFN if ($answer =~ m/$yesexpr/o);
last CHFN if (!$answer);
}
}
}
if ( ( $add_extra_groups || $config{"add_extra_groups"} ) && defined($config{"extra_groups"}) ) {
log_debug( "add extra_groups from config (%s) to supplemental_groups", $config{"extra_groups"} );
push (@supplemental_groups, split(/\s+/,$config{"extra_groups"}));
}
if ( @supplemental_groups ) {
log_info( mtx("Adding new user `%s' to supplemental / extra groups `%s' ..."), $new_name, join(", ", @supplemental_groups) );
foreach my $newgrp ( @supplemental_groups ) {
log_trace( "newgrp %s", $newgrp );
if (!defined getgrnam($newgrp)) {
log_warn( mtx("The group `%s' does not exist."), $newgrp);
next;
}
if (&user_is_member($new_name, $newgrp)) {
log_info( mtx("The user `%s' is already a member of `%s'."),
$new_name,$newgrp );
next;
}
log_info( mtx("Adding user `%s' to group `%s' ..."), $new_name, $newgrp );
my $gpasswd = &which('gpasswd');
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($gpasswd, '--extrausers', '-M',
join(',', get_group_members($newgrp), $new_name),
$newgrp);
} else {
&systemcall($gpasswd, '-M',
join(',', get_group_members($newgrp), $new_name),
$newgrp);
}
}
}
if ($config{"quotauser"}) {
log_info( mtx("Setting quota for user `%s' to values of user `%s' ..."), $new_name, $config{quotauser} );
my $edquota = &which('edquota');
&systemcall($edquota, '-p', $config{quotauser}, $new_name);
}
&systemcall('/usr/local/sbin/adduser.local', $new_name, $new_uid,
$primary_gid, $home_dir) if (-x "/usr/local/sbin/adduser.local");
release_lock(0);
exit( RET_OK );
}
#
# we never go here
#
# calculate home directory
sub homedir {
my $dir = $config{"dhome"};
$dir .= '/' . $_[1] if ($config{"grouphomes"} =~ /yes/i);
$dir .= '/' . substr($_[0],0,1) if ($config{"letterhomes"} =~ /yes/i);
$dir .= '/' . $_[0];
return $dir;
}
# create_homedir -- create the homedirectory
# parameter
# 1: $copy_skeleton:
# if 0 -> do not copy the skeleton data
# if 1 -> copy the files in /etc/skel to the newly created home directory
# return values:
# none
sub create_homedir {
my ($copy_skeleton) = @_;
if ($home_dir =~ /^\/+nonexistent(\/|$)/) {
log_info( mtx("Not creating `%s'."), $home_dir );
} elsif ($no_create_home) {
log_info( mtx("Not creating home directory `%s'."), $home_dir );
} elsif (-e $home_dir) {
log_warn( mtx("The home directory `%s' already exists. Not touching this directory."),
$home_dir );
my @homedir_stat = stat($home_dir);
my $home_uid = $homedir_stat[4];
my $home_gid = $homedir_stat[5];
if (($home_uid != $new_uid) || ($home_gid != $primary_gid)) {
log_warn( mtx("Warning: The home directory `%s' does not belong to the user you are currently creating."), $home_dir );
}
} else {
log_info( mtx("Creating home directory `%s' ..."),$home_dir );
$undohome = $home_dir;
if( !&mktree($home_dir) ) {
log_err( gtx("Couldn't create home directory `%s': %s."), $home_dir, $!);
&cleanup();
}
if ($action eq "adduser") {
# Mute the command
system('sh' => ( '-c' => '"$@" >/dev/null 2>&1', '--', '/usr/sbin/zsysctl', 'userdata', 'create', $new_name, $home_dir,));
}
if( !chown($new_uid, $primary_gid, $home_dir) ) {
log_err("chown %s:%s %s: %s", $new_uid, $primary_gid, $home_dir, $!);
&cleanup();
}
$dir_mode = get_dir_mode();
if( !chmod ($dir_mode, $home_dir) ) {
log_err("chmod %s %s: %s", $dir_mode, $home_dir, $!);
&cleanup();
}
if (defined($encrypt_home)) {
printf gtx("Setting up encryption ...\n") if $verbose;
&systemcall($ecryptfs_setup_private, '-b', '-u', $new_name);
}
if ($config{"skel"} && $copy_skeleton) {
log_info( mtx("Copying files from `%s' ..."), $config{skel} );
my $findpipe;
if( !open($findpipe, q{-|}, "cd $config{skel}; find . -print") ) {
log_err( mtx("fork for `find' failed: %s"), $!);
&cleanup();
}
while (<$findpipe>) {
chop;
next if ($_ eq ".");
next if ($_ =~ qr/$config{skel_ignore_regex}/ );
©_to_dir($config{"skel"}, $_, $home_dir, $new_uid,
$primary_gid, ($config{"setgid_home"} =~ /yes/i));
}
close ($findpipe);
}
if (defined($encrypt_home)) {
&systemcall("/bin/umount", $home_dir);
}
}
}
# mktree: create a directory and all parent directories
# we do not care about the rights and so on
# parameters:
# tree: the path
# return values:
# none
sub mktree {
my($tree) = @_;
my($done, @path);
my $default_dir_mode = oct(755);
$tree =~ s:^/*(.*)/*$:$1:; # chop off leading & trailing slashes
@path = split(/\//, $tree);
$done = "";
while (@path) {
$done .= '/' . shift(@path);
-d $done || mkdir($done, $default_dir_mode) || return 0;
}
return 1;
}
# existing_user_ok: check if there is already a user present
# on the system which satisfies the requirements
# parameter:
# new_name: the name of the user to check
# new_uid : the UID of the user
# return values:
# 0 if the the user does not exist
# 1 if the user already exists with the specified uid
# (or $new_uid was not specified)
# 2 if the user already exists, but $new_uid does not match its uid
sub existing_user_ok {
my($new_name,$new_uid) = @_;
my ($dummy1,$dummy2,$uid);
if (($dummy1,$dummy2,$uid) = getpwnam($new_name)) {
if( defined($new_uid) && $uid == $new_uid ) {
return 1;
}
if (! defined($new_uid)) {
return 1;
}
# TODO: do we really need this code? Range check should not be performed here
# also, we might be checking a normal user as well here
if( $uid >= $config{"first_system_uid"} &&
$uid <= $config{"last_system_uid" } ) {
return 2;
}
} else {
return 0;
}
}
# existing_group_ok: check if there is already a group which satiesfies the requirements
# parameter:
# new_name: the name of the group
# new_gid : the GID of the group
# return values:
# 0 if the group does not exist
# 1 if the group already exists with the specified gid
# (or $gid_option was not specified)
# 2 if the group already exists, but $gid_option does not match its gid
# 3 if the group already exists inside the system range
sub existing_group_ok {
my($new_name,$new_gid) = @_;
my ($dummy1,$dummy2,$gid);
if (($dummy1,$dummy2,$gid) = getgrnam($new_name)) {
# TODO: is this check required? There should not be any
# gid outside of our allowed range anyways ...
# also, we might be checking a normal user as well here
if( $gid >= $config{"first_system_gid"} &&
$gid <= $config{"last_system_gid" } ) {
return 3;
}
if (! defined($new_gid)) {
return 1;
}
if ($gid == $new_gid) {
return 1;
} else {
return 2;
}
} else {
return 0;
}
}
# check_user_group: ???
# parameters:
# system: 0 if the user is not a system user, 1 otherwise
# return values:
#
# todo: not sure whether global variables apply fine here.
sub check_user_group {
my ($system) = @_;
log_debug( "check_user_group %s called, make_group_also %s", $system, $make_group_also );
if( !$system || !existing_user_ok($new_name, $new_uid) ) {
if( defined getpwnam($new_name) ) {
if( $system ) {
log_fatal( mtx("The user `%s' already exists, and is not a system user."), $new_name);
exit( RET_WRONG_OBJECT_PROPERTIES );
} else {
log_fatal( mtx("The user `%s' already exists."), $new_name);
exit( RET_OBJECT_EXISTS );
}
}
if (defined($new_uid) && getpwuid($new_uid)) {
log_fatal( mtx("The UID %d is already in use."), $new_uid);
exit( RET_ID_IN_USE );
}
}
if ($make_group_also) {
log_trace( "make_group_also 1, new_name %s, new_uid %s", $new_name, $new_uid );
if( !$system || !existing_group_ok($new_name, $new_uid) ) {
if (defined getgrnam($new_name)) {
log_fatal( mtx("The group `%s' already exists."),$new_name );
exit( RET_OBJECT_EXISTS );
}
if (defined($new_uid) && defined(getgrgid($new_uid))) {
log_fatal( mtx("The GID %d is already in use."),$new_uid );
exit( RET_ID_IN_USE );
}
}
} else {
if ($ingroup_name && !defined(getgrnam($ingroup_name))) {
log_fatal( mtx("The group `%s' does not exist."), $ingroup_name);
exit( RET_OBJECT_DOES_NOT_EXIST );
}
if (defined($gid_option) && !defined(getgrgid($gid_option))) {
log_fatal( mtx("No group with GID %d found."), $gid_option);
exit( RET_OBJECT_DOES_NOT_EXIST );
}
}
log_debug( "return from check_user_group" );
}
# copy_to_dir :
# parameters:
# fromdir
# file
# todir
# newi
# newg
# sgiddir
# return values:
# none
sub copy_to_dir {
my($fromdir, $file, $todir, $newu, $newg, $sgiddir) = @_;
if (-l "$fromdir/$file") {
my $target;
if( !($target = readlink("$fromdir/$file")) ) {
log_err( "readlink: %s", $! );
&cleanup();
}
my $curgid="$)";
my $curuid="$>";
my $error="";
$)="$newg";
$>="$newu";
symlink("$target", "$todir/$file") or $error="$!";
$>="$curuid";
$)="$curgid";
if( "$error" ne "" ) {
log_err( "symlink: %s", $!);
&cleanup();
}
return;
} elsif (-f "$fromdir/$file") {
my $filefh;
my $newfilefh;
if( !open ($filefh, q{<}, "$fromdir/$file") ) {
log_err( "open %s/%s: %s", $fromdir, $file , $!);
&cleanup();
}
if( !open ($newfilefh, q{>}, "$todir/$file") ) {
log_err( "open >%s/%s: %s", $todir, $file, $!);
&cleanup();
}
if( !print $newfilefh (<$filefh>) ) {
log_err( "print %s/%s: %s", $todir, $file, $!);
&cleanup();
}
close($filefh);
if( !close($newfilefh) ) {
log_err( "close %s/%s: %s", $todir, $file, $!);
&cleanup();
}
} elsif (-d "$fromdir/$file") {
if( !mkdir("$todir/$file", 700) ) {
log_err( "mkdir: %s/%s: %s", $todir, $file, $!);
&cleanup();
}
} else {
log_err( mtx("%s/%s is neither a dir, file, nor a symlink."), $fromdir, $file );
&cleanup();
}
if( !chown($newu, $newg, "$todir/$file") ) {
log_err( "chown %s:%s %s/%s: %s", $newu, $newg, $todir, $file, $! );
&cleanup();
}
$perm = (stat("$fromdir/$file"))[2] & oct(7777);
if (-d "$fromdir/$file" && ($perm & oct(10)) && $sgiddir) {
$perm |= oct(2000);
}
if( !chmod($perm, "$todir/$file") ) {
log_err( "chmod %s/%s: %s", $todir, $file, $!);
&cleanup();
}
}
# checkname: perform some sanity checks
# parameters:
# name: the name to check
# return values:
# none (exits on error)
sub checkname {
my ($name) = @_;
my $ieee_regex = '^[_.A-Za-z0-9][-\@_.A-Za-z0-9]*\$?$';
my $min_regex = qr{^[^-+~:,\s/][^:,\s/]*$};
my $name_regex_var = $found_sys_opt ? 'SYS_NAME_REGEX' : 'NAME_REGEX';
my $name_regex = $config{lc $name_regex_var};
if ($name =~ /^[\d]+$/) {
# this check cannot be turned off
log_err( mtx("To avoid ambiguity with numerical UIDs, usernames which
consist of only digits are not allowed.") );
exit( RET_INVALID_CHARS_IN_NAME );
}
if (length $name > 32) {
# this check cannot be turned off
log_err( mtx("Usernames must be no more than 32 bytes in length;
note that if you are using Unicode characters, the character
limit will be less than 32.") );
exit( RET_INVALID_CHARS_IN_NAME );
}
if ($name !~ $min_regex) {
# this check cannot be turned off
log_err( mtx("To avoid problems, the username must not start with a
dash, plus sign, or tilde, and it must not contain any of the
following: colon, comma, slash, or any whitespace characters
including spaces, tabs, and newlines.") );
exit( RET_INVALID_CHARS_IN_NAME );
}
return if ($name =~ qr/$name_regex/);
if ($name !~ $ieee_regex && $name_check_level < 2) {
log_err( mtx("To avoid problems, the username should consist only of
letters, digits, underscores, periods, at signs and dashes, and
not start with a dash (as defined by IEEE Std 1003.1-2001). For
compatibility with Samba machine accounts, \$ is also supported
at the end of the username. (Use the `--allow-all-names' option
to bypass this restriction.)") );
exit( RET_INVALID_CHARS_IN_NAME );
}
if ($name_check_level) {
log_info( mtx("Allowing use of questionable username.") );
} else {
log_err( mtx("Please enter a username matching the regular expression
configured via the %s configuration variable. Use the
`--allow-bad-names' option to relax this check or reconfigure
%s in configuration."), $name_regex_var, $name_regex_var );
exit( RET_INVALID_CHARS_IN_NAME );
}
}
# first_avail_uid: return the first available uid in given range
# parameters:
# min, max: the range
# pool_id: user id suggested from pool
# return values:
# -1 if no free uid is available
# otherwise the choosen uid
sub first_avail_uid {
my ($min, $max, $pool_id) = @_;
if (defined ($pool_id)) {
return $pool_id if (!defined(getpwuid($pool_id)));
return -1;
}
log_info( mtx("Selecting UID from range %d to %d ...\n"),$min,$max);
my $t = $min;
while ($t <= $max) {
return $t if (!defined(getpwuid($t)));
$t++;
}
return -1; # nothing available
}
# first_avail_gid: return the first available gid in given range
# parameters:
# min, max: the range
# pool_id: group id suggested from pool
# return values:
# -1 if no free gid is available
# otherwise the choosen gid
sub first_avail_gid {
my ($min, $max, $pool_id) = @_;
if (defined ($pool_id)) {
return $pool_id if (!defined(getgrgid($pool_id)));
return -1;
}
log_info( mtx("Selecting GID from range %d to %d ..."),$min,$max);
my $t = $min;
while ($t <= $max) {
return $t if (!defined(getgrgid($t)));
$t++;
}
return -1; # nothing available
}
# first_avail_uid_gid: return the first available id in given range
# that is both available as uid and gid
# parameters:
# min, max: the range
# pool_id: user id suggested from pool
# return values:
# -1 if no free id is available
# otherwise the choosen id
sub first_avail_uid_gid {
my ($min, $max, $pool_id) = @_;
if (defined ($pool_id)) {
return $pool_id if (!defined(getgrgid($pool_id)));
return -1;
}
log_info( mtx("Selecting UID/GID from range %d to %d ..."), $min, $max );
my $t = $min;
while ($t <= $max) {
return $t if (!defined(getgrgid($t)) && !defined(getpwuid($t)));
$t++;
}
return -1; # nothing available
}
sub ch_comment {
my $chfn = &which('chfn');
my $comment = shift;
if($comment =~ /,/) {
my($comment_name,$comment_room,$comment_work,$comment_home,$comment_other)
= split(/,/,$comment);
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($chfn, '--extrausers', '-f', $comment_name, '-r', $comment_room, $new_name);
&systemcall($chfn,'--extrausers','-w',$comment_work,$new_name)
if(defined($comment_work));
&systemcall($chfn,'--extrausers','-h',$comment_home,$new_name)
if(defined($comment_home));
&systemcall($chfn,'--extrausers','-o',$comment_other,$new_name)
if(defined($comment_other));
} else {
&systemcall($chfn, '-f', $comment_name, '-r', $comment_room, $new_name);
&systemcall($chfn,'-w',$comment_work,$new_name)
if(defined($comment_work));
&systemcall($chfn,'-h',$comment_home,$new_name)
if(defined($comment_home));
&systemcall($chfn,'-o',$comment_other,$new_name)
if(defined($comment_other));
}
} else {
if ( ($use_extrausers) || ($config{"use_extrausers"}) ) {
&systemcall($chfn, '--extrausers', '-f', $comment, $new_name);
} else {
&systemcall($chfn, '-f', $comment, $new_name);
}
}
}
# user is member of group?
sub user_is_member {
my($user, $group) = @_;
for (split(/ /, (getgrnam($group))[3])) {
return 1 if ($user eq $_);
}
return 0;
}
sub cleanup {
if ($undohome) {
log_info( mtx("Removing directory `%s' ..."), $undohome);
&systemcall('rm', '-rf', $undohome);
}
if ($undouser) {
log_info( mtx("Removing user `%s' ..."), $undouser);
&systemcall('userdel', $undouser);
}
if ($undogroup) {
log_info( mtx("Removing group `%s' ..."), $undogroup);
&systemcall('groupdel', $undogroup);
}
exit( RET_ADDUSER_ABORTED );
}
sub handler {
my($sig) = @_;
# Translators: the variable %s is INT, QUIT, or HUP.
# Please do not insert a space character between SIG and %s.
log_err( mtx( "Caught a SIG%s.", $sig ) );
&cleanup();
}
sub version {
printf( gtx("adduser version %s\n\n"), $version );
print( gtx("Adds a user or group to the system.
For detailed copyright information, please refer to
/usr/share/doc/adduser/copyright.
\n") );
print( gtx(
"This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) 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, /usr/share/common-licenses/GPL, for more details.
") );
}
sub usage {
printf( gtx(
"adduser [--uid id] [--firstuid id] [--lastuid id]
[--gid id] [--firstgid id] [--lastgid id] [--ingroup group]
[--add-extra-groups] [--encrypt-home] [--shell shell]
[--comment comment] [--home dir] [--no-create-home]
[--allow-all-names] [--allow-bad-names]
[--disabled-password] [--disabled-login]
[--conf file] [--extrausers] [--quiet] [--verbose] [--debug]
user
Add a normal user
adduser --system
[--uid id] [--group] [--ingroup group] [--gid id]
[--shell shell] [--comment comment] [--home dir] [--no-create-home]
[--conf file] [--extrausers] [--quiet] [--verbose] [--debug]
user
Add a system user
adduser --group
[--gid ID] [--firstgid id] [--lastgid id]
[--conf file] [--extrausers] [--quiet] [--verbose] [--debug]
group
addgroup
[--gid ID] [--firstgid id] [--lastgid id]
[--conf file] [--extrausers] [--quiet] [--verbose] [--debug]
group
Add a user group
addgroup --system
[--gid id]
[--conf file] [--extrausers] [--quiet] [--verbose] [--debug]
group
Add a system group
adduser [--extrausers] USER GROUP
Add an existing user to an existing group\n") );
}
sub usage_error {
&usage;
exit( RET_INVALID_CALL );
}
# get_dir_mode: return the appropriate permissions mode for a home directory
# parameters:
# none
# return value:
# a valid octal mode
sub get_dir_mode
{
my $setgid = $config{"setgid_home"} =~ /yes/i;
my $mode = $found_sys_opt
? $config{"sys_dir_mode"}
: $config{"dir_mode"};
if(!defined($mode) || ! ($mode =~ /[0-7]{3}/ || $mode =~ /[0-7]{4}/)) {
$mode = ($found_sys_opt) ? "750" : "0750";
}
if($setgid && (length($mode) == 3 || $mode =~ /^[0-1|4-5][0-7]{3}$/)) {
$mode += 2000;
}
return oct($mode);
}
# Local Variables:
# mode:cperl
# cperl-indent-level:4
# End:
# vim: tabstop=4 shiftwidth=4 expandtab
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ModemManager | File | 2.07 MB | 0755 |
|
| a2disconf | File | 15.75 KB | 0755 |
|
| a2dismod | File | 15.75 KB | 0755 |
|
| a2dissite | File | 15.75 KB | 0755 |
|
| a2enconf | File | 15.75 KB | 0755 |
|
| a2enmod | File | 15.75 KB | 0755 |
|
| a2ensite | File | 15.75 KB | 0755 |
|
| a2query | File | 9.6 KB | 0755 |
|
| aa-load | File | 38.75 KB | 0755 |
|
| aa-remove-unknown | File | 3.15 KB | 0755 |
|
| aa-status | File | 39.06 KB | 0755 |
|
| aa-teardown | File | 137 B | 0755 |
|
| accessdb | File | 14.55 KB | 0755 |
|
| add-shell | File | 1.03 KB | 0755 |
|
| addgnupghome | File | 3 KB | 0755 |
|
| addgroup | File | 53.9 KB | 0755 |
|
| adduser | File | 53.9 KB | 0755 |
|
| agetty | File | 59.56 KB | 0755 |
|
| apache2 | File | 736.55 KB | 0755 |
|
| apache2ctl | File | 7.26 KB | 0755 |
|
| apachectl | File | 7.26 KB | 0755 |
|
| apparmor_parser | File | 1.55 MB | 0755 |
|
| apparmor_status | File | 39.06 KB | 0755 |
|
| applygnupgdefaults | File | 2.17 KB | 0755 |
|
| argdist-bpfcc | File | 36 KB | 0755 |
|
| arpd | File | 26.33 KB | 0755 |
|
| arptables | File | 219.16 KB | 0755 |
|
| arptables-nft | File | 219.16 KB | 0755 |
|
| arptables-nft-restore | File | 219.16 KB | 0755 |
|
| arptables-nft-save | File | 219.16 KB | 0755 |
|
| arptables-restore | File | 219.16 KB | 0755 |
|
| arptables-save | File | 219.16 KB | 0755 |
|
| badblocks | File | 34.32 KB | 0755 |
|
| bashreadline-bpfcc | File | 2.32 KB | 0755 |
|
| bashreadline.bt | File | 698 B | 0755 |
|
| bcache-super-show | File | 14.3 KB | 0755 |
|
| bindsnoop-bpfcc | File | 15.96 KB | 0755 |
|
| biolatency-bpfcc | File | 11.1 KB | 0755 |
|
| biolatency-kp.bt | File | 664 B | 0755 |
|
| biolatency.bt | File | 681 B | 0755 |
|
| biolatpcts-bpfcc | File | 10.01 KB | 0755 |
|
| biopattern-bpfcc | File | 3.86 KB | 0755 |
|
| biosdecode | File | 27.2 KB | 0755 |
|
| biosnoop-bpfcc | File | 10.58 KB | 0755 |
|
| biosnoop.bt | File | 1.12 KB | 0755 |
|
| biostacks.bt | File | 915 B | 0755 |
|
| biotop-bpfcc | File | 9.34 KB | 0755 |
|
| bitesize-bpfcc | File | 1.14 KB | 0755 |
|
| bitesize.bt | File | 567 B | 0755 |
|
| blkdeactivate | File | 15.97 KB | 0755 |
|
| blkdiscard | File | 22.38 KB | 0755 |
|
| blkid | File | 54.41 KB | 0755 |
|
| blkzone | File | 34.38 KB | 0755 |
|
| blockdev | File | 34.38 KB | 0755 |
|
| bpflist-bpfcc | File | 2.54 KB | 0755 |
|
| bpftool | File | 1.58 KB | 0755 |
|
| bridge | File | 108.49 KB | 0755 |
|
| btrfsdist-bpfcc | File | 6.47 KB | 0755 |
|
| btrfsslower-bpfcc | File | 9.75 KB | 0755 |
|
| cache_check | File | 1.36 MB | 0755 |
|
| cache_dump | File | 1.36 MB | 0755 |
|
| cache_metadata_size | File | 1.36 MB | 0755 |
|
| cache_repair | File | 1.36 MB | 0755 |
|
| cache_restore | File | 1.36 MB | 0755 |
|
| cache_writeback | File | 1.36 MB | 0755 |
|
| cachestat-bpfcc | File | 6.38 KB | 0755 |
|
| cachetop-bpfcc | File | 9.15 KB | 0755 |
|
| capable-bpfcc | File | 8.28 KB | 0755 |
|
| capable.bt | File | 1.88 KB | 0755 |
|
| capsh | File | 57.09 KB | 0755 |
|
| cfdisk | File | 94.73 KB | 0755 |
|
| cgdisk | File | 166.48 KB | 0755 |
|
| chcpu | File | 30.38 KB | 0755 |
|
| check_forensic | File | 952 B | 0755 |
|
| chgpasswd | File | 58.32 KB | 0755 |
|
| chmem | File | 34.38 KB | 0755 |
|
| chpasswd | File | 54.43 KB | 0755 |
|
| chroot | File | 38.51 KB | 0755 |
|
| cobjnew-bpfcc | File | 53 B | 0755 |
|
| compactsnoop-bpfcc | File | 11.1 KB | 0755 |
|
| cpgr | File | 48.45 KB | 0755 |
|
| cppw | File | 48.45 KB | 0755 |
|
| cpudist-bpfcc | File | 6.85 KB | 0755 |
|
| cpuunclaimed-bpfcc | File | 14.59 KB | 0755 |
|
| cpuwalk.bt | File | 497 B | 0755 |
|
| criticalstat-bpfcc | File | 8.41 KB | 0755 |
|
| cron | File | 58.67 KB | 0755 |
|
| cryptdisks_start | File | 1.51 KB | 0755 |
|
| cryptdisks_stop | File | 844 B | 0755 |
|
| cryptsetup | File | 225.9 KB | 0755 |
|
| ctrlaltdel | File | 14.38 KB | 0755 |
|
| dbconfig-generate-include | File | 12.36 KB | 0755 |
|
| dbconfig-load-include | File | 5.57 KB | 0755 |
|
| dbslower-bpfcc | File | 7.22 KB | 0755 |
|
| dbstat-bpfcc | File | 3.7 KB | 0755 |
|
| dcb | File | 80.52 KB | 0755 |
|
| dcsnoop-bpfcc | File | 4.03 KB | 0755 |
|
| dcsnoop.bt | File | 1.23 KB | 0755 |
|
| dcstat-bpfcc | File | 3.77 KB | 0755 |
|
| ddns-confgen | File | 22.3 KB | 0755 |
|
| deadlock-bpfcc | File | 20.45 KB | 0755 |
|
| debugfs | File | 225.87 KB | 0755 |
|
| delgroup | File | 18.53 KB | 0755 |
|
| deluser | File | 18.53 KB | 0755 |
|
| depmod | File | 170.24 KB | 0755 |
|
| devlink | File | 150.86 KB | 0755 |
|
| dhcpcd | File | 395.4 KB | 0755 |
|
| dirtop-bpfcc | File | 8.37 KB | 0755 |
|
| dmeventd | File | 50.38 KB | 0755 |
|
| dmidecode | File | 135.25 KB | 0755 |
|
| dmsetup | File | 171.05 KB | 0755 |
|
| dmstats | File | 171.05 KB | 0755 |
|
| dosfsck | File | 78.38 KB | 0755 |
|
| dosfslabel | File | 38.38 KB | 0755 |
|
| dpkg-preconfigure | File | 4.25 KB | 0755 |
|
| dpkg-reconfigure | File | 4.43 KB | 0755 |
|
| drsnoop-bpfcc | File | 6.73 KB | 0755 |
|
| dumpe2fs | File | 34.31 KB | 0755 |
|
| e2freefrag | File | 18.3 KB | 0755 |
|
| e2fsck | File | 364.34 KB | 0755 |
|
| e2image | File | 42.31 KB | 0755 |
|
| e2label | File | 110.56 KB | 0755 |
|
| e2mmpstatus | File | 34.31 KB | 0755 |
|
| e2scrub | File | 7.12 KB | 0755 |
|
| e2scrub_all | File | 5.27 KB | 0755 |
|
| e2undo | File | 22.3 KB | 0755 |
|
| e4crypt | File | 30.38 KB | 0755 |
|
| e4defrag | File | 34.3 KB | 0755 |
|
| ebtables | File | 219.16 KB | 0755 |
|
| ebtables-nft | File | 219.16 KB | 0755 |
|
| ebtables-nft-restore | File | 219.16 KB | 0755 |
|
| ebtables-nft-save | File | 219.16 KB | 0755 |
|
| ebtables-restore | File | 219.16 KB | 0755 |
|
| ebtables-save | File | 219.16 KB | 0755 |
|
| ebtables-translate | File | 219.16 KB | 0755 |
|
| era_check | File | 1.36 MB | 0755 |
|
| era_dump | File | 1.36 MB | 0755 |
|
| era_invalidate | File | 1.36 MB | 0755 |
|
| era_restore | File | 1.36 MB | 0755 |
|
| ethtool | File | 651.68 KB | 0755 |
|
| execsnoop-bpfcc | File | 9.82 KB | 0755 |
|
| execsnoop.bt | File | 928 B | 0755 |
|
| exitsnoop-bpfcc | File | 9.42 KB | 0755 |
|
| ext4dist-bpfcc | File | 6.53 KB | 0755 |
|
| ext4slower-bpfcc | File | 9.71 KB | 0755 |
|
| faillock | File | 22.31 KB | 0755 |
|
| fatlabel | File | 38.38 KB | 0755 |
|
| fdisk | File | 114.42 KB | 0755 |
|
| filefrag | File | 18.32 KB | 0755 |
|
| filegone-bpfcc | File | 5.64 KB | 0755 |
|
| filelife-bpfcc | File | 6.38 KB | 0755 |
|
| fileslower-bpfcc | File | 7.2 KB | 0755 |
|
| filetop-bpfcc | File | 6.35 KB | 0755 |
|
| findfs | File | 14.38 KB | 0755 |
|
| fixparts | File | 58.48 KB | 0755 |
|
| fsadm | File | 24 KB | 0755 |
|
| fsck | File | 42.42 KB | 0755 |
|
| fsck.btrfs | File | 1.16 KB | 0755 |
|
| fsck.cramfs | File | 30.44 KB | 0755 |
|
| fsck.ext2 | File | 364.34 KB | 0755 |
|
| fsck.ext3 | File | 364.34 KB | 0755 |
|
| fsck.ext4 | File | 364.34 KB | 0755 |
|
| fsck.fat | File | 78.38 KB | 0755 |
|
| fsck.minix | File | 54.41 KB | 0755 |
|
| fsck.msdos | File | 78.38 KB | 0755 |
|
| fsck.vfat | File | 78.38 KB | 0755 |
|
| fsck.xfs | File | 2.51 KB | 0755 |
|
| fsfreeze | File | 14.38 KB | 0755 |
|
| fstab-decode | File | 14.3 KB | 0755 |
|
| fstrim | File | 42.38 KB | 0755 |
|
| funccount-bpfcc | File | 12.68 KB | 0755 |
|
| funcinterval-bpfcc | File | 5.46 KB | 0755 |
|
| funclatency-bpfcc | File | 11.28 KB | 0755 |
|
| funcslower-bpfcc | File | 10.38 KB | 0755 |
|
| gdisk | File | 198.48 KB | 0755 |
|
| genl | File | 120.58 KB | 0755 |
|
| getcap | File | 14.3 KB | 0755 |
|
| gethostlatency-bpfcc | File | 3.82 KB | 0755 |
|
| gethostlatency.bt | File | 1.19 KB | 0755 |
|
| getpcaps | File | 14.3 KB | 0755 |
|
| getty | File | 59.56 KB | 0755 |
|
| groupadd | File | 71.13 KB | 0755 |
|
| groupdel | File | 62.91 KB | 0755 |
|
| groupmems | File | 58.34 KB | 0755 |
|
| groupmod | File | 71.04 KB | 0755 |
|
| grpck | File | 58.32 KB | 0755 |
|
| grpconv | File | 50.16 KB | 0755 |
|
| grpunconv | File | 50.16 KB | 0755 |
|
| grub-bios-setup | File | 958.55 KB | 0755 |
|
| grub-install | File | 1.17 MB | 0755 |
|
| grub-macbless | File | 946.41 KB | 0755 |
|
| grub-mkconfig | File | 8.63 KB | 0755 |
|
| grub-mkdevicemap | File | 70.69 KB | 0755 |
|
| grub-probe | File | 954.66 KB | 0755 |
|
| grub-reboot | File | 4.73 KB | 0755 |
|
| grub-set-default | File | 3.47 KB | 0755 |
|
| halt | File | 1.43 MB | 0755 |
|
| hardirqs-bpfcc | File | 6.85 KB | 0755 |
|
| hdparm | File | 139.43 KB | 0755 |
|
| httxt2dbm | File | 14.3 KB | 0755 |
|
| iconvconfig | File | 34.47 KB | 0755 |
|
| init | File | 98.45 KB | 0755 |
|
| inject-bpfcc | File | 16.06 KB | 0755 |
|
| insmod | File | 170.24 KB | 0755 |
|
| install-sgmlcatalog | File | 4.44 KB | 0755 |
|
| installkernel | File | 2.6 KB | 0755 |
|
| integritysetup | File | 67.06 KB | 0755 |
|
| invoke-rc.d | File | 16.13 KB | 0755 |
|
| ip | File | 754.8 KB | 0755 |
|
| ip6tables | File | 219.16 KB | 0755 |
|
| ip6tables-apply | File | 6.89 KB | 0755 |
|
| ip6tables-legacy | File | 92.95 KB | 0755 |
|
| ip6tables-legacy-restore | File | 92.95 KB | 0755 |
|
| ip6tables-legacy-save | File | 92.95 KB | 0755 |
|
| ip6tables-nft | File | 219.16 KB | 0755 |
|
| ip6tables-nft-restore | File | 219.16 KB | 0755 |
|
| ip6tables-nft-save | File | 219.16 KB | 0755 |
|
| ip6tables-restore | File | 219.16 KB | 0755 |
|
| ip6tables-restore-translate | File | 219.16 KB | 0755 |
|
| ip6tables-save | File | 219.16 KB | 0755 |
|
| ip6tables-translate | File | 219.16 KB | 0755 |
|
| iptables | File | 219.16 KB | 0755 |
|
| iptables-apply | File | 6.89 KB | 0755 |
|
| iptables-legacy | File | 92.95 KB | 0755 |
|
| iptables-legacy-restore | File | 92.95 KB | 0755 |
|
| iptables-legacy-save | File | 92.95 KB | 0755 |
|
| iptables-nft | File | 219.16 KB | 0755 |
|
| iptables-nft-restore | File | 219.16 KB | 0755 |
|
| iptables-nft-save | File | 219.16 KB | 0755 |
|
| iptables-restore | File | 219.16 KB | 0755 |
|
| iptables-restore-translate | File | 219.16 KB | 0755 |
|
| iptables-save | File | 219.16 KB | 0755 |
|
| iptables-translate | File | 219.16 KB | 0755 |
|
| iscsi-iname | File | 18.3 KB | 0755 |
|
| iscsi_discovery | File | 5.17 KB | 0755 |
|
| iscsiadm | File | 370.43 KB | 0755 |
|
| iscsid | File | 286.55 KB | 0755 |
|
| iscsistart | File | 274.49 KB | 0755 |
|
| isosize | File | 14.38 KB | 0755 |
|
| iucode-tool | File | 54.34 KB | 0755 |
|
| iucode_tool | File | 54.34 KB | 0755 |
|
| javacalls-bpfcc | File | 55 B | 0755 |
|
| javaflow-bpfcc | File | 54 B | 0755 |
|
| javagc-bpfcc | File | 52 B | 0755 |
|
| javaobjnew-bpfcc | File | 56 B | 0755 |
|
| javastat-bpfcc | File | 54 B | 0755 |
|
| javathreads-bpfcc | File | 57 B | 0755 |
|
| kbdrate | File | 18.31 KB | 0755 |
|
| killall5 | File | 26.23 KB | 0755 |
|
| killsnoop-bpfcc | File | 4.45 KB | 0755 |
|
| killsnoop.bt | File | 873 B | 0755 |
|
| klockstat-bpfcc | File | 13.04 KB | 0755 |
|
| kpartx | File | 42.16 KB | 0755 |
|
| kvmexit-bpfcc | File | 11.19 KB | 0755 |
|
| ldattach | File | 26.38 KB | 0755 |
|
| ldconfig | File | 387 B | 0755 |
|
| ldconfig.real | File | 1 MB | 0755 |
|
| llcstat-bpfcc | File | 4.48 KB | 0755 |
|
| loads.bt | File | 1.1 KB | 0755 |
|
| locale-gen | File | 4.21 KB | 0755 |
|
| logrotate | File | 94.24 KB | 0755 |
|
| logsave | File | 14.16 KB | 0755 |
|
| losetup | File | 74.52 KB | 0755 |
|
| lsmod | File | 170.24 KB | 0755 |
|
| luksformat | File | 3.32 KB | 0755 |
|
| lvchange | File | 3.01 MB | 0755 |
|
| lvconvert | File | 3.01 MB | 0755 |
|
| lvcreate | File | 3.01 MB | 0755 |
|
| lvdisplay | File | 3.01 MB | 0755 |
|
| lvextend | File | 3.01 MB | 0755 |
|
| lvm | File | 3.01 MB | 0755 |
|
| lvmconfig | File | 3.01 MB | 0755 |
|
| lvmdiskscan | File | 3.01 MB | 0755 |
|
| lvmdump | File | 10.12 KB | 0755 |
|
| lvmpolld | File | 235.97 KB | 0755 |
|
| lvmsadc | File | 3.01 MB | 0755 |
|
| lvmsar | File | 3.01 MB | 0755 |
|
| lvreduce | File | 3.01 MB | 0755 |
|
| lvremove | File | 3.01 MB | 0755 |
|
| lvrename | File | 3.01 MB | 0755 |
|
| lvresize | File | 3.01 MB | 0755 |
|
| lvs | File | 3.01 MB | 0755 |
|
| lvscan | File | 3.01 MB | 0755 |
|
| lxc | File | 589 B | 0755 |
|
| lxd | File | 589 B | 0755 |
|
| make-bcache | File | 22.38 KB | 0755 |
|
| make-ssl-cert | File | 6.65 KB | 0755 |
|
| mariadbd | File | 26.09 MB | 0755 |
|
| mdadm | File | 622.21 KB | 0755 |
|
| mdflush-bpfcc | File | 2.24 KB | 0755 |
|
| mdflush.bt | File | 775 B | 0755 |
|
| mdmon | File | 258.8 KB | 0755 |
|
| memleak-bpfcc | File | 20.8 KB | 0755 |
|
| mkdosfs | File | 50.83 KB | 0755 |
|
| mke2fs | File | 130.62 KB | 0755 |
|
| mkfs | File | 14.38 KB | 0755 |
|
| mkfs.bfs | File | 22.38 KB | 0755 |
|
| mkfs.btrfs | File | 560.3 KB | 0755 |
|
| mkfs.cramfs | File | 34.32 KB | 0755 |
|
| mkfs.ext2 | File | 130.62 KB | 0755 |
|
| mkfs.ext3 | File | 130.62 KB | 0755 |
|
| mkfs.ext4 | File | 130.62 KB | 0755 |
|
| mkfs.fat | File | 50.83 KB | 0755 |
|
| mkfs.minix | File | 42.39 KB | 0755 |
|
| mkfs.msdos | File | 50.83 KB | 0755 |
|
| mkfs.ntfs | File | 66.38 KB | 0755 |
|
| mkfs.vfat | File | 50.83 KB | 0755 |
|
| mkfs.xfs | File | 438.99 KB | 0755 |
|
| mkhomedir_helper | File | 22.34 KB | 0755 |
|
| mkinitramfs | File | 15.39 KB | 0755 |
|
| mklost+found | File | 14.3 KB | 0755 |
|
| mkntfs | File | 66.38 KB | 0755 |
|
| mkswap | File | 50.38 KB | 0755 |
|
| modinfo | File | 170.24 KB | 0755 |
|
| modprobe | File | 170.24 KB | 0755 |
|
| mount.fuse | File | 18.3 KB | 0755 |
|
| mount.fuse3 | File | 18.3 KB | 0755 |
|
| mount.lowntfs-3g | File | 118.98 KB | 0755 |
|
| mount.ntfs | File | 159.01 KB | 0755 |
|
| mount.ntfs-3g | File | 159.01 KB | 0755 |
|
| mountsnoop-bpfcc | File | 14.62 KB | 0755 |
|
| mpathpersist | File | 31.21 KB | 0755 |
|
| multipath | File | 34.3 KB | 0755 |
|
| multipathc | File | 18.3 KB | 0755 |
|
| multipathd | File | 142.46 KB | 0755 |
|
| mysqld | File | 26.09 MB | 0755 |
|
| mysqld_qslower-bpfcc | File | 3.05 KB | 0755 |
|
| named | File | 574.16 KB | 0755 |
|
| naptime.bt | File | 1.01 KB | 0755 |
|
| needrestart | File | 40.13 KB | 0755 |
|
| netfilter-persistent | File | 1.04 KB | 0755 |
|
| netplan | File | 802 B | 0755 |
|
| netqtop-bpfcc | File | 5.59 KB | 0755 |
|
| newusers | File | 86.96 KB | 0755 |
|
| nfnl_osf | File | 18.3 KB | 0755 |
|
| nfsdist-bpfcc | File | 4.95 KB | 0755 |
|
| nfsslower-bpfcc | File | 13.61 KB | 0755 |
|
| nft | File | 26.23 KB | 0755 |
|
| nodegc-bpfcc | File | 52 B | 0755 |
|
| nodestat-bpfcc | File | 54 B | 0755 |
|
| nologin | File | 14.3 KB | 0755 |
|
| ntfsclone | File | 50.38 KB | 0755 |
|
| ntfscp | File | 30.38 KB | 0755 |
|
| ntfslabel | File | 22.38 KB | 0755 |
|
| ntfsresize | File | 62.39 KB | 0755 |
|
| ntfsundelete | File | 50.38 KB | 0755 |
|
| offcputime-bpfcc | File | 13.46 KB | 0755 |
|
| offwaketime-bpfcc | File | 15.31 KB | 0755 |
|
| on_ac_power | File | 3.7 KB | 0755 |
|
| oomkill-bpfcc | File | 2.04 KB | 0755 |
|
| oomkill.bt | File | 1.17 KB | 0755 |
|
| opensnoop-bpfcc | File | 14.24 KB | 0755 |
|
| opensnoop.bt | File | 953 B | 0755 |
|
| overlayroot-chroot | File | 2.45 KB | 0755 |
|
| ownership | File | 14.45 KB | 0755 |
|
| pam-auth-update | File | 20.96 KB | 0755 |
|
| pam_extrausers_chkpwd | File | 26.31 KB | 2755 |
|
| pam_extrausers_update | File | 34.31 KB | 0755 |
|
| pam_getenv | File | 2.82 KB | 0755 |
|
| pam_namespace_helper | File | 467 B | 0755 |
|
| pam_timestamp_check | File | 14.31 KB | 0755 |
|
| paperconfig | File | 4.07 KB | 0755 |
|
| parted | File | 94.4 KB | 0755 |
|
| partprobe | File | 14.38 KB | 0755 |
|
| pdata_tools | File | 1.36 MB | 0755 |
|
| perlcalls-bpfcc | File | 55 B | 0755 |
|
| perlflow-bpfcc | File | 54 B | 0755 |
|
| perlstat-bpfcc | File | 54 B | 0755 |
|
| phpcalls-bpfcc | File | 54 B | 0755 |
|
| phpdismod | File | 7.11 KB | 0755 |
|
| phpenmod | File | 7.11 KB | 0755 |
|
| phpflow-bpfcc | File | 53 B | 0755 |
|
| phpquery | File | 6.24 KB | 0755 |
|
| phpstat-bpfcc | File | 53 B | 0755 |
|
| pidpersec-bpfcc | File | 1.08 KB | 0755 |
|
| pidpersec.bt | File | 628 B | 0755 |
|
| pivot_root | File | 14.38 KB | 0755 |
|
| plymouthd | File | 146.57 KB | 0755 |
|
| poweroff | File | 1.43 MB | 0755 |
|
| ppchcalls-bpfcc | File | 13.89 KB | 0755 |
|
| profile-bpfcc | File | 14.41 KB | 0755 |
|
| pvchange | File | 3.01 MB | 0755 |
|
| pvck | File | 3.01 MB | 0755 |
|
| pvcreate | File | 3.01 MB | 0755 |
|
| pvdisplay | File | 3.01 MB | 0755 |
|
| pvmove | File | 3.01 MB | 0755 |
|
| pvremove | File | 3.01 MB | 0755 |
|
| pvresize | File | 3.01 MB | 0755 |
|
| pvs | File | 3.01 MB | 0755 |
|
| pvscan | File | 3.01 MB | 0755 |
|
| pwck | File | 54.29 KB | 0755 |
|
| pwconv | File | 46.16 KB | 0755 |
|
| pwhistory_helper | File | 22.31 KB | 0755 |
|
| pwunconv | File | 46.16 KB | 0755 |
|
| pythoncalls-bpfcc | File | 57 B | 0755 |
|
| pythonflow-bpfcc | File | 56 B | 0755 |
|
| pythongc-bpfcc | File | 54 B | 0755 |
|
| pythonstat-bpfcc | File | 56 B | 0755 |
|
| rdmaucma-bpfcc | File | 4.95 KB | 0755 |
|
| readahead-bpfcc | File | 6.54 KB | 0755 |
|
| readprofile | File | 22.41 KB | 0755 |
|
| reboot | File | 1.43 MB | 0755 |
|
| remove-shell | File | 1.08 KB | 0755 |
|
| reset-trace-bpfcc | File | 3.42 KB | 0755 |
|
| resize2fs | File | 70.3 KB | 0755 |
|
| resolvconf | File | 158.67 KB | 0755 |
|
| rmmod | File | 170.24 KB | 0755 |
|
| rmt | File | 54.71 KB | 0755 |
|
| rmt-tar | File | 54.71 KB | 0755 |
|
| rndc | File | 42.3 KB | 0755 |
|
| rndc-confgen | File | 22.3 KB | 0755 |
|
| rsyslogd | File | 771.67 KB | 0755 |
|
| rtacct | File | 28.31 KB | 0755 |
|
| rtcwake | File | 34.38 KB | 0755 |
|
| rtmon | File | 116.52 KB | 0755 |
|
| rubycalls-bpfcc | File | 55 B | 0755 |
|
| rubyflow-bpfcc | File | 54 B | 0755 |
|
| rubygc-bpfcc | File | 52 B | 0755 |
|
| rubyobjnew-bpfcc | File | 56 B | 0755 |
|
| rubystat-bpfcc | File | 54 B | 0755 |
|
| runlevel | File | 1.43 MB | 0755 |
|
| runqlat-bpfcc | File | 9.3 KB | 0755 |
|
| runqlat.bt | File | 788 B | 0755 |
|
| runqlen-bpfcc | File | 8.05 KB | 0755 |
|
| runqlen.bt | File | 1.01 KB | 0755 |
|
| runqslower-bpfcc | File | 9.01 KB | 0755 |
|
| runuser | File | 54.38 KB | 0755 |
|
| service | File | 8.89 KB | 0755 |
|
| setcap | File | 14.3 KB | 0755 |
|
| setuids.bt | File | 1.76 KB | 0755 |
|
| setvesablank | File | 14.37 KB | 0755 |
|
| setvtrgb | File | 14.43 KB | 0755 |
|
| sfdisk | File | 106.38 KB | 0755 |
|
| sgdisk | File | 178.48 KB | 0755 |
|
| shadowconfig | File | 2.22 KB | 0755 |
|
| shmsnoop-bpfcc | File | 7.8 KB | 0755 |
|
| shutdown | File | 1.43 MB | 0755 |
|
| slabratetop-bpfcc | File | 6.38 KB | 0755 |
|
| sofdsnoop-bpfcc | File | 8.06 KB | 0755 |
|
| softirqs-bpfcc | File | 5.59 KB | 0755 |
|
| solisten-bpfcc | File | 5.96 KB | 0755 |
|
| split-logfile | File | 2.36 KB | 0755 |
|
| sshd | File | 899.82 KB | 0755 |
|
| ssllatency.bt | File | 2.08 KB | 0755 |
|
| sslsniff-bpfcc | File | 13.68 KB | 0755 |
|
| sslsnoop.bt | File | 1.99 KB | 0755 |
|
| stackcount-bpfcc | File | 16.26 KB | 0755 |
|
| start-stop-daemon | File | 47.49 KB | 0755 |
|
| statsnoop-bpfcc | File | 4.92 KB | 0755 |
|
| statsnoop.bt | File | 1.26 KB | 0755 |
|
| sudo_logsrvd | File | 248.5 KB | 0755 |
|
| sudo_sendlog | File | 131.67 KB | 0755 |
|
| sulogin | File | 42.38 KB | 0755 |
|
| swapin.bt | File | 600 B | 0755 |
|
| swaplabel | File | 18.38 KB | 0755 |
|
| swapoff | File | 22.38 KB | 0755 |
|
| swapon | File | 42.38 KB | 0755 |
|
| switch_root | File | 22.38 KB | 0755 |
|
| syncsnoop-bpfcc | File | 1.27 KB | 0755 |
|
| syncsnoop.bt | File | 839 B | 0755 |
|
| syscount-bpfcc | File | 8.57 KB | 0755 |
|
| syscount.bt | File | 872 B | 0755 |
|
| sysctl | File | 30.38 KB | 0755 |
|
| tarcat | File | 936 B | 0755 |
|
| tc | File | 630.08 KB | 0755 |
|
| tclcalls-bpfcc | File | 54 B | 0755 |
|
| tclflow-bpfcc | File | 53 B | 0755 |
|
| tclobjnew-bpfcc | File | 55 B | 0755 |
|
| tclstat-bpfcc | File | 53 B | 0755 |
|
| tcpaccept-bpfcc | File | 9 KB | 0755 |
|
| tcpaccept.bt | File | 1.71 KB | 0755 |
|
| tcpcong-bpfcc | File | 20.11 KB | 0755 |
|
| tcpconnect-bpfcc | File | 18.46 KB | 0755 |
|
| tcpconnect.bt | File | 1.58 KB | 0755 |
|
| tcpconnlat-bpfcc | File | 9.07 KB | 0755 |
|
| tcpdrop-bpfcc | File | 7.44 KB | 0755 |
|
| tcpdrop.bt | File | 2.41 KB | 0755 |
|
| tcplife-bpfcc | File | 16.55 KB | 0755 |
|
| tcplife.bt | File | 2.72 KB | 0755 |
|
| tcpretrans-bpfcc | File | 13.77 KB | 0755 |
|
| tcpretrans.bt | File | 2.07 KB | 0755 |
|
| tcprtt-bpfcc | File | 8.7 KB | 0755 |
|
| tcpstates-bpfcc | File | 13.73 KB | 0755 |
|
| tcpsubnet-bpfcc | File | 7.63 KB | 0755 |
|
| tcpsynbl-bpfcc | File | 2.12 KB | 0755 |
|
| tcpsynbl.bt | File | 962 B | 0755 |
|
| tcptop-bpfcc | File | 12.64 KB | 0755 |
|
| tcptracer-bpfcc | File | 17.71 KB | 0755 |
|
| telinit | File | 1.43 MB | 0755 |
|
| thermald | File | 526.73 KB | 0755 |
|
| thin_check | File | 1.36 MB | 0755 |
|
| thin_delta | File | 1.36 MB | 0755 |
|
| thin_dump | File | 1.36 MB | 0755 |
|
| thin_ls | File | 1.36 MB | 0755 |
|
| thin_metadata_size | File | 1.36 MB | 0755 |
|
| thin_repair | File | 1.36 MB | 0755 |
|
| thin_restore | File | 1.36 MB | 0755 |
|
| thin_rmap | File | 1.36 MB | 0755 |
|
| thin_trim | File | 1.36 MB | 0755 |
|
| threadsnoop-bpfcc | File | 1.81 KB | 0755 |
|
| threadsnoop.bt | File | 712 B | 0755 |
|
| tipc | File | 90.52 KB | 0755 |
|
| tplist-bpfcc | File | 4.06 KB | 0755 |
|
| trace-bpfcc | File | 42.86 KB | 0755 |
|
| tsig-keygen | File | 22.3 KB | 0755 |
|
| ttysnoop-bpfcc | File | 7.51 KB | 0755 |
|
| tune2fs | File | 110.56 KB | 0755 |
|
| u-d-c-print-pci-ids | File | 517 B | 0755 |
|
| ucalls | File | 11.69 KB | 0755 |
|
| uflow | File | 7.92 KB | 0755 |
|
| ugc | File | 7.64 KB | 0755 |
|
| umount.udisks2 | File | 14.3 KB | 0755 |
|
| undump.bt | File | 789 B | 0755 |
|
| unix_chkpwd | File | 30.31 KB | 2755 |
|
| unix_update | File | 34.31 KB | 0755 |
|
| uobjnew | File | 6.04 KB | 0755 |
|
| update-ca-certificates | File | 5.32 KB | 0755 |
|
| update-catalog | File | 9.17 KB | 0755 |
|
| update-fonts-alias | File | 5.71 KB | 0755 |
|
| update-fonts-dir | File | 3.98 KB | 0755 |
|
| update-fonts-scale | File | 6.1 KB | 0755 |
|
| update-grub | File | 64 B | 0755 |
|
| update-grub-gfxpayload | File | 301 B | 0755 |
|
| update-grub2 | File | 64 B | 0755 |
|
| update-gsfontmap | File | 390 B | 0755 |
|
| update-ieee-data | File | 3.41 KB | 0755 |
|
| update-info-dir | File | 1.66 KB | 0755 |
|
| update-initramfs | File | 6.75 KB | 0755 |
|
| update-locale | File | 2.99 KB | 0755 |
|
| update-passwd | File | 34.56 KB | 0755 |
|
| update-pciids | File | 1.74 KB | 0755 |
|
| update-rc.d | File | 17.72 KB | 0755 |
|
| update-shells | File | 3.89 KB | 0755 |
|
| update-xmlcatalog | File | 16.88 KB | 0755 |
|
| upgrade-from-grub-legacy | File | 1.56 KB | 0755 |
|
| usb_modeswitch | File | 59.66 KB | 0755 |
|
| usb_modeswitch_dispatcher | File | 26.78 KB | 0755 |
|
| usbmuxd | File | 90.6 KB | 0755 |
|
| useradd | File | 139.88 KB | 0755 |
|
| userdel | File | 91.01 KB | 0755 |
|
| usermod | File | 127.65 KB | 0755 |
|
| ustat | File | 12.12 KB | 0755 |
|
| uthreads | File | 4 KB | 0755 |
|
| uuidd | File | 30.88 KB | 0755 |
|
| validlocale | File | 1.73 KB | 0755 |
|
| vcstime | File | 14.3 KB | 0755 |
|
| vdpa | File | 34.56 KB | 0755 |
|
| veritysetup | File | 43.94 KB | 0755 |
|
| vfscount-bpfcc | File | 1.36 KB | 0755 |
|
| vfscount.bt | File | 515 B | 0755 |
|
| vfsstat-bpfcc | File | 4.06 KB | 0755 |
|
| vfsstat.bt | File | 721 B | 0755 |
|
| vgcfgbackup | File | 3.01 MB | 0755 |
|
| vgcfgrestore | File | 3.01 MB | 0755 |
|
| vgchange | File | 3.01 MB | 0755 |
|
| vgck | File | 3.01 MB | 0755 |
|
| vgconvert | File | 3.01 MB | 0755 |
|
| vgcreate | File | 3.01 MB | 0755 |
|
| vgdisplay | File | 3.01 MB | 0755 |
|
| vgexport | File | 3.01 MB | 0755 |
|
| vgextend | File | 3.01 MB | 0755 |
|
| vgimport | File | 3.01 MB | 0755 |
|
| vgimportclone | File | 3.01 MB | 0755 |
|
| vgmerge | File | 3.01 MB | 0755 |
|
| vgmknodes | File | 3.01 MB | 0755 |
|
| vgreduce | File | 3.01 MB | 0755 |
|
| vgremove | File | 3.01 MB | 0755 |
|
| vgrename | File | 3.01 MB | 0755 |
|
| vgs | File | 3.01 MB | 0755 |
|
| vgscan | File | 3.01 MB | 0755 |
|
| vgsplit | File | 3.01 MB | 0755 |
|
| vigr | File | 60.69 KB | 0755 |
|
| vipw | File | 60.69 KB | 0755 |
|
| virtiostat-bpfcc | File | 8.69 KB | 0755 |
|
| visudo | File | 252.71 KB | 0755 |
|
| vpddecode | File | 14.58 KB | 0755 |
|
| wakeuptime-bpfcc | File | 8.1 KB | 0755 |
|
| wipefs | File | 38.38 KB | 0755 |
|
| writeback.bt | File | 1.66 KB | 0755 |
|
| xfs_admin | File | 2.12 KB | 0755 |
|
| xfs_bmap | File | 695 B | 0755 |
|
| xfs_copy | File | 90.44 KB | 0755 |
|
| xfs_db | File | 688.56 KB | 0755 |
|
| xfs_estimate | File | 14.16 KB | 0755 |
|
| xfs_freeze | File | 800 B | 0755 |
|
| xfs_fsr | File | 42.18 KB | 0755 |
|
| xfs_growfs | File | 38.23 KB | 0755 |
|
| xfs_info | File | 1.26 KB | 0755 |
|
| xfs_io | File | 203.65 KB | 0755 |
|
| xfs_logprint | File | 78.27 KB | 0755 |
|
| xfs_mdrestore | File | 34.23 KB | 0755 |
|
| xfs_metadump | File | 816 B | 0755 |
|
| xfs_mkfile | File | 1.02 KB | 0755 |
|
| xfs_ncheck | File | 685 B | 0755 |
|
| xfs_quota | File | 90.16 KB | 0755 |
|
| xfs_repair | File | 643.32 KB | 0755 |
|
| xfs_rtcp | File | 18.15 KB | 0755 |
|
| xfs_scrub | File | 106.27 KB | 0755 |
|
| xfs_scrub_all | File | 7.66 KB | 0755 |
|
| xfs_spaceman | File | 42.3 KB | 0755 |
|
| xfsdist-bpfcc | File | 4.61 KB | 0755 |
|
| xfsdist.bt | File | 972 B | 0755 |
|
| xfsslower-bpfcc | File | 7.78 KB | 0755 |
|
| xtables-legacy-multi | File | 92.95 KB | 0755 |
|
| xtables-monitor | File | 219.16 KB | 0755 |
|
| xtables-nft-multi | File | 219.16 KB | 0755 |
|
| zerofree | File | 14.15 KB | 0755 |
|
| zfsdist-bpfcc | File | 5.3 KB | 0755 |
|
| zfsslower-bpfcc | File | 8.45 KB | 0755 |
|
| zic | File | 66.39 KB | 0755 |
|
| zramctl | File | 54.52 KB | 0755 |
|