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
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-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 daemon
import (
"fmt"
"net/http"
"strconv"
"strings"
"github.com/gorilla/mux"
"github.com/snapcore/snapd/overlord/assertstate"
"github.com/snapcore/snapd/overlord/auth"
"github.com/snapcore/snapd/overlord/confdbstate"
"github.com/snapcore/snapd/overlord/configstate"
"github.com/snapcore/snapd/overlord/devicestate"
"github.com/snapcore/snapd/overlord/snapstate"
"github.com/snapcore/snapd/overlord/state"
"github.com/snapcore/snapd/strutil"
)
var api = []*Command{
rootCmd,
sysInfoCmd,
loginCmd,
logoutCmd,
snapIconCmd,
findCmd,
snapsCmd,
snapCmd,
snapFileCmd,
snapDownloadCmd,
snapConfCmd,
interfacesCmd,
assertsCmd,
assertsFindManyCmd,
stateChangeCmd,
stateChangesCmd,
createUserCmd,
buyCmd,
readyToBuyCmd,
snapctlCmd,
usersCmd,
sectionsCmd,
categoriesCmd,
aliasesCmd,
appsCmd,
logsCmd,
warningsCmd,
debugPprofCmd,
debugCmd,
snapshotCmd,
snapshotExportCmd,
connectionsCmd,
modelCmd,
cohortsCmd,
serialModelCmd,
systemsCmd,
systemsActionCmd,
themesCmd,
accessoriesChangeCmd,
validationSetsListCmd,
validationSetsCmd,
routineConsoleConfStartCmd,
systemRecoveryKeysCmd,
quotaGroupsCmd,
quotaGroupInfoCmd,
confdbCmd,
confdbControlCmd,
noticesCmd,
noticeCmd,
requestsPromptsCmd,
requestsPromptCmd,
requestsRulesCmd,
requestsRuleCmd,
systemSecurebootCmd,
systemVolumesCmd,
}
type featureEndpoint struct {
Path string `json:"path"`
Method string `json:"method"`
Actions []string `json:"actions,omitempty"`
}
var featureList []featureEndpoint
func init() {
// Create a complete list of all endpoints, which constitute
// the complete set of endpoint feature tags. It is created
// here instead of in api_debug to avoid circular dependencies.
featureList = []featureEndpoint{}
for _, cmd := range api {
var path string
if cmd.Path != "" {
path = cmd.Path
} else {
path = cmd.PathPrefix
}
if cmd.GET != nil {
featureList = append(featureList, featureEndpoint{Path: path, Method: "GET"})
}
if cmd.POST != nil {
featureList = append(featureList, featureEndpoint{Path: path, Actions: cmd.Actions, Method: "POST"})
}
if cmd.PUT != nil {
featureList = append(featureList, featureEndpoint{Path: path, Actions: cmd.Actions, Method: "PUT"})
}
}
}
const (
polkitActionLogin = "io.snapcraft.snapd.login"
polkitActionManage = "io.snapcraft.snapd.manage"
polkitActionManageInterfaces = "io.snapcraft.snapd.manage-interfaces"
polkitActionManageConfiguration = "io.snapcraft.snapd.manage-configuration"
polkitActionManageFDE = "io.snapcraft.snapd.manage-fde"
)
// userFromRequest extracts user information from request and return the
// respective user in state, if valid.
//
// Locks state to check authentication, if headers are valid, so the caller
// must not hold the state lock.
func userFromRequest(st *state.State, req *http.Request) (*auth.UserState, error) {
// extract macaroons data from request
header := req.Header.Get("Authorization")
if header == "" {
return nil, auth.ErrInvalidAuth
}
authorizationData := strings.SplitN(header, " ", 2)
if len(authorizationData) != 2 || authorizationData[0] != "Macaroon" {
return nil, fmt.Errorf("authorization header misses Macaroon prefix")
}
var macaroon string
var discharges []string
for _, field := range strutil.CommaSeparatedList(authorizationData[1]) {
if strings.HasPrefix(field, `root="`) {
macaroon = strings.TrimSuffix(field[6:], `"`)
}
if strings.HasPrefix(field, `discharge="`) {
discharges = append(discharges, strings.TrimSuffix(field[11:], `"`))
}
}
if macaroon == "" {
return nil, fmt.Errorf("invalid authorization header")
}
st.Lock()
defer st.Unlock()
user, err := auth.CheckMacaroon(st, macaroon, discharges)
return user, err
}
var muxVars = mux.Vars
func storeFrom(d *Daemon) snapstate.StoreService {
st := d.overlord.State()
st.Lock()
defer st.Unlock()
return snapstate.Store(st, nil)
}
var (
snapstateStoreInstallGoal = snapstate.StoreInstallGoal
snapstatePathUpdateGoal = snapstate.PathUpdateGoal
snapstateInstallWithGoal = snapstate.InstallWithGoal
snapstateInstallPath = snapstate.InstallPath
snapstateInstallPathMany = snapstate.InstallPathMany
snapstateInstallComponentPath = snapstate.InstallComponentPath
snapstateInstallComponents = snapstate.InstallComponents
snapstateRefreshCandidates = snapstate.RefreshCandidates
snapstateTryPath = snapstate.TryPath
snapstateStoreUpdateGoal = snapstate.StoreUpdateGoal
snapstateUpdateWithGoal = snapstate.UpdateWithGoal
snapstateUpdateOne = snapstate.UpdateOne
snapstateRemove = snapstate.Remove
snapstateRemoveMany = snapstate.RemoveMany
snapstateResolveValSetsEnforcementError = snapstate.ResolveValidationSetsEnforcementError
snapstateRevert = snapstate.Revert
snapstateRevertToRevision = snapstate.RevertToRevision
snapstateSwitch = snapstate.Switch
snapstateProceedWithRefresh = snapstate.ProceedWithRefresh
snapstateHoldRefreshesBySystem = snapstate.HoldRefreshesBySystem
snapstateLongestGatingHold = snapstate.LongestGatingHold
snapstateSystemHold = snapstate.SystemHold
snapstateRemoveComponents = snapstate.RemoveComponents
configstateConfigureInstalled = configstate.ConfigureInstalled
assertstateRefreshSnapAssertions = assertstate.RefreshSnapAssertions
assertstateRestoreValidationSetsTracking = assertstate.RestoreValidationSetsTracking
assertstateFetchAllValidationSets = assertstate.FetchAllValidationSets
confdbstateGetView = confdbstate.GetView
confdbstateGetTransactionToSet = confdbstate.GetTransactionToSet
confdbstateSetViaView = confdbstate.SetViaView
confdbstateLoadConfdbAsync = confdbstate.LoadConfdbAsync
devicestateSignConfdbControl = (*devicestate.DeviceManager).SignConfdbControl
)
func ensureStateSoonImpl(st *state.State) {
st.EnsureBefore(0)
}
var ensureStateSoon = ensureStateSoonImpl
var newChange = newChangeImpl
func newChangeImpl(st *state.State, kind, summary string, tsets []*state.TaskSet, snapNames []string) *state.Change {
chg := st.NewChange(kind, summary)
for _, ts := range tsets {
chg.AddAll(ts)
}
if snapNames != nil {
chg.Set("snap-names", snapNames)
}
return chg
}
func isTrue(form *Form, key string) bool {
values := form.Values[key]
if len(values) == 0 {
return false
}
b, err := strconv.ParseBool(values[0])
if err != nil {
return false
}
return b
}
|