-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for SCRAM authentication in kafka metricbeat module (#24810)
(cherry picked from commit 66829ff)
- Loading branch information
Showing
12 changed files
with
97 additions
and
40 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
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,69 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you 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 kafka | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/Shopify/sarama" | ||
) | ||
|
||
type SaslConfig struct { | ||
SaslMechanism string `config:"mechanism"` | ||
} | ||
|
||
const ( | ||
saslTypePlaintext = sarama.SASLTypePlaintext | ||
saslTypeSCRAMSHA256 = sarama.SASLTypeSCRAMSHA256 | ||
saslTypeSCRAMSHA512 = sarama.SASLTypeSCRAMSHA512 | ||
) | ||
|
||
func (c *SaslConfig) ConfigureSarama(config *sarama.Config) { | ||
switch strings.ToUpper(c.SaslMechanism) { // try not to force users to use all upper case | ||
case "": | ||
// SASL is not enabled | ||
return | ||
case saslTypePlaintext: | ||
config.Net.SASL.Mechanism = sarama.SASLMechanism(sarama.SASLTypePlaintext) | ||
case saslTypeSCRAMSHA256: | ||
config.Net.SASL.Handshake = true | ||
config.Net.SASL.Mechanism = sarama.SASLMechanism(sarama.SASLTypeSCRAMSHA256) | ||
config.Net.SASL.SCRAMClientGeneratorFunc = func() sarama.SCRAMClient { | ||
return &XDGSCRAMClient{HashGeneratorFcn: SHA256} | ||
} | ||
case saslTypeSCRAMSHA512: | ||
config.Net.SASL.Handshake = true | ||
config.Net.SASL.Mechanism = sarama.SASLMechanism(sarama.SASLTypeSCRAMSHA512) | ||
config.Net.SASL.SCRAMClientGeneratorFunc = func() sarama.SCRAMClient { | ||
return &XDGSCRAMClient{HashGeneratorFcn: SHA512} | ||
} | ||
default: | ||
// This should never happen because `SaslMechanism` is checked on `Validate()`, keeping a panic to detect it earlier if it happens. | ||
panic(fmt.Sprintf("not valid SASL mechanism '%v', only supported with PLAIN|SCRAM-SHA-512|SCRAM-SHA-256", c.SaslMechanism)) | ||
} | ||
} | ||
|
||
func (c *SaslConfig) Validate() error { | ||
switch strings.ToUpper(c.SaslMechanism) { // try not to force users to use all upper case | ||
case "", saslTypePlaintext, saslTypeSCRAMSHA256, saslTypeSCRAMSHA512: | ||
default: | ||
return fmt.Errorf("not valid SASL mechanism '%v', only supported with PLAIN|SCRAM-SHA-512|SCRAM-SHA-256", c.SaslMechanism) | ||
} | ||
return nil | ||
} |
File renamed without changes.
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
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
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