teleport/lib/pam/config.go
2018-03-20 14:20:43 -07:00

72 lines
2.1 KiB
Go

/*
Copyright 2018 Gravitational, Inc.
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 pam implements a subset of Pluggable Authentication Modules (PAM).
// The supported subset of the PAM stack is "account" and "session" modules.
package pam
import (
"io"
"github.com/gravitational/trace"
)
// Config holds the configuration used by Teleport when creating a PAM context
// and executing PAM transactions.
type Config struct {
// Enabled controls if PAM checks will occur or not.
Enabled bool
// ServiceName is the name of the policy to apply typically in /etc/pam.d/
ServiceName string
// Username is the name of the target user.
Username string
// Stdin is the input stream which the conversation function will use to
// obtain data from the user.
Stdin io.Reader
// Stdout is the output stream which the conversation function will use to
// show data to the user.
Stdout io.Writer
// Stderr is the output stream which the conversation function will use to
// report errors to the user.
Stderr io.Writer
}
// CheckDefaults makes sure the Config structure has minimum required values.
func (c *Config) CheckDefaults() error {
if c.ServiceName == "" {
return trace.BadParameter("required parameter ServiceName missing")
}
if c.Username == "" {
return trace.BadParameter("required parameter Username missing")
}
if c.Stdin == nil {
return trace.BadParameter("required parameter Stdin missing")
}
if c.Stdout == nil {
return trace.BadParameter("required parameter Stdout missing")
}
if c.Stderr == nil {
return trace.BadParameter("required parameter Stderr missing")
}
return nil
}