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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2019 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 auth
import (
"context"
"crypto/rand"
"encoding/base64"
"errors"
"fmt"
"sort"
"strconv"
"time"
"gopkg.in/macaroon.v1"
"github.com/snapcore/snapd/overlord/state"
)
// AuthState represents current authenticated users as tracked in state
type AuthState struct {
LastID int `json:"last-id"`
Users []UserState `json:"users"`
Device *DeviceState `json:"device,omitempty"`
MacaroonKey []byte `json:"macaroon-key,omitempty"`
}
// DeviceState represents the device's identity and store credentials
type DeviceState struct {
// Brand refers to the brand-id
Brand string `json:"brand,omitempty"`
Model string `json:"model,omitempty"`
Serial string `json:"serial,omitempty"`
KeyID string `json:"key-id,omitempty"`
SessionMacaroon string `json:"session-macaroon,omitempty"`
}
// UserState represents an authenticated user
type UserState struct {
ID int `json:"id"`
Username string `json:"username,omitempty"`
Email string `json:"email,omitempty"`
Macaroon string `json:"macaroon,omitempty"`
Discharges []string `json:"discharges,omitempty"`
StoreMacaroon string `json:"store-macaroon,omitempty"`
StoreDischarges []string `json:"store-discharges,omitempty"`
Expiration time.Time `json:"expiration,omitzero"`
}
// identificationOnly returns a *UserState with only the
// identification information from u.
func (u *UserState) identificationOnly() *UserState {
return &UserState{
ID: u.ID,
Username: u.Username,
Email: u.Email,
}
}
// HasStoreAuth returns true if the user has store authorization.
func (u *UserState) HasStoreAuth() bool {
if u == nil {
return false
}
return u.StoreMacaroon != ""
}
// HasExpired returns true if the user has an expiration set and
// current time is past the expiration date.
func (u *UserState) HasExpired() bool {
// If the user has no expiration date, then Expiration should not
// be set, and contain the default value.
if u.Expiration.IsZero() {
return false
}
return u.Expiration.Before(time.Now())
}
// MacaroonSerialize returns a store-compatible serialized representation of the given macaroon
func MacaroonSerialize(m *macaroon.Macaroon) (string, error) {
marshalled, err := m.MarshalBinary()
if err != nil {
return "", err
}
encoded := base64.RawURLEncoding.EncodeToString(marshalled)
return encoded, nil
}
// MacaroonDeserialize returns a deserialized macaroon from a given store-compatible serialization
func MacaroonDeserialize(serializedMacaroon string) (*macaroon.Macaroon, error) {
var m macaroon.Macaroon
decoded, err := base64.RawURLEncoding.DecodeString(serializedMacaroon)
if err != nil {
return nil, err
}
err = m.UnmarshalBinary(decoded)
if err != nil {
return nil, err
}
return &m, nil
}
// generateMacaroonKey generates a random key to sign snapd macaroons
func generateMacaroonKey() ([]byte, error) {
key := make([]byte, 32)
if _, err := rand.Read(key); err != nil {
return nil, err
}
return key, nil
}
const snapdMacaroonLocation = "snapd"
// newUserMacaroon returns a snapd macaroon for the given username
func newUserMacaroon(macaroonKey []byte, userID int) (string, error) {
userMacaroon, err := macaroon.New(macaroonKey, strconv.Itoa(userID), snapdMacaroonLocation)
if err != nil {
return "", fmt.Errorf("cannot create macaroon for snapd user: %s", err)
}
serializedMacaroon, err := MacaroonSerialize(userMacaroon)
if err != nil {
return "", fmt.Errorf("cannot serialize macaroon for snapd user: %s", err)
}
return serializedMacaroon, nil
}
// TODO: possibly move users' related functions to a userstate package
type NewUserParams struct {
// Username is the name of the user on the system
Username string
// Email is the email associated with the user
Email string
// Macaroon is the store-associated authentication macaroon
Macaroon string
// Discharges contains discharged store auth caveats.
Discharges []string
// Expiration informs the devicestate that the user should be removed
// when passing the expiration time. This is an optional setting.
Expiration time.Time
}
// NewUser tracks a new authenticated user and saves its details in the state
func NewUser(st *state.State, userParams NewUserParams) (*UserState, error) {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if errors.Is(err, state.ErrNoState) {
authStateData = AuthState{}
} else if err != nil {
return nil, err
}
if authStateData.MacaroonKey == nil {
authStateData.MacaroonKey, err = generateMacaroonKey()
if err != nil {
return nil, err
}
}
authStateData.LastID++
localMacaroon, err := newUserMacaroon(authStateData.MacaroonKey, authStateData.LastID)
if err != nil {
return nil, err
}
sort.Strings(userParams.Discharges)
authenticatedUser := UserState{
ID: authStateData.LastID,
Username: userParams.Username,
Email: userParams.Email,
Macaroon: localMacaroon,
Discharges: nil,
StoreMacaroon: userParams.Macaroon,
StoreDischarges: userParams.Discharges,
Expiration: userParams.Expiration,
}
authStateData.Users = append(authStateData.Users, authenticatedUser)
st.Set("auth", authStateData)
return &authenticatedUser, nil
}
var ErrInvalidUser = errors.New("invalid user")
// RemoveUser removes a user from the state given its ID.
func RemoveUser(st *state.State, userID int) (removed *UserState, err error) {
return removeUser(st, func(u *UserState) bool { return u.ID == userID })
}
// RemoveUserByUsername removes a user from the state given its username. Returns a *UserState with the identification information for them.
func RemoveUserByUsername(st *state.State, username string) (removed *UserState, err error) {
return removeUser(st, func(u *UserState) bool { return u.Username == username })
}
// removeUser removes the first user matching given predicate.
func removeUser(st *state.State, p func(*UserState) bool) (*UserState, error) {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if errors.Is(err, state.ErrNoState) {
return nil, ErrInvalidUser
}
if err != nil {
return nil, err
}
for i := range authStateData.Users {
u := &authStateData.Users[i]
if p(u) {
removed := u.identificationOnly()
// delete without preserving order
n := len(authStateData.Users) - 1
authStateData.Users[i] = authStateData.Users[n]
authStateData.Users[n] = UserState{}
authStateData.Users = authStateData.Users[:n]
st.Set("auth", authStateData)
return removed, nil
}
}
return nil, ErrInvalidUser
}
func Users(st *state.State) ([]*UserState, error) {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if errors.Is(err, state.ErrNoState) {
return nil, nil
}
if err != nil {
return nil, err
}
users := make([]*UserState, len(authStateData.Users))
for i := range authStateData.Users {
users[i] = &authStateData.Users[i]
}
return users, nil
}
// User returns a user from the state given its ID.
func User(st *state.State, id int) (*UserState, error) {
return findUser(st, func(u *UserState) bool { return u.ID == id })
}
// UserByUsername returns a user from the state given its username.
func UserByUsername(st *state.State, username string) (*UserState, error) {
return findUser(st, func(u *UserState) bool { return u.Username == username })
}
// findUser finds the first user matching given predicate.
func findUser(st *state.State, p func(*UserState) bool) (*UserState, error) {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if errors.Is(err, state.ErrNoState) {
return nil, ErrInvalidUser
}
if err != nil {
return nil, err
}
for i := range authStateData.Users {
u := &authStateData.Users[i]
if p(u) {
return u, nil
}
}
return nil, ErrInvalidUser
}
// UpdateUser updates user in state
func UpdateUser(st *state.State, user *UserState) error {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if errors.Is(err, state.ErrNoState) {
return ErrInvalidUser
}
if err != nil {
return err
}
for i := range authStateData.Users {
if authStateData.Users[i].ID == user.ID {
authStateData.Users[i] = *user
st.Set("auth", authStateData)
return nil
}
}
return ErrInvalidUser
}
var ErrInvalidAuth = fmt.Errorf("invalid authentication")
// CheckMacaroon returns the UserState for the given macaroon/discharges credentials
func CheckMacaroon(st *state.State, macaroon string, discharges []string) (*UserState, error) {
var authStateData AuthState
err := st.Get("auth", &authStateData)
if err != nil {
return nil, ErrInvalidAuth
}
snapdMacaroon, err := MacaroonDeserialize(macaroon)
if err != nil {
return nil, ErrInvalidAuth
}
// attempt snapd macaroon verification
if snapdMacaroon.Location() == snapdMacaroonLocation {
// no caveats to check so far
check := func(caveat string) error { return nil }
// ignoring discharges, unused for snapd macaroons atm
err = snapdMacaroon.Verify(authStateData.MacaroonKey, check, nil)
if err != nil {
return nil, ErrInvalidAuth
}
macaroonID := snapdMacaroon.Id()
userID, err := strconv.Atoi(macaroonID)
if err != nil {
return nil, ErrInvalidAuth
}
user, err := User(st, userID)
if err != nil {
return nil, ErrInvalidAuth
}
if macaroon != user.Macaroon {
return nil, ErrInvalidAuth
}
return user, nil
}
// if macaroon is not a snapd macaroon, fallback to previous token-style check
NextUser:
for _, user := range authStateData.Users {
if user.Macaroon != macaroon {
continue
}
if len(user.Discharges) != len(discharges) {
continue
}
// sort discharges (stored users' discharges are already sorted)
sort.Strings(discharges)
for i, d := range user.Discharges {
if d != discharges[i] {
continue NextUser
}
}
return &user, nil
}
return nil, ErrInvalidAuth
}
// CloudInfo reflects cloud information for the system (as captured in the core configuration).
type CloudInfo struct {
Name string `json:"name"`
Region string `json:"region,omitempty"`
AvailabilityZone string `json:"availability-zone,omitempty"`
}
type ensureContextKey struct{}
// EnsureContextTODO returns a provisional context marked as
// pertaining to an Ensure loop.
// TODO: see Overlord.Loop to replace it with a proper context passed to all Ensures.
func EnsureContextTODO() context.Context {
ctx := context.TODO()
return context.WithValue(ctx, ensureContextKey{}, struct{}{})
}
// IsEnsureContext returns whether context was marked as pertaining to an Ensure loop.
func IsEnsureContext(ctx context.Context) bool {
return ctx.Value(ensureContextKey{}) != nil
}
|