Blame SOURCES/rear-bz1652828-bz1652853.patch

c3cf38
diff --git a/usr/share/rear/build/GNU/Linux/100_copy_as_is.sh b/usr/share/rear/build/GNU/Linux/100_copy_as_is.sh
c3cf38
index 9c4212ae..873e244e 100644
c3cf38
--- a/usr/share/rear/build/GNU/Linux/100_copy_as_is.sh
c3cf38
+++ b/usr/share/rear/build/GNU/Linux/100_copy_as_is.sh
c3cf38
@@ -54,9 +54,13 @@ Log "copy_as_is_executables = ${copy_as_is_executables[@]}"
c3cf38
 # add them to the LIBS list if they are not yet included in the copied files:
c3cf38
 Log "Adding required libraries of executables in all the copied files to LIBS"
c3cf38
 local required_library=""
c3cf38
-for required_library in $( RequiredSharedOjects "${copy_as_is_executables[@]}" ) ; do
c3cf38
-    # Skip when the required library was already actually copied by 'tar' above:
c3cf38
-    grep -q "$required_library" $copy_as_is_filelist_file && continue
c3cf38
+for required_library in $( RequiredSharedObjects "${copy_as_is_executables[@]}" ) ; do
c3cf38
+    # Skip when the required library was already actually copied by 'tar' above.
c3cf38
+    # grep for a full line (copy_as_is_filelist_file contains 1 file name per line)
c3cf38
+    # to avoid that libraries get skipped when their library path is a substring
c3cf38
+    # of another already copied library, e.g. do not skip /path/to/lib when
c3cf38
+    # /other/path/to/lib was already copied, cf. https://github.com/rear/rear/pull/1976
c3cf38
+    grep -q "^${required_library}\$" $copy_as_is_filelist_file && continue
c3cf38
     # Skip when the required library is already in LIBS:
c3cf38
     IsInArray "$required_library" "${LIBS[@]}" && continue
c3cf38
     Log "Adding required library '$required_library' to LIBS"
c3cf38
diff --git a/usr/share/rear/build/GNU/Linux/390_copy_binaries_libraries.sh b/usr/share/rear/build/GNU/Linux/390_copy_binaries_libraries.sh
c3cf38
index f7809bc7..ed02dea9 100644
c3cf38
--- a/usr/share/rear/build/GNU/Linux/390_copy_binaries_libraries.sh
c3cf38
+++ b/usr/share/rear/build/GNU/Linux/390_copy_binaries_libraries.sh
c3cf38
@@ -62,16 +62,16 @@ Log "Binaries being copied: ${all_binaries[@]}"
c3cf38
 copy_binaries "$ROOTFS_DIR/bin" "${all_binaries[@]}"
c3cf38
 
c3cf38
 # Copy libraries:
c3cf38
-# It is crucial to also have all LIBS itself in all_libs because RequiredSharedOjects()
c3cf38
+# It is crucial to also have all LIBS itself in all_libs because RequiredSharedObjects()
c3cf38
 # outputs only those libraries that are required by a library but not the library itself
c3cf38
 # so that without all LIBS itself in all_libs those libraries in LIBS are missing that
c3cf38
 # are not needed by a binary in all_binaries (all_binaries were already copied above).
c3cf38
-# RequiredSharedOjects outputs the required shared objects on STDOUT.
c3cf38
+# RequiredSharedObjects outputs the required shared objects on STDOUT.
c3cf38
 # The output are absolute paths to the required shared objects.
c3cf38
 # The output can also be symbolic links (also as absolute paths).
c3cf38
 # In case of symbolic links only the link but not the link target is output.
c3cf38
 # Therefore for symbolic links also the link target gets copied below.
c3cf38
-local all_libs=( "${LIBS[@]}" $( RequiredSharedOjects "${all_binaries[@]}" "${LIBS[@]}" ) )
c3cf38
+local all_libs=( "${LIBS[@]}" $( RequiredSharedObjects "${all_binaries[@]}" "${LIBS[@]}" ) )
c3cf38
 
c3cf38
 Log "Libraries being copied: ${all_libs[@]}"
c3cf38
 local lib=""
c3cf38
diff --git a/usr/share/rear/build/OPALPBA/Linux-i386/391_list_executable_dependencies.sh b/usr/share/rear/build/OPALPBA/Linux-i386/391_list_executable_dependencies.sh
c3cf38
index 9803200d..8cb27d78 100644
c3cf38
--- a/usr/share/rear/build/OPALPBA/Linux-i386/391_list_executable_dependencies.sh
c3cf38
+++ b/usr/share/rear/build/OPALPBA/Linux-i386/391_list_executable_dependencies.sh
c3cf38
@@ -8,7 +8,7 @@ if is_true $KEEP_BUILD_DIR; then
c3cf38
     executable_dependencies_list="$TMP_DIR/executable-dependencies"
c3cf38
 
c3cf38
     for executable in "${executables[@]}"; do
c3cf38
-        dependents=( $(RequiredSharedOjects "$ROOTFS_DIR/$executable") )
c3cf38
+        dependents=( $(RequiredSharedObjects "$ROOTFS_DIR/$executable") )
c3cf38
         echo "$executable: ${dependents[*]}"
c3cf38
     done > "$executable_dependencies_list"
c3cf38
 
c3cf38
diff --git a/usr/share/rear/build/default/980_verify_rootfs.sh b/usr/share/rear/build/default/980_verify_rootfs.sh
c3cf38
index f8b3e8e9..d03e5f34 100644
c3cf38
--- a/usr/share/rear/build/default/980_verify_rootfs.sh
c3cf38
+++ b/usr/share/rear/build/default/980_verify_rootfs.sh
c3cf38
@@ -51,6 +51,11 @@ if test "$BACKUP" = "SESAM" ; then
c3cf38
     # related libraries
c3cf38
     export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SESAM_LD_LIBRARY_PATH
c3cf38
 fi
c3cf38
+if test "$BACKUP" = "NBU" ; then
c3cf38
+    # Use a NBU-specific LD_LIBRARY_PATH to find NBU libraries
c3cf38
+    # see https://github.com/rear/rear/issues/1974
c3cf38
+    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NBU_LD_LIBRARY_PATH
c3cf38
+fi
c3cf38
 # Actually test all binaries for 'not found' libraries.
c3cf38
 # Find all binaries and libraries also e.g. those that are copied via COPY_AS_IS into other paths:
c3cf38
 for binary in $( find $ROOTFS_DIR -type f -executable -printf '/%P\n' ); do
c3cf38
diff --git a/usr/share/rear/conf/default.conf b/usr/share/rear/conf/default.conf
c3cf38
index 0f0d0675..796f228a 100644
c3cf38
--- a/usr/share/rear/conf/default.conf
c3cf38
+++ b/usr/share/rear/conf/default.conf
c3cf38
@@ -1467,7 +1467,8 @@ OBDR_BLOCKSIZE=2048
c3cf38
 ##
c3cf38
 #
c3cf38
 COPY_AS_IS_NBU=( /usr/openv/bin/vnetd /usr/openv/bin/vopied /usr/openv/lib /usr/openv/netbackup /usr/openv/var/auth/[mn]*.txt )
c3cf38
-COPY_AS_IS_EXCLUDE_NBU=( "/usr/openv/netbackup/logs/*" "/usr/openv/netbackup/bin/bpjava*" "/usr/openv/netbackup/bin/xbp" )
c3cf38
+COPY_AS_IS_EXCLUDE_NBU=( "/usr/openv/netbackup/logs/*" "/usr/openv/netbackup/bin/bpjava*" /usr/openv/netbackup/bin/xbp /usr/openv/netbackup/bin/private /usr/openv/lib/java /usr/openv/lib/shared/vddk /usr/openv/netbackup/baremetal )
c3cf38
+NBU_LD_LIBRARY_PATH="/usr/openv/lib"
c3cf38
 PROGS_NBU=( )
c3cf38
 
c3cf38
 ##
c3cf38
diff --git a/usr/share/rear/lib/_input-output-functions.sh b/usr/share/rear/lib/_input-output-functions.sh
c3cf38
index d5eed43e..bdbf593d 100644
c3cf38
--- a/usr/share/rear/lib/_input-output-functions.sh
c3cf38
+++ b/usr/share/rear/lib/_input-output-functions.sh
c3cf38
@@ -324,10 +324,11 @@ function LogToSyslog () {
c3cf38
 # see https://github.com/rear/rear/issues/729
c3cf38
 function has_binary () {
c3cf38
     for bin in $@ ; do
c3cf38
-        # Suppress success output via stdout (but keep failure output via stderr):
c3cf38
-        if type $bin 1>/dev/null ; then
c3cf38
-            return 0
c3cf38
-        fi
c3cf38
+        # Suppress success output via stdout which is crucial when has_binary is called
c3cf38
+        # in other functions that provide their intended function results via stdout
c3cf38
+        # to not pollute intended function results with intermixed has_binary stdout
c3cf38
+        # (e.g. the RequiredSharedObjects function) but keep failure output via stderr:
c3cf38
+        type $bin 1>/dev/null && return 0
c3cf38
     done
c3cf38
     return 1
c3cf38
 }
c3cf38
diff --git a/usr/share/rear/lib/linux-functions.sh b/usr/share/rear/lib/linux-functions.sh
c3cf38
index 6a767367..3fb44e6d 100644
c3cf38
--- a/usr/share/rear/lib/linux-functions.sh
c3cf38
+++ b/usr/share/rear/lib/linux-functions.sh
c3cf38
@@ -100,13 +100,13 @@ function FindStorageDrivers () {
c3cf38
 
c3cf38
 # Determine all required shared objects (shared/dynamic libraries)
c3cf38
 # for programs and/or shared objects (binaries) specified in $@.
c3cf38
-# RequiredSharedOjects outputs the required shared objects on STDOUT.
c3cf38
+# RequiredSharedObjects outputs the required shared objects on STDOUT.
c3cf38
 # The output are absolute paths to the required shared objects.
c3cf38
 # The output can also be symbolic links (also as absolute paths).
c3cf38
 # In case of symbolic links only the link but not the link target is output.
c3cf38
-function RequiredSharedOjects () {
c3cf38
-    has_binary ldd || Error "Cannot run RequiredSharedOjects() because there is no ldd binary"
c3cf38
-    Log "RequiredSharedOjects: Determining required shared objects"
c3cf38
+function RequiredSharedObjects () {
c3cf38
+    has_binary ldd || Error "Cannot run RequiredSharedObjects() because there is no ldd binary"
c3cf38
+    Log "RequiredSharedObjects: Determining required shared objects"
c3cf38
     # It uses 'ldd' to determine all required shared objects because 'ldd' outputs
c3cf38
     # also transitively required shared objects i.e. libraries needed by libraries,
c3cf38
     # e.g. for /usr/sbin/parted also the libraries needed by the libparted library:
c3cf38
@@ -164,10 +164,11 @@ function RequiredSharedOjects () {
c3cf38
     #  2. Line: "        lib (mem-addr)"                 -> virtual library
c3cf38
     #  3. Line: "        lib => not found"               -> print error to stderr
c3cf38
     #  4. Line: "        lib => /path/to/lib (mem-addr)" -> print $3 '/path/to/lib'
c3cf38
-    #  5. Line: "        /path/to/lib (mem-addr)"        -> print $1 '/path/to/lib'
c3cf38
+    #  5. Line: "        /path/to/lib => /path/to/lib2 (mem-addr)" -> print $3 '/path/to/lib2'
c3cf38
+    #  6. Line: "        /path/to/lib (mem-addr)"        -> print $1 '/path/to/lib'
c3cf38
     ldd "$@" | awk ' /^\t.+ => not found/ { print "Shared object " $1 " not found" > "/dev/stderr" }
c3cf38
                      /^\t.+ => \// { print $3 }
c3cf38
-                     /^\t\// { print $1 } ' | sort -u
c3cf38
+                     /^\t\// && !/ => / { print $1 } ' | sort -u
c3cf38
 }
c3cf38
 
c3cf38
 # Provide a shell, with custom exit-prompt and history
c3cf38
diff --git a/usr/share/rear/prep/NBU/default/450_check_nbu_client_configured.sh b/usr/share/rear/prep/NBU/default/450_check_nbu_client_configured.sh
c3cf38
index e01dcdbd..3cc29777 100644
c3cf38
--- a/usr/share/rear/prep/NBU/default/450_check_nbu_client_configured.sh
c3cf38
+++ b/usr/share/rear/prep/NBU/default/450_check_nbu_client_configured.sh
c3cf38
@@ -5,5 +5,6 @@
c3cf38
 Log "Running: /usr/openv/netbackup/bin/bplist command"
c3cf38
 LANG=C /usr/openv/netbackup/bin/bplist -l -s `date -d "-5 days" \
c3cf38
 	"+%m/%d/%Y"` / >/dev/null
c3cf38
-[ $? -gt 0 ] && LogPrint "WARNING: Netbackup bplist check failed with error code $?.
c3cf38
+rc=$?
c3cf38
+[ $rc -gt 0 ] && LogPrint "WARNING: Netbackup bplist check failed with error code ${rc}.
c3cf38
 See $RUNTIME_LOGFILE for more details."