1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
#!@GUILE@ \
--debug -e main
# aside from this initial boilerplate, this is actually -*- scheme -*- code
!#
;;; client.scm -- Echo client example.
;; Copyright (C) 2014, 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU 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
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see
;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Echo client example.
;;
;; Usage: client.scm [ options ] <host> <string>
;;
;; Options:
;; --user=<user>, -u <user> User name
;; --port=<port-number>, -p <port-number> Port number
;; --identity-file=<file>, -i <file> Path to private key
;;
;; Examples:
;; $ ./client.scm -i ~/.ssh/id_rsa -p 12345 127.0.0.1 "`date`"
;;; Code:
(use-modules (ice-9 getopt-long)
(ice-9 rdelim)
(ssh channel)
(ssh session)
(ssh auth)
(ssh key))
(define *program-name* "client.scm")
(define *default-identity-file* (format #f "~a/.ssh/id_rsa" (getenv "HOME")))
(define *default-user* (getenv "USER"))
(define *default-port* "22")
;; Command line options
(define *option-spec*
'((user (single-char #\u) (value #t))
(port (single-char #\p) (value #t))
(identity-file (single-char #\i) (value #t))
(help (single-char #\h) (value #f))))
(define (print-help-and-exit)
"Print information about program usage."
(display (string-append "\
" *program-name* " -- Echo client example.
Copyright (C) Artyom V. Poptsov <poptsov.artyom@gmail.com>
Licensed under GNU GPLv3+
Usage: " *program-name* " [ options ] <host> <string>
Options:
--user=<user>, -u <user> User name
--port=<port-number>, -p <port-number> Port number
--identity-file=<file>, -i <file> Path to private key
"))
(exit 0))
(define (handle-error session)
"Handle a SSH error."
(display (get-error session))
(newline)
(exit 1))
(define (get-prvkey session identity-file)
"Get a private SSH key. Handle possible errors."
(let ((prvkey (private-key-from-file identity-file)))
(or prvkey
(handle-error session))
prvkey))
(define (read-all port)
"Read all lines from the PORT."
(let r ((res (read-line port 'concat))
(str ""))
(if (not (eof-object? str))
(r (string-append res str) (read-line port 'concat))
res)))
(define (main args)
"Entry point of the program."
(let* ((options (getopt-long args *option-spec*))
(user (option-ref options 'user *default-user*))
(port (option-ref options 'port *default-port*))
(identity-file (option-ref options 'identity-file
*default-identity-file*))
(help-needed? (option-ref options 'help #f))
(args (option-ref options '() #f)))
(and (or (null? args) help-needed?)
(print-help-and-exit))
(let* ((host (car args))
(str (cadr args))
(session (make-session #:user user
#:host host
#:port (string->number port)
#:log-verbosity 'nolog))) ;Be quiet
(connect! session)
(case (authenticate-server session)
((not-known)
(let* ((pubkey (get-server-public-key session))
(hash (get-public-key-hash pubkey 'md5)))
(display "The server is unknown. Please check MD5 sum:\n")
(format #t " ~a~%" (bytevector->hex-string hash)))))
(let ((private-key (get-prvkey session identity-file)))
(and (eqv? (userauth-public-key! session private-key) 'error)
(handle-error session))
(let ((channel (make-channel session)))
(or channel
(handle-error session))
(channel-open-session channel)
(write-line str channel)
(let poll ((ready? #f))
(if ready?
(format #t "Response from server: ~a~%" (read-all channel))
(poll (char-ready? channel))))
(close channel))))))
;;; echo.scm ends here.
|