/usr/share/gnu-smalltalk/scripts/Remote.st is in gnu-smalltalk-common 3.2.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | "======================================================================
|
| GNU Smalltalk remote control script
|
|
======================================================================"
"======================================================================
|
| Copyright 2008, 2009 Free Software Foundation, Inc.
| Written by Paolo Bonzini and Mike Anderson.
|
| This file is part of GNU Smalltalk.
|
| GNU Smalltalk 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 2, or (at your option) any later version.
|
| GNU Smalltalk 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
| GNU Smalltalk; see the file COPYING. If not, write to the Free Software
| Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
======================================================================"
PackageLoader fileInPackage: 'TCP'.
DLD addLibrary: 'libc'.
(CFunctionDescriptor isFunction: 'getpid')
ifTrue: [
SystemDictionary compile: '
getpid [ <cCall: ''getpid'' returning: #int args: #()> ]' ]
ifFalse: [
SystemDictionary compile: '
getpid [ ^''--pid not available'' ]' ].
TextCollector subclass: MultiplexingTextCollector [
| default outputs |
initialize [
outputs := LookupTable new.
super initialize
]
register: aStream [
semaphore critical: [ outputs at: Processor activeProcess put: aStream ]
]
unregister [
semaphore critical: [
outputs removeKey: Processor activeProcess ifAbsent: [] ]
]
primNextPutAll: aString [
| dest |
dest := outputs at: Processor activeProcess ifAbsent: [ nil ].
dest isNil
ifFalse: [
[ dest nextPutAllFlush: aString ]
ifCurtailed: [
self unregister.
Processor activeProcess terminate ] ]
ifTrue: [ super primNextPutAll: aString ].
]
]
| helpString commands server port host login |
commands := OrderedCollection new.
server := false.
port := 12345.
host := nil.
login := nil.
helpString :=
'Usage:
gst-remote [ flag ... ] [user@]host
Options:
--daemon start background server
--server start daemon
-p --port=PORT connect/listen on given port (default 12345)
-f --file=FILE file in FILE
-e --eval=CODE evaluate CODE
-l --login=USER use remote ssh connection
--kill kill daemon
--snapshot[=FILE] save image
--package=PACKAGE load package
--start=PACKAGE[:DATA] load package and start it (defined in package.xml)
--stop=PACKAGE[:DATA] load package and stop it (defined in package.xml)
--pid print daemon pid
-h --help show this message
-v --verbose print extra information while processing
--version print version information and exit
If a remote login name is given, gst-remote will use the SSH environment
variable (if present) to launch commands remotely. Netcat (nc) should be
available in the PATH of the remote machine.
'.
"Parse the command-line arguments."
[Smalltalk
arguments: '-h|--help --version --daemon --server -p|--port: -f|--file:
-e|--eval: --pid --kill --snapshot:: --start: --stop:
-l|--login: --package: -I|--image: --kernel-directory:
-v|-V|--verbose'
do: [ :opt :arg |
opt = 'help' ifTrue: [
helpString displayOn: stdout.
ObjectMemory quit: 0 ].
opt = 'version' ifTrue: [
('gst-remote - %1' % {Smalltalk version}) displayNl.
ObjectMemory quit: 0 ].
opt = 'login' ifTrue: [
login isNil ifFalse: [ self error: 'multiple logins are invalid' ].
login := arg ].
opt = 'daemon' ifTrue: [
server := true ].
opt = 'server' ifTrue: [
server := true ].
opt = 'port' ifTrue: [
port := arg asInteger ].
opt = 'start' ifTrue: [
| package data |
package := arg copyUpTo: $:.
package = arg
ifTrue: [
commands add: '(PackageLoader packageAt: %1) start'
% {package storeString} ]
ifFalse: [
commands add: '(PackageLoader packageAt: %1) start: %2'
% {package storeString. (arg copyAfter: $:) storeString } ] ].
opt = 'stop' ifTrue: [
| package data |
package := arg copyUpTo: $:.
package = arg
ifTrue: [
commands add: '(PackageLoader packageAt: %1) stop'
% {package storeString} ]
ifFalse: [
commands add: '(PackageLoader packageAt: %1) stop: %2'
% {package storeString. (arg copyAfter: $:) storeString } ] ].
opt = 'file' ifTrue: [
commands add: (File name: arg) ].
opt = 'package' ifTrue: [
commands add: 'PackageLoader fileInPackage: %1' % {arg storeString} ].
opt = 'eval' ifTrue: [
commands add: arg ].
opt = 'pid' ifTrue: [
commands add: 'Smalltalk getpid displayNl' ].
opt = 'kill' ifTrue: [
commands add: 'Transcript nextPut: $<0>. ObjectMemory quit: 0' ].
opt = 'snapshot' ifTrue: [
arg isNil
ifTrue: [ commands add: 'ObjectMemory snapshot' ]
ifFalse: [ commands add: 'ObjectMemory snapshot: ',
(Directory working / arg) name storeString ] ].
opt = 'verbose' ifTrue: [
OutputVerbosity := 1.
FileStream verbose: true ].
opt isNil ifTrue: [
host isNil ifFalse: [ self error: 'multiple hosts are invalid' ].
(arg includes: $@)
ifFalse: [ host := arg ]
ifTrue: [
login isNil ifFalse: [ self error: 'multiple logins are invalid' ].
login := arg copyUpTo: $@.
host := arg copyAfter: $@ ] ].
]
ifError: [
helpString displayOn: stderr.
ObjectMemory quit: 1 ].
]
on: Error do: [ :ex |
('gst-remote: ', ex messageText, '
') displayOn: stderr.
stderr flush.
helpString displayOn: stderr.
ObjectMemory quit: 1 ].
server ifTrue: [
PackageLoader fileInPackage: 'Compiler'.
Transcript := MultiplexingTextCollector message: Transcript message.
[
| queue |
queue := TCP.ServerSocket port: port bindTo: host.
[
[
| conn |
[
queue waitForConnection.
(conn := queue accept) isNil
] whileTrue: [
queue isOpen ifFalse: [ Processor activeProcess terminate ].
Processor yield
].
[
[[
Transcript register: conn.
[ conn isPeerAlive ] whileTrue: [
Behavior
evaluate: (conn upTo: $<0>)
to: nil
ifError: [ :fname :line :msg |
conn nextPutAll: ('gst-remote: error at line %1: %2
' % { line. msg }) ].
conn nextPut: $<0>; flush ] ]
on: Error
do: [ :ex | ex return ]]
ensure: [
Transcript unregister.
conn close ]
] fork
] repeat
]
on: Error
do: [ :ex |
('gst-remote server: ', ex messageText, '
') displayOn: stderr.
ex pass.
ObjectMemory quit: 1 ].
] fork.
Transcript nextPutAll: 'gst-remote server started.'; nl ].
[
commands isEmpty ifFalse: [
s := (login isNil or: [ host isNil ])
ifTrue: [
host isNil ifTrue: [ host := TCP.IPAddress anyLocalAddress ].
TCP.Socket remote: host port: port ]
ifFalse: [
FileStream
popen: '%1 %2@%3 nc localhost %4' % {
(Smalltalk getenv: 'SSH') ifNil: [ 'ssh' ].
login. host. port}
dir: 'r+' ].
commands do: [ :each |
"Using #readStream makes it work both for Strings and Files."
s nextPutAll: each readStream; nextPut: $<0>; flush.
[s canRead ifFalse: [stdout flush].
s atEnd or: [s peekFor: $<0>]]
whileFalse: [stdout nextPut: s next]].
s close ]
]
on: Error
do: [ :ex || msg |
stdout flush.
msg := (s notNil and: [ s isPeerAlive not ])
ifTrue: [ 'server unavailable' ]
ifFalse: [ ex messageText ].
('gst-remote: ', msg, '
') displayOn: stderr.
stderr flush.
s isNil ifFalse: [ s close ].
"ex pass."
server ifFalse: [ ObjectMemory quit: 1 ] ].
server
ifTrue: [ Processor activeProcess suspend ]
ifFalse: [ ObjectMemory quit ]
|