]>
git.saurik.com Git - cycript.git/blob - Console.cpp
fdfc05449ec2c71f41aa71ab64975adfad488557
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 volatile enum {
77 static jmp_buf ctrlc_
;
79 static void sigint(int) {
94 void Run(int socket
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
100 json
= CYExecute(pool
, data
);
106 CYSendAll(socket
, &size
, sizeof(size
));
107 CYSendAll(socket
, data
, size
);
109 CYRecvAll(socket
, &size
, sizeof(size
));
110 if (size
== _not(size_t))
113 char *temp(new(pool
) char[size
+ 1]);
114 CYRecvAll(socket
, temp
, size
);
121 if (json
!= NULL
&& fout
!= NULL
) {
122 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
124 else for (size_t i(0); i
!= size
; ++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;
147 void Run(int socket
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
148 Run(socket
, code
.c_str(), code
.size(), fout
, expand
);
151 static void Console(int socket
) {
158 rl_bind_key('\t', rl_insert
);
160 struct sigaction action
;
161 sigemptyset(&action
.sa_mask
);
162 action
.sa_handler
= &sigint
;
164 sigaction(SIGINT
, &action
, NULL
);
168 std::vector
<std::string
> lines
;
171 const char *prompt("cy# ");
173 if (setjmp(ctrlc_
) != 0) {
182 char *line(readline(prompt
));
189 if (line
[0] == '?') {
190 std::string
data(line
+ 1);
191 if (data
== "bypass") {
193 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
195 } else if (data
== "debug") {
197 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
199 } else if (data
== "expand") {
201 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
210 for (char *state
, *token(apr_strtok(line
, "\n", &state
)); token
!= NULL
; token
= apr_strtok(NULL
, "\n", &state
))
211 lines
.push_back(token
);
220 cy::parser
parser(driver
);
222 driver
.data_
= command
.c_str();
223 driver
.size_
= command
.size();
225 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
226 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
227 cy::position
begin(error
->location_
.begin
);
228 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size()) {
229 cy::position
end(error
->location_
.end
);
231 if (begin
.line
!= lines
.size()) {
233 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
237 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
239 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
241 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
243 std::cerr
<< std::endl
;
246 std::cerr
<< error
->message_
<< std::endl
;
248 add_history(command
.c_str());
253 driver
.errors_
.clear();
260 if (driver
.source_
== NULL
)
266 std::ostringstream str
;
267 driver
.source_
->Show(str
);
272 add_history(command
.c_str());
275 std::cout
<< code
<< std::endl
;
277 Run(socket
, code
, fout
, expand
);
284 static void *Map(const char *path
, size_t *psize
) {
286 _syscall(fd
= open(path
, O_RDONLY
));
289 _syscall(fstat(fd
, &stat
));
290 size_t size(stat
.st_size
);
295 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
301 int main(int argc
, char *argv
[]) {
302 bool tty(isatty(STDIN_FILENO
));
303 pid_t
pid(_not(pid_t
));
305 for (;;) switch (getopt(argc
, argv
, "p:")) {
309 fprintf(stderr
, "usage: cycript [-p <pid>] [<script> [<arg>...]]\n");
313 size_t size(strlen(optarg
));
315 pid
= strtoul(optarg
, &end
, 0);
316 if (optarg
+ size
!= end
) {
317 fprintf(stderr
, "invalid pid for -p\n");
325 if (optind
< argc
- 1 && pid
!= _not(pid_t
)) {
326 fprintf(stderr
, "-p cannot set argv\n");
333 // XXX: const_cast?! wtf gcc :(
334 CYSetArgs(argc
- optind
- 1, const_cast<const char **>(argv
+ optind
+ 1));
335 script
= argv
[optind
];
336 if (strcmp(script
, "-") == 0)
340 if (script
== NULL
&& !tty
&& pid
!= _not(pid_t
)) {
341 fprintf(stderr
, "non-terminal attaching to remove console\n");
347 if (pid
== _not(pid_t
))
350 socket
= _syscall(::socket(PF_UNIX
, SOCK_STREAM
, 0));
352 struct sockaddr_un address
;
353 memset(&address
, 0, sizeof(address
));
354 address
.sun_family
= AF_UNIX
;
355 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", pid
);
357 _syscall(connect(socket
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
360 if (script
== NULL
&& tty
)
363 CYDriver
driver(script
?: "<stdin>");
364 cy::parser
parser(driver
);
368 if (script
== NULL
) {
372 driver
.file_
= stdin
;
375 start
= reinterpret_cast<char *>(Map(script
, &size
));
378 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
381 if (void *line
= memchr(start
, '\n', end
- start
))
382 start
= reinterpret_cast<char *>(line
);
387 driver
.data_
= start
;
388 driver
.size_
= end
- start
;
391 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
392 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
393 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
394 } else if (driver
.source_
!= NULL
)
396 Run(socket
, start
, end
- start
, stdout
);
398 std::ostringstream str
;
399 driver
.source_
->Show(str
);
400 std::string
code(str
.str());