]> git.saurik.com Git - cycript.git/blame - Console.cpp
Setup new objects in lexer to allocate into the correct pool.
[cycript.git] / Console.cpp
CommitLineData
b4aa79af
JF
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
057f943f
JF
40#define _GNU_SOURCE
41
693d501b 42#include <substrate.h>
30ddc20c 43#include "cycript.hpp"
057f943f
JF
44
45#include <cstdio>
46#include <sstream>
47
48#include <setjmp.h>
49
50#include <readline/readline.h>
51#include <readline/history.h>
52
b09da87b
JF
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
057f943f
JF
62#include "Cycript.tab.hh"
63
967067aa
JF
64#include <sys/types.h>
65#include <sys/socket.h>
66#include <netinet/in.h>
67#include <sys/un.h>
68
4e39dc0b
JF
69static volatile enum {
70 Working,
71 Parsing,
72 Running,
73 Sending,
74 Waiting,
75} mode_;
76
057f943f
JF
77static jmp_buf ctrlc_;
78
579ed526 79static void sigint(int) {
4e39dc0b
JF
80 switch (mode_) {
81 case Working:
82 return;
83 case Parsing:
84 longjmp(ctrlc_, 1);
85 case Running:
86 throw "*** Ctrl-C";
87 case Sending:
88 return;
89 case Waiting:
90 return;
91 }
057f943f
JF
92}
93
cac61857
JF
94#if YYDEBUG
95static bool bison_;
96#endif
97
98void Setup(cy::parser &parser) {
99#if YYDEBUG
100 if (bison_)
101 parser.set_debug_level(1);
102#endif
103}
104
48e3be8a 105void Run(int socket, const char *data, size_t size, FILE *fout = NULL, bool expand = false) {
967067aa 106 CYPool pool;
b09da87b 107
967067aa 108 const char *json;
6ec85c5b 109 if (socket == -1) {
4e39dc0b 110 mode_ = Running;
fcc64bb5 111 json = CYExecute(pool, data);
4e39dc0b 112 mode_ = Working;
6ec85c5b
JF
113 if (json != NULL)
114 size = strlen(json);
115 } else {
4e39dc0b 116 mode_ = Sending;
967067aa
JF
117 CYSendAll(socket, &size, sizeof(size));
118 CYSendAll(socket, data, size);
4e39dc0b 119 mode_ = Waiting;
967067aa
JF
120 CYRecvAll(socket, &size, sizeof(size));
121 if (size == _not(size_t))
122 json = NULL;
123 else {
124 char *temp(new(pool) char[size + 1]);
125 CYRecvAll(socket, temp, size);
126 temp[size] = '\0';
127 json = temp;
128 }
4e39dc0b 129 mode_ = Working;
4cf49641 130 }
b09da87b 131
967067aa 132 if (json != NULL && fout != NULL) {
6ec85c5b
JF
133 if (!expand || json[0] != '"' && json[0] != '\'')
134 fputs(json, fout);
135 else for (size_t i(0); i != size; ++i)
136 if (json[i] != '\\')
137 fputc(json[i], fout);
138 else switch(json[++i]) {
139 case '\0': goto done;
140 case '\\': fputc('\\', fout); break;
141 case '\'': fputc('\'', fout); break;
142 case '"': fputc('"', fout); break;
143 case 'b': fputc('\b', fout); break;
144 case 'f': fputc('\f', fout); break;
145 case 'n': fputc('\n', fout); break;
146 case 'r': fputc('\r', fout); break;
147 case 't': fputc('\t', fout); break;
148 case 'v': fputc('\v', fout); break;
149 default: fputc('\\', fout); --i; break;
150 }
151
152 done:
967067aa
JF
153 fputs("\n", fout);
154 fflush(fout);
b09da87b
JF
155 }
156}
157
48e3be8a 158void Run(int socket, std::string &code, FILE *fout = NULL, bool expand = false) {
6ec85c5b 159 Run(socket, code.c_str(), code.size(), fout, expand);
fcc64bb5
JF
160}
161
967067aa 162static void Console(int socket) {
1f8eae40
JF
163 bool bypass(false);
164 bool debug(false);
6ec85c5b 165 bool expand(false);
1f8eae40 166
057f943f
JF
167 FILE *fout(stdout);
168
169 rl_bind_key('\t', rl_insert);
170
171 struct sigaction action;
172 sigemptyset(&action.sa_mask);
173 action.sa_handler = &sigint;
174 action.sa_flags = 0;
175 sigaction(SIGINT, &action, NULL);
176
177 restart: for (;;) {
178 std::string command;
179 std::vector<std::string> lines;
180
931b816a
JF
181 bool extra(false);
182 const char *prompt("cy# ");
183
057f943f 184 if (setjmp(ctrlc_) != 0) {
4e39dc0b 185 mode_ = Working;
057f943f
JF
186 fputs("\n", fout);
187 fflush(fout);
188 goto restart;
189 }
190
057f943f 191 read:
4e39dc0b 192 mode_ = Parsing;
057f943f 193 char *line(readline(prompt));
4e39dc0b 194 mode_ = Working;
057f943f
JF
195 if (line == NULL)
196 break;
931b816a
JF
197
198 if (!extra) {
199 extra = true;
6ec85c5b 200 if (line[0] == '?') {
1f8eae40
JF
201 std::string data(line + 1);
202 if (data == "bypass") {
203 bypass = !bypass;
204 fprintf(fout, "bypass == %s\n", bypass ? "true" : "false");
205 fflush(fout);
206 } else if (data == "debug") {
207 debug = !debug;
208 fprintf(fout, "debug == %s\n", debug ? "true" : "false");
209 fflush(fout);
6ec85c5b
JF
210 } else if (data == "expand") {
211 expand = !expand;
212 fprintf(fout, "expand == %s\n", expand ? "true" : "false");
213 fflush(fout);
1f8eae40 214 }
d35a3b07 215 add_history(line);
931b816a
JF
216 goto restart;
217 }
218 }
219
057f943f 220 command += line;
83b5afe2
JF
221 for (char *state, *token(apr_strtok(line, "\n", &state)); token != NULL; token = apr_strtok(NULL, "\n", &state))
222 lines.push_back(token);
057f943f
JF
223 free(line);
224
1f8eae40
JF
225 std::string code;
226
227 if (bypass)
228 code = command;
229 else {
230 CYDriver driver("");
231 cy::parser parser(driver);
cac61857 232 Setup(parser);
1f8eae40
JF
233
234 driver.data_ = command.c_str();
235 driver.size_ = command.size();
236
237 if (parser.parse() != 0 || !driver.errors_.empty()) {
f0360d51
JF
238 for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) {
239 cy::position begin(error->location_.begin);
1f8eae40 240 if (begin.line != lines.size() || begin.column - 1 != lines.back().size()) {
f0360d51 241 cy::position end(error->location_.end);
48e3be8a 242
f0360d51
JF
243 if (begin.line != lines.size()) {
244 std::cerr << " | ";
245 std::cerr << lines[begin.line - 1] << std::endl;
246 }
48e3be8a 247
f0360d51
JF
248 std::cerr << " | ";
249 for (size_t i(0); i != begin.column - 1; ++i)
250 std::cerr << '.';
48e3be8a 251 if (begin.line != end.line || begin.column == end.column)
f0360d51
JF
252 std::cerr << '^';
253 else for (size_t i(0), e(end.column - begin.column); i != e; ++i)
254 std::cerr << '^';
255 std::cerr << std::endl;
48e3be8a 256
f0360d51
JF
257 std::cerr << " | ";
258 std::cerr << error->message_ << std::endl;
48e3be8a 259
1f8eae40
JF
260 add_history(command.c_str());
261 goto restart;
262 }
263 }
057f943f 264
1f8eae40 265 driver.errors_.clear();
057f943f 266
1f8eae40
JF
267 command += '\n';
268 prompt = "cy> ";
269 goto read;
057f943f
JF
270 }
271
1f8eae40
JF
272 if (driver.source_ == NULL)
273 goto restart;
057f943f 274
967067aa
JF
275 if (socket != -1)
276 code = command;
277 else {
278 std::ostringstream str;
652ec1ba
JF
279 CYOutput out(str);
280 driver.source_->Show(out);
967067aa
JF
281 code = str.str();
282 }
057f943f
JF
283 }
284
057f943f
JF
285 add_history(command.c_str());
286
1f8eae40
JF
287 if (debug)
288 std::cout << code << std::endl;
057f943f 289
6ec85c5b 290 Run(socket, code, fout, expand);
b09da87b 291 }
057f943f 292
b09da87b
JF
293 fputs("\n", fout);
294 fflush(fout);
295}
057f943f 296
579ed526 297static void *Map(const char *path, size_t *psize) {
b09da87b
JF
298 int fd;
299 _syscall(fd = open(path, O_RDONLY));
057f943f 300
b09da87b
JF
301 struct stat stat;
302 _syscall(fstat(fd, &stat));
303 size_t size(stat.st_size);
057f943f 304
b09da87b 305 *psize = size;
057f943f 306
b09da87b
JF
307 void *base;
308 _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0));
057f943f 309
b09da87b
JF
310 _syscall(close(fd));
311 return base;
312}
057f943f 313
967067aa 314int main(int argc, char *argv[]) {
48e3be8a 315 bool tty(isatty(STDIN_FILENO));
967067aa 316 pid_t pid(_not(pid_t));
75b0a457 317 bool compile(false);
967067aa 318
cac61857 319 for (;;) switch (getopt(argc, argv, "cg:p:")) {
967067aa
JF
320 case -1:
321 goto getopt;
322 case '?':
75b0a457 323 fprintf(stderr, "usage: cycript [-c] [-p <pid>] [<script> [<arg>...]]\n");
967067aa
JF
324 return 1;
325
75b0a457
JF
326 case 'c':
327 compile = true;
328 break;
329
cac61857
JF
330 case 'g':
331 if (false);
332#if YYDEBUG
333 else if (strcmp(optarg, "bison") == 0)
334 bison_ = true;
335#endif
336 else {
337 fprintf(stderr, "invalid name for -g\n");
338 return 1;
339 }
340 break;
341
967067aa
JF
342 case 'p': {
343 size_t size(strlen(optarg));
344 char *end;
345 pid = strtoul(optarg, &end, 0);
346 if (optarg + size != end) {
347 fprintf(stderr, "invalid pid for -p\n");
348 return 1;
349 }
350 } break;
351 } getopt:;
352
b09da87b
JF
353 const char *script;
354
75b0a457 355 if (pid != _not(pid_t) && optind < argc - 1) {
fcc64bb5
JF
356 fprintf(stderr, "-p cannot set argv\n");
357 return 1;
358 }
359
75b0a457
JF
360 if (pid != _not(pid_t) && compile) {
361 fprintf(stderr, "-p conflicts with -c\n");
362 return 1;
363 }
364
967067aa 365 if (optind == argc)
b09da87b
JF
366 script = NULL;
367 else {
967067aa
JF
368 // XXX: const_cast?! wtf gcc :(
369 CYSetArgs(argc - optind - 1, const_cast<const char **>(argv + optind + 1));
370 script = argv[optind];
371 if (strcmp(script, "-") == 0)
372 script = NULL;
b09da87b
JF
373 }
374
48e3be8a
JF
375 if (script == NULL && !tty && pid != _not(pid_t)) {
376 fprintf(stderr, "non-terminal attaching to remove console\n");
377 return 1;
378 }
379
967067aa
JF
380 int socket;
381
382 if (pid == _not(pid_t))
383 socket = -1;
384 else {
385 socket = _syscall(::socket(PF_UNIX, SOCK_STREAM, 0));
386
387 struct sockaddr_un address;
388 memset(&address, 0, sizeof(address));
389 address.sun_family = AF_UNIX;
390 sprintf(address.sun_path, "/tmp/.s.cy.%u", pid);
391
392 _syscall(connect(socket, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address)));
393 }
579ed526 394
48e3be8a 395 if (script == NULL && tty)
967067aa 396 Console(socket);
b09da87b 397 else {
48e3be8a 398 CYDriver driver(script ?: "<stdin>");
b09da87b 399 cy::parser parser(driver);
cac61857 400 Setup(parser);
b09da87b 401
48e3be8a 402 char *start, *end;
b09da87b 403
48e3be8a
JF
404 if (script == NULL) {
405 start = NULL;
406 end = NULL;
2b1245e4 407
48e3be8a
JF
408 driver.file_ = stdin;
409 } else {
410 size_t size;
411 start = reinterpret_cast<char *>(Map(script, &size));
412 end = start + size;
413
414 if (size >= 2 && start[0] == '#' && start[1] == '!') {
415 start += 2;
057f943f 416
48e3be8a
JF
417 if (void *line = memchr(start, '\n', end - start))
418 start = reinterpret_cast<char *>(line);
419 else
420 start = end;
421 }
422
423 driver.data_ = start;
424 driver.size_ = end - start;
425 }
62ca2b82 426
b09da87b
JF
427 if (parser.parse() != 0 || !driver.errors_.empty()) {
428 for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i)
429 std::cerr << i->location_.begin << ": " << i->message_ << std::endl;
fcc64bb5
JF
430 } else if (driver.source_ != NULL)
431 if (socket != -1)
432 Run(socket, start, end - start, stdout);
433 else {
434 std::ostringstream str;
652ec1ba
JF
435 CYOutput out(str);
436 driver.source_->Show(out);
fcc64bb5 437 std::string code(str.str());
75b0a457
JF
438 if (compile)
439 std::cout << code;
440 else
441 Run(socket, code);
fcc64bb5 442 }
057f943f 443 }
62ca2b82 444
057f943f 445 return 0;
62ca2b82 446}