blob: 7118d12cc13537bffccd136ff23f1f1ddbd1c458 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
William Roberts5605cda2013-11-21 07:00:38 -080017#include <errno.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080018#include <stdio.h>
19#include <stdlib.h>
Rom Lemarchand113bd472013-01-10 15:21:18 -080020#include <sys/wait.h>
Ken Sumrall96e11b52013-04-03 13:45:10 -070021#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080022
Ken Sumrall96e11b52013-04-03 13:45:10 -070023#include <cutils/klog.h>
Mark Salyzyn30f991f2017-01-10 13:19:54 -080024#include <log/log.h>
Mark Salyzyn66ce3e02016-09-28 10:07:20 -070025#include <logwrap/logwrap.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026
Tom Cherryff7d0672019-09-25 15:01:58 -070027void fatal(const char* msg) {
Nick Kralevichdd26bb32010-05-13 15:38:49 -070028 fprintf(stderr, "%s", msg);
Steve Block61fbcbe2011-10-12 17:22:43 +010029 ALOG(LOG_ERROR, "logwrapper", "%s", msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030 exit(-1);
31}
32
33void usage() {
Tom Cherryff7d0672019-09-25 15:01:58 -070034 fatal("Usage: logwrapper [-a] [-d] [-k] BINARY [ARGS ...]\n"
35 "\n"
36 "Forks and executes BINARY ARGS, redirecting stdout and stderr to\n"
37 "the Android logging system. Tag is set to BINARY, priority is\n"
38 "always LOG_INFO.\n"
39 "\n"
40 "-a: Causes logwrapper to do abbreviated logging.\n"
41 " This logs up to the first 4K and last 4K of the command\n"
42 " being run, and logs the output when the command exits\n"
43 "-d: Causes logwrapper to SIGSEGV when BINARY terminates\n"
44 " fault address is set to the status of wait()\n"
45 "-k: Causes logwrapper to log to the kernel log instead of\n"
46 " the Android system log\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047}
48
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080049int main(int argc, char* argv[]) {
Rom Lemarchandb10c7b42013-01-04 16:20:36 -080050 int seg_fault_on_exit = 0;
Ken Sumrall96e11b52013-04-03 13:45:10 -070051 int log_target = LOG_ALOG;
52 bool abbreviated = false;
53 int ch;
Rom Lemarchand113bd472013-01-10 15:21:18 -080054 int status = 0xAAAA;
55 int rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
Ken Sumrall96e11b52013-04-03 13:45:10 -070057 while ((ch = getopt(argc, argv, "adk")) != -1) {
58 switch (ch) {
59 case 'a':
60 abbreviated = true;
61 break;
62 case 'd':
63 seg_fault_on_exit = 1;
64 break;
65 case 'k':
66 log_target = LOG_KLOG;
67 klog_set_level(6);
68 break;
69 case '?':
70 default:
Tom Cherryff7d0672019-09-25 15:01:58 -070071 usage();
Ken Sumrall96e11b52013-04-03 13:45:10 -070072 }
73 }
74 argc -= optind;
75 argv += optind;
76
77 if (argc < 1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080078 usage();
79 }
80
Tom Cherryff7d0672019-09-25 15:01:58 -070081 rc = logwrap_fork_execvp(argc, &argv[0], &status, true, log_target, abbreviated, nullptr);
Rom Lemarchand113bd472013-01-10 15:21:18 -080082 if (!rc) {
83 if (WIFEXITED(status))
84 rc = WEXITSTATUS(status);
85 else
86 rc = -ECHILD;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080087 }
88
Rom Lemarchand113bd472013-01-10 15:21:18 -080089 if (seg_fault_on_exit) {
Tom Cherryff7d0672019-09-25 15:01:58 -070090 uintptr_t fault_address = (uintptr_t)status;
91 *(int*)fault_address = 0; // causes SIGSEGV with fault_address = status
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092 }
93
Rom Lemarchand113bd472013-01-10 15:21:18 -080094 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080095}