-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathldap.go
244 lines (222 loc) · 8.04 KB
/
ldap.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package util
import (
"context"
"fmt"
"io/ioutil"
"os"
"path"
"strings"
"time"
app "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/wait"
e2e "k8s.io/kubernetes/test/e2e/framework"
"github.com/openshift/library-go/pkg/crypto"
"github.com/openshift/library-go/pkg/operator/resource/resourceread"
"github.com/openshift/origin/test/extended/testdata"
"github.com/openshift/origin/test/extended/util/image"
)
const (
caCertFilename = "ca.crt"
caKeyFilename = "ca.key"
caName = "ldap CA"
saName = "ldap"
// These names are in sync with those in ldapserver-deployment.yaml
configMountName = "ldap-config"
certMountName = "ldap-cert"
// Used for telling the ldap client where to mount.
configMountPath = "/etc/openldap"
certMountPath = "/usr/local/etc/ldapcert"
// Confirms slapd operation
ldapSearchCommandFormat = "ldapsearch -x -H ldap://%s -Z -b dc=example,dc=com cn -LLL"
expectedLDAPClientResponse = "cn: Manager"
)
// CreateLDAPTestServer deploys an LDAP server on the service network and then confirms StartTLS connectivity with an
// ldapsearch against it. It returns the ldapserver host and the ldap CA, or an error.
func CreateLDAPTestServer(oc *CLI) (svcNs, svcName, svcHostname string, caPem []byte, err error) {
deploy, ldapService, ldif, scripts := ReadLDAPServerTestData()
certDir, err := ioutil.TempDir("", "testca")
if err != nil {
return "", "", "", nil, err
}
defer os.RemoveAll(certDir)
ctx := context.Background()
createOpts := metav1.CreateOptions{}
if _, err := oc.AdminKubeClient().CoreV1().ConfigMaps(oc.Namespace()).Create(ctx, ldif, createOpts); err != nil {
return "", "", "", nil, err
}
if _, err := oc.AdminKubeClient().CoreV1().ConfigMaps(oc.Namespace()).Create(ctx, scripts, createOpts); err != nil {
return "", "", "", nil, err
}
if _, err := oc.AdminKubeClient().CoreV1().Services(oc.Namespace()).Create(ctx, ldapService, createOpts); err != nil {
return "", "", "", nil, err
}
// Create SA.
if _, err := oc.AdminKubeClient().CoreV1().ServiceAccounts(oc.Namespace()).Create(ctx, &corev1.ServiceAccount{
ObjectMeta: v1.ObjectMeta{
Name: saName,
},
}, createOpts); err != nil {
return "", "", "", nil, err
}
// Create CA.
ca, err := crypto.MakeSelfSignedCA(path.Join(certDir, caCertFilename), path.Join(certDir, caKeyFilename),
path.Join(certDir, "serial"), caName, 100)
if err != nil {
return "", "", "", nil, err
}
// Ensure that the server cert is valid for localhost and the service network hostname.
svcNs = oc.Namespace()
svcName = ldapService.Name
svcHostname = svcName + "." + svcNs + ".svc"
serverCertConfig, err := ca.MakeServerCert(sets.New("localhost", "127.0.0.1", svcHostname), 100)
if err != nil {
return "", "", "", nil, err
}
caPem, _, err = ca.Config.GetPEMBytes()
if err != nil {
return "", "", "", nil, err
}
serverCertPEM, serverCertKeyPEM, err := serverCertConfig.GetPEMBytes()
if err != nil {
return "", "", "", nil, err
}
_, err = oc.AdminKubeClient().CoreV1().Secrets(oc.Namespace()).Create(context.Background(), &corev1.Secret{
ObjectMeta: v1.ObjectMeta{
Name: certMountName,
},
Data: map[string][]byte{
corev1.TLSCertKey: []byte(serverCertPEM),
corev1.TLSPrivateKeyKey: serverCertKeyPEM,
caCertFilename: caPem,
},
Type: corev1.SecretTypeTLS,
}, metav1.CreateOptions{})
if err != nil {
return "", "", "", nil, err
}
// Allow the openldap container to run as root and privileged. This lets us use the existing openldap server
// container startup scripts to poplate its database using ldapi:///.
// TODO: Turn these, (and other resources in this function) into yamls.
err = oc.AsAdmin().Run("create").Args("role", "scc-anyuid", "--verb=use", "--resource=scc",
"--resource-name=anyuid").Execute()
if err != nil {
return "", "", "", nil, err
}
err = oc.AsAdmin().Run("adm").Args("policy", "add-role-to-user", "scc-anyuid", "-z", "ldap",
"--role-namespace", oc.Namespace()).Execute()
if err != nil {
return "", "", "", nil, err
}
err = oc.AsAdmin().Run("create").Args("role", "scc-priv", "--verb=use", "--resource=scc",
"--resource-name=privileged").Execute()
if err != nil {
return "", "", "", nil, err
}
err = oc.AsAdmin().Run("adm").Args("policy", "add-role-to-user", "scc-priv", "-z", "ldap",
"--role-namespace", oc.Namespace()).Execute()
if err != nil {
return "", "", "", nil, err
}
serverDeployment, err := oc.AdminKubeClient().AppsV1().Deployments(oc.Namespace()).Create(context.Background(), deploy, metav1.CreateOptions{})
if err != nil {
return "", "", "", nil, err
}
// Wait for an available replica.
err = wait.PollImmediate(1*time.Second, 5*time.Minute, func() (done bool, err error) {
dep, getErr := oc.AdminKubeClient().AppsV1().Deployments(oc.Namespace()).Get(context.Background(), serverDeployment.Name,
v1.GetOptions{})
if getErr != nil {
return false, getErr
}
if dep.Status.AvailableReplicas == 0 {
return false, nil
}
return true, nil
})
if err != nil {
return "", "", "", nil, fmt.Errorf("replica for %s not avaiable: %v", serverDeployment.Name, err)
}
// OCPBUGS-1053 add retry to see if periodic failures are intermittent
const maxAttempts int = 3
for i := 0; i < maxAttempts; i++ {
// Confirm ldap server availability. Since the ldap client does not support SNI, a TLS passthrough route will not
// work, so we need to talk to the server over the service network.
if err := checkLDAPConn(oc, svcHostname, fmt.Sprintf("runonce-ldapsearch-pod-%d", i)); err != nil {
if i >= maxAttempts-1 {
e2e.Logf("checkLDAPConn failed for svcHostName '%s', exhausted retry attempts", svcHostname)
return "", "", "", nil, err
}
e2e.Logf("checkLDAPConn failed for svcHostName '%s', will retry", svcHostname)
time.Sleep(time.Duration(i) * time.Second)
} else {
break
}
}
return
}
// Confirm that the ldapserver host is responding to ldapsearch.
func checkLDAPConn(oc *CLI, host string, podname string) error {
compareString := expectedLDAPClientResponse
output, err := runLDAPSearchInPod(oc, host, podname)
if err != nil {
return err
}
if !strings.Contains(output, compareString) {
return fmt.Errorf("ldapsearch output does not contain %s\n Output: \n%s", compareString, output)
}
return nil
}
// Run an ldapsearch in a pod against host.
func runLDAPSearchInPod(oc *CLI, host string, podname string) (string, error) {
mounts, volumes := LDAPClientMounts()
output, errs := RunOneShotCommandPod(oc, podname, image.OpenLDAPTestImage(), fmt.Sprintf(ldapSearchCommandFormat, host), mounts, volumes, nil, 8*time.Minute)
if len(errs) != 0 {
return output, fmt.Errorf("errors encountered trying to run ldapsearch pod: %v", errs)
}
return output, nil
}
func ReadLDAPServerTestData() (*app.Deployment, *corev1.Service, *corev1.ConfigMap, *corev1.ConfigMap) {
return resourceread.ReadDeploymentV1OrDie(image.MustReplaceContents(testdata.MustAsset(
"test/extended/testdata/ldap/ldapserver-deployment.yaml"))),
resourceread.ReadServiceV1OrDie(testdata.MustAsset(
"test/extended/testdata/ldap/ldapserver-service.yaml")),
resourceread.ReadConfigMapV1OrDie(testdata.MustAsset(
"test/extended/testdata/ldap/ldapserver-config-cm.yaml")),
resourceread.ReadConfigMapV1OrDie(testdata.MustAsset(
"test/extended/testdata/ldap/ldapserver-scripts-cm.yaml"))
}
func LDAPClientMounts() ([]corev1.VolumeMount, []corev1.Volume) {
return []corev1.VolumeMount{
{
Name: configMountName,
MountPath: configMountPath,
},
{
Name: certMountName,
MountPath: certMountPath,
},
}, []corev1.Volume{
{
Name: certMountName,
VolumeSource: corev1.VolumeSource{
Secret: &corev1.SecretVolumeSource{
SecretName: certMountName,
},
},
},
{
Name: configMountName,
VolumeSource: corev1.VolumeSource{
ConfigMap: &corev1.ConfigMapVolumeSource{
LocalObjectReference: corev1.LocalObjectReference{
Name: configMountName,
},
},
},
},
}
}