teleport/lib/pam/pam_nop.go
Zac Bergquist 2ae9d770fc
Refactor tctl's dependencies (#22693)
* Move configuration from lib/service to lib/service/servicecfg

The new servicecfg package will hold only configuration for services.
This will allow other packages (like tctl and tsh) to depend on
servicecfg without pulling in all of lib/service (which has a number
of platform-specific details).

This is the first step towards being able to build tctl for Windows.

* Move PAM and BPF config into servicecfg

This breaks a compile-time dependency on BPF/PAM for tctl.
2023-03-09 17:48:36 +00:00

59 lines
1.6 KiB
Go

//go:build !pam && cgo
// +build !pam,cgo
/*
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
import "github.com/gravitational/teleport/lib/service/servicecfg"
var buildHasPAM, systemHasPAM bool
// PAM is used to create a PAM context and initiate PAM transactions to checks
// the users account and open/close a session.
type PAM struct {
}
// Open creates a PAM context and initiates a PAM transaction to check the
// account and then opens a session.
func Open(config *servicecfg.PAMConfig) (*PAM, error) {
return &PAM{}, nil
}
// Close will close the session, the PAM context, and release any allocated
// memory.
func (p *PAM) Close() error {
return nil
}
// Environment returns the PAM environment variables associated with a PAM
// handle.
func (p *PAM) Environment() []string {
return nil
}
// BuildHasPAM returns true if the binary was build with support for PAM
// compiled in.
func BuildHasPAM() bool {
return buildHasPAM
}
// SystemHasPAM returns true if the PAM library exists on the system.
func SystemHasPAM() bool {
return systemHasPAM
}