mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	- All tests should pass on KVM, Simulator - Add test cases covering FSM state transitions and actions Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
		
			
				
	
	
		
			136 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Licensed to the Apache Software Foundation (ASF) under one
 | |
| # or more contributor license agreements.  See the NOTICE file
 | |
| # distributed with this work for additional information
 | |
| # regarding copyright ownership.  The ASF licenses this file
 | |
| # to you under the Apache License, Version 2.0 (the
 | |
| # "License"); you may not use this file except in compliance
 | |
| # with the License.  You may obtain a copy of the License at
 | |
| #
 | |
| #   http://www.apache.org/licenses/LICENSE-2.0
 | |
| #
 | |
| # Unless required by applicable law or agreed to in writing,
 | |
| # software distributed under the License is distributed on an
 | |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 | |
| # KIND, either express or implied.  See the License for the
 | |
| # specific language governing permissions and limitations
 | |
| # under the License.
 | |
| 
 | |
| help() {
 | |
|   printf "Usage: $0
 | |
|                     -i nfs server ip
 | |
|                     -p nfs server path
 | |
|                     -m mount point
 | |
|                     -h host
 | |
|                     -u volume uuid list
 | |
|                     -t time on ms
 | |
|                     -d suspect time\n"
 | |
|   exit 1
 | |
| }
 | |
| 
 | |
| #set -x
 | |
| 
 | |
| NfsSvrIP=
 | |
| NfsSvrPath=
 | |
| MountPoint=
 | |
| HostIP=
 | |
| UUIDList=
 | |
| MSTime=
 | |
| SuspectTime=
 | |
| 
 | |
| while getopts 'i:p:m:u:t:h:d:' OPTION
 | |
| do
 | |
|   case $OPTION in
 | |
|   i)
 | |
|      NfsSvrIP="$OPTARG"
 | |
|      ;;
 | |
|   p)
 | |
|      NfsSvrPath="$OPTARG"
 | |
|      ;;
 | |
|   m)
 | |
|      MountPoint="$OPTARG"
 | |
|      ;;
 | |
|   h)
 | |
|      HostIP="$OPTARG"
 | |
|      ;;
 | |
|   u)
 | |
|      UUIDList="$OPTARG"
 | |
|      ;;
 | |
|   t)
 | |
|      MSTime="$OPTARG"
 | |
|      ;;
 | |
|   d)
 | |
|      SuspectTime="$OPTARG"
 | |
|      ;;
 | |
|   *)
 | |
|      help
 | |
|      ;;
 | |
|   esac
 | |
| done
 | |
| 
 | |
| if [ -z "$NfsSvrIP" ]
 | |
| then
 | |
|    exit 2
 | |
| fi
 | |
| 
 | |
| if [ -z "$SuspectTime" ]
 | |
| then
 | |
|    exit 2
 | |
| fi
 | |
| 
 | |
| hbFile="$MountPoint/KVMHA/hb-$HostIP"
 | |
| acFile="$MountPoint/KVMHA/ac-$HostIP"
 | |
| 
 | |
| # First check: heartbeat file
 | |
| now=$(date +%s)
 | |
| hb=$(cat $hbFile)
 | |
| diff=$(expr $now - $hb)
 | |
| if [ $diff -lt 61 ]
 | |
| then
 | |
|   echo "=====> ALIVE <====="
 | |
|   exit 0
 | |
| fi
 | |
| 
 | |
| if [ -z "$UUIDList" ]
 | |
| then
 | |
|   echo "=====> DEAD <======"
 | |
|   exit 0
 | |
| fi
 | |
| 
 | |
| # Second check: disk activity check
 | |
| cd $MountPoint
 | |
| latestUpdateTime=$(stat -c %Y $(echo $UUIDList | sed 's/,/ /g') | sort -nr | head -1)
 | |
| 
 | |
| if [ ! -f $acFile ]; then
 | |
|     echo "$SuspectTime:$latestUpdateTime:$MSTime" > $acFile
 | |
| 
 | |
|     if [[ $latestUpdateTime -gt $SuspectTime ]]; then
 | |
|         echo "=====> ALIVE <====="
 | |
|     else
 | |
|         echo "=====> DEAD <======"
 | |
|     fi
 | |
| else
 | |
|     acTime=$(cat $acFile)
 | |
|     arrTime=(${acTime//:/ })
 | |
|     lastSuspectTime=${arrTime[0]}
 | |
|     lastUpdateTime=${arrTime[1]}
 | |
|     echo "$SuspectTime:$latestUpdateTime:$MSTime" > $acFile
 | |
| 
 | |
|     suspectTimeDiff=$(expr $SuspectTime - $lastSuspectTime)
 | |
|     if [[ $suspectTimeDiff -lt 0 ]]; then
 | |
|         if [[ $latestUpdateTime -gt $SuspectTime ]]; then
 | |
|             echo "=====> ALIVE <====="
 | |
|         else
 | |
|             echo "=====> DEAD <======"
 | |
|         fi
 | |
|     else
 | |
|         if [[ $latestUpdateTime -gt $lastUpdateTime ]]; then
 | |
|             echo "=====> ALIVE <====="
 | |
|         else
 | |
|             echo "=====> DEAD <======"
 | |
|         fi
 | |
|     fi
 | |
| fi
 | |
| 
 | |
| exit 0
 |