/* * Copyright (c) 2010 Jiri Svoboda * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** @addtogroup taskmon * @brief * @{ */ /** * @file */ #include #include #include #include #include #include #include #include #include #include #define NAME "taskmon" static void fault_event(ipc_callid_t callid, ipc_call_t *call) { const char *argv[6]; const char *fname; char *dump_fname; char *s_taskid; const char **s; task_id_t taskid; uintptr_t thread; taskid = MERGE_LOUP32(IPC_GET_ARG1(*call), IPC_GET_ARG2(*call)); thread = IPC_GET_ARG3(*call); if (asprintf(&s_taskid, "%" PRIuTASKID, taskid) < 0) { printf("Memory allocation failed.\n"); return; } if (asprintf(&dump_fname, "/data/core%" PRIuTASKID, taskid) < 0) { printf("Memory allocation failed.\n"); return; } printf(NAME ": Task %" PRIuTASKID " fault in thread %p.\n", taskid, thread); #ifdef CONFIG_WRITE_CORE_FILES argv[0] = "/app/taskdump"; argv[1] = "-c"; argv[2] = dump_fname; argv[3] = "-t"; argv[4] = s_taskid; argv[5] = NULL; #else argv[0] = "/app/taskdump"; argv[1] = "-t"; argv[2] = s_taskid; argv[3] = NULL; #endif fname = argv[0]; printf(NAME ": Executing"); s = argv; while (*s != NULL) { printf(" %s", *s); ++s; } putchar('\n'); int err; if (!task_spawn(fname, argv, &err)) printf("%s: Error spawning %s (%s).\n", NAME, fname, str_error(err)); } int main(int argc, char *argv[]) { printf(NAME ": Task Monitoring Service\n"); if (event_subscribe(EVENT_FAULT, 0) != EOK) { printf(NAME ": Error registering fault notifications.\n"); return -1; } async_set_interrupt_received(fault_event); async_manager(); return 0; } /** @} */