1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
22 lockprefix = "crunch-run-"
26 // procinfo is saved in each process's lockfile.
27 type procinfo struct {
34 // Detach acquires a lock for the given uuid, and starts the current
35 // program as a child process (with -no-detach prepended to the given
36 // arguments so the child knows not to detach again). The lock is
37 // passed along to the child process.
38 func Detach(uuid string, args []string, stdout, stderr io.Writer) int {
39 return exitcode(stderr, detach(uuid, args, stdout, stderr))
41 func detach(uuid string, args []string, stdout, stderr io.Writer) error {
42 lockfile, err := os.OpenFile(filepath.Join(lockdir, lockprefix+uuid+locksuffix), os.O_CREATE|os.O_RDWR, 0700)
46 defer lockfile.Close()
47 err = syscall.Flock(int(lockfile.Fd()), syscall.LOCK_EX|syscall.LOCK_NB)
53 outfile, err := ioutil.TempFile("", "crunch-run-"+uuid+"-stdout-")
58 errfile, err := ioutil.TempFile("", "crunch-run-"+uuid+"-stderr-")
60 os.Remove(outfile.Name())
65 cmd := exec.Command(args[0], append([]string{"-no-detach"}, args[1:]...)...)
68 // Child inherits lockfile.
69 cmd.ExtraFiles = []*os.File{lockfile}
70 // Ensure child isn't interrupted even if we receive signals
71 // from parent (sshd) while sending lockfile content to
73 cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
76 os.Remove(outfile.Name())
77 os.Remove(errfile.Name())
81 w := io.MultiWriter(stdout, lockfile)
82 err = json.NewEncoder(w).Encode(procinfo{
85 Stdout: outfile.Name(),
86 Stderr: errfile.Name(),
89 os.Remove(outfile.Name())
90 os.Remove(errfile.Name())
96 // KillProcess finds the crunch-run process corresponding to the given
97 // uuid, and sends the given signal to it. It then waits up to 1
98 // second for the process to die. It returns 0 if the process is
99 // successfully killed or didn't exist in the first place.
100 func KillProcess(uuid string, signal syscall.Signal, stdout, stderr io.Writer) int {
101 return exitcode(stderr, kill(uuid, signal, stdout, stderr))
104 func kill(uuid string, signal syscall.Signal, stdout, stderr io.Writer) error {
105 path := filepath.Join(lockdir, lockprefix+uuid+locksuffix)
106 f, err := os.Open(path)
107 if os.IsNotExist(err) {
109 } else if err != nil {
115 err = json.NewDecoder(f).Decode(&pi)
117 return fmt.Errorf("%s: %s\n", path, err)
120 if pi.UUID != uuid || pi.PID == 0 {
121 return fmt.Errorf("%s: bogus procinfo: %+v", path, pi)
124 proc, err := os.FindProcess(pi.PID)
129 err = proc.Signal(signal)
130 for deadline := time.Now().Add(time.Second); err == nil && time.Now().Before(deadline); time.Sleep(time.Second / 100) {
131 err = proc.Signal(syscall.Signal(0))
134 return fmt.Errorf("pid %d: sent signal %d (%s) but process is still alive", pi.PID, signal, signal)
136 fmt.Fprintf(stderr, "pid %d: %s\n", pi.PID, err)
140 // List UUIDs of active crunch-run processes.
141 func ListProcesses(stdout, stderr io.Writer) int {
142 return exitcode(stderr, filepath.Walk(lockdir, func(path string, info os.FileInfo, err error) error {
144 return filepath.SkipDir
146 if name := info.Name(); !strings.HasPrefix(name, lockprefix) || !strings.HasSuffix(name, locksuffix) {
149 if info.Size() == 0 {
150 // race: process has opened/locked but hasn't yet written pid/uuid
154 f, err := os.Open(path)
160 // TODO: Do this check without risk of disrupting lock
161 // acquisition during races, e.g., by connecting to a
162 // unix socket or checking /proc/$pid/fd/$n ->
164 err = syscall.Flock(int(f.Fd()), syscall.LOCK_SH|syscall.LOCK_NB)
167 err := os.Remove(path)
169 fmt.Fprintln(stderr, err)
175 err = json.NewDecoder(f).Decode(&pi)
177 fmt.Fprintf(stderr, "%s: %s\n", path, err)
180 if pi.UUID == "" || pi.PID == 0 {
181 fmt.Fprintf(stderr, "%s: bogus procinfo: %+v", path, pi)
185 fmt.Fprintln(stdout, pi.UUID)
190 // If err is nil, return 0 ("success"); otherwise, print err to stderr
192 func exitcode(stderr io.Writer, err error) int {
194 fmt.Fprintln(stderr, err)