 bfc1465a2c
			
		
	
	bfc1465a2c
	
	
	
		
			
			After these changes, in order to add Darwin bind-mount implementation, one only needs: * Adjust HasBindMounts definition in mount.go * Provide implementation in mount_darwin.go There was no consensus on adding dependency on bindfs, that seems to be the only working solution for bind-mounts on Darwin as of today, in https://github.com/containerd/containerd/pull/8789, that's why the actual implementation is not added in current PR. As a bonus, Linux FUSE-related code was moved to a separate file and possibly could be reused on FreeBSD, though this needs testing. Signed-off-by: Marat Radchenko <marat@slonopotamus.org>
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    Copyright The containerd Authors.
 | |
| 
 | |
|    Licensed under the Apache License, Version 2.0 (the "License");
 | |
|    you may not use this file except in compliance with the License.
 | |
|    You may obtain a copy of the License at
 | |
| 
 | |
|        http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|    Unless required by applicable law or agreed to in writing, software
 | |
|    distributed under the License is distributed on an "AS IS" BASIS,
 | |
|    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|    See the License for the specific language governing permissions and
 | |
|    limitations under the License.
 | |
| */
 | |
| 
 | |
| package mount
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"os/exec"
 | |
| 
 | |
| 	"golang.org/x/sys/unix"
 | |
| )
 | |
| 
 | |
| // Mount to the provided target.
 | |
| //
 | |
| // The "syscall" and "golang.org/x/sys/unix" packages do not define a Mount
 | |
| // function for FreeBSD, so instead we execute mount(8) and trust it to do
 | |
| // the right thing
 | |
| func (m *Mount) mount(target string) error {
 | |
| 	// target: "/foo/target"
 | |
| 	// command: "mount -o ro -t nullfs /foo/source /foo/merged"
 | |
| 	// Note: FreeBSD mount(8) is particular about the order of flags and arguments
 | |
| 	var args []string
 | |
| 	for _, o := range m.Options {
 | |
| 		args = append(args, "-o", o)
 | |
| 	}
 | |
| 	args = append(args, "-t", m.Type)
 | |
| 	args = append(args, m.Source, target)
 | |
| 
 | |
| 	infoBeforeMount, err := Lookup(target)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	// cmd.CombinedOutput() may intermittently return ECHILD because of our signal handling in shim.
 | |
| 	// See #4387 and wait(2).
 | |
| 	const retriesOnECHILD = 10
 | |
| 	for i := 0; i < retriesOnECHILD; i++ {
 | |
| 		cmd := exec.Command("mount", args...)
 | |
| 		out, err := cmd.CombinedOutput()
 | |
| 		if err == nil {
 | |
| 			return nil
 | |
| 		}
 | |
| 		if !errors.Is(err, unix.ECHILD) {
 | |
| 			return fmt.Errorf("mount [%v] failed: %q: %w", args, string(out), err)
 | |
| 		}
 | |
| 		// We got ECHILD, we are not sure whether the mount was successful.
 | |
| 		// If the mount ID has changed, we are sure we got some new mount, but still not sure it is fully completed.
 | |
| 		// So we attempt to unmount the new mount before retrying.
 | |
| 		infoAfterMount, err := Lookup(target)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 		if infoAfterMount.ID != infoBeforeMount.ID {
 | |
| 			_ = unmount(target, 0)
 | |
| 		}
 | |
| 	}
 | |
| 	return fmt.Errorf("mount [%v] failed with ECHILD (retried %d times)", args, retriesOnECHILD)
 | |
| }
 |