Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
- Checking for updates
- Downloading targets
- Access to the Hackage index
- Bootstrapping
- Re-exports
- Types
- Utility
- Cache layout
- Repository layout
- Repository layout
- TUF types
- Repository
- Index
- Cache
- Datatypes
- TUF types
- Construction and verification
- JSON aids
- Avoid interpreting signatures
- TUF types
- Key types
- Types abstracting over key types
- Key types in isolation
- Hiding key types
- Operations on keys
- Key IDs
- Signing
- Exceptions
Main entry point into the Hackage Security framework for clients
Synopsis
- checkForUpdates :: (Throws VerificationError, Throws SomeRemoteError) => Repository down -> Maybe UTCTime -> IO HasUpdates
- data HasUpdates
- downloadPackage :: (Throws SomeRemoteError, Throws VerificationError, Throws InvalidPackageException) => Repository down -> PackageIdentifier -> Path Absolute -> IO ()
- downloadPackage' :: (Throws SomeRemoteError, Throws VerificationError, Throws InvalidPackageException) => Repository down -> PackageIdentifier -> FilePath -> IO ()
- data Directory = Directory {
- directoryFirst :: DirectoryEntry
- directoryNext :: DirectoryEntry
- directoryLookup :: forall dec. IndexFile dec -> Maybe DirectoryEntry
- directoryEntries :: [(DirectoryEntry, IndexPath, Maybe (Some IndexFile))]
- newtype DirectoryEntry = DirectoryEntry {}
- getDirectory :: Repository down -> IO Directory
- data IndexFile :: Type -> Type where
- IndexPkgMetadata :: PackageIdentifier -> IndexFile (Signed Targets)
- IndexPkgCabal :: PackageIdentifier -> IndexFile ()
- IndexPkgPrefs :: PackageName -> IndexFile ()
- data IndexEntry dec = IndexEntry {}
- data IndexCallbacks = IndexCallbacks {
- indexLookupEntry :: DirectoryEntry -> IO (Some IndexEntry, Maybe DirectoryEntry)
- indexLookupFile :: forall dec. IndexFile dec -> IO (Maybe (IndexEntry dec))
- indexLookupFileEntry :: forall dec. DirectoryEntry -> IndexFile dec -> IO (IndexEntry dec)
- indexLookupCabal :: Throws InvalidPackageException => PackageIdentifier -> IO (Trusted ByteString)
- indexLookupMetadata :: Throws InvalidPackageException => PackageIdentifier -> IO (Trusted Targets)
- indexLookupFileInfo :: (Throws InvalidPackageException, Throws VerificationError) => PackageIdentifier -> IO (Trusted FileInfo)
- indexLookupHash :: (Throws InvalidPackageException, Throws VerificationError) => PackageIdentifier -> IO (Trusted Hash)
- indexDirectory :: Directory
- withIndex :: Repository down -> (IndexCallbacks -> IO a) -> IO a
- requiresBootstrap :: Repository down -> IO Bool
- bootstrap :: (Throws SomeRemoteError, Throws VerificationError) => Repository down -> [KeyId] -> KeyThreshold -> IO ()
- newtype FileLength = FileLength {
- fileLength :: Int54
- newtype Hash = Hash String
- newtype KeyThreshold = KeyThreshold Int54
- data FileInfo = FileInfo {}
- data HashFn
- newtype Hash = Hash String
- fileInfo :: ByteString -> FileInfo
- computeFileInfo :: FsRoot root => Path root -> IO FileInfo
- compareTrustedFileInfo :: FileInfo -> FileInfo -> Bool
- knownFileInfoEqual :: FileInfo -> FileInfo -> Bool
- fileInfoSHA256 :: FileInfo -> Maybe Hash
- data Int54
- data FileMap
- data TargetPath
- data FileChange
- fileMapChanges :: FileMap -> FileMap -> Map TargetPath FileChange
- class HasHeader a where
- fileExpires :: Lens' a FileExpires
- fileVersion :: Lens' a FileVersion
- newtype FileVersion = FileVersion Int54
- newtype FileExpires = FileExpires (Maybe UTCTime)
- data Header = Header {}
- expiresInDays :: UTCTime -> Integer -> FileExpires
- expiresNever :: FileExpires
- isExpired :: UTCTime -> FileExpires -> Bool
- versionInitial :: FileVersion
- versionIncrement :: FileVersion -> FileVersion
- data CacheLayout = CacheLayout {}
- cabalCacheLayout :: CacheLayout
- data IndexLayout = IndexLayout {
- indexFileToPath :: forall dec. IndexFile dec -> IndexPath
- indexFileFromPath :: IndexPath -> Maybe (Some IndexFile)
- data IndexFile :: Type -> Type where
- IndexPkgMetadata :: PackageIdentifier -> IndexFile (Signed Targets)
- IndexPkgCabal :: PackageIdentifier -> IndexFile ()
- IndexPkgPrefs :: PackageName -> IndexFile ()
- hackageIndexLayout :: IndexLayout
- indexLayoutPkgMetadata :: IndexLayout -> PackageIdentifier -> IndexPath
- indexLayoutPkgCabal :: IndexLayout -> PackageIdentifier -> IndexPath
- indexLayoutPkgPrefs :: IndexLayout -> PackageName -> IndexPath
- data RepoLayout = RepoLayout {}
- hackageRepoLayout :: RepoLayout
- cabalLocalRepoLayout :: RepoLayout
- data Mirrors = Mirrors {}
- data Mirror = Mirror {}
- data MirrorContent = MirrorFull
- type MirrorDescription = String
- describeMirror :: Mirror -> MirrorDescription
- data RepoRoot
- type RepoPath = Path RepoRoot
- anchorRepoPathLocally :: Path root -> RepoPath -> Path root
- anchorRepoPathRemotely :: Path Web -> RepoPath -> Path Web
- data IndexRoot
- type IndexPath = Path IndexRoot
- data CacheRoot
- type CachePath = Path CacheRoot
- anchorCachePath :: Path root -> CachePath -> Path root
- data Root = Root {}
- data RootRoles = RootRoles {}
- data RoleSpec a = RoleSpec {}
- data Signed a = Signed {
- signed :: a
- signatures :: Signatures
- newtype Signatures = Signatures [Signature]
- data Signature = Signature {}
- unsigned :: a -> Signed a
- withSignatures :: ToJSON WriteJSON a => RepoLayout -> [Some Key] -> a -> Signed a
- withSignatures' :: ToJSON Identity a => [Some Key] -> a -> Signed a
- signRendered :: [Some Key] -> ByteString -> Signatures
- verifySignature :: ByteString -> Signature -> Bool
- signedFromJSON :: (MonadKeys m, FromJSON m a) => JSValue -> m (Signed a)
- verifySignatures :: JSValue -> Signatures -> Bool
- data UninterpretedSignatures a = UninterpretedSignatures {}
- data PreSignature = PreSignature {}
- fromPreSignature :: MonadKeys m => PreSignature -> m Signature
- fromPreSignatures :: MonadKeys m => [PreSignature] -> m Signatures
- toPreSignature :: Signature -> PreSignature
- toPreSignatures :: Signatures -> [PreSignature]
- data Snapshot = Snapshot {}
- data Targets = Targets {}
- data Delegations = Delegations {}
- data DelegationSpec = DelegationSpec {}
- data Delegation = forall a. Delegation (Pattern a) (Replacement a)
- targetsLookup :: TargetPath -> Targets -> Maybe FileInfo
- data Timestamp = Timestamp {}
- data Ed25519
- data Key a where
- KeyEd25519 :: PublicKey -> SecretKey -> Key Ed25519
- data PublicKey a where
- data PrivateKey a where
- data KeyType typ where
- somePublicKey :: Some Key -> Some PublicKey
- somePublicKeyType :: Some PublicKey -> Some KeyType
- someKeyId :: HasKeyId key => Some key -> KeyId
- publicKey :: Key a -> PublicKey a
- privateKey :: Key a -> PrivateKey a
- createKey :: KeyType key -> IO (Key key)
- createKey' :: KeyType key -> IO (Some Key)
- newtype KeyId = KeyId {}
- class HasKeyId key where
- sign :: PrivateKey typ -> ByteString -> ByteString
- verify :: PublicKey typ -> ByteString -> ByteString -> Bool
- trusted :: Trusted a -> a
- data Repository down
- class DownloadedFile (down :: Type -> Type) where
- downloadedVerify :: down a -> Trusted FileInfo -> IO Bool
- downloadedRead :: down Metadata -> IO ByteString
- downloadedCopyTo :: down a -> Path Absolute -> IO ()
- data SomeRemoteError :: Type where
- SomeRemoteError :: Exception e => e -> SomeRemoteError
- data LogMessage
- = LogRootUpdated
- | LogVerificationError VerificationError
- | forall fs typ. LogDownloading (RemoteFile fs typ)
- | forall fs. LogUpdating (RemoteFile fs Binary)
- | LogSelectedMirror MirrorDescription
- | forall fs. LogCannotUpdate (RemoteFile fs Binary) UpdateFailure
- | LogMirrorFailed MirrorDescription SomeException
- | LogLockWait (Path Absolute)
- | LogLockWaitDone (Path Absolute)
- | LogUnlock (Path Absolute)
- uncheckClientErrors :: ((Throws VerificationError, Throws SomeRemoteError, Throws InvalidPackageException) => IO a) -> IO a
- data VerificationError
- = VerificationErrorSignatures TargetPath Integer [KeyId] [KeyId]
- | VerificationErrorExpired TargetPath
- | VerificationErrorVersion TargetPath
- | VerificationErrorFileInfo TargetPath
- | VerificationErrorUnknownTarget TargetPath
- | VerificationErrorMissingSHA256 TargetPath
- | VerificationErrorDeserialization TargetPath DeserializationError
- | VerificationErrorLoop VerificationHistory
- type VerificationHistory = [Either RootUpdated VerificationError]
- data RootUpdated = RootUpdated
- data InvalidPackageException = InvalidPackageException PackageIdentifier
- data InvalidFileInIndex = forall dec.InvalidFileInIndex {}
- data LocalFileCorrupted = LocalFileCorrupted DeserializationError
Checking for updates
:: (Throws VerificationError, Throws SomeRemoteError) | |
=> Repository down | |
-> Maybe UTCTime | To check expiry times against (if using) |
-> IO HasUpdates |
Generic logic for checking if there are updates
This implements the logic described in Section 5.1, "The client application", of the TUF spec. It checks which of the server metadata has changed, and downloads all changed metadata to the local cache. (Metadata here refers both to the TUF security metadata as well as the Hackage package index.)
You should pass Nothing
for the UTCTime _only_ under exceptional
circumstances (such as when the main server is down for longer than the
expiry dates used in the timestamp files on mirrors).
data HasUpdates Source #
Instances
Show HasUpdates Source # | |
Defined in Hackage.Security.Client showsPrec :: Int -> HasUpdates -> ShowS # show :: HasUpdates -> String # showList :: [HasUpdates] -> ShowS # | |
Eq HasUpdates Source # | |
Defined in Hackage.Security.Client (==) :: HasUpdates -> HasUpdates -> Bool # (/=) :: HasUpdates -> HasUpdates -> Bool # | |
Ord HasUpdates Source # | |
Defined in Hackage.Security.Client compare :: HasUpdates -> HasUpdates -> Ordering # (<) :: HasUpdates -> HasUpdates -> Bool # (<=) :: HasUpdates -> HasUpdates -> Bool # (>) :: HasUpdates -> HasUpdates -> Bool # (>=) :: HasUpdates -> HasUpdates -> Bool # max :: HasUpdates -> HasUpdates -> HasUpdates # min :: HasUpdates -> HasUpdates -> HasUpdates # |
Downloading targets
:: (Throws SomeRemoteError, Throws VerificationError, Throws InvalidPackageException) | |
=> Repository down | Repository |
-> PackageIdentifier | Package to download |
-> Path Absolute | Destination (see also |
-> IO () |
Download a package
:: (Throws SomeRemoteError, Throws VerificationError, Throws InvalidPackageException) | |
=> Repository down | Repository |
-> PackageIdentifier | Package to download |
-> FilePath | Destination |
-> IO () |
Variation on downloadPackage
that takes a FilePath instead.
Access to the Hackage index
Index directory
Directory | |
|
newtype DirectoryEntry Source #
Entry into the Hackage index.
DirectoryEntry | |
|
Instances
Read DirectoryEntry Source # | |
Defined in Hackage.Security.Client readsPrec :: Int -> ReadS DirectoryEntry # readList :: ReadS [DirectoryEntry] # | |
Show DirectoryEntry Source # | |
Defined in Hackage.Security.Client showsPrec :: Int -> DirectoryEntry -> ShowS # show :: DirectoryEntry -> String # showList :: [DirectoryEntry] -> ShowS # | |
Eq DirectoryEntry Source # | |
Defined in Hackage.Security.Client (==) :: DirectoryEntry -> DirectoryEntry -> Bool # (/=) :: DirectoryEntry -> DirectoryEntry -> Bool # | |
Ord DirectoryEntry Source # | |
Defined in Hackage.Security.Client compare :: DirectoryEntry -> DirectoryEntry -> Ordering # (<) :: DirectoryEntry -> DirectoryEntry -> Bool # (<=) :: DirectoryEntry -> DirectoryEntry -> Bool # (>) :: DirectoryEntry -> DirectoryEntry -> Bool # (>=) :: DirectoryEntry -> DirectoryEntry -> Bool # max :: DirectoryEntry -> DirectoryEntry -> DirectoryEntry # min :: DirectoryEntry -> DirectoryEntry -> DirectoryEntry # |
getDirectory :: Repository down -> IO Directory Source #
Read the Hackage index directory
Should only be called after checkForUpdates
.
data IndexFile :: Type -> Type where Source #
Files that we might request from the index
The type index tells us the type of the decoded file, if any. For files for
which the library does not support decoding this will be ()
.
NOTE: Clients should NOT rely on this type index being ()
, or they might
break if we add support for parsing additional file formats in the future.
TODO: If we wanted to support legacy Hackage, we should also have a case for the global preferred-versions file. But supporting legacy Hackage will probably require more work anyway..
IndexPkgMetadata :: PackageIdentifier -> IndexFile (Signed Targets) | |
IndexPkgCabal :: PackageIdentifier -> IndexFile () | |
IndexPkgPrefs :: PackageName -> IndexFile () |
data IndexEntry dec Source #
Entry from the Hackage index; see withIndex
.
IndexEntry | |
|
data IndexCallbacks Source #
Various operations that we can perform on the index once its open
Note that IndexEntry
contains a fields both for the raw file contents and
the parsed file contents; clients can choose which to use.
In principle these callbacks will do verification (once we have implemented author signing). Right now they don't need to do that, because the index as a whole will have been verified.
IndexCallbacks | |
|
withIndex :: Repository down -> (IndexCallbacks -> IO a) -> IO a Source #
Look up entries in the Hackage index
This is in withFile
style so that clients can efficiently look up multiple
files from the index.
Should only be called after checkForUpdates
.
Bootstrapping
requiresBootstrap :: Repository down -> IO Bool Source #
Check if we need to bootstrap (i.e., if we have root info)
bootstrap :: (Throws SomeRemoteError, Throws VerificationError) => Repository down -> [KeyId] -> KeyThreshold -> IO () Source #
Bootstrap the chain of trust
New clients might need to obtain a copy of the root metadata. This however represents a chicken-and-egg problem: how can we verify the root metadata we downloaded? The only possibility is to be provided with a set of an out-of-band set of root keys and an appropriate threshold.
Clients who provide a threshold of 0 can do an initial "unsafe" update of the root information, if they wish.
The downloaded root information will _only_ be verified against the
provided keys, and _not_ against previously downloaded root info (if any).
It is the responsibility of the client to call bootstrap
only when this
is the desired behaviour.
Re-exports
Types
newtype FileLength Source #
File length
Having verified file length information means we can protect against endless data attacks and similar.
Instances
Show FileLength Source # | |
Defined in Hackage.Security.TUF.Common showsPrec :: Int -> FileLength -> ShowS # show :: FileLength -> String # showList :: [FileLength] -> ShowS # | |
Eq FileLength Source # | |
Defined in Hackage.Security.TUF.Common (==) :: FileLength -> FileLength -> Bool # (/=) :: FileLength -> FileLength -> Bool # | |
Ord FileLength Source # | |
Defined in Hackage.Security.TUF.Common compare :: FileLength -> FileLength -> Ordering # (<) :: FileLength -> FileLength -> Bool # (<=) :: FileLength -> FileLength -> Bool # (>) :: FileLength -> FileLength -> Bool # (>=) :: FileLength -> FileLength -> Bool # max :: FileLength -> FileLength -> FileLength # min :: FileLength -> FileLength -> FileLength # | |
ReportSchemaErrors m => FromJSON m FileLength Source # | |
Defined in Hackage.Security.TUF.Common fromJSON :: JSValue -> m FileLength Source # | |
Monad m => ToJSON m FileLength Source # | |
Defined in Hackage.Security.TUF.Common toJSON :: FileLength -> m JSValue Source # |
File hash
newtype KeyThreshold Source #
Key threshold
The key threshold is the minimum number of keys a document must be signed
with. Key thresholds are specified in RoleSpec
or DelegationsSpec
.
Instances
File information
This intentionally does not have an Eq
instance; see knownFileInfoEqual
and verifyFileInfo
instead.
NOTE: Throughout we compute file information always over the raw bytes.
For example, when timestamp.json
lists the hash of snapshot.json
, this
hash is computed over the actual snapshot.json
file (as opposed to the
canonical form of the embedded JSON). This brings it in line with the hash
computed over target files, where that is the only choice available.
Instances
Show HashFn Source # | |
Eq HashFn Source # | |
Ord HashFn Source # | |
ReportSchemaErrors m => FromObjectKey m HashFn Source # | |
Defined in Hackage.Security.TUF.FileInfo | |
Monad m => ToObjectKey m HashFn Source # | |
Defined in Hackage.Security.TUF.FileInfo toObjectKey :: HashFn -> m String Source # |
File hash
Utility
fileInfo :: ByteString -> FileInfo Source #
Compute FileInfo
TODO: Currently this will load the entire input bytestring into memory. We need to make this incremental, by computing the length and all hashes in a single traversal over the input.
Re-exports
54-bit integer values
JavaScript can only safely represent numbers between -(2^53 - 1)
and
2^53 - 1
.
TODO: Although we introduce the type here, we don't actually do any bounds
checking and just inherit all type class instance from Int64. We should
probably define fromInteger
to do bounds checking, give different instances
for type classes such as Bounded
and FiniteBits
, etc.
Instances
Mapping from paths to file info
File maps are used in target files; the paths are relative to the location of the target files containing the file map.
data TargetPath Source #
Entries in FileMap
either talk about the repository or the index
Instances
data FileChange Source #
FileChanged FileInfo | File got added or modified; we record the new file info |
FileDeleted | File got deleted |
Instances
Show FileChange Source # | |
Defined in Hackage.Security.TUF.FileMap showsPrec :: Int -> FileChange -> ShowS # show :: FileChange -> String # showList :: [FileChange] -> ShowS # |
:: FileMap | Old |
-> FileMap | New |
-> Map TargetPath FileChange |
class HasHeader a where Source #
fileExpires :: Lens' a FileExpires Source #
File expiry date
fileVersion :: Lens' a FileVersion Source #
File version (monotonically increasing counter)
Instances
HasHeader Header Source # | |
Defined in Hackage.Security.TUF.Header fileExpires :: Lens' Header FileExpires Source # fileVersion :: Lens' Header FileVersion Source # | |
HasHeader Mirrors Source # | |
Defined in Hackage.Security.TUF.Mirrors fileExpires :: Lens' Mirrors FileExpires Source # fileVersion :: Lens' Mirrors FileVersion Source # | |
HasHeader Root Source # | |
Defined in Hackage.Security.TUF.Root fileExpires :: Lens' Root FileExpires Source # fileVersion :: Lens' Root FileVersion Source # | |
HasHeader Snapshot Source # | |
Defined in Hackage.Security.TUF.Snapshot fileExpires :: Lens' Snapshot FileExpires Source # fileVersion :: Lens' Snapshot FileVersion Source # | |
HasHeader Targets Source # | |
Defined in Hackage.Security.TUF.Targets fileExpires :: Lens' Targets FileExpires Source # fileVersion :: Lens' Targets FileVersion Source # | |
HasHeader Timestamp Source # | |
Defined in Hackage.Security.TUF.Timestamp fileExpires :: Lens' Timestamp FileExpires Source # fileVersion :: Lens' Timestamp FileVersion Source # |
newtype FileVersion Source #
File version
The file version is a flat integer which must monotonically increase on every file update.
Show
and Read
instance are defined in terms of the underlying Int
(this is used for example by Hackage during the backup process).
Instances
newtype FileExpires Source #
File expiry date
A Nothing
value here means no expiry. That makes it possible to set some
files to never expire. (Note that not having the Maybe in the type here still
allows that, because you could set an expiry date 2000 years into the future.
By having the Maybe here we avoid the _need_ for such encoding issues.)
Instances
Show FileExpires Source # | |
Defined in Hackage.Security.TUF.Header showsPrec :: Int -> FileExpires -> ShowS # show :: FileExpires -> String # showList :: [FileExpires] -> ShowS # | |
Eq FileExpires Source # | |
Defined in Hackage.Security.TUF.Header (==) :: FileExpires -> FileExpires -> Bool # (/=) :: FileExpires -> FileExpires -> Bool # | |
Ord FileExpires Source # | |
Defined in Hackage.Security.TUF.Header compare :: FileExpires -> FileExpires -> Ordering # (<) :: FileExpires -> FileExpires -> Bool # (<=) :: FileExpires -> FileExpires -> Bool # (>) :: FileExpires -> FileExpires -> Bool # (>=) :: FileExpires -> FileExpires -> Bool # max :: FileExpires -> FileExpires -> FileExpires # min :: FileExpires -> FileExpires -> FileExpires # | |
ReportSchemaErrors m => FromJSON m FileExpires Source # | |
Defined in Hackage.Security.TUF.Header fromJSON :: JSValue -> m FileExpires Source # | |
Monad m => ToJSON m FileExpires Source # | |
Defined in Hackage.Security.TUF.Header toJSON :: FileExpires -> m JSValue Source # |
Occasionally it is useful to read only a header from a file.
HeaderOnly
intentionally only has a FromJSON
instance (no ToJSON
).
Instances
HasHeader Header Source # | |
Defined in Hackage.Security.TUF.Header fileExpires :: Lens' Header FileExpires Source # fileVersion :: Lens' Header FileVersion Source # | |
ReportSchemaErrors m => FromJSON m Header Source # | |
Utility
expiresInDays :: UTCTime -> Integer -> FileExpires Source #
Cache layout
data CacheLayout Source #
Location of the various files we cache
Although the generic TUF algorithms do not care how we organize the cache,
we nonetheless specify this here because as long as there are tools which
access files in the cache directly we need to define the cache layout.
See also comments for defaultCacheLayout
.
CacheLayout | |
|
cabalCacheLayout :: CacheLayout Source #
The cache layout cabal-install uses
We cache the index as cache/00-index.tar
; this is important because
`cabal-install` expects to find it there (and does not currently go through
the hackage-security library to get files from the index).
Repository layout
data IndexLayout Source #
Layout of the files within the index tarball
IndexLayout | |
|
data IndexFile :: Type -> Type where Source #
Files that we might request from the index
The type index tells us the type of the decoded file, if any. For files for
which the library does not support decoding this will be ()
.
NOTE: Clients should NOT rely on this type index being ()
, or they might
break if we add support for parsing additional file formats in the future.
TODO: If we wanted to support legacy Hackage, we should also have a case for the global preferred-versions file. But supporting legacy Hackage will probably require more work anyway..
IndexPkgMetadata :: PackageIdentifier -> IndexFile (Signed Targets) | |
IndexPkgCabal :: PackageIdentifier -> IndexFile () | |
IndexPkgPrefs :: PackageName -> IndexFile () |
hackageIndexLayout :: IndexLayout Source #
The layout of the index as maintained on Hackage
Utility
Repository layout
data RepoLayout Source #
Layout of a repository
RepoLayout | |
|
Instances
MonadReader RepoLayout ReadJSON_Keys_Layout Source # | |
Defined in Hackage.Security.JSON ask :: ReadJSON_Keys_Layout RepoLayout # local :: (RepoLayout -> RepoLayout) -> ReadJSON_Keys_Layout a -> ReadJSON_Keys_Layout a # reader :: (RepoLayout -> a) -> ReadJSON_Keys_Layout a # | |
MonadReader RepoLayout WriteJSON Source # | |
Defined in Hackage.Security.JSON ask :: WriteJSON RepoLayout # local :: (RepoLayout -> RepoLayout) -> WriteJSON a -> WriteJSON a # reader :: (RepoLayout -> a) -> WriteJSON a # |
hackageRepoLayout :: RepoLayout Source #
The layout used on Hackage
cabalLocalRepoLayout :: RepoLayout Source #
Layout used by cabal for ("legacy") local repos
Obviously, such repos do not normally contain any of the TUF files, so their location is more or less arbitrary here.
TUF types
Instances
HasHeader Mirrors Source # | |
Defined in Hackage.Security.TUF.Mirrors fileExpires :: Lens' Mirrors FileExpires Source # fileVersion :: Lens' Mirrors FileVersion Source # | |
VerifyRole Mirrors Source # | |
Defined in Hackage.Security.Trusted verifyRole :: Trusted Root -> TargetPath -> Maybe FileVersion -> Maybe UTCTime -> Signed Mirrors -> Either VerificationError (SignaturesVerified Mirrors) Source # | |
(MonadError DeserializationError m, ReportSchemaErrors m) => FromJSON m Mirrors Source # | |
Monad m => ToJSON m Mirrors Source # | |
MonadKeys m => FromJSON m (Signed Mirrors) Source # | |
Definition of a mirror
NOTE: Unlike the TUF specification, we require that all mirrors must have
the same format. That is, we omit metapath
and targetspath
.
data MirrorContent Source #
Full versus partial mirrors
The TUF spec explicitly allows for partial mirrors, with the mirrors file specifying (through patterns) what is available from partial mirrors.
For now we only support full mirrors; if we wanted to add partial mirrors,
we would add a second MirrorPartial
constructor here with arguments
corresponding to TUF's metacontent
and targetscontent
fields.
Instances
Show MirrorContent Source # | |
Defined in Hackage.Security.TUF.Mirrors showsPrec :: Int -> MirrorContent -> ShowS # show :: MirrorContent -> String # showList :: [MirrorContent] -> ShowS # |
Utility
type MirrorDescription = String Source #
describeMirror :: Mirror -> MirrorDescription Source #
Give a human-readable description of a particular mirror
(for use in error messages)
Repository
The root of the repository
Repository roots can be anchored at a remote URL or a local directory.
Note that even for remote repos RepoRoot
is (potentially) different from
Web
-- for a repository located at, say, http://hackage.haskell.org
they happen to coincide, but for one location at
http://example.com/some/subdirectory
they do not.
Index
The root of the index tarball
Cache
The cache directory
anchorCachePath :: Path root -> CachePath -> Path root Source #
Anchor a cache path to the location of the cache
Datatypes
The root metadata
NOTE: We must have the invariant that ALL keys (apart from delegation keys)
must be listed in rootKeys
. (Delegation keys satisfy a similar invariant,
see Targets.)
Root | |
|
Instances
HasHeader Root Source # | |
Defined in Hackage.Security.TUF.Root fileExpires :: Lens' Root FileExpires Source # fileVersion :: Lens' Root FileVersion Source # | |
VerifyRole Root Source # | |
Defined in Hackage.Security.Trusted verifyRole :: Trusted Root -> TargetPath -> Maybe FileVersion -> Maybe UTCTime -> Signed Root -> Either VerificationError (SignaturesVerified Root) Source # | |
Monad m => ToJSON m Root Source # | |
MonadKeys m => FromJSON m (Signed Root) Source # | We give an instance for Signed Root rather than Root because the key environment from the root data is necessary to resolve the explicit sharing in the signatures. |
Role specification
The phantom type indicates what kind of type this role is meant to verify.
TUF types
Signed | |
|
Instances
MonadKeys m => FromJSON m (Signed Mirrors) Source # | |
MonadKeys m => FromJSON m (Signed Root) Source # | We give an instance for Signed Root rather than Root because the key environment from the root data is necessary to resolve the explicit sharing in the signatures. |
(MonadKeys m, MonadReader RepoLayout m) => FromJSON m (Signed Snapshot) Source # | |
MonadKeys m => FromJSON m (Signed Targets) Source # | |
(MonadKeys m, MonadReader RepoLayout m) => FromJSON m (Signed Timestamp) Source # | |
(Monad m, ToJSON m a) => ToJSON m (Signed a) Source # | |
newtype Signatures Source #
A list of signatures
Invariant: each signature must be made with a different key.
We enforce this invariant for incoming untrusted data (fromPreSignatures
)
but not for lists of signatures that we create in code.
Instances
MonadKeys m => FromJSON m Signatures Source # | |
Defined in Hackage.Security.TUF.Signed fromJSON :: JSValue -> m Signatures Source # | |
Monad m => ToJSON m Signatures Source # | |
Defined in Hackage.Security.TUF.Signed toJSON :: Signatures -> m JSValue Source # |
Construction and verification
withSignatures :: ToJSON WriteJSON a => RepoLayout -> [Some Key] -> a -> Signed a Source #
Sign a document
withSignatures' :: ToJSON Identity a => [Some Key] -> a -> Signed a Source #
Variation on withSignatures
that doesn't need the repo layout
signRendered :: [Some Key] -> ByteString -> Signatures Source #
Construct signatures for already rendered value
verifySignature :: ByteString -> Signature -> Bool Source #
JSON aids
signedFromJSON :: (MonadKeys m, FromJSON m a) => JSValue -> m (Signed a) Source #
General FromJSON instance for signed datatypes
We don't give a general FromJSON instance for Signed because for some datatypes we need to do something special (datatypes where we need to read key environments); for instance, see the "Signed Root" instance.
verifySignatures :: JSValue -> Signatures -> Bool Source #
Signature verification
NOTES: 1. By definition, the signature must be verified against the canonical JSON format. This means we _must_ parse and then pretty print (as we do here) because the document as stored may or may not be in canonical format. 2. However, it is important that we NOT translate from the JSValue to whatever internal datatype we are using and then back to JSValue, because that may not roundtrip: we must allow for additional fields in the JSValue that we ignore (and would therefore lose when we attempt to roundtrip). 3. We verify that all signatures are valid, but we cannot verify (here) that these signatures are signed with the right key, or that we have a sufficient number of signatures. This will be the responsibility of the calling code.
Avoid interpreting signatures
data UninterpretedSignatures a Source #
File with uninterpreted signatures
Sometimes we want to be able to read a file without interpreting the signatures (that is, resolving the key IDs) or doing any kind of checks on them. One advantage of this is that this allows us to read many file types without any key environment at all, which is sometimes useful.
Instances
(ReportSchemaErrors m, FromJSON m a) => FromJSON m (UninterpretedSignatures a) Source # | |
Defined in Hackage.Security.TUF.Signed fromJSON :: JSValue -> m (UninterpretedSignatures a) Source # | |
(Monad m, ToJSON m a) => ToJSON m (UninterpretedSignatures a) Source # | |
Defined in Hackage.Security.TUF.Signed toJSON :: UninterpretedSignatures a -> m JSValue Source # | |
Show a => Show (UninterpretedSignatures a) Source # | |
Defined in Hackage.Security.TUF.Signed showsPrec :: Int -> UninterpretedSignatures a -> ShowS # show :: UninterpretedSignatures a -> String # showList :: [UninterpretedSignatures a] -> ShowS # |
data PreSignature Source #
A signature with a key ID (rather than an actual key)
This corresponds precisely to the TUF representation of a signature.
Instances
Show PreSignature Source # | |
Defined in Hackage.Security.TUF.Signed showsPrec :: Int -> PreSignature -> ShowS # show :: PreSignature -> String # showList :: [PreSignature] -> ShowS # | |
ReportSchemaErrors m => FromJSON m PreSignature Source # | |
Defined in Hackage.Security.TUF.Signed fromJSON :: JSValue -> m PreSignature Source # | |
Monad m => ToJSON m PreSignature Source # | |
Defined in Hackage.Security.TUF.Signed toJSON :: PreSignature -> m JSValue Source # |
Utility
fromPreSignature :: MonadKeys m => PreSignature -> m Signature Source #
Convert a pre-signature to a signature
Verifies that the key type matches the advertised method.
fromPreSignatures :: MonadKeys m => [PreSignature] -> m Signatures Source #
Convert a list of PreSignature
s to a list of Signature
s
This verifies the invariant that all signatures are made with different keys. We do this on the presignatures rather than the signatures so that we can do the check on key IDs, rather than keys (the latter don't have an Ord instance).
toPreSignature :: Signature -> PreSignature Source #
Convert signature to pre-signature
toPreSignatures :: Signatures -> [PreSignature] Source #
Convert list of pre-signatures to a list of signatures
Snapshot | |
|
Instances
HasHeader Snapshot Source # | |
Defined in Hackage.Security.TUF.Snapshot fileExpires :: Lens' Snapshot FileExpires Source # fileVersion :: Lens' Snapshot FileVersion Source # | |
VerifyRole Snapshot Source # | |
Defined in Hackage.Security.Trusted verifyRole :: Trusted Root -> TargetPath -> Maybe FileVersion -> Maybe UTCTime -> Signed Snapshot -> Either VerificationError (SignaturesVerified Snapshot) Source # | |
(MonadReader RepoLayout m, MonadError DeserializationError m, ReportSchemaErrors m) => FromJSON m Snapshot Source # | |
MonadReader RepoLayout m => ToJSON m Snapshot Source # | |
(MonadKeys m, MonadReader RepoLayout m) => FromJSON m (Signed Snapshot) Source # | |
TUF types
Target metadata
Most target files do not need expiry dates because they are not subject to change (and hence attacks like freeze attacks are not a concern).
Instances
Show Targets Source # | |
HasHeader Targets Source # | |
Defined in Hackage.Security.TUF.Targets fileExpires :: Lens' Targets FileExpires Source # fileVersion :: Lens' Targets FileVersion Source # | |
MonadKeys m => FromJSON m Targets Source # | |
Monad m => ToJSON m Targets Source # | |
MonadKeys m => FromJSON m (Signed Targets) Source # | |
data Delegations Source #
Delegations
Much like the Root datatype, this must have an invariant that ALL used keys
(apart from the global keys, which are in the root key environment) must
be listed in delegationsKeys
.
Instances
Show Delegations Source # | |
Defined in Hackage.Security.TUF.Targets showsPrec :: Int -> Delegations -> ShowS # show :: Delegations -> String # showList :: [Delegations] -> ShowS # | |
MonadKeys m => FromJSON m Delegations Source # | |
Defined in Hackage.Security.TUF.Targets fromJSON :: JSValue -> m Delegations Source # | |
Monad m => ToJSON m Delegations Source # | |
Defined in Hackage.Security.TUF.Targets toJSON :: Delegations -> m JSValue Source # |
data DelegationSpec Source #
Delegation specification
NOTE: This is a close analogue of RoleSpec
.
Instances
Show DelegationSpec Source # | |
Defined in Hackage.Security.TUF.Targets showsPrec :: Int -> DelegationSpec -> ShowS # show :: DelegationSpec -> String # showList :: [DelegationSpec] -> ShowS # | |
MonadKeys m => FromJSON m DelegationSpec Source # | |
Defined in Hackage.Security.TUF.Targets fromJSON :: JSValue -> m DelegationSpec Source # | |
Monad m => ToJSON m DelegationSpec Source # | |
Defined in Hackage.Security.TUF.Targets toJSON :: DelegationSpec -> m JSValue Source # |
data Delegation Source #
A delegation
A delegation is a pair of a pattern and a replacement.
See match
for an example.
forall a. Delegation (Pattern a) (Replacement a) |
Instances
Show Delegation Source # | |
Defined in Hackage.Security.TUF.Patterns showsPrec :: Int -> Delegation -> ShowS # show :: Delegation -> String # showList :: [Delegation] -> ShowS # | |
Lift Delegation Source # | |
Defined in Hackage.Security.TUF.Patterns lift :: Quote m => Delegation -> m Exp # liftTyped :: forall (m :: Type -> Type). Quote m => Delegation -> Code m Delegation # |
Util
targetsLookup :: TargetPath -> Targets -> Maybe FileInfo Source #
Instances
HasHeader Timestamp Source # | |
Defined in Hackage.Security.TUF.Timestamp fileExpires :: Lens' Timestamp FileExpires Source # fileVersion :: Lens' Timestamp FileVersion Source # | |
VerifyRole Timestamp Source # | |
Defined in Hackage.Security.Trusted verifyRole :: Trusted Root -> TargetPath -> Maybe FileVersion -> Maybe UTCTime -> Signed Timestamp -> Either VerificationError (SignaturesVerified Timestamp) Source # | |
(MonadReader RepoLayout m, MonadError DeserializationError m, ReportSchemaErrors m) => FromJSON m Timestamp Source # | |
MonadReader RepoLayout m => ToJSON m Timestamp Source # | |
(MonadKeys m, MonadReader RepoLayout m) => FromJSON m (Signed Timestamp) Source # | |
Key types
Types abstracting over key types
KeyEd25519 :: PublicKey -> SecretKey -> Key Ed25519 |
data PublicKey a where Source #
Instances
data PrivateKey a where Source #
Instances
SomeEq PrivateKey Source # | |
Defined in Hackage.Security.Key someEq :: DictEq (PrivateKey a) Source # | |
SomeShow PrivateKey Source # | |
Defined in Hackage.Security.Key someShow :: DictShow (PrivateKey a) Source # | |
Show (PrivateKey typ) Source # | |
Defined in Hackage.Security.Key showsPrec :: Int -> PrivateKey typ -> ShowS # show :: PrivateKey typ -> String # showList :: [PrivateKey typ] -> ShowS # | |
Eq (PrivateKey typ) Source # | |
Defined in Hackage.Security.Key (==) :: PrivateKey typ -> PrivateKey typ -> Bool # (/=) :: PrivateKey typ -> PrivateKey typ -> Bool # |
Key types in isolation
Hiding key types
Operations on keys
privateKey :: Key a -> PrivateKey a Source #
Key IDs
The key ID of a key, by definition, is the hexdigest of the SHA-256 hash of the canonical JSON form of the key where the private object key is excluded.
NOTE: The FromJSON and ToJSON instances for KeyId are intentionally omitted. Use writeKeyAsId instead.
Signing
sign :: PrivateKey typ -> ByteString -> ByteString Source #
Sign a bytestring and return the signature
TODO: It is unfortunate that we have to convert to a strict bytestring for ed25519
verify :: PublicKey typ -> ByteString -> ByteString -> Bool Source #
We only a few bits from .Repository
data Repository down Source #
Repository
This is an abstract representation of a repository. It simply provides a way to download metafiles and target files, without specifying how this is done. For instance, for a local repository this could just be doing a file read, whereas for remote repositories this could be using any kind of HTTP client.
Instances
Show (Repository down) Source # | |
Defined in Hackage.Security.Client.Repository showsPrec :: Int -> Repository down -> ShowS # show :: Repository down -> String # showList :: [Repository down] -> ShowS # |
class DownloadedFile (down :: Type -> Type) where Source #
downloadedVerify :: down a -> Trusted FileInfo -> IO Bool Source #
Verify a download file
downloadedRead :: down Metadata -> IO ByteString Source #
Read the file we just downloaded into memory
We never read binary data, only metadata.
downloadedCopyTo :: down a -> Path Absolute -> IO () Source #
Copy a downloaded file to its destination
Instances
DownloadedFile LocalFile Source # | |
Defined in Hackage.Security.Client.Repository.Local | |
DownloadedFile RemoteTemp Source # | |
Defined in Hackage.Security.Client.Repository.Remote downloadedVerify :: RemoteTemp a -> Trusted FileInfo -> IO Bool Source # downloadedRead :: RemoteTemp Metadata -> IO ByteString Source # downloadedCopyTo :: RemoteTemp a -> Path Absolute -> IO () Source # |
data SomeRemoteError :: Type where Source #
Repository-specific exceptions
For instance, for repositories using HTTP this might correspond to a 404; for local repositories this might correspond to file-not-found, etc.
SomeRemoteError :: Exception e => e -> SomeRemoteError |
Instances
Exception SomeRemoteError Source # | |
Defined in Hackage.Security.Client.Repository | |
Show SomeRemoteError Source # | |
Defined in Hackage.Security.Client.Repository showsPrec :: Int -> SomeRemoteError -> ShowS # show :: SomeRemoteError -> String # showList :: [SomeRemoteError] -> ShowS # | |
Pretty SomeRemoteError Source # | |
Defined in Hackage.Security.Client.Repository pretty :: SomeRemoteError -> String Source # |
data LogMessage Source #
Log messages
We use a RemoteFile
rather than a RepoPath
here because we might not have
a RepoPath
for the file that we were trying to download (that is, for
example if the server does not provide an uncompressed tarball, it doesn't
make much sense to list the path to that non-existing uncompressed tarball).
LogRootUpdated | Root information was updated This message is issued when the root information is updated as part of the normal check for updates procedure. If the root information is updated because of a verification error WarningVerificationError is issued instead. |
LogVerificationError VerificationError | A verification error Verification errors can be temporary, and may be resolved later; hence these are just warnings. (Verification errors that cannot be resolved are thrown as exceptions.) |
forall fs typ. LogDownloading (RemoteFile fs typ) | Download a file from a repository |
forall fs. LogUpdating (RemoteFile fs Binary) | Incrementally updating a file from a repository |
LogSelectedMirror MirrorDescription | Selected a particular mirror |
forall fs. LogCannotUpdate (RemoteFile fs Binary) UpdateFailure | Updating a file failed (we will instead download it whole) |
LogMirrorFailed MirrorDescription SomeException | We got an exception with a particular mirror (we will try with a different mirror if any are available) |
LogLockWait (Path Absolute) | This log event is triggered before invoking a filesystem lock
operation that may block for a significant amount of time; once
the possibly blocking call completes successfully,
Since: 0.6.0 |
LogLockWaitDone (Path Absolute) | Denotes completion of the operation that advertised a
Since: 0.6.0 |
LogUnlock (Path Absolute) | Denotes the filesystem lock previously acquired (signaled by
Since: 0.6.0 |
Instances
Pretty LogMessage Source # | |
Defined in Hackage.Security.Client.Repository pretty :: LogMessage -> String Source # |
Exceptions
uncheckClientErrors :: ((Throws VerificationError, Throws SomeRemoteError, Throws InvalidPackageException) => IO a) -> IO a Source #
Re-throw all exceptions thrown by the client API as unchecked exceptions
data VerificationError Source #
Errors thrown during role validation
VerificationErrorSignatures TargetPath Integer [KeyId] [KeyId] | Not enough signatures signed with the appropriate keys |
VerificationErrorExpired TargetPath | The file is expired |
VerificationErrorVersion TargetPath | The file version is less than the previous version |
VerificationErrorFileInfo TargetPath | File information mismatch |
VerificationErrorUnknownTarget TargetPath | We tried to lookup file information about a particular target file,
but the information wasn't in the corresponding |
VerificationErrorMissingSHA256 TargetPath | The metadata for the specified target is missing a SHA256 |
VerificationErrorDeserialization TargetPath DeserializationError | Some verification errors materialize as deserialization errors For example: if we try to deserialize a timestamp file but the timestamp
key has been rolled over, deserialization of the file will fail with
|
VerificationErrorLoop VerificationHistory | The spec stipulates that if a verification error occurs during the check for updates, we must download new root information and start over. However, we limit how often we attempt this. We record all verification errors that occurred before we gave up. |
Instances
Exception VerificationError Source # | |
Defined in Hackage.Security.Trusted.TCB | |
Show VerificationError Source # | |
Defined in Hackage.Security.Trusted.TCB showsPrec :: Int -> VerificationError -> ShowS # show :: VerificationError -> String # showList :: [VerificationError] -> ShowS # | |
Pretty VerificationError Source # | |
Defined in Hackage.Security.Trusted.TCB pretty :: VerificationError -> String Source # |
data RootUpdated Source #
Root metadata updated (as part of the normal update process)
Instances
Exception RootUpdated Source # | |
Defined in Hackage.Security.Trusted.TCB | |
Show RootUpdated Source # | |
Defined in Hackage.Security.Trusted.TCB showsPrec :: Int -> RootUpdated -> ShowS # show :: RootUpdated -> String # showList :: [RootUpdated] -> ShowS # | |
Pretty RootUpdated Source # | |
Defined in Hackage.Security.Trusted.TCB pretty :: RootUpdated -> String Source # |
data InvalidPackageException Source #
Instances
Exception InvalidPackageException Source # | |
Show InvalidPackageException Source # | |
Defined in Hackage.Security.Client showsPrec :: Int -> InvalidPackageException -> ShowS # show :: InvalidPackageException -> String # showList :: [InvalidPackageException] -> ShowS # | |
Pretty InvalidPackageException Source # | |
Defined in Hackage.Security.Client |
data InvalidFileInIndex Source #
forall dec. InvalidFileInIndex | |
Instances
Exception InvalidFileInIndex Source # | |
Defined in Hackage.Security.Client | |
Show InvalidFileInIndex Source # | |
Defined in Hackage.Security.Client showsPrec :: Int -> InvalidFileInIndex -> ShowS # show :: InvalidFileInIndex -> String # showList :: [InvalidFileInIndex] -> ShowS # | |
Pretty InvalidFileInIndex Source # | |
Defined in Hackage.Security.Client pretty :: InvalidFileInIndex -> String Source # |
data LocalFileCorrupted Source #
Instances
Exception LocalFileCorrupted Source # | |
Defined in Hackage.Security.Client | |
Show LocalFileCorrupted Source # | |
Defined in Hackage.Security.Client showsPrec :: Int -> LocalFileCorrupted -> ShowS # show :: LocalFileCorrupted -> String # showList :: [LocalFileCorrupted] -> ShowS # | |
Pretty LocalFileCorrupted Source # | |
Defined in Hackage.Security.Client pretty :: LocalFileCorrupted -> String Source # |