termmon.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright (c) 2015, Yawning Angel <yawning at schwanenlied dot me>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * * Redistributions of source code must retain the above copyright notice,
  9. * this list of conditions and the following disclaimer.
  10. *
  11. * * Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  19. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. * POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. package main
  28. import (
  29. "io"
  30. "io/ioutil"
  31. "os"
  32. "os/signal"
  33. "runtime"
  34. "syscall"
  35. "time"
  36. "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyrebird/common/log"
  37. )
  38. var termMonitorOSInit func(*termMonitor) error
  39. type termMonitor struct {
  40. sigChan chan os.Signal
  41. handlerChan chan int
  42. numHandlers int
  43. }
  44. func (m *termMonitor) onHandlerStart() {
  45. m.handlerChan <- 1
  46. }
  47. func (m *termMonitor) onHandlerFinish() {
  48. m.handlerChan <- -1
  49. }
  50. func (m *termMonitor) wait(termOnNoHandlers bool) os.Signal {
  51. // Block until a signal has been received, or (optionally) the
  52. // number of pending handlers has hit 0. In the case of the
  53. // latter, treat it as if a SIGTERM has been received.
  54. for {
  55. select {
  56. case n := <-m.handlerChan:
  57. m.numHandlers += n
  58. case sig := <-m.sigChan:
  59. return sig
  60. }
  61. if termOnNoHandlers && m.numHandlers == 0 {
  62. return syscall.SIGTERM
  63. }
  64. }
  65. }
  66. func (m *termMonitor) termOnStdinClose() {
  67. _, err := io.Copy(ioutil.Discard, os.Stdin)
  68. // io.Copy() will return a nil on EOF, since reaching EOF is
  69. // expected behavior. No matter what, if this unblocks, assume
  70. // that stdin is closed, and treat that as having received a
  71. // SIGTERM.
  72. log.Noticef("Stdin is closed or unreadable: %v", err)
  73. m.sigChan <- syscall.SIGTERM
  74. }
  75. func (m *termMonitor) termOnPPIDChange(ppid int) {
  76. // Under most if not all U*IX systems, the parent PID will change
  77. // to that of init once the parent dies. There are several notable
  78. // exceptions (Slowlaris/Android), but the parent PID changes
  79. // under those platforms as well.
  80. //
  81. // Naturally we lose if the parent has died by the time when the
  82. // Getppid() call was issued in our parent, but, this is better
  83. // than nothing.
  84. const ppidPollInterval = 1 * time.Second
  85. for ppid == os.Getppid() {
  86. time.Sleep(ppidPollInterval)
  87. }
  88. // Treat the parent PID changing as the same as having received
  89. // a SIGTERM.
  90. log.Noticef("Parent pid changed: %d (was %d)", os.Getppid(), ppid)
  91. m.sigChan <- syscall.SIGTERM
  92. }
  93. func newTermMonitor() (m *termMonitor) {
  94. ppid := os.Getppid()
  95. m = new(termMonitor)
  96. m.sigChan = make(chan os.Signal)
  97. m.handlerChan = make(chan int)
  98. signal.Notify(m.sigChan, syscall.SIGINT, syscall.SIGTERM)
  99. // If tor supports feature #15435, we can use Stdin being closed as an
  100. // indication that tor has died, or wants the PT to shutdown for any
  101. // reason.
  102. if ptShouldExitOnStdinClose() {
  103. go m.termOnStdinClose()
  104. } else {
  105. // Instead of feature #15435, use various kludges and hacks:
  106. // * Linux - Platform specific code that should always work.
  107. // * Other U*IX - Somewhat generic code, that works unless the
  108. // parent dies before the monitor is initialized.
  109. if termMonitorOSInit != nil {
  110. // Errors here are non-fatal, since it might still be
  111. // possible to fall back to a generic implementation.
  112. if err := termMonitorOSInit(m); err == nil {
  113. return
  114. }
  115. }
  116. if runtime.GOOS != "windows" {
  117. go m.termOnPPIDChange(ppid)
  118. }
  119. }
  120. return
  121. }