1#!/bin/sh
2#-
3# Copyright (c) 2010 iXsystems, Inc.  All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright
9#    notice, this list of conditions and the following disclaimer.
10# 2. Redistributions in binary form must reproduce the above copyright
11#    notice, this list of conditions and the following disclaimer in the
12#    documentation and/or other materials provided with the distribution.
13#
14# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24# SUCH DAMAGE.
25#
26# $FreeBSD$
27
28# Query a disk for partitions and display them
29#############################
30
31. ${PROGDIR}/backend/functions.sh
32. ${PROGDIR}/backend/functions-disk.sh
33
34if [ -z "${1}" ]
35then
36  echo "Error: No disk specified!"
37  exit 1
38fi
39
40if [ ! -e "/dev/${1}" ]
41then
42  echo "Error: Disk /dev/${1} does not exist!"
43  exit 1
44fi
45
46DISK="${1}"
47
48# Now get the disks size in MB
49KB="`diskinfo -v ${1} | grep 'bytes' | cut -d '#' -f 1 | tr -s '\t' ' ' | tr -d ' '`"
50MB=$(convert_byte_to_megabyte ${KB})
51TOTALSIZE="$MB"
52TOTALB="`diskinfo -v ${1} | grep 'in sectors' | tr -s '\t' ' ' | cut -d ' ' -f 2`"
53
54gpart show ${1} >/dev/null 2>/dev/null
55if [ "$?" != "0" ] ; then
56  # No partitions on this disk, display entire disk size and exit
57  echo "${1}-freemb: ${TOTALSIZE}"
58  echo "${1}-freeblocks: ${TOTALB}"
59  exit
60fi
61
62# Display if this is GPT or MBR formatted
63TYPE=`gpart show ${1} | awk '/^=>/ { printf("%s",$5); }'`
64echo "${1}-format: $TYPE"
65
66# Set some search flags
67PART="0"
68EXTENDED="0"
69START="0"
70SIZEB="0"
71
72# Get a listing of partitions on this disk
73get_disk_partitions "${DISK}"
74PARTS="${VAL}"
75for curpart in $PARTS
76do
77
78  # First get the sysid / label for this partition
79  if [ "$TYPE" = "MBR" ] ; then
80    get_partition_sysid_mbr "${DISK}" "${curpart}"
81    echo "${curpart}-sysid: ${VAL}"
82    get_partition_label_mbr "${DISK}" "${curpart}"
83    echo "${curpart}-label: ${VAL}"
84  else
85    get_partition_label_gpt "${DISK}" "${curpart}"
86    echo "${curpart}-sysid: ${VAL}"
87    echo "${curpart}-label: ${VAL}"
88  fi
89
90  # Now get the startblock, blocksize and MB size of this partition
91
92  get_partition_startblock "${DISK}" "${curpart}"
93  START="${VAL}"
94  echo "${curpart}-blockstart: ${START}"
95
96  get_partition_blocksize "${DISK}" "${curpart}"
97  SIZEB="${VAL}"
98  echo "${curpart}-blocksize: ${SIZEB}"
99
100  SIZEMB=$(convert_blocks_to_megabyte ${SIZEB})
101  echo "${curpart}-sizemb: ${SIZEMB}"
102
103done
104
105
106# Now calculate any free space
107LASTB="`expr $SIZEB + $START`"
108FREEB="`expr $TOTALB - $LASTB`"
109FREEMB="`expr ${FREEB} / 2048`"
110echo "${1}-freemb: $FREEMB"
111echo "${1}-freeblocks: $FREEB"
112