]> git.saurik.com Git - cycript.git/blob - Console.cpp
d938217b353dd33797902784b70c3b28a96db8e8
[cycript.git] / Console.cpp
1 /* Cycript - Remove Execution Server and Disassembler
2 * Copyright (C) 2009 Jay Freeman (saurik)
3 */
4
5 /* Modified BSD License {{{ */
6 /*
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
18 * distribution.
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38 /* }}} */
39
40 #define _GNU_SOURCE
41
42 #include <substrate.h>
43 #include "cycript.hpp"
44
45 #include <cstdio>
46 #include <sstream>
47
48 #include <setjmp.h>
49
50 #include <readline/readline.h>
51 #include <readline/history.h>
52
53 #include <sys/mman.h>
54
55 #include <errno.h>
56 #include <unistd.h>
57
58 #include <sys/types.h>
59 #include <sys/stat.h>
60 #include <fcntl.h>
61
62 #include "Cycript.tab.hh"
63
64 #include <sys/types.h>
65 #include <sys/socket.h>
66 #include <netinet/in.h>
67 #include <sys/un.h>
68
69 static jmp_buf ctrlc_;
70
71 static void sigint(int) {
72 longjmp(ctrlc_, 1);
73 }
74
75 void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expand = false) {
76 CYPool pool;
77
78 const char *json;
79 if (socket == -1) {
80 json = CYExecute(pool, data);
81 if (json != NULL)
82 size = strlen(json);
83 } else {
84 CYSendAll(socket, &size, sizeof(size));
85 CYSendAll(socket, data, size);
86 CYRecvAll(socket, &size, sizeof(size));
87 if (size == _not(size_t))
88 json = NULL;
89 else {
90 char *temp(new(pool) char[size + 1]);
91 CYRecvAll(socket, temp, size);
92 temp[size] = '\0';
93 json = temp;
94 }
95 }
96
97 if (json != NULL && fout != NULL) {
98 if (!expand || json[0] != '"' && json[0] != '\'')
99 fputs(json, fout);
100 else for (size_t i(0); i != size; ++i)
101 if (json[i] != '\\')
102 fputc(json[i], fout);
103 else switch(json[++i]) {
104 case '\0': goto done;
105 case '\\': fputc('\\', fout); break;
106 case '\'': fputc('\'', fout); break;
107 case '"': fputc('"', fout); break;
108 case 'b': fputc('\b', fout); break;
109 case 'f': fputc('\f', fout); break;
110 case 'n': fputc('\n', fout); break;
111 case 'r': fputc('\r', fout); break;
112 case 't': fputc('\t', fout); break;
113 case 'v': fputc('\v', fout); break;
114 default: fputc('\\', fout); --i; break;
115 }
116
117 done:
118 fputs("\n", fout);
119 fflush(fout);
120 }
121 }
122
123 void Run(int socket, std::string &code, FILE *fout = NULL, bool expand = false) {
124 Run(socket, code.c_str(), code.size(), fout, expand);
125 }
126
127 static void Console(int socket) {
128 bool bypass(false);
129 bool debug(false);
130 bool expand(false);
131
132 FILE *fout(stdout);
133
134 rl_bind_key('\t', rl_insert);
135
136 struct sigaction action;
137 sigemptyset(&action.sa_mask);
138 action.sa_handler = &sigint;
139 action.sa_flags = 0;
140 sigaction(SIGINT, &action, NULL);
141
142 restart: for (;;) {
143 std::string command;
144 std::vector<std::string> lines;
145
146 bool extra(false);
147 const char *prompt("cy# ");
148
149 if (setjmp(ctrlc_) != 0) {
150 fputs("\n", fout);
151 fflush(fout);
152 goto restart;
153 }
154
155 read:
156 char *line(readline(prompt));
157 if (line == NULL)
158 break;
159
160 if (!extra) {
161 extra = true;
162 if (line[0] == '?') {
163 std::string data(line + 1);
164 if (data == "bypass") {
165 bypass = !bypass;
166 fprintf(fout, "bypass == %s\n", bypass ? "true" : "false");
167 fflush(fout);
168 } else if (data == "debug") {
169 debug = !debug;
170 fprintf(fout, "debug == %s\n", debug ? "true" : "false");
171 fflush(fout);
172 } else if (data == "expand") {
173 expand = !expand;
174 fprintf(fout, "expand == %s\n", expand ? "true" : "false");
175 fflush(fout);
176 }
177 add_history(line);
178 goto restart;
179 }
180 }
181
182 command += line;
183 for (char *state, *token(apr_strtok(line, "\n", &state)); token != NULL; token = apr_strtok(NULL, "\n", &state))
184 lines.push_back(token);
185 free(line);
186
187 std::string code;
188
189 if (bypass)
190 code = command;
191 else {
192 CYDriver driver("");
193 cy::parser parser(driver);
194
195 driver.data_ = command.c_str();
196 driver.size_ = command.size();
197
198 if (parser.parse() != 0 || !driver.errors_.empty()) {
199 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
200 cy::position begin(error->location_.begin);
201 if (begin.line != lines.size() || begin.column - 1 != lines.back().size()) {
202 cy::position end(error->location_.end);
203
204 if (begin.line != lines.size()) {
205 std::cerr << " | ";
206 std::cerr << lines[begin.line - 1] << std::endl;
207 }
208
209 std::cerr << " | ";
210 for (size_t i(0); i != begin.column - 1; ++i)
211 std::cerr << '.';
212 if (begin.line != end.line || begin.column == end.column)
213 std::cerr << '^';
214 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
215 std::cerr << '^';
216 std::cerr << std::endl;
217
218 std::cerr << " | ";
219 std::cerr << error->message_ << std::endl;
220
221 add_history(command.c_str());
222 goto restart;
223 }
224 }
225
226 driver.errors_.clear();
227
228 command += '\n';
229 prompt = "cy> ";
230 goto read;
231 }
232
233 if (driver.source_ == NULL)
234 goto restart;
235
236 if (socket != -1)
237 code = command;
238 else {
239 std::ostringstream str;
240 driver.source_->Show(str);
241 code = str.str();
242 }
243 }
244
245 add_history(command.c_str());
246
247 if (debug)
248 std::cout << code << std::endl;
249
250 Run(socket, code, fout, expand);
251 }
252
253 fputs("\n", fout);
254 fflush(fout);
255 }
256
257 static void *Map(const char *path, size_t *psize) {
258 int fd;
259 _syscall(fd = open(path, O_RDONLY));
260
261 struct stat stat;
262 _syscall(fstat(fd, &stat));
263 size_t size(stat.st_size);
264
265 *psize = size;
266
267 void *base;
268 _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0));
269
270 _syscall(close(fd));
271 return base;
272 }
273
274 int main(int argc, char *argv[]) {
275 bool tty(isatty(STDIN_FILENO));
276 pid_t pid(_not(pid_t));
277
278 for (;;) switch (getopt(argc, argv, "p:")) {
279 case -1:
280 goto getopt;
281 case '?':
282 fprintf(stderr, "usage: cycript [-p <pid>] [<script> [<arg>...]]\n");
283 return 1;
284
285 case 'p': {
286 size_t size(strlen(optarg));
287 char *end;
288 pid = strtoul(optarg, &end, 0);
289 if (optarg + size != end) {
290 fprintf(stderr, "invalid pid for -p\n");
291 return 1;
292 }
293 } break;
294 } getopt:;
295
296 const char *script;
297
298 if (optind < argc - 1 && pid != _not(pid_t)) {
299 fprintf(stderr, "-p cannot set argv\n");
300 return 1;
301 }
302
303 if (optind == argc)
304 script = NULL;
305 else {
306 // XXX: const_cast?! wtf gcc :(
307 CYSetArgs(argc - optind - 1, const_cast<const char **>(argv + optind + 1));
308 script = argv[optind];
309 if (strcmp(script, "-") == 0)
310 script = NULL;
311 }
312
313 if (script == NULL && !tty && pid != _not(pid_t)) {
314 fprintf(stderr, "non-terminal attaching to remove console\n");
315 return 1;
316 }
317
318 int socket;
319
320 if (pid == _not(pid_t))
321 socket = -1;
322 else {
323 socket = _syscall(::socket(PF_UNIX, SOCK_STREAM, 0));
324
325 struct sockaddr_un address;
326 memset(&address, 0, sizeof(address));
327 address.sun_family = AF_UNIX;
328 sprintf(address.sun_path, "/tmp/.s.cy.%u", pid);
329
330 _syscall(connect(socket, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
331 }
332
333 if (script == NULL && tty)
334 Console(socket);
335 else {
336 CYDriver driver(script ?: "<stdin>");
337 cy::parser parser(driver);
338
339 char *start, *end;
340
341 if (script == NULL) {
342 start = NULL;
343 end = NULL;
344
345 driver.file_ = stdin;
346 } else {
347 size_t size;
348 start = reinterpret_cast<char *>(Map(script, &size));
349 end = start + size;
350
351 if (size >= 2 && start[0] == '#' && start[1] == '!') {
352 start += 2;
353
354 if (void *line = memchr(start, '\n', end - start))
355 start = reinterpret_cast<char *>(line);
356 else
357 start = end;
358 }
359
360 driver.data_ = start;
361 driver.size_ = end - start;
362 }
363
364 if (parser.parse() != 0 || !driver.errors_.empty()) {
365 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
366 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
367 } else if (driver.source_ != NULL)
368 if (socket != -1)
369 Run(socket, start, end - start, stdout);
370 else {
371 std::ostringstream str;
372 driver.source_->Show(str);
373 std::string code(str.str());
374 Run(socket, code);
375 }
376 }
377
378 return 0;
379 }