]> git.pld-linux.org Git - packages/VirtualBox.git/blame_incremental - mount.vdi
- mount(1) helper to mount partitions from VirtualBox .vdi images.
[packages/VirtualBox.git] / mount.vdi
... / ...
CommitLineData
1#!/bin/sh
2#==============================================================================
3# mount.vdi
4# Copyright (C) Elan Ruusamäe <glen@pld-linux.org>, 2008
5#
6# This program is free software; you can redistribute it and/or
7# modify it under the terms of the GNU General Public License as
8# published by the Free Software Foundation; either version 2 of
9# the License, or (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU General Public
17# License along with this program; if not, write to:
18# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19# Boston, MA 02110-1301 USA
20#
21# -- For details, see the file named "LICENSE.GPLv2"
22#==============================================================================
23
24# Sanitize environment
25export PATH=/bin:/sbin:/usr/bin:/usr/sbin
26
27# Commands
28LOSETUP=/sbin/losetup
29MOUNT=/bin/mount
30
31PROGRAM=${0##*/}
32OPTIONS=
33FSTYPE=
34
35USAGE="VDI image mountpoint [-o options,...]
36
37Options:
38 partition=<number> Specify partition to mount
39 fstype=<fstype> Specify FS type instead of autodetecting
40"
41
42# This is braindead, two first args are dev and mountpoint if invoked from
43# mount(1), but could be option if invoked from mount.vdi(1)
44if [ -n "$1" ] && [[ "$1" != -* ]]; then
45 DEVICE=$1
46 shift
47fi
48if [ -n "$1" ] && [[ "$1" != -* ]]; then
49 MOUNTPOINT=$1
50 shift
51fi
52
53while :; do
54 case "$1" in
55 -h | "-?" )
56 echo >&2 "Usage: $PROGRAM $USAGE"
57 exit 0 ;;
58 -o )
59 OPTIONS="$2";
60 shift ;;
61 -?* )
62 echo >&2 "$PROGRAM: unrecognized option: $1"
63 exit 1 ;;
64 *)
65 break ;;
66 esac
67 shift
68done
69
70if [ -z "$DEVICE" ]; then
71 echo >&2 "$PROGRAM: device to mount not specified"
72 exit 1
73fi
74
75if [ -z "$MOUNTPOINT" ]; then
76 echo >&2 "$PROGRAM: mount point not specified"
77 exit 1
78fi
79
80if [ ! -f "$DEVICE" ]; then
81 echo >&2 "$PROGRAM: $DEVICE is not a file"
82 exit 1
83fi
84
85if [ ! -d "$MOUNTPOINT" ]; then
86 echo >&2 "$PROGRAM: $MOUNTPOINT is not a directory"
87 exit 1
88fi
89
90# check magic
91magic=$(head -n 1 "$DEVICE")
92if [ "$magic" != "<<< innotek VirtualBox Disk Image >>>" ]; then
93 echo >&2 "$PROGRAM: $DEVICE: bad magic, not VDI image"
94 exit 1
95fi
96
97MOUNTOPTIONS=
98PARTITION=
99OFFSET=
100OLDIFS=$IFS
101IFS=", "
102for opt in $OPTIONS; do
103 KEY=${opt%=*};
104 VAL=${opt#*=};
105 case "$KEY" in
106 part|partition)
107 PARTITION="$VAL"
108 ;;
109 fstype)
110 FSTYPE="$VAL"
111 ;;
112 *)
113 if [ -z "$MOUNTOPTIONS" ]; then
114 MOUNTOPTIONS="$opt"
115 else
116 MOUNTOPTIONS="$MOUNTOPTIONS,$opt"
117 fi
118 ;;
119 esac
120done
121IFS="$OLDIFS"
122
123if [ -z "$PARTITION" ]; then
124 echo >&2 "$PROGRAM: missing partition option"
125 exit 1
126fi
127
128# offset when disk starts
129dskoff=8704
130
131# find free loop device. XXX race possible
132imgdev=$(losetup -f)
133losetup $imgdev -o $dskoff "$DEVICE"
134# http://vserver.13thfloor.at/Stuff/QEMU/hdloop.sh
135sfd=$(/sbin/sfdisk -dump $imgdev 2>/dev/null | sed -n '
136 /:/ s/[a-zA-Z]*=\ *\([0-9a-f]*\)\(,\|$\)/\1/g;
137 T; s/^.*:\ //; p' | tr ' ' '.')
138losetup -d $imgdev
139
140getoffset() {
141 pstart=$1
142 psize=$2
143
144 blksize=512
145 offset=$((pstart*blksize))
146 size=$((psize*blksize))
147 echo $((offset+dskoff))
148}
149
150p=1
151for a in $sfd; do
152 if [ "$p" = "$PARTITION" ]; then
153 OFFSET=$(getoffset $(echo "$a" | tr '.' ' '))
154 fi
155 x=$((p++))
156done
157
158if [ -z "$OFFSET" ]; then
159 echo >&2 "$PROGRAM: couldn't figure out offset, perhaps out of range?"
160 exit 1
161fi
162
163if [ -z "$MOUNTOPTIONS" ]; then
164 MOUNTOPTIONS="offset=$OFFSET"
165else
166 MOUNTOPTIONS="$MOUNTOPTIONS,offset=$OFFSET"
167fi
168
169# $MOUNTPOINT might not exist as mount can try to read it from /etc/fstab
170"$MOUNT" ${FSTYPE:+-t "$FSTYPE"} ${MOUNTOPTIONS:+-o "$MOUNTOPTIONS"} "$DEVICE" "$MOUNTPOINT"
171if [ $? -ne 0 ]; then
172 echo >&2 "$PROGRAM: error mounting $DEVICE"
173fi
This page took 0.022426 seconds and 4 git commands to generate.