1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
/*
Scanmem main function, option parsing and help text.
Copyright (C) 2006,2007,2009 Tavis Ormandy <taviso@sdf.lonestar.org>
Copyright (C) 2009 Eli Dupree <elidupree@charter.net>
Copyright (C) 2009-2013 WANG Lu <coolwanglu@gmail.com>
Copyright (C) 2016 Sebastian Parschauer <s.parschauer@gmx.de>
This file is part of scanmem.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "config.h"
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
#include <getopt.h>
#include <stdbool.h>
#include "scanmem.h"
#include "commands.h"
#include "show_message.h"
#include "menu.h"
static const char copy_text[] =
"Copyright (C) 2006-2017 Scanmem authors\n"
"See https://github.com/scanmem/scanmem/blob/master/AUTHORS for a full author list\n"
"\n"
"scanmem comes with ABSOLUTELY NO WARRANTY; for details type `show warranty'.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; type `show copying' for details.\n\n";
/* print scanmem and libscanmem version */
static void printversion(FILE *outfd)
{
fprintf(outfd, "scanmem version %s\n", PACKAGE_VERSION);
sm_printversion(outfd);
}
/* print scanmem version and copyright info */
static void printcopyright(FILE *outfd)
{
printversion(outfd);
fprintf(outfd, "\n%s", copy_text);
}
static const char help_text[] =
"Usage: scanmem [OPTION]... [PID]\n"
"Interactively locate and modify variables in an executing process.\n"
"\n"
"-p, --pid=pid\t\tset the target process pid\n"
"-c, --command\t\trun given commands (separated by `;`)\n"
"-h, --help\t\tprint this message\n"
"-v, --version\t\tprint version information\n"
"\n"
"scanmem is an interactive debugging utility, enter `help` at the prompt\n"
"for further assistance.\n"
"\n"
"Report bugs to <" PACKAGE_BUGREPORT ">.\n";
/* print quick usage message to stderr */
static void printhelp(void)
{
printcopyright(stderr);
show_user("%s", help_text);
return;
}
static inline void show_user_quick_help(pid_t target)
{
if (target == 0) {
show_user("Enter the pid of the process to search using the \"pid\" command.\n");
show_user("Enter \"help\" for other commands.\n");
} else {
show_user("Please enter current value, or \"help\" for other commands.\n");
}
}
static void parse_parameters(int argc, char **argv, char **initial_commands, bool *exit_on_error)
{
struct option longopts[] = {
{"pid", 1, NULL, 'p'}, /* target pid */
{"command", 1, NULL, 'c'}, /* commands to run at the beginning */
{"version", 0, NULL, 'v'}, /* print version */
{"help", 0, NULL, 'h'}, /* print help summary */
{"debug", 0, NULL, 'd'}, /* enable debug mode */
{"errexit", 0, NULL, 'e'}, /* exit on initial command failure */
{NULL, 0, NULL, 0},
};
char *end;
int optindex;
bool done = false;
globals_t *vars = &sm_globals;
/* process command line */
while (!done) {
switch (getopt_long(argc, argv, "vhdep:c:", longopts, &optindex)) {
case 'p':
vars->target = (pid_t) strtoul(optarg, &end, 0);
/* check if that parsed correctly */
if (*end != '\0' || *optarg == '\0' || vars->target == 0) {
show_error("invalid pid specified.\n");
exit(EXIT_FAILURE);
}
break;
case 'c':
*initial_commands = optarg;
break;
case 'v':
printversion(stderr);
exit(EXIT_FAILURE);
case 'h':
printhelp();
exit(EXIT_FAILURE);
case 'd':
vars->options.debug = 1;
break;
case 'e':
*exit_on_error = true;
break;
case -1:
done = true;
break;
default:
printhelp();
exit(EXIT_FAILURE);
}
}
/* parse any pid specified after arguments */
if (optind <= argc && argv[optind]) {
vars->target = (pid_t) strtoul(argv[optind], &end, 0);
/* check if that parsed correctly */
if (*end != '\0' || argv[optind][0] == '\0' || vars->target == 0) {
show_error("invalid pid specified.\n");
exit(EXIT_FAILURE);
}
}
}
int main(int argc, char **argv)
{
char *initial_commands = NULL;
bool exit_on_error = false;
parse_parameters(argc, argv, &initial_commands, &exit_on_error);
int ret = EXIT_SUCCESS;
globals_t *vars = &sm_globals;
printcopyright(stderr);
vars->printversion = printversion;
if (!sm_init()) {
show_error("Initialization failed.\n");
ret = EXIT_FAILURE;
goto end;
}
if (getuid() != 0) {
show_warn("Run scanmem as root if memory regions are missing. "
"See scanmem man page.\n\n");
}
/* this will initialize matches and regions */
if (sm_execcommand(vars, "reset") == false) {
vars->target = 0;
}
/* check if there is a target already specified */
show_user_quick_help(vars->target);
/* execute commands passed by `-c`, if any */
if (initial_commands) {
char *saveptr = NULL;
const char sep[] = ";\n";
for (char *line = strtok_r(initial_commands, sep, &saveptr);
line != NULL; line = strtok_r(NULL, sep, &saveptr))
{
if (vars->matches) {
show_user("%ld> %s\n", vars->num_matches, line);
} else {
show_user("> %s\n", line);
}
if (sm_execcommand(vars, line) == false) {
if (exit_on_error) goto end;
show_user_quick_help(vars->target);
}
fflush(stdout);
fflush(stderr);
}
}
/* main loop, read input and process commands */
while (!vars->exit) {
char *line;
/* reads in a commandline from the user and returns a pointer to it in *line */
if (getcommand(vars, &line) == false) {
show_error("failed to read in a command.\n");
ret = EXIT_FAILURE;
break;
}
/* sm_execcommand() returning failure is not fatal, it just means the command could not complete. */
if (sm_execcommand(vars, line) == false) {
show_user_quick_help(vars->target);
}
free(line);
fflush(stdout);
fflush(stderr);
}
end:
sm_cleanup();
return ret;
}
|