mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
145 lines
4.0 KiB
Go
145 lines
4.0 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2017 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"
|
|
"strconv"
|
|
"strings"
|
|
"syscall"
|
|
)
|
|
|
|
// ParseMountEntry parses a fstab-like entry.
|
|
func ParseMountEntry(s string) (MountEntry, error) {
|
|
var e MountEntry
|
|
var err error
|
|
var df, cpn int
|
|
fields := strings.FieldsFunc(s, func(r rune) bool { return r == ' ' || r == '\t' })
|
|
// Look for any inline comments. The first field that starts with '#' is a comment.
|
|
for i, field := range fields {
|
|
if strings.HasPrefix(field, "#") {
|
|
fields = fields[:i]
|
|
break
|
|
}
|
|
}
|
|
// Do all error checks before any assignments to `e'
|
|
if len(fields) < 3 || len(fields) > 6 {
|
|
return e, fmt.Errorf("expected between 3 and 6 fields, found %d", len(fields))
|
|
}
|
|
e.Name = unescape(fields[0])
|
|
e.Dir = unescape(fields[1])
|
|
e.Type = unescape(fields[2])
|
|
// Parse Options if we have at least 4 fields
|
|
if len(fields) > 3 {
|
|
e.Options = strings.Split(unescape(fields[3]), ",")
|
|
}
|
|
// Parse DumpFrequency if we have at least 5 fields
|
|
if len(fields) > 4 {
|
|
df, err = strconv.Atoi(fields[4])
|
|
if err != nil {
|
|
return e, fmt.Errorf("cannot parse dump frequency: %q", fields[4])
|
|
}
|
|
}
|
|
e.DumpFrequency = df
|
|
// Parse CheckPassNumber if we have at least 6 fields
|
|
if len(fields) > 5 {
|
|
cpn, err = strconv.Atoi(fields[5])
|
|
if err != nil {
|
|
return e, fmt.Errorf("cannot parse check pass number: %q", fields[5])
|
|
}
|
|
}
|
|
e.CheckPassNumber = cpn
|
|
return e, nil
|
|
}
|
|
|
|
// MountOptsToCommonFlags converts mount options strings to a mount flag,
|
|
// returning unparsed flags. The unparsed flags will not contain any snapd-
|
|
// specific mount option, those starting with the string "x-snapd."
|
|
func MountOptsToCommonFlags(opts []string) (flags int, unparsed []string) {
|
|
for _, opt := range opts {
|
|
switch opt {
|
|
case "rw":
|
|
// There's no flag for rw
|
|
case "ro":
|
|
flags |= syscall.MS_RDONLY
|
|
case "nosuid":
|
|
flags |= syscall.MS_NOSUID
|
|
case "nodev":
|
|
flags |= syscall.MS_NODEV
|
|
case "noexec":
|
|
flags |= syscall.MS_NOEXEC
|
|
case "sync":
|
|
flags |= syscall.MS_SYNCHRONOUS
|
|
case "remount":
|
|
flags |= syscall.MS_REMOUNT
|
|
case "mand":
|
|
flags |= syscall.MS_MANDLOCK
|
|
case "dirsync":
|
|
flags |= syscall.MS_DIRSYNC
|
|
case "noatime":
|
|
flags |= syscall.MS_NOATIME
|
|
case "nodiratime":
|
|
flags |= syscall.MS_NODIRATIME
|
|
case "bind":
|
|
flags |= syscall.MS_BIND
|
|
case "rbind":
|
|
flags |= syscall.MS_BIND | syscall.MS_REC
|
|
case "move":
|
|
flags |= syscall.MS_MOVE
|
|
case "silent":
|
|
flags |= syscall.MS_SILENT
|
|
case "acl":
|
|
flags |= syscall.MS_POSIXACL
|
|
case "private":
|
|
flags |= syscall.MS_PRIVATE
|
|
case "rprivate":
|
|
flags |= syscall.MS_PRIVATE | syscall.MS_REC
|
|
case "slave":
|
|
flags |= syscall.MS_SLAVE
|
|
case "rslave":
|
|
flags |= syscall.MS_SLAVE | syscall.MS_REC
|
|
case "shared":
|
|
flags |= syscall.MS_SHARED
|
|
case "rshared":
|
|
flags |= syscall.MS_SHARED | syscall.MS_REC
|
|
case "relatime":
|
|
flags |= syscall.MS_RELATIME
|
|
case "strictatime":
|
|
flags |= syscall.MS_STRICTATIME
|
|
default:
|
|
if !strings.HasPrefix(opt, "x-snapd.") {
|
|
unparsed = append(unparsed, opt)
|
|
}
|
|
}
|
|
}
|
|
return flags, unparsed
|
|
}
|
|
|
|
// MountOptsToFlags converts mount options strings to a mount flag.
|
|
func MountOptsToFlags(opts []string) (flags int, err error) {
|
|
flags, unparsed := MountOptsToCommonFlags(opts)
|
|
for _, opt := range unparsed {
|
|
if !strings.HasPrefix(opt, "x-snapd.") {
|
|
return 0, fmt.Errorf("unsupported mount option: %q", opt)
|
|
}
|
|
}
|
|
return flags, nil
|
|
}
|