2020-03-16 11:18:00 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-10-10 09:41:45 +08:00
|
|
|
package caddytls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
2020-04-02 23:43:33 +08:00
|
|
|
"encoding/json"
|
2019-10-10 09:41:45 +08:00
|
|
|
"fmt"
|
|
|
|
"math/big"
|
2024-09-26 04:30:56 +08:00
|
|
|
"slices"
|
2019-10-10 09:41:45 +08:00
|
|
|
|
2020-03-07 14:15:25 +08:00
|
|
|
"github.com/caddyserver/certmagic"
|
2024-07-25 01:01:06 +08:00
|
|
|
|
|
|
|
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
2019-10-10 09:41:45 +08:00
|
|
|
)
|
|
|
|
|
2020-02-15 02:00:46 +08:00
|
|
|
// CustomCertSelectionPolicy represents a policy for selecting the certificate
|
|
|
|
// used to complete a handshake when there may be multiple options. All fields
|
2019-10-10 09:41:45 +08:00
|
|
|
// specified must match the candidate certificate for it to be chosen.
|
|
|
|
// This was needed to solve https://github.com/caddyserver/caddy/issues/2588.
|
2020-02-07 03:55:26 +08:00
|
|
|
type CustomCertSelectionPolicy struct {
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
// The certificate must have one of these serial numbers.
|
2020-04-02 23:43:33 +08:00
|
|
|
SerialNumber []bigInt `json:"serial_number,omitempty"`
|
2019-10-10 09:41:45 +08:00
|
|
|
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
// The certificate must have one of these organization names.
|
|
|
|
SubjectOrganization []string `json:"subject_organization,omitempty"`
|
|
|
|
|
|
|
|
// The certificate must use this public key algorithm.
|
|
|
|
PublicKeyAlgorithm PublicKeyAlgorithm `json:"public_key_algorithm,omitempty"`
|
|
|
|
|
|
|
|
// The certificate must have at least one of the tags in the list.
|
|
|
|
AnyTag []string `json:"any_tag,omitempty"`
|
|
|
|
|
|
|
|
// The certificate must have all of the tags in the list.
|
|
|
|
AllTags []string `json:"all_tags,omitempty"`
|
2019-10-10 09:41:45 +08:00
|
|
|
}
|
|
|
|
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
// SelectCertificate implements certmagic.CertificateSelector. It
|
|
|
|
// only chooses a certificate that at least meets the criteria in
|
|
|
|
// p. It then chooses the first non-expired certificate that is
|
|
|
|
// compatible with the client. If none are valid, it chooses the
|
|
|
|
// first viable candidate anyway.
|
|
|
|
func (p CustomCertSelectionPolicy) SelectCertificate(hello *tls.ClientHelloInfo, choices []certmagic.Certificate) (certmagic.Certificate, error) {
|
|
|
|
viable := make([]certmagic.Certificate, 0, len(choices))
|
|
|
|
|
|
|
|
nextChoice:
|
2019-10-10 09:41:45 +08:00
|
|
|
for _, cert := range choices {
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
if len(p.SerialNumber) > 0 {
|
|
|
|
var found bool
|
|
|
|
for _, sn := range p.SerialNumber {
|
2023-08-24 10:47:54 +08:00
|
|
|
snInt := sn.Int // avoid taking address of iteration variable (gosec warning)
|
|
|
|
if cert.Leaf.SerialNumber.Cmp(&snInt) == 0 {
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(p.SubjectOrganization) > 0 {
|
2024-09-26 04:30:56 +08:00
|
|
|
found := slices.ContainsFunc(p.SubjectOrganization, func(s string) bool {
|
|
|
|
return slices.Contains(cert.Leaf.Subject.Organization, s)
|
|
|
|
})
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
if !found {
|
|
|
|
continue
|
|
|
|
}
|
2019-10-10 09:41:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if p.PublicKeyAlgorithm != PublicKeyAlgorithm(x509.UnknownPublicKeyAlgorithm) &&
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
PublicKeyAlgorithm(cert.Leaf.PublicKeyAlgorithm) != p.PublicKeyAlgorithm {
|
2019-10-10 09:41:45 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
if len(p.AnyTag) > 0 {
|
|
|
|
var found bool
|
|
|
|
for _, tag := range p.AnyTag {
|
|
|
|
if cert.HasTag(tag) {
|
|
|
|
found = true
|
2019-10-10 09:41:45 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
if !found {
|
2019-10-10 09:41:45 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
if len(p.AllTags) > 0 {
|
|
|
|
for _, tag := range p.AllTags {
|
|
|
|
if !cert.HasTag(tag) {
|
|
|
|
continue nextChoice
|
|
|
|
}
|
|
|
|
}
|
2019-10-10 09:41:45 +08:00
|
|
|
}
|
|
|
|
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
// this certificate at least meets the policy's requirements,
|
|
|
|
// but we still have to check expiration and compatibility
|
|
|
|
viable = append(viable, cert)
|
2019-10-10 09:41:45 +08:00
|
|
|
}
|
caddytls: Refactor certificate selection policies (close #1575)
Certificate selection used to be a module, but this seems unnecessary,
especially since the built-in CustomSelectionPolicy allows quite complex
selection logic on a number of fields in certs. If we need to extend
that logic, we can, but I don't think there are SO many possibilities
that we need modules.
This update also allows certificate selection to choose between multiple
matching certs based on client compatibility and makes a number of other
improvements in the default cert selection logic, both here and in the
latest CertMagic.
The hardest part of this was the conn policy consolidation logic
(Caddyfile only, of course). We have to merge connection policies that
we can easily combine, because if two certs are manually loaded in a
Caddyfile site block, that produces two connection policies, and each
cert is tagged with a different tag, meaning only the first would ever
be selected. So given the same matchers, we can merge the two, but this
required improving the Tag selection logic to support multiple tags to
choose from, hence "tags" changed to "any_tag" or "all_tags" (but we
use any_tag in our Caddyfile logic).
Combining conn policies with conflicting settings is impossible, so
that should return an error if two policies with the exact same matchers
have non-empty settings that are not the same (the one exception being
any_tag which we can merge because the logic for them is to OR them).
It was a bit complicated. It seems to work in numerous tests I've
conducted, but we'll see how it pans out in the release candidates.
2020-04-02 10:49:35 +08:00
|
|
|
|
|
|
|
if len(viable) == 0 {
|
|
|
|
return certmagic.Certificate{}, fmt.Errorf("no certificates matched custom selection policy")
|
|
|
|
}
|
|
|
|
|
|
|
|
return certmagic.DefaultCertificateSelector(hello, viable)
|
2019-10-10 09:41:45 +08:00
|
|
|
}
|
|
|
|
|
2024-07-25 01:01:06 +08:00
|
|
|
// UnmarshalCaddyfile sets up the CustomCertSelectionPolicy from Caddyfile tokens. Syntax:
|
|
|
|
//
|
|
|
|
// cert_selection {
|
|
|
|
// all_tags <values...>
|
|
|
|
// any_tag <values...>
|
|
|
|
// public_key_algorithm <dsa|ecdsa|rsa>
|
|
|
|
// serial_number <big_integers...>
|
|
|
|
// subject_organization <values...>
|
|
|
|
// }
|
|
|
|
func (p *CustomCertSelectionPolicy) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
|
|
|
|
_, wrapper := d.Next(), d.Val() // consume wrapper name
|
|
|
|
|
|
|
|
// No same-line options are supported
|
|
|
|
if d.CountRemainingArgs() > 0 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
|
|
|
|
var hasPublicKeyAlgorithm bool
|
|
|
|
for nesting := d.Nesting(); d.NextBlock(nesting); {
|
|
|
|
optionName := d.Val()
|
|
|
|
switch optionName {
|
|
|
|
case "all_tags":
|
|
|
|
if d.CountRemainingArgs() == 0 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
p.AllTags = append(p.AllTags, d.RemainingArgs()...)
|
|
|
|
case "any_tag":
|
|
|
|
if d.CountRemainingArgs() == 0 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
p.AnyTag = append(p.AnyTag, d.RemainingArgs()...)
|
|
|
|
case "public_key_algorithm":
|
|
|
|
if hasPublicKeyAlgorithm {
|
|
|
|
return d.Errf("duplicate %s option '%s'", wrapper, optionName)
|
|
|
|
}
|
|
|
|
if d.CountRemainingArgs() != 1 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
d.NextArg()
|
|
|
|
if err := p.PublicKeyAlgorithm.UnmarshalJSON([]byte(d.Val())); err != nil {
|
|
|
|
return d.Errf("parsing %s option '%s': %v", wrapper, optionName, err)
|
|
|
|
}
|
|
|
|
hasPublicKeyAlgorithm = true
|
|
|
|
case "serial_number":
|
|
|
|
if d.CountRemainingArgs() == 0 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
for d.NextArg() {
|
|
|
|
val, bi := d.Val(), bigInt{}
|
|
|
|
_, ok := bi.SetString(val, 10)
|
|
|
|
if !ok {
|
|
|
|
return d.Errf("parsing %s option '%s': invalid big.int value %s", wrapper, optionName, val)
|
|
|
|
}
|
|
|
|
p.SerialNumber = append(p.SerialNumber, bi)
|
|
|
|
}
|
|
|
|
case "subject_organization":
|
|
|
|
if d.CountRemainingArgs() == 0 {
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
p.SubjectOrganization = append(p.SubjectOrganization, d.RemainingArgs()...)
|
|
|
|
default:
|
|
|
|
return d.ArgErr()
|
|
|
|
}
|
|
|
|
|
|
|
|
// No nested blocks are supported
|
|
|
|
if d.NextBlock(nesting + 1) {
|
|
|
|
return d.Errf("malformed %s option '%s': blocks are not supported", wrapper, optionName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-02 23:43:33 +08:00
|
|
|
// bigInt is a big.Int type that interops with JSON encodings as a string.
|
|
|
|
type bigInt struct{ big.Int }
|
|
|
|
|
|
|
|
func (bi bigInt) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(bi.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bi *bigInt) UnmarshalJSON(p []byte) error {
|
|
|
|
if string(p) == "null" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var stringRep string
|
|
|
|
err := json.Unmarshal(p, &stringRep)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, ok := bi.SetString(stringRep, 10)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("not a valid big integer: %s", p)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2024-07-25 01:01:06 +08:00
|
|
|
|
|
|
|
// Interface guard
|
|
|
|
var _ caddyfile.Unmarshaler = (*CustomCertSelectionPolicy)(nil)
|