1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2018-2024 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 features
import (
"fmt"
"path/filepath"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/release"
"github.com/snapcore/snapd/sandbox/apparmor"
"github.com/snapcore/snapd/systemd"
)
// SnapdFeature is a named feature that may be on or off.
type SnapdFeature int
const (
// Layouts controls availability of snap layouts.
Layouts SnapdFeature = iota
// ParallelInstances controls availability installing a snap multiple times.
ParallelInstances
// Hotplug controls availability of dynamically creating slots based on system hardware.
Hotplug
// PerUserMountNamespace controls the persistence of per-user mount namespaces.
PerUserMountNamespace
// RefreshAppAwareness controls refresh being aware of running applications.
RefreshAppAwareness
// ClassicPreservesXdgRuntimeDir controls $XDG_RUNTIME_DIR in snaps with classic confinement.
ClassicPreservesXdgRuntimeDir
// UserDaemons controls availability of user mode service support.
UserDaemons
// DbusActivation controls whether snaps daemons can be activated via D-Bus
DbusActivation
// HiddenSnapDataHomeDir controls if the snaps' data dir is ~/.snap/data instead of ~/snap
HiddenSnapDataHomeDir
// MoveSnapHomeDir controls whether snap user data under ~/snap (or ~/.snap/data) can be moved to ~/Snap.
MoveSnapHomeDir
// CheckDiskSpaceRemove controls free disk space check on remove whenever automatic snapshot needs to be created.
CheckDiskSpaceRemove
// CheckDiskSpaceInstall controls free disk space check on snap install.
CheckDiskSpaceInstall
// CheckDiskSpaceRefresh controls free disk space check on snap refresh.
CheckDiskSpaceRefresh
// GateAutoRefreshHook enables refresh control from snaps via gate-auto-refresh hook.
GateAutoRefreshHook
// QuotaGroups enables any current experimental features related to the Quota Groups API, on top of the features
// already graduated past experimental:
// * journal quotas are still experimental
// while guota groups creation and management and memory, cpu, quotas are no longer experimental.
QuotaGroups
// RefreshAppAwarenessUX enables experimental UX improvements for refresh-app-awareness.
RefreshAppAwarenessUX
// Confdb enables experimental configuration based on confdb and views.
Confdb
// ConfdbControl enables experimental remote management of confdb.
ConfdbControl
// AppArmorPrompting enables AppArmor to prompt the user for permission when apps perform certain operations.
AppArmorPrompting
// lastFeature is the final known feature, it is only used for testing.
lastFeature
)
var knownFeaturesImpl = func() []SnapdFeature {
features := make([]SnapdFeature, int(lastFeature))
for i := range features {
features[i] = SnapdFeature(i)
}
return features
}
// KnownFeatures returns the list of all known features.
func KnownFeatures() []SnapdFeature {
return knownFeaturesImpl()
}
// featureNames maps feature constant to stable string representation.
// The constants here must be synchronized with cmd/libsnap-confine-private/feature.c
var featureNames = map[SnapdFeature]string{
Layouts: "layouts",
ParallelInstances: "parallel-instances",
Hotplug: "hotplug",
PerUserMountNamespace: "per-user-mount-namespace",
RefreshAppAwareness: "refresh-app-awareness",
ClassicPreservesXdgRuntimeDir: "classic-preserves-xdg-runtime-dir",
UserDaemons: "user-daemons",
DbusActivation: "dbus-activation",
HiddenSnapDataHomeDir: "hidden-snap-folder",
MoveSnapHomeDir: "move-snap-home-dir",
CheckDiskSpaceInstall: "check-disk-space-install",
CheckDiskSpaceRefresh: "check-disk-space-refresh",
CheckDiskSpaceRemove: "check-disk-space-remove",
GateAutoRefreshHook: "gate-auto-refresh-hook",
QuotaGroups: "quota-groups",
RefreshAppAwarenessUX: "refresh-app-awareness-ux",
Confdb: "confdb",
ConfdbControl: "confdb-control",
AppArmorPrompting: "apparmor-prompting",
}
// featuresEnabledWhenUnset contains a set of features that are enabled when not explicitly configured.
var featuresEnabledWhenUnset = map[SnapdFeature]bool{
Layouts: true,
RefreshAppAwareness: true,
ClassicPreservesXdgRuntimeDir: true,
DbusActivation: true,
}
// featuresExported contains a set of features that are exported outside of snapd.
var featuresExported = map[SnapdFeature]bool{
PerUserMountNamespace: true,
RefreshAppAwareness: true,
ParallelInstances: true,
ClassicPreservesXdgRuntimeDir: true,
HiddenSnapDataHomeDir: true,
MoveSnapHomeDir: true,
RefreshAppAwarenessUX: true,
Confdb: true,
AppArmorPrompting: true,
}
var (
releaseSystemctlSupportsUserUnits = release.SystemctlSupportsUserUnits
)
// featuresSupportedCallbacks maps features to a callback function which may be
// run to determine if the feature is supported and, if not, return false along
// with a reason why the feature is unsupported. If a function has no callback
// defined, it should be assumed to be supported.
var featuresSupportedCallbacks = map[SnapdFeature]func() (bool, string){
// QuotaGroups requires systemd version 230 or higher
QuotaGroups: func() (bool, string) {
if err := systemd.EnsureAtLeast(230); err != nil {
return false, err.Error()
}
return true, ""
},
// UserDaemons requires user units
UserDaemons: func() (bool, string) {
if !releaseSystemctlSupportsUserUnits() {
return false, "user session daemons are not supported on this system's distribution version"
}
return true, ""
},
// AppArmorPrompting requires that AppArmor supports prompting.
AppArmorPrompting: apparmor.PromptingSupported,
}
// String returns the name of a snapd feature.
// The function panics for bogus feature values.
func (f SnapdFeature) String() string {
if name, ok := featureNames[f]; ok {
return name
}
panic(fmt.Sprintf("unknown feature flag code %d", f))
}
// IsEnabledWhenUnset returns true if a feature is enabled when not set.
//
// A feature may be enabled or disabled with explicit state in snapd. If
// explicit state is absent the effective value is the implicit default
// computed by this function.
func (f SnapdFeature) IsEnabledWhenUnset() bool {
return featuresEnabledWhenUnset[f]
}
// IsExported returns true if a feature is copied from snapd state to a feature file.
//
// Certain features are available outside of snapd internal state and visible as control
// files in a dedicated directory. Such features can be queried for, via IsEnabled, outside
// of snapd.
func (f SnapdFeature) IsExported() bool {
return featuresExported[f]
}
// ControlFile returns the path of the file controlling the exported feature.
//
// Snapd considers the feature enabled if the file is present.
// The contents of the file are not important.
//
// The function panics for features that are not exported.
func (f SnapdFeature) ControlFile() string {
if !f.IsExported() {
panic(fmt.Sprintf("cannot compute the control file of feature %q because that feature is not exported", f))
}
return filepath.Join(dirs.FeaturesDir, f.String())
}
// ConfigOption returns the snap name and configuration option associated with this feature.
func (f SnapdFeature) ConfigOption() (snapName, confName string) {
return "core", "experimental." + f.String()
}
// IsSupported returns true if the feature's supported callback returns true, or
// if it has no supportedCallback. If the feature is unsupported, the returned
// string details as to why.
func (f SnapdFeature) IsSupported() (supported bool, whyNot string) {
if callback, exists := featuresSupportedCallbacks[f]; exists {
supported, whyNot = callback()
if !supported {
return false, whyNot
}
}
return true, ""
}
// IsEnabled checks if a given exported snapd feature is enabled.
//
// The function panics for features that are not exported.
func (f SnapdFeature) IsEnabled() bool {
if !f.IsExported() {
panic(fmt.Sprintf("cannot check if feature %q is enabled because that feature is not exported", f))
}
// TODO: this returns false on errors != ErrNotExist.
// Consider using os.Stat and handling other errors
return osutil.FileExists(f.ControlFile())
}
type confGetter interface {
GetMaybe(snapName, key string, result any) error
}
// Flag returns whether the given feature flag is enabled.
func Flag(tr confGetter, feature SnapdFeature) (bool, error) {
var isEnabled any
snapName, confName := feature.ConfigOption()
if err := tr.GetMaybe(snapName, confName, &isEnabled); err != nil {
return false, err
}
switch isEnabled {
case true, "true":
return true, nil
case false, "false":
return false, nil
case nil, "":
return feature.IsEnabledWhenUnset(), nil
}
return false, fmt.Errorf("%s can only be set to 'true' or 'false', got %q", feature, isEnabled)
}
// FeatureInfo records whether a particular feature is supported and/or enabled.
//
// If the feature is not supported, it should also contain a reason describing
// why the feature is not supported. A feature is enabled if its feature flag is
// set to true, regardless of whether or not it is supported.
type FeatureInfo struct {
Supported bool `json:"supported"`
UnsupportedReason string `json:"unsupported-reason,omitempty"`
Enabled bool `json:"enabled"`
}
// All returns a map from feature flags to information about that feature.
//
// In particular, the information contains whether the feature is supported
// and/or enabled. If the feature is not supported, it should also contain a
// reason describing why the feature is not supported. If a feature's value is
// not set to true or false, it is excluded from the list, since it is not in
// this case considered to be a feature flag.
func All(tr confGetter) map[string]FeatureInfo {
knownFeatures := KnownFeatures()
allFeaturesInfo := make(map[string]FeatureInfo, len(knownFeatures))
for _, feature := range knownFeatures {
enabled, err := Flag(tr, feature)
if err != nil {
// Skip features with values other than true or false
continue
}
// Features implicitly supported if no callback exists
supported := true
var unsupportedReason string
if callback, exists := featuresSupportedCallbacks[feature]; exists {
supported, unsupportedReason = callback()
}
name := feature.String()
info := FeatureInfo{
Supported: supported,
Enabled: enabled,
}
if !supported {
info.UnsupportedReason = unsupportedReason
}
allFeaturesInfo[name] = info
}
return allFeaturesInfo
}
|