]>
Commit | Line | Data |
---|---|---|
1 | /* Cycript - Inlining/Optimizing JavaScript Compiler | |
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 | #include "cycript.hpp" | |
41 | ||
42 | #include <cstdio> | |
43 | #include <sstream> | |
44 | ||
45 | #include <setjmp.h> | |
46 | ||
47 | #include <readline/readline.h> | |
48 | #include <readline/history.h> | |
49 | ||
50 | #include <sys/mman.h> | |
51 | ||
52 | #include <errno.h> | |
53 | #include <unistd.h> | |
54 | ||
55 | #include <sys/types.h> | |
56 | #include <sys/stat.h> | |
57 | #include <fcntl.h> | |
58 | ||
59 | #include "Cycript.tab.hh" | |
60 | ||
61 | #include <sys/types.h> | |
62 | #include <sys/socket.h> | |
63 | #include <netinet/in.h> | |
64 | #include <sys/un.h> | |
65 | #include <pwd.h> | |
66 | ||
67 | #include <apr_getopt.h> | |
68 | ||
69 | #include <dlfcn.h> | |
70 | ||
71 | static volatile enum { | |
72 | Working, | |
73 | Parsing, | |
74 | Running, | |
75 | Sending, | |
76 | Waiting, | |
77 | } mode_; | |
78 | ||
79 | static jmp_buf ctrlc_; | |
80 | ||
81 | static void sigint(int) { | |
82 | switch (mode_) { | |
83 | case Working: | |
84 | return; | |
85 | case Parsing: | |
86 | longjmp(ctrlc_, 1); | |
87 | case Running: | |
88 | throw "*** Ctrl-C"; | |
89 | case Sending: | |
90 | return; | |
91 | case Waiting: | |
92 | return; | |
93 | } | |
94 | } | |
95 | ||
96 | #if YYDEBUG | |
97 | static bool bison_; | |
98 | #endif | |
99 | static bool strict_; | |
100 | static bool pretty_; | |
101 | ||
102 | void Setup(CYDriver &driver, cy::parser &parser) { | |
103 | #if YYDEBUG | |
104 | if (bison_) | |
105 | parser.set_debug_level(1); | |
106 | #endif | |
107 | if (strict_) | |
108 | driver.strict_ = true; | |
109 | } | |
110 | ||
111 | void Setup(CYOutput &out, CYDriver &driver) { | |
112 | out.pretty_ = pretty_; | |
113 | ||
114 | CYContext context(driver.pool_); | |
115 | driver.program_->Replace(context); | |
116 | } | |
117 | ||
118 | void Run(int client, const char *data, size_t size, FILE *fout = NULL, bool expand = false) { | |
119 | CYPool pool; | |
120 | ||
121 | const char *json; | |
122 | if (client == -1) { | |
123 | mode_ = Running; | |
124 | #ifdef CY_EXECUTE | |
125 | json = CYExecute(pool, data); | |
126 | #else | |
127 | json = NULL; | |
128 | #endif | |
129 | mode_ = Working; | |
130 | if (json != NULL) | |
131 | size = strlen(json); | |
132 | } else { | |
133 | mode_ = Sending; | |
134 | CYSendAll(client, &size, sizeof(size)); | |
135 | CYSendAll(client, data, size); | |
136 | mode_ = Waiting; | |
137 | CYRecvAll(client, &size, sizeof(size)); | |
138 | if (size == _not(size_t)) | |
139 | json = NULL; | |
140 | else { | |
141 | char *temp(new(pool) char[size + 1]); | |
142 | CYRecvAll(client, temp, size); | |
143 | temp[size] = '\0'; | |
144 | json = temp; | |
145 | } | |
146 | mode_ = Working; | |
147 | } | |
148 | ||
149 | if (json != NULL && fout != NULL) { | |
150 | if (!expand || json[0] != '"' && json[0] != '\'') | |
151 | fputs(json, fout); | |
152 | else for (size_t i(0); i != size; ++i) | |
153 | if (json[i] != '\\') | |
154 | fputc(json[i], fout); | |
155 | else switch(json[++i]) { | |
156 | case '\0': goto done; | |
157 | case '\\': fputc('\\', fout); break; | |
158 | case '\'': fputc('\'', fout); break; | |
159 | case '"': fputc('"', fout); break; | |
160 | case 'b': fputc('\b', fout); break; | |
161 | case 'f': fputc('\f', fout); break; | |
162 | case 'n': fputc('\n', fout); break; | |
163 | case 'r': fputc('\r', fout); break; | |
164 | case 't': fputc('\t', fout); break; | |
165 | case 'v': fputc('\v', fout); break; | |
166 | default: fputc('\\', fout); --i; break; | |
167 | } | |
168 | ||
169 | done: | |
170 | fputs("\n", fout); | |
171 | fflush(fout); | |
172 | } | |
173 | } | |
174 | ||
175 | void Run(int client, std::string &code, FILE *fout = NULL, bool expand = false) { | |
176 | Run(client, code.c_str(), code.size(), fout, expand); | |
177 | } | |
178 | ||
179 | int (*append_history$)(int, const char *); | |
180 | ||
181 | static void Console(apr_pool_t *pool, int client) { | |
182 | passwd *passwd; | |
183 | if (const char *username = getenv("LOGNAME")) | |
184 | passwd = getpwnam(username); | |
185 | else | |
186 | passwd = getpwuid(getuid()); | |
187 | ||
188 | const char *basedir(apr_psprintf(pool, "%s/.cycript", passwd->pw_dir)); | |
189 | const char *histfile(apr_psprintf(pool, "%s/history", basedir)); | |
190 | size_t histlines(0); | |
191 | ||
192 | mkdir(basedir, 0700); | |
193 | read_history(histfile); | |
194 | ||
195 | bool bypass(false); | |
196 | bool debug(false); | |
197 | bool expand(false); | |
198 | ||
199 | FILE *fout(stdout); | |
200 | ||
201 | rl_bind_key('\t', rl_insert); | |
202 | ||
203 | struct sigaction action; | |
204 | sigemptyset(&action.sa_mask); | |
205 | action.sa_handler = &sigint; | |
206 | action.sa_flags = 0; | |
207 | sigaction(SIGINT, &action, NULL); | |
208 | ||
209 | restart: for (;;) { | |
210 | std::string command; | |
211 | std::vector<std::string> lines; | |
212 | ||
213 | bool extra(false); | |
214 | const char *prompt("cy# "); | |
215 | ||
216 | if (setjmp(ctrlc_) != 0) { | |
217 | mode_ = Working; | |
218 | fputs("\n", fout); | |
219 | fflush(fout); | |
220 | goto restart; | |
221 | } | |
222 | ||
223 | read: | |
224 | mode_ = Parsing; | |
225 | char *line(readline(prompt)); | |
226 | mode_ = Working; | |
227 | if (line == NULL) | |
228 | break; | |
229 | if (line[0] == '\0') | |
230 | goto read; | |
231 | ||
232 | if (!extra) { | |
233 | extra = true; | |
234 | if (line[0] == '?') { | |
235 | std::string data(line + 1); | |
236 | if (data == "bypass") { | |
237 | bypass = !bypass; | |
238 | fprintf(fout, "bypass == %s\n", bypass ? "true" : "false"); | |
239 | fflush(fout); | |
240 | } else if (data == "debug") { | |
241 | debug = !debug; | |
242 | fprintf(fout, "debug == %s\n", debug ? "true" : "false"); | |
243 | fflush(fout); | |
244 | } else if (data == "expand") { | |
245 | expand = !expand; | |
246 | fprintf(fout, "expand == %s\n", expand ? "true" : "false"); | |
247 | fflush(fout); | |
248 | } | |
249 | add_history(line); | |
250 | ++histlines; | |
251 | goto restart; | |
252 | } | |
253 | } | |
254 | ||
255 | command += line; | |
256 | ||
257 | char *begin(line), *end(line + strlen(line)); | |
258 | while (char *nl = reinterpret_cast<char *>(memchr(begin, '\n', end - begin))) { | |
259 | *nl = '\0'; | |
260 | lines.push_back(begin); | |
261 | begin = nl + 1; | |
262 | } | |
263 | ||
264 | lines.push_back(begin); | |
265 | ||
266 | free(line); | |
267 | ||
268 | std::string code; | |
269 | ||
270 | if (bypass) | |
271 | code = command; | |
272 | else { | |
273 | CYDriver driver(""); | |
274 | cy::parser parser(driver); | |
275 | Setup(driver, parser); | |
276 | ||
277 | driver.data_ = command.c_str(); | |
278 | driver.size_ = command.size(); | |
279 | ||
280 | if (parser.parse() != 0 || !driver.errors_.empty()) { | |
281 | for (CYDriver::Errors::const_iterator error(driver.errors_.begin()); error != driver.errors_.end(); ++error) { | |
282 | cy::position begin(error->location_.begin); | |
283 | if (begin.line != lines.size() || begin.column - 1 != lines.back().size() || error->warning_) { | |
284 | cy::position end(error->location_.end); | |
285 | ||
286 | if (begin.line != lines.size()) { | |
287 | std::cerr << " | "; | |
288 | std::cerr << lines[begin.line - 1] << std::endl; | |
289 | } | |
290 | ||
291 | std::cerr << "...."; | |
292 | for (size_t i(0); i != begin.column - 1; ++i) | |
293 | std::cerr << '.'; | |
294 | if (begin.line != end.line || begin.column == end.column) | |
295 | std::cerr << '^'; | |
296 | else for (size_t i(0), e(end.column - begin.column); i != e; ++i) | |
297 | std::cerr << '^'; | |
298 | std::cerr << std::endl; | |
299 | ||
300 | std::cerr << " | "; | |
301 | std::cerr << error->message_ << std::endl; | |
302 | ||
303 | add_history(command.c_str()); | |
304 | ++histlines; | |
305 | goto restart; | |
306 | } | |
307 | } | |
308 | ||
309 | driver.errors_.clear(); | |
310 | ||
311 | command += '\n'; | |
312 | prompt = "cy> "; | |
313 | goto read; | |
314 | } | |
315 | ||
316 | if (driver.program_ == NULL) | |
317 | goto restart; | |
318 | ||
319 | if (client != -1) | |
320 | code = command; | |
321 | else { | |
322 | std::ostringstream str; | |
323 | CYOutput out(str); | |
324 | Setup(out, driver); | |
325 | out << *driver.program_; | |
326 | code = str.str(); | |
327 | } | |
328 | } | |
329 | ||
330 | add_history(command.c_str()); | |
331 | ++histlines; | |
332 | ||
333 | if (debug) | |
334 | std::cout << code << std::endl; | |
335 | ||
336 | Run(client, code, fout, expand); | |
337 | } | |
338 | ||
339 | if (append_history$ != NULL) { | |
340 | _syscall(close(_syscall(open(histfile, O_CREAT | O_WRONLY, 0600)))); | |
341 | (*append_history$)(histlines, histfile); | |
342 | } else { | |
343 | write_history(histfile); | |
344 | } | |
345 | ||
346 | fputs("\n", fout); | |
347 | fflush(fout); | |
348 | } | |
349 | ||
350 | static void *Map(const char *path, size_t *psize) { | |
351 | int fd; | |
352 | _syscall(fd = open(path, O_RDONLY)); | |
353 | ||
354 | struct stat stat; | |
355 | _syscall(fstat(fd, &stat)); | |
356 | size_t size(stat.st_size); | |
357 | ||
358 | *psize = size; | |
359 | ||
360 | void *base; | |
361 | _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0)); | |
362 | ||
363 | _syscall(close(fd)); | |
364 | return base; | |
365 | } | |
366 | ||
367 | void InjectLibrary(pid_t pid); | |
368 | ||
369 | int Main(int argc, char const * const argv[], char const * const envp[]) { | |
370 | bool tty(isatty(STDIN_FILENO)); | |
371 | bool compile(false); | |
372 | ||
373 | append_history$ = reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT, "append_history")); | |
374 | ||
375 | #ifdef CY_ATTACH | |
376 | pid_t pid(_not(pid_t)); | |
377 | #endif | |
378 | ||
379 | CYPool pool; | |
380 | apr_getopt_t *state; | |
381 | _aprcall(apr_getopt_init(&state, pool, argc, argv)); | |
382 | ||
383 | for (;;) { | |
384 | char opt; | |
385 | const char *arg; | |
386 | ||
387 | apr_status_t status(apr_getopt(state, | |
388 | "cg:n:" | |
389 | #ifdef CY_ATTACH | |
390 | "p:" | |
391 | #endif | |
392 | "s" | |
393 | , &opt, &arg)); | |
394 | ||
395 | switch (status) { | |
396 | case APR_EOF: | |
397 | goto getopt; | |
398 | case APR_BADCH: | |
399 | case APR_BADARG: | |
400 | fprintf(stderr, | |
401 | "usage: cycript [-c]" | |
402 | #ifdef CY_ATTACH | |
403 | " [-p <pid|name>]" | |
404 | #endif | |
405 | " [<script> [<arg>...]]\n" | |
406 | ); | |
407 | return 1; | |
408 | default: | |
409 | _aprcall(status); | |
410 | } | |
411 | ||
412 | switch (opt) { | |
413 | case 'c': | |
414 | compile = true; | |
415 | break; | |
416 | ||
417 | case 'g': | |
418 | if (false); | |
419 | #if YYDEBUG | |
420 | else if (strcmp(arg, "bison") == 0) | |
421 | bison_ = true; | |
422 | #endif | |
423 | else { | |
424 | fprintf(stderr, "invalid name for -g\n"); | |
425 | return 1; | |
426 | } | |
427 | break; | |
428 | ||
429 | case 'n': | |
430 | if (false); | |
431 | else if (strcmp(arg, "minify") == 0) | |
432 | pretty_ = true; | |
433 | else { | |
434 | fprintf(stderr, "invalid name for -n\n"); | |
435 | return 1; | |
436 | } | |
437 | break; | |
438 | ||
439 | #ifdef CY_ATTACH | |
440 | case 'p': { | |
441 | size_t size(strlen(arg)); | |
442 | char *end; | |
443 | ||
444 | pid = strtoul(arg, &end, 0); | |
445 | if (arg + size != end) { | |
446 | // XXX: arg needs to be escaped in some horrendous way of doom | |
447 | const char *command(apr_psprintf(pool, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg)); | |
448 | ||
449 | if (FILE *pids = popen(command, "r")) { | |
450 | char value[32]; | |
451 | size = 0; | |
452 | ||
453 | for (;;) { | |
454 | size_t read(fread(value + size, 1, sizeof(value) - size, pids)); | |
455 | if (read == 0) | |
456 | break; | |
457 | else { | |
458 | size += read; | |
459 | if (size == sizeof(value)) { | |
460 | pid = _not(pid_t); | |
461 | goto fail; | |
462 | } | |
463 | } | |
464 | } | |
465 | ||
466 | size: | |
467 | if (size == 0) | |
468 | goto fail; | |
469 | if (value[size - 1] == '\n') { | |
470 | --size; | |
471 | goto size; | |
472 | } | |
473 | ||
474 | value[size] = '\0'; | |
475 | size = strlen(value); | |
476 | pid = strtoul(value, &end, 0); | |
477 | if (value + size != end) fail: | |
478 | pid = _not(pid_t); | |
479 | _syscall(pclose(pids)); | |
480 | } | |
481 | ||
482 | if (pid == _not(pid_t)) { | |
483 | fprintf(stderr, "invalid pid for -p\n"); | |
484 | return 1; | |
485 | } | |
486 | } | |
487 | } break; | |
488 | #endif | |
489 | ||
490 | case 's': | |
491 | strict_ = true; | |
492 | break; | |
493 | } | |
494 | } getopt:; | |
495 | ||
496 | const char *script; | |
497 | int ind(state->ind); | |
498 | ||
499 | #ifdef CY_ATTACH | |
500 | if (pid != _not(pid_t) && ind < argc - 1) { | |
501 | fprintf(stderr, "-p cannot set argv\n"); | |
502 | return 1; | |
503 | } | |
504 | ||
505 | if (pid != _not(pid_t) && compile) { | |
506 | fprintf(stderr, "-p conflicts with -c\n"); | |
507 | return 1; | |
508 | } | |
509 | #endif | |
510 | ||
511 | if (ind == argc) | |
512 | script = NULL; | |
513 | else { | |
514 | #ifdef CY_EXECUTE | |
515 | // XXX: const_cast?! wtf gcc :( | |
516 | CYSetArgs(argc - ind - 1, const_cast<const char **>(argv + ind + 1)); | |
517 | #endif | |
518 | script = argv[ind]; | |
519 | if (strcmp(script, "-") == 0) | |
520 | script = NULL; | |
521 | } | |
522 | ||
523 | #ifdef CY_ATTACH | |
524 | if (pid != _not(pid_t) && script == NULL && !tty) { | |
525 | fprintf(stderr, "non-terminal attaching to remote console\n"); | |
526 | return 1; | |
527 | } | |
528 | #endif | |
529 | ||
530 | int client; | |
531 | ||
532 | #ifdef CY_ATTACH | |
533 | if (pid == _not(pid_t)) | |
534 | client = -1; | |
535 | else { | |
536 | int server(_syscall(socket(PF_UNIX, SOCK_STREAM, 0))); try { | |
537 | struct sockaddr_un address; | |
538 | memset(&address, 0, sizeof(address)); | |
539 | address.sun_family = AF_UNIX; | |
540 | ||
541 | sprintf(address.sun_path, "/tmp/.s.cy.%u", getpid()); | |
542 | ||
543 | _syscall(bind(server, reinterpret_cast<sockaddr *>(&address), SUN_LEN(&address))); | |
544 | _syscall(chmod(address.sun_path, 0777)); | |
545 | ||
546 | try { | |
547 | _syscall(listen(server, 1)); | |
548 | InjectLibrary(pid); | |
549 | client = _syscall(accept(server, NULL, NULL)); | |
550 | } catch (...) { | |
551 | // XXX: exception? | |
552 | unlink(address.sun_path); | |
553 | throw; | |
554 | } | |
555 | } catch (...) { | |
556 | _syscall(close(server)); | |
557 | throw; | |
558 | } | |
559 | } | |
560 | #else | |
561 | client = -1; | |
562 | #endif | |
563 | ||
564 | if (script == NULL && tty) | |
565 | Console(pool, client); | |
566 | else { | |
567 | CYDriver driver(script ?: "<stdin>"); | |
568 | cy::parser parser(driver); | |
569 | Setup(driver, parser); | |
570 | ||
571 | char *start, *end; | |
572 | ||
573 | if (script == NULL) { | |
574 | start = NULL; | |
575 | end = NULL; | |
576 | ||
577 | driver.file_ = stdin; | |
578 | } else { | |
579 | size_t size; | |
580 | start = reinterpret_cast<char *>(Map(script, &size)); | |
581 | end = start + size; | |
582 | ||
583 | if (size >= 2 && start[0] == '#' && start[1] == '!') { | |
584 | start += 2; | |
585 | ||
586 | if (void *line = memchr(start, '\n', end - start)) | |
587 | start = reinterpret_cast<char *>(line); | |
588 | else | |
589 | start = end; | |
590 | } | |
591 | ||
592 | driver.data_ = start; | |
593 | driver.size_ = end - start; | |
594 | } | |
595 | ||
596 | if (parser.parse() != 0 || !driver.errors_.empty()) { | |
597 | for (CYDriver::Errors::const_iterator i(driver.errors_.begin()); i != driver.errors_.end(); ++i) | |
598 | std::cerr << i->location_.begin << ": " << i->message_ << std::endl; | |
599 | } else if (driver.program_ != NULL) | |
600 | if (client != -1) { | |
601 | std::string code(start, end-start); | |
602 | Run(client, code, stdout); | |
603 | } else { | |
604 | std::ostringstream str; | |
605 | CYOutput out(str); | |
606 | Setup(out, driver); | |
607 | out << *driver.program_; | |
608 | std::string code(str.str()); | |
609 | if (compile) | |
610 | std::cout << code; | |
611 | else | |
612 | Run(client, code, stdout); | |
613 | } | |
614 | } | |
615 | ||
616 | return 0; | |
617 | } | |
618 | ||
619 | int main(int argc, char const * const argv[], char const * const envp[]) { | |
620 | apr_status_t status(apr_app_initialize(&argc, &argv, &envp)); | |
621 | ||
622 | if (status != APR_SUCCESS) { | |
623 | fprintf(stderr, "apr_app_initialize() != APR_SUCCESS\n"); | |
624 | return 1; | |
625 | } else try { | |
626 | return Main(argc, argv, envp); | |
627 | } catch (const CYException &error) { | |
628 | CYPool pool; | |
629 | fprintf(stderr, "%s\n", error.PoolCString(pool)); | |
630 | return 1; | |
631 | } | |
632 | } |