123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- // Copyright 2016 The etcd 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.
- package e2e
- import (
- "fmt"
- "io/ioutil"
- "net/url"
- "os"
- "strings"
- "go.etcd.io/etcd/etcdserver"
- )
- const etcdProcessBasePort = 20000
- type clientConnType int
- const (
- clientNonTLS clientConnType = iota
- clientTLS
- clientTLSAndNonTLS
- )
- var (
- configNoTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- initialToken: "new",
- }
- configAutoTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- isPeerTLS: true,
- isPeerAutoTLS: true,
- initialToken: "new",
- }
- configTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- clientTLS: clientTLS,
- isPeerTLS: true,
- initialToken: "new",
- }
- configClientTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- clientTLS: clientTLS,
- initialToken: "new",
- }
- configClientBoth = etcdProcessClusterConfig{
- clusterSize: 1,
- clientTLS: clientTLSAndNonTLS,
- initialToken: "new",
- }
- configClientAutoTLS = etcdProcessClusterConfig{
- clusterSize: 1,
- isClientAutoTLS: true,
- clientTLS: clientTLS,
- initialToken: "new",
- }
- configPeerTLS = etcdProcessClusterConfig{
- clusterSize: 3,
- isPeerTLS: true,
- initialToken: "new",
- }
- configClientTLSCertAuth = etcdProcessClusterConfig{
- clusterSize: 1,
- clientTLS: clientTLS,
- initialToken: "new",
- clientCertAuthEnabled: true,
- }
- configClientTLSCertAuthWithNoCN = etcdProcessClusterConfig{
- clusterSize: 1,
- clientTLS: clientTLS,
- initialToken: "new",
- clientCertAuthEnabled: true,
- noCN: true,
- }
- configJWT = etcdProcessClusterConfig{
- clusterSize: 1,
- initialToken: "new",
- authTokenOpts: "jwt,pub-key=../../integration/fixtures/server.crt,priv-key=../../integration/fixtures/server.key.insecure,sign-method=RS256,ttl=1s",
- }
- )
- func configStandalone(cfg etcdProcessClusterConfig) *etcdProcessClusterConfig {
- ret := cfg
- ret.clusterSize = 1
- return &ret
- }
- type etcdProcessCluster struct {
- cfg *etcdProcessClusterConfig
- procs []etcdProcess
- }
- type etcdProcessClusterConfig struct {
- execPath string
- dataDirPath string
- keepDataDir bool
- clusterSize int
- baseScheme string
- basePort int
- metricsURLScheme string
- snapshotCount int // default is 10000
- clientTLS clientConnType
- clientCertAuthEnabled bool
- isPeerTLS bool
- isPeerAutoTLS bool
- isClientAutoTLS bool
- isClientCRL bool
- noCN bool
- cipherSuites []string
- forceNewCluster bool
- initialToken string
- quotaBackendBytes int64
- noStrictReconfig bool
- enableV2 bool
- initialCorruptCheck bool
- authTokenOpts string
- }
- // newEtcdProcessCluster launches a new cluster from etcd processes, returning
- // a new etcdProcessCluster once all nodes are ready to accept client requests.
- func newEtcdProcessCluster(cfg *etcdProcessClusterConfig) (*etcdProcessCluster, error) {
- etcdCfgs := cfg.etcdServerProcessConfigs()
- epc := &etcdProcessCluster{
- cfg: cfg,
- procs: make([]etcdProcess, cfg.clusterSize),
- }
- // launch etcd processes
- for i := range etcdCfgs {
- proc, err := newEtcdProcess(etcdCfgs[i])
- if err != nil {
- epc.Close()
- return nil, err
- }
- epc.procs[i] = proc
- }
- if err := epc.Start(); err != nil {
- return nil, err
- }
- return epc, nil
- }
- func (cfg *etcdProcessClusterConfig) clientScheme() string {
- if cfg.clientTLS == clientTLS {
- return "https"
- }
- return "http"
- }
- func (cfg *etcdProcessClusterConfig) peerScheme() string {
- peerScheme := cfg.baseScheme
- if peerScheme == "" {
- peerScheme = "http"
- }
- if cfg.isPeerTLS {
- peerScheme += "s"
- }
- return peerScheme
- }
- func (cfg *etcdProcessClusterConfig) etcdServerProcessConfigs() []*etcdServerProcessConfig {
- if cfg.basePort == 0 {
- cfg.basePort = etcdProcessBasePort
- }
- if cfg.execPath == "" {
- cfg.execPath = binPath
- }
- if cfg.snapshotCount == 0 {
- cfg.snapshotCount = etcdserver.DefaultSnapshotCount
- }
- etcdCfgs := make([]*etcdServerProcessConfig, cfg.clusterSize)
- initialCluster := make([]string, cfg.clusterSize)
- for i := 0; i < cfg.clusterSize; i++ {
- var curls []string
- var curl, curltls string
- port := cfg.basePort + 5*i
- curlHost := fmt.Sprintf("localhost:%d", port)
- switch cfg.clientTLS {
- case clientNonTLS, clientTLS:
- curl = (&url.URL{Scheme: cfg.clientScheme(), Host: curlHost}).String()
- curls = []string{curl}
- case clientTLSAndNonTLS:
- curl = (&url.URL{Scheme: "http", Host: curlHost}).String()
- curltls = (&url.URL{Scheme: "https", Host: curlHost}).String()
- curls = []string{curl, curltls}
- }
- purl := url.URL{Scheme: cfg.peerScheme(), Host: fmt.Sprintf("localhost:%d", port+1)}
- name := fmt.Sprintf("testname%d", i)
- dataDirPath := cfg.dataDirPath
- if cfg.dataDirPath == "" {
- var derr error
- dataDirPath, derr = ioutil.TempDir("", name+".etcd")
- if derr != nil {
- panic(fmt.Sprintf("could not get tempdir for datadir: %s", derr))
- }
- }
- initialCluster[i] = fmt.Sprintf("%s=%s", name, purl.String())
- args := []string{
- "--name", name,
- "--listen-client-urls", strings.Join(curls, ","),
- "--advertise-client-urls", strings.Join(curls, ","),
- "--listen-peer-urls", purl.String(),
- "--initial-advertise-peer-urls", purl.String(),
- "--initial-cluster-token", cfg.initialToken,
- "--data-dir", dataDirPath,
- "--snapshot-count", fmt.Sprintf("%d", cfg.snapshotCount),
- }
- args = addV2Args(args)
- if cfg.forceNewCluster {
- args = append(args, "--force-new-cluster")
- }
- if cfg.quotaBackendBytes > 0 {
- args = append(args,
- "--quota-backend-bytes", fmt.Sprintf("%d", cfg.quotaBackendBytes),
- )
- }
- if cfg.noStrictReconfig {
- args = append(args, "--strict-reconfig-check=false")
- }
- if cfg.enableV2 {
- args = append(args, "--enable-v2")
- }
- if cfg.initialCorruptCheck {
- args = append(args, "--experimental-initial-corrupt-check")
- }
- var murl string
- if cfg.metricsURLScheme != "" {
- murl = (&url.URL{
- Scheme: cfg.metricsURLScheme,
- Host: fmt.Sprintf("localhost:%d", port+2),
- }).String()
- args = append(args, "--listen-metrics-urls", murl)
- }
- args = append(args, cfg.tlsArgs()...)
- if cfg.authTokenOpts != "" {
- args = append(args, "--auth-token", cfg.authTokenOpts)
- }
- etcdCfgs[i] = &etcdServerProcessConfig{
- execPath: cfg.execPath,
- args: args,
- tlsArgs: cfg.tlsArgs(),
- dataDirPath: dataDirPath,
- keepDataDir: cfg.keepDataDir,
- name: name,
- purl: purl,
- acurl: curl,
- murl: murl,
- initialToken: cfg.initialToken,
- }
- }
- initialClusterArgs := []string{"--initial-cluster", strings.Join(initialCluster, ",")}
- for i := range etcdCfgs {
- etcdCfgs[i].initialCluster = strings.Join(initialCluster, ",")
- etcdCfgs[i].args = append(etcdCfgs[i].args, initialClusterArgs...)
- }
- return etcdCfgs
- }
- func (cfg *etcdProcessClusterConfig) tlsArgs() (args []string) {
- if cfg.clientTLS != clientNonTLS {
- if cfg.isClientAutoTLS {
- args = append(args, "--auto-tls")
- } else {
- tlsClientArgs := []string{
- "--cert-file", certPath,
- "--key-file", privateKeyPath,
- "--trusted-ca-file", caPath,
- }
- args = append(args, tlsClientArgs...)
- if cfg.clientCertAuthEnabled {
- args = append(args, "--client-cert-auth")
- }
- }
- }
- if cfg.isPeerTLS {
- if cfg.isPeerAutoTLS {
- args = append(args, "--peer-auto-tls")
- } else {
- tlsPeerArgs := []string{
- "--peer-cert-file", certPath,
- "--peer-key-file", privateKeyPath,
- "--peer-trusted-ca-file", caPath,
- }
- args = append(args, tlsPeerArgs...)
- }
- }
- if cfg.isClientCRL {
- args = append(args, "--client-crl-file", crlPath, "--client-cert-auth")
- }
- if len(cfg.cipherSuites) > 0 {
- args = append(args, "--cipher-suites", strings.Join(cfg.cipherSuites, ","))
- }
- return args
- }
- func (epc *etcdProcessCluster) EndpointsV2() []string {
- return epc.endpoints(func(ep etcdProcess) []string { return ep.EndpointsV2() })
- }
- func (epc *etcdProcessCluster) EndpointsV3() []string {
- return epc.endpoints(func(ep etcdProcess) []string { return ep.EndpointsV3() })
- }
- func (epc *etcdProcessCluster) endpoints(f func(ep etcdProcess) []string) (ret []string) {
- for _, p := range epc.procs {
- ret = append(ret, f(p)...)
- }
- return ret
- }
- func (epc *etcdProcessCluster) Start() error {
- return epc.start(func(ep etcdProcess) error { return ep.Start() })
- }
- func (epc *etcdProcessCluster) Restart() error {
- return epc.start(func(ep etcdProcess) error { return ep.Restart() })
- }
- func (epc *etcdProcessCluster) start(f func(ep etcdProcess) error) error {
- readyC := make(chan error, len(epc.procs))
- for i := range epc.procs {
- go func(n int) { readyC <- f(epc.procs[n]) }(i)
- }
- for range epc.procs {
- if err := <-readyC; err != nil {
- epc.Close()
- return err
- }
- }
- return nil
- }
- func (epc *etcdProcessCluster) Stop() (err error) {
- for _, p := range epc.procs {
- if p == nil {
- continue
- }
- if curErr := p.Stop(); curErr != nil {
- if err != nil {
- err = fmt.Errorf("%v; %v", err, curErr)
- } else {
- err = curErr
- }
- }
- }
- return err
- }
- func (epc *etcdProcessCluster) Close() error {
- err := epc.Stop()
- for _, p := range epc.procs {
- // p is nil when newEtcdProcess fails in the middle
- // Close still gets called to clean up test data
- if p == nil {
- continue
- }
- if cerr := p.Close(); cerr != nil {
- err = cerr
- }
- }
- return err
- }
- func (epc *etcdProcessCluster) WithStopSignal(sig os.Signal) (ret os.Signal) {
- for _, p := range epc.procs {
- ret = p.WithStopSignal(sig)
- }
- return ret
- }
|