Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Nov 2008 14:32:14 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/lib/libc/sys cpuset_getaffinity.2 jail.2 src/lib/libkvm kvm_proc.c src/share/man/man4 ddb.4 src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master src/sys/kern kern_cpuset.c kern_exit.c kern_fork.c ...
Message-ID:  <200811291437.mATEbYpe046958@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
bz          2008-11-29 14:32:14 UTC

  FreeBSD src repository

  Modified files:
    lib/libc/sys         cpuset_getaffinity.2 jail.2 
    lib/libkvm           kvm_proc.c 
    share/man/man4       ddb.4 
    sys/compat/freebsd32 freebsd32.h freebsd32_misc.c 
                         syscalls.master 
    sys/kern             kern_cpuset.c kern_exit.c kern_fork.c 
                         kern_jail.c uipc_socket.c 
    sys/net              if.c rtsock.c 
    sys/netinet          in_pcb.c raw_ip.c sctp_pcb.c 
                         sctp_usrreq.c tcp_usrreq.c udp_usrreq.c 
    sys/netinet6         in6_pcb.c in6_src.c raw_ip6.c 
                         udp6_usrreq.c 
    sys/security/mac_bsdextended mac_bsdextended.c 
    sys/sys              cpuset.h jail.h param.h 
    usr.bin/cpuset       cpuset.1 cpuset.c 
    usr.sbin/jail        Makefile jail.8 jail.c 
    usr.sbin/jexec       Makefile jexec.8 jexec.c 
    usr.sbin/jls         Makefile jls.8 jls.c 
  Log:
  SVN rev 185435 on 2008-11-29 14:32:14Z by bz
  
  MFp4:
    Bring in updated jail support from bz_jail branch.
  
  This enhances the current jail implementation to permit multiple
  addresses per jail. In addtion to IPv4, IPv6 is supported as well.
  Due to updated checks it is even possible to have jails without
  an IP address at all, which basically gives one a chroot with
  restricted process view, no networking,..
  
  SCTP support was updated and supports IPv6 in jails as well.
  
  Cpuset support permits jails to be bound to specific processor
  sets after creation.
  
  Jails can have an unrestricted (no duplicate protection, etc.) name
  in addition to the hostname. The jail name cannot be changed from
  within a jail and is considered to be used for management purposes
  or as audit-token in the future.
  
  DDB 'show jails' command was added to aid debugging.
  
  Proper compat support permits 32bit jail binaries to be used on 64bit
  systems to manage jails. Also backward compatibility was preserved where
  possible: for jail v1 syscalls, as well as with user space management
  utilities.
  
  Both jail as well as prison version were updated for the new features.
  A gap was intentionally left as the intermediate versions had been
  used by various patches floating around the last years.
  
  Bump __FreeBSD_version for the afore mentioned and in kernel changes.
  
  Special thanks to:
  - Pawel Jakub Dawidek (pjd) for his multi-IPv4 patches
    and Olivier Houchard (cognet) for initial single-IPv6 patches.
  - Jeff Roberson (jeff) and Randall Stewart (rrs) for their
    help, ideas and review on cpuset and SCTP support.
  - Robert Watson (rwatson) for lots and lots of help, discussions,
    suggestions and review of most of the patch at various stages.
  - John Baldwin (jhb) for his help.
  - Simon L. Nielsen (simon) as early adopter testing changes
    on cluster machines as well as all the testers and people
    who provided feedback the last months on freebsd-jail and
    other channels.
  - My employer, CK Software GmbH, for the support so I could work on this.
  
  Reviewed by:    (see above)
  MFC after:      3 months (this is just so that I get the mail)
  X-MFC Before:   7.2-RELEASE if possible
  
  Revision  Changes    Path
  1.4       +2 -2      src/lib/libc/sys/cpuset_getaffinity.2
  1.30      +28 -7     src/lib/libc/sys/jail.2
  1.98      +3 -2      src/lib/libkvm/kvm_proc.c
  1.62      +10 -1     src/share/man/man4/ddb.4
  1.8       +18 -0     src/sys/compat/freebsd32/freebsd32.h
  1.84      +61 -0     src/sys/compat/freebsd32/freebsd32_misc.c
  1.112     +1 -1      src/sys/compat/freebsd32/syscalls.master
  1.14      +111 -4    src/sys/kern/kern_cpuset.c
  1.316     +5 -0      src/sys/kern/kern_exit.c
  1.297     +6 -0      src/sys/kern/kern_fork.c
  1.86      +848 -60   src/sys/kern/kern_jail.c
  1.323     +4 -0      src/sys/kern/uipc_socket.c
  1.295     +1 -1      src/sys/net/if.c
  1.152     +148 -12   src/sys/net/rtsock.c
  1.230     +111 -51   src/sys/netinet/in_pcb.c
  1.200     +20 -26    src/sys/netinet/raw_ip.c
  1.77      +15 -20    src/sys/netinet/sctp_pcb.c
  1.61      +56 -21    src/sys/netinet/sctp_usrreq.c
  1.177     +10 -2     src/sys/netinet/tcp_usrreq.c
  1.243     +9 -5      src/sys/netinet/udp_usrreq.c
  1.105     +88 -23    src/sys/netinet6/in6_pcb.c
  1.61      +21 -0     src/sys/netinet6/in6_src.c
  1.93      +13 -0     src/sys/netinet6/raw_ip6.c
  1.100     +14 -0     src/sys/netinet6/udp6_usrreq.c
  1.53      +1 -0      src/sys/security/mac_bsdextended/mac_bsdextended.c
  1.8       +5 -0      src/sys/sys/cpuset.h
  1.33      +80 -7     src/sys/sys/jail.h
  1.376     +1 -1      src/sys/sys/param.h
  1.5       +9 -5      src/usr.bin/cpuset/cpuset.1
  1.6       +14 -8     src/usr.bin/cpuset/cpuset.c
  1.11      +6 -0      src/usr.sbin/jail/Makefile
  1.85      +40 -6     src/usr.sbin/jail/jail.8
  1.26      +237 -15   src/usr.sbin/jail/jail.c
  1.3       +2 -0      src/usr.sbin/jexec/Makefile
  1.8       +32 -11    src/usr.sbin/jexec/jexec.8
  1.8       +179 -66   src/usr.sbin/jexec/jexec.c
  1.2       +2 -0      src/usr.sbin/jls/Makefile
  1.2       +29 -5     src/usr.sbin/jls/jls.8
  1.6       +181 -21   src/usr.sbin/jls/jls.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811291437.mATEbYpe046958>