2017-08-18 04:50:15 +03:00
|
|
|
package macaroons
|
|
|
|
|
|
|
|
import (
|
2019-09-29 02:10:57 +03:00
|
|
|
"context"
|
2018-02-01 03:04:56 +03:00
|
|
|
"encoding/hex"
|
2018-01-16 19:18:41 +03:00
|
|
|
"fmt"
|
2018-08-22 22:25:03 +03:00
|
|
|
"os"
|
2017-08-18 04:50:15 +03:00
|
|
|
"path"
|
|
|
|
|
2020-01-10 05:45:26 +03:00
|
|
|
"github.com/lightningnetwork/lnd/channeldb/kvdb"
|
2018-01-16 19:18:41 +03:00
|
|
|
"google.golang.org/grpc"
|
2018-02-01 03:04:56 +03:00
|
|
|
"google.golang.org/grpc/metadata"
|
2018-01-16 19:18:41 +03:00
|
|
|
|
|
|
|
"gopkg.in/macaroon-bakery.v2/bakery"
|
|
|
|
"gopkg.in/macaroon-bakery.v2/bakery/checkers"
|
2018-02-01 03:04:56 +03:00
|
|
|
macaroon "gopkg.in/macaroon.v2"
|
2017-08-18 04:50:15 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-04-20 10:02:49 +03:00
|
|
|
// DBFilename is the filename within the data directory which contains
|
2017-08-18 04:50:15 +03:00
|
|
|
// the macaroon stores.
|
2018-04-20 10:02:49 +03:00
|
|
|
DBFilename = "macaroons.db"
|
2017-08-18 04:50:15 +03:00
|
|
|
)
|
|
|
|
|
2018-02-01 03:04:56 +03:00
|
|
|
// Service encapsulates bakery.Bakery and adds a Close() method that zeroes the
|
|
|
|
// root key service encryption keys, as well as utility methods to validate a
|
|
|
|
// macaroon against the bakery and gRPC middleware for macaroon-based auth.
|
|
|
|
type Service struct {
|
|
|
|
bakery.Bakery
|
|
|
|
|
|
|
|
rks *RootKeyStorage
|
|
|
|
}
|
|
|
|
|
2017-08-18 04:50:15 +03:00
|
|
|
// NewService returns a service backed by the macaroon Bolt DB stored in the
|
2018-01-16 19:18:41 +03:00
|
|
|
// passed directory. The `checks` argument can be any of the `Checker` type
|
|
|
|
// functions defined in this package, or a custom checker if desired. This
|
|
|
|
// constructor prevents double-registration of checkers to prevent panics, so
|
|
|
|
// listing the same checker more than once is not harmful. Default checkers,
|
|
|
|
// such as those for `allow`, `time-before`, `declared`, and `error` caveats
|
|
|
|
// are registered automatically and don't need to be added.
|
2018-02-01 03:04:56 +03:00
|
|
|
func NewService(dir string, checks ...Checker) (*Service, error) {
|
2018-08-22 22:25:03 +03:00
|
|
|
// Ensure that the path to the directory exists.
|
|
|
|
if _, err := os.Stat(dir); os.IsNotExist(err) {
|
|
|
|
if err := os.MkdirAll(dir, 0700); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-22 09:18:19 +03:00
|
|
|
// Open the database that we'll use to store the primary macaroon key,
|
|
|
|
// and all generated macaroons+caveats.
|
2020-01-10 05:45:26 +03:00
|
|
|
macaroonDB, err := kvdb.Create(
|
|
|
|
kvdb.BoltBackendName, path.Join(dir, DBFilename), true,
|
2018-08-22 22:25:03 +03:00
|
|
|
)
|
2017-08-18 04:50:15 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-08-22 09:18:19 +03:00
|
|
|
|
2017-08-18 04:50:15 +03:00
|
|
|
rootKeyStore, err := NewRootKeyStorage(macaroonDB)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-08-22 09:18:19 +03:00
|
|
|
|
2018-01-16 19:18:41 +03:00
|
|
|
macaroonParams := bakery.BakeryParams{
|
2017-08-18 04:50:15 +03:00
|
|
|
Location: "lnd",
|
|
|
|
RootKeyStore: rootKeyStore,
|
|
|
|
// No third-party caveat support for now.
|
|
|
|
// TODO(aakselrod): Add third-party caveat support.
|
|
|
|
Locator: nil,
|
|
|
|
Key: nil,
|
|
|
|
}
|
2018-01-16 19:18:41 +03:00
|
|
|
|
|
|
|
svc := bakery.New(macaroonParams)
|
|
|
|
|
|
|
|
// Register all custom caveat checkers with the bakery's checker.
|
|
|
|
// TODO(aakselrod): Add more checks as required.
|
|
|
|
checker := svc.Checker.FirstPartyCaveatChecker.(*checkers.Checker)
|
|
|
|
for _, check := range checks {
|
|
|
|
cond, fun := check()
|
|
|
|
if !isRegistered(checker, cond) {
|
|
|
|
checker.Register(cond, "std", fun)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-01 03:04:56 +03:00
|
|
|
return &Service{*svc, rootKeyStore}, nil
|
2018-01-16 19:18:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// isRegistered checks to see if the required checker has already been
|
|
|
|
// registered in order to avoid a panic caused by double registration.
|
|
|
|
func isRegistered(c *checkers.Checker, name string) bool {
|
|
|
|
if c == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, info := range c.Info() {
|
2018-04-27 00:06:43 +03:00
|
|
|
if info.Name == name &&
|
|
|
|
info.Prefix == "" &&
|
|
|
|
info.Namespace == "std" {
|
2018-01-16 19:18:41 +03:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnaryServerInterceptor is a GRPC interceptor that checks whether the
|
|
|
|
// request is authorized by the included macaroons.
|
2018-02-01 03:04:56 +03:00
|
|
|
func (svc *Service) UnaryServerInterceptor(
|
2018-01-16 19:18:41 +03:00
|
|
|
permissionMap map[string][]bakery.Op) grpc.UnaryServerInterceptor {
|
|
|
|
|
|
|
|
return func(ctx context.Context, req interface{},
|
|
|
|
info *grpc.UnaryServerInfo,
|
|
|
|
handler grpc.UnaryHandler) (interface{}, error) {
|
|
|
|
|
|
|
|
if _, ok := permissionMap[info.FullMethod]; !ok {
|
|
|
|
return nil, fmt.Errorf("%s: unknown permissions "+
|
|
|
|
"required for method", info.FullMethod)
|
|
|
|
}
|
|
|
|
|
2018-02-01 03:04:56 +03:00
|
|
|
err := svc.ValidateMacaroon(ctx, permissionMap[info.FullMethod])
|
2018-01-16 19:18:41 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler(ctx, req)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// StreamServerInterceptor is a GRPC interceptor that checks whether the
|
|
|
|
// request is authorized by the included macaroons.
|
2018-02-01 03:04:56 +03:00
|
|
|
func (svc *Service) StreamServerInterceptor(
|
2018-01-16 19:18:41 +03:00
|
|
|
permissionMap map[string][]bakery.Op) grpc.StreamServerInterceptor {
|
|
|
|
|
|
|
|
return func(srv interface{}, ss grpc.ServerStream,
|
|
|
|
info *grpc.StreamServerInfo, handler grpc.StreamHandler) error {
|
|
|
|
|
|
|
|
if _, ok := permissionMap[info.FullMethod]; !ok {
|
|
|
|
return fmt.Errorf("%s: unknown permissions required "+
|
|
|
|
"for method", info.FullMethod)
|
|
|
|
}
|
|
|
|
|
2018-10-23 04:05:37 +03:00
|
|
|
err := svc.ValidateMacaroon(
|
|
|
|
ss.Context(), permissionMap[info.FullMethod],
|
|
|
|
)
|
2018-01-16 19:18:41 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler(srv, ss)
|
|
|
|
}
|
2017-08-18 04:50:15 +03:00
|
|
|
}
|
2018-02-01 03:04:56 +03:00
|
|
|
|
|
|
|
// ValidateMacaroon validates the capabilities of a given request given a
|
|
|
|
// bakery service, context, and uri. Within the passed context.Context, we
|
|
|
|
// expect a macaroon to be encoded as request metadata using the key
|
|
|
|
// "macaroon".
|
|
|
|
func (svc *Service) ValidateMacaroon(ctx context.Context,
|
|
|
|
requiredPermissions []bakery.Op) error {
|
|
|
|
|
|
|
|
// Get macaroon bytes from context and unmarshal into macaroon.
|
|
|
|
md, ok := metadata.FromIncomingContext(ctx)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("unable to get metadata from context")
|
|
|
|
}
|
|
|
|
if len(md["macaroon"]) != 1 {
|
|
|
|
return fmt.Errorf("expected 1 macaroon, got %d",
|
|
|
|
len(md["macaroon"]))
|
|
|
|
}
|
|
|
|
|
|
|
|
// With the macaroon obtained, we'll now decode the hex-string
|
|
|
|
// encoding, then unmarshal it from binary into its concrete struct
|
|
|
|
// representation.
|
|
|
|
macBytes, err := hex.DecodeString(md["macaroon"][0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mac := &macaroon.Macaroon{}
|
|
|
|
err = mac.UnmarshalBinary(macBytes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the method being called against the permitted operation and
|
|
|
|
// the expiration time and IP address and return the result.
|
|
|
|
authChecker := svc.Checker.Auth(macaroon.Slice{mac})
|
|
|
|
_, err = authChecker.Allow(ctx, requiredPermissions...)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes the database that underlies the RootKeyStore and zeroes the
|
|
|
|
// encryption keys.
|
|
|
|
func (svc *Service) Close() error {
|
|
|
|
return svc.rks.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateUnlock calls the underlying root key store's CreateUnlock and returns
|
|
|
|
// the result.
|
|
|
|
func (svc *Service) CreateUnlock(password *[]byte) error {
|
|
|
|
return svc.rks.CreateUnlock(password)
|
|
|
|
}
|