check_file_exists_glob 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #!/bin/bash
  2. # Copyright(C) 2013 Mark Clarkson <mark.clarkson@smorg.co.uk>
  3. #
  4. # This software is provided under the terms of the GNU
  5. # General Public License (GPL), as published at:
  6. # http://www.gnu.org/licenses/gpl.html .
  7. #
  8. # File: check_file_exists_glob
  9. # Date: 06 May 2013
  10. # Version: 0.10
  11. # Modified: 23 Jul 2015 by Mark Clarkson <mark.clarkson@smorg.co.uk>
  12. # Allow '*' as FILE.
  13. #
  14. # Purpose: Check for existence (or not) of a file.
  15. #
  16. # Notes:
  17. #
  18. # ---------------------------------------------------------------------------
  19. # DEFAULTS (Change as necessary)
  20. # ---------------------------------------------------------------------------
  21. # ---------------------------------------------------------------------------
  22. # DON'T TOUCH ANYTHING BELOW
  23. # ---------------------------------------------------------------------------
  24. ME="$0"
  25. CMDLINE="$@"
  26. TRUE=1
  27. FALSE=0
  28. VERSION="0.10"
  29. OK=0
  30. WARN=1
  31. CRIT=2
  32. UNKN=3
  33. USESUDO=0
  34. WITHPERF=0
  35. SUDO="sudo "
  36. DIR=
  37. FILE=
  38. declare -i INVERTFILE=0 INVERTDIR=0 USESUDO=0 WITHPERF=0
  39. declare -i ALERTDIR=0 CRITLVL=1 WARNLVL=1 NFILES=0
  40. # ---------------------------------------------------------------------------
  41. main()
  42. # ---------------------------------------------------------------------------
  43. {
  44. local retval txt msg
  45. retval=$OK
  46. parse_options "$@"
  47. sanity_checks
  48. # Fill in the stats variables
  49. do_check
  50. txt="OK:"
  51. [[ $INVERTFILE -eq 0 ]] && msg="File '$FILE' is present, good."
  52. [[ $INVERTFILE -eq 1 ]] && msg="File '$FILE' is absent, good."
  53. if [[ $ALERTFILE -eq 1 ]]; then
  54. retval=$CRIT
  55. txt="CRITICAL: "
  56. [[ $NFILES -ge $WARNLVL ]] && { txt="WARNING: "; retval=$WARN; }
  57. [[ $NFILES -ge $CRITLVL ]] && { txt="CRITICAL: "; retval=$CRIT; }
  58. [[ $NFILES -lt $WARNLVL && $INVERTFILE -eq 1 ]] && { txt="OK: "; retval=$OK; }
  59. msg="File does not exist, '$FILE'."
  60. [[ $INVERTFILE -eq 1 ]] && msg="File '$FILE' found in '$DIR'."
  61. [[ $ALERTDIR -eq 1 ]] && msg+=" Directory does not exist, '$DIR'."
  62. elif [[ $ALERTDIR -eq 1 ]]; then
  63. retval=$CRIT
  64. txt="CRITICAL: "
  65. msg="Directory does not exist, '$DIR'."
  66. fi
  67. out="$txt $msg"
  68. [[ $WITHPERF -eq 1 ]] && {
  69. : $((++NFILES));: $((--NFILES))
  70. out="$out | \"$FILE\"=$NFILES"
  71. }
  72. echo "$out"
  73. exit $retval
  74. }
  75. # ---------------------------------------------------------------------------
  76. sanity_checks()
  77. # ---------------------------------------------------------------------------
  78. {
  79. [[ -z $DIR ]] && {
  80. usage
  81. echo "ERROR: The DIRectory must be specified."
  82. exit 0
  83. }
  84. [[ -z $FILE ]] && {
  85. usage
  86. echo "ERROR: The FILE name must be specified."
  87. exit 0
  88. }
  89. [[ $WARNLVL -gt $CRITLVL ]] && {
  90. usage
  91. echo "ERROR: The warning level is greater than the critical level."
  92. exit 0
  93. }
  94. }
  95. # ----------------------------------------------------------------------------
  96. usage()
  97. # ----------------------------------------------------------------------------
  98. {
  99. echo
  100. echo "`basename $ME` - Alert if a FILE does not exist."
  101. echo
  102. echo "Usage: `basename $ME` [options] -d DIR FILE"
  103. echo
  104. echo " FILE : The file to search for. Can glob using '*' etc, but"
  105. echo " place file names with glob patterns within quotes."
  106. echo " Mandatory. The FILE must always be specified."
  107. echo " -d DIR : Base directory to search in."
  108. echo " Mandatory option - the DIR must always be specified."
  109. echo " -i : Invert FILE, so alert if FILE does exist."
  110. echo " -I : Alert if DIR does not exist."
  111. echo " -p : Add performance data output for graphing."
  112. echo " -w NUM : Warning alert if >=NUM files are found and invert"
  113. echo " files '-i' is on. (Default is: 1)"
  114. echo " -c NUM : Critical alert if >=NUM files are found and invert"
  115. echo " files '-i' is on. (Default is: 1)"
  116. echo " -h : Display this help text."
  117. echo
  118. echo "Example:"
  119. echo
  120. echo " Check that /tmp/dir/file exists."
  121. echo
  122. echo " ./`basename $ME` -d /tmp/dir file"
  123. echo
  124. echo " Check that /tmp/dir/file does NOT exist."
  125. echo
  126. echo " ./`basename $ME` -d /tmp/dir -i file"
  127. echo
  128. echo " Again check that /tmp/dir/file does NOT exist but this time alert"
  129. echo " if the directory it could be found in, /tmp/dir, is missing."
  130. echo
  131. echo " ./`basename $ME` -d /tmp/dir -i -I file"
  132. echo
  133. echo " Check for files matching the glob 'fi*' and alert if found in"
  134. echo " /tmp/dir. Alert if /tmp/dir does not exist. Provide performance"
  135. echo " data for graphing, showing the number of files matching the"
  136. echo " glob pattern."
  137. echo
  138. echo " ./`basename $ME` -d /tmp/dir -i -I -p \"fi*\""
  139. echo
  140. echo " Same as previous but only alert if thresholds are exceeded. In"
  141. echo " this case issue a warning alert when there are 20 or more files"
  142. echo " found, critical for 30 or more."
  143. echo
  144. echo " ./`basename $ME` -d /tmp/dir -i -I -p -w 20 -c 30 \"fi*\""
  145. echo
  146. }
  147. # ---------------------------------------------------------------------------
  148. do_check()
  149. # ---------------------------------------------------------------------------
  150. {
  151. local -i found=0
  152. cd /
  153. [[ $INVERTFILE -eq 0 && $INVERTDIR -eq 1 && ! -d $DIR ]] && \
  154. { ALERTDIR=1 ; return ; }
  155. [[ $INVERTFILE -eq 1 && $INVERTDIR -eq 1 && ! -d $DIR ]] && \
  156. ALERTDIR=1
  157. [[ $INVERTFILE -eq 0 ]] && {
  158. found=`find $DIR -mindepth 1 -maxdepth 1 -name "$FILE" 2>/dev/null | wc -l`
  159. NFILES=$found
  160. [[ $found -eq 0 ]] && {
  161. ALERTFILE=1
  162. return
  163. }
  164. }
  165. [[ $INVERTFILE -eq 1 ]] && {
  166. found=`find $DIR -mindepth 1 -maxdepth 1 -name "$FILE" 2>/dev/null | wc -l`
  167. NFILES=$found
  168. [[ $found -ge 1 ]] && {
  169. ALERTFILE=1
  170. return
  171. }
  172. }
  173. }
  174. # ----------------------------------------------------------------------------
  175. parse_options()
  176. # ----------------------------------------------------------------------------
  177. # Purpose: Parse program options and set globals.
  178. # Arguments: None
  179. # Returns: Nothing
  180. {
  181. set -- "$@"
  182. while true
  183. do
  184. case $1 in
  185. -d) DIR="$2" ; shift
  186. # Append '/' if not already appended
  187. DIR="${DIR%/}${DIR:+/}"
  188. ;;
  189. -i) INVERTFILE=1
  190. ;;
  191. -I) INVERTDIR=1
  192. ;;
  193. -s) USESUDO=1
  194. ;;
  195. -p) WITHPERF=1
  196. ;;
  197. -h) usage
  198. exit 0
  199. ;;
  200. -w) WARNLVL="$2" ; shift
  201. ;;
  202. -c) CRITLVL="$2" ; shift
  203. ;;
  204. ?*) FILE="$1"
  205. [[ -n $2 ]] && {
  206. usage
  207. echo "ERROR: Only one filename allowed."
  208. exit 4
  209. }
  210. ;;
  211. esac
  212. shift 1 || break
  213. done
  214. [[ $USESUDO -ne 1 ]] && SUDO=
  215. }
  216. main "$@"
  217. exit 0