- Getting Started
- Dependency Resolution Using Registry
- Dependency Download From Registry
- Publishing to Registry
- SwiftPM Registry Configuration
SwiftPM supports downloading dependencies from any package registry that implements SE-0292 and the corresponding service specification.
In a registry, packages are identified by package identifier
in the form of scope.package-name
.
A registry can be configured in SwiftPM at two levels:
- Project: the registry will be used for packages within the project. Settings are stored in
.swiftpm/configuration/registries.json
. - User: the registry will be used for all projects for the user. Settings are stored in
~/.swiftpm/configuration/registries.json
.
One could use the swift package-registry set
subcommand
to assign a registry URL:
$ swift package-registry set https://packages.example.com
The above sets registry to https://packages.example.com
at project level. Pass
the --global
option to set registry at user level:
$ swift package-registry set --global https://packages.example.com
The resulting registries.json
would look something like:
{
"registries" : {
"[default]" : {
"url": "https://packages.example.com"
}
},
"version" : 1
}
The JSON key [default]
means that the registry at https://packages.example.com
is
"unscoped" and will be applied when there is no registry association found for
a given scope.
In this example, https://packages.example.com
will be applied to all scopes.
A registry package dependency is declared in Package.swift
using the
package identifier. For example:
dependencies: [
.package(id: "mona.LinkedList", .upToNextMajor(from: "1.0.0")),
],
SwiftPM will query the registry mapped to a package's scope to resolve and download the appropriate release version.
If a registry requires authentication, it can be set up by using the
swift package-registry login
subcommand
introduced by SE-0378:
$ swift package-registry login
OVERVIEW: Log in to a registry
USAGE: swift package-registry login [<url>] [--username <username>] [--password <password>] [--token <token>] [--no-confirm]
ARGUMENTS:
<url> The registry URL
OPTIONS:
--username <username> Username
--password <password> Password
--token <token> Access token
--no-confirm Allow writing to netrc file without confirmation
Currently, basic and token authentication are supported.
Provide the credentials either by setting the corresponding options (i.e., one of username/password or access token) or when prompted:
$ swift package-registry login https://packages.example.com
SwiftPM will save the credentials to the operating system's credential store
(e.g., Keychain in macOS) or netrc file (which by default is located at ~/.netrc
)
and apply them automatically when making registry API requests.
Resolving a registry dependency involves these steps:
- Fetch a package's available versions by calling the list package releases API.
- Compute the dependency graph by fetching manifest(s) for a package release.
- Pinpoint the package version to use.
Here is an example of a source control dependency:
dependencies: [
.package(id: "https://github.com/mona/LinkedList", .upToNextMajor(from: "1.0.0")),
],
Registry can be used for source control dependencies as well. This is
particularly useful when there is a "mixed" graph (i.e., a dependency
graph that has both source control and registry dependencies). SwiftPM
considers packages with different origins to be different, so if a
package is referenced as both a registry (e.g., mona.LinkedList
) and
source control (e.g., https://github.com/mona/LinkedList
) dependency,
they are considered different even though they are the same package,
and would result in symbol clashes.
SwiftPM can deduplicate packages by performing a
lookup on the source control URL
(e.g., https://github.com/mona/LinkedList
) to see if it is associated with
any package identifier (e.g., mona.LinkedList
).
One can control if/how SwiftPM should use registry in conjunction with source control dependencies by setting one of these flags:
--disable-scm-to-registry-transformation
(default): SwiftPM will not transform source control dependency to registry dependency. Source control dependency will be downloaded from its corresponding URL, while registry dependency will be resolved and downloaded using the configured registry (if any).--use-registry-identity-for-scm
: SwiftPM will look up source control dependencies in the registry and use their registry identity whenever possible to help deduplicate packages across the two origins. In other words, supposemona.LinkedList
is the package identifier forhttps://github.com/mona/LinkedList
, then SwiftPM will treat both references in the dependency graph as the same package.--replace-scm-with-registry
: SwiftPM will look up source control dependencies in the registry and use the registry to retrieve them instead of source control when possible. In other words, SwiftPM will attempt to download a source control dependency from the registry first, and fall back to cloning the source repository iff the dependency is not found in the registry.
After a registry dependency is resolved, SwiftPM can download source archive of the computed package version from the registry.
SwiftPM performs checksum TOFU
(trust-on-first-use)
on the downloaded source archive. If the archive is downloaded
for the first time, SwiftPM
fetches metadata of the package release
to obtain the expected checksum. Otherwise, SwiftPM
compares the checksum with that in local storage (~/.swiftpm/security/fingerprints/
)
saved from previous download.
If checksum of the downloaded archive doesn't match the expected
or previous value, SwiftPM will fail the build. This can be
tuned down from error to warning by setting the build option
--resolver-fingerprint-checking
to warn
(default is strict
).
Checksum TOFU is also done for manifests downloaded from registry.
SE-0391
adds package signing support to SwiftPM. SwiftPM determines if
a downloaded archive is signed by checking for presence of the
X-Swift-Package-Signature-Format
and X-Swift-Package-Signature
headers in the HTTP response.
SwiftPM then performs a series of validations based on user's security configuration.
- If the archive is unsigned, SwiftPM will error/prompt/warn/allow
based on the
signing.onUnsigned
configuration. - If the archive is signed, SwiftPM will validate the signature and the signing certificate chain. (see the following sections for details)
A certificate is trusted if it is chained to any root in SwiftPM's trust store, which consists of:
- SwiftPM's default trust store, if
signing.includeDefaultTrustedRootCertificates
istrue
. - Custom root(s) in the configured trusted roots directory at
signing.trustedRootCertificatesPath
. Certificates must be DER-encoded.
Otherwise, a certificate is untrusted and handled according to the
signing.onUntrustedCertificate
configuration. If user opts to
continue with the untrusted certificate, SwiftPM will proceed with
the archive as if it were an unsigned package.
SwiftPM requires all certificates used for package signing to have the "code signing" extended key usage extension. They must also satisfy the core policies from RFC 5280, as implemented by swift-certificates.
User can configure certificate expiry and revocation check
through the signing.validationChecks.certificateExpiration
and signing.validationChecks.certificateRevocation
configuration,
respectively. Note that revocation check implicitly requires
expiry check.
An invalid signing certificate would result in SwiftPM rejecting the archive.
Some certificates allow SwiftPM to extract additional information about the signing identity. For packages signed with these certificates, SwiftPM will perform publisher TOFU to ensure the signer remains the same across all versions of the package.
The --resolver-signing-entity-checking
option controls whether publisher
mismatch should result in a warning (warn
) or error (strict
).
Data used by publisher TOFU is saved to ~/.swiftpm/security/signing-entities/
.
swift package-registry publish
is an all-in-one command for publishing a package release to registry:
OVERVIEW: Publish to a registry
USAGE: swift package-registry publish <package-id> <package-version> [--url <url>] [--scratch-directory <scratch-directory>] [--metadata-path <metadata-path>] [--signing-identity <signing-identity>] [--private-key-path <private-key-path>] [--cert-chain-paths <cert-chain-paths> ...] [--dry-run]
ARGUMENTS:
<package-id> The package identifier.
<package-version> The package release version being created.
OPTIONS:
--url, --registry-url <url>
The registry URL.
--scratch-directory <scratch-directory>
The path of the directory where working file(s) will be written.
--metadata-path <metadata-path>
The path to the package metadata JSON file if it is not 'package-metadata.json' in the package directory.
--signing-identity <signing-identity>
The label of the signing identity to be retrieved from the system's identity store if supported.
--private-key-path <private-key-path>
The path to the certificate's PKCS#8 private key (DER-encoded).
--cert-chain-paths <cert-chain-paths>
Path(s) to the signing certificate (DER-encoded) and optionally the rest of the certificate chain. Certificates
should be ordered with the leaf first and the root last.
--dry-run Dry run only; prepare the archive and sign it but do not publish to the registry.
The command creates source archive for the package release, optionally signs the package release, and publishes the package release to the registry.
If authentication is required for package publication,
package author should configure registry login
before running publish
.
Package author can specify a custom location of the package
release metadata file by setting the --metadata-path
option
of the publish
subcommand. Otherwise, by default SwiftPM
looks for a file named package-metadata.json
in the
package directory.
Contents of the metadata file must conform to the JSON schema defined in SE-0391. Also refer to registry documentation for any additional requirements.
A registry may support or require signing. To sign a package
release, package author will need to set either the signing-identity
(for reading from operating system's identity store such as Keychain in macOS),
or private-key-path
and cert-chain-paths
(for reading from files)
options of the publish
subcommand such that SwiftPM can
locate the signing key and certificate.
If the certificate chain's root and intermediates are known by SwiftPM,
then package author would only need to provide the leaf signing
certificate in cert-chain-paths
.
Otherwise, the entire certificate chain should be provided as
cert-chain-paths
so that all of the certificates will be
included in the signature and make it possible for SwiftPM
to reconstruct the certificate chain for validation later.
This is applicable to signing-identity
as well
(i.e., signing-identity
can be used in combination with
cert-chain-paths
to provide the entire certificate chain).
If the root of the signing certificate is not in SwiftPM's default trust store, package author is responsible for telling package users to include the root certificate in their local trust roots directory, or else signature validation may fail upon download because the signing certificate is not trusted.
Refer to registry documentation for its certificate policy.
Signature Format | Specification |
---|---|
cms-1.0.0 |
SE-391 |
Since there is only one supported signature format, all
signatures produced by SwiftPM are in cms-1.0.0
.
The signature is detached and sent as part of the HTTP request to the publish API. It is included in the source archive download response as HTTP headers, and is part of the package release metadata.
The signature is detached and sent as part of the HTTP request to the publish API. The current API specification does not include an endpoint for fetching this metadata in its original form.
Package.swift
and version-specific manifests are individually signed.
The signature is embedded in the corresponding manifest file. The source
archive is generated and signed after manifest signing.
// swift-tools-version: 5.7
import PackageDescription
let package = Package(
name: "library",
products: [ .library(name: "library", targets: ["library"]) ],
targets: [ .target(name: "library") ]
)
// signature: cms-1.0.0;l1TdTeIuGdNsO1FQ0ptD64F5nSSOsQ5WzhM6/7KsHRuLHfTsggnyIWr0DxMcBj5F40zfplwntXAgS0ynlqvlFw==
When a manifest is fetched from the registry, SwiftPM checks if the containing source archive is signed by fetching the package release metadata. It is a failure if the source archive is signed but the manifest is not. SwiftPM will extract and parse signature from the manifest then validate it similar to what is done for source archive signature.
SwiftPM performs publisher TOFU to ensure it remains consistent for the package. This implies the signer of manifests and source archive must be the same.
To reduce the amount of logging and thus noise, diagnostics related
to manifest signature validation are set to DEBUG level. Only when
user chooses the prompt
option for unsigned packages or packages
signed with an untrusted certificate would SwiftPM behave like
source archive validation.
When resolving or downloading registry packages, SwiftPM looks at the registry-to-scope mappings in project and user-level configuration to determine which registry is assigned for a package's scope.
For example, given the following configuration files:
// User-level configuration (~/.swiftpm/configuration/registries.json)
{
"registries": {
"[default]": {
"url": "https://global.example.com"
},
"foo": {
"url": "https://global.example.com"
},
},
"version": 1
}
// Local configuration (.swiftpm/configuration/registries.json)
{
"registries": {
"foo": {
"url": "https://local.example.com"
}
},
"version": 1
}
- For package
foo.LinkedList
, the registry athttps://local.example.com
is used. (Local configuration has higher precedence than user-level configuration.) - For package
bar.LinkedList
, the registry athttps://global.example.com
is used. (No mapping for scopebar
is found, so[default]
is used.)
$ swift package-registry set
OVERVIEW: Set a custom registry
USAGE: swift package-registry set [--global] [--scope <scope>] <url>
ARGUMENTS:
<url> The registry URL
OPTIONS:
--global Apply settings to all projects for this user
--scope <scope> Associate the registry with a given scope
This subcommand is used to assign registry at project or user-level:
# project-level
$ swift package-registry set https://packages.example.com
# user-level
$ swift package-registry set --global https://global.example.com
For a specific scope:
# project-level
$ swift package-registry set --scope foo https://local.example.com
# user-level
$ swift package-registry set --scope foo --global https://global.example.com
To remove a registry assignment, use the swift package-registry unset
subcommand.
Registry security configuration are specified in the user-level registries.json
(~/.swiftpm/configuration/registries.json
):
{
"security": {
"default": {
"signing": {
"onUnsigned": "prompt", // One of: "error", "prompt", "warn", "silentAllow"
"onUntrustedCertificate": "prompt", // One of: "error", "prompt", "warn", "silentAllow"
"trustedRootCertificatesPath": "~/.swiftpm/security/trusted-root-certs/",
"includeDefaultTrustedRootCertificates": true,
"validationChecks": {
"certificateExpiration": "disabled", // One of: "enabled", "disabled"
"certificateRevocation": "disabled" // One of: "strict", "allowSoftFail", "disabled"
}
}
},
"registryOverrides": {
// The example shows all configuration overridable at registry level
"packages.example.com": {
"signing": {
"onUnsigned": "warn",
"onUntrustedCertificate": "warn",
"trustedRootCertificatesPath": <STRING>,
"includeDefaultTrustedRootCertificates": <BOOL>,
"validationChecks": {
"certificateExpiration": "enabled",
"certificateRevocation": "allowSoftFail"
}
}
}
},
"scopeOverrides": {
// The example shows all configuration overridable at scope level
"mona": {
"signing": {
"trustedRootCertificatesPath": <STRING>,
"includeDefaultTrustedRootCertificates": <BOOL>
}
}
},
"packageOverrides": {
// The example shows all configuration overridable at package level
"mona.LinkedList": {
"signing": {
"trustedRootCertificatesPath": <STRING>,
"includeDefaultTrustedRootCertificates": <BOOL>
}
}
}
},
...
}
There are multiple levels of overrides. Configuration for a package is computed using values from the following (in descending precedence):
packageOverrides
(if any)scopeOverrides
(if any)registryOverrides
(if any)default
The default
JSON object in the example above contains all
configurable security options and their default value when
there is no override.
-
signing.onUnsigned
: Indicates how SwiftPM will handle an unsigned package.Option Description error
SwiftPM will reject the package and fail the build. prompt
SwiftPM will prompt user to see if the unsigned package should be allowed. - If no, SwiftPM will reject the package and fail the build.
- If yes and the package has never been downloaded, its checksum will be stored for checksum TOFU. Otherwise, if the package has been downloaded before, its checksum must match the previous value or else SwiftPM will reject the package and fail the build.
warn
SwiftPM will not prompt user but will emit a warning before proceeding. silentAllow
SwiftPM will allow the unsigned package without prompting user or emitting warning. -
signing.onUntrustedCertificate
: Indicates how SwiftPM will handle a package signed with an untrusted certificate.Option Description error
SwiftPM will reject the package and fail the build. prompt
SwiftPM will prompt user to see if the package signed with an untrusted certificate should be allowed. - If no, SwiftPM will reject the package and fail the build.
- If yes, SwiftPM will proceed with the package as if it were an unsigned package.
warn
SwiftPM will not prompt user but will emit a warning before proceeding. silentAllow
SwiftPM will allow the package signed with an untrusted certificate without prompting user or emitting warning. -
signing.trustedRootCertificatesPath
: Absolute path to the directory containing custom trusted roots. SwiftPM will include these roots in its trust store, and certificates used for package signing must chain to roots found in this store. This configuration allows override at the package, scope, and registry levels. -
signing.includeDefaultTrustedRootCertificates
: Indicates if SwiftPM should include default trusted roots in its trust store. This configuration allows override at the package, scope, and registry levels. -
signing.validationChecks
: Validation check settings for the package signature.Validation Description certificateExpiration
enabled
: SwiftPM will check that the current timestamp when downloading falls within the signing certificate's validity period. If it doesn't, SwiftPM will reject the package and fail the build.disabled
: SwiftPM will not perform this check.
certificateRevocation
With the exception of disabled
, SwiftPM will check revocation status of the signing certificate. Currently, SwiftPM only supports revocation check done through OCSP.strict
: Revocation check must complete successfully and the certificate must be in good status. SwiftPM will reject the package and fail the build if the revocation status is revoked or unknown (including revocation check not supported or failed).allowSoftFail
: SwiftPM will reject the package and fail the build iff the certificate has been revoked. SwiftPM will allow the certificate's revocation status to be unknown (including revocation check not supported or failed).disabled
: SwiftPM will not perform this check.