#!/bin/bash

#
# lxc: linux Container library

# Authors:
# Daniel Lezcano <daniel.lezcano@free.fr>

# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.

# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

#
# This script allows to set or remove the capabilities on the lxc tools.
# When the capabilities are set, a non root user can manage the containers.
#

LXC_ATTACH_CAPS="cap_sys_admin,cap_dac_override"
LXC_CREATE_CAPS="cap_sys_admin"
LXC_NETSTAT_CAPS="cap_sys_admin"
LXC_INIT_CAPS="cap_sys_admin,cap_dac_override"
LXC_COMMON_CAPS="cap_net_admin,cap_net_raw,cap_sys_admin,cap_dac_override"
LXC_UNSHARE_CAPS=$LXC_COMMON_CAPS
LXC_START_CAPS="$LXC_COMMON_CAPS,cap_fowner,cap_sys_chroot,cap_setpcap"
LXC_EXECUTE_CAPS=$LXC_START_CAPS
LXC_RESTART_CAPS="$LXC_START_CAPS,cap_mknod"
LXC_CHECKPOINT_CAPS="$LXC_COMMON_CAPS,cap_sys_ptrace,cap_mknod"
LXC_DROP_CAPS=""

usage()
{
    echo "lxc-setcap [-d] : set or remove capabilities on the lxc tools"
}

lxc_setcaps()
{
    setcap $LXC_ATTACH_CAPS=ep /usr/bin/lxc-attach
    setcap $LXC_CREATE_CAPS=ep /usr/bin/lxc-create
    setcap $LXC_EXECUTE_CAPS=ep /usr/bin/lxc-execute
    setcap $LXC_START_CAPS=ep /usr/bin/lxc-start
    setcap $LXC_RESTART_CAPS=ep /usr/bin/lxc-restart
    setcap $LXC_UNSHARE_CAPS=ep /usr/bin/lxc-unshare
    setcap $LXC_NETSTAT_CAPS=ep /usr/bin/lxc-netstat
    setcap $LXC_CHECKPOINT_CAPS=ep /usr/bin/lxc-checkpoint
    setcap $LXC_INIT_CAPS=ep /usr/lib/lxc/lxc-init

    test -e /usr/var/lib/lxc || mkdir -p /usr/var/lib/lxc
    chmod 0777 /usr/var/lib/lxc
}

lxc_dropcaps()
{
    setcap -r /usr/bin/lxc-attach
    setcap -r /usr/bin/lxc-create
    setcap -r /usr/bin/lxc-execute
    setcap -r /usr/bin/lxc-start
    setcap -r /usr/bin/lxc-restart
    setcap -r /usr/bin/lxc-unshare
    setcap -r /usr/bin/lxc-netstat
    setcap -r /usr/bin/lxc-checkpoint
    setcap -r /usr/lib/lxc/lxc-init
    chmod 0755 /usr/var/lib/lxc
}

if [ "$(id -u)" != "0" ]; then
    echo "You have to be root to run this script"
    exit 1
fi


if [ $? != 0 ]; then
    usage
    exit 1
fi

set -- $(getopt dh $*)

for i in $*; do
    case "$1" in
	-d)
	    LXC_DROP_CAPS="yes"
	    shift
	    ;;
	-h)
	    usage
	    exit 0
	    ;;
	--)
	    shift
	    break
	    ;;
	*)
	    usage
	    exit 1
	    ;;
    esac
done;

if [ -z "$LXC_DROP_CAPS" ]; then
    lxc_setcaps
else
    lxc_dropcaps
fi
