1 /* Cycript - Inlining/Optimizing JavaScript Compiler
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"
43 #include "JavaScript.hpp"
51 #ifdef HAVE_READLINE_H
54 #include <readline/readline.h>
60 #include <readline/history.h>
68 #include <sys/types.h>
72 #include "Cycript.tab.hh"
74 #include <sys/types.h>
75 #include <sys/socket.h>
76 #include <netinet/in.h>
80 #include <apr_getopt.h>
84 #include "Replace.hpp"
86 static volatile enum {
94 static jmp_buf ctrlc_
;
96 static void sigint(int) {
117 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
120 parser
.set_debug_level(1);
123 driver
.strict_
= true;
126 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
) {
127 out
.pretty_
= pretty_
;
128 CYContext
context(driver
.pool_
, options
);
129 driver
.program_
->Replace(context
);
132 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
139 json
= CYExecute(pool
, code
.data
);
148 CYSendAll(client
, &size
, sizeof(size
));
149 CYSendAll(client
, code
.data
, size
);
151 CYRecvAll(client
, &size
, sizeof(size
));
152 if (size
== _not(size_t))
155 char *temp(new(pool
) char[size
+ 1]);
156 CYRecvAll(client
, temp
, size
);
163 return CYUTF8String(json
, size
);
166 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
167 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
170 void Run(int client
, const char *data
, size_t size
, FILE *fout
= NULL
, bool expand
= false) {
172 CYUTF8String
json(Run(pool
, client
, CYUTF8String(data
, size
)));
177 if (data
!= NULL
&& fout
!= NULL
) {
178 if (!expand
|| data
[0] != '"' && data
[0] != '\'')
180 else for (size_t i(0); i
!= size
; ++i
)
182 fputc(data
[i
], fout
);
183 else switch(data
[++i
]) {
184 case '\0': goto done
;
185 case '\\': fputc('\\', fout
); break;
186 case '\'': fputc('\'', fout
); break;
187 case '"': fputc('"', fout
); break;
188 case 'b': fputc('\b', fout
); break;
189 case 'f': fputc('\f', fout
); break;
190 case 'n': fputc('\n', fout
); break;
191 case 'r': fputc('\r', fout
); break;
192 case 't': fputc('\t', fout
); break;
193 case 'v': fputc('\v', fout
); break;
194 default: fputc('\\', fout
); --i
; break;
203 static void Run(int client
, std::string
&code
, FILE *fout
= NULL
, bool expand
= false) {
204 Run(client
, code
.c_str(), code
.size(), fout
, expand
);
207 int (*append_history$
)(int, const char *);
209 static std::string command_
;
211 static CYExpression
*ParseExpression(CYPool
&pool
, CYUTF8String code
) {
212 std::ostringstream str
;
213 str
<< '(' << code
<< ')';
214 std::string
string(str
.str());
216 CYDriver
driver(pool
);
217 driver
.data_
= string
.c_str();
218 driver
.size_
= string
.size();
220 cy::parser
parser(driver
);
221 Setup(driver
, parser
);
223 if (parser
.parse() != 0 || !driver
.errors_
.empty())
226 CYExpress
*express(dynamic_cast<CYExpress
*>(driver
.program_
->statements_
));
227 _assert(express
!= NULL
);
228 return express
->expression_
;
233 static char **Complete(const char *word
, int start
, int end
) {
234 rl_attempted_completion_over
= TRUE
;
238 CYDriver
driver(pool
);
239 cy::parser
parser(driver
);
240 Setup(driver
, parser
);
242 std::string
line(rl_line_buffer
, start
);
243 std::string
command(command_
+ line
);
245 driver
.data_
= command
.c_str();
246 driver
.size_
= command
.size();
250 if (parser
.parse() != 0 || !driver
.errors_
.empty())
253 if (driver
.mode_
== CYDriver::AutoNone
)
256 CYExpression
*expression
;
259 CYContext
context(driver
.pool_
, options
);
261 std::ostringstream prefix
;
263 switch (driver
.mode_
) {
264 case CYDriver::AutoPrimary
:
265 expression
= $
CYThis();
268 case CYDriver::AutoDirect
:
269 expression
= driver
.context_
;
272 case CYDriver::AutoIndirect
:
273 expression
= $
CYIndirect(driver
.context_
);
276 case CYDriver::AutoMessage
: {
277 CYDriver::Context
&thing(driver
.contexts_
.back());
278 expression
= $
M($
M($
CYIndirect(thing
.context_
), $
S("isa")), $
S("messages"));
279 for (CYDriver::Context::Words::const_iterator
part(thing
.words_
.begin()); part
!= thing
.words_
.end(); ++part
)
280 prefix
<< (*part
)->word_
<< ':';
287 std::string
begin(prefix
.str() + word
);
289 driver
.program_
= $
CYProgram($
CYExpress($
C2(ParseExpression(pool
,
290 " function(object, prefix) {\n"
292 " var pattern = '^' + prefix;\n"
293 " for (name in object)\n"
294 " if (name.match(pattern) != null)\n"
295 " names.push(name);\n"
298 ), expression
, $
S(begin
.c_str()))));
300 driver
.program_
->Replace(context
);
302 std::ostringstream str
;
303 CYOutput
out(str
, options
);
304 out
<< *driver
.program_
;
306 std::string
code(str
.str());
307 CYUTF8String
json(Run(pool
, client_
, code
));
309 CYExpression
*result(ParseExpression(pool
, json
));
310 CYArray
*array(dynamic_cast<CYArray
*>(result
));
311 _assert(array
!= NULL
);
313 // XXX: use an std::set?
314 typedef std::vector
<std::string
> Completions
;
315 Completions completions
;
320 for (CYElement
*element(array
->elements_
); element
!= NULL
; element
= element
->next_
) {
321 CYString
*string(dynamic_cast<CYString
*>(element
->value_
));
322 _assert(string
!= NULL
);
324 std::string
completion(string
->value_
, string
->size_
);
325 completions
.push_back(completion
);
331 size_t limit(completion
.size()), size(common
.size());
333 common
= common
.substr(0, limit
);
336 for (limit
= 0; limit
!= size
; ++limit
)
337 if (common
[limit
] != completion
[limit
])
340 common
= common
.substr(0, limit
);
344 size_t count(completions
.size());
348 if (!common
.empty()) {
349 size_t size(prefix
.str().size());
350 _assert(common
.size() >= size
);
351 common
= common
.substr(size
);
354 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count
+ 2))));
356 results
[0] = strdup(common
.c_str());
358 for (Completions::const_iterator
i(completions
.begin()); i
!= completions
.end(); ++i
)
359 results
[++index
] = strdup(i
->c_str());
360 results
[count
+ 1] = NULL
;
365 // need char *, not const char *
366 static char name_
[] = "cycript";
367 static char break_
[] = " \t\n\"\\'`@$><=;|&{(" ".:";
369 static void Console(apr_pool_t
*pool
, CYOptions
&options
) {
371 if (const char *username
= getenv("LOGNAME"))
372 passwd
= getpwnam(username
);
374 passwd
= getpwuid(getuid());
376 const char *basedir(apr_psprintf(pool
, "%s/.cycript", passwd
->pw_dir
));
377 const char *histfile(apr_psprintf(pool
, "%s/history", basedir
));
381 rl_readline_name
= name_
;
383 mkdir(basedir
, 0700);
384 read_history(histfile
);
392 // rl_completer_word_break_characters is broken in libedit
393 rl_basic_word_break_characters
= break_
;
394 rl_attempted_completion_function
= &Complete
;
395 rl_bind_key('\t', rl_complete
);
397 struct sigaction action
;
398 sigemptyset(&action
.sa_mask
);
399 action
.sa_handler
= &sigint
;
401 sigaction(SIGINT
, &action
, NULL
);
405 std::vector
<std::string
> lines
;
408 const char *prompt("cy# ");
410 if (setjmp(ctrlc_
) != 0) {
419 char *line(readline(prompt
));
428 if (line
[0] == '?') {
429 std::string
data(line
+ 1);
430 if (data
== "bypass") {
432 fprintf(fout
, "bypass == %s\n", bypass
? "true" : "false");
434 } else if (data
== "debug") {
436 fprintf(fout
, "debug == %s\n", debug
? "true" : "false");
438 } else if (data
== "expand") {
440 fprintf(fout
, "expand == %s\n", expand
? "true" : "false");
451 char *begin(line
), *end(line
+ strlen(line
));
452 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
454 lines
.push_back(begin
);
458 lines
.push_back(begin
);
468 cy::parser
parser(driver
);
469 Setup(driver
, parser
);
471 driver
.data_
= command_
.c_str();
472 driver
.size_
= command_
.size();
474 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
475 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
476 cy::position
begin(error
->location_
.begin
);
477 if (begin
.line
!= lines
.size() || begin
.column
- 1 != lines
.back().size() || error
->warning_
) {
478 cy::position
end(error
->location_
.end
);
480 if (begin
.line
!= lines
.size()) {
482 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
486 for (size_t i(0); i
!= begin
.column
- 1; ++i
)
488 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
490 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
492 std::cerr
<< std::endl
;
495 std::cerr
<< error
->message_
<< std::endl
;
497 add_history(command_
.c_str());
503 driver
.errors_
.clear();
510 if (driver
.program_
== NULL
)
516 std::ostringstream str
;
517 CYOutput
out(str
, options
);
518 Setup(out
, driver
, options
);
519 out
<< *driver
.program_
;
524 add_history(command_
.c_str());
528 std::cout
<< code
<< std::endl
;
530 Run(client_
, code
, fout
, expand
);
533 if (append_history$
!= NULL
) {
534 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
535 (*append_history$
)(histlines
, histfile
);
537 write_history(histfile
);
544 static void *Map(const char *path
, size_t *psize
) {
546 _syscall(fd
= open(path
, O_RDONLY
));
549 _syscall(fstat(fd
, &stat
));
550 size_t size(stat
.st_size
);
555 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
561 void InjectLibrary(pid_t pid
);
563 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
564 bool tty(isatty(STDIN_FILENO
));
568 append_history$
= reinterpret_cast<int (*)(int, const char *)>(dlsym(RTLD_DEFAULT
, "append_history"));
571 pid_t
pid(_not(pid_t
));
576 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
582 apr_status_t
status(apr_getopt(state
,
596 "usage: cycript [-c]"
600 " [<script> [<arg>...]]\n"
614 else if (strcmp(arg
, "rename") == 0)
615 options
.verbose_
= true;
617 else if (strcmp(arg
, "bison") == 0)
621 fprintf(stderr
, "invalid name for -g\n");
628 else if (strcmp(arg
, "minify") == 0)
631 fprintf(stderr
, "invalid name for -n\n");
638 size_t size(strlen(arg
));
641 pid
= strtoul(arg
, &end
, 0);
642 if (arg
+ size
!= end
) {
643 // XXX: arg needs to be escaped in some horrendous way of doom
644 const char *command(apr_psprintf(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", arg
));
646 if (FILE *pids
= popen(command
, "r")) {
651 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
656 if (size
== sizeof(value
)) {
666 if (value
[size
- 1] == '\n') {
672 size
= strlen(value
);
673 pid
= strtoul(value
, &end
, 0);
674 if (value
+ size
!= end
) fail
:
676 _syscall(pclose(pids
));
679 if (pid
== _not(pid_t
)) {
680 fprintf(stderr
, "invalid pid for -p\n");
697 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
698 fprintf(stderr
, "-p cannot set argv\n");
702 if (pid
!= _not(pid_t
) && compile
) {
703 fprintf(stderr
, "-p conflicts with -c\n");
712 // XXX: const_cast?! wtf gcc :(
713 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
716 if (strcmp(script
, "-") == 0)
721 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
722 fprintf(stderr
, "non-terminal attaching to remote console\n");
728 if (pid
== _not(pid_t
))
731 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
732 struct sockaddr_un address
;
733 memset(&address
, 0, sizeof(address
));
734 address
.sun_family
= AF_UNIX
;
736 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
738 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
739 _syscall(chmod(address
.sun_path
, 0777));
742 _syscall(listen(server
, 1));
744 client_
= _syscall(accept(server
, NULL
, NULL
));
747 unlink(address
.sun_path
);
751 _syscall(close(server
));
759 if (script
== NULL
&& tty
)
760 Console(pool
, options
);
762 CYDriver
driver(pool
, script
?: "<stdin>");
763 cy::parser
parser(driver
);
764 Setup(driver
, parser
);
768 if (script
== NULL
) {
772 driver
.file_
= stdin
;
775 start
= reinterpret_cast<char *>(Map(script
, &size
));
778 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
781 if (void *line
= memchr(start
, '\n', end
- start
))
782 start
= reinterpret_cast<char *>(line
);
787 driver
.data_
= start
;
788 driver
.size_
= end
- start
;
791 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
792 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
793 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
794 } else if (driver
.program_
!= NULL
)
796 std::string
code(start
, end
-start
);
797 Run(client_
, code
, stdout
);
799 std::ostringstream str
;
800 CYOutput
out(str
, options
);
801 Setup(out
, driver
, options
);
802 out
<< *driver
.program_
;
803 std::string
code(str
.str());
807 Run(client_
, code
, stdout
);
814 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
815 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
817 if (status
!= APR_SUCCESS
) {
818 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
821 return Main(argc
, argv
, envp
);
822 } catch (const CYException
&error
) {
824 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));