• D
    Ensure root filesystem is recursively mounted readonly · 75235a52
    Daniel P. Berrange 提交于
    If the guest is configured with
    
        <filesystem type='mount'>
          <source dir='/'/>
          <target dir='/'/>
          <readonly/>
        </filesystem>
    
    Then any submounts under / should also end up readonly, except
    for those setup as basic mounts. eg if the user has /home on a
    separate volume, they'd expect /home to be readonly, but we
    should not touch the /sys, /proc, etc dirs we setup ourselves.
    
    Users can selectively make sub-mounts read-write again by
    simply listing them as new mounts without the <readonly>
    flag set
    
        <filesystem type='mount'>
          <source dir='/home'/>
          <target dir='/home'/>
        </filesystem>
    Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
    75235a52
lxc_container.c 57.9 KB