Skip to main content

Create process in linux namespaces

Project description

Works with Linux namespaces through glibc with pure python

License Latest Version Downloads Docs

discuss: reddit, habrahabr

Goals

There is so many beautiful tools like docker, rocket and vagga written in go and rust, but none in python. I think that is because there is no easy way to work with linux namespaces in python:

  • you can use asylum - a project that looks dead and with a codebase hosted not on mainstream hub like github

  • or you can use the python-libvirt bindings with a big layer of abstraction

  • or just use the native glibc library with ctypes

  • otherwise subprocess.Popen – your choice

I want to change this: I want to create native python bindings to glibc with interface of python multiprocessing.Process.

PS: you can look at python-nsenter too, it’s looks awesome.

PPS: new project from author of asylum - butter

Example

First simple example:

import os
from pyspaces import Container


def execute(argv):
    os.execvp(argv[0], argv)

cmd = "mount -t proc proc /proc; ps ax"
c = Container(target=execute, args=(('bash', '-c', cmd),),
              uid_map='0 1000 1',
              newpid=True, newuser=True, newns=True
              )
c.start()
print("PID of child created by clone() is %ld\n" % c.pid)
c.join()
print("Child returned: pid %s, status %s" % (c.pid, c.exitcode))

output:

PID of child created by clone() is 15978

PID TTY      STAT   TIME COMMAND
1   pts/19   S+     0:00 bash -c mount -t proc proc /proc; ps ax
3   pts/19   R+     0:00 ps ax

Child returned: pid 15978, status 0

CLI

space execute -v --pid --mnt --user --uid 1000 --gid 1000 bash -c 'mount -t proc /proc; ps ax'
space chroot --pid --uid '0 1000 1' ~/.local/share/lxc/ubuntu/rootfs/ /bin/ls /home/
space inject --net --mnt 19840 bash

Note: If the program you’re trying to exec is dynamically linked, and the dynamic linker is not present in /lib in the chroot environment - you will get the following error: “OSError: [Errno 2] No such file or directory”. You need all the other files the dynamic-linked program depends on, including shared libraries and any essential configuration/tables/etc in the new root directories. src

Security

Read this article please

Changelog

TODO

  • [x] namespaces: clone & Container

  • [x] CLI

  • [x] Chroot

  • [x] setns & inject

  • [ ] cgroups

  • [ ] SCM: apparmor & selinux

  • [ ] capabilities

  • [ ] mount

  • [ ] network

  • [ ] move CLI to separate package

  • [ ] addons

  • [ ] container list

  • [ ] support for lxc, vagga, rocket, docker, etc…

  • [ ] …

  • [ ] one tool for rule them all!!1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyspaces-1.4.1.tar.gz (14.8 kB view details)

Uploaded Source

File details

Details for the file pyspaces-1.4.1.tar.gz.

File metadata

  • Download URL: pyspaces-1.4.1.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyspaces-1.4.1.tar.gz
Algorithm Hash digest
SHA256 cf3b224450d655255a36e3db01e85800fc04df2df8e04ae608e9d724c8184af1
MD5 01bb88298bd2f5d53a77da94b0c06145
BLAKE2b-256 69217afe1872acd4f2fe7cd50a8e686683caabf5fe9baf8c98009472ad3f3282

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page