biscuit-haskell-0.4.0.0: src/Auth/Biscuit/Token.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE RecordWildCards #-}
{- HLINT ignore "Reduce duplication" -}
{-|
Module : Auth.Biscuit.Token
Copyright : © Clément Delafargue, 2021
License : MIT
Maintainer : clement@delafargue.name
Module defining the main biscuit-related operations
-}
module Auth.Biscuit.Token
( Biscuit
, rootKeyId
, symbols
, authority
, blocks
, proof
, proofCheck
, queryRawBiscuitFacts
, ParseError (..)
, ExistingBlock
, ParsedSignedBlock
, AuthorizedBiscuit (..)
, queryAuthorizerFacts
-- $openOrSealed
, OpenOrSealed
, Open
, Sealed
, BiscuitProof (..)
, Verified
, Unverified
, mkBiscuit
, mkBiscuitWith
, addBlock
, addSignedBlock
, BiscuitEncoding (..)
, ParserConfig (..)
, parseBiscuitWith
, parseBiscuitUnverified
, checkBiscuitSignatures
, serializeBiscuit
, authorizeBiscuit
, authorizeBiscuitWithLimits
, fromOpen
, fromSealed
, asOpen
, asSealed
, seal
, getRevocationIds
, getVerifiedBiscuitPublicKey
-- third party
, mkThirdPartyBlockReq
, mkThirdPartyBlock
, applyThirdPartyBlock
) where
import Control.Monad (join, unless, when)
import Control.Monad.State (lift, mapStateT,
runStateT)
import Data.Bifunctor (first)
import Data.ByteString (ByteString)
import qualified Data.ByteString.Base64.URL as B64
import Data.List.NonEmpty (NonEmpty ((:|)))
import qualified Data.List.NonEmpty as NE
import Data.Set (Set)
import qualified Data.Set as Set
import Auth.Biscuit.Crypto (PublicKey, SecretKey,
Signature, SignedBlock,
getSignatureProof,
sigBytes,
sign3rdPartyBlock,
signBlock,
signExternalBlock,
skBytes, toPublic,
verifyBlocks,
verifyExternalSig,
verifySecretProof,
verifySignatureProof)
import Auth.Biscuit.Datalog.AST (Authorizer, Block, Query,
toEvaluation)
import Auth.Biscuit.Datalog.Executor (Bindings, ExecutionError,
Limits, defaultLimits)
import Auth.Biscuit.Datalog.ScopedExecutor (AuthorizationSuccess,
collectWorld,
queryAvailableFacts,
queryGeneratedFacts,
runAuthorizerWithLimits)
import qualified Auth.Biscuit.Proto as PB
import Auth.Biscuit.ProtoBufAdapter (blockToPb, pbToBlock,
pbToProof,
pbToSignedBlock,
pbToThirdPartyBlockContents,
pbToThirdPartyBlockRequest,
signedBlockToPb,
thirdPartyBlockContentsToPb,
thirdPartyBlockRequestToPb)
import Auth.Biscuit.Symbols
-- | Protobuf serialization does not have a guaranteed deterministic behaviour,
-- so we need to keep the initial serialized payload around in order to compute
-- a new signature when adding a block.
type ExistingBlock = (ByteString, Block)
type ParsedSignedBlock = (ExistingBlock, Signature, PublicKey, Maybe (Signature, PublicKey))
-- $openOrSealed
--
-- Biscuit tokens can be /open/ (capable of being attenuated further) or
-- /sealed/ (not capable of being attenuated further). Some operations
-- like verification work on both kinds, while others (like attenuation)
-- only work on a single kind. The 'OpenOrSealed', 'Open' and 'Sealed' trio
-- represents the different possibilities. 'OpenOrSealed' is usually obtained
-- through parsing, while 'Open' is obtained by creating a new biscuit (or
-- attenuating an existing one), and 'Sealed' is obtained by sealing an open
-- biscuit
-- | This datatype represents the final proof of a biscuit, which can be either
-- /open/ or /sealed/. This is the typical state of a biscuit that's been parsed.
data OpenOrSealed
= SealedProof Signature
| OpenProof SecretKey
deriving (Eq, Show)
-- | This datatype represents the final proof of a biscuit statically known to be
-- /open/ (capable of being attenuated further). In that case the proof is a secret
-- key that can be used to sign a new block.
newtype Open = Open SecretKey
deriving stock (Eq, Show)
-- | This datatype represents the final proof of a biscuit statically known to be
-- /sealed/ (not capable of being attenuated further). In that case the proof is a
-- signature proving that the party who sealed the token did know the last secret
-- key.
newtype Sealed = Sealed Signature
deriving stock (Eq, Show)
-- | This class allows functions working on both open and sealed biscuits to accept
-- indifferently 'OpenOrSealed', 'Open' or 'Sealed' biscuits. It has no laws, it only
-- projects 'Open' and 'Sealed' to the general 'OpenOrSealed' case.
class BiscuitProof a where
toPossibleProofs :: a -> OpenOrSealed
instance BiscuitProof OpenOrSealed where
toPossibleProofs = id
instance BiscuitProof Sealed where
toPossibleProofs (Sealed sig) = SealedProof sig
instance BiscuitProof Open where
toPossibleProofs (Open sk) = OpenProof sk
-- $verifiedOrUnverified
--
-- The default parsing mechanism for biscuits checks the signature before parsing the blocks
-- contents (this reduces the attack surface, as only biscuits with a valid signature are parsed).
-- In some cases, we still want to operate on biscuits without knowing the public key necessary
-- to check signatures (eg for inspection, or for generically adding attenuation blocks). In that
-- case, we can have parsed tokens which signatures have /not/ been verified. In order to
-- accidentally forgetting to check signatures, parsed biscuits keep track of whether the
-- signatures have been verified with a dedicated type parameter, which can be instantiated with
-- two types: 'Verified' and 'Unverified'. 'Verified' additionally keeps track of the 'PublicKey'
-- that has been used to verify the signatures.
-- | Proof that a biscuit had its signatures verified with the carried root 'PublicKey'
newtype Verified = Verified PublicKey
deriving stock (Eq, Show)
-- | Marker that a biscuit was parsed without having its signatures verified. Such a biscuit
-- cannot be trusted yet.
data Unverified = Unverified
deriving stock (Eq, Show)
-- | A parsed biscuit. The @proof@ type param can be one of 'Open', 'Sealed' or 'OpenOrSealed'.
-- It describes whether a biscuit is open to further attenuation, or sealed and not modifyable
-- further.
--
-- The @check@ type param can be either 'Verified' or 'Unverified' and keeps track of whether
-- the blocks signatures (and final proof) have been verified with a given root 'PublicKey'.
--
-- The constructor is not exposed in order to ensure that 'Biscuit' values can only be created
-- by trusted code paths.
data Biscuit proof check
= Biscuit
{ rootKeyId :: Maybe Int
-- ^ an optional identifier for the expected public key
, symbols :: Symbols
-- ^ The symbols already defined in the contained blocks
, authority :: ParsedSignedBlock
-- ^ The authority block, along with the associated public key. The public key
-- is kept around since it's embedded in the serialized biscuit, but should not
-- be used for verification. An externally provided public key should be used instead.
, blocks :: [ParsedSignedBlock]
-- ^ The extra blocks, along with the public keys needed
, proof :: proof
-- ^ The final proof allowing to check the validity of a biscuit
, proofCheck :: check
-- ^ A value that keeps track of whether the biscuit signatures have been verified or not.
}
deriving (Eq, Show)
-- | Query the facts contained in a biscuit, /before running authorization/. This function
-- should only be used to extract information needed to generate an authorizer. In other
-- cases, you likely want 'queryAuthorizerFacts' instead, which queries facts /after running
-- authorization/.
--
-- ⚠ Only facts directly contained in the biscuit are queried. Rules are not processed
-- at this point, so derived facts are not generated yet.
--
-- ⚠ By default, only facts from the authority block are queried,
-- like what happens in rules and checks. Facts from other blocks can be queried
-- with a @trusting@ annotation. Be careful with @trusting previous@, as it queries
-- facts from all blocks, even untrusted ones.
queryRawBiscuitFactsWithLimits :: Biscuit openOrSealed check -> Limits -> Query
-> Either String (Set Bindings)
queryRawBiscuitFactsWithLimits b@Biscuit{authority,blocks} =
let ePks = externalKeys b
getBlock ((_, block), _, _, _) = block
allBlocks = zip [0..] $ getBlock <$> authority : blocks
(_, sFacts) = foldMap (uncurry collectWorld . fmap (toEvaluation ePks)) allBlocks
in queryAvailableFacts ePks sFacts
-- | Query the facts generated by the authority and authorizer blocks
-- during authorization. This can be used in conjuction with 'getVariableValues'
-- and 'getSingleVariableValue' to retrieve actual values.
--
-- ⚠ By default, only facts from the authority block and the authorizer are queried,
-- like what happens in rules and checks. Facts from other blocks can be queried
-- with a @trusting@ annotation. Be careful with @trusting previous@, as it queries
-- facts from all blocks, even untrusted ones.
--
-- 💁 If the facts you want to query are part of an allow query in the authorizer,
-- you can directly get values by calling 'getBindings' on 'AuthorizationSuccess'.
queryRawBiscuitFacts :: Biscuit openOrSealed check -> Query
-> Either String (Set Bindings)
queryRawBiscuitFacts b = queryRawBiscuitFactsWithLimits b defaultLimits
-- | Turn a 'Biscuit' statically known to be 'Open' into a more generic 'OpenOrSealed' 'Biscuit'
-- (essentially /forgetting/ about the fact it's 'Open')
fromOpen :: Biscuit Open check -> Biscuit OpenOrSealed check
fromOpen b@Biscuit{proof = Open p } = b { proof = OpenProof p }
-- | Turn a 'Biscuit' statically known to be 'Sealed' into a more generic 'OpenOrSealed' 'Biscuit'
-- (essentially /forgetting/ about the fact it's 'Sealed')
fromSealed :: Biscuit Sealed check -> Biscuit OpenOrSealed check
fromSealed b@Biscuit{proof = Sealed p } = b { proof = SealedProof p }
-- | Try to turn a 'Biscuit' that may be open or sealed into a biscuit that's statically known
-- to be 'Sealed'.
asSealed :: Biscuit OpenOrSealed check -> Maybe (Biscuit Sealed check)
asSealed b@Biscuit{proof} = case proof of
SealedProof p -> Just $ b { proof = Sealed p }
_ -> Nothing
-- | Try to turn a 'Biscuit' that may be open or sealed into a biscuit that's statically known
-- to be 'Open'.
asOpen :: Biscuit OpenOrSealed check -> Maybe (Biscuit Open check)
asOpen b@Biscuit{proof} = case proof of
OpenProof p -> Just $ b { proof = Open p }
_ -> Nothing
toParsedSignedBlock :: Block -> SignedBlock -> ParsedSignedBlock
toParsedSignedBlock block (serializedBlock, sig, pk, eSig) = ((serializedBlock, block), sig, pk, eSig)
-- | Create a new biscuit with the provided authority block. Such a biscuit is 'Open' to
-- further attenuation.
mkBiscuit :: SecretKey -> Block -> IO (Biscuit Open Verified)
mkBiscuit = mkBiscuitWith Nothing
-- | Create a new biscuit with the provided authority block and root key id. Such a biscuit is 'Open' to
-- further attenuation.
mkBiscuitWith :: Maybe Int -> SecretKey -> Block -> IO (Biscuit Open Verified)
mkBiscuitWith rootKeyId sk authority = do
let (authoritySymbols, authoritySerialized) = PB.encodeBlock <$> blockToPb False newSymbolTable authority
(signedBlock, nextSk) <- signBlock sk authoritySerialized Nothing
pure Biscuit { rootKeyId
, authority = toParsedSignedBlock authority signedBlock
, blocks = []
, symbols = addFromBlock newSymbolTable authoritySymbols
, proof = Open nextSk
, proofCheck = Verified $ toPublic sk
}
-- | Add a block to an existing biscuit. Only 'Open' biscuits can be attenuated; the
-- newly created biscuit is 'Open' as well.
addBlock :: Block
-> Biscuit Open check
-> IO (Biscuit Open check)
addBlock block b@Biscuit{..} = do
let (blockSymbols, blockSerialized) = PB.encodeBlock <$> blockToPb False symbols block
Open p = proof
(signedBlock, nextSk) <- signBlock p blockSerialized Nothing
pure $ b { blocks = blocks <> [toParsedSignedBlock block signedBlock]
, symbols = addFromBlock symbols blockSymbols
, proof = Open nextSk
}
-- | Directly append a third-party block to a token. Please use
-- 'mkThirdPartyBlockReq', 'mkThirdPartyBlock' and 'applyThirdPartyBlock'
-- instead if the party signing the block cannot have access to the token.
addSignedBlock :: SecretKey
-> Block
-> Biscuit Open check
-> IO (Biscuit Open check)
addSignedBlock eSk block b@Biscuit{..} = do
let (_, blockSerialized) = PB.encodeBlock <$> blockToPb True newSymbolTable block
lastBlock = NE.last (authority :| blocks)
(_, _, lastPublicKey, _) = lastBlock
Open p = proof
(signedBlock, nextSk) <- signExternalBlock p eSk lastPublicKey blockSerialized
pure $ b { blocks = blocks <> [toParsedSignedBlock block signedBlock]
, proof = Open nextSk
}
mkThirdPartyBlock' :: SecretKey
-> PublicKey
-> Block
-> (ByteString, Signature, PublicKey)
mkThirdPartyBlock' eSk lastPublicKey block =
let (_, payload) = PB.encodeBlock <$> blockToPb True newSymbolTable block
(eSig, ePk) = sign3rdPartyBlock eSk lastPublicKey payload
in (payload, eSig, ePk)
-- | Given a third-party block request, generate a third-party block,
-- which can be then appended to a token with 'applyThirdPartyBlock'.
mkThirdPartyBlock :: SecretKey
-> ByteString
-> Block
-> Either String ByteString
mkThirdPartyBlock eSk req block = do
previousPk<- pbToThirdPartyBlockRequest =<< PB.decodeThirdPartyBlockRequest req
pure $ PB.encodeThirdPartyBlockContents . thirdPartyBlockContentsToPb $ mkThirdPartyBlock' eSk previousPk block
-- | Generate a third-party block request. It can be used in
-- conjunction with 'mkThirdPartyBlock' to generate a
-- third-party block, which can be then appended to a token with
-- 'applyThirdPartyBlock'.
mkThirdPartyBlockReq :: Biscuit proof check -> ByteString
mkThirdPartyBlockReq Biscuit{authority,blocks} =
let (_, _ , lastPk, _) = NE.last $ authority :| blocks
in PB.encodeThirdPartyBlockRequest $ thirdPartyBlockRequestToPb lastPk
-- | Given a base64-encoded third-party block, append it to a token.
applyThirdPartyBlock :: Biscuit Open check -> ByteString -> Either String (IO (Biscuit Open check))
applyThirdPartyBlock b@Biscuit{..} contents = do
(payload, eSig, ePk) <- pbToThirdPartyBlockContents =<< PB.decodeThirdPartyBlockContents contents
let Open p = proof
addESig (a,b',c,_) = (a,b',c, Just (eSig, ePk))
(_, _, lastPk, _) = NE.last $ authority :| blocks
pbBlock <- PB.decodeBlock payload
(block, newSymbols) <- (`runStateT` symbols) $ pbToBlock (Just ePk) pbBlock
unless (verifyExternalSig lastPk (payload, eSig, ePk)) $
Left "Invalid 3rd party signature"
pure $ do
(signedBlock, nextSk) <- signBlock p payload (Just (eSig, ePk))
pure $ b { blocks = blocks <> [toParsedSignedBlock block (addESig signedBlock)]
, proof = Open nextSk
, symbols = newSymbols
}
externalKeys :: Biscuit openOrSealed check -> [Maybe PublicKey]
externalKeys Biscuit{blocks} =
let getEpk (_, _, _, Just (_, ePk)) = Just ePk
getEpk _ = Nothing
in Nothing : (getEpk <$> blocks)
-- | Turn an 'Open' biscuit into a 'Sealed' one, preventing it from being attenuated
-- further. A 'Sealed' biscuit cannot be turned into an 'Open' one.
seal :: Biscuit Open check -> Biscuit Sealed check
seal b@Biscuit{..} =
let Open sk = proof
((lastPayload, _), lastSig, lastPk, eSig) = NE.last $ authority :| blocks
newProof = Sealed $ getSignatureProof (lastPayload, lastSig, lastPk, eSig) sk
in b { proof = newProof }
-- | Serialize a biscuit to a raw bytestring
serializeBiscuit :: BiscuitProof p => Biscuit p Verified -> ByteString
serializeBiscuit Biscuit{..} =
let proofField = case toPossibleProofs proof of
SealedProof sig -> PB.ProofSignature $ PB.putField (sigBytes sig)
OpenProof sk -> PB.ProofSecret $ PB.putField (skBytes sk)
in PB.encodeBlockList PB.Biscuit
{ rootKeyId = PB.putField $ fromIntegral <$> rootKeyId
, authority = PB.putField $ toPBSignedBlock authority
, blocks = PB.putField $ toPBSignedBlock <$> blocks
, proof = PB.putField proofField
}
toPBSignedBlock :: ParsedSignedBlock -> PB.SignedBlock
toPBSignedBlock ((block, _), sig, pk, eSig) = signedBlockToPb (block, sig, pk, eSig)
-- | Errors that can happen when parsing a biscuit. Since complete parsing of a biscuit
-- requires a signature check, an invalid signature check is a parsing error
data ParseError
= InvalidHexEncoding
-- ^ The provided ByteString is not hex-encoded
| InvalidB64Encoding
-- ^ The provided ByteString is not base64-encoded
| InvalidProtobufSer Bool String
-- ^ The provided ByteString does not contain properly serialized protobuf values
-- The boolean parameter is True if the error happened on the wrapper, False if it happened on a block
| InvalidProtobuf Bool String
-- ^ The bytestring was correctly deserialized from protobuf, but the values can't be turned into a proper biscuit
-- The boolean parameter is True if the error happened on the wrapper, False if it happened on a block
| InvalidSignatures
-- ^ The signatures were invalid
| InvalidProof
-- ^ The biscuit final proof was invalid
| RevokedBiscuit
-- ^ The biscuit has been revoked
deriving (Eq, Show)
data BiscuitWrapper
= BiscuitWrapper
{ wAuthority :: SignedBlock
, wBlocks :: [SignedBlock]
, wProof :: OpenOrSealed
, wRootKeyId :: Maybe Int
}
parseBiscuitWrapper :: ByteString -> Either ParseError BiscuitWrapper
parseBiscuitWrapper bs = do
blockList <- first (InvalidProtobufSer True) $ PB.decodeBlockList bs
let rootKeyId = fromEnum <$> PB.getField (PB.rootKeyId blockList)
signedAuthority <- first (InvalidProtobuf True) $ pbToSignedBlock $ PB.getField $ PB.authority blockList
signedBlocks <- first (InvalidProtobuf True) $ traverse pbToSignedBlock $ PB.getField $ PB.blocks blockList
proof <- first (InvalidProtobuf True) $ pbToProof $ PB.getField $ PB.proof blockList
pure $ BiscuitWrapper
{ wAuthority = signedAuthority
, wBlocks = signedBlocks
, wProof = either SealedProof
OpenProof
proof
, wRootKeyId = rootKeyId
, ..
}
checkRevocation :: Applicative m
=> (Set ByteString -> m Bool)
-> BiscuitWrapper
-> m (Either ParseError BiscuitWrapper)
checkRevocation isRevoked bw@BiscuitWrapper{wAuthority,wBlocks} =
let getRevocationId (_, sig, _, _) = sigBytes sig
revocationIds = getRevocationId <$> wAuthority :| wBlocks
keepIfNotRevoked True = Left RevokedBiscuit
keepIfNotRevoked False = Right bw
in keepIfNotRevoked <$> isRevoked (Set.fromList $ NE.toList revocationIds)
parseBlocks :: BiscuitWrapper -> Either ParseError (Symbols, NonEmpty ParsedSignedBlock)
parseBlocks BiscuitWrapper{..} = do
let parseBlock (payload, sig, pk, eSig) = do
pbBlock <- lift $ first (InvalidProtobufSer False) $ PB.decodeBlock payload
block <- mapStateT (first (InvalidProtobuf False)) $ pbToBlock (snd <$> eSig) pbBlock
pure ((payload, block), sig, pk, eSig)
(allBlocks, symbols) <- (`runStateT` newSymbolTable) $ do
traverse parseBlock (wAuthority :| wBlocks)
pure (symbols, allBlocks)
-- | Parse a biscuit without performing any signatures check. This function is intended to
-- provide tooling (eg adding a block, or inspecting a biscuit) without having to verify
-- its signatures. Running an 'Authorizer' is not possible without checking signatures.
-- 'checkBiscuitSignatures' allows a delayed signature check. For normal auth workflows,
-- please use 'parseWith' (or 'parse', or 'parseB64') instead, as they check signatures
-- before completely parsing the biscuit.
parseBiscuitUnverified :: ByteString -> Either ParseError (Biscuit OpenOrSealed Unverified)
parseBiscuitUnverified bs = do
w@BiscuitWrapper{..} <- parseBiscuitWrapper bs
(symbols, authority :| blocks) <- parseBlocks w
pure $ Biscuit { rootKeyId = wRootKeyId
, proof = wProof
, proofCheck = Unverified
, .. }
parseBiscuit' :: PublicKey -> BiscuitWrapper -> Either ParseError (Biscuit OpenOrSealed Verified)
parseBiscuit' pk w@BiscuitWrapper{..} = do
let allBlocks = wAuthority :| wBlocks
let blocksResult = verifyBlocks allBlocks pk
let proofResult = case wProof of
SealedProof sig -> verifySignatureProof sig (NE.last allBlocks)
OpenProof sk -> verifySecretProof sk (NE.last allBlocks)
when (not blocksResult || not proofResult) $ Left InvalidSignatures
(symbols, authority :| blocks) <- parseBlocks w
pure $ Biscuit { rootKeyId = wRootKeyId
, proof = wProof
, proofCheck = Verified pk
, .. }
-- | Check the signatures (and final proof) of an already parsed biscuit. These checks normally
-- happen during the parsing phase, but can be delayed (or even ignored) in some cases. This
-- fuction allows to turn a 'Unverified' 'Biscuit' into a 'Verified' one after it has been parsed
-- with 'parseBiscuitUnverified'.
checkBiscuitSignatures :: BiscuitProof proof
=> (Maybe Int -> PublicKey)
-> Biscuit proof Unverified
-> Either ParseError (Biscuit proof Verified)
checkBiscuitSignatures getPublicKey b@Biscuit{..} = do
let pk = getPublicKey rootKeyId
toSignedBlock ((payload, _), sig, nextPk, eSig) = (payload, sig, nextPk, eSig)
allBlocks = toSignedBlock <$> (authority :| blocks)
blocksResult = verifyBlocks allBlocks pk
proofResult = case toPossibleProofs proof of
SealedProof sig -> verifySignatureProof sig (NE.last allBlocks)
OpenProof sk -> verifySecretProof sk (NE.last allBlocks)
when (not blocksResult || not proofResult) $ Left InvalidSignatures
pure $ b { proofCheck = Verified pk }
-- | Biscuits can be transmitted as raw bytes, or as base64-encoded text. This datatype
-- lets the parser know about the expected encoding.
data BiscuitEncoding
= RawBytes
| UrlBase64
-- | Parsing a biscuit involves various steps. This data type allows configuring those steps.
data ParserConfig m
= ParserConfig
{ encoding :: BiscuitEncoding
-- ^ Is the biscuit base64-encoded, or is it raw binary?
, isRevoked :: Set ByteString -> m Bool
-- ^ Has one of the token blocks been revoked?
-- 'fromRevocationList' lets you build this function from a static revocation list
, getPublicKey :: Maybe Int -> PublicKey
-- ^ How to select the public key based on the token 'rootKeyId'
}
parseBiscuitWith :: Applicative m
=> ParserConfig m
-> ByteString
-> m (Either ParseError (Biscuit OpenOrSealed Verified))
parseBiscuitWith ParserConfig{..} bs =
let input = case encoding of
RawBytes -> Right bs
UrlBase64 -> first (const InvalidB64Encoding) . B64.decodeBase64 $ bs
parsedWrapper = parseBiscuitWrapper =<< input
wrapperToBiscuit w@BiscuitWrapper{wRootKeyId} =
let pk = getPublicKey wRootKeyId
in (parseBiscuit' pk =<<) <$> checkRevocation isRevoked w
in join <$> traverse wrapperToBiscuit parsedWrapper
-- | Extract the list of revocation ids from a biscuit.
-- To reject revoked biscuits, please use 'parseWith' instead. This function
-- should only be used for inspecting biscuits, not for deciding whether to
-- reject them or not.
getRevocationIds :: Biscuit proof check -> NonEmpty ByteString
getRevocationIds Biscuit{authority, blocks} =
let allBlocks = authority :| blocks
getRevocationId (_, sig, _, _) = sigBytes sig
in getRevocationId <$> allBlocks
-- | Generic version of 'authorizeBiscuitWithLimits' which takes custom 'Limits'.
authorizeBiscuitWithLimits :: Limits -> Biscuit proof Verified -> Authorizer -> IO (Either ExecutionError (AuthorizedBiscuit proof))
authorizeBiscuitWithLimits l biscuit@Biscuit{..} authorizer =
let toBlockWithRevocationId ((_, block), sig, _, eSig) = (block, sigBytes sig, snd <$> eSig)
-- the authority block can't be externally signed. If it carries a signature, it won't be
-- verified. So we need to make sure there is none, to avoid having facts trusted without
-- a proper signature check
dropExternalPk (b, rid, _) = (b, rid, Nothing)
withBiscuit authorizationSuccess =
AuthorizedBiscuit
{ authorizedBiscuit = biscuit
, authorizationSuccess
}
in fmap withBiscuit <$>
runAuthorizerWithLimits l
(dropExternalPk $ toBlockWithRevocationId authority)
(toBlockWithRevocationId <$> blocks)
authorizer
-- | Given a biscuit with a verified signature and an authorizer (a set of facts, rules, checks
-- and policies), verify a biscuit:
--
-- - all the checks declared in the biscuit and authorizer must pass
-- - an allow policy provided by the authorizer has to match (policies are tried in order)
-- - the datalog computation must happen in an alloted time, with a capped number of generated
-- facts and a capped number of iterations
--
-- checks and policies declared in the authorizer only operate on the authority block. Facts
-- declared by extra blocks cannot interfere with previous blocks.
--
-- Specific runtime limits can be specified by using 'authorizeBiscuitWithLimits'. 'authorizeBiscuit'
-- uses a set of defaults defined in 'defaultLimits'.
authorizeBiscuit :: Biscuit proof Verified -> Authorizer -> IO (Either ExecutionError (AuthorizedBiscuit proof))
authorizeBiscuit = authorizeBiscuitWithLimits defaultLimits
-- | Retrieve the `PublicKey` which was used to verify the `Biscuit` signatures
getVerifiedBiscuitPublicKey :: Biscuit a Verified -> PublicKey
getVerifiedBiscuitPublicKey Biscuit{proofCheck} =
let Verified pk = proofCheck
in pk
-- | The results of authorization, along with the biscuit that was authorized.
data AuthorizedBiscuit p
= AuthorizedBiscuit
{ authorizedBiscuit :: Biscuit p Verified
, authorizationSuccess :: AuthorizationSuccess
}
deriving (Eq, Show)
-- | Query the facts generated during authorization. This can be used in conjuction
-- with 'getVariableValues' and 'getSingleVariableValue' to retrieve actual values.
--
-- ⚠ By default, only facts from the authority block and the authorizer are queried,
-- like what happens in rules and checks. Facts from other blocks can be queried
-- with a @trusting@ annotation. Be careful with @trusting previous@, as it queries
-- facts from all blocks, even untrusted ones.
--
-- 💁 If the facts you want to query are part of an allow query in the authorizer,
-- you can directly get values by calling 'getBindings' on 'AuthorizationSuccess'.
--
-- 💁 If you are trying to extract facts from a biscuit in order to generate an
-- authorizer, have a look at 'queryRawBiscuitFacts' instead.
queryAuthorizerFacts :: AuthorizedBiscuit p -> Query
-> Either String (Set Bindings)
queryAuthorizerFacts AuthorizedBiscuit{authorizedBiscuit, authorizationSuccess} =
let ePks = externalKeys authorizedBiscuit
in queryGeneratedFacts ePks authorizationSuccess