summaryrefslogtreecommitdiffstats
path: root/bsp/meta-arm/meta-arm-autonomy/recipes-extended/xenguest/files/xenguest-manager
blob: 99975a24a5385b54b2e10a7a120c5bc8c40f6916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
#!/bin/bash
# This script manages xenguest
#
set -u
this="$0"

XENGUEST_CONF_BASE="/etc/xenguest"
LOGFILE="/var/log/xenguest"

if [ ! -f ${XENGUEST_CONF_BASE}/xenguest-manager.conf ]; then
    echo "Cannot find xenguest manager configuration"
    exit 1
fi

# Following variables must be set in configuration:
# XENGUEST_VOLUME_DEVICE: device to use for lvm
# XENGUEST_VOLUME_NAME: lvm volume name to create on device
source ${XENGUEST_CONF_BASE}/xenguest-manager.conf

PREF="xenguest:"

function usage() {
    cat <<EOF
Usage $this ACTION [OPTIONS]

with ACTION being one of:
 help
   Display this help

 create GUESTFILE [GUESTNAME]
   Create a guest using xenguest image GUESTFILE and name it GUESTNAME.
   This will extract and configure the guest and will also create the guest
   disk if guest has one configured.
   GUESTNAME is set to the basename of GUESTFILE if unspecified.
   GUESTNAME guest must not exist

 remove GUESTNAME
   Remove GUESTNAME and destroy its disk (if it has one)

 start GUESTNAME
   Start guest GUESTNAME

 stop|shutdown GUESTNAME
   Stop guest GUESTNAME (send stop signal and let it shutdown normally)

 kill|destroy GUESTNAME
   Kill guest GUESTNAME (stop directly the guest without signaling it)

 list
   List configured guests

 status
   List guests and their current status (running or stopped)
EOF
}

function xenguest_volume_init()
{
    if [ -z "${XENGUEST_VOLUME_DEVICE:-}" -o \
        ! -b ${XENGUEST_VOLUME_DEVICE:-} ]; then
        echo "${PREF} Invalid volume device in configuration: ${XENGUEST_VOLUME_DEVICE:-}"
        exit 1
    fi

    if [ -z "${XENGUEST_VOLUME_NAME:-}" ]; then
        echo "${PREF} No volume name in configuration, using vg-xen..."
        XENGUEST_VOLUME_NAME="vg-xen"
    fi

    pvs ${XENGUEST_VOLUME_DEVICE} > /dev/null 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Initialize lvm on ${XENGUEST_VOLUME_DEVICE}"
        echo "pvcreate -f ${XENGUEST_VOLUME_DEVICE}" >> ${LOGFILE} 2>&1
        pvcreate -f ${XENGUEST_VOLUME_DEVICE} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            echo "${PREF} Error"
            exit 1
        fi
    fi
    vgs ${XENGUEST_VOLUME_NAME} > /dev/null 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Create ${XENGUEST_VOLUME_NAME} volume"
        echo "vgcreate ${XENGUEST_VOLUME_NAME} ${XENGUEST_VOLUME_DEVICE}" \
            >> ${LOGFILE} 2>&1
        vgcreate ${XENGUEST_VOLUME_NAME} ${XENGUEST_VOLUME_DEVICE} \
            >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            echo "${PREF} Error"
            exit 1
        fi
    fi
}

# Detach a disk we attached to xen
function xenguest_detach_disk()
{
    echo "xl block-detach 0 \$\(xl block-list 0 | " \
        "grep \"domain/0\" | awk '{print \$1}'\)" \
            >> ${LOGFILE} 2>&1
    xl block-detach 0 $(xl block-list 0 | \
        grep "domain/0" | awk '{print $1}') \
        >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error detaching partition ${part}"
        exit 1
    fi
}

function xenguest_disk_init()
{
    guestname="$1"
    guestfile="$2"
    devname="/dev/${XENGUEST_VOLUME_NAME}/${guestname}"

    source ${XENGUEST_CONF_BASE}/guests/${guestname}/disk.cfg

    if [ ${DISK_SIZE:-0} -eq 0 ]; then
        echo "${PREF} No disk for ${guestname}"
        return
    fi

    echo "${PREF} Create ${guestname} disk"

    # Init our volume
    xenguest_volume_init

    echo "${PREF} Create hard drive for ${guestname}"


    # Remove volume if it already exist
    echo "lvs ${XENGUEST_VOLUME_NAME}/${guestname}"  >> ${LOGFILE} 2>&1
    lvs ${XENGUEST_VOLUME_NAME}/${guestname} >> ${LOGFILE} 2>&1
    if [ $? -eq 0 ]; then
        echo "lvremove -y ${devname}" >> ${LOGFILE} 2>&1
        lvremove -y ${devname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            echo "${PREF} Error removing volume ${guestname}"
            exit 1
        fi
    fi

    # Create volume
    echo "lvcreate -y -L ${DISK_SIZE}G -n ${guestname} ${XENGUEST_VOLUME_NAME}" \
        >> ${LOGFILE} 2>&1
    lvcreate -y -L ${DISK_SIZE}G -n ${guestname} ${XENGUEST_VOLUME_NAME} \
        >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error creating volume ${guestname}"
        exit 1
    fi

    # Add partition table
    echo "parted -s ${devname} mklabel msdos" >> ${LOGFILE} 2>&1
    parted -s ${devname} mklabel msdos >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error creating partition table on ${guestname}"
        exit 1
    fi

    # Setup disk name in xen configuration
    echo "xenguest-mkimage update ${XENGUEST_CONF_BASE}/guests/${guestname}" \
        "--xen-disk=${devname}" >> ${LOGFILE} 2>&1
    xenguest-mkimage update ${XENGUEST_CONF_BASE}/guests/${guestname} \
        --xen-disk=${devname} >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error setting disk in xen configuration"
        exit 1
    fi

    # Create partitions
    partstart="0"

    # For each partition X the disk.cfg file should set a variable DISK_PARTX
    # with a : separated list defining the partition:
    # DISK_PART3="4:ext4:disk.tgz" means that partition 3 should be 4G formated
    # with ext4 and initialized with the content of disk.tgz
    for part in $(seq 1 4); do
        eval partdesc="\${DISK_PART${part}:-0}"
        size=$(echo ${partdesc} | sed -e "s/\(.*\):.*:.*/\1/")
        fstype=$(echo ${partdesc} | sed -e "s/.*:\(.*\):.*/\1/")
        content=$(echo ${partdesc} | sed -e "s/.*:.*:\(.*\)/\1/")

        if [ "${size}" -ne 0 ]; then
            # Size is expressed in GB, pass it in MB
            size=$(expr ${size} \* 1024)
            partend=$(expr ${partstart} + ${size})

            # Let first MB of disk free for partition table
            if [ ${partstart} -eq 0 ]; then
                partstart="1"
            fi

            # Create partition
            echo "parted -s ${devname} unit MB mkpart primary ${partstart}" \
                "${partend}" >> ${LOGFILE} 2>&1
            parted -s ${devname} unit MB mkpart primary ${partstart} \
                ${partend} >> ${LOGFILE} 2>&1
            if [ $? -ne 0 ]; then
                echo "${PREF} Error adding partition ${part}"
                exit 1
            fi

            # Set next partition start to current partition end
            partstart="${partend}"

            # Sync to see the created partition
            echo "sync" >> ${LOGFILE} 2>&1
            sync >> ${LOGFILE} 2>&1

            # Prepare format command
            if [ -n "${fstype}" ]; then
                case ${fstype} in
                    vfat|ext2|ext3|ext4)
                        formatcmd="mkfs.${fstype} -F"
                        ;;
                    swap)
                        formatcmd="mkswap"
                        ;;
                    *)
                        echo "${PREF} partition ${part} of ${guestname}" \
                            "fstype is invalid: ${fstype}"
                        exit 1
                        ;;
                esac
            else
                formatcmd=""
            fi

            # Attach disk to xen
            echo "xl block-attach 0 phy:${devname} xvda w" >> ${LOGFILE} 2>&1
            xl block-attach 0 phy:${devname} xvda w >> ${LOGFILE} 2>&1
            if [ $? -ne 0 ]; then
                echo "${PREF} Error attaching partition ${part}"
                exit 1
            fi


            # Loop for 20s to wait until /dev/xvdaX appears
            i=0
            while [ ! -b /dev/xvda${part} ]; do
                ((i++))
                if [[ "$i" == '40' ]]; then
                    break;
                fi
                sleep 0.5
            done

            if [ ! -b /dev/xvda${part} ]; then
                echo "${PREF} Partition ${part} creation error"
                xenguest_detach_disk
                exit 1
            fi

            if [ -n "${formatcmd}" ]; then
                echo "${formatcmd} /dev/xvda${part}" >> ${LOGFILE} 2>&1
                ${formatcmd} /dev/xvda${part}
                if [ $? -ne 0 ]; then
                    echo "${PREF} Cannot create partition ${part} FS"
                    xenguest_detach_disk
                    exit 1
                fi
            fi

            case ${content} in
                *.img*)
                    decompress=""
                    case ${content} in
                        *.img.gz)
                            decompress='zcat'
                            ;;
                        *.img.bz2)
                            decompress='bzcat'
                            ;;
                        *.img)
                            decompress='cat'
                            ;;
                        *)
                            # invalid/unknown compression type
                            echo "${PREF} Invalid file format in disk ${content}"
                            xenguest_detach_disk
                            exit 1
                            ;;
                    esac
                    # dd into partition
                    echo "xenguest-mkimage extract-disk-file ${guestfile} " \
                        "${content} | ${decompress} | dd of=/dev/xvda${part} " >> ${LOGFILE} 2>&1
                    xenguest-mkimage extract-disk-file ${guestfile} ${content} \
                        | ${decompress} | dd of=/dev/xvda${part} >> ${LOGFILE} 2>&1
                    if [ $? -ne 0 ]; then
                        echo "${PREF} Cannot populate partition ${part}"
                        xenguest_detach_disk
                        exit 1
                    fi
                    ;;
                *.tar*)
                    tararg=""
                    case ${content} in
                        *.tar.gz)
                            tararg="z"
                            ;;
                        *.tar.bz2)
                            tararg="j"
                            ;;
                        *.tar.xz)
                            tararg="J"
                            ;;
                        *.tar)
                            tararg=""
                            ;;
                        *)
                            # invalid/unknown tar type
                            echo "${PREF} Invalid file format in disk ${content}"
                            xenguest_detach_disk
                            exit 1
                            ;;
                    esac

                    # must mount the partition and extract
                    mntdir=$(mktemp -d)
                    echo "mount /dev/xvda${part} ${mntdir}" >> ${LOGFILE} 2>&1
                    mount /dev/xvda${part} ${mntdir} >> ${LOGFILE} 2>&1
                    if [ $? -ne 0 ]; then
                        echo "${PREF} Cannot mount partition ${part}"
                        xenguest_detach_disk
                        rm -rf ${mntdir}
                        exit 1
                    fi

                    # tar and unmount
                    echo "xenguest-mkimage extract-disk-file ${guestfile}" \
                        "${content} | tar -C ${mntdir} -x${tararg}f - " \
                            >> ${LOGFILE} 2>&1
                    xenguest-mkimage extract-disk-file ${guestfile} ${content} \
                        | tar -C ${mntdir} -x${tararg}f - >> ${LOGFILE} 2>&1
                    if [ $? -ne 0 ]; then
                        echo "${PREF} Cannot populate partition ${part}"
                        umount ${mntdir}
                        rm -rf ${mntdir}
                        xenguest_detach_disk
                        exit 1
                    fi
                    echo "umount ${mntdir}" >> ${LOGFILE} 2>&1
                    umount ${mntdir} >> ${LOGFILE} 2>&1
                    if [ $? -ne 0 ]; then
                        echo "${PREF} Error unmounting ${part}"
                        xenguest_detach_disk
                        rm -rf ${mntdir}
                        exit 1
                    fi
                    rm -rf ${mntdir}
                    ;;
                *)
                    #invalid content type
                    ;;
            esac

            # Detach disk
            xenguest_detach_disk
        fi
    done

}

function xenguest_guest_create()
{
    guestfile="$1"
    guestname="$2"

    # extract xenguest tar
    # put xen config in etc ?
    # if disk config file:
    #  disk init
    #  add partititions

    echo "${PREF} Create ${guestname} using ${guestfile}"
    rm -rf ${XENGUEST_CONF_BASE}/guests/${guestname}
    mkdir -p ${XENGUEST_CONF_BASE}/guests/${guestname}

    echo "xenguest-mkimage extract-config ${guestfile}" \
        "${XENGUEST_CONF_BASE}/guests/${guestname}" >> ${LOGFILE} 2>&1
    xenguest-mkimage extract-config ${guestfile} \
        ${XENGUEST_CONF_BASE}/guests/${guestname} >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error extracting guest image"
        exit 1
    fi

    # Set guest name inside config
    echo "xenguest-mkimage update ${XENGUEST_CONF_BASE}/guests/${guestname}" \
        "--xen-name=${guestname}" >> ${LOGFILE} 2>&1
    xenguest-mkimage update ${XENGUEST_CONF_BASE}/guests/${guestname} \
        --xen-name=${guestname} >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error setting guest name"
        exit 1
    fi

    xenguest_disk_init ${guestname} ${guestfile}
}

function xenguest_guest_remove()
{
    guestname="$1"
    devname="/dev/${XENGUEST_VOLUME_NAME}/${guestname}"

    # check if guest had a volume
    echo "lvs ${XENGUEST_VOLUME_NAME}/${guestname}"  >> ${LOGFILE} 2>&1
    lvs ${XENGUEST_VOLUME_NAME}/${guestname} >> ${LOGFILE} 2>&1
    if [ $? -eq 0 ]; then
        # Remove guest volume
        echo "lvremove -y ${devname}" >> ${LOGFILE} 2>&1
        lvremove -y ${devname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            echo "${PREF} Error removing volume ${guestname}"
            exit 1
        fi
    fi

    # remove guest files
    rm -rf ${XENGUEST_CONF_BASE}/guests/${guestname}
}

function xenguest_guest_start()
{
    guestname="${1}"
    guestdir=${XENGUEST_CONF_BASE}/guests/${guestname}

    # Get guest configuration
    source ${guestdir}/params.cfg

    pushd ${guestdir} > /dev/null 2>&1

    # create config by merging all configurations together
    cat guest.cfg $(find guest.d -type f 2> /dev/null) > ${guestname}.cfg

    # Build init script lists (ignore non existing dirs errors,
    # sort alphabetically and run global scripts first)
    init_pre="$(find ${XENGUEST_CONF_BASE}/init.pre -type f 2> /dev/null | \
            sort) $(find ${guestdir}/init.pre -type f 2> /dev/null | sort)"
    init_d="$(find ${XENGUEST_CONF_BASE}/init.d -type f 2> /dev/null | \
            sort) $(find ${guestdir}/init.d -type f 2> /dev/null | sort)"
    init_post="$(find ${XENGUEST_CONF_BASE}/init.post -type f 2> /dev/null | \
            sort) $(find ${guestdir}/init.post -type f 2> /dev/null | sort)"

    # call pre init scripts
    for f in ${init_pre}; do
        echo "$f ${guestname}" >> ${LOGFILE} 2>&1
        $f ${guestname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            rm -f ${guestname}.cfg
            popd > /dev/null 2>&1
            echo "${PREF} Error during pre init script of ${guestname}"
            exit 1
        fi
    done

    # Create non started guest
    echo "xl create -p ${guestname}.cfg" >> ${LOGFILE} 2>&1
    xl create -p ${guestname}.cfg >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        rm -f ${guestname}.cfg
        popd > /dev/null 2>&1
        echo "${PREF} Error starting ${guestname}"
        exit 1
    fi

    # call init scripts
    for f in ${init_d}; do
        echo "$f ${guestname}" >> ${LOGFILE} 2>&1
        $f ${guestname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            rm -f ${guestname}.cfg
            echo "xl destroy ${guestname}" >> ${LOGFILE} 2>&1
            xl destroy ${guestname} >> ${LOGFILE} 2>&1
            popd > /dev/null 2>&1
            echo "${PREF} Error during init script of ${guestname}"
            exit 1
        fi
    done

    # Start guest
    echo "xl unpause ${guestname}" >> ${LOGFILE} 2>&1
    xl unpause ${guestname} >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        rm -f ${guestname}.cfg
        popd > /dev/null 2>&1
        echo "${PREF} Error starting ${guestname}"
        exit 1
    fi

    # call post init scripts
    for f in ${init_post}; do
        echo "$f ${guestname}" >> ${LOGFILE} 2>&1
        $f ${guestname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            rm -f ${guestname}.cfg
            echo "xl destroy ${guestname}" >> ${LOGFILE} 2>&1
            xl destroy ${guestname} >> ${LOGFILE} 2>&1
            popd > /dev/null 2>&1
            echo "${PREF} Error during post init script of ${guestname}"
            exit 1
        fi
    done

    rm -f ${guestname}.cfg
    popd > /dev/null 2>&1
}

function xenguest_guest_stop()
{
    guestname="${1}"
    echo "xl shutdown ${guestname}" >> ${LOGFILE} 2>&1
    xl shutdown ${guestname} >> ${LOGFILE} 2>&1
    if [ $? -ne 0 ]; then
        echo "${PREF} Error stopping ${guestname}"
        exit 1
    fi
}

function check_guest_arg()
{
    cmd="${1}"
    guestname="${2:-}"
    if [ -z "${guestname:-}" ]; then
        echo "${PREF} Usage ${this} ${cmd} GUESTNAME"
        exit 1
    fi
}

function check_guest_exist()
{
    guestname="${1}"
    if [ ! -f ${XENGUEST_CONF_BASE}/guests/${guestname}/guest.cfg -o \
        ! -f ${XENGUEST_CONF_BASE}/guests/${guestname}/params.cfg ]; then
        echo "${PREF} Invalid guest name: ${guestname}"
        exit 1
    fi
}

function check_guest_running()
{
    guestname="${1}"
    running=$(xl list | awk 'NR > 1 {print $1}' | grep "${guestname}" || echo)
    if [ ! "${running}" = "${guestname}" ]; then
        echo "${PREF} Guest ${guestname} is not running"
        exit 1
    fi
}

function check_guest_not_running()
{
    guestname="${1}"
    running=$(xl list | awk 'NR > 1 {print $1}' | grep "${guestname}" || echo)
    if [ "${running}" = "${guestname}" ]; then
        echo "${PREF} Guest ${guestname} is running"
        exit 1
    fi
}

cmd="${1:-help}"
arg1="${2:-}"
arg2="${3:-}"

case ${cmd} in
    help|--help|-h|-?)
        usage
        exit 0
        ;;
    create)
        guestfile="${arg1}"
        guestname="${arg2}"
        if [ -z "${guestfile}" -o ! -f "${guestfile}" ]; then
            echo "${PREF} Usage ${this} create XENGUEST_FILE [NAME]"
            exit 1
        fi
        if [ -z "${guestname}" ]; then
            guestname=$(basename ${guestfile} .xenguest)
        fi

        if [ -f ${XENGUEST_CONF_BASE}/guests/${guestname}/guest.cfg ]; then
            # Guest already exist
            echo "${PREF} A guest ${guestname} already exist"
            exit 1
        fi

        xenguest_guest_create ${guestfile} ${guestname}
        ;;
    remove)
        guestname="${arg1:-}"
        check_guest_arg ${cmd} ${guestname}
        check_guest_exist ${guestname}
        # We need to stop the guest first
        running=$(xl list | awk 'NR > 1 {print $1}' | grep "${guestname}" \
            || echo)
        if [ "${running}" = "${guestname}" ]; then
            echo "xl destroy ${guestname}" >> ${LOGFILE} 2>&1
            xl destroy ${guestname} >> ${LOGFILE} 2>&1
            if [ $? -ne 0 ]; then
                echo "${PREF} Error killing ${guestname}"
                exit 1
            fi
        fi
        xenguest_guest_remove ${guestname}
        ;;
    start)
        guestname="${arg1:-}"
        check_guest_arg ${cmd} ${guestname}
        check_guest_exist ${guestname}
        check_guest_not_running ${guestname}
        xenguest_guest_start ${guestname}
        ;;
    stop|shutdown)
        guestname="${arg1:-}"
        check_guest_arg ${cmd} ${guestname}
        check_guest_exist ${guestname}
        check_guest_running ${guestname}
        xenguest_guest_stop ${guestname}
        ;;
    kill|destroy)
        guestname="${arg1:-}"
        check_guest_arg ${cmd} ${guestname}
        check_guest_exist ${guestname}
        check_guest_running ${guestname}
        echo "xl destroy ${guestname}" >> ${LOGFILE} 2>&1
        xl destroy ${guestname} >> ${LOGFILE} 2>&1
        if [ $? -ne 0 ]; then
            echo "${PREF} Error killing ${guestname}"
            exit 1
        fi
        ;;
    list)
        if [ -d ${XENGUEST_CONF_BASE}/guests ]; then
            for f in $(find ${XENGUEST_CONF_BASE}/guests -mindepth 1 \
                -maxdepth 1 -type d -exec basename {} \;); do
                if [ -f ${XENGUEST_CONF_BASE}/guests/$f/guest.cfg ]; then
                    echo "$f"
                fi
            done
        fi
        ;;
    status)
        guestname="${arg1}"
        if [ -n "${guestname}" ]; then
            check_guest_exist ${guestname}
            if xl list | awk 'NR > 1 {print $1}' | grep "${guestname}" > \
                /dev/null 2>&1; then
                echo "${guestname}: Running"
            else
                echo "${guestname}: Stopped"
            fi
        else
            guestlist=$($this list)
            if [ -n "${guestlist}" ]; then
                for f in ${guestlist}; do
                    $this status $f
                done
            fi
        fi
        ;;
    *)
        echo "${PREF} Invalid argument ${cmd}"
        exit 1
        ;;
esac