p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /sbin/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /sbin/weak-modules
#!/bin/bash
#
# weak-modules - determine which modules are kABI compatible with installed
#                kernels and set up the symlinks in /lib/*/weak-updates.
#
unset LANG LC_ALL LC_COLLATE

tmpdir=$(mktemp -td ${0##*/}.XXXXXX)
trap "rm -rf $tmpdir" EXIT
unset ${!changed_modules_*} ${!changed_initramfs_*}

unset BASEDIR
unset CHECK_INITRAMFS
weak_updates_dir_override=""
default_initramfs_prefix="/boot" # will be combined with BASEDIR
dracut="/sbin/dracut"
depmod="/sbin/depmod"
depmod_orig="$depmod"
declare -a modules
declare -A module_krels
declare -A weak_modules_before

declare -A groups
declare -A grouped_modules

# output of validate_weak_links, one iteration
# short_name -> path
declare -A compatible_modules

# state for update_modules_for_krel (needed for add_kernel case)
# short_name -> path
declare -A installed_modules

# doit:
# A wrapper used whenever we're going to perform a real operation.
doit() {
    [ -n "$verbose" ] && echo "$@"
    [ -n "$dry_run" ] || "$@"
}

# pr_verbose:
# print verbose -- wrapper used to print extra messages if required
pr_verbose() {
    [ -n "$verbose" ] && echo "$@"
}

# pr_warning:
# print warning
pr_warning() {
    echo "WARNING: $*"
}

# rpmsort: The sort in coreutils can't sort the RPM list how we want it so we
# instead transform the list into a form it will sort correctly, then sort.
rpmsort() {
    local IFS=$' '
    REVERSE=""
    rpmlist=($(cat))

    if [ "-r" == "$1" ];
    then
        REVERSE="-r"
    fi

    echo ${rpmlist[@]} | \
        sed -e 's/-/../g' | \
        sort ${REVERSE} -n -t"." -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 -k6,6 -k7,7 \
             -k8,8 -k9,9 -k10,10 | \
        sed -e 's/\.\./-/g'
}

# krel_of_module:
# Compute the kernel release of a module.
krel_of_module() {
    local module="$1"

    if [ x"${module_krels[$module]+set}" = x"set" ]; then
        # version cached in the array already
        echo "${module_krels[$module]}"
    elif [ -f "$module" ]; then
        krel_of_module_modinfo "$module"
    else
        # Try to extract the kernel release from the path
        # delete case, the .ko already deleted
        set -- "${module#*/lib/modules/}"
        echo "${1%%/*}"
    fi
}

# krel_of_module_modinfo:
# Fetches module version from internal module info
krel_of_module_modinfo() {
    local module="$1"
    /sbin/modinfo -F vermagic "$module" | awk '{print $1}'
}

# weak_updates_dir:
# gives the root directory for the weak-updates
# We need some flexibility here because of dry-run.
weak_updates_dir() {
    local krel="$1"

    if [[ -z "$weak_updates_dir_override" ]]; then
        echo "$BASEDIR/lib/modules/$krel/weak-updates"
    else
        echo "$weak_updates_dir_override"
    fi
}

# read_modules_list:
# Read in a list of modules from standard input. Convert the filenames into
# absolute paths and compute the kernel release for each module (either using
# the modinfo section or through the absolute path.
# If used with input redirect, should be used as read_module_list < input,
# not input | read_modules_list, the latter spawns a subshell
# and the arrays are not seen in the caller
read_modules_list() {
    local IFS=$'\n'
    modules=($(cat))

    for ((n = 0; n < ${#modules[@]}; n++)); do
        if [ ${modules[n]:0:1} != '/' ]; then
            modules[n]="$PWD/${modules[n]}"
        fi
        module_krels["${modules[n]}"]=$(krel_of_module ${modules[n]})
    done
}

decompress_initramfs() {
    local input=$1
    local output=$2

    # First, check if this is compressed at all
    if cpio -i -t < "$input" > /dev/null 2>/dev/null; then
        # If this archive contains a file early_cpio, it's a trick. Strip off
        # the early cpio archive and try again.
        if cpio -i -t < "$input" 2>/dev/null | grep -q '^early_cpio$' ; then
            /usr/lib/dracut/skipcpio "$input" > "${tmpdir}/post_early_cpio.img"
            decompress_initramfs "${tmpdir}/post_early_cpio.img" "$output"
            retval="$?"
            rm -f "${tmpdir}/post_early_cpio.img"
            return $retval
        fi

        cp "$input" "$output"
        return 0
    fi

    # Try gzip
    if gzip -cd < "$input" > "$output" 2>/dev/null ; then
        return 0
    fi

    # Next try xz
    if xz -cd < "$input" > "$output" 2>/dev/null ; then
        return 0
    fi

    echo "Unable to decompress $input: Unknown format" >&2
    return 1
}

# List all module files and modprobe configuration that could require a new
# initramfs. The current directory must be the root of the uncompressed
# initramfs. The unsorted list of files is output to stdout.
list_module_files() {
    find . -iname \*.ko -o -iname '*.ko.xz' -o -iname '*.ko.gz' 2>/dev/null
    find etc/modprobe.d usr/lib/modprobe.d -name \*.conf 2>/dev/null
}

# read_old_initramfs:
compare_initramfs_modules() {
    local old_initramfs=$1
    local new_initramfs=$2

    rm -rf "$tmpdir/old_initramfs"
    rm -rf "$tmpdir/new_initramfs"
    mkdir "$tmpdir/old_initramfs"
    mkdir "$tmpdir/new_initramfs"

    decompress_initramfs "$old_initramfs" "$tmpdir/old_initramfs.img"
    pushd "$tmpdir/old_initramfs" >/dev/null
    cpio -i < "$tmpdir/old_initramfs.img" 2>/dev/null
    rm "$tmpdir/old_initramfs.img"
    n=0; for i in `list_module_files|sort`; do
        old_initramfs_modules[n]="$i"
        n=$((n+1))
    done
    popd >/dev/null

    decompress_initramfs "$new_initramfs" "$tmpdir/new_initramfs.img"
    pushd "$tmpdir/new_initramfs" >/dev/null
    cpio -i < "$tmpdir/new_initramfs.img" 2>/dev/null
    rm "$tmpdir/new_initramfs.img"
    n=0; for i in `list_module_files|sort`; do
        new_initramfs_modules[n]="$i"
        n=$((n+1))
    done
    popd >/dev/null

    # Compare the length and contents of the arrays
    if [ "${#old_initramfs_modules[@]}" == "${#new_initramfs_modules[@]}" -a \
         "${old_initramfs_modules[*]}" == "${new_initramfs_modules[*]}" ];
    then
        # If the file lists are the same, compare each file to find any that changed
        for ((n = 0; n < ${#old_initramfs_modules[@]}; n++)); do
            if ! cmp "$tmpdir/old_initramfs/${old_initramfs_modules[n]}" \
                     "$tmpdir/new_initramfs/${new_initramfs_modules[n]}" \
                     >/dev/null 2>&1
            then
                return 1
            fi
        done
    else
        return 1
    fi

    return 0
}

# check_initramfs:
# check and possibly also update the initramfs for changed kernels
check_initramfs() {
    local kernel=$1

    # If there is no initramfs already we will not make one here.
    if [ -e "$initramfs_prefix/initramfs-$kernel.img" ];
    then
        old_initramfs="$initramfs_prefix/initramfs-$kernel.img"
        tmp_initramfs="$initramfs_prefix/initramfs-$kernel.tmp"
        new_initramfs="$initramfs_prefix/initramfs-$kernel.img"

        $dracut -f "$tmp_initramfs" "$kernel"

        if ! compare_initramfs_modules "$old_initramfs" "$tmp_initramfs";
        then
            doit mv "$tmp_initramfs" "$new_initramfs"
        else
            rm -f "$tmp_initramfs"
        fi
    fi
}

usage() {
    echo "Usage: ${0##*/} [options] {--add-modules|--remove-modules}"
    echo "${0##*/} [options] {--add-kernel|--remove-kernel} {kernel-release}"
    cat <<'EOF'
--add-modules
        Add a list of modules read from standard input. Create
        symlinks in compatible kernel's weak-updates/ directory.
        The list of modules is read from standard input.

--remove-modules
        Remove compatibility symlinks from weak-updates/ directories
        for a list of modules.  The list of modules is read from
        standard input. Note: it doesn't attempt to locate any
        compatible modules to replace those being removed.

--add-kernel
        Add compatibility symlinks for all compatible modules to the
        specified or running kernel.

--remove-kernel
        Remove all compatibility symlinks for the specified or current
        kernel.

--no-initramfs
        Do not generate an initramfs.

--verbose
        Print the commands executed.

--dry-run
        Do not create/remove any files.
EOF
    exit $1
}

# module_has_changed:
# Mark if an actual change occured that we need to deal with later by calling
# depmod or mkinitramfs against the affected kernel.
module_has_changed() {

    declare module=$1 krel=$2
    declare orig_module=$module

    module=${module%.ko}
    [[ $module == $orig_module ]] && module=${module%.ko.xz}
    [[ $module == $orig_module ]] && module=${module%.ko.gz}
    module=${module##*/}

    eval "changed_modules_${krel//[^a-zA-Z0-9]/_}=$krel"
    eval "changed_initramfs_${krel//[^a-zA-Z0-9]/_}=$krel"

}

# module_weak_link:
# Generate a weak link path for the module.
# Takes module file name and the target kernel release as arguments
# The way of generation intentionally left from the initial version
module_weak_link() {
    local module="$1"
    local krel="$2"
    local module_krel
    local subpath

    module_krel="$(krel_of_module "$module")"
    subpath=$(echo $module | sed -nre "s:$BASEDIR(/usr)?/lib/modules/$module_krel/([^/]*)/(.*):\3:p")

    if [[ -z $subpath ]]; then
        # module is not in /lib/modules/$krel?
        # It's possible for example for Oracle ACFS compatibility check
        # Install it with its full path as a /lib/modules subpath
        subpath="$module"
    fi

    echo "$(weak_updates_dir $krel)/${subpath#/}"
}

# module_short_name:
# 'basename' version purely in bash, cuts off path from the filename
module_short_name() {
    echo "${1##*/}"
}

#### Helper predicates

# is_weak_for_module_valid:
# Takes real module filename and target kernel as arguments.
# Calculates weak symlink filename for the corresponding module
# for the target kernel,
# returns 'true' if the symlink filename is a symlink
# and the symlink points to a readable file
# EVEN if it points to a different filename
is_weak_for_module_valid() {
    local module="$1"
    local krel="$2"
    local weak_link

    weak_link="$(module_weak_link $module $krel)"
    [[ -L "$weak_link" ]] && [[ -r "$weak_link" ]]
}

# is_weak_link:
# Takes a filename and a kernel release.
# 'true' if the filename is symlink under weak-updates/ for the kernel.
# It doesn't matter, if it's a valid symlink (points to a real file) or not.
is_weak_link() {
    local link="$1"
    local krel="$2"

    echo $link | grep -q "$(weak_updates_dir $krel)" || return 1
    [[ -L $link ]]
}

# is_extra_exists:
# Takes a module filename, the module's kernel release and target kernel release.
# The module filename should be a real, not a symlink, filename (i.e. in extra/).
# Returns 'true' if the same module exists for the target kernel.
is_extra_exists() {
    local module="$1"
    local module_krel="$2"
    local krel="$3"
    local subpath="${module#*/lib/modules/$module_krel/extra/}"

    [[ -f $BASEDIR/lib/modules/$krel/extra/$subpath ]]
}

is_kernel_installed() {
    local krel="$1"

    [[ -f "$BASEDIR/boot/symvers-$krel.gz" ]]
}

is_empty_file() {
    local file="$1"

    [[ "$(wc -l "$file" | cut -f 1 -d ' ')" == 0 ]]
}

#### Helpers

# find_modules:
# Takes kernel release and a list of subdirectories.
# Produces list of module files in the subdirectories for the kernel
find_modules() {
    local krel="$1"
    shift
    local dirs="$*"

    for dir in $dirs; do
        find $BASEDIR/lib/modules/$krel/$dir \
             -name '*.ko' -o -name '*.ko.xz' -o -name '*.ko.gz' \
             2>/dev/null
    done
}

# find_modules_dirs:
# Takes a list of directories.
# Produces list of module files in the subdirectories
find_modules_dirs() {
    local dirs="$*"

    for dir in $dirs; do
        find $dir -name '*.ko' -o -name '*.ko.xz' -o -name '*.ko.gz' \
             2>/dev/null
    done
}

# find_installed_kernels:
# Produces list of kernels, which modules are still installed
find_installed_kernels() {
    ls $BASEDIR/lib/modules/
}

# find_kernels_with_extra:
# Produces list of kernels, where exists extra/ directory
find_kernels_with_extra() {
    local krel
    local extra_dir

    for krel in $(find_installed_kernels); do
        extra_dir="$BASEDIR/lib/modules/$krel/extra"
        [[ -d "$extra_dir" ]] || continue
        echo "$krel"
    done
}

# remove_weak_link_quiet:
# Takes symlink filename and target kernel release.
# Removes the symlink and the directory tree
# if it was the last file in the tree
remove_weak_link_quiet() {
    local link="$1"
    local krel="$2"
    local subpath="${link#*$(weak_updates_dir $krel)}"

    rm -f $link
    ( cd "$(weak_updates_dir $krel)" && \
          rmdir --parents --ignore-fail-on-non-empty "$(dirname "${subpath#/}")" 2>/dev/null )
}

# prepare_sandbox:
# Takes kernel release, creates temporary weak-modules directory for it
# and depmod config to operate on it.
# Sets the global state accordingly

prepare_sandbox() {
    local krel="$1"
    local orig_dir
    local dir
    local conf="$tmpdir/depmod.conf"

    #directory
    orig_dir=$(weak_updates_dir $krel)
    dir="$tmpdir/$krel/weak-updates"

    mkdir -p "$dir"
    # the orig_dir can be empty
    cp -R "$orig_dir"/* "$dir" 2>/dev/null

    weak_updates_dir_override="$dir"

    #config
    echo "search external extra built-in weak-updates" >"$conf"
    echo "external * $dir" >>"$conf"

    depmod="$depmod_orig -C $conf"
}


# finish_sandbox:
# restore global state after sandboxing
# copy configuration to the kernel directory if not dry run
finish_sandbox() {
    local krel="$1"
    local override="$weak_updates_dir_override"
    local wa_dir

    weak_updates_dir_override=""
    depmod="$depmod_orig"

    [[ -n "$dry_run" ]] && return

    wa_dir="$(weak_updates_dir $krel)"

    rm -rf "$wa_dir"
    mkdir -p "$wa_dir"

    cp -R "${override}"/* "$wa_dir" 2>/dev/null
}

# discard_installed:
# remove installed_modules[] from modules[]
discard_installed()
{
    local short_name

    for m in "${!modules[@]}"; do
        short_name="$(module_short_name "${modules[$m]}")"

        [[ -z "${installed_modules[$short_name]}" ]] && continue

        unset "modules[$m]"
    done
}

# update_installed:
# add compatible_modules[] to installed_modules[]
update_installed()
{
    for m in "${!compatible_modules[@]}"; do
        installed_modules[$m]="${compatible_modules[$m]}"
    done
}

#### Main logic

# update_modules_for_krel:
# Takes kernel release and "action" function name.
# Skips kernel without symvers,
# otherwise triggers the main logic of modules installing/removing
# for the given kernel, which is:
# - save current state of weak modules symlinks
# - install/remove the symlinks for the given (via stdin) list of modules
# - validate the state and remove invalid symlinks
#   (for the modules, which are not compatible (became incompatible) for
#   the given kernel)
# - check the state after validation to produce needed messages
#   and trigger initrd regeneration if the list changed.
#
update_modules_for_krel() {
    local krel="$1"
    local func="$2"
    local force_update="$3"

    [[ -r "$BASEDIR/boot/symvers-$krel.gz" ]] || return

    prepare_sandbox $krel

    global_link_state_save $krel

    # remove already installed from modules[]
    discard_installed

    # do not run heavy validation procedure if no modules to install
    if [[ "${#modules[@]}" -eq 0 ]]; then
        finish_sandbox $krel
        return
    fi

    $func $krel

    if ! validate_weak_links $krel && [[ -z "$force_update" ]]; then
        global_link_state_restore $krel
    fi

    # add compatible to installed
    update_installed

    global_link_state_announce_changes $krel

    finish_sandbox $krel
}

# update_modules:
# Common entry point for add/remove modules command
# Takes the "action" function, the module list is supplied via stdin.
# Reads the module list and triggers modules update for all installed
# kernels.
# Triggers initrd rebuild for the kernels, which modules are installed.
update_modules() {
    local func="$1"
    local force_update="$2"
    local module_krel
    declare -a saved_modules

    read_modules_list || exit 1
    [[ ${#modules[@]} -gt 0 ]] || return
    saved_modules=("${modules[@]}")

    for krel in $(find_installed_kernels); do
        update_modules_for_krel $krel $func $force_update
        modules=("${saved_modules[@]}")
        installed_modules=()
    done

    for module in "${modules[@]}"; do
        # Module was built against this kernel, update initramfs.
        module_krel="${module_krels[$module]}"
        module_has_changed $module $module_krel
    done
}

# add_weak_links:
# Action function for the "add-modules" command
# Takes the kernel release, where the modules are added
# and the modules[] and module_krels[] global arrays.
# Install symlinks for the kernel with minimal checks
# (just filename checks, no symbol checks)
add_weak_links() {
    local krel="$1"
    local module_krel
    local weak_link

    for module in "${modules[@]}"; do
        module_krel="$(krel_of_module $module)"

        case "$module" in
            $BASEDIR/lib/modules/$krel/*)
                # Module already installed to the current kernel
                continue ;;
        esac

        if is_extra_exists $module $module_krel $krel; then
            pr_verbose "found $(module_short_name $module) for $krel while installing for $module_krel, update case?"
        fi

        if is_weak_for_module_valid $module $krel; then
            pr_verbose "weak module for $(module_short_name $module) already exists for kernel $krel, update case?"
            # we should update initrd in update case,
            # the change is not seen by the symlink detector
            # (global_link_state_announce_changes())
            module_has_changed $module $krel
        fi

        weak_link="$(module_weak_link $module $krel)"

        mkdir -p "$(dirname $weak_link)"
        ln -sf $module $weak_link

    done
}

# remove_weak_links:
# Action function for the "remove-modules" command
# Takes the kernel release, where the modules are removed
# and the modules[] and module_krels[] global arrays.
# Removes symlinks from the given kernel if they are installed
# for the modules in the list.
remove_weak_links() {
    local krel="$1"
    local weak_link
    local target
    local module_krel

    for module in "${modules[@]}"; do
        module_krel="$(krel_of_module $module)"

        weak_link="$(module_weak_link $module $krel)"
        target="$(readlink $weak_link)"

        if [[ "$module" != "$target" ]]; then
            pr_verbose "Skipping symlink $weak_link"
            continue
        fi
        # In update case the --remove-modules call is performed
        # after --add-modules (from postuninstall).
        # So, we shouldn't really remove the symlink in this case.
        # But in the remove case the actual target already removed.
        if ! is_weak_for_module_valid "$module" "$krel"; then
            remove_weak_link_quiet "$weak_link" "$krel"
        fi
    done
}

# validate_weak_links:
# Takes kernel release.
# Checks if all the weak symlinks are suitable for the given kernel.
# Uses depmod to perform the actual symbol checks and parses the output.
# Since depmod internally creates the module list in the beginning of its work
# accroding to the priority list in its configuration, but without symbol
# check and doesn't amend the list during the check, the function runs it
# in a loop in which it removes discovered incompatible symlinks
#
# Returns 0 (success) if proposal is fine or
#         1 (false) if some incompatible symlinks were removed
# initializes global hashmap compatible_modules with all the valid ones
validate_weak_links() {
    local krel="$1"
    local basedir=${BASEDIR:+-b $BASEDIR}
    local tmp
    declare -A symbols
    local is_updates_changed=1
    local module
    local module_krel
    local target
    local modpath
    local symbol
    local weak_link
    # to return to caller that original proposal is not valid
    # here 0 is true, 1 is false, since it will be the return code
    local is_configuration_valid=0

    tmp=$(mktemp -p $tmpdir)
    compatible_modules=()

    if ! [[ -e $tmpdir/symvers-$krel ]]; then
        [[ -e $BASEDIR/boot/symvers-$krel.gz ]] || return
        zcat $BASEDIR/boot/symvers-$krel.gz > $tmpdir/symvers-$krel
    fi

    while ((is_updates_changed)); do
        is_updates_changed=0

        # again $tmp because of subshell, see read_modules_list() comment
        # create incompatibility report by depmod
        # Shorcut if depmod finds a lot of incompatible modules elsewhere,
        # we care only about weak-updates
        $depmod $basedir -naeE $tmpdir/symvers-$krel $krel 2>&1 1>/dev/null | \
            grep "$(weak_updates_dir $krel)" 2>/dev/null >$tmp
        # parse it into symbols[] associative array in form a-la
        #   symbols["/path/to/the/module"]="list of bad symbols"
        while read line; do
            set -- $(echo $line | awk '/needs unknown symbol/{print $3 " " $NF}')
            modpath=$1
            symbol=$2
            if [[ -n "$modpath" ]]; then
                symbols[$modpath]="${symbols[$modpath]} $symbol"
                continue
            fi

            set -- $(echo $line | awk '/disagrees about version of symbol/{print $3 " " $NF}')
            modpath=$1
            symbol=$2
            if [[ -n "$modpath" ]]; then
                symbols[$modpath]="${symbols[$modpath]} $symbol"
                continue
            fi
        done < $tmp

        # loop through all the weak links from the list of incompatible
        # modules and remove them. Skips non-weak incompatibilities
        for modpath in "${!symbols[@]}"; do
            is_weak_link $modpath $krel || continue

            target=$(readlink $modpath)
            module_krel=$(krel_of_module $target)

            remove_weak_link_quiet "$modpath" "$krel"

            pr_verbose "Module $(module_short_name $modpath) from kernel $module_krel is not compatible with kernel $krel in symbols: ${symbols[$modpath]}"
            is_updates_changed=1
            is_configuration_valid=1 # inversed value
        done
    done
    rm -f $tmp

    # this loop is just to produce verbose compatibility messages
    # for the compatible modules
    for module in "${modules[@]}"; do
        is_weak_for_module_valid $module $krel || continue

        weak_link="$(module_weak_link $module $krel)"
        target="$(readlink $weak_link)"
        module_krel=$(krel_of_module $target)

        if [[ "$module" == "$target" ]]; then
            short_name="$(module_short_name "$module")"
            compatible_modules+=([$short_name]="$module")

            pr_verbose "Module ${module##*/} from kernel $module_krel is compatible with kernel $krel"
        fi
    done
    return $is_configuration_valid
}

# global_link_state_save:
# Takes kernel release
# Saves the given kernel's weak symlinks state into the global array
# weak_modules_before[] for later processing
global_link_state_save() {
    local krel="$1"
    local link
    local target

    weak_modules_before=()
    for link in $(find_modules_dirs $(weak_updates_dir $krel) | xargs); do
        target=$(readlink $link)
        weak_modules_before[$link]=$target
    done
}

# global_link_state_restore:
# Takes kernel release
# Restores the previous weak links state
# (for example, if incompatible modules were installed)
global_link_state_restore() {
    local krel="$1"
    local link
    local target

    pr_verbose "Falling back weak-modules state for kernel $krel"

    ( cd "$(weak_updates_dir $krel)" 2>/dev/null && rm -rf * )

    for link in "${!weak_modules_before[@]}"; do
        target=${weak_modules_before[$link]}

        mkdir -p "$(dirname $link)"
        ln -sf $target $link
    done
}

# global_link_state_announce_changes:
# Takes kernel release
# Reads the given kernel's weak symlinks state, compares to the saved,
# triggers initrd rebuild if there were changes
# and produces message on symlink removal
global_link_state_announce_changes() {
    local krel="$1"
    local link
    local target
    local new_target
    declare -A weak_modules_after

    for link in $(find_modules_dirs $(weak_updates_dir $krel) | xargs); do
        target=${weak_modules_before[$link]}
        new_target=$(readlink $link)
        weak_modules_after[$link]=$new_target

        # report change of existing link and appearing of a new link
        [[ "$target" == "$new_target" ]] || module_has_changed $new_target $krel
    done

    for link in "${!weak_modules_before[@]}"; do
        target=${weak_modules_before[$link]}
        new_target=${weak_modules_after[$link]}

        # report change of existing link and disappearing of an old link
        [[ "$target" == "$new_target" ]] && continue
        module_has_changed $target $krel
        [[ -n "$new_target" ]] ||
            pr_verbose "Removing compatible module $(module_short_name $target) from kernel $krel"
    done
}

# remove_modules:
# Read in a list of modules from stdinput and process them for removal.
# Parameter (noreplace) is deprecated, acts always as "noreplace".
# There is no sense in the "replace" functionality since according
# to the current requirements RPM will track existing of only one version
# of extra/ module (no same extra/ modules for different kernels).
remove_modules() {
    update_modules remove_weak_links force_update
}

# add_modules:
# Read in a list of modules from stdinput and process them for compatibility
# with installed kernels under /lib/modules.
add_modules() {
    no_force_update=""

    update_modules add_weak_links $no_force_update
}

# do_make_groups:
# Takes tmp file which contains preprocessed modules.dep
# output (or modules.dep)
#
# reads modules.dep format information from stdin
# produces groups associative array
# the group is a maximum subset of modules having at least a link
#
# more fine tuned extra filtering.
do_make_groups()
{
    local tmp="$1"
    local group_name
    local mod
    declare -a mods

    while read i; do
        mods=($i)

        echo "${mods[0]}" |grep -q "extra/" || continue

        # if the module already met, then its dependencies already counted
        module_group="${grouped_modules[${mods[0]}]}"
        [[ -n $module_group ]] && continue

        # new group
        group_name="${mods[0]}"

        for mod in "${mods[@]}"; do
            echo "$mod" |grep -q "extra/" || continue

            # if there is already such group,
            # it is a subset of the one being created
            # due to depmod output
            unset groups[$mod]

            # extra space doesn't matter, since later (in add_kernel())
            # it is expanded without quotes
            groups[$group_name]+=" $mod"
            grouped_modules[$mod]=$group_name
        done
    done < $tmp # avoid subshell
}

# filter_depmod_deps:
# preprocess output for make_groups
# depmod -n produces also aliases, so it cuts them off
# also it removes colon after the first module
cut_depmod_deps()
{
    awk 'BEGIN { pr = 1 } /^#/{ pr = 0 } pr == 1 {sub(":",""); print $0}'
}

# filter_extra_absoluted:
# Takes kernel version
# makes full path from the relative module path
# (produced by depmod for in-kernel-dir modules)
# filter only extra/ modules
filter_extra_absoluted()
{
    local kver="$1"
    local mod
    declare -a mods

    while read i; do
        # skip non-extra. The check is not perfect, but ok
        # to speed up handling in general cases
        echo "$i" |grep -q "extra/" || continue

        mods=($i)
        for j in "${!mods[@]}"; do
            mod="${mods[$j]}"

            [[ ${mod:0:1} == "/" ]] || mod="$BASEDIR/lib/modules/$kver/$mod"
            mods[$j]="$mod"
        done
        echo "${mods[@]}"
    done
}

# make_groups:
# takes k -- kernel version, we are installing extras from
# prepares and feeds to do_make_groups
# to create the module groups (global)
make_groups()
{
    local k="$1"
    local tmp2=$(mktemp -p $tmpdir)
    local basedir=${BASEDIR:+-b $BASEDIR}

    groups=()
    grouped_modules=()

    $depmod -n $basedir $k 2>/dev/null |
        cut_depmod_deps | filter_extra_absoluted $k > $tmp2

    do_make_groups $tmp2

    rm -f $tmp2
}

add_kernel() {
    local krel=${1:-$(uname -r)}
    local tmp
    local no_force_update=""
    local num

    tmp=$(mktemp -p $tmpdir)

    if [ ! -e "$BASEDIR/boot/symvers-$krel.gz" ]; then
        echo "Symvers dump file $BASEDIR/boot/symvers-$krel.gz" \
             "not found" >&2
        exit 1
    fi

    for k in $(find_kernels_with_extra | rpmsort -r); do
        [[ "$krel" == "$k" ]] && continue
        find_modules $k extra > $tmp

        is_empty_file "$tmp" || make_groups $k

        # reuse tmp

	# optimization, check independent modules in one run.
	# first try groups with one element in each.
	# it means independent modules, so we can safely remove
	# incompatible links
	# some cut and paste here

	echo > $tmp
        for g in "${groups[@]}"; do
	    num="$(echo "$g" | wc -w)"
	    [ "$num" -gt 1 ] && continue

            printf '%s\n' $g >> $tmp
	done
        # to avoid subshell, see the read_modules_list comment
        read_modules_list < $tmp
        update_modules_for_krel $krel add_weak_links force_update

        for g in "${groups[@]}"; do
	    num="$(echo "$g" | wc -w)"
	    [ "$num" -eq 1 ] && continue

            printf '%s\n' $g > $tmp
            read_modules_list < $tmp
            update_modules_for_krel $krel add_weak_links $no_force_update
        done
    done

    rm -f $tmp

}

remove_kernel() {
    remove_krel=${1:-$(uname -r)}
    weak_modules="$(weak_updates_dir $remove_krel)"
    module_has_changed $weak_modules $remove_krel

    # Remove everything beneath the weak-updates directory
    ( cd "$weak_modules" && doit rm -rf * )
}

################################################################################
################################## MAIN GUTS ###################################
################################################################################

options=`getopt -o h --long help,add-modules,remove-modules \
                     --long add-kernel,remove-kernel \
                     --long dry-run,no-initramfs,verbose,delete-modules \
                     --long basedir:,dracut:,check-initramfs-prog: -- "$@"`

[ $? -eq 0 ] || usage 1

eval set -- "$options"

while :; do
    case "$1" in
    --add-modules)
        do_add_modules=1
        ;;
    --remove-modules)
        do_remove_modules=1
        ;;
    --add-kernel)
        do_add_kernel=1
        ;;
    --remove-kernel)
        do_remove_kernel=1
        ;;
    --dry-run)
        dry_run=1
        # --dry-run option is not pure dry run anymore,
        # because of depmod used internally.
        # For add/remove modules we have to add/remove the symlinks
        # and just restore the original configuration afterwards.
        ;;
    --no-initramfs)
        no_initramfs=1
        ;;
    --verbose)
        verbose=1
        ;;
    --delete-modules)
        pr_warning "--delete-modules is deprecated, no effect"
        ;;
    --basedir)
        BASEDIR="$2"
        shift
        ;;
    --dracut)
        dracut="$2"
        shift
        ;;
    --check-initramfs-prog)
        CHECK_INITRAMFS="$2"
        shift
        ;;
    -h|--help)
        usage 0
        ;;
    --)
        shift
        break
        ;;
    esac
    shift
done

if [ ! -x "$dracut" ]
then
    echo "weak-modules: this tool requires a dracut-enabled kernel"
    exit 1
fi

initramfs_prefix="$BASEDIR/${default_initramfs_prefix#/}"

if [ -n "$do_add_modules" ]; then
    add_modules

elif [ -n "$do_remove_modules" ]; then
    remove_modules

elif [ -n "$do_add_kernel" ]; then
    kernel=${1:-$(uname -r)}
    add_kernel $kernel

elif [ -n "$do_remove_kernel" ]; then
    kernel=${1:-$(uname -r)}
    remove_kernel $kernel

    exit 0
else
    usage 1
fi

################################################################################
###################### CLEANUP POST ADD/REMOVE MODULE/KERNEL ###################
################################################################################

# run depmod and dracut as needed
for krel in ${!changed_modules_*}; do
    krel=${!krel}
    basedir=${BASEDIR:+-b $BASEDIR}

    if is_kernel_installed $krel; then
        doit $depmod $basedir -ae -F $BASEDIR/boot/System.map-$krel $krel
    else
        pr_verbose "Skipping depmod for non-installed kernel $krel"
    fi
done

for krel in ${!changed_initramfs_*}; do
    krel=${!krel}

    if [ ! -n "$no_initramfs" ]; then
        ${CHECK_INITRAMFS:-check_initramfs} $krel
    fi
done
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
December 21 2023 09:06:33
0 / 0
0555
NetworkManager
2.83 MB
November 16 2020 16:15:18
0 / 0
0755
accessdb
11.547 KB
October 30 2018 20:26:36
0 / 0
0755
addgnupghome
3.053 KB
October 04 2013 12:32:53
0 / 0
0755
addpart
19.688 KB
February 02 2021 16:31:53
0 / 0
0755
adduser
134.391 KB
August 09 2019 02:51:01
0 / 0
0755
agetty
48.477 KB
February 02 2021 16:31:53
0 / 0
0755
alternatives
27.609 KB
October 13 2020 15:46:49
0 / 0
0755
anacron
35.516 KB
May 16 2023 14:28:22
0 / 0
0755
apachectl
4.189 KB
May 30 2023 14:01:08
0 / 0
0755
applygnupgdefaults
2.211 KB
October 04 2013 12:32:53
0 / 0
0755
arpd
52.984 KB
September 30 2020 16:40:56
0 / 0
0755
arping
23.188 KB
August 04 2017 08:01:04
0 / 0
0755
audispd
39.75 KB
August 08 2019 12:06:06
0 / 0
0755
auditctl
39.563 KB
August 08 2019 12:06:06
0 / 0
0755
auditd
125.648 KB
August 08 2019 12:06:06
0 / 0
0755
augenrules
3.702 KB
August 08 2019 12:06:02
0 / 0
0755
aureport
105.391 KB
August 08 2019 12:06:06
0 / 0
0755
ausearch
109.805 KB
August 08 2019 12:06:06
0 / 0
0755
authconfig
43.494 KB
August 04 2017 09:05:35
0 / 0
0755
authconfig-tui
43.494 KB
August 04 2017 09:05:35
0 / 0
0755
autrace
15.492 KB
August 08 2019 12:06:06
0 / 0
0750
avcstat
11.25 KB
April 01 2020 03:16:40
0 / 0
0755
badblocks
27.688 KB
September 30 2020 15:58:29
0 / 0
0755
biosdecode
24.148 KB
March 16 2021 15:25:58
0 / 0
0755
biosdevname
36.57 KB
August 08 2019 23:01:34
0 / 0
0755
blkdeactivate
15.968 KB
April 28 2021 13:31:45
0 / 0
0555
blkdiscard
23.844 KB
February 02 2021 16:31:53
0 / 0
0755
blkid
77.922 KB
February 02 2021 16:31:53
0 / 0
0755
blockdev
32.195 KB
February 02 2021 16:31:53
0 / 0
0755
bridge
77.609 KB
September 30 2020 16:40:56
0 / 0
0755
btrfs
690.594 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-convert
378.617 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-debug-tree
354.234 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-find-root
346.219 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-image
374.633 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-map-logical
350.266 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-select-super
346.195 KB
August 06 2017 16:32:36
0 / 0
0755
btrfs-zero-log
346.203 KB
August 06 2017 16:32:36
0 / 0
0755
btrfsck
690.594 KB
August 06 2017 16:32:36
0 / 0
0755
btrfstune
350.242 KB
August 06 2017 16:32:36
0 / 0
0755
build-locale-archive
860.516 KB
June 04 2024 15:05:32
0 / 0
0700
cacertdir_rehash
0.629 KB
August 04 2017 09:05:35
0 / 0
0755
cache_check
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
cache_dump
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
cache_metadata_size
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
cache_repair
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
cache_restore
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
cache_writeback
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
capsh
19.43 KB
April 01 2020 03:08:33
0 / 0
0755
cbq
32.729 KB
September 30 2020 16:40:48
0 / 0
0755
cfdisk
71.367 KB
February 02 2021 16:31:53
0 / 0
0755
chcpu
23.703 KB
February 02 2021 16:31:53
0 / 0
0755
chgpasswd
64.102 KB
August 09 2019 02:51:01
0 / 0
0755
chkconfig
40.219 KB
October 13 2020 15:46:49
0 / 0
0755
chpasswd
55.875 KB
August 09 2019 02:51:01
0 / 0
0755
chroot
32.477 KB
November 16 2020 22:24:58
0 / 0
0755
clock
48.438 KB
February 02 2021 16:31:53
0 / 0
0755
clockdiff
19.039 KB
August 04 2017 08:01:04
0 / 0
0755
consoletype
6.945 KB
November 16 2020 16:20:20
0 / 0
0755
cracklib-check
7.039 KB
June 10 2014 05:42:13
0 / 0
0755
cracklib-format
0.24 KB
June 10 2014 05:42:10
0 / 0
0755
cracklib-packer
11.063 KB
June 10 2014 05:42:13
0 / 0
0755
cracklib-unpacker
7.016 KB
June 10 2014 05:42:13
0 / 0
0755
create-cracklib-dict
0.967 KB
June 10 2014 05:42:10
0 / 0
0755
crond
68.484 KB
May 16 2023 14:28:22
0 / 0
0755
ctrlaltdel
11.203 KB
February 02 2021 16:31:53
0 / 0
0755
ctstat
20.094 KB
September 30 2020 16:40:56
0 / 0
0755
debugfs
120.648 KB
September 30 2020 15:58:29
0 / 0
0755
delpart
19.688 KB
February 02 2021 16:31:53
0 / 0
0755
depmod
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
devlink
64.719 KB
September 30 2020 16:40:56
0 / 0
0755
dhclient
414.336 KB
June 11 2024 14:35:43
0 / 0
0755
dhclient-script
30.384 KB
January 13 2022 17:19:56
0 / 0
0755
dmeventd
39.563 KB
April 28 2021 13:32:01
0 / 0
0555
dmfilemapd
19.164 KB
April 28 2021 13:32:01
0 / 0
0555
dmidecode
120.195 KB
March 16 2021 15:25:58
0 / 0
0755
dmsetup
149.203 KB
April 28 2021 13:32:01
0 / 0
0555
dmstats
149.203 KB
April 28 2021 13:32:01
0 / 0
0555
dracut
55.827 KB
September 30 2020 15:57:57
0 / 0
0755
dumpe2fs
23.617 KB
September 30 2020 15:58:29
0 / 0
0755
e2freefrag
11.148 KB
September 30 2020 15:58:29
0 / 0
0755
e2fsck
250.547 KB
September 30 2020 15:58:29
0 / 0
0755
e2image
27.852 KB
September 30 2020 15:58:29
0 / 0
0755
e2label
69.406 KB
September 30 2020 15:58:29
0 / 0
0755
e2undo
11.32 KB
September 30 2020 15:58:29
0 / 0
0755
e4defrag
23.555 KB
September 30 2020 15:58:29
0 / 0
0755
eapol_test
1.77 MB
March 16 2021 15:26:28
0 / 0
0755
ebtables
6.852 KB
April 11 2018 02:44:57
0 / 0
0755
ebtables-restore
10.883 KB
April 11 2018 02:44:57
0 / 0
0755
ebtables-save
0.831 KB
April 11 2018 02:44:54
0 / 0
0755
era_check
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
era_dump
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
era_invalidate
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
era_restore
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
ethtool
293.867 KB
August 08 2019 23:16:58
0 / 0
0755
faillock
15.016 KB
April 01 2020 04:00:53
0 / 0
0755
fcgistarter
11 KB
May 30 2023 14:01:58
0 / 0
0755
fdformat
11.266 KB
February 02 2021 16:31:53
0 / 0
0755
fdisk
195.797 KB
February 02 2021 16:31:53
0 / 0
0755
filefrag
15.234 KB
September 30 2020 15:58:29
0 / 0
0755
findfs
11.195 KB
February 02 2021 16:31:53
0 / 0
0755
firewalld
6.867 KB
April 28 2021 13:31:12
0 / 0
0755
fixfiles
11.029 KB
April 01 2020 04:04:49
0 / 0
0755
fsadm
23.969 KB
April 28 2021 13:31:45
0 / 0
0555
fsck
32.117 KB
February 02 2021 16:31:53
0 / 0
0755
fsck.btrfs
1.157 KB
August 06 2017 16:32:32
0 / 0
0755
fsck.cramfs
19.57 KB
February 02 2021 16:31:53
0 / 0
0755
fsck.ext2
250.547 KB
September 30 2020 15:58:29
0 / 0
0755
fsck.ext3
250.547 KB
September 30 2020 15:58:29
0 / 0
0755
fsck.ext4
250.547 KB
September 30 2020 15:58:29
0 / 0
0755
fsck.minix
73.32 KB
February 02 2021 16:31:53
0 / 0
0755
fsck.xfs
0.423 KB
September 30 2020 17:51:50
0 / 0
0755
fsfreeze
11.227 KB
February 02 2021 16:31:53
0 / 0
0755
fstrim
40.594 KB
February 02 2021 16:31:53
0 / 0
0755
fxload
19.258 KB
June 10 2014 04:45:39
0 / 0
0755
genhomedircon
23.766 KB
April 01 2020 04:04:55
0 / 0
0755
genhostid
6.938 KB
November 16 2020 16:20:20
0 / 0
0755
genl
52.813 KB
September 30 2020 16:40:56
0 / 0
0755
genl-ctrl-list
11.273 KB
August 03 2017 19:48:51
0 / 0
0755
getcap
11.125 KB
April 01 2020 03:08:33
0 / 0
0755
getenforce
7.008 KB
April 01 2020 03:16:40
0 / 0
0755
getpcaps
7.07 KB
April 01 2020 03:08:33
0 / 0
0755
getsebool
11.133 KB
April 01 2020 03:16:40
0 / 0
0755
glibc_post_upgrade.x86_64
772.047 KB
June 04 2024 15:05:32
0 / 0
0700
groupadd
85.648 KB
August 09 2019 02:51:01
0 / 0
0755
groupdel
77.383 KB
August 09 2019 02:51:01
0 / 0
0755
groupmems
55.969 KB
August 09 2019 02:51:01
0 / 0
0755
groupmod
85.664 KB
August 09 2019 02:51:01
0 / 0
0755
grpck
59.93 KB
August 09 2019 02:51:01
0 / 0
0755
grpconv
51.727 KB
August 09 2019 02:51:01
0 / 0
0755
grpunconv
51.734 KB
August 09 2019 02:51:01
0 / 0
0755
grub2-bios-setup
1.03 MB
April 30 2024 19:38:58
0 / 0
0755
grub2-get-kernel-settings
2.077 KB
April 30 2024 19:38:51
0 / 0
0755
grub2-install
1.29 MB
April 30 2024 19:38:58
0 / 0
0755
grub2-macbless
1.02 MB
April 30 2024 19:38:58
0 / 0
0755
grub2-mkconfig
7.629 KB
April 30 2024 19:38:51
0 / 0
0755
grub2-ofpathname
225.539 KB
April 30 2024 19:38:58
0 / 0
0755
grub2-probe
1.03 MB
April 30 2024 19:38:58
0 / 0
0755
grub2-reboot
3.995 KB
April 30 2024 19:38:51
0 / 0
0755
grub2-rpm-sort
258.523 KB
April 30 2024 19:38:58
0 / 0
0755
grub2-set-default
3.458 KB
April 30 2024 19:38:51
0 / 0
0755
grub2-setpassword
2.962 KB
April 30 2024 19:38:51
0 / 0
0755
grub2-sparc64-setup
1.04 MB
April 30 2024 19:38:58
0 / 0
0755
grubby
71.273 KB
August 08 2019 23:41:33
0 / 0
0755
halt
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
hardlink
15.289 KB
June 10 2014 06:26:04
0 / 0
0755
htcacheclean
31.164 KB
May 30 2023 14:01:58
0 / 0
0755
httpd
515.367 KB
May 30 2023 14:01:58
0 / 0
0755
hwclock
48.438 KB
February 02 2021 16:31:53
0 / 0
0755
iconvconfig
22.148 KB
June 04 2024 15:05:31
0 / 0
0755
iconvconfig.x86_64
22.148 KB
June 04 2024 15:05:31
0 / 0
0755
ifcfg
2.986 KB
September 30 2020 16:40:47
0 / 0
0755
ifdown
1.612 KB
May 22 2020 10:44:33
0 / 0
0755
ifenslave
19.742 KB
August 04 2017 08:01:04
0 / 0
0755
ifstat
40.602 KB
September 30 2020 16:40:56
0 / 0
0755
ifup
4.893 KB
May 22 2020 10:44:33
0 / 0
0755
init
1.56 MB
December 07 2023 14:51:48
0 / 0
0755
insmod
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
install-info
110.422 KB
April 11 2018 01:03:35
0 / 0
0755
installkernel
2.689 KB
August 08 2019 23:41:33
0 / 0
0755
intel-microcode2ucode
11.102 KB
December 07 2023 14:48:52
0 / 0
0755
ip
459.586 KB
September 30 2020 16:40:56
0 / 0
0755
ip6tables
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
ip6tables-restore
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
ip6tables-save
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
iprconfig
394.367 KB
February 05 2020 12:58:45
0 / 0
0755
iprdbg
135.938 KB
February 05 2020 12:58:45
0 / 0
0700
iprdump
123.672 KB
February 05 2020 12:58:45
0 / 0
0755
iprinit
123.641 KB
February 05 2020 12:58:45
0 / 0
0755
iprsos
2.184 KB
February 05 2020 12:58:44
0 / 0
0755
iprupdate
123.641 KB
February 05 2020 12:58:45
0 / 0
0755
ipset
7.016 KB
August 08 2019 23:55:38
0 / 0
0755
iptables
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
iptables-restore
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
iptables-save
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
irqbalance
48.5 KB
August 08 2019 23:57:59
0 / 0
0755
kexec
166.063 KB
June 09 2021 16:09:59
0 / 0
0755
killall5
23.172 KB
June 09 2014 23:16:44
0 / 0
0755
kpartx
39.469 KB
November 16 2022 15:21:37
0 / 0
0755
lchage
15.414 KB
April 12 2018 18:44:23
0 / 0
0755
ldattach
27.93 KB
February 02 2021 16:31:53
0 / 0
0755
ldconfig
952.078 KB
June 04 2024 15:05:14
0 / 0
0755
lgroupadd
11.281 KB
April 12 2018 18:44:23
0 / 0
0755
lgroupdel
11.258 KB
April 12 2018 18:44:23
0 / 0
0755
lgroupmod
15.438 KB
April 12 2018 18:44:23
0 / 0
0755
lid
15.398 KB
April 12 2018 18:44:23
0 / 0
0755
lnewusers
15.461 KB
April 12 2018 18:44:23
0 / 0
0755
lnstat
20.094 KB
September 30 2020 16:40:56
0 / 0
0755
load_policy
10.969 KB
April 01 2020 04:04:55
0 / 0
0755
logrotate
68.609 KB
April 01 2020 03:26:09
0 / 0
0755
logsave
11.266 KB
September 30 2020 15:58:29
0 / 0
0755
losetup
82.445 KB
February 02 2021 16:31:53
0 / 0
0755
lpasswd
15.5 KB
April 12 2018 18:44:23
0 / 0
0755
lsmod
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
luseradd
15.383 KB
April 12 2018 18:44:23
0 / 0
0755
luserdel
11.305 KB
April 12 2018 18:44:23
0 / 0
0755
lusermod
19.43 KB
April 12 2018 18:44:23
0 / 0
0755
lvchange
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvconvert
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvcreate
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvdisplay
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvextend
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvm
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvmconf
12.546 KB
April 28 2021 13:31:45
0 / 0
0555
lvmconfig
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvmdiskscan
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvmdump
10.07 KB
April 28 2021 13:31:45
0 / 0
0555
lvmetad
71.664 KB
April 28 2021 13:32:01
0 / 0
0555
lvmpolld
64.07 KB
April 28 2021 13:32:01
0 / 0
0555
lvmsadc
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvmsar
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvreduce
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvremove
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvrename
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvresize
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvs
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
lvscan
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
makedumpfile
376.516 KB
June 09 2021 16:09:59
0 / 0
0755
matchpathcon
11.188 KB
April 01 2020 03:16:40
0 / 0
0755
mkdict
0.24 KB
June 10 2014 05:42:10
0 / 0
0755
mkdumprd
13.991 KB
June 09 2021 16:09:58
0 / 0
0755
mke2fs
94.078 KB
September 30 2020 15:58:29
0 / 0
0755
mkfs
11.25 KB
February 02 2021 16:31:53
0 / 0
0755
mkfs.btrfs
366.445 KB
August 06 2017 16:32:36
0 / 0
0755
mkfs.cramfs
36.156 KB
February 02 2021 16:31:53
0 / 0
0755
mkfs.ext2
94.078 KB
September 30 2020 15:58:29
0 / 0
0755
mkfs.ext3
94.078 KB
September 30 2020 15:58:29
0 / 0
0755
mkfs.ext4
94.078 KB
September 30 2020 15:58:29
0 / 0
0755
mkfs.minix
36.266 KB
February 02 2021 16:31:53
0 / 0
0755
mkfs.xfs
359.797 KB
September 30 2020 17:52:03
0 / 0
0755
mkhomedir_helper
19.047 KB
April 01 2020 04:00:53
0 / 0
0755
mklost+found
11.109 KB
September 30 2020 15:58:29
0 / 0
0755
mkswap
69.641 KB
February 02 2021 16:31:53
0 / 0
0755
modinfo
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
modprobe
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
netreport
10.961 KB
November 16 2020 16:20:20
0 / 0
2755
new-kernel-pkg
24.956 KB
August 08 2019 23:41:33
0 / 0
0755
newusers
93.445 KB
August 09 2019 02:51:01
0 / 0
0755
nft
448.32 KB
August 09 2019 01:13:13
0 / 0
0755
nl-class-add
11.695 KB
August 03 2017 19:48:51
0 / 0
0755
nl-class-delete
11.547 KB
August 03 2017 19:48:51
0 / 0
0755
nl-class-list
11.477 KB
August 03 2017 19:48:51
0 / 0
0755
nl-classid-lookup
11.289 KB
August 03 2017 19:48:51
0 / 0
0755
nl-cls-add
11.758 KB
August 03 2017 19:48:51
0 / 0
0755
nl-cls-delete
11.68 KB
August 03 2017 19:48:51
0 / 0
0755
nl-cls-list
11.578 KB
August 03 2017 19:48:51
0 / 0
0755
nl-link-list
11.523 KB
August 03 2017 19:48:51
0 / 0
0755
nl-pktloc-lookup
11.359 KB
August 03 2017 19:48:51
0 / 0
0755
nl-qdisc-add
11.602 KB
August 03 2017 19:48:51
0 / 0
0755
nl-qdisc-delete
11.539 KB
August 03 2017 19:48:51
0 / 0
0755
nl-qdisc-list
11.625 KB
August 03 2017 19:48:51
0 / 0
0755
nologin
7.008 KB
February 02 2021 16:31:53
0 / 0
0755
nstat
23.875 KB
September 30 2020 16:40:56
0 / 0
0755
ownership
15.039 KB
March 16 2021 15:25:58
0 / 0
0755
packer
11.063 KB
June 10 2014 05:42:13
0 / 0
0755
pam_console_apply
39.688 KB
April 01 2020 04:00:53
0 / 0
0755
pam_tally2
15.047 KB
April 01 2020 04:00:53
0 / 0
0755
pam_timestamp_check
10.969 KB
April 01 2020 04:00:53
0 / 0
4755
parted
77.219 KB
April 01 2020 03:58:18
0 / 0
0755
partprobe
11.227 KB
April 01 2020 03:58:18
0 / 0
0755
partx
86.547 KB
February 02 2021 16:31:53
0 / 0
0755
pdata_tools
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
pidof
23.172 KB
June 09 2014 23:16:44
0 / 0
0755
ping6
64.625 KB
August 04 2017 08:01:04
0 / 0
0755
pivot_root
11.188 KB
February 02 2021 16:31:53
0 / 0
0755
plymouth-set-default-theme
6.214 KB
October 01 2020 16:53:19
0 / 0
0755
plymouthd
84.219 KB
October 01 2020 16:53:21
0 / 0
0755
postalias
253.867 KB
April 01 2020 04:09:09
0 / 0
0755
postcat
136.078 KB
April 01 2020 04:09:09
0 / 0
0755
postconf
363.188 KB
April 01 2020 04:09:09
0 / 0
0755
postdrop
213.438 KB
April 01 2020 04:09:09
0 / 90
2755
postfix
119.172 KB
April 01 2020 04:09:09
0 / 0
0755
postkick
131.43 KB
April 01 2020 04:09:09
0 / 0
0755
postlock
127.375 KB
April 01 2020 04:09:09
0 / 0
0755
postlog
119.375 KB
April 01 2020 04:09:09
0 / 0
0755
postmap
257.688 KB
April 01 2020 04:09:09
0 / 0
0755
postmulti
135.891 KB
April 01 2020 04:09:09
0 / 0
0755
postqueue
257.938 KB
April 01 2020 04:09:09
0 / 90
2755
postsuper
139.945 KB
April 01 2020 04:09:09
0 / 0
0755
poweroff
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
ppp-watch
23.195 KB
November 16 2020 16:20:20
0 / 0
0755
pvchange
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvck
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvcreate
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvdisplay
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvmove
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvremove
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvresize
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvs
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pvscan
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
pwck
51.711 KB
August 09 2019 02:51:01
0 / 0
0755
pwconv
47.57 KB
August 09 2019 02:51:01
0 / 0
0755
pwhistory_helper
15.438 KB
April 01 2020 04:00:53
0 / 0
0755
pwunconv
47.594 KB
August 09 2019 02:51:01
0 / 0
0755
rdisc
23.172 KB
August 04 2017 08:01:04
0 / 0
0755
rdma
73.422 KB
September 30 2020 16:40:56
0 / 0
0755
readprofile
15.461 KB
February 02 2021 16:31:53
0 / 0
0755
reboot
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
resize2fs
48.406 KB
September 30 2020 15:58:29
0 / 0
0755
resizepart
32.359 KB
February 02 2021 16:31:53
0 / 0
0755
restorecon
27.164 KB
April 01 2020 04:04:55
0 / 0
0755
rmmod
143.242 KB
April 01 2020 02:58:15
0 / 0
0755
rotatelogs
19.039 KB
May 30 2023 14:01:58
0 / 0
0755
routef
0.169 KB
September 30 2020 16:40:47
0 / 0
0755
routel
1.589 KB
September 30 2020 16:40:47
0 / 0
0755
rsyslogd
648.445 KB
May 31 2022 15:22:26
0 / 0
0755
rtacct
41.93 KB
September 30 2020 16:40:56
0 / 0
0755
rtcwake
31.961 KB
February 02 2021 16:31:53
0 / 0
0755
rtmon
48.672 KB
September 30 2020 16:40:56
0 / 0
0755
rtpr
0.036 KB
September 30 2020 16:40:47
0 / 0
0755
rtstat
20.094 KB
September 30 2020 16:40:56
0 / 0
0755
runlevel
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
runuser
32.211 KB
February 02 2021 16:31:53
0 / 0
0755
sasldblistusers2
19.258 KB
February 24 2022 13:27:41
0 / 0
0755
saslpasswd2
15.086 KB
February 24 2022 13:27:41
0 / 0
0755
sefcontext_compile
60.531 KB
April 01 2020 03:16:40
0 / 0
0755
selabel_digest
11.172 KB
April 01 2020 03:16:40
0 / 0
0755
selabel_lookup
11.141 KB
April 01 2020 03:16:40
0 / 0
0755
selabel_lookup_best_match
11.156 KB
April 01 2020 03:16:40
0 / 0
0755
selabel_partial_match
11.086 KB
April 01 2020 03:16:40
0 / 0
0755
selinux_restorecon
15.211 KB
April 01 2020 03:16:40
0 / 0
0755
selinuxconlist
11.102 KB
April 01 2020 03:16:40
0 / 0
0755
selinuxdefcon
11.117 KB
April 01 2020 03:16:40
0 / 0
0755
selinuxenabled
6.977 KB
April 01 2020 03:16:40
0 / 0
0755
selinuxexeccon
7.086 KB
April 01 2020 03:16:40
0 / 0
0755
semodule
23.766 KB
April 01 2020 04:04:55
0 / 0
0755
sendmail
242.109 KB
April 01 2020 04:09:09
0 / 0
0755
sendmail.postfix
242.109 KB
April 01 2020 04:09:09
0 / 0
0755
service
3.169 KB
November 16 2020 16:20:16
0 / 0
0755
sestatus
15.016 KB
April 01 2020 04:04:55
0 / 0
0755
setcap
11.125 KB
April 01 2020 03:08:33
0 / 0
0755
setenforce
7.047 KB
April 01 2020 03:16:40
0 / 0
0755
setfiles
27.164 KB
April 01 2020 04:04:55
0 / 0
0755
setsebool
14.992 KB
April 01 2020 04:04:55
0 / 0
0755
sfdisk
83.25 KB
February 02 2021 16:31:53
0 / 0
0755
shutdown
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
sln
743.781 KB
June 04 2024 15:05:13
0 / 0
0755
smtp-sink
90.906 KB
April 01 2020 04:09:09
0 / 0
0755
smtp-source
77.789 KB
April 01 2020 04:09:09
0 / 0
0755
ss
128.438 KB
September 30 2020 16:40:56
0 / 0
0755
sshd
832.961 KB
August 04 2023 16:00:52
0 / 0
0755
sshd-keygen
3.528 KB
August 04 2023 16:00:49
0 / 0
0755
suexec
15.008 KB
May 30 2023 14:01:58
0 / 48
0510
sulogin
40.531 KB
February 02 2021 16:31:53
0 / 0
0755
sushell
0.065 KB
November 16 2020 16:20:16
0 / 0
0755
swaplabel
15.313 KB
February 02 2021 16:31:53
0 / 0
0755
swapoff
15.531 KB
February 02 2021 16:31:53
0 / 0
0755
swapon
53.289 KB
February 02 2021 16:31:53
0 / 0
0755
switch_root
15.352 KB
February 02 2021 16:31:53
0 / 0
0755
sys-unconfig
0.18 KB
November 16 2020 16:20:16
0 / 0
0755
sysctl
23.57 KB
September 30 2020 17:21:37
0 / 0
0755
t1libconfig
3.829 KB
December 23 2007 15:49:43
0 / 0
0755
tc
384.656 KB
September 30 2020 16:40:56
0 / 0
0755
telinit
704.797 KB
December 07 2023 14:51:48
0 / 0
0755
thin_check
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_delta
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_dump
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_ls
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_metadata_size
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_repair
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_restore
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_rmap
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
thin_trim
1.23 MB
November 16 2020 16:13:20
0 / 0
0755
tracepath
15.047 KB
August 04 2017 08:01:04
0 / 0
0755
tracepath6
15.047 KB
August 04 2017 08:01:04
0 / 0
0755
tune2fs
69.406 KB
September 30 2020 15:58:29
0 / 0
0755
tuned
3.293 KB
March 21 2019 22:10:46
0 / 0
0755
tuned-adm
5.218 KB
March 21 2019 22:10:46
0 / 0
0755
udevadm
414.273 KB
December 07 2023 14:51:48
0 / 0
0755
unix_chkpwd
35.422 KB
April 01 2020 04:00:53
0 / 0
4755
unix_update
35.422 KB
April 01 2020 04:00:53
0 / 0
0700
update-alternatives
27.609 KB
October 13 2020 15:46:49
0 / 0
0755
useradd
134.391 KB
August 09 2019 02:51:01
0 / 0
0755
userdel
93.5 KB
August 09 2019 02:51:01
0 / 0
0755
usermod
130.328 KB
August 09 2019 02:51:01
0 / 0
0755
usernetctl
11.031 KB
November 16 2020 16:20:20
0 / 0
4755
vgcfgbackup
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgcfgrestore
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgchange
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgck
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgconvert
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgcreate
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgdisplay
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgexport
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgextend
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgimport
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgimportclone
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgmerge
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgmknodes
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgreduce
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgremove
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgrename
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgs
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgscan
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vgsplit
2.15 MB
April 28 2021 13:32:01
0 / 0
0555
vigr
62.539 KB
August 09 2019 02:51:01
0 / 0
0755
vipw
62.539 KB
August 09 2019 02:51:01
0 / 0
0755
virt-what
11.565 KB
August 31 2021 14:47:35
0 / 0
0755
visudo
200.906 KB
January 25 2023 16:36:33
0 / 0
0755
vmcore-dmesg
19.281 KB
June 09 2021 16:09:59
0 / 0
0755
vpddecode
15.328 KB
March 16 2021 15:25:58
0 / 0
0755
weak-modules
31.897 KB
April 01 2020 02:58:15
0 / 0
0755
wipefs
28.055 KB
February 02 2021 16:31:53
0 / 0
0755
wpa_cli
128.063 KB
March 16 2021 15:26:28
0 / 0
0755
wpa_passphrase
56.789 KB
March 16 2021 15:26:28
0 / 0
0755
wpa_supplicant
1.93 MB
March 16 2021 15:26:28
0 / 0
0755
xfs_admin
1.348 KB
September 30 2020 17:51:49
0 / 0
0755
xfs_bmap
0.623 KB
September 30 2020 17:51:50
0 / 0
0755
xfs_copy
339.328 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_db
576.375 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_estimate
11.156 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_freeze
0.749 KB
September 30 2020 17:51:50
0 / 0
0755
xfs_fsr
31.828 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_growfs
327.195 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_info
0.461 KB
September 30 2020 17:51:50
0 / 0
0755
xfs_io
122.68 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_logprint
355.813 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_mdrestore
314.813 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_metadump
0.729 KB
September 30 2020 17:51:49
0 / 0
0755
xfs_mkfile
0.983 KB
September 30 2020 17:51:50
0 / 0
0755
xfs_ncheck
0.635 KB
September 30 2020 17:51:49
0 / 0
0755
xfs_quota
84.875 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_repair
563.203 KB
September 30 2020 17:52:03
0 / 0
0755
xfs_rtcp
15.25 KB
September 30 2020 17:52:03
0 / 0
0755
xtables-multi
91.516 KB
October 01 2020 16:52:53
0 / 0
0755
yum-complete-transaction
9.225 KB
May 12 2020 16:27:40
0 / 0
0755
yumdb
8.672 KB
May 12 2020 16:27:40
0 / 0
0755
zdump
14.016 KB
June 04 2024 15:05:31
0 / 0
0755
zic
50.016 KB
June 04 2024 15:05:32
0 / 0
0755
zramctl
82.227 KB
February 02 2021 16:31:53
0 / 0
0755