tea/vendor/github.com/kevinburke/ssh_config
Norwin d6df0a53b5 Update Dependencies (#390)
Co-authored-by: Norwin Roosen <git@nroo.de>
Co-authored-by: Norwin <git@nroo.de>
Reviewed-on: gitea/tea#390
Reviewed-by: 6543 <6543@obermui.de>
Reviewed-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: Norwin <noerw@noreply.gitea.io>
Co-committed-by: Norwin <noerw@noreply.gitea.io>
2021-08-30 23:18:50 +08:00
..
.gitattributes changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
.gitignore changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
.mailmap changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
AUTHORS.txt Update Vendors (#250) 2020-11-09 23:25:54 +08:00
config.go Update Dependencies (#390) 2021-08-30 23:18:50 +08:00
lexer.go changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
LICENSE changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
Makefile changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
parser.go changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
position.go changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
README.md Update Dependencies (#390) 2021-08-30 23:18:50 +08:00
token.go changed git config determination to go-git (#41) [continue #45] (#62) 2019-10-28 21:10:20 +00:00
validators.go Update Dependencies (#390) 2021-08-30 23:18:50 +08:00

ssh_config

This is a Go parser for ssh_config files. Importantly, this parser attempts to preserve comments in a given file, so you can manipulate a ssh_config file from a program, if your heart desires.

It's designed to be used with the excellent x/crypto/ssh package, which handles SSH negotiation but isn't very easy to configure.

The ssh_config Get() and GetStrict() functions will attempt to read values from $HOME/.ssh/config and fall back to /etc/ssh/ssh_config. The first argument is the host name to match on, and the second argument is the key you want to retrieve.

port := ssh_config.Get("myhost", "Port")

Certain directives can occur multiple times for a host (such as IdentityFile), so you should use the GetAll or GetAllStrict directive to retrieve those instead.

files := ssh_config.GetAll("myhost", "IdentityFile")

You can also load a config file and read values from it.

var config = `
Host *.test
  Compression yes
`

cfg, err := ssh_config.Decode(strings.NewReader(config))
fmt.Println(cfg.Get("example.test", "Port"))

Some SSH arguments have default values - for example, the default value for KeyboardAuthentication is "yes". If you call Get(), and no value for the given Host/keyword pair exists in the config, we'll return a default for the keyword if one exists.

Manipulating SSH config files

Here's how you can manipulate an SSH config file, and then write it back to disk.

f, _ := os.Open(filepath.Join(os.Getenv("HOME"), ".ssh", "config"))
cfg, _ := ssh_config.Decode(f)
for _, host := range cfg.Hosts {
    fmt.Println("patterns:", host.Patterns)
    for _, node := range host.Nodes {
        // Manipulate the nodes as you see fit, or use a type switch to
        // distinguish between Empty, KV, and Include nodes.
        fmt.Println(node.String())
    }
}

// Print the config to stdout:
fmt.Println(cfg.String())

Spec compliance

Wherever possible we try to implement the specification as documented in the ssh_config manpage. Unimplemented features should be present in the issues list.

Notably, the Match directive is currently unsupported.

Errata

This is the second comment-preserving configuration parser I've written, after an /etc/hosts parser. Eventually, I will write one for every Linux file format.

Donating

Donations free up time to make improvements to the library, and respond to bug reports. You can send donations via Paypal's "Send Money" feature to kev@inburke.com. Donations are not tax deductible in the USA.