123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- // +build linux
- package btrfs
- /*
- #include <stdlib.h>
- #include <dirent.h>
- #include <btrfs/ioctl.h>
- */
- import "C"
- import (
- "fmt"
- "os"
- "path"
- "syscall"
- "unsafe"
- "github.com/docker/docker/daemon/graphdriver"
- "github.com/docker/docker/pkg/mount"
- )
- func init() {
- graphdriver.Register("btrfs", Init)
- }
- func Init(home string, options []string) (graphdriver.Driver, error) {
- rootdir := path.Dir(home)
- var buf syscall.Statfs_t
- if err := syscall.Statfs(rootdir, &buf); err != nil {
- return nil, err
- }
- if graphdriver.FsMagic(buf.Type) != graphdriver.FsMagicBtrfs {
- return nil, graphdriver.ErrPrerequisites
- }
- if err := os.MkdirAll(home, 0700); err != nil {
- return nil, err
- }
- if err := mount.MakePrivate(home); err != nil {
- return nil, err
- }
- driver := &Driver{
- home: home,
- }
- return graphdriver.NaiveDiffDriver(driver), nil
- }
- type Driver struct {
- home string
- }
- func (d *Driver) String() string {
- return "btrfs"
- }
- func (d *Driver) Status() [][2]string {
- status := [][2]string{}
- if bv := BtrfsBuildVersion(); bv != "-" {
- status = append(status, [2]string{"Build Version", bv})
- }
- if lv := BtrfsLibVersion(); lv != -1 {
- status = append(status, [2]string{"Library Version", fmt.Sprintf("%d", lv)})
- }
- return status
- }
- func (d *Driver) Cleanup() error {
- return mount.Unmount(d.home)
- }
- func free(p *C.char) {
- C.free(unsafe.Pointer(p))
- }
- func openDir(path string) (*C.DIR, error) {
- Cpath := C.CString(path)
- defer free(Cpath)
- dir := C.opendir(Cpath)
- if dir == nil {
- return nil, fmt.Errorf("Can't open dir")
- }
- return dir, nil
- }
- func closeDir(dir *C.DIR) {
- if dir != nil {
- C.closedir(dir)
- }
- }
- func getDirFd(dir *C.DIR) uintptr {
- return uintptr(C.dirfd(dir))
- }
- func subvolCreate(path, name string) error {
- dir, err := openDir(path)
- if err != nil {
- return err
- }
- defer closeDir(dir)
- var args C.struct_btrfs_ioctl_vol_args
- for i, c := range []byte(name) {
- args.name[i] = C.char(c)
- }
- _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, getDirFd(dir), C.BTRFS_IOC_SUBVOL_CREATE,
- uintptr(unsafe.Pointer(&args)))
- if errno != 0 {
- return fmt.Errorf("Failed to create btrfs subvolume: %v", errno.Error())
- }
- return nil
- }
- func subvolSnapshot(src, dest, name string) error {
- srcDir, err := openDir(src)
- if err != nil {
- return err
- }
- defer closeDir(srcDir)
- destDir, err := openDir(dest)
- if err != nil {
- return err
- }
- defer closeDir(destDir)
- var args C.struct_btrfs_ioctl_vol_args_v2
- args.fd = C.__s64(getDirFd(srcDir))
- for i, c := range []byte(name) {
- args.name[i] = C.char(c)
- }
- _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, getDirFd(destDir), C.BTRFS_IOC_SNAP_CREATE_V2,
- uintptr(unsafe.Pointer(&args)))
- if errno != 0 {
- return fmt.Errorf("Failed to create btrfs snapshot: %v", errno.Error())
- }
- return nil
- }
- func subvolDelete(path, name string) error {
- dir, err := openDir(path)
- if err != nil {
- return err
- }
- defer closeDir(dir)
- var args C.struct_btrfs_ioctl_vol_args
- for i, c := range []byte(name) {
- args.name[i] = C.char(c)
- }
- _, _, errno := syscall.Syscall(syscall.SYS_IOCTL, getDirFd(dir), C.BTRFS_IOC_SNAP_DESTROY,
- uintptr(unsafe.Pointer(&args)))
- if errno != 0 {
- return fmt.Errorf("Failed to destroy btrfs snapshot: %v", errno.Error())
- }
- return nil
- }
- func (d *Driver) subvolumesDir() string {
- return path.Join(d.home, "subvolumes")
- }
- func (d *Driver) subvolumesDirId(id string) string {
- return path.Join(d.subvolumesDir(), id)
- }
- func (d *Driver) Create(id string, parent string) error {
- subvolumes := path.Join(d.home, "subvolumes")
- if err := os.MkdirAll(subvolumes, 0700); err != nil {
- return err
- }
- if parent == "" {
- if err := subvolCreate(subvolumes, id); err != nil {
- return err
- }
- } else {
- parentDir, err := d.Get(parent, "")
- if err != nil {
- return err
- }
- if err := subvolSnapshot(parentDir, subvolumes, id); err != nil {
- return err
- }
- }
- return nil
- }
- func (d *Driver) Remove(id string) error {
- dir := d.subvolumesDirId(id)
- if _, err := os.Stat(dir); err != nil {
- return err
- }
- if err := subvolDelete(d.subvolumesDir(), id); err != nil {
- return err
- }
- return os.RemoveAll(dir)
- }
- func (d *Driver) Get(id, mountLabel string) (string, error) {
- dir := d.subvolumesDirId(id)
- st, err := os.Stat(dir)
- if err != nil {
- return "", err
- }
- if !st.IsDir() {
- return "", fmt.Errorf("%s: not a directory", dir)
- }
- return dir, nil
- }
- func (d *Driver) Put(id string) error {
- // Get() creates no runtime resources (like e.g. mounts)
- // so this doesn't need to do anything.
- return nil
- }
- func (d *Driver) Exists(id string) bool {
- dir := d.subvolumesDirId(id)
- _, err := os.Stat(dir)
- return err == nil
- }
|