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