]>
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.
42 #include <substrate.h>
43 #include "cycript.hpp"
50 #include <readline/readline.h>
51 #include <readline/history.h>
58 #include <sys/types.h>
62 #include "Cycript.tab.hh"
64 #include <sys/types.h>
65 #include <sys/socket.h>
66 #include <netinet/in.h>
69 static jmp_buf ctrlc_
;
71 static void sigint(int) {
75 void Run(int socket
, const char *data
, size_t size
, FILE *fout
, bool expand
= false) {
80 json
= CYExecute(pool
, data
);
84 CYSendAll(socket
, &size
, sizeof(size
));
85 CYSendAll(socket
, data
, size
);
86 CYRecvAll(socket
, &size
, sizeof(size
));
87 if (size
== _not(size_t))
90 char *temp(new(pool
) char[size
+ 1]);
91 CYRecvAll(socket
, temp
, size
);
97 if (json
!= NULL
&& fout
!= NULL
) {
98 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
100 else for (size_t i(0); i
!= size
; ++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;
123 void Run(int socket
, std::string
&code
, FILE *fout
, bool expand
= false) {
124 Run(socket
, code
.c_str(), code
.size(), fout
, expand
);
127 static void Console(int socket
) {
134 rl_bind_key('\t', rl_insert
);
136 struct sigaction action
;
137 sigemptyset(&action
.sa_mask
);
138 action
.sa_handler
= &sigint
;
140 sigaction(SIGINT
, &action
, NULL
);
144 std::vector
<std::string
> lines
;
147 const char *prompt("cy# ");
149 if (setjmp(ctrlc_
) != 0) {
156 char *line(readline(prompt
));
162 if (line
[0] == '?') {
163 std::string
data(line
+ 1);
164 if (data
== "bypass") {
166 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
168 } else if (data
== "debug") {
170 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
172 } else if (data
== "expand") {
174 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
182 lines
.push_back(line
);
192 cy::parser
parser(driver
);
194 driver
.data_
= command
.c_str();
195 driver
.size_
= command
.size();
197 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
198 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
199 cy::position
begin(error
->location_
.begin
);
200 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size()) {
201 cy::position
end(error
->location_
.end
);
202 if (begin
.line
!= lines
.size()) {
204 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
207 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
209 if (begin
.line
!= end
.line
)
211 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
213 std::cerr
<< std::endl
;
215 std::cerr
<< error
->message_
<< std::endl
;
216 add_history(command
.c_str());
221 driver
.errors_
.clear();
228 if (driver
.source_
== NULL
)
234 std::ostringstream str
;
235 driver
.source_
->Show(str
);
240 add_history(command
.c_str());
243 std::cout
<< code
<< std::endl
;
245 Run(socket
, code
, fout
, expand
);
252 static void *Map(const char *path
, size_t *psize
) {
254 _syscall(fd
= open(path
, O_RDONLY
));
257 _syscall(fstat(fd
, &stat
));
258 size_t size(stat
.st_size
);
263 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
269 int main(int argc
, char *argv
[]) {
270 pid_t
pid(_not(pid_t
));
272 for (;;) switch (getopt(argc
, argv
, "p:")) {
276 fprintf(stderr
, "usage: cycript [-p <pid>] [<script> [<arg>...]]\n");
280 size_t size(strlen(optarg
));
282 pid
= strtoul(optarg
, &end
, 0);
283 if (optarg
+ size
!= end
) {
284 fprintf(stderr
, "invalid pid for -p\n");
292 if (optind
< argc
- 1 && pid
!= _not(pid_t
)) {
293 fprintf(stderr
, "-p cannot set argv\n");
300 // XXX: const_cast?! wtf gcc :(
301 CYSetArgs(argc
- optind
- 1, const_cast<const char **>(argv
+ optind
+ 1));
302 script
= argv
[optind
];
303 if (strcmp(script
, "-") == 0)
309 if (pid
== _not(pid_t
))
312 socket
= _syscall(::socket(PF_UNIX
, SOCK_STREAM
, 0));
314 struct sockaddr_un address
;
315 memset(&address
, 0, sizeof(address
));
316 address
.sun_family
= AF_UNIX
;
317 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", pid
);
319 _syscall(connect(socket
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
325 CYDriver
driver(script
);
326 cy::parser
parser(driver
);
329 char *start(reinterpret_cast<char *>(Map(script
, &size
)));
330 char *end(start
+ size
);
332 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
335 if (void *line
= memchr(start
, '\n', end
- start
))
336 start
= reinterpret_cast<char *>(line
);
341 driver
.data_
= start
;
342 driver
.size_
= end
- start
;
344 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
345 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
346 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
347 } else if (driver
.source_
!= NULL
)
349 Run(socket
, start
, end
- start
, stdout
);
351 std::ostringstream str
;
352 driver
.source_
->Show(str
);
353 std::string
code(str
.str());
354 Run(socket
, code
, stdout
);