blob: db6cb4c3bd0fade9c5a06688633c6e6dfc081f86 [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
Rom Lemarchand113bd472013-01-10 15:21:18 -080023#include <logwrap/logwrap.h>
Ken Sumrall96e11b52013-04-03 13:45:10 -070024#include <cutils/klog.h>
Rom Lemarchand113bd472013-01-10 15:21:18 -080025
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include "cutils/log.h"
27
28void fatal(const char *msg) {
Nick Kralevichdd26bb32010-05-13 15:38:49 -070029 fprintf(stderr, "%s", msg);
Steve Block61fbcbe2011-10-12 17:22:43 +010030 ALOG(LOG_ERROR, "logwrapper", "%s", msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031 exit(-1);
32}
33
34void usage() {
35 fatal(
Ken Sumrall96e11b52013-04-03 13:45:10 -070036 "Usage: logwrapper [-a] [-d] [-k] BINARY [ARGS ...]\n"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037 "\n"
38 "Forks and executes BINARY ARGS, redirecting stdout and stderr to\n"
39 "the Android logging system. Tag is set to BINARY, priority is\n"
Rom Lemarchandb10c7b42013-01-04 16:20:36 -080040 "always LOG_INFO.\n"
41 "\n"
Ken Sumrall96e11b52013-04-03 13:45:10 -070042 "-a: Causes logwrapper to do abbreviated logging.\n"
43 " This logs up to the first 4K and last 4K of the command\n"
44 " being run, and logs the output when the command exits\n"
Rom Lemarchandb10c7b42013-01-04 16:20:36 -080045 "-d: Causes logwrapper to SIGSEGV when BINARY terminates\n"
Ken Sumrall96e11b52013-04-03 13:45:10 -070046 " fault address is set to the status of wait()\n"
47 "-k: Causes logwrapper to log to the kernel log instead of\n"
48 " the Android system log\n");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080049}
50
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051int main(int argc, char* argv[]) {
Rom Lemarchandb10c7b42013-01-04 16:20:36 -080052 int seg_fault_on_exit = 0;
Ken Sumrall96e11b52013-04-03 13:45:10 -070053 int log_target = LOG_ALOG;
54 bool abbreviated = false;
55 int ch;
Rom Lemarchand113bd472013-01-10 15:21:18 -080056 int status = 0xAAAA;
57 int rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080058
Ken Sumrall96e11b52013-04-03 13:45:10 -070059 while ((ch = getopt(argc, argv, "adk")) != -1) {
60 switch (ch) {
61 case 'a':
62 abbreviated = true;
63 break;
64 case 'd':
65 seg_fault_on_exit = 1;
66 break;
67 case 'k':
68 log_target = LOG_KLOG;
69 klog_set_level(6);
70 break;
71 case '?':
72 default:
73 usage();
74 }
75 }
76 argc -= optind;
77 argv += optind;
78
79 if (argc < 1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080080 usage();
81 }
82
Ken Sumrall96e11b52013-04-03 13:45:10 -070083 rc = android_fork_execvp_ext(argc, &argv[0], &status, true,
Ken Sumrall4eaf9052013-09-18 17:49:21 -070084 log_target, abbreviated, NULL);
Rom Lemarchand113bd472013-01-10 15:21:18 -080085 if (!rc) {
86 if (WIFEXITED(status))
87 rc = WEXITSTATUS(status);
88 else
89 rc = -ECHILD;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080090 }
91
Rom Lemarchand113bd472013-01-10 15:21:18 -080092 if (seg_fault_on_exit) {
93 *(int *)status = 0; // causes SIGSEGV with fault_address = status
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080094 }
95
Rom Lemarchand113bd472013-01-10 15:21:18 -080096 return rc;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080097}