Wichert Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> |
| 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
| 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> |
| 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions |
| 10 | * are met: |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. The name of the author may not be used to endorse or promote products |
| 17 | * derived from this software without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Wichert Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 29 | */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 30 | |
Denys Vlasenko | a6d91de | 2012-03-16 12:02:22 +0100 | [diff] [blame] | 31 | #include "defs.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 32 | #include <fcntl.h> |
| 33 | #include <sys/stat.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 34 | #include <sys/wait.h> |
| 35 | #include <sys/resource.h> |
| 36 | #include <sys/utsname.h> |
| 37 | #include <sys/user.h> |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 38 | |
| 39 | /* Bits of module.flags. */ |
| 40 | |
| 41 | #define MOD_UNINITIALIZED 0 |
| 42 | #define MOD_RUNNING 1 |
| 43 | #define MOD_DELETED 2 |
| 44 | #define MOD_AUTOCLEAN 4 |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 45 | #define MOD_VISITED 8 |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 46 | #define MOD_USED_ONCE 16 |
| 47 | #define MOD_JUST_FREED 32 |
| 48 | #define MOD_INITIALIZING 64 |
| 49 | |
| 50 | /* Values for query_module's which. */ |
| 51 | |
| 52 | #define QM_MODULES 1 |
| 53 | #define QM_DEPS 2 |
| 54 | #define QM_REFS 3 |
| 55 | #define QM_SYMBOLS 4 |
| 56 | #define QM_INFO 5 |
| 57 | |
| 58 | struct module_symbol |
| 59 | { |
| 60 | unsigned long value; |
| 61 | const char *name; |
| 62 | }; |
| 63 | |
| 64 | struct module_info |
| 65 | { |
| 66 | unsigned long addr; |
| 67 | unsigned long size; |
| 68 | unsigned long flags; |
| 69 | long usecount; |
| 70 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 71 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 72 | static const struct xlat which[] = { |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 73 | { 0, "0" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 74 | { QM_MODULES, "QM_MODULES" }, |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 75 | { QM_DEPS, "QM_DEPS" }, |
| 76 | { QM_REFS, "QM_REFS" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 77 | { QM_SYMBOLS, "QM_SYMBOLS" }, |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 78 | { QM_INFO, "QM_INFO" }, |
| 79 | { 0, NULL }, |
| 80 | }; |
| 81 | |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 82 | static const struct xlat modflags[] = { |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 83 | { MOD_UNINITIALIZED, "MOD_UNINITIALIZED" }, |
| 84 | { MOD_RUNNING, "MOD_RUNNING" }, |
| 85 | { MOD_DELETED, "MOD_DELETED" }, |
| 86 | { MOD_AUTOCLEAN, "MOD_AUTOCLEAN" }, |
| 87 | { MOD_VISITED, "MOD_VISITED" }, |
| 88 | { MOD_USED_ONCE, "MOD_USED_ONCE" }, |
| 89 | { MOD_JUST_FREED, "MOD_JUST_FREED" }, |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 90 | { 0, NULL }, |
| 91 | }; |
| 92 | |
| 93 | int |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 94 | sys_query_module(struct tcb *tcp) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 95 | { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 96 | if (entering(tcp)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 97 | printstr(tcp, tcp->u_arg[0], -1); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 98 | tprints(", "); |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 99 | printxval(which, tcp->u_arg[1], "QM_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 100 | tprints(", "); |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 101 | } else { |
| 102 | size_t ret; |
| 103 | |
| 104 | if (!verbose(tcp) || syserror(tcp) || |
| 105 | umove(tcp, tcp->u_arg[4], &ret) < 0) { |
| 106 | tprintf("%#lx, %lu, %#lx", tcp->u_arg[2], |
| 107 | tcp->u_arg[3], tcp->u_arg[4]); |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 108 | } else if (tcp->u_arg[1]==QM_INFO) { |
| 109 | struct module_info mi; |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 110 | if (umove(tcp, tcp->u_arg[2], &mi) < 0) { |
| 111 | tprintf("%#lx, ", tcp->u_arg[2]); |
| 112 | } else { |
| 113 | tprintf("{address=%#lx, size=%lu, flags=", |
| 114 | mi.addr, mi.size); |
| 115 | printflags(modflags, mi.flags, "MOD_???"); |
| 116 | tprintf(", usecount=%lu}, ", mi.usecount); |
| 117 | } |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 118 | tprintf("%lu", (unsigned long)ret); |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 119 | } else if ((tcp->u_arg[1]==QM_MODULES) || |
Dmitry V. Levin | 414fe7d | 2009-07-08 11:21:17 +0000 | [diff] [blame] | 120 | (tcp->u_arg[1]==QM_DEPS) || |
| 121 | (tcp->u_arg[1]==QM_REFS)) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 122 | tprints("{"); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 123 | if (!abbrev(tcp)) { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 124 | char* data = malloc(tcp->u_arg[3]); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 125 | char* mod = data; |
| 126 | size_t idx; |
| 127 | |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 128 | if (!data) { |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 129 | fprintf(stderr, "out of memory\n"); |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 130 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 131 | } else { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 132 | if (umoven(tcp, tcp->u_arg[2], |
| 133 | tcp->u_arg[3], data) < 0) { |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 134 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 135 | } else { |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 136 | for (idx = 0; idx < ret; idx++) { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 137 | tprintf("%s%s", |
| 138 | (idx ? ", " : ""), |
| 139 | mod); |
| 140 | mod += strlen(mod)+1; |
| 141 | } |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 142 | } |
| 143 | free(data); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 144 | } |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 145 | } else |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 146 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
| 147 | tprintf("}, %lu", (unsigned long)ret); |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 148 | } else if (tcp->u_arg[1]==QM_SYMBOLS) { |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 149 | tprints("{"); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 150 | if (!abbrev(tcp)) { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 151 | char* data = malloc(tcp->u_arg[3]); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 152 | struct module_symbol* sym = (struct module_symbol*)data; |
| 153 | size_t idx; |
| 154 | |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 155 | if (!data) { |
Roland McGrath | 46100d0 | 2005-06-01 18:55:42 +0000 | [diff] [blame] | 156 | fprintf(stderr, "out of memory\n"); |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 157 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 158 | } else { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 159 | if (umoven(tcp, tcp->u_arg[2], |
| 160 | tcp->u_arg[3], data) < 0) { |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 161 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 162 | } else { |
Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 163 | for (idx = 0; idx < ret; idx++) { |
Dmitry V. Levin | 62e0596 | 2009-11-03 14:38:44 +0000 | [diff] [blame] | 164 | tprintf("%s{name=%s, value=%lu}", |
| 165 | (idx ? " " : ""), |
| 166 | data+(long)sym->name, |
| 167 | sym->value); |
| 168 | sym++; |
| 169 | } |
Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 170 | } |
| 171 | free(data); |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 172 | } |
Wichert Akkerman | aec6238 | 1999-11-28 01:56:12 +0000 | [diff] [blame] | 173 | } else |
Denys Vlasenko | 048cc42 | 2012-05-16 12:20:17 +0200 | [diff] [blame] | 174 | tprintf(" /* %lu entries */ ", (unsigned long)ret); |
| 175 | tprintf("}, %ld", (unsigned long)ret); |
Wichert Akkerman | 9123ac8 | 1999-11-27 21:58:20 +0000 | [diff] [blame] | 176 | } else { |
| 177 | printstr(tcp, tcp->u_arg[2], tcp->u_arg[3]); |
| 178 | tprintf(", %#lx", tcp->u_arg[4]); |
| 179 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 180 | } |
| 181 | return 0; |
| 182 | } |
| 183 | |
Wichert Akkerman | 5052482 | 1999-10-10 22:40:07 +0000 | [diff] [blame] | 184 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 185 | sys_create_module(struct tcb *tcp) |
Wichert Akkerman | 5052482 | 1999-10-10 22:40:07 +0000 | [diff] [blame] | 186 | { |
| 187 | if (entering(tcp)) { |
| 188 | printpath(tcp, tcp->u_arg[0]); |
| 189 | tprintf(", %lu", tcp->u_arg[1]); |
| 190 | } |
| 191 | return RVAL_HEX; |
| 192 | } |
| 193 | |
Wichert Akkerman | 2f473da | 1999-11-01 19:53:31 +0000 | [diff] [blame] | 194 | int |
Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 195 | sys_init_module(struct tcb *tcp) |
Wichert Akkerman | 2f473da | 1999-11-01 19:53:31 +0000 | [diff] [blame] | 196 | { |
| 197 | if (entering(tcp)) { |
Denys Vlasenko | 859ea8b | 2013-02-23 20:07:44 +0100 | [diff] [blame^] | 198 | tprintf("%#lx, %lu, ", tcp->u_arg[0], tcp->u_arg[1]); |
Roland McGrath | 7dbfe57 | 2005-08-03 11:27:30 +0000 | [diff] [blame] | 199 | printstr(tcp, tcp->u_arg[2], -1); |
Wichert Akkerman | 2f473da | 1999-11-01 19:53:31 +0000 | [diff] [blame] | 200 | } |
| 201 | return 0; |
| 202 | } |