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
|
// Copyright 2020-2021 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package efi
import (
"bytes"
"context"
"errors"
"fmt"
"reflect"
"sort"
"github.com/canonical/go-efilib/internal/uefi"
)
type VariableAttributes uint32
const (
AttributeNonVolatile VariableAttributes = uefi.EFI_VARIABLE_NON_VOLATILE
AttributeBootserviceAccess VariableAttributes = uefi.EFI_VARIABLE_BOOTSERVICE_ACCESS
AttributeRuntimeAccess VariableAttributes = uefi.EFI_VARIABLE_RUNTIME_ACCESS
AttributeHardwareErrorRecord VariableAttributes = uefi.EFI_VARIABLE_HARDWARE_ERROR_RECORD
AttributeAuthenticatedWriteAccess VariableAttributes = uefi.EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
AttributeTimeBasedAuthenticatedWriteAccess VariableAttributes = uefi.EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS
AttributeAppendWrite VariableAttributes = uefi.EFI_VARIABLE_APPEND_WRITE
AttributeEnhancedAuthenticatedAccess VariableAttributes = uefi.EFI_VARIABLE_ENHANCED_AUTHENTICATED_ACCESS
)
var (
ErrVarsUnavailable = errors.New("no variable backend is available")
ErrVarNotExist = errors.New("variable does not exist")
ErrVarInvalidParam = errors.New("invalid parameter for variable access")
ErrVarDeviceError = errors.New("variable access failed because of a hardware error")
ErrVarPermission = errors.New("variable access failed because of insufficient permissions or an authentication failure")
ErrVarInsufficientSpace = errors.New("insufficient storage space available for variable")
ErrVarWriteProtected = errors.New("variable is write protected")
)
// VariableDescriptor represents the identity of a variable.
type VariableDescriptor struct {
Name string
GUID GUID
}
// VarsBackendKey is used to key a [VarsBackend] or [VarsBackend2] on a [context.Context].
type VarsBackendKey struct{}
// VarsBackend is used by the [ReadVariable], [WriteVariable] and [ListVariables]
// functions, and indirectly by other functions in this package to abstract access
// to a specific backend. A default backend is initialized at process initialization
// and is available via [DefaultVarContext].
type VarsBackend interface {
Get(name string, guid GUID) (VariableAttributes, []byte, error)
Set(name string, guid GUID, attrs VariableAttributes, data []byte) error
List() ([]VariableDescriptor, error)
}
// VarsBackend2 is like [VarsBackend] only it takes a context that the backend can use
// for deadlines or cancellation - this is particularly applicable on systems where there
// may be multiple writers and writes have to be serialized by the operating system to
// some degree.
type VarsBackend2 interface {
Get(ctx context.Context, name string, guid GUID) (VariableAttributes, []byte, error)
Set(ctx context.Context, name string, guid GUID, attrs VariableAttributes, data []byte) error
List(ctx context.Context) ([]VariableDescriptor, error)
}
type varsBackendWrapper struct {
Backend VarsBackend
}
func (v *varsBackendWrapper) Get(ctx context.Context, name string, guid GUID) (VariableAttributes, []byte, error) {
return v.Backend.Get(name, guid)
}
func (v *varsBackendWrapper) Set(ctx context.Context, name string, guid GUID, attrs VariableAttributes, data []byte) error {
return v.Backend.Set(name, guid, attrs, data)
}
func (v *varsBackendWrapper) List(ctx context.Context) ([]VariableDescriptor, error) {
return v.Backend.List()
}
func getVarsBackend(ctx context.Context) VarsBackend2 {
switch v := ctx.Value(VarsBackendKey{}).(type) {
case VarsBackend2:
return v
case VarsBackend:
return &varsBackendWrapper{Backend: v}
case nil:
return &varsBackendWrapper{Backend: nullVarsBackend{}}
default:
val := ctx.Value(VarsBackendKey{})
panic(fmt.Sprintf("invalid variable backend type %q: %#v", reflect.TypeOf(val), val))
}
}
type nullVarsBackend struct{}
func (v nullVarsBackend) Get(name string, guid GUID) (VariableAttributes, []byte, error) {
return 0, nil, ErrVarsUnavailable
}
func (v nullVarsBackend) Set(name string, guid GUID, attrs VariableAttributes, data []byte) error {
return ErrVarsUnavailable
}
func (v nullVarsBackend) List() ([]VariableDescriptor, error) {
return nil, ErrVarsUnavailable
}
func isContextDone(ctx context.Context) error {
select {
case <-ctx.Done():
return ctx.Err()
default:
return nil
}
}
// ReadVariable returns the value and attributes of the EFI variable with the specified
// name and GUID. In general, [DefaultVarContext] or the result of [WithDefaultVarsBackend]
// should be supplied to this. This will return an error if the context is done.
func ReadVariable(ctx context.Context, name string, guid GUID) ([]byte, VariableAttributes, error) {
backend := getVarsBackend(ctx)
if err := isContextDone(ctx); err != nil {
return nil, 0, err
}
attrs, data, err := backend.Get(ctx, name, guid)
return data, attrs, err
}
// WriteVariable writes the supplied data value with the specified attributes to the
// EFI variable with the specified name and GUID. In general, [DefaultVarContext] or the
// result of [WithDefaultVarsBackend] should be supplied to this. This will return an error
// if the context is done.
//
// If the variable already exists, the specified attributes must match the existing
// attributes with the exception of AttributeAppendWrite.
//
// If the variable does not exist, it will be created.
func WriteVariable(ctx context.Context, name string, guid GUID, attrs VariableAttributes, data []byte) error {
backend := getVarsBackend(ctx)
if err := isContextDone(ctx); err != nil {
return err
}
return backend.Set(ctx, name, guid, attrs, data)
}
// ListVariables returns a sorted list of variables that can be accessed. In
// general, [DefaultVarContext] or the result of [WithDefaultVarsBackend] should
// be supplied to this. This will return an error if the context is done.
func ListVariables(ctx context.Context) ([]VariableDescriptor, error) {
backend := getVarsBackend(ctx)
if err := isContextDone(ctx); err != nil {
return nil, err
}
names, err := backend.List(ctx)
if err != nil {
return nil, err
}
if err := isContextDone(ctx); err != nil {
return nil, err
}
sort.Stable(variableDescriptorSlice(names))
return names, nil
}
// variableDescriptorSlice is a slice of VariableDescriptor instances that implements
// the sort.Interface interface, so that it can be sorted.
type variableDescriptorSlice []VariableDescriptor
func (l variableDescriptorSlice) Len() int {
return len(l)
}
func (l variableDescriptorSlice) Less(i, j int) bool {
entryI := l[i]
entryJ := l[j]
// Sort by GUID first
switch bytes.Compare(entryI.GUID[:], entryJ.GUID[:]) {
case -1:
// i always sorts before j
return true
case 0:
// The GUIDs are identical, so sort based on name
return entryI.Name < entryJ.Name
case 1:
// i always sorts after j
return false
default:
panic("unexpected bytes.Compare return value")
}
}
func (l variableDescriptorSlice) Swap(i, j int) {
l[i], l[j] = l[j], l[i]
}
func withVarsBackend(ctx context.Context, backend VarsBackend) context.Context {
return context.WithValue(ctx, VarsBackendKey{}, backend)
}
func withVarsBackend2(ctx context.Context, backend VarsBackend2) context.Context {
return context.WithValue(ctx, VarsBackendKey{}, backend)
}
func newDefaultVarContext() context.Context {
return addDefaultVarsBackend(context.Background())
}
// DefaultVarContext should generally be passed to functions that interact with
// EFI variables in order to use the default system backend for accessing EFI
// variables. It is based on a new background context.
//
// On Linux, this uses efivarfs. The kernel rate limits unprivileged users' read
// accesses to the EFI variable runtime service to 100 accesses per second, after
// which any thread that attempts to perform a read access will sleep in an
// uninterruptible state. This makes adding a deadline to the context for sections
// of code that perform multiple variable reads worthwhile in some cases.
// Unfortunately, there is no way to determine whether an access will be ratelimited
// before performing it.
var DefaultVarContext = newDefaultVarContext()
// WithDefaultVarsBackend adds the default system backend for accessing EFI
// variables to an existing context. It allows for usage of any context other
// than the internally created background one.
//
// On Linux, this uses efivarfs. The kernel rate limits unprivileged users' read
// accesses to the EFI variable runtime service to 100 accesses per second, after
// which any thread that attempts to perform a read access will sleep in an
// uninterruptible state. This makes adding a deadline to the context for sections
// of code that perform multiple variable reads worthwhile in some cases.
// Unfortunately, there is no way to determine whether an access will be ratelimited
// before performing it.
func WithDefaultVarsBackend(ctx context.Context) context.Context {
return addDefaultVarsBackend(ctx)
}
|