]>
git.saurik.com Git - cycript.git/blob - Console.cpp
1 /* Cycript - Remove Execution Server and Disassembler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
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
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.
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.
40 #include "cycript.hpp"
47 #include <readline/readline.h>
48 #include <readline/history.h>
55 #include <sys/types.h>
59 #include "Cycript.tab.hh"
61 #include <sys/types.h>
62 #include <sys/socket.h>
63 #include <netinet/in.h>
66 static volatile enum {
74 static jmp_buf ctrlc_
;
76 static void sigint(int) {
97 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
100 parser
.set_debug_level(1);
103 driver
.strict_
= true;
106 void Setup(CYOutput
&out
, CYDriver
&driver
) {
107 out
.pretty_
= pretty_
;
109 CYContext
context(driver
.pool_
);
110 driver
.program_
->Replace(context
);
113 void Run(int socket
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
120 json
= CYExecute(pool
, data
);
129 CYSendAll(socket
, &size
, sizeof(size
));
130 CYSendAll(socket
, data
, size
);
132 CYRecvAll(socket
, &size
, sizeof(size
));
133 if (size
== _not(size_t))
136 char *temp(new(pool
) char[size
+ 1]);
137 CYRecvAll(socket
, temp
, size
);
144 if (json
!= NULL
&& fout
!= NULL
) {
145 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
147 else for (size_t i(0); i
!= size
; ++i
)
149 fputc(json
[i
], fout
);
150 else switch(json
[++i
]) {
151 case '\0': goto done
;
152 case '\\': fputc('\\', fout
); break;
153 case '\'': fputc('\'', fout
); break;
154 case '"': fputc('"', fout
); break;
155 case 'b': fputc('\b', fout
); break;
156 case 'f': fputc('\f', fout
); break;
157 case 'n': fputc('\n', fout
); break;
158 case 'r': fputc('\r', fout
); break;
159 case 't': fputc('\t', fout
); break;
160 case 'v': fputc('\v', fout
); break;
161 default: fputc('\\', fout
); --i
; break;
170 void Run(int socket
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
171 Run(socket
, code
.c_str(), code
.size(), fout
, expand
);
174 static void Console(int socket
) {
181 rl_bind_key('\t', rl_insert
);
183 struct sigaction action
;
184 sigemptyset(&action
.sa_mask
);
185 action
.sa_handler
= &sigint
;
187 sigaction(SIGINT
, &action
, NULL
);
191 std::vector
<std::string
> lines
;
194 const char *prompt("cy# ");
196 if (setjmp(ctrlc_
) != 0) {
205 char *line(readline(prompt
));
212 if (line
[0] == '?') {
213 std::string
data(line
+ 1);
214 if (data
== "bypass") {
216 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
218 } else if (data
== "debug") {
220 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
222 } else if (data
== "expand") {
224 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
234 char *begin(line
), *end(line
+ strlen(line
));
235 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
237 lines
.push_back(begin
);
241 lines
.push_back(begin
);
251 cy::parser
parser(driver
);
252 Setup(driver
, parser
);
254 driver
.data_
= command
.c_str();
255 driver
.size_
= command
.size();
257 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
258 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
259 cy::position
begin(error
->location_
.begin
);
260 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
261 cy::position
end(error
->location_
.end
);
263 if (begin
.line
!= lines
.size()) {
265 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
269 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
271 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
273 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
275 std::cerr
<< std::endl
;
278 std::cerr
<< error
->message_
<< std::endl
;
280 add_history(command
.c_str());
285 driver
.errors_
.clear();
292 if (driver
.program_
== NULL
)
298 std::ostringstream str
;
301 out
<< *driver
.program_
;
306 add_history(command
.c_str());
309 std::cout
<< code
<< std::endl
;
311 Run(socket
, code
, fout
, expand
);
318 static void *Map(const char *path
, size_t *psize
) {
320 _syscall(fd
= open(path
, O_RDONLY
));
323 _syscall(fstat(fd
, &stat
));
324 size_t size(stat
.st_size
);
329 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
335 int main(int argc
, char *argv
[]) {
336 bool tty(isatty(STDIN_FILENO
));
340 pid_t
pid(_not(pid_t
));
343 for (;;) switch (getopt(argc
, argv
,
353 fprintf(stderr
, "usage: cycript [-c]"
357 " [<script> [<arg>...]]\n");
367 else if (strcmp(optarg
, "bison") == 0)
371 fprintf(stderr
, "invalid name for -g\n");
378 else if (strcmp(optarg
, "minify") == 0)
381 fprintf(stderr
, "invalid name for -n\n");
388 size_t size(strlen(optarg
));
390 pid
= strtoul(optarg
, &end
, 0);
391 if (optarg
+ size
!= end
) {
392 fprintf(stderr
, "invalid pid for -p\n");
406 if (pid
!= _not(pid_t
) && optind
< argc
- 1) {
407 fprintf(stderr
, "-p cannot set argv\n");
411 if (pid
!= _not(pid_t
) && compile
) {
412 fprintf(stderr
, "-p conflicts with -c\n");
421 // XXX: const_cast?! wtf gcc :(
422 CYSetArgs(argc
- optind
- 1, const_cast<const char **>(argv
+ optind
+ 1));
424 script
= argv
[optind
];
425 if (strcmp(script
, "-") == 0)
430 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
431 fprintf(stderr
, "non-terminal attaching to remote console\n");
439 if (pid
== _not(pid_t
))
442 socket
= _syscall(::socket(PF_UNIX
, SOCK_STREAM
, 0));
444 struct sockaddr_un address
;
445 memset(&address
, 0, sizeof(address
));
446 address
.sun_family
= AF_UNIX
;
447 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", pid
);
449 _syscall(connect(socket
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
455 if (script
== NULL
&& tty
)
458 CYDriver
driver(script
?: "<stdin>");
459 cy::parser
parser(driver
);
460 Setup(driver
, parser
);
464 if (script
== NULL
) {
468 driver
.file_
= stdin
;
471 start
= reinterpret_cast<char *>(Map(script
, &size
));
474 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
477 if (void *line
= memchr(start
, '\n', end
- start
))
478 start
= reinterpret_cast<char *>(line
);
483 driver
.data_
= start
;
484 driver
.size_
= end
- start
;
487 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
488 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
489 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
490 } else if (driver
.program_
!= NULL
)
492 Run(socket
, start
, end
- start
, stdout
);
494 std::ostringstream str
;
497 out
<< *driver
.program_
;
498 std::string
code(str
.str());
502 Run(socket
, code
, stdout
);