1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
overlay_linux.go 3.31 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-07 16:32 . fix: osutil 4 commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2018 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package osutil
import (
"fmt"
"strings"
)
// IsRootWritableOverlay detects if the current '/' is a writable overlay
// (fstype is 'overlay' and 'upperdir' is specified) and returns upperdir or
// the empty string if not used.
//
// Debian-based LiveCD systems use 'casper' to setup the mounts, and part of
// this setup involves running mount commands to mount / on /cow as overlay and
// results in AppArmor seeing '/upper' as the upperdir rather than '/cow/upper'
// as seen in mountinfo. By the time snapd is run, we don't have enough
// information to discover /cow through mount parent ID or st_dev (maj:min).
// While overlay doesn't use the mount source for anything itself, casper sets
// the mount source ('/cow' with the above) for its own purposes and we can
// leverage this by stripping the mount source from the beginning of upperdir.
//
// https://www.kernel.org/doc/Documentation/filesystems/overlayfs.txt
// man 5 proc
//
// Currently uses variables and Mock functions from nfs.go
func IsRootWritableOverlay() (string, error) {
mountinfo, err := LoadMountInfo()
if err != nil {
return "", fmt.Errorf("cannot parse mountinfo: %s", err)
}
for _, entry := range mountinfo {
if entry.FsType == "overlay" && entry.MountDir == "/" {
if dir, ok := entry.SuperOptions["upperdir"]; ok {
// upperdir must be an absolute path without
// any AppArmor regular expression (AARE)
// characters or double quotes to be considered
if !strings.HasPrefix(dir, "/") || strings.ContainsAny(dir, `?*[]{}^"`) {
continue
}
// if mount source is path, strip it from dir
// (for casper)
if strings.HasPrefix(entry.MountSource, "/") {
dir = strings.TrimPrefix(dir, strings.TrimRight(entry.MountSource, "/"))
}
dir = strings.TrimRight(dir, "/")
// The resulting trimmed dir must be an
// absolute path that is not '/'
if len(dir) < 2 || !strings.HasPrefix(dir, "/") {
continue
}
switch dir {
case "/media/root-rw/overlay":
// On the Ubuntu server ephemeral image, '/' is setup via
// overlayroot (on at least 18.10), which uses a combination
// of overlayfs and chroot. This differs from the livecd setup
// so special case the detection logic to look for the known
// upperdir for this configuration, and return the required
// path. See LP: #1797218 for details.
return "/overlay", nil
case "/run/miso/overlay_root/upper":
// On the Manjaro ephemeral image, '/' is setup via
// overlayroot. This is similar to the workaround above.
return "/upper", nil
}
// Make sure trailing slashes are predictably missing
return dir, nil
}
}
}
return "", nil
}
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.0.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891