~serge-hallyn/ubuntu/quantal/lxc/lxc-user-ns

« back to all changes in this revision

Viewing changes to .pc/0088-ubuntu-template-flock/templates/lxc-ubuntu-cloud.in

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2012-06-11 15:46:25 UTC
  • Revision ID: package-import@ubuntu.com-20120611154625-s5yxhd86bti3klv8
Tags: 0.8.0~rc1-4ubuntu13
* 0086-lxc-unshare-zero-args: fix lxc-unshare segfaulting when no command
  is given (LP: #1011603)
* 0087-lxc-ls-dash: fix lxc-ls for containers whose names start with a
  dash  (LP: #1006332)
* 0088-ubuntu-template-flock: don't fail when flock is busy, just wait,
  so concurrent lxc-creates don't break.  (LP: #1007483)
* 0089-lxc-netstat-exec: fix lxc-netstat errors (LP: #1011739)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
# template script for generating ubuntu container for LXC based on released cloud
 
4
# images
 
5
#
 
6
# Copyright © 2012 Serge Hallyn <serge.hallyn@canonical.com>
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License version 2, as
 
10
# published by the Free Software Foundation.
 
11
 
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
 
 
17
# You should have received a copy of the GNU General Public License along
 
18
# with this program; if not, write to the Free Software Foundation, Inc.,
 
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
#
 
21
 
 
22
set -e
 
23
 
 
24
if [ -r /etc/default/lxc ]; then
 
25
    . /etc/default/lxc
 
26
fi
 
27
 
 
28
copy_configuration()
 
29
{
 
30
    path=$1
 
31
    rootfs=$2
 
32
    name=$3
 
33
    arch=$4
 
34
    release=$5
 
35
 
 
36
    if [ $arch = "i386" ]; then
 
37
        arch="i686"
 
38
    fi
 
39
 
 
40
    # if there is exactly one veth network entry, make sure it has an
 
41
    # associated hwaddr.
 
42
    nics=`grep -e '^lxc\.network\.type[ \t]*=[ \t]*veth' $path/config | wc -l`
 
43
    if [ $nics -eq 1 ]; then
 
44
        grep -q "^lxc.network.hwaddr" $path/config || cat <<EOF >> $path/config
 
45
lxc.network.hwaddr = 00:16:3e:$(openssl rand -hex 3| sed 's/\(..\)/\1:/g; s/.$//')
 
46
EOF
 
47
    fi
 
48
 
 
49
    cat <<EOF >> $path/config
 
50
lxc.utsname = $name
 
51
 
 
52
lxc.tty = 4
 
53
lxc.pts = 1024
 
54
lxc.rootfs = $rootfs
 
55
lxc.mount  = $path/fstab
 
56
lxc.arch = $arch
 
57
lxc.cap.drop = sys_module mac_admin
 
58
lxc.pivotdir = lxc_putold
 
59
 
 
60
# uncomment the next line to run the container unconfined:
 
61
#lxc.aa_profile = unconfined
 
62
 
 
63
lxc.cgroup.devices.deny = a
 
64
# Allow any mknod (but not using the node)
 
65
lxc.cgroup.devices.allow = c *:* m
 
66
lxc.cgroup.devices.allow = b *:* m
 
67
# /dev/null and zero
 
68
lxc.cgroup.devices.allow = c 1:3 rwm
 
69
lxc.cgroup.devices.allow = c 1:5 rwm
 
70
# consoles
 
71
lxc.cgroup.devices.allow = c 5:1 rwm
 
72
lxc.cgroup.devices.allow = c 5:0 rwm
 
73
#lxc.cgroup.devices.allow = c 4:0 rwm
 
74
#lxc.cgroup.devices.allow = c 4:1 rwm
 
75
# /dev/{,u}random
 
76
lxc.cgroup.devices.allow = c 1:9 rwm
 
77
lxc.cgroup.devices.allow = c 1:8 rwm
 
78
lxc.cgroup.devices.allow = c 136:* rwm
 
79
lxc.cgroup.devices.allow = c 5:2 rwm
 
80
# rtc
 
81
lxc.cgroup.devices.allow = c 254:0 rwm
 
82
#fuse
 
83
lxc.cgroup.devices.allow = c 10:229 rwm
 
84
#tun
 
85
lxc.cgroup.devices.allow = c 10:200 rwm
 
86
#full
 
87
lxc.cgroup.devices.allow = c 1:7 rwm
 
88
#hpet
 
89
lxc.cgroup.devices.allow = c 10:228 rwm
 
90
#kvm
 
91
lxc.cgroup.devices.allow = c 10:232 rwm
 
92
EOF
 
93
 
 
94
    cat <<EOF > $path/fstab
 
95
proc            proc         proc    nodev,noexec,nosuid 0 0
 
96
sysfs           sys          sysfs defaults  0 0
 
97
EOF
 
98
 
 
99
    # rmdir /dev/shm in precise and quantal containers.
 
100
    # I'm afraid of doing rm -rf $rootfs/dev/shm, in case it did
 
101
    # get bind mounted to the host's /run/shm.  So try to rmdir
 
102
    # it, and in case that fails move it out of the way.
 
103
    if [ $release = "precise" ] || [ $release = "quantal" ]; then
 
104
        [ -d "$rootfs/dev/shm" ] && rmdir $rootfs/dev/shm
 
105
        [ -e "$rootfs/dev/shm" ] && mv $rootfs/dev/shm $rootfs/dev/shm.bak
 
106
        ln -s /run/shm $rootfs/dev/shm
 
107
    fi
 
108
 
 
109
    return 0
 
110
}
 
111
 
 
112
usage()
 
113
{
 
114
    cat <<EOF
 
115
LXC Container configuration for Ubuntu Cloud images.
 
116
 
 
117
Generic Options
 
118
[ -r | --release <release> ]: Release name of container, defaults to host
 
119
[ -a | --arch ]: Arhcitecture of container, defaults to host arcitecture
 
120
[ -C | --cloud ]: Configure container for use with meta-data service, defaults to no
 
121
[ -T | --tarball ]: Location of tarball
 
122
[ -d | --debug ]: Run with 'set -x' to debug errors
 
123
[ -s | --stream]: Use specified stream rather than 'released'
 
124
 
 
125
Options, mutually exclusive of "-C" and "--cloud":
 
126
  [ -i | --hostid ]:    HostID for cloud-init, defaults to random string
 
127
  [ -u | --userdata ]:  Cloud-init user-data file to configure container on start
 
128
  [ -S | --auth-key ]:  SSH Public key file to inject into container
 
129
  [ -L | --nolocales ]: Do not copy host's locales into container
 
130
 
 
131
EOF
 
132
    return 0
 
133
}
 
134
 
 
135
options=$(getopt -o a:hp:r:n:Fi:CLS:T:ds: -l arch:,help,path:,release:,name:,flush-cache,hostid:,auth-key:,cloud,no_locales,tarball:,debug,stream:,userdata: -- "$@")
 
136
if [ $? -ne 0 ]; then
 
137
    usage $(basename $0)
 
138
    exit 1
 
139
fi
 
140
eval set -- "$options"
 
141
 
 
142
release=lucid
 
143
if [ -f /etc/lsb-release ]; then
 
144
    . /etc/lsb-release
 
145
    case "$DISTRIB_CODENAME" in
 
146
        lucid|natty|oneiric|precise|quantal)
 
147
            release=$DISTRIB_CODENAME
 
148
        ;;
 
149
    esac
 
150
fi
 
151
 
 
152
arch=$(arch)
 
153
 
 
154
# Code taken from debootstrap
 
155
if [ -x /usr/bin/dpkg ] && /usr/bin/dpkg --print-architecture >/dev/null 2>&1; then
 
156
    arch=`/usr/bin/dpkg --print-architecture`
 
157
elif type udpkg >/dev/null 2>&1 && udpkg --print-architecture >/dev/null 2>&1; then
 
158
    arch=`/usr/bin/udpkg --print-architecture`
 
159
else
 
160
    arch=$(arch)
 
161
    if [ "$arch" = "i686" ]; then
 
162
        arch="i386"
 
163
    elif [ "$arch" = "x86_64" ]; then
 
164
        arch="amd64"
 
165
    elif [ "$arch" = "armv7l" ]; then
 
166
        # note: arm images don't exist before oneiric;  are called armhf in
 
167
        # precise and later;  and are not supported by the query, so we don't actually
 
168
        # support them yet (see check later on).  When Query2 is available,
 
169
        # we'll use that to enable arm images.
 
170
        arch="armel"
 
171
    fi
 
172
fi
 
173
 
 
174
debug=0
 
175
hostarch=$arch
 
176
cloud=0
 
177
locales=1
 
178
flushcache=0
 
179
stream="released"
 
180
while true
 
181
do
 
182
    case "$1" in
 
183
    -h|--help)         usage $0 && exit 0;;
 
184
    -p|--path)         path=$2; shift 2;;
 
185
    -n|--name)         name=$2; shift 2;;
 
186
    -F|--flush-cache)  flushcache=1; shift 1;;
 
187
    -r|--release)      release=$2; shift 2;;
 
188
    -a|--arch)         arch=$2; shift 2;;
 
189
    -i|--hostid)       host_id=$2; shift 2;;
 
190
    -u|--userdata)     userdata=$2; shift 2;;
 
191
    -C|--cloud)        cloud=1; shift 1;;
 
192
    -S|--auth-key)     auth_key=$2; shift 2;;
 
193
    -L|--no_locales)   locales=0; shift 2;;
 
194
    -T|--tarball)      tarball=$2; shift 2;;
 
195
    -d|--debug)        debug=1; shift 1;;
 
196
    -s|--stream)       stream=$2; shift 2;;
 
197
    --)                shift 1; break ;;
 
198
        *)              break ;;
 
199
    esac
 
200
done
 
201
 
 
202
if [ $debug -eq 1 ]; then
 
203
    set -x
 
204
fi
 
205
 
 
206
if [ "$arch" == "i686" ]; then
 
207
    arch=i386
 
208
fi
 
209
 
 
210
if [ $hostarch = "i386" -a $arch = "amd64" ]; then
 
211
    echo "can't create amd64 container on i386"
 
212
    exit 1
 
213
fi
 
214
 
 
215
if [ $arch != "i386" -a $arch != "amd64" ]; then
 
216
    echo "Only i386 and amd64 are supported by the ubuntu cloud template."
 
217
    exit 1
 
218
fi
 
219
 
 
220
if [ "$stream" != "daily" -a "$stream" != "released" ]; then
 
221
    echo "Only 'daily' and 'released' streams are supported"
 
222
    exit 1
 
223
fi
 
224
 
 
225
if [ -n "$userdata" -a ! -f "$userdata" ]; then
 
226
    echo "Userdata does not exist"
 
227
    exit 1
 
228
fi
 
229
 
 
230
if [ -z "$path" ]; then
 
231
    echo "'path' parameter is required"
 
232
    exit 1
 
233
fi
 
234
 
 
235
if [ "$(id -u)" != "0" ]; then
 
236
    echo "This script should be run as 'root'"
 
237
    exit 1
 
238
fi
 
239
 
 
240
rootfs=$path/rootfs
 
241
 
 
242
type ubuntu-cloudimg-query
 
243
type wget
 
244
 
 
245
# determine the url, tarball, and directory names
 
246
# download if needed
 
247
cache="/var/cache/lxc/cloud-$release"
 
248
 
 
249
mkdir -p $cache
 
250
 
 
251
if [ -n "$tarball" ]; then
 
252
        url2="$tarball"
 
253
else
 
254
        url1=`ubuntu-cloudimg-query $release $stream $arch --format "%{url}\n"`
 
255
        url2=`echo $url1 | sed -e 's/.tar.gz/-root\0/'`
 
256
fi
 
257
 
 
258
filename=`basename $url2`
 
259
 
 
260
buildcleanup()
 
261
{
 
262
    cd $rootfs
 
263
    umount -l $cache/$xdir || true
 
264
    rm -rf $cache
 
265
}
 
266
 
 
267
# if the release doesn't have a *-rootfs.tar.gz, then create one from the
 
268
# cloudimg.tar.gz by extracting the .img, mounting it loopback, and creating
 
269
# a tarball from the mounted image.
 
270
build_root_tgz()
 
271
{
 
272
    url=$1
 
273
    filename=$2
 
274
 
 
275
    xdir=`mktemp -d -p .`
 
276
    tarname=`basename $url`
 
277
    imgname="$release-*-cloudimg-$arch.img"
 
278
    trap buildcleanup EXIT
 
279
    if [ $flushcache -eq 1 -o ! -f $cache/$tarname ]; then
 
280
        rm -f $tarname
 
281
        echo "Downloading cloud image from $url"
 
282
        wget $url || { echo "Couldn't find cloud image $url."; exit 1; }
 
283
    fi
 
284
    echo "Creating new cached cloud image rootfs"
 
285
    tar --wildcards -zxf $tarname $imgname
 
286
    mount -o loop $imgname $xdir
 
287
    (cd $xdir; tar zcf ../$filename .)
 
288
    umount $xdir
 
289
    rm -f $tarname $imgname
 
290
    rmdir $xdir
 
291
    echo "New cloud image cache created"
 
292
    trap EXIT
 
293
}
 
294
 
 
295
mkdir -p /var/lock/subsys/
 
296
(
 
297
    flock -n -x 200
 
298
 
 
299
    cd $cache
 
300
    if [ $flushcache -eq 1 ]; then
 
301
        echo "Clearing the cached images"
 
302
        rm -f $filename
 
303
    fi
 
304
 
 
305
    if [ ! -f $filename ]; then
 
306
       wget $url2 || build_root_tgz $url1 $filename
 
307
    fi
 
308
 
 
309
    echo "Extracting container rootfs"
 
310
    mkdir -p $rootfs
 
311
    cd $rootfs
 
312
    tar -zxf $cache/$filename
 
313
 
 
314
 
 
315
    if [ $cloud -eq 0 ]; then
 
316
        echo "Configuring for running outside of a cloud environment"
 
317
        echo "If you want to configure for a cloud evironment, please use '-- -C' to create the container"
 
318
 
 
319
        seed_d=$rootfs/var/lib/cloud/seed/nocloud-net
 
320
        rhostid=$(uuidgen | cut -c -8)
 
321
        host_id=${hostid:-$rhostid}
 
322
        mkdir -p $seed_d
 
323
 
 
324
        cat > "$seed_d/meta-data" <<EOF
 
325
instance_id: lxc-$host_id
 
326
EOF
 
327
 
 
328
        rm $rootfs/etc/hostname
 
329
 
 
330
        if [ $locales -eq 1 ]; then
 
331
                cp /usr/lib/locale/locale-archive $rootfs/usr/lib/locale/locale-archive
 
332
        fi
 
333
 
 
334
 
 
335
        if [ -n "$auth_key" -a -f "$auth_key" ]; then
 
336
                u_path="/home/ubuntu/.ssh"
 
337
                root_u_path="$rootfs/$u_path"
 
338
                mkdir -p $root_u_path
 
339
                cp $auth_key "$root_u_path/authorized_keys"
 
340
                chroot $rootfs chown -R ubuntu: "$u_path"
 
341
 
 
342
                echo "Inserted SSH public key from $auth_key into /home/ubuntu/.ssh/authorized_keys"
 
343
        fi
 
344
 
 
345
        if [ -f "$userdata" ]; then
 
346
                echo "Using custom user-data"
 
347
                cp $userdata $seed_d/user-data
 
348
        else
 
349
 
 
350
                if [ -z "$MIRROR" ]; then
 
351
                        MIRROR="http://archive.ubuntu.com/ubuntu"
 
352
                fi
 
353
 
 
354
                cat > "$seed_d/user-data" <<EOF
 
355
#cloud-config
 
356
output: {all: '| tee -a /var/log/cloud-init-output.log'}
 
357
apt-mirror: $MIRROR
 
358
manage_etc_hosts: localhost
 
359
locale: $(/usr/bin/locale | awk -F= '/LANG=/ {print$NF}')
 
360
EOF
 
361
        fi
 
362
 
 
363
        chroot $rootfs /usr/sbin/usermod -U ubuntu
 
364
        echo "ubuntu:ubuntu" | chroot $rootfs chpasswd
 
365
        echo "Please login as user ubuntu with password ubuntu."
 
366
 
 
367
   else
 
368
 
 
369
        echo "Configured for running in a cloud environment."
 
370
        echo "If you do not have a meta-data service, this container will likely be useless."
 
371
 
 
372
   fi
 
373
 
 
374
) 200>/var/lock/subsys/lxc-ubucloud
 
375
 
 
376
copy_configuration $path $rootfs $name $arch $release
 
377
 
 
378
echo "Container $name created."
 
379
exit 0