Files

103 lines
3.2 KiB
Markdown
Raw Permalink Normal View History

2017-04-17 11:24:14 -07:00
# ssh_config
2017-04-23 11:42:22 -07:00
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.
2017-04-17 11:24:14 -07:00
2017-05-25 08:16:57 -07:00
It's designed to be used with the excellent
[x/crypto/ssh](https://golang.org/x/crypto/ssh) package, which handles SSH
negotiation but isn't very easy to configure.
2017-04-23 11:47:51 -07:00
The `ssh_config` `Get()` and `GetStrict()` functions will attempt to read values
2017-05-25 08:16:57 -07:00
from `$HOME/.ssh/config` and fall back to `/etc/ssh/ssh_config`. The first
2017-04-23 11:47:51 -07:00
argument is the host name to match on, and the second argument is the key you
want to retrieve.
```go
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.
```go
files := ssh_config.GetAll("myhost", "IdentityFile")
```
2017-05-25 22:05:04 -07:00
You can also load a config file and read values from it.
2017-05-25 08:16:57 -07:00
2017-05-25 22:05:04 -07:00
```go
var config = `
2017-05-26 11:06:09 -07:00
Host *.test
2017-05-25 22:05:04 -07:00
Compression yes
`
cfg, err := ssh_config.Decode(strings.NewReader(config))
2017-05-26 11:06:09 -07:00
fmt.Println(cfg.Get("example.test", "Port"))
2017-05-25 22:05:04 -07:00
```
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.
2024-03-05 19:38:17 -08:00
### Reloading SSH config files
Once the first call to `Get()`, `GetStrict()`, `GetAll()`, or `GetAllStrict()`
has been made, the contents of the config files will be cached for all future
calls to any of those functions. The `ReloadConfigs()` function will reset
this cache and replace it with the current config file contents.
```go
ssh_config.ReloadConfigs()
```
2017-05-25 22:05:04 -07:00
### Manipulating SSH config files
Here's how you can manipulate an SSH config file, and then write it back to
disk.
2017-04-17 11:24:14 -07:00
```go
f, _ := os.Open(filepath.Join(os.Getenv("HOME"), ".ssh", "config"))
2017-04-23 11:42:22 -07:00
cfg, _ := ssh_config.Decode(f)
2017-04-17 11:24:14 -07:00
for _, host := range cfg.Hosts {
fmt.Println("patterns:", host.Patterns)
for _, node := range host.Nodes {
2017-05-25 22:05:04 -07:00
// Manipulate the nodes as you see fit, or use a type switch to
// distinguish between Empty, KV, and Include nodes.
2017-04-17 11:24:14 -07:00
fmt.Println(node.String())
}
}
2017-05-25 22:05:04 -07:00
// Print the config to stdout:
2017-04-17 11:24:14 -07:00
fmt.Println(cfg.String())
```
2017-04-23 11:47:51 -07:00
## Spec compliance
2017-04-23 11:42:22 -07:00
2017-04-23 11:47:51 -07:00
Wherever possible we try to implement the specification as documented in
the `ssh_config` manpage. Unimplemented features should be present in the
2017-05-25 22:05:04 -07:00
[issues][issues] list.
Notably, the `Match` directive is currently unsupported.
2017-04-23 11:47:51 -07:00
[issues]: https://github.com/kevinburke/ssh_config/issues
2017-04-23 11:42:22 -07:00
2017-05-25 08:22:23 -07:00
## Errata
This is the second [comment-preserving configuration parser][blog] I've written, after
[an /etc/hosts parser][hostsfile]. Eventually, I will write one for every Linux
file format.
[blog]: https://kev.inburke.com/kevin/more-comment-preserving-configuration-parsers/
[hostsfile]: https://github.com/kevinburke/hostsfile
2022-11-08 20:20:52 -08:00
## Sponsorships
2017-04-23 11:42:22 -07:00
2022-11-08 20:20:52 -08:00
Thank you very much to Tailscale and Indeed for sponsoring development of this
library. [Sponsors][sponsors] will get their names featured in the README.
2022-03-31 09:31:12 -07:00
You can also reach out about a consulting engagement: https://burke.services
2022-11-08 20:20:52 -08:00
[sponsors]: https://github.com/sponsors/kevinburke