summaryrefslogtreecommitdiffstats
path: root/chromium/content/common/set_process_title.cc
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
committerZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
commit679147eead574d186ebf3069647b4c23e8ccace6 (patch)
treefc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /chromium/content/common/set_process_title.cc
Initial import.
Diffstat (limited to 'chromium/content/common/set_process_title.cc')
-rw-r--r--chromium/content/common/set_process_title.cc90
1 files changed, 90 insertions, 0 deletions
diff --git a/chromium/content/common/set_process_title.cc b/chromium/content/common/set_process_title.cc
new file mode 100644
index 00000000000..6fde51bd6cb
--- /dev/null
+++ b/chromium/content/common/set_process_title.cc
@@ -0,0 +1,90 @@
+// 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 "content/common/set_process_title.h"
+
+#include "build/build_config.h"
+
+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_SOLARIS)
+#include <limits.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+#include <string>
+
+#include "base/command_line.h"
+#endif // defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_SOLARIS)
+
+#if defined(OS_LINUX)
+#include <sys/prctl.h>
+
+#include "base/file_util.h"
+#include "base/files/file_path.h"
+#include "base/process/process_metrics.h"
+#include "base/strings/string_util.h"
+// Linux/glibc doesn't natively have setproctitle().
+#include "content/common/set_process_title_linux.h"
+#endif // defined(OS_LINUX)
+
+namespace content {
+
+// TODO(jrg): Find out if setproctitle or equivalent is available on Android.
+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_SOLARIS) && \
+ !defined(OS_ANDROID)
+
+void SetProcessTitleFromCommandLine(const char** main_argv) {
+ // Build a single string which consists of all the arguments separated
+ // by spaces. We can't actually keep them separate due to the way the
+ // setproctitle() function works.
+ std::string title;
+ bool have_argv0 = false;
+
+#if defined(OS_LINUX)
+ if (main_argv)
+ setproctitle_init(main_argv);
+
+ // In Linux we sometimes exec ourselves from /proc/self/exe, but this makes us
+ // show up as "exe" in process listings. Read the symlink /proc/self/exe and
+ // use the path it points at for our process title. Note that this is only for
+ // display purposes and has no TOCTTOU security implications.
+ base::FilePath target;
+ base::FilePath self_exe(base::kProcSelfExe);
+ if (file_util::ReadSymbolicLink(self_exe, &target)) {
+ have_argv0 = true;
+ title = target.value();
+ // If the binary has since been deleted, Linux appends " (deleted)" to the
+ // symlink target. Remove it, since this is not really part of our name.
+ const std::string kDeletedSuffix = " (deleted)";
+ if (EndsWith(title, kDeletedSuffix, true))
+ title.resize(title.size() - kDeletedSuffix.size());
+#if defined(PR_SET_NAME)
+ // If PR_SET_NAME is available at compile time, we try using it. We ignore
+ // any errors if the kernel does not support it at runtime though. When
+ // available, this lets us set the short process name that shows when the
+ // full command line is not being displayed in most process listings.
+ prctl(PR_SET_NAME, base::FilePath(title).BaseName().value().c_str());
+#endif // defined(PR_SET_NAME)
+ }
+#endif // defined(OS_LINUX)
+
+ const CommandLine* command_line = CommandLine::ForCurrentProcess();
+ for (size_t i = 1; i < command_line->argv().size(); ++i) {
+ if (!title.empty())
+ title += " ";
+ title += command_line->argv()[i];
+ }
+ // Disable prepending argv[0] with '-' if we prepended it ourselves above.
+ setproctitle(have_argv0 ? "-%s" : "%s", title.c_str());
+}
+
+#else
+
+// All other systems (basically Windows & Mac) have no need or way to implement
+// this function.
+void SetProcessTitleFromCommandLine(const char** /* main_argv */) {
+}
+
+#endif
+
+} // namespace content