#! /usr/bin/env bash


#Preupgrade Assistant performs system upgradability assessment
#and gathers information required for successful operating system upgrade.
#Copyright (C) 2013 Red Hat Inc.
#Boris Ranto <branto@redhat.com>
#
#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 3 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 for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program.  If not, see <http://www.gnu.org/licenses/>.
. /usr/share/preupgrade/common.sh
check_applies_to "kernel,xorg-x11-server-Xorg"
#END GENERATED SECTION

RESULT="$RESULT_PASS"

# Return N/A if no previously run X11 session was detected
if ! test -f /var/log/Xorg.0.log; then
	log_info "No previously run X11 session was detected"
	exit "$RESULT_NOT_APPLICABLE"
fi

# Loaded X11 modules list
LDM_LIST="$(cat /var/log/Xorg.0.log |grep \ LoadModule:\ |awk '{print $5}'| cut -d '"' -f 2)"
RM_LIST=""
DEP_LIST=""

# Removed modules first
for mod in $LDM_LIST; do
	if grep -q -e "^$mod\$" modRemovedList; then
		log_extreme_risk "Your last X11 session loaded the module '$mod' that was removed in Red Hat Enterprise Linux 7."
		RESULT="$RESULT_FAIL"
		RM_LIST="$RM_LIST\n\t$mod"
	fi
done

# Deprecated modules second
for mod in $LDM_LIST; do
	if grep -q -e "^$mod\$" modDeprecatedList; then
		log_medium_risk "Your last X11 session loaded the module '$mod' that was deprecated in Red Hat Enterprise Linux 7."
		RESULT="$RESULT_FAIL"
		DEP_LIST="$DEP_LIST\n\t$mod"
	fi
done

# Generate solution.txt
rm -f solution.txt
if test -n "$RM_LIST"; then
	echo -e \
	"Your last X11 session loaded graphic drivers modules that were removed in Red Hat Enterprise Linux 7. Use different graphic drivers or upgrade your hardware configuration in order to address this issue. The list of the removed modules follows: $RM_LIST" >> solution.txt
fi

if test -n "$DEP_LIST"; then
	echo -e \
	"Your last X11 session loaded graphic drivers modules that were deprecated in Red Hat Enterprise Linux 7. All the drivers have KMS drivers that are replacing them. The list of the deprecated modules follows: $DEP_LIST" >> solution.txt
fi

exit $RESULT
