-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use safer defaults for TLS verification on LDAP connections (#2053)
- Loading branch information
Showing
7 changed files
with
94 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Enhancement: Safer defaults for TLS verification on LDAP connections | ||
|
||
The LDAP client connections were hardcoded to ignore certificate validation | ||
errors. Now verification is enabled by default and a new config parameter 'insecure' | ||
is introduced to override that default. It is also possible to add trusted Certificates | ||
by using the new 'cacert' config paramter. | ||
|
||
https://github.com/cs3org/reva/pull/2053 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright 2021 CERN | ||
// | ||
// 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. | ||
// | ||
// In applying this license, CERN does not waive the privileges and immunities | ||
// granted to it by virtue of its status as an Intergovernmental Organization | ||
// or submit itself to any jurisdiction. | ||
|
||
package utils | ||
|
||
import ( | ||
"crypto/tls" | ||
"crypto/x509" | ||
"fmt" | ||
"io/ioutil" | ||
|
||
"github.com/go-ldap/ldap/v3" | ||
"github.com/pkg/errors" | ||
) | ||
|
||
// LDAPConn holds the basic parameter for setting up an | ||
// LDAP connection. | ||
type LDAPConn struct { | ||
Hostname string `mapstructure:"hostname"` | ||
Port int `mapstructure:"port"` | ||
Insecure bool `mapstructure:"insecure"` | ||
CACert string `mapstructure:"cacert"` | ||
} | ||
|
||
// GetLDAPConnection initializes an LDAPS connection and allows | ||
// to set TLS options e.g. to add trusted Certificates or disable | ||
// Certificate verification | ||
func GetLDAPConnection(c *LDAPConn) (*ldap.Conn, error) { | ||
tlsconfig := &tls.Config{InsecureSkipVerify: c.Insecure} | ||
|
||
if !c.Insecure && c.CACert != "" { | ||
if pemBytes, err := ioutil.ReadFile(c.CACert); err == nil { | ||
rpool, _ := x509.SystemCertPool() | ||
rpool.AppendCertsFromPEM(pemBytes) | ||
tlsconfig.RootCAs = rpool | ||
} else { | ||
return nil, errors.Wrapf(err, "Error reading LDAP CA Cert '%s.'", c.CACert) | ||
} | ||
} | ||
return ldap.DialTLS("tcp", fmt.Sprintf("%s:%d", c.Hostname, c.Port), tlsconfig) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters