mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-21 05:55:42 +08:00
* Update kingpin * Convert CLI formatting to use kingpin UsageRenderers Avoiding the legacy kingpin text/templates allows for DCE to be used by the linker. The existing formatting has been matched with a pure Go UsageRenderer.
567 lines
17 KiB
Go
567 lines
17 KiB
Go
/*
|
|
* Teleport
|
|
* Copyright (C) 2023 Gravitational, Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"crypto/x509"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"log/slog"
|
|
"os"
|
|
"runtime"
|
|
"strconv"
|
|
"strings"
|
|
"unicode"
|
|
|
|
"github.com/alecthomas/kingpin/v2"
|
|
"github.com/gravitational/trace"
|
|
"golang.org/x/term"
|
|
|
|
"github.com/gravitational/teleport"
|
|
"github.com/gravitational/teleport/api/constants"
|
|
"github.com/gravitational/teleport/api/types"
|
|
logutils "github.com/gravitational/teleport/lib/utils/log"
|
|
)
|
|
|
|
// LoggingPurpose specifies which kind of application logging is
|
|
// to be configured for.
|
|
type LoggingPurpose int
|
|
|
|
const (
|
|
// LoggingForDaemon configures logging for non-user interactive applications (teleport, tbot, tsh deamon).
|
|
LoggingForDaemon LoggingPurpose = iota
|
|
// LoggingForCLI configures logging for user face utilities (tctl, tsh).
|
|
LoggingForCLI
|
|
// LoggingForMCP configures logging for MCP servers.
|
|
LoggingForMCP
|
|
)
|
|
|
|
// LoggingFormat defines the possible logging output formats.
|
|
type LoggingFormat = string
|
|
|
|
const (
|
|
// LogFormatJSON configures logs to be emitted in json.
|
|
LogFormatJSON LoggingFormat = "json"
|
|
// LogFormatText configures logs to be emitted in a human readable text format.
|
|
LogFormatText LoggingFormat = "text"
|
|
)
|
|
|
|
type logOpts struct {
|
|
format LoggingFormat
|
|
// osLogSubsystem is the subsystem used for all loggers created by this process
|
|
// when sending logs to os_log on macOS. If empty, os_log won't be used.
|
|
osLogSubsystem string
|
|
}
|
|
|
|
// LoggerOption enables customizing the global logger.
|
|
type LoggerOption func(opts *logOpts)
|
|
|
|
// WithLogFormat initializes the default logger with the provided format.
|
|
func WithLogFormat(format LoggingFormat) LoggerOption {
|
|
return func(opts *logOpts) {
|
|
opts.format = format
|
|
}
|
|
}
|
|
|
|
func WithOSLog(subsystem string) LoggerOption {
|
|
return func(opts *logOpts) {
|
|
opts.osLogSubsystem = subsystem
|
|
}
|
|
}
|
|
|
|
// IsTerminal checks whether writer is a terminal
|
|
func IsTerminal(w io.Writer) bool {
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
return term.IsTerminal(int(v.Fd()))
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// InitLogger configures the global logger for a given purpose / verbosity level
|
|
func InitLogger(purpose LoggingPurpose, level slog.Level, opts ...LoggerOption) (*slog.Logger, error) {
|
|
var o logOpts
|
|
|
|
for _, opt := range opts {
|
|
opt(&o)
|
|
}
|
|
|
|
// If debug or trace logging is not enabled for CLIs,
|
|
// then discard all log output.
|
|
if purpose == LoggingForCLI && level > slog.LevelDebug {
|
|
logger := slog.New(slog.DiscardHandler)
|
|
slog.SetDefault(logger)
|
|
return logger, nil
|
|
}
|
|
|
|
var output string
|
|
switch {
|
|
case o.osLogSubsystem != "":
|
|
output = logutils.LogOutputOSLog
|
|
case purpose == LoggingForMCP:
|
|
output = logutils.LogOutputMCP
|
|
o.format = LogFormatJSON
|
|
}
|
|
|
|
logger, _, _, err := logutils.Initialize(logutils.Config{
|
|
Severity: level.String(),
|
|
Format: o.format,
|
|
EnableColors: IsTerminal(os.Stderr),
|
|
Output: output,
|
|
OSLogSubsystem: o.osLogSubsystem,
|
|
})
|
|
return logger, trace.Wrap(err)
|
|
}
|
|
|
|
// FatalError is for CLI front-ends: it detects gravitational/trace debugging
|
|
// information, sends it to the logger, strips it off and prints a clean message to stderr
|
|
func FatalError(err error) {
|
|
fmt.Fprint(os.Stderr, UserMessageFromError(err))
|
|
os.Exit(1)
|
|
}
|
|
|
|
// GetIterations provides a simple way to add iterations to the test
|
|
// by setting environment variable "ITERATIONS", by default it returns 1
|
|
func GetIterations() int {
|
|
out := os.Getenv(teleport.IterationsEnvVar)
|
|
if out == "" {
|
|
return 1
|
|
}
|
|
iter, err := strconv.Atoi(out)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
slog.DebugContext(context.Background(), "Running tests multiple times due to presence of ITERATIONS environment variable", "iterations", iter)
|
|
return iter
|
|
}
|
|
|
|
// UserMessageFromError returns user-friendly error message from error.
|
|
// The error message will be formatted for output depending on the debug
|
|
// flag and will always end with a new line.
|
|
func UserMessageFromError(err error) string {
|
|
if err == nil {
|
|
return ""
|
|
}
|
|
if slog.Default().Enabled(context.Background(), slog.LevelDebug) {
|
|
msg := trace.DebugReport(err)
|
|
if !strings.HasSuffix(msg, "\n") {
|
|
msg += "\n"
|
|
}
|
|
return msg
|
|
}
|
|
var buf bytes.Buffer
|
|
if runtime.GOOS == constants.WindowsOS {
|
|
// TODO(timothyb89): Due to complications with globally enabling +
|
|
// properly resetting Windows terminal ANSI processing, for now we just
|
|
// disable color output. Otherwise, raw ANSI escapes will be visible to
|
|
// users.
|
|
fmt.Fprint(&buf, "ERROR: ")
|
|
} else {
|
|
fmt.Fprint(&buf, Color(Red, "ERROR: "))
|
|
}
|
|
formatErrorWriter(err, &buf)
|
|
return buf.String()
|
|
}
|
|
|
|
// FormatErrorWithNewline returns user friendly error message from error.
|
|
// The message will always end with a new line.
|
|
func FormatErrorWithNewline(err error) string {
|
|
var buf bytes.Buffer
|
|
formatErrorWriter(err, &buf)
|
|
return buf.String()
|
|
}
|
|
|
|
// formatErrorWriter formats the specified error into the provided writer.
|
|
// The error message is escaped if necessary. A newline is added if the
|
|
// error text does not end with a newline.
|
|
func formatErrorWriter(err error, w io.Writer) {
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
msg := trace.UserMessage(err)
|
|
if certErr := formatCertError(err); certErr != "" {
|
|
msg = certErr
|
|
}
|
|
|
|
// Error can be of type trace.proxyError where error message didn't get captured.
|
|
if msg == "" {
|
|
fmt.Fprintln(w, "please check Teleport's log for more details")
|
|
return
|
|
}
|
|
|
|
msg = AllowWhitespace(msg)
|
|
fmt.Fprint(w, msg)
|
|
if !strings.HasSuffix(msg, "\n") {
|
|
w.Write([]byte("\n"))
|
|
}
|
|
}
|
|
|
|
func formatCertError(err error) string {
|
|
const unknownAuthority = `WARNING:
|
|
|
|
The proxy you are connecting to has presented a certificate signed by a
|
|
unknown authority. This is most likely due to either being presented
|
|
with a self-signed certificate or the certificate was truly signed by an
|
|
authority not known to the client.
|
|
|
|
If you know the certificate is self-signed and would like to ignore this
|
|
error use the --insecure flag.
|
|
|
|
If you have your own certificate authority that you would like to use to
|
|
validate the certificate chain presented by the proxy, set the
|
|
SSL_CERT_FILE and SSL_CERT_DIR environment variables respectively and try
|
|
again.
|
|
|
|
If you think something malicious may be occurring, contact your Teleport
|
|
system administrator to resolve this issue.
|
|
`
|
|
if errors.As(err, &x509.UnknownAuthorityError{}) {
|
|
return unknownAuthority
|
|
}
|
|
|
|
var hostnameErr x509.HostnameError
|
|
if errors.As(err, &hostnameErr) {
|
|
// Special case for connecting to Auth via Proxy using internal cluster domain.
|
|
if strings.HasSuffix(hostnameErr.Host, ".teleport.cluster.local") {
|
|
var proxyEnvBuilder strings.Builder
|
|
for _, key := range []string{
|
|
"https_proxy", "http_proxy", "no_proxy",
|
|
"HTTPS_PROXY", "HTTP_PROXY", "NO_PROXY",
|
|
} {
|
|
if val, ok := os.LookupEnv(key); ok {
|
|
fmt.Fprintf(&proxyEnvBuilder, " %s: %s\n", key, val)
|
|
}
|
|
}
|
|
|
|
return fmt.Sprintf(`Cannot connect to the Auth service via the Teleport Proxy.
|
|
|
|
There might be one or more network intermediaries (like a proxy or VPN) that are modifying your connection before it
|
|
reaches the Teleport Proxy. These intermediaries can alter how your connection is seen by the Teleport Proxy and
|
|
routed, leading to certificate mismatches.
|
|
|
|
To fix this, ensure that any network intermediaries are properly configured and not interfering with your connection.
|
|
|
|
DEBUG INFO:
|
|
Host: %s
|
|
|
|
Proxy Environment Variables:
|
|
%s
|
|
Server Certificate Details:
|
|
Subject: %s
|
|
Issuer: %s
|
|
Serial Number: %s
|
|
Not Before: %s
|
|
Not After: %s
|
|
DNS Names: %v
|
|
IP Addresses: %v`,
|
|
hostnameErr.Host,
|
|
proxyEnvBuilder.String(),
|
|
hostnameErr.Certificate.Subject,
|
|
hostnameErr.Certificate.Issuer,
|
|
hostnameErr.Certificate.SerialNumber,
|
|
hostnameErr.Certificate.NotBefore,
|
|
hostnameErr.Certificate.NotAfter,
|
|
hostnameErr.Certificate.DNSNames,
|
|
hostnameErr.Certificate.IPAddresses,
|
|
)
|
|
}
|
|
|
|
return fmt.Sprintf("Cannot establish https connection to %s:\n%s\n%s\n",
|
|
hostnameErr.Host,
|
|
hostnameErr.Error(),
|
|
"try a different hostname for --proxy or specify --insecure flag if you know what you're doing.")
|
|
}
|
|
|
|
var certInvalidErr x509.CertificateInvalidError
|
|
if errors.As(err, &certInvalidErr) {
|
|
return fmt.Sprintf(`WARNING:
|
|
|
|
The certificate presented by the proxy is invalid: %v.
|
|
|
|
Contact your Teleport system administrator to resolve this issue.`, certInvalidErr)
|
|
}
|
|
|
|
// Check for less explicit errors. These are often emitted on Darwin
|
|
if strings.Contains(err.Error(), "certificate is not trusted") {
|
|
return unknownAuthority
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
const (
|
|
// Bold is an escape code to format as bold or increased intensity
|
|
Bold = 1
|
|
// Red is an escape code for red terminal color
|
|
Red = 31
|
|
// Yellow is an escape code for yellow terminal color
|
|
Yellow = 33
|
|
// Blue is an escape code for blue terminal color
|
|
Blue = 36
|
|
// Gray is an escape code for gray terminal color
|
|
Gray = 37
|
|
)
|
|
|
|
// Color formats the string in a terminal escape color
|
|
func Color(color int, v any) string {
|
|
return fmt.Sprintf("\x1b[%dm%v\x1b[0m", color, v)
|
|
}
|
|
|
|
// InitCLIParser configures kingpin command line args parser with
|
|
// some defaults common for all Teleport CLI tools
|
|
func InitCLIParser(appName, appHelp string) (app *kingpin.Application) {
|
|
app = kingpin.New(appName, appHelp)
|
|
|
|
// make all flags repeatable, this makes the CLI easier to use.
|
|
app.AllRepeatable(true)
|
|
|
|
// hide "--help" flag
|
|
app.HelpFlag.Hidden()
|
|
app.HelpFlag.NoEnvar()
|
|
|
|
// write --help output to stdout instead of stderr
|
|
app.UsageWriter(os.Stdout)
|
|
|
|
return app.UsageRenderer(renderCompactUsage)
|
|
}
|
|
|
|
// InitHiddenCLIParser initializes a `kingpin.Application` that does not terminate the application
|
|
// or write any usage information to os.Stdout. Can be used in scenarios where multiple `kingpin.Application`
|
|
// instances are needed without interfering with subsequent parsing. Usage output is completely suppressed,
|
|
// and the default global `--help` flag is ignored to prevent the application from exiting.
|
|
func InitHiddenCLIParser() (app *kingpin.Application) {
|
|
app = kingpin.New("", "")
|
|
app.UsageWriter(io.Discard)
|
|
app.Terminate(func(i int) {})
|
|
|
|
return app
|
|
}
|
|
|
|
// SplitIdentifiers splits list of identifiers by commas/spaces/newlines. Helpful when
|
|
// accepting lists of identifiers in CLI (role names, request IDs, etc).
|
|
func SplitIdentifiers(s string) []string {
|
|
return strings.FieldsFunc(s, func(r rune) bool {
|
|
return r == ',' || unicode.IsSpace(r)
|
|
})
|
|
}
|
|
|
|
// EscapeControl escapes all ANSI escape sequences from string and returns a
|
|
// string that is safe to print on the CLI. This is to ensure that malicious
|
|
// servers can not hide output. For more details, see:
|
|
// - https://sintonen.fi/advisories/scp-client-multiple-vulnerabilities.txt
|
|
func EscapeControl(s string) string {
|
|
if needsQuoting(s) {
|
|
return fmt.Sprintf("%q", s)
|
|
}
|
|
return s
|
|
}
|
|
|
|
// isAllowedWhitespace is a helper function for cli output escaping that returns
|
|
// true if a given rune is a whitespace character and allowed to be unescaped.
|
|
func isAllowedWhitespace(r rune) bool {
|
|
switch r {
|
|
case '\n', '\t', '\v':
|
|
// newlines, tabs, vertical tabs are allowed whitespace.
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// AllowWhitespace escapes all ANSI escape sequences except some whitespace
|
|
// characters (\n \t \v) from string and returns a string that is safe to
|
|
// print on the CLI. This is to ensure that malicious servers can not hide
|
|
// output. For more details, see:
|
|
// - https://sintonen.fi/advisories/scp-client-multiple-vulnerabilities.txt
|
|
func AllowWhitespace(s string) string {
|
|
// loop over string searching for part to escape followed by allowed char.
|
|
// example: `\tabc\ndef\t\n`
|
|
// 1. part: "" sep: "\t"
|
|
// 2. part: "abc" sep: "\n"
|
|
// 3. part: "def" sep: "\t"
|
|
// 4. part: "" sep: "\n"
|
|
var sb strings.Builder
|
|
// note that increment also happens at bottom of loop because we can
|
|
// safely jump to place where allowedWhitespace was found.
|
|
for i := 0; i < len(s); i++ {
|
|
sepIdx := strings.IndexFunc(s[i:], isAllowedWhitespace)
|
|
if sepIdx == -1 {
|
|
// infalliable call, ignore error.
|
|
_, _ = sb.WriteString(EscapeControl(s[i:]))
|
|
// no separators remain.
|
|
break
|
|
}
|
|
part := EscapeControl(s[i : i+sepIdx])
|
|
_, _ = sb.WriteString(part)
|
|
sep := s[i+sepIdx]
|
|
_ = sb.WriteByte(sep)
|
|
i += sepIdx
|
|
}
|
|
return sb.String()
|
|
}
|
|
|
|
// needsQuoting returns true if any non-printable characters are found.
|
|
func needsQuoting(text string) bool {
|
|
for _, r := range text {
|
|
if !strconv.IsPrint(r) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// defaultCommandPrintfWidth is the default command printf width.
|
|
const defaultCommandPrintfWidth = 12
|
|
|
|
// renderCompactUsage is a kingpin UsageRenderer used by all binaries to
|
|
// output usage text. It uses a kingpin UsageRenderer instead of
|
|
// UsageTemplate/UsageFuncs in order to avoid text/template (and reflect.MethodByName)
|
|
// so that the linker can enable dead-code elimination.
|
|
func renderCompactUsage(w io.Writer, ctx *kingpin.UsageContext) error {
|
|
width := ctx.Width
|
|
|
|
if ctx.Context.SelectedCommand != nil {
|
|
cmd := ctx.Context.SelectedCommand
|
|
fmt.Fprintf(w, "usage: %s %s", ctx.App.Name, cmd.String())
|
|
kingpin.WriteFormatUsage(w, cmd.FlagGroupModel, cmd.ArgGroupModel, cmd.CmdGroupModel, cmd.Help, width)
|
|
} else {
|
|
fmt.Fprintf(w, "Usage: %s", ctx.App.Name)
|
|
kingpin.WriteFormatUsage(w, ctx.App.FlagGroupModel, ctx.App.ArgGroupModel, ctx.App.CmdGroupModel, ctx.App.Help, width)
|
|
}
|
|
fmt.Fprintln(w)
|
|
|
|
if len(ctx.Context.Flags) > 0 {
|
|
fmt.Fprintln(w, "Flags:")
|
|
kingpin.FormatTwoColumns(w, ctx.Indent, 2, width, kingpin.FlagsToTwoColumns(ctx.Context.Flags))
|
|
fmt.Fprintln(w)
|
|
}
|
|
if len(ctx.Context.Args) > 0 {
|
|
fmt.Fprintln(w, "Args:")
|
|
kingpin.FormatTwoColumns(w, ctx.Indent, 2, width, kingpin.ArgsToTwoColumns(ctx.Context.Args))
|
|
fmt.Fprintln(w)
|
|
}
|
|
|
|
writeCommands := func(cmds []*kingpin.CmdModel) {
|
|
cmdWidth := defaultCommandPrintfWidth
|
|
for _, cmd := range cmds {
|
|
if cmd.Hidden {
|
|
continue
|
|
}
|
|
cmdWidth = max(cmdWidth, len(cmd.Name))
|
|
}
|
|
for _, cmd := range cmds {
|
|
if cmd.Hidden {
|
|
continue
|
|
}
|
|
fmt.Fprintf(w, " %-*s", cmdWidth, cmd.Name)
|
|
if cmd.Default {
|
|
fmt.Fprint(w, " (Default)")
|
|
}
|
|
fmt.Fprintf(w, " %s\n", cmd.Help)
|
|
}
|
|
}
|
|
|
|
if ctx.Context.SelectedCommand != nil {
|
|
if ctx.Context.SelectedCommand.CmdGroupModel != nil && len(ctx.Context.SelectedCommand.Commands) > 0 {
|
|
fmt.Fprintln(w, "Commands:")
|
|
writeCommands(ctx.Context.SelectedCommand.Commands)
|
|
fmt.Fprintln(w)
|
|
}
|
|
if len(ctx.Context.SelectedCommand.Aliases) > 0 {
|
|
fmt.Fprintln(w, "Aliases:")
|
|
for _, alias := range ctx.Context.SelectedCommand.Aliases {
|
|
fmt.Fprintln(w, alias)
|
|
}
|
|
fmt.Fprintln(w)
|
|
}
|
|
} else if ctx.App.CmdGroupModel != nil && len(ctx.App.Commands) > 0 {
|
|
fmt.Fprintln(w, "Commands:")
|
|
writeCommands(ctx.App.Commands)
|
|
fmt.Fprintln(w)
|
|
fmt.Fprintf(w, "Try '%s help [command]' to get help for a given command.\n\n", ctx.App.Name)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// IsPredicateError determines if the error is from failing to parse predicate expression
|
|
// by checking if the error as a string contains predicate keywords.
|
|
func IsPredicateError(err error) bool {
|
|
return strings.Contains(err.Error(), "predicate expression")
|
|
}
|
|
|
|
type PredicateError struct {
|
|
Err error
|
|
}
|
|
|
|
func (p PredicateError) Error() string {
|
|
return fmt.Sprintf("%s\nCheck syntax at https://goteleport.com/docs/reference/predicate-language/#resource-filtering", p.Err.Error())
|
|
}
|
|
|
|
// FormatAlert formats and colors the alert message if possible.
|
|
func FormatAlert(alert types.ClusterAlert) string {
|
|
// TODO(timothyb89): Due to complications with globally enabling +
|
|
// properly resetting Windows terminal ANSI processing, for now we just
|
|
// disable color output. Otherwise, raw ANSI escapes will be visible to
|
|
// users.
|
|
var buf bytes.Buffer
|
|
switch runtime.GOOS {
|
|
case constants.WindowsOS:
|
|
fmt.Fprint(&buf, alert.Spec.Message)
|
|
default:
|
|
switch alert.Spec.Severity {
|
|
case types.AlertSeverity_HIGH:
|
|
fmt.Fprint(&buf, Color(Red, alert.Spec.Message))
|
|
case types.AlertSeverity_MEDIUM:
|
|
fmt.Fprint(&buf, Color(Yellow, alert.Spec.Message))
|
|
default:
|
|
fmt.Fprint(&buf, alert.Spec.Message)
|
|
}
|
|
}
|
|
return buf.String()
|
|
}
|
|
|
|
// FilterArguments filters the input arguments, keeping only those defined in the provided `kingpin.ApplicationModel`.
|
|
// For example, if the model defines only one boolean flag `--insecure`, all other arguments in `args`
|
|
// will be excluded, and only the `--insecure` flag will remain.
|
|
func FilterArguments(args []string, model *kingpin.ApplicationModel) []string {
|
|
var result []string
|
|
for _, flag := range model.Flags {
|
|
for i := range args {
|
|
if strings.HasPrefix(args[i], fmt.Sprint("--", flag.Name, "=")) {
|
|
result = append(result, args[i])
|
|
break
|
|
}
|
|
if args[i] == fmt.Sprint("--", flag.Name) {
|
|
if flag.IsBoolFlag() {
|
|
result = append(result, args[i])
|
|
} else if i+2 <= len(args) {
|
|
result = append(result, args[i], args[i+1])
|
|
}
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return result
|
|
}
|