]>
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>
67 #include <apr_getopt.h>
69 static volatile enum {
77 static jmp_buf ctrlc_
;
79 static void sigint(int) {
100 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
103 parser
.set_debug_level(1);
106 driver
.strict_
= true;
109 void Setup(CYOutput
&out
, CYDriver
&driver
) {
110 out
.pretty_
= pretty_
;
112 CYContext
context(driver
.pool_
);
113 driver
.program_
->Replace(context
);
116 void Run(int socket
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
123 json
= CYExecute(pool
, data
);
132 CYSendAll(socket
, &size
, sizeof(size
));
133 CYSendAll(socket
, data
, size
);
135 CYRecvAll(socket
, &size
, sizeof(size
));
136 if (size
== _not(size_t))
139 char *temp(new(pool
) char[size
+ 1]);
140 CYRecvAll(socket
, temp
, size
);
147 if (json
!= NULL
&& fout
!= NULL
) {
148 if (!expand
|| json
[0] != '"' && json
[0] != '\'')
150 else for (size_t i(0); i
!= size
; ++i
)
152 fputc(json
[i
], fout
);
153 else switch(json
[++i
]) {
154 case '\0': goto done
;
155 case '\\': fputc('\\', fout
); break;
156 case '\'': fputc('\'', fout
); break;
157 case '"': fputc('"', fout
); break;
158 case 'b': fputc('\b', fout
); break;
159 case 'f': fputc('\f', fout
); break;
160 case 'n': fputc('\n', fout
); break;
161 case 'r': fputc('\r', fout
); break;
162 case 't': fputc('\t', fout
); break;
163 case 'v': fputc('\v', fout
); break;
164 default: fputc('\\', fout
); --i
; break;
173 void Run(int socket
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
174 Run(socket
, code
.c_str(), code
.size(), fout
, expand
);
177 static void Console(apr_pool_t
*pool
, int socket
) {
179 if (const char *username
= getenv("LOGNAME"))
180 passwd
= getpwnam(username
);
182 passwd
= getpwuid(getuid());
184 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
185 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
188 mkdir(basedir
, 0700);
189 read_history(histfile
);
197 rl_bind_key('\t', rl_insert
);
199 struct sigaction action
;
200 sigemptyset(&action
.sa_mask
);
201 action
.sa_handler
= &sigint
;
203 sigaction(SIGINT
, &action
, NULL
);
207 std::vector
<std::string
> lines
;
210 const char *prompt("cy# ");
212 if (setjmp(ctrlc_
) != 0) {
221 char *line(readline(prompt
));
228 if (line
[0] == '?') {
229 std::string
data(line
+ 1);
230 if (data
== "bypass") {
232 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
234 } else if (data
== "debug") {
236 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
238 } else if (data
== "expand") {
240 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
251 char *begin(line
), *end(line
+ strlen(line
));
252 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
254 lines
.push_back(begin
);
258 lines
.push_back(begin
);
268 cy::parser
parser(driver
);
269 Setup(driver
, parser
);
271 driver
.data_
= command
.c_str();
272 driver
.size_
= command
.size();
274 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
275 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
276 cy::position
begin(error
->location_
.begin
);
277 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
278 cy::position
end(error
->location_
.end
);
280 if (begin
.line
!= lines
.size()) {
282 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
286 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
288 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
290 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
292 std::cerr
<< std::endl
;
295 std::cerr
<< error
->message_
<< std::endl
;
297 add_history(command
.c_str());
303 driver
.errors_
.clear();
310 if (driver
.program_
== NULL
)
316 std::ostringstream str
;
319 out
<< *driver
.program_
;
324 add_history(command
.c_str());
328 std::cout
<< code
<< std::endl
;
330 Run(socket
, code
, fout
, expand
);
333 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
334 append_history(histlines
, histfile
);
340 static void *Map(const char *path
, size_t *psize
) {
342 _syscall(fd
= open(path
, O_RDONLY
));
345 _syscall(fstat(fd
, &stat
));
346 size_t size(stat
.st_size
);
351 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
357 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
358 _aprcall(apr_app_initialize(&argc
, &argv
, &envp
));
360 bool tty(isatty(STDIN_FILENO
));
364 pid_t
pid(_not(pid_t
));
369 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
375 apr_status_t
status(apr_getopt(state
,
389 "usage: cycript [-c]"
393 " [<script> [<arg>...]]\n"
408 else if (strcmp(arg
, "bison") == 0)
412 fprintf(stderr
, "invalid name for -g\n");
419 else if (strcmp(arg
, "minify") == 0)
422 fprintf(stderr
, "invalid name for -n\n");
429 size_t size(strlen(arg
));
431 pid
= strtoul(arg
, &end
, 0);
432 if (arg
+ size
!= end
) {
433 fprintf(stderr
, "invalid pid for -p\n");
449 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
450 fprintf(stderr
, "-p cannot set argv\n");
454 if (pid
!= _not(pid_t
) && compile
) {
455 fprintf(stderr
, "-p conflicts with -c\n");
464 // XXX: const_cast?! wtf gcc :(
465 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
468 if (strcmp(script
, "-") == 0)
473 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
474 fprintf(stderr
, "non-terminal attaching to remote console\n");
482 if (pid
== _not(pid_t
))
485 socket
= _syscall(::socket(PF_UNIX
, SOCK_STREAM
, 0));
487 struct sockaddr_un address
;
488 memset(&address
, 0, sizeof(address
));
489 address
.sun_family
= AF_UNIX
;
490 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", pid
);
492 _syscall(connect(socket
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
498 if (script
== NULL
&& tty
)
499 Console(pool
, socket
);
501 CYDriver
driver(script
?: "<stdin>");
502 cy::parser
parser(driver
);
503 Setup(driver
, parser
);
507 if (script
== NULL
) {
511 driver
.file_
= stdin
;
514 start
= reinterpret_cast<char *>(Map(script
, &size
));
517 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
520 if (void *line
= memchr(start
, '\n', end
- start
))
521 start
= reinterpret_cast<char *>(line
);
526 driver
.data_
= start
;
527 driver
.size_
= end
- start
;
530 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
531 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
532 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
533 } else if (driver
.program_
!= NULL
)
535 Run(socket
, start
, end
- start
, stdout
);
537 std::ostringstream str
;
540 out
<< *driver
.program_
;
541 std::string
code(str
.str());
545 Run(socket
, code
, stdout
);