| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* | 
|  | 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 Roberts | 5605cda | 2013-11-21 07:00:38 -0800 | [diff] [blame] | 17 | #include <errno.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 18 | #include <stdio.h> | 
|  | 19 | #include <stdlib.h> | 
| Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 20 | #include <sys/wait.h> | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 21 | #include <unistd.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 22 |  | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 23 | #include <cutils/klog.h> | 
| Mark Salyzyn | 30f991f | 2017-01-10 13:19:54 -0800 | [diff] [blame] | 24 | #include <log/log.h> | 
| Mark Salyzyn | 66ce3e0 | 2016-09-28 10:07:20 -0700 | [diff] [blame] | 25 | #include <logwrap/logwrap.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 26 |  | 
|  | 27 | void fatal(const char *msg) { | 
| Nick Kralevich | dd26bb3 | 2010-05-13 15:38:49 -0700 | [diff] [blame] | 28 | fprintf(stderr, "%s", msg); | 
| Steve Block | 61fbcbe | 2011-10-12 17:22:43 +0100 | [diff] [blame] | 29 | ALOG(LOG_ERROR, "logwrapper", "%s", msg); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 30 | exit(-1); | 
|  | 31 | } | 
|  | 32 |  | 
|  | 33 | void usage() { | 
|  | 34 | fatal( | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 35 | "Usage: logwrapper [-a] [-d] [-k] BINARY [ARGS ...]\n" | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 36 | "\n" | 
|  | 37 | "Forks and executes BINARY ARGS, redirecting stdout and stderr to\n" | 
|  | 38 | "the Android logging system. Tag is set to BINARY, priority is\n" | 
| Rom Lemarchand | b10c7b4 | 2013-01-04 16:20:36 -0800 | [diff] [blame] | 39 | "always LOG_INFO.\n" | 
|  | 40 | "\n" | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 41 | "-a: Causes logwrapper to do abbreviated logging.\n" | 
|  | 42 | "    This logs up to the first 4K and last 4K of the command\n" | 
|  | 43 | "    being run, and logs the output when the command exits\n" | 
| Rom Lemarchand | b10c7b4 | 2013-01-04 16:20:36 -0800 | [diff] [blame] | 44 | "-d: Causes logwrapper to SIGSEGV when BINARY terminates\n" | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 45 | "    fault address is set to the status of wait()\n" | 
|  | 46 | "-k: Causes logwrapper to log to the kernel log instead of\n" | 
|  | 47 | "    the Android system log\n"); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | } | 
|  | 49 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 50 | int main(int argc, char* argv[]) { | 
| Rom Lemarchand | b10c7b4 | 2013-01-04 16:20:36 -0800 | [diff] [blame] | 51 | int seg_fault_on_exit = 0; | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 52 | int log_target = LOG_ALOG; | 
|  | 53 | bool abbreviated = false; | 
|  | 54 | int ch; | 
| Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 55 | int status = 0xAAAA; | 
|  | 56 | int rc; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 57 |  | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 58 | while ((ch = getopt(argc, argv, "adk")) != -1) { | 
|  | 59 | switch (ch) { | 
|  | 60 | case 'a': | 
|  | 61 | abbreviated = true; | 
|  | 62 | break; | 
|  | 63 | case 'd': | 
|  | 64 | seg_fault_on_exit = 1; | 
|  | 65 | break; | 
|  | 66 | case 'k': | 
|  | 67 | log_target = LOG_KLOG; | 
|  | 68 | klog_set_level(6); | 
|  | 69 | break; | 
|  | 70 | case '?': | 
|  | 71 | default: | 
|  | 72 | usage(); | 
|  | 73 | } | 
|  | 74 | } | 
|  | 75 | argc -= optind; | 
|  | 76 | argv += optind; | 
|  | 77 |  | 
|  | 78 | if (argc < 1) { | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 79 | usage(); | 
|  | 80 | } | 
|  | 81 |  | 
| Ken Sumrall | 96e11b5 | 2013-04-03 13:45:10 -0700 | [diff] [blame] | 82 | rc = android_fork_execvp_ext(argc, &argv[0], &status, true, | 
| Yusuke Sato | d81c3c6 | 2015-08-14 01:22:53 -0700 | [diff] [blame] | 83 | log_target, abbreviated, NULL, NULL, 0); | 
| Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 84 | if (!rc) { | 
|  | 85 | if (WIFEXITED(status)) | 
|  | 86 | rc = WEXITSTATUS(status); | 
|  | 87 | else | 
|  | 88 | rc = -ECHILD; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 89 | } | 
|  | 90 |  | 
| Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 91 | if (seg_fault_on_exit) { | 
| Elliott Hughes | ccecf14 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 92 | uintptr_t fault_address = (uintptr_t) status; | 
|  | 93 | *(int *) fault_address = 0;  // causes SIGSEGV with fault_address = status | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 94 | } | 
|  | 95 |  | 
| Rom Lemarchand | 113bd47 | 2013-01-10 15:21:18 -0800 | [diff] [blame] | 96 | return rc; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 97 | } |