-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
process.cr
602 lines (516 loc) · 17.6 KB
/
process.cr
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
require "c/signal"
require "c/stdlib"
require "c/sys/resource"
require "c/unistd"
class Process
# Terminate the current process immediately. All open files, pipes and sockets
# are flushed and closed, all child processes are inherited by PID 1. This does
# not run any handlers registered with `at_exit`, use `::exit` for that.
#
# *status* is the exit status of the current process.
def self.exit(status = 0)
LibC.exit(status)
end
# Returns the process identifier of the current process.
def self.pid : LibC::PidT
LibC.getpid
end
# Returns the process group identifier of the current process.
def self.pgid : LibC::PidT
pgid(0)
end
# Returns the process group identifier of the process identified by *pid*.
def self.pgid(pid : Int32) : LibC::PidT
ret = LibC.getpgid(pid)
raise RuntimeError.from_errno("getpgid") if ret < 0
ret
end
# Returns the process identifier of the parent process of the current process.
def self.ppid : LibC::PidT
LibC.getppid
end
# Sends a *signal* to the processes identified by the given *pids*.
@[Deprecated("Use #signal instead")]
def self.kill(signal : Signal, *pids : Int)
pids.each do |pid|
signal(signal, pid)
end
nil
end
# Sends *signal* to the process identified by *pid*.
def self.signal(signal : Signal, pid : Int) : Nil
ret = LibC.kill(pid, signal.value)
raise RuntimeError.from_errno("kill") if ret < 0
end
# Returns `true` if the process identified by *pid* is valid for
# a currently registered process, `false` otherwise. Note that this
# returns `true` for a process in the zombie or similar state.
def self.exists?(pid : Int)
ret = LibC.kill(pid, 0)
if ret == 0
true
else
return false if Errno.value == Errno::ESRCH
raise RuntimeError.from_errno("kill")
end
end
# A struct representing the CPU current times of the process,
# in fractions of seconds.
#
# * *utime*: CPU time a process spent in userland.
# * *stime*: CPU time a process spent in the kernel.
# * *cutime*: CPU time a processes terminated children (and their terminated children) spent in the userland.
# * *cstime*: CPU time a processes terminated children (and their terminated children) spent in the kernel.
record Tms, utime : Float64, stime : Float64, cutime : Float64, cstime : Float64
# Returns a `Tms` for the current process. For the children times, only those
# of terminated children are returned.
def self.times : Tms
LibC.getrusage(LibC::RUSAGE_SELF, out usage)
LibC.getrusage(LibC::RUSAGE_CHILDREN, out child)
Tms.new(
usage.ru_utime.tv_sec.to_f64 + usage.ru_utime.tv_usec.to_f64 / 1e6,
usage.ru_stime.tv_sec.to_f64 + usage.ru_stime.tv_usec.to_f64 / 1e6,
child.ru_utime.tv_sec.to_f64 + child.ru_utime.tv_usec.to_f64 / 1e6,
child.ru_stime.tv_sec.to_f64 + child.ru_stime.tv_usec.to_f64 / 1e6,
)
end
# Runs the given block inside a new process and
# returns a `Process` representing the new child process.
def self.fork : Process
{% raise("Process fork is unsupported with multithread mode") if flag?(:preview_mt) %}
if pid = fork_internal(will_exec: false)
new pid
else
begin
yield
LibC._exit 0
rescue ex
ex.inspect_with_backtrace STDERR
STDERR.flush
LibC._exit 1
ensure
LibC._exit 254 # not reached
end
end
end
# Duplicates the current process.
# Returns a `Process` representing the new child process in the current process
# and `nil` inside the new child process.
def self.fork : Process?
{% raise("Process fork is unsupported with multithread mode") if flag?(:preview_mt) %}
if pid = fork_internal(will_exec: false)
new pid
else
nil
end
end
# :nodoc:
protected def self.fork_internal(*, will_exec : Bool)
newmask = uninitialized LibC::SigsetT
oldmask = uninitialized LibC::SigsetT
LibC.sigfillset(pointerof(newmask))
ret = LibC.pthread_sigmask(LibC::SIG_SETMASK, pointerof(newmask), pointerof(oldmask))
raise RuntimeError.from_errno("Failed to disable signals") unless ret == 0
case pid = LibC.fork
when 0
# child:
pid = nil
if will_exec
# reset signal handlers, then sigmask (inherited on exec):
Crystal::Signal.after_fork_before_exec
LibC.sigemptyset(pointerof(newmask))
LibC.pthread_sigmask(LibC::SIG_SETMASK, pointerof(newmask), nil)
else
{% unless flag?(:preview_mt) %}
Process.after_fork_child_callbacks.each(&.call)
{% end %}
LibC.pthread_sigmask(LibC::SIG_SETMASK, pointerof(oldmask), nil)
end
when -1
# error:
errno = Errno.value
LibC.pthread_sigmask(LibC::SIG_SETMASK, pointerof(oldmask), nil)
raise RuntimeError.from_errno("fork", errno)
else
# parent:
LibC.pthread_sigmask(LibC::SIG_SETMASK, pointerof(oldmask), nil)
end
pid
end
# How to redirect the standard input, output and error IO of a process.
enum Redirect
# Pipe the IO so the parent process can read (or write) to the process IO
# through `#input`, `#output` or `#error`.
Pipe
# Discards the IO.
Close
# Use the IO of the parent process.
Inherit
end
# The standard `IO` configuration of a process.
alias Stdio = Redirect | IO
alias ExecStdio = Redirect | IO::FileDescriptor
alias Env = Nil | Hash(String, Nil) | Hash(String, String?) | Hash(String, String)
# Executes a process and waits for it to complete.
#
# By default the process is configured without input, output or error.
def self.run(command : String, args = nil, env : Env = nil, clear_env : Bool = false, shell : Bool = false,
input : Stdio = Redirect::Close, output : Stdio = Redirect::Close, error : Stdio = Redirect::Close, chdir : String? = nil) : Process::Status
status = new(command, args, env, clear_env, shell, input, output, error, chdir).wait
$? = status
status
end
# Executes a process, yields the block, and then waits for it to finish.
#
# By default the process is configured to use pipes for input, output and error. These
# will be closed automatically at the end of the block.
#
# Returns the block's value.
def self.run(command : String, args = nil, env : Env = nil, clear_env : Bool = false, shell : Bool = false,
input : Stdio = Redirect::Pipe, output : Stdio = Redirect::Pipe, error : Stdio = Redirect::Pipe, chdir : String? = nil)
process = new(command, args, env, clear_env, shell, input, output, error, chdir)
begin
value = yield process
$? = process.wait
value
rescue ex
process.terminate
raise ex
end
end
# Replaces the current process with a new one. This function never returns.
def self.exec(command : String, args = nil, env : Env = nil, clear_env : Bool = false, shell : Bool = false,
input : ExecStdio = Redirect::Inherit, output : ExecStdio = Redirect::Inherit, error : ExecStdio = Redirect::Inherit, chdir : String? = nil)
command, args = prepare_args(command, args, shell)
input = exec_stdio_to_fd(input, for: STDIN)
output = exec_stdio_to_fd(output, for: STDOUT)
error = exec_stdio_to_fd(error, for: STDERR)
exec_internal(command, args, env, clear_env, input, output, error, chdir)
end
private def self.exec_stdio_to_fd(stdio : ExecStdio, for dst_io : IO::FileDescriptor) : IO::FileDescriptor
case stdio
when IO::FileDescriptor
stdio
when Redirect::Pipe
raise "Cannot use Process::Redirect::Pipe for Process.exec"
when Redirect::Inherit
dst_io
when Redirect::Close
if dst_io == STDIN
File.open(File::NULL, "r")
else
File.open(File::NULL, "w")
end
else
raise "BUG: impossible type in ExecStdio #{stdio.class}"
end
end
getter pid : Int32
# A pipe to this process's input. Raises if a pipe wasn't asked when creating the process.
getter! input : IO::FileDescriptor
# A pipe to this process's output. Raises if a pipe wasn't asked when creating the process.
getter! output : IO::FileDescriptor
# A pipe to this process's error. Raises if a pipe wasn't asked when creating the process.
getter! error : IO::FileDescriptor
@waitpid : Channel(Int32)
@wait_count = 0
# Creates a process, executes it, but doesn't wait for it to complete.
#
# To wait for it to finish, invoke `wait`.
#
# By default the process is configured without input, output or error.
def initialize(command : String, args = nil, env : Env = nil, clear_env : Bool = false, shell : Bool = false,
input : Stdio = Redirect::Close, output : Stdio = Redirect::Close, error : Stdio = Redirect::Close, chdir : String? = nil)
command, args = Process.prepare_args(command, args, shell)
fork_input = stdio_to_fd(input, for: STDIN)
fork_output = stdio_to_fd(output, for: STDOUT)
fork_error = stdio_to_fd(error, for: STDERR)
reader_pipe, writer_pipe = IO.pipe
if pid = Process.fork_internal(will_exec: true)
@pid = pid
else
begin
reader_pipe.close
writer_pipe.close_on_exec = true
Process.exec_internal(command, args, env, clear_env, fork_input, fork_output, fork_error, chdir)
rescue ex
writer_pipe.write_bytes(ex.message.try(&.bytesize) || 0)
writer_pipe << ex.message
writer_pipe.close
ensure
LibC._exit 127
end
end
writer_pipe.close
bytes = uninitialized UInt8[4]
if reader_pipe.read(bytes.to_slice) == 4
message_size = IO::ByteFormat::SystemEndian.decode(Int32, bytes.to_slice)
if message_size > 0
message = String.build(message_size) { |io| IO.copy(reader_pipe, io, message_size) }
end
reader_pipe.close
raise RuntimeError.new("Error executing process: #{message}")
end
reader_pipe.close
@waitpid = Crystal::SignalChildHandler.wait(pid)
fork_input.close unless fork_input == input || fork_input == STDIN
fork_output.close unless fork_output == output || fork_output == STDOUT
fork_error.close unless fork_error == error || fork_error == STDERR
end
private def stdio_to_fd(stdio : Stdio, for dst_io : IO::FileDescriptor) : IO::FileDescriptor
case stdio
when IO::FileDescriptor
stdio
when IO
if dst_io == STDIN
fork_io, process_io = IO.pipe(read_blocking: true)
@wait_count += 1
ensure_channel
spawn { copy_io(stdio, process_io, channel, close_dst: true) }
else
process_io, fork_io = IO.pipe(write_blocking: true)
@wait_count += 1
ensure_channel
spawn { copy_io(process_io, stdio, channel, close_src: true) }
end
fork_io
when Redirect::Pipe
case dst_io
when STDIN
fork_io, @input = IO.pipe(read_blocking: true)
when STDOUT
@output, fork_io = IO.pipe(write_blocking: true)
when STDERR
@error, fork_io = IO.pipe(write_blocking: true)
else
raise "BUG: unknown destination io #{dst_io}"
end
fork_io
when Redirect::Inherit
dst_io
when Redirect::Close
if dst_io == STDIN
File.open(File::NULL, "r")
else
File.open(File::NULL, "w")
end
else
raise "BUG: impossible type in stdio #{stdio.class}"
end
end
private def initialize(@pid)
@waitpid = Crystal::SignalChildHandler.wait(pid)
@wait_count = 0
end
# See also: `Process.kill`
@[Deprecated("Use #signal instead")]
def kill(sig = Signal::TERM)
signal sig
end
# Sends *signal* to this process.
def signal(signal : Signal)
Process.signal signal, @pid
end
# Waits for this process to complete and closes any pipes.
def wait : Process::Status
close_io @input # only closed when a pipe was created but not managed by copy_io
@wait_count.times do
ex = channel.receive
raise ex if ex
end
@wait_count = 0
Process::Status.new(@waitpid.receive)
ensure
close
end
# Whether the process is still registered in the system.
# Note that this returns `true` for processes in the zombie or similar state.
def exists?
!terminated?
end
# Whether this process is already terminated.
def terminated?
@waitpid.closed? || !Process.exists?(@pid)
end
# Closes any pipes to the child process.
def close
close_io @input
close_io @output
close_io @error
end
# Asks this process to terminate gracefully
def terminate
signal Signal::TERM
end
# :nodoc:
protected def self.prepare_args(command, args, shell)
if shell
command = %(#{command} "${@}") unless command.includes?(' ')
shell_args = ["-c", command, "--"]
if args
unless command.includes?(%("${@}"))
raise ArgumentError.new(%(can't specify arguments in both, command and args without including "${@}" into your command))
end
{% if flag?(:freebsd) %}
shell_args << ""
{% end %}
shell_args.concat(args)
end
command = "/bin/sh"
args = shell_args
end
{command, args}
end
private def channel
if channel = @channel
channel
else
raise "BUG: Notification channel was not initialized for this process"
end
end
private def ensure_channel
@channel ||= Channel(Exception?).new
end
private def needs_pipe?(io)
(io == Redirect::Pipe) || (io.is_a?(IO) && !io.is_a?(IO::FileDescriptor))
end
private def copy_io(src, dst, channel, close_src = false, close_dst = false)
return unless src.is_a?(IO) && dst.is_a?(IO)
begin
IO.copy(src, dst)
# close is called here to trigger exceptions
# close must be called before channel.send or the process may deadlock
src.close if close_src
close_src = false
dst.close if close_dst
close_dst = false
channel.send nil
rescue ex
channel.send ex
ensure
# any exceptions are silently ignored because of spawn
src.close if close_src
dst.close if close_dst
end
end
ORIGINAL_STDIN = IO::FileDescriptor.new(0, blocking: true)
ORIGINAL_STDOUT = IO::FileDescriptor.new(1, blocking: true)
ORIGINAL_STDERR = IO::FileDescriptor.new(2, blocking: true)
# :nodoc:
protected def self.exec_internal(command, args, env, clear_env, input, output, error, chdir) : NoReturn
reopen_io(input, ORIGINAL_STDIN)
reopen_io(output, ORIGINAL_STDOUT)
reopen_io(error, ORIGINAL_STDERR)
ENV.clear if clear_env
env.try &.each do |key, val|
if val
ENV[key] = val
else
ENV.delete key
end
end
Dir.cd(chdir) if chdir
argv = [command.check_no_null_byte.to_unsafe]
args.try &.each do |arg|
argv << arg.check_no_null_byte.to_unsafe
end
argv << Pointer(UInt8).null
LibC.execvp(command, argv)
raise RuntimeError.from_errno
end
private def self.reopen_io(src_io : IO::FileDescriptor, dst_io : IO::FileDescriptor)
src_io = to_real_fd(src_io)
dst_io.reopen(src_io)
dst_io.blocking = true
dst_io.close_on_exec = false
end
private def self.to_real_fd(fd : IO::FileDescriptor)
case fd
when STDIN then ORIGINAL_STDIN
when STDOUT then ORIGINAL_STDOUT
when STDERR then ORIGINAL_STDERR
else fd
end
end
private def close_io(io)
io.close if io
end
# Changes the root directory and the current working directory for the current
# process.
#
# Security: `chroot` on its own is not an effective means of mitigation. At minimum
# the process needs to also drop privileges as soon as feasible after the `chroot`.
# Changes to the directory hierarchy or file descriptors passed via `recvmsg(2)` from
# outside the `chroot` jail may allow a restricted process to escape, even if it is
# unprivileged.
#
# ```
# Process.chroot("/var/empty")
# ```
def self.chroot(path : String) : Nil
path.check_no_null_byte
if LibC.chroot(path) != 0
raise RuntimeError.from_errno("Failed to chroot")
end
if LibC.chdir("/") != 0
errno = RuntimeError.from_errno("chdir after chroot failed")
errno.callstack = CallStack.new
errno.inspect_with_backtrace(STDERR)
abort("Unresolvable state, exiting...")
end
end
end
# Executes the given command in a subshell.
# Standard input, output and error are inherited.
# Returns `true` if the command gives zero exit code, `false` otherwise.
# The special `$?` variable is set to a `Process::Status` associated with this execution.
#
# If *command* contains no spaces and *args* is given, it will become
# its argument list.
#
# If *command* contains spaces and *args* is given, *command* must include
# `"${@}"` (including the quotes) to receive the argument list.
#
# No shell interpretation is done in *args*.
#
# Example:
#
# ```
# system("echo *")
# ```
#
# Produces:
#
# ```text
# LICENSE shard.yml Readme.md spec src
# ```
def system(command : String, args = nil) : Bool
status = Process.run(command, args, shell: true, input: Process::Redirect::Inherit, output: Process::Redirect::Inherit, error: Process::Redirect::Inherit)
$? = status
status.success?
end
# Returns the standard output of executing *command* in a subshell.
# Standard input, and error are inherited.
# The special `$?` variable is set to a `Process::Status` associated with this execution.
#
# Example:
#
# ```
# `echo hi` # => "hi\n"
# ```
def `(command) : String
process = Process.new(command, shell: true, input: Process::Redirect::Inherit, output: Process::Redirect::Pipe, error: Process::Redirect::Inherit)
output = process.output.gets_to_end
status = process.wait
$? = status
output
end
# See also: `Process.fork`
def fork
Process.fork { yield }
end
# See also: `Process.fork`
def fork
Process.fork
end
require "./process/*"