blob: f3b93088baef0b4a6389f90aa6ac106b63862a3d (
about) (
plain)
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
|
;;; shell.scm -- Remote shell.
;; Copyright (C) 2016 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;
;; This file is a part of Guile-SSH.
;;
;; Guile-SSH 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.
;;
;; Guile-SSH 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 Guile-SSH. If not, see
;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Remote shell.
;;
;; The module provides the following procedures:
;; rexec
;; which
;; pgrep
;; fallback-pgrep
;;
;; See the Info documentation for detailed description of these exceptions and
;; aforementioned procedures.
;;; Code:
(define-module (ssh shell)
#:use-module (ice-9 rdelim)
#:use-module (ice-9 regex)
#:use-module (ice-9 format)
#:use-module (ice-9 receive)
#:use-module (ssh channel)
#:use-module (ssh popen)
#:export (rexec which pgrep pkill fallback-pgrep command-available?))
;;;
;; TODO: Move to some other file do prevent duplicating of the procedure in
;; (ssh dist node).
(define (eof-or-null? str)
"Return #t if a STR is an EOF object or an empty string, #f otherwise."
(or (eof-object? str) (string-null? str)))
;;;
(define (rexec session cmd)
"Execute a command CMD on the remote side. Return two values: list of
output lines returned by CMD and its exit code."
(let ((channel (open-remote-input-pipe session cmd)))
(values (let loop ((line (read-line channel))
(result '()))
(if (eof-or-null? line)
(reverse result)
(loop (read-line channel)
(cons line result))))
(channel-get-exit-status channel))))
;;;
(define (which session program-name)
"Check if a PROGRAM-NAME is available on a remote side. Return two values:
a check result and a return code."
(rexec session (format #f "which '~a'" program-name)))
;; We should use short '-f' option for pgrep and pkill instead of the long
;; version of it ('--full') because the long version was added on september
;; 2011 (according to the commit log of procps-ng [1]) and some systems may
;; not support it due to older procps.
;;
;; [1] https://gitlab.com/procps-ng/procps/commit/4581ac2240d3c2108c6a65ba2d19599195b512bc
(define* (pgrep session pattern #:key (full? #f))
"Check if a process with a PATTERN cmdline is available on a NODE.
Return two values: a check result and a return code."
(rexec session (format #f "pgrep ~a '~a'"
(if full? "-f" "")
pattern)))
(define* (pkill session pattern #:key (full? #f))
(rexec session (format #f "pkill ~a '~a'"
(if full? "-f" "")
pattern)))
(define (fallback-pgrep session pattern)
"Guile-SSH implementation of 'pgrep' that uses pure bash and '/proc'
filesystem. Check if a process with a PATTERN cmdline is available on a NODE.
Return two values: a check result and a return code."
(define (make-command ptrn)
(format #f "\
echo '
for p in $(ls /proc); do
if [[ \"$p\" =~~ ^[0-9]+ ]]; then
name=$(cat \"/proc/$p/status\" 2>/dev/null | head -1);
if [[ \"$name\" =~~ Name:.*guile ]]; then
cmdline=$(cat \"/proc/$p/cmdline\");
if [[ \"$cmdline\" =~~ ~a ]]; then
exit 0;
fi;
fi;
fi;
done;
exit 1;
' | bash
" ptrn))
(let ((ptrn (string-append (regexp-substitute/global #f " " pattern
'pre "?" 'post)
".*")))
(rexec session (make-command ptrn))))
(define (command-available? session command)
"check if COMMAND is available on a remote side."
(receive (result rc)
(which session command)
(zero? rc)))
;;; shell.scm ends here.
|