~ubuntu-branches/ubuntu/quantal/lxc/quantal-201205292108

« back to all changes in this revision

Viewing changes to .pc/0074-lxc-execute-find-init/src/lxc/execute.c

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2012-04-26 15:18:35 UTC
  • mfrom: (3.1.41 sid)
  • Revision ID: package-import@ubuntu.com-20120426151835-3vz6kb4m90gb26js
Tags: 0.8.0~rc1-4ubuntu1
* Merge from unstable.  Remaining changes:
  - control:
    - update maintainer
    - Build-Depends: add dh-apparmor and libapparmor-dev
    - lxc Depends: add bridge-utils, dnsmasq-base, iptables, rsync
    - lxc Recommends: add cgroup-lite | cgroup-bin, openssl
    - lxc Suggests: add btrfs-tools, lvm2, qemu-user-static
    - lxc Conflicts: remove (cgroup-bin)
  - Add lxc-start-ephemeral and lxc-wait to debian/local
  - apparmor:
    - add lxc.apparmor, lxc-containers.apparmor,
      lxc-default.apparmor, and new lxc.apparmor.in
  - add debian/lxc.conf (default container creation config file)
  - debian/lxc.install.in:
    * add lxc-start-ephemeral
    * add debian/lxc.conf
    * skip lxc-debconf*
    * skip lxc-ls (Use upstream's)
  - debian/lxc*.install.in: use '*', not @DEB_HOST_MULTIARCH@
  - Use our own completely different lxc.postinst and lxc.postrm
  - remove lxc.templates
  - debian/rules:
    * add DEB_DH_INSTALLINIT_ARGS = --upstart-only
    * don't do debconf stuff
    * add debian/*.apparmor.in to files processed under
      override_dh_auto_clean
    * don't comment out ubuntu or busybox templates
    * do apparmor stuff and install our own lxc-wait under override_dh_install
    * install our upstart scripts in override_dh_installinit
  - add lxc.default, lxc.lxc-net.upstart, lxc.upstart under
    debian/

* patches kept:
  - 0013-lxc-create-use-default-config.patch (needed manual rebase)
  - 0030-ubuntu-template-fail.patch
  - 0031-ubuntu-template-resolvconf.patch
  - 0044-lxc-destroy-rm-autos
  - debian/patches/0045-fix-other-templates
  - debian/patches/0046-lxc-clone-change-hwaddr
  - debian/patches/0047-bindhome-check-shell
  - debian/patches/0049-ubuntu-template-sudo-and-cleanup
  - debian/patches/0050-clone-lvm-sizes
  - debian/patches/0052-ubuntu-bind-user-conflict
  - debian/patches/0053-lxc-start-pin-rootfs
  - debian/patches/0054-ubuntu-debug
  - debian/patches/0055-ubuntu-handle-badgrp
  - debian/patches/0056-dont-watch-utmp
  - debian/patches/0057-update-manpages
  - debian/patches/0058-fixup-ubuntu-cloud
  - debian/patches/0059-reenable-daily-cloudimg
  - debian/patches/0060-lxc-shutdown
  - debian/patches/0061-lxc-start-apparmor
  - debian/patches/0062-templates-relative-paths
  - debian/patches/0063-check-apparmor-enabled
  - debian/patches/0064-apparmor-mount-proc
  - debian/patches/0065-fix-bindhome-relpath
  - debian/patches/0066-confile-typo
  - debian/patches/0067-templates-lxc-profile
  - debian/patches/0068-fix-lxc-config-layout 
  - debian/patches/0069-ubuntu-cloud-fix
  - debian/patches/0070-templates-rmdir-dev-shm
  - debian/patches/0071-ubuntu-cloud-fix-image-extraction
  - debian/patches/0072-lxc-shutdown-help
  - debian/patches/0073-lxc-destroy-waits-before-destroy
  - mark all patches which have been forwarded as such, refresh all
* 0074-lxc-execute-find-init: lxc-init had moved.  Introduce a function in
  lxc-execute to go find it.  Otherwise lxc-execute for any older releases
  will fail.
* 0075-lxc-ls-bash: lxc-ls needs bash, not sh
* add debian/lxc.apparmor.in so DEB_HOST_MULTIARCH can be expanded
* 0076-fix-sprintfs:  - check return values for all sprintfs and snprintfs
  which could overflow (LP: #988918)
* 0077-execute-without-rootfs: let lxc-execute succeed with no rootfs
  (LP: #981955)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * lxc: linux Container library
 
3
 *
 
4
 * (C) Copyright IBM Corp. 2007, 2008
 
5
 *
 
6
 * Authors:
 
7
 * Daniel Lezcano <dlezcano at fr.ibm.com>
 
8
 *
 
9
 * This library is free software; you can redistribute it and/or
 
10
 * modify it under the terms of the GNU Lesser General Public
 
11
 * License as published by the Free Software Foundation; either
 
12
 * version 2.1 of the License, or (at your option) any later version.
 
13
 *
 
14
 * This library is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
 * Lesser General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU Lesser General Public
 
20
 * License along with this library; if not, write to the Free Software
 
21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
22
 */
 
23
 
 
24
#include <errno.h>
 
25
#include <unistd.h>
 
26
#include <stdlib.h>
 
27
 
 
28
#include "log.h"
 
29
#include "start.h"
 
30
 
 
31
lxc_log_define(lxc_execute, lxc_start);
 
32
 
 
33
struct execute_args {
 
34
        char *const *argv;
 
35
        int quiet;
 
36
};
 
37
 
 
38
static int execute_start(struct lxc_handler *handler, void* data)
 
39
{
 
40
        int j, i = 0;
 
41
        struct execute_args *my_args = data;
 
42
        char **argv;
 
43
        int argc = 0;
 
44
 
 
45
        while (my_args->argv[argc++]);
 
46
 
 
47
        argv = malloc((argc + my_args->quiet ? 5 : 4) * sizeof(*argv));
 
48
        if (!argv)
 
49
                return 1;
 
50
 
 
51
        argv[i++] = LXCINITDIR "/lxc-init";
 
52
        if (my_args->quiet)
 
53
                argv[i++] = "--quiet";
 
54
        argv[i++] = "--";
 
55
        for (j = 0; j < argc; j++)
 
56
                argv[i++] = my_args->argv[j];
 
57
        argv[i++] = NULL;
 
58
 
 
59
        NOTICE("exec'ing '%s'", my_args->argv[0]);
 
60
 
 
61
        execvp(argv[0], argv);
 
62
        SYSERROR("failed to exec %s", argv[0]);
 
63
        return 1;
 
64
}
 
65
 
 
66
static int execute_post_start(struct lxc_handler *handler, void* data)
 
67
{
 
68
        struct execute_args *my_args = data;
 
69
        NOTICE("'%s' started with pid '%d'", my_args->argv[0], handler->pid);
 
70
        return 0;
 
71
}
 
72
 
 
73
static struct lxc_operations execute_start_ops = {
 
74
        .start = execute_start,
 
75
        .post_start = execute_post_start
 
76
};
 
77
 
 
78
int lxc_execute(const char *name, char *const argv[], int quiet,
 
79
                struct lxc_conf *conf)
 
80
{
 
81
        struct execute_args args = {
 
82
                .argv = argv,
 
83
                .quiet = quiet
 
84
        };
 
85
 
 
86
        if (lxc_check_inherited(conf, -1))
 
87
                return -1;
 
88
 
 
89
        return __lxc_start(name, conf, &execute_start_ops, &args);
 
90
}