1. 13 Mar, 2014 1 commit
  2. 11 Mar, 2014 4 commits
  3. 10 Mar, 2014 5 commits
  4. 08 Mar, 2014 3 commits
  5. 07 Mar, 2014 10 commits
  6. 06 Mar, 2014 3 commits
  7. 05 Mar, 2014 1 commit
    • fix console stdin,stdout,stderr fds · 1da0ad1e
      Dwight Engen authored
      The fds for stdin,stdout,stderr that we were leaving open for /sbin/init
      in the container were those from /dev/tty or lxc.console (if given), which
      wasn't right. Inside the container it should only have access to the pty
      that lxc creates representing the console.
      
      This was noticed because busybox's init was resetting the termio on its
      stdin which was effecting the actual users terminal instead of the pty.
      This meant it was setting icanon so were were not passing keystrokes
      immediately to the pty, and hence command line history/editing wasn't
      working.
      
      Fix by dup'ing the console pty to stdin,stdout,stderr just before
      exec()ing /sbin/init. Fix fd leak in error handling that I noticed while
      going through this code.
      
      Also tested with lxc.console = none, lxc.console = /dev/tty7 and no
      lxc.console specified.
      Signed-off-by: 's avatarDwight Engen <dwight.engen@oracle.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
  8. 04 Mar, 2014 8 commits
    • snapshot: fix overlayfs restore · de269ee8
      Serge Hallyn authored
      And add a testcase to catch regressions.
      
      Without this patch, restoring a snapshot of an overlayfs based
      container fails, because we do not pass in LXC_CLONE_SNAPSHOT,
      and overlayfs does not support clone without snapshot.
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
    • Update gitignore for lxc-ls · 7b5f6500
      Stéphane Graber authored
      Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
    • cgmanager: switch to TLS · b149d22a
      Serge Hallyn authored
      Drop the thread mutex.  Set a (TLS) boolean at container start to
      indicate that the connection should be kept open;  set it back to false
      only when container start is complete.  Every cgm_ method opens the
      connection if not already open, and closes it if cgm_keep_connection
      is false.
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
    • cgmanager updates · 7e4dfe0b
      Serge Hallyn authored
      1. remove the cgm_dbus_disconnected handler.  We're using a proxy
         anyway, and not keeping it around.
      
      2. comment most of the cgm functions to describe when they are called, to
         ease locking review
      
      3. the cgmanager mutex is now held for the duration of a connection, from
         cgm_dbus_connect to cgm_dbus_disconnect.
      
      3b. so remove the mutex lock/unlock from functions which are called during
         container startup with the cgmanager connection already up
      
      4. remove the cgroup_restart().  It's no longer needed since we don't
         daemonize while we have the cgmanager socket open.
      
      5. report errors and return early if cgm_dbus_connect() fails
      
      6. don't keep the cgm connection open after cgm_ops_init.  I'm a bit torn
         on this one as it means that things like lxc-start will always connect
         twice.  But if we do this there is no good answer, given threaded API
         users, on when to drop that initial connection.
      
      7. cgm_unfreeze and nrtasks: grab the dbus connection, as we'll never
         have it at that point.  (technically i doubt anyone will use
         cgmanager and utmp helper on the same host :)
      
      8. lxc_spawn: make sure we only disconnect cgroups if they were already
         connected.
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
    • lxc-ls: Fix support of --nesting for unpriv · 5674a5bf
      Stéphane Graber authored
      This reworks the way lxc-ls works in nesting mode. In the past it'd use
      attach_wait's subprocess function to call itself in the container's
      namespace, carefully only attaching to the namespaces it needed.
      
      This works great for system containers but not so much as soon as you
      also need to attach to userns. Instead this fix moves all of the
      container listing code into a get_containers function (hence the massive
      diff, sorry), this function is then called recursively.
      
      For running containers, the function is called through attach_wait
      inside the container's namespace, for stopped container, the function is
      simply called recursively with a base path (container's rootfs) in an
      attempt to find containers that way.
      Communication between the parent lxc-ls and the child lxc-ls is done
      through a temporary fd and serialized state using json (similar to what
      was done using stdout in the previous implementation).
      
      As get_global_config_item unfortunately caches the values, there's no
      easy way to figure out what the lxcpath should be for a root container
      when running as non-root, so just use @LXCPATH@ for now and have
      python do the parsing itself.
      
      As a result, the following things now work as expected:
       - listing nested unprivileged containers (root containers inside unpriv)
       - listing nested containers when they're not running
       - filtering containers in nesting mode (only the first level is filtered)
       - copy with invalid config (used to traceback)
      Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
      Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
    • python3: Export get_global_config_item · 891c180a
      Stéphane Graber authored
      get_global_config_item was added in _lxc but not mapped into lxc itself,
      this resolves this oversight.
      Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
      Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
    • chown_mapped_rootid: don't double-map root id · f3d7e4ca
      Serge Hallyn authored
      If the user maps container root to his host uid, chown_mapped_rootid
      tries to make the same mapping twice and gets -EINVAL.
      Reported-by: 's avatarAndy Whitcroft <apw@canonical.com>
      Signed-off-by: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
    • lua: respect configure's --prefix · 94863add
      Natanael Copa authored
      Install lua files under the confiugred --prefix rather than use the
      pkg-config's variables LUA_INSTALL_[CL]MOD.
      
      Users will likely want user --prefix while packagers will use DESTDIR.
      Set the default to $datadir/lua/$LUA_VERSION for arch independent
      lua modules and $libdir/lua/$LUA_VERSION for arch dependant .so module.
      
      This should work for most distros. If it does not, then packagers
      can still do:
      
        make install lualibdir=$(pkg-config lua --variable=INSTALL_CMOD) ...
      
      This fixes #169
      Signed-off-by: 's avatarNatanael Copa <ncopa@alpinelinux.org>
      Acked-by: 's avatarDwight Engen <dwight.engen@oracle.com>
      Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
  9. 03 Mar, 2014 5 commits