1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2012 Jay Freeman (saurik)
5 /* GNU Lesser General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify it under
8 * the terms of the GNU Lesser General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 * License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #include "cycript.hpp"
25 #include "JavaScript.hpp"
33 #ifdef HAVE_READLINE_H
36 #include <readline/readline.h>
42 #include <readline/history.h>
50 #include <sys/types.h>
54 #include "Cycript.tab.hh"
56 #include <sys/types.h>
57 #include <sys/socket.h>
58 #include <netinet/in.h>
62 #include <apr_getopt.h>
66 #include "Replace.hpp"
68 static volatile enum {
76 static jmp_buf ctrlc_
;
78 static void sigint(int) {
99 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
102 parser
.set_debug_level(1);
105 driver
.strict_
= true;
108 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
) {
109 out
.pretty_
= pretty_
;
110 CYContext
context(options
);
111 driver
.program_
->Replace(context
);
114 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
121 json
= CYExecute(pool
, code
);
133 CYSendAll(client
, &size
, sizeof(size
));
134 CYSendAll(client
, code
.data
, code
.size
);
136 CYRecvAll(client
, &size
, sizeof(size
));
137 if (size
== _not(size_t))
140 char *temp(new(pool
) char[size
+ 1]);
141 CYRecvAll(client
, temp
, size
);
148 return CYUTF8String(json
, size
);
151 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
152 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
157 static void Output(CYUTF8String json
, FILE *fout
, bool expand
= false) {
158 const char *data(json
.data
);
159 size_t size(json
.size
);
161 if (data
== NULL
|| fout
== NULL
)
165 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
166 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
169 else for (size_t i(0); i
!= size
; ++i
)
171 fputc(data
[i
], fout
);
172 else switch(data
[++i
]) {
173 case '\0': goto done
;
174 case '\\': fputc('\\', fout
); break;
175 case '\'': fputc('\'', fout
); break;
176 case '"': fputc('"', fout
); break;
177 case 'b': fputc('\b', fout
); break;
178 case 'f': fputc('\f', fout
); break;
179 case 'n': fputc('\n', fout
); break;
180 case 'r': fputc('\r', fout
); break;
181 case 't': fputc('\t', fout
); break;
182 case 'v': fputc('\v', fout
); break;
183 default: fputc('\\', fout
); --i
; break;
191 static void Run(int client
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
193 Output(Run(pool
, client
, CYUTF8String(data
, size
)), fout
, expand
);
196 static void Run(int client
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
197 Run(client
, code
.c_str(), code
.size(), fout
, expand
);
200 int (*append_history$
)(int, const char *);
202 static std::string command_
;
204 static CYExpression
*ParseExpression(CYUTF8String code
) {
205 std::stringstream stream
;
206 stream
<< '(' << code
<< ')';
207 CYDriver
driver(stream
);
209 cy::parser
parser(driver
);
210 Setup(driver
, parser
);
212 if (parser
.parse() != 0 || !driver
.errors_
.empty())
216 CYContext
context(options
);
218 // XXX: this could be replaced with a CYStatement::Primitive()
219 if (CYExpress
*express
= dynamic_cast<CYExpress
*>(driver
.program_
->statements_
))
220 return express
->expression_
->Primitive(context
);
227 static char **Complete(const char *word
, int start
, int end
) {
228 rl_attempted_completion_over
= TRUE
;
232 std::string
line(rl_line_buffer
, start
);
233 std::istringstream
stream(command_
+ line
);
234 CYDriver
driver(stream
);
238 cy::parser
parser(driver
);
239 Setup(driver
, parser
);
241 if (parser
.parse() != 0 || !driver
.errors_
.empty())
244 if (driver
.mode_
== CYDriver::AutoNone
)
247 CYExpression
*expression
;
250 CYContext
context(options
);
252 std::ostringstream prefix
;
254 switch (driver
.mode_
) {
255 case CYDriver::AutoPrimary
:
256 expression
= $
CYThis();
259 case CYDriver::AutoDirect
:
260 expression
= driver
.context_
;
263 case CYDriver::AutoIndirect
:
264 expression
= $
CYIndirect(driver
.context_
);
267 case CYDriver::AutoMessage
: {
268 CYDriver::Context
&thing(driver
.contexts_
.back());
269 expression
= $
M($
C1($
V("object_getClass"), thing
.context_
), $
S("messages"));
270 for (CYDriver::Context::Words::const_iterator
part(thing
.words_
.begin()); part
!= thing
.words_
.end(); ++part
)
271 prefix
<< (*part
)->word_
<< ':';
278 std::string
begin(prefix
.str());
280 driver
.program_
= $
CYProgram($
CYExpress($
C3(ParseExpression(
281 " function(object, prefix, word) {\n"
283 " var before = prefix.length;\n"
285 " var entire = prefix.length;\n"
286 " for (name in object)\n"
287 " if (name.substring(0, entire) == prefix)\n"
288 " names.push(name.substr(before));\n"
291 ), expression
, $
S(begin
.c_str()), $
S(word
))));
293 driver
.program_
->Replace(context
);
295 std::ostringstream str
;
296 CYOutput
out(str
, options
);
297 out
<< *driver
.program_
;
299 std::string
code(str
.str());
300 CYUTF8String
json(Run(pool
, client_
, code
));
301 // XXX: if this fails we should not try to parse it
303 CYExpression
*result(ParseExpression(json
));
307 CYArray
*array(dynamic_cast<CYArray
*>(result
));
310 fprintf(fout_
, "\n");
312 rl_forced_update_display();
316 // XXX: use an std::set?
317 typedef std::vector
<std::string
> Completions
;
318 Completions completions
;
323 CYForEach (element
, array
->elements_
) {
324 CYString
*string(dynamic_cast<CYString
*>(element
->value_
));
325 _assert(string
!= NULL
);
327 std::string completion
;
328 if (string
->size_
!= 0)
329 completion
.assign(string
->value_
, string
->size_
);
330 else if (driver
.mode_
== CYDriver::AutoMessage
)
335 completions
.push_back(completion
);
341 size_t limit(completion
.size()), size(common
.size());
343 common
= common
.substr(0, limit
);
346 for (limit
= 0; limit
!= size
; ++limit
)
347 if (common
[limit
] != completion
[limit
])
350 common
= common
.substr(0, limit
);
354 size_t count(completions
.size());
358 size_t colon(common
.find(':'));
359 if (colon
!= std::string::npos
)
360 common
= common
.substr(0, colon
+ 1);
361 if (completions
.size() == 1)
364 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count
+ 2))));
366 results
[0] = strdup(common
.c_str());
368 for (Completions::const_iterator
i(completions
.begin()); i
!= completions
.end(); ++i
)
369 results
[++index
] = strdup(i
->c_str());
370 results
[count
+ 1] = NULL
;
375 // need char *, not const char *
376 static char name_
[] = "cycript";
377 static char break_
[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]";
379 static void Console(CYOptions
&options
) {
383 if (const char *username
= getenv("LOGNAME"))
384 passwd
= getpwnam(username
);
386 passwd
= getpwuid(getuid());
388 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
389 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
393 rl_readline_name
= name_
;
395 mkdir(basedir
, 0700);
396 read_history(histfile
);
404 // rl_completer_word_break_characters is broken in libedit
405 rl_basic_word_break_characters
= break_
;
407 rl_completer_word_break_characters
= break_
;
408 rl_attempted_completion_function
= &Complete
;
409 rl_bind_key('\t', rl_complete
);
411 struct sigaction action
;
412 sigemptyset(&action
.sa_mask
);
413 action
.sa_handler
= &sigint
;
415 sigaction(SIGINT
, &action
, NULL
);
419 std::vector
<std::string
> lines
;
422 const char *prompt("cy# ");
424 if (setjmp(ctrlc_
) != 0) {
433 char *line(readline(prompt
));
442 if (line
[0] == '?') {
443 std::string
data(line
+ 1);
444 if (data
== "bypass") {
446 fprintf(fout_
, "bypass == %s\n", bypass
? "true" : "false");
448 } else if (data
== "debug") {
450 fprintf(fout_
, "debug == %s\n", debug
? "true" : "false");
452 } else if (data
== "expand") {
454 fprintf(fout_
, "expand == %s\n", expand
? "true" : "false");
465 char *begin(line
), *end(line
+ strlen(line
));
466 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
468 lines
.push_back(begin
);
472 lines
.push_back(begin
);
483 std::istringstream
stream(command_
);
484 CYDriver
driver(stream
);
486 cy::parser
parser(driver
);
487 Setup(driver
, parser
);
489 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
490 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
491 cy::position
begin(error
->location_
.begin
);
492 if (begin
.line
!= lines
.size() || begin
.column
< lines
.back().size() || error
->warning_
) {
493 cy::position
end(error
->location_
.end
);
495 if (begin
.line
!= lines
.size()) {
497 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
501 for (size_t i(0); i
!= begin
.column
; ++i
)
503 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
505 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
507 std::cerr
<< std::endl
;
510 std::cerr
<< error
->message_
<< std::endl
;
512 add_history(command_
.c_str());
518 driver
.errors_
.clear();
525 if (driver
.program_
== NULL
)
531 std::ostringstream str
;
532 CYOutput
out(str
, options
);
533 Setup(out
, driver
, options
);
534 out
<< *driver
.program_
;
539 add_history(command_
.c_str());
543 std::cout
<< code
<< std::endl
;
545 Run(client_
, code
, fout_
, expand
);
548 if (append_history$
!= NULL
) {
549 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
550 (*append_history$
)(histlines
, histfile
);
552 write_history(histfile
);
559 static void *Map(const char *path
, size_t *psize
) {
561 _syscall(fd
= open(path
, O_RDONLY
));
564 _syscall(fstat(fd
, &stat
));
565 size_t size(stat
.st_size
);
570 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
576 void InjectLibrary(pid_t pid
);
578 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
579 bool tty(isatty(STDIN_FILENO
));
583 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
586 pid_t
pid(_not(pid_t
));
591 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
597 apr_status_t
status(apr_getopt(state
,
611 "usage: cycript [-c]"
615 " [<script> [<arg>...]]\n"
629 else if (strcmp(arg
, "rename") == 0)
630 options
.verbose_
= true;
632 else if (strcmp(arg
, "bison") == 0)
636 fprintf(stderr
, "invalid name for -g\n");
643 else if (strcmp(arg
, "minify") == 0)
646 fprintf(stderr
, "invalid name for -n\n");
653 size_t size(strlen(arg
));
656 pid
= strtoul(arg
, &end
, 0);
657 if (arg
+ size
!= end
) {
658 // XXX: arg needs to be escaped in some horrendous way of doom
659 const char *command(apr_psprintf(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg
));
661 if (FILE *pids
= popen(command
, "r")) {
666 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
671 if (size
== sizeof(value
)) {
681 if (value
[size
- 1] == '\n') {
687 size
= strlen(value
);
688 pid
= strtoul(value
, &end
, 0);
689 if (value
+ size
!= end
) fail
:
691 _syscall(pclose(pids
));
694 if (pid
== _not(pid_t
)) {
695 fprintf(stderr
, "invalid pid for -p\n");
712 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
713 fprintf(stderr
, "-p cannot set argv\n");
717 if (pid
!= _not(pid_t
) && compile
) {
718 fprintf(stderr
, "-p conflicts with -c\n");
727 // XXX: const_cast?! wtf gcc :(
728 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
731 if (strcmp(script
, "-") == 0)
736 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
737 fprintf(stderr
, "non-terminal attaching to remote console\n");
743 if (pid
== _not(pid_t
))
746 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
747 struct sockaddr_un address
;
748 memset(&address
, 0, sizeof(address
));
749 address
.sun_family
= AF_UNIX
;
751 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
753 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
754 _syscall(chmod(address
.sun_path
, 0777));
757 _syscall(listen(server
, 1));
759 client_
= _syscall(accept(server
, NULL
, NULL
));
762 unlink(address
.sun_path
);
766 _syscall(close(server
));
774 if (script
== NULL
&& tty
)
780 std::istream
*indirect
;
782 if (script
== NULL
) {
785 indirect
= &std::cin
;
788 start
= reinterpret_cast<char *>(Map(script
, &size
));
791 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
794 if (void *line
= memchr(start
, '\n', end
- start
))
795 start
= reinterpret_cast<char *>(line
);
803 CYStream
direct(start
, end
);
804 std::istream
&stream(indirect
== NULL
? direct
: *indirect
);
805 CYDriver
driver(stream
, script
?: "<stdin>");
807 cy::parser
parser(driver
);
808 Setup(driver
, parser
);
810 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
811 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
812 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
813 } else if (driver
.program_
!= NULL
)
815 std::string
code(start
, end
-start
);
816 Run(client_
, code
, stdout
);
818 std::ostringstream str
;
819 CYOutput
out(str
, options
);
820 Setup(out
, driver
, options
);
821 out
<< *driver
.program_
;
822 std::string
code(str
.str());
826 Run(client_
, code
, stdout
);
833 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
834 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
836 if (status
!= APR_SUCCESS
) {
837 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
840 return Main(argc
, argv
, envp
);
841 } catch (const CYException
&error
) {
843 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));