summaryrefslogtreecommitdiffstats
path: root/tools/android/common/daemon.cc
blob: 9eafdbce0520a0f346016f4640aa78f8a33b0624 (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
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "tools/android/common/daemon.h"

#include <signal.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

#include "base/command_line.h"
#include "base/logging.h"
#include "base/posix/eintr_wrapper.h"

namespace {

const char kNoSpawnDaemon[] = "D";

int g_exit_status = 0;

void Exit(int unused) {
  _exit(g_exit_status);
}

void CloseFileDescriptor(int fd) {
  int old_errno = errno;
  (void) HANDLE_EINTR(close(fd));
  errno = old_errno;
}

}  // namespace

namespace tools {

bool HasHelpSwitch(const CommandLine& command_line) {
  return command_line.HasSwitch("h") || command_line.HasSwitch("help");
}

bool HasNoSpawnDaemonSwitch(const CommandLine& command_line) {
  return command_line.HasSwitch(kNoSpawnDaemon);
}

void ShowHelp(const char* program,
              const char* extra_title,
              const char* extra_descriptions) {
  printf("Usage: %s [-%s] %s\n"
         " -%s  stops from spawning a daemon process\n%s",
         program, kNoSpawnDaemon, extra_title, kNoSpawnDaemon,
         extra_descriptions);
}

void SpawnDaemon(int exit_status) {
  g_exit_status = exit_status;
  signal(SIGUSR1, Exit);

  if (fork()) {
    // In parent process.
    sleep(10);  // Wait for the child process to finish setsid().
    NOTREACHED();
  }

  // In child process.
  setsid();  // Detach the child process from its parent.
  kill(getppid(), SIGUSR1);  // Inform the parent process to exit.

  // Close the standard input and outputs, otherwise the process may block
  // adbd when the shell exits.
  // Comment out these lines if you want to see outputs for debugging.
  CloseFileDescriptor(0);
  CloseFileDescriptor(1);
  CloseFileDescriptor(2);
}

}  // namespace tools