2018-06-05 13:51:22 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 The Kubernetes 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 lua
|
|
|
|
|
|
|
|
import (
|
2020-03-24 13:44:13 +00:00
|
|
|
"context"
|
2018-06-05 13:51:22 +00:00
|
|
|
"fmt"
|
2020-02-19 03:08:56 +00:00
|
|
|
"net/http"
|
2018-06-05 13:51:22 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2022-07-31 16:16:28 +00:00
|
|
|
"github.com/onsi/ginkgo/v2"
|
2019-08-13 21:14:55 +00:00
|
|
|
dto "github.com/prometheus/client_model/go"
|
|
|
|
"github.com/prometheus/common/expfmt"
|
|
|
|
"github.com/prometheus/common/model"
|
2020-02-19 03:08:56 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2021-08-21 20:42:00 +00:00
|
|
|
networking "k8s.io/api/networking/v1"
|
2018-06-05 13:51:22 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
|
|
|
"k8s.io/ingress-nginx/test/e2e/framework"
|
|
|
|
)
|
|
|
|
|
2020-02-16 18:27:58 +00:00
|
|
|
var _ = framework.IngressNginxDescribe("[Lua] dynamic certificates", func() {
|
2018-06-05 13:51:22 +00:00
|
|
|
f := framework.NewDefaultFramework("dynamic-certificate")
|
|
|
|
host := "foo.com"
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.BeforeEach(func() {
|
|
|
|
f.NewEchoDeployment()
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("picks up the certificate when we add TLS spec to existing ingress", func() {
|
2019-09-01 18:16:52 +00:00
|
|
|
ensureIngress(f, host, framework.EchoService)
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2021-08-21 20:42:00 +00:00
|
|
|
ing, err := f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Get(context.TODO(), host, metav1.GetOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2019-12-12 23:12:12 +00:00
|
|
|
ing.Spec.TLS = []networking.IngressTLS{
|
2018-06-05 13:51:22 +00:00
|
|
|
{
|
|
|
|
Hosts: []string{host},
|
|
|
|
SecretName: host,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
_, err = framework.CreateIngressTLSSecret(f.KubeClientSet,
|
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2021-08-21 20:42:00 +00:00
|
|
|
_, err = f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Update(context.TODO(), ing, metav1.UpdateOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("picks up the previously missing secret for a given ingress without reloading", func() {
|
2019-09-01 18:16:52 +00:00
|
|
|
ing := framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, framework.EchoService, 80, nil)
|
2018-10-29 21:39:04 +00:00
|
|
|
f.EnsureIngress(ing)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-10-29 21:39:04 +00:00
|
|
|
|
2019-08-13 21:14:55 +00:00
|
|
|
ip := f.GetNginxPodIP()
|
2020-06-27 15:57:00 +00:00
|
|
|
mf, err := f.GetMetric("nginx_ingress_controller_success", ip)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotNil(ginkgo.GinkgoT(), mf)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
|
|
|
rc0, err := extractReloadCount(mf)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ensureHTTPSRequest(f, fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2019-08-13 21:14:55 +00:00
|
|
|
_, err = framework.CreateIngressTLSSecret(f.KubeClientSet,
|
2018-06-05 13:51:22 +00:00
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("serving the configured certificate on HTTPS endpoint")
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
log, err := f.NginxLogs()
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotEmpty(ginkgo.GinkgoT(), log)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("skipping Nginx reload")
|
2020-06-27 15:57:00 +00:00
|
|
|
mf, err = f.GetMetric("nginx_ingress_controller_success", ip)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotNil(ginkgo.GinkgoT(), mf)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
|
|
|
rc1, err := extractReloadCount(mf)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Equal(ginkgo.GinkgoT(), rc0, rc1)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.Context("given an ingress with TLS correctly configured", func() {
|
|
|
|
ginkgo.BeforeEach(func() {
|
2019-09-01 18:16:52 +00:00
|
|
|
ing := f.EnsureIngress(framework.NewSingleIngressWithTLS(host, "/", host, []string{host}, f.Namespace, framework.EchoService, 80, nil))
|
2018-10-29 21:39:04 +00:00
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2018-10-29 21:39:04 +00:00
|
|
|
_, err := framework.CreateIngressTLSSecret(f.KubeClientSet,
|
2018-06-05 13:51:22 +00:00
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(ing.Spec.TLS[0].Hosts[0],
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
2019-08-13 21:14:55 +00:00
|
|
|
return strings.Contains(server, "listen 443")
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("serving the configured certificate on HTTPS endpoint")
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2019-07-04 22:39:29 +00:00
|
|
|
/*
|
|
|
|
TODO(elvinefendi): this test currently does not work as expected
|
|
|
|
because Go transport code strips (https://github.com/golang/go/blob/431b5c69ca214ce4291f008c1ce2a50b22bc2d2d/src/crypto/tls/handshake_messages.go#L424)
|
|
|
|
trailing dot from SNI as suggest by the standard (https://tools.ietf.org/html/rfc6066#section-3).
|
|
|
|
*/
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("supports requests with domain with trailing dot", func() {
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host+".", host)
|
2019-06-28 20:21:59 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("picks up the updated certificate without reloading", func() {
|
2021-08-21 20:42:00 +00:00
|
|
|
ing, err := f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Get(context.TODO(), host, metav1.GetOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ensureHTTPSRequest(f, fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
_, err = framework.CreateIngressTLSSecret(f.KubeClientSet,
|
|
|
|
ing.Spec.TLS[0].Hosts,
|
|
|
|
ing.Spec.TLS[0].SecretName,
|
|
|
|
ing.Namespace)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("configuring certificate_by_lua and skipping Nginx configuration of the new certificate")
|
2018-10-29 21:39:04 +00:00
|
|
|
f.WaitForNginxServer(ing.Spec.TLS[0].Hosts[0],
|
2018-06-05 13:51:22 +00:00
|
|
|
func(server string) bool {
|
2019-08-13 21:14:55 +00:00
|
|
|
return strings.Contains(server, "listen 443")
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("serving the configured certificate on HTTPS endpoint")
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
|
|
|
log, err := f.NginxLogs()
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotEmpty(ginkgo.GinkgoT(), log)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
index := strings.Index(log, "id=dummy_log_splitter_foo_bar")
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.GreaterOrEqual(ginkgo.GinkgoT(), index, 0, "log does not contains id=dummy_log_splitter_foo_bar")
|
2018-06-05 13:51:22 +00:00
|
|
|
restOfLogs := log[index:]
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("skipping Nginx reload")
|
|
|
|
assert.NotContains(ginkgo.GinkgoT(), restOfLogs, logRequireBackendReload)
|
|
|
|
assert.NotContains(ginkgo.GinkgoT(), restOfLogs, logBackendReloadSuccess)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("falls back to using default certificate when secret gets deleted without reloading", func() {
|
2021-08-21 20:42:00 +00:00
|
|
|
ing, err := f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Get(context.TODO(), host, metav1.GetOptions{})
|
2020-02-20 00:43:14 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2018-08-24 22:52:09 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ensureHTTPSRequest(f, fmt.Sprintf("%s?id=dummy_log_splitter_foo_bar", f.GetURL(framework.HTTPS)), host, host)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2019-09-25 10:59:47 +00:00
|
|
|
ip := f.GetNginxPodIP()
|
2020-06-27 15:57:00 +00:00
|
|
|
mf, err := f.GetMetric("nginx_ingress_controller_success", ip)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotNil(ginkgo.GinkgoT(), mf)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2019-09-25 10:59:47 +00:00
|
|
|
rc0, err := extractReloadCount(mf)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-03-24 13:44:13 +00:00
|
|
|
err = f.KubeClientSet.CoreV1().Secrets(ing.Namespace).Delete(context.TODO(), ing.Spec.TLS[0].SecretName, metav1.DeleteOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("serving the default certificate on HTTPS endpoint")
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), host, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-06-27 15:57:00 +00:00
|
|
|
mf, err = f.GetMetric("nginx_ingress_controller_success", ip)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
assert.NotNil(ginkgo.GinkgoT(), mf)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
2019-09-25 10:59:47 +00:00
|
|
|
rc1, err := extractReloadCount(mf)
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
2019-08-13 21:14:55 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("skipping Nginx reload")
|
|
|
|
assert.Equal(ginkgo.GinkgoT(), rc0, rc1)
|
2019-09-25 10:59:47 +00:00
|
|
|
})
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("picks up a non-certificate only change", func() {
|
2018-06-05 13:51:22 +00:00
|
|
|
newHost := "foo2.com"
|
2021-08-21 20:42:00 +00:00
|
|
|
ing, err := f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Get(context.TODO(), host, metav1.GetOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2018-06-05 13:51:22 +00:00
|
|
|
ing.Spec.Rules[0].Host = newHost
|
2021-08-21 20:42:00 +00:00
|
|
|
_, err = f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Update(context.TODO(), ing, metav1.UpdateOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2018-08-24 22:52:09 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.By("serving the configured certificate on HTTPS endpoint")
|
|
|
|
ensureHTTPSRequest(f, f.GetURL(framework.HTTPS), newHost, "ingress.local")
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
ginkgo.It("removes HTTPS configuration when we delete TLS spec", func() {
|
2021-08-21 20:42:00 +00:00
|
|
|
ing, err := f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Get(context.TODO(), host, metav1.GetOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2019-12-12 23:12:12 +00:00
|
|
|
ing.Spec.TLS = []networking.IngressTLS{}
|
2021-08-21 20:42:00 +00:00
|
|
|
_, err = f.KubeClientSet.NetworkingV1().Ingresses(f.Namespace).Update(context.TODO(), ing, metav1.UpdateOptions{})
|
2020-02-19 03:08:56 +00:00
|
|
|
assert.Nil(ginkgo.GinkgoT(), err)
|
|
|
|
|
2018-08-24 22:52:09 +00:00
|
|
|
time.Sleep(waitForLuaSync)
|
2018-06-05 13:51:22 +00:00
|
|
|
|
2020-02-19 03:08:56 +00:00
|
|
|
f.HTTPTestClient().
|
|
|
|
GET("/").
|
|
|
|
WithHeader("Host", host).
|
|
|
|
Expect().
|
|
|
|
Status(http.StatusOK)
|
2018-06-05 13:51:22 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2019-08-13 21:14:55 +00:00
|
|
|
|
|
|
|
func extractReloadCount(mf *dto.MetricFamily) (float64, error) {
|
|
|
|
vec, err := expfmt.ExtractSamples(&expfmt.DecodeOptions{
|
|
|
|
Timestamp: model.Now(),
|
|
|
|
}, mf)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return float64(vec[0].Value), nil
|
|
|
|
}
|