teleport/lib/pam/pam_test.go
Andrew Lytvynov fc1c1dbd14 Move all utils.InitLoggerForTests calls to TestMain
This prevents data races between changing the standard logger and it
acutally being used.
2021-02-23 18:04:55 -08:00

248 lines
6 KiB
Go

/*
Copyright 2020 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 (
"bytes"
"fmt"
"os"
"os/user"
"path/filepath"
"strings"
"testing"
"github.com/gravitational/teleport/lib/utils"
"github.com/stretchr/testify/require"
)
func TestMain(m *testing.M) {
utils.InitLoggerForTests()
// Skip this test if the binary was not built with PAM support.
if !BuildHasPAM() || !SystemHasPAM() {
fmt.Println("PAM support not enabled, skipping tests")
os.Exit(0)
}
_, err := os.Stat("../../build.assets/pam/pam_teleport.so")
if os.IsNotExist(err) {
fmt.Println("PAM test module is not installed, you can install it with 'sudo make -C build.assets/pam install'")
os.Exit(0)
}
os.Exit(m.Run())
}
// TestEcho makes sure that the teleport env variables passed to a PAM module
// are correctly set
//
// The PAM module used, pam_teleport.so is called from the policy file
// teleport-acct-echo. The policy file instructs pam_teleport.so to echo the
// contents of TELEPORT_* to stdout where this test can read, parse, and
// validate it's output.
func TestEcho(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-acct-echo")
username := currentUser(t)
var buf bytes.Buffer
pamContext, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-acct-echo",
Login: username,
Env: map[string]string{
"TELEPORT_USERNAME": username + "@example.com",
"TELEPORT_LOGIN": username,
"TELEPORT_ROLES": "bar baz qux",
},
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
UsePAMAuth: true,
})
require.NoError(t, err)
defer pamContext.Close()
assertOutput(t, buf.String(), []string{
username + "@example.com",
username,
"bar baz qux",
"pam_sm_acct_mgmt OK",
"pam_sm_authenticate OK",
"pam_sm_open_session OK",
})
}
// TestEnvironment makes sure that PAM environment variables (environment
// variables set by a PAM module) can be accessed from the PAM handle/context
// in Go code.
//
// The PAM module used, pam_teleport.so is called from the policy file
// teleport-session-environment. The policy file instructs pam_teleport.so to
// read in the first argument and set it as a PAM environment variable. This
// test then validates it matches what was set in the policy file.
func TestEnvironment(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-session-environment")
username := currentUser(t)
var buf bytes.Buffer
pamContext, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-session-environment",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
})
require.NoError(t, err)
defer pamContext.Close()
require.ElementsMatch(t, pamContext.Environment(), []string{"foo=bar"})
}
func TestSuccess(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-success")
username := currentUser(t)
var buf bytes.Buffer
pamContext, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-success",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
UsePAMAuth: true,
})
require.NoError(t, err)
defer pamContext.Close()
assertOutput(t, buf.String(), []string{
"pam_sm_acct_mgmt OK",
"pam_sm_authenticate OK",
"pam_sm_open_session OK",
})
}
func TestAccountFailure(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-acct-failure")
username := currentUser(t)
var buf bytes.Buffer
_, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-acct-failure",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
})
require.Error(t, err)
}
func TestAuthFailure(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-auth-failure")
username := currentUser(t)
var buf bytes.Buffer
_, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-auth-failure",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
UsePAMAuth: true,
})
require.Error(t, err)
}
func TestAuthDisabled(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-auth-failure")
username := currentUser(t)
var buf bytes.Buffer
pamContext, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-auth-failure",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
UsePAMAuth: false,
})
require.NoError(t, err)
defer pamContext.Close()
assertOutput(t, buf.String(), []string{
"pam_sm_acct_mgmt OK",
"pam_sm_open_session OK",
})
}
func TestSessionFailure(t *testing.T) {
t.Parallel()
checkTestModule(t, "teleport-session-failure")
username := currentUser(t)
var buf bytes.Buffer
_, err := Open(&Config{
Enabled: true,
ServiceName: "teleport-session-failure",
Login: username,
Stdin: &discardReader{},
Stdout: &buf,
Stderr: &buf,
})
require.Error(t, err)
}
func assertOutput(t *testing.T, got string, want []string) {
got = strings.TrimSpace(got)
lines := strings.Split(got, "\n")
for i, l := range lines {
lines[i] = strings.TrimSpace(l)
}
require.ElementsMatch(t, lines, want)
}
type discardReader struct {
}
func (d *discardReader) Read(p []byte) (int, error) {
return len(p), nil
}
func checkTestModule(t *testing.T, name string) {
_, err := os.Stat(filepath.Join("/etc/pam.d", name))
if os.IsNotExist(err) {
t.Skipf("PAM test service %q is not installed, you can install it with 'sudo make -C build.assets/pam install'", name)
}
}
func currentUser(t *testing.T) string {
usr, err := user.Current()
require.NoError(t, err)
return usr.Username
}