1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU 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/socket.h>
51 #include <sys/types.h>
56 #include <sys/types.h>
57 #include <sys/socket.h>
58 #include <netinet/in.h>
62 #include <apr_getopt.h>
63 #include <apr_pools.h>
64 #include <apr_strings.h>
68 #include "Display.hpp"
69 #include "Replace.hpp"
71 #include "Cycript.tab.hh"
74 static volatile enum {
82 static jmp_buf ctrlc_
;
84 static void sigint(int) {
105 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
108 parser
.set_debug_level(1);
111 driver
.strict_
= true;
114 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
) {
115 out
.pretty_
= pretty_
;
116 CYContext
context(options
);
117 driver
.program_
->Replace(context
);
120 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
127 json
= CYExecute(pool
, code
);
139 _assert(CYSendAll(client
, &size
, sizeof(size
)));
140 _assert(CYSendAll(client
, code
.data
, code
.size
));
142 _assert(CYRecvAll(client
, &size
, sizeof(size
)));
143 if (size
== _not(uint32_t))
146 char *temp(new(pool
) char[size
+ 1]);
147 _assert(CYRecvAll(client
, temp
, size
));
154 return CYUTF8String(json
, size
);
157 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
158 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
161 static std::ostream
*out_
;
163 static void Write(bool syntax
, const char *data
, size_t size
, std::ostream
&out
) {
165 CYLexerHighlight(data
, size
, out
);
167 out
.write(data
, size
);
170 static void Output(bool syntax
, CYUTF8String json
, std::ostream
*out
, bool expand
= false) {
171 const char *data(json
.data
);
172 size_t size(json
.size
);
174 if (data
== NULL
|| out
== NULL
)
178 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
179 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
181 Write(syntax
, data
, size
, *out
);
182 else for (size_t i(0); i
!= size
; ++i
)
185 else switch(data
[++i
]) {
186 case '\0': goto done
;
187 case '\\': *out
<< '\\'; break;
188 case '\'': *out
<< '\''; break;
189 case '"': *out
<< '"'; break;
190 case 'b': *out
<< '\b'; break;
191 case 'f': *out
<< '\f'; break;
192 case 'n': *out
<< '\n'; break;
193 case 'r': *out
<< '\r'; break;
194 case 't': *out
<< '\t'; break;
195 case 'v': *out
<< '\v'; break;
196 default: *out
<< '\\'; --i
; break;
203 static void Run(int client
, bool syntax
, const char *data
, size_t size
, std::ostream
*out
= NULL
, bool expand
= false) {
205 Output(syntax
, Run(pool
, client
, CYUTF8String(data
, size
)), out
, expand
);
208 static void Run(int client
, bool syntax
, std::string
&code
, std::ostream
*out
= NULL
, bool expand
= false) {
209 Run(client
, syntax
, code
.c_str(), code
.size(), out
, expand
);
212 int (*append_history$
)(int, const char *);
214 static std::string command_
;
216 static CYExpression
*ParseExpression(CYUTF8String code
) {
217 std::stringstream stream
;
218 stream
<< '(' << code
<< ')';
219 CYDriver
driver(stream
);
221 cy::parser
parser(driver
);
222 Setup(driver
, parser
);
224 if (parser
.parse() != 0 || !driver
.errors_
.empty())
228 CYContext
context(options
);
230 // XXX: this could be replaced with a CYStatement::Primitive()
231 if (CYExpress
*express
= dynamic_cast<CYExpress
*>(driver
.program_
->statements_
))
232 return express
->expression_
->Primitive(context
);
239 static char **Complete(const char *word
, int start
, int end
) {
240 rl_attempted_completion_over
= TRUE
;
244 std::string
line(rl_line_buffer
, start
);
245 std::istringstream
stream(command_
+ line
);
246 CYDriver
driver(stream
);
250 cy::parser
parser(driver
);
251 Setup(driver
, parser
);
253 if (parser
.parse() != 0 || !driver
.errors_
.empty())
256 if (driver
.mode_
== CYDriver::AutoNone
)
259 CYExpression
*expression
;
262 CYContext
context(options
);
264 std::ostringstream prefix
;
266 switch (driver
.mode_
) {
267 case CYDriver::AutoPrimary
:
268 expression
= $
CYThis();
271 case CYDriver::AutoDirect
:
272 expression
= driver
.context_
;
275 case CYDriver::AutoIndirect
:
276 expression
= $
CYIndirect(driver
.context_
);
279 case CYDriver::AutoMessage
: {
280 CYDriver::Context
&thing(driver
.contexts_
.back());
281 expression
= $
M($
C1($
V("object_getClass"), thing
.context_
), $
S("messages"));
282 for (CYDriver::Context::Words::const_iterator
part(thing
.words_
.begin()); part
!= thing
.words_
.end(); ++part
)
283 prefix
<< (*part
)->word_
<< ':';
290 std::string
begin(prefix
.str());
292 driver
.program_
= $
CYProgram($
CYExpress($
C3(ParseExpression(
293 " function(object, prefix, word) {\n"
295 " var before = prefix.length;\n"
297 " var entire = prefix.length;\n"
298 " for (name in object)\n"
299 " if (name.substring(0, entire) == prefix)\n"
300 " names.push(name.substr(before));\n"
303 ), expression
, $
S(begin
.c_str()), $
S(word
))));
305 driver
.program_
->Replace(context
);
307 std::ostringstream str
;
308 CYOutput
out(str
, options
);
309 out
<< *driver
.program_
;
311 std::string
code(str
.str());
312 CYUTF8String
json(Run(pool
, client_
, code
));
313 // XXX: if this fails we should not try to parse it
315 CYExpression
*result(ParseExpression(json
));
319 CYArray
*array(dynamic_cast<CYArray
*>(result
));
323 Output(false, json
, out_
);
324 rl_forced_update_display();
328 // XXX: use an std::set?
329 typedef std::vector
<std::string
> Completions
;
330 Completions completions
;
335 CYForEach (element
, array
->elements_
) {
336 CYString
*string(dynamic_cast<CYString
*>(element
->value_
));
337 _assert(string
!= NULL
);
339 std::string completion
;
340 if (string
->size_
!= 0)
341 completion
.assign(string
->value_
, string
->size_
);
342 else if (driver
.mode_
== CYDriver::AutoMessage
)
347 completions
.push_back(completion
);
353 size_t limit(completion
.size()), size(common
.size());
355 common
= common
.substr(0, limit
);
358 for (limit
= 0; limit
!= size
; ++limit
)
359 if (common
[limit
] != completion
[limit
])
362 common
= common
.substr(0, limit
);
366 size_t count(completions
.size());
370 size_t colon(common
.find(':'));
371 if (colon
!= std::string::npos
)
372 common
= common
.substr(0, colon
+ 1);
373 if (completions
.size() == 1)
376 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count
+ 2))));
378 results
[0] = strdup(common
.c_str());
380 for (Completions::const_iterator
i(completions
.begin()); i
!= completions
.end(); ++i
)
381 results
[++index
] = strdup(i
->c_str());
382 results
[count
+ 1] = NULL
;
387 // need char *, not const char *
388 static char name_
[] = "cycript";
389 static char break_
[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]";
391 static void Console(CYOptions
&options
) {
395 if (const char *username
= getenv("LOGNAME"))
396 passwd
= getpwnam(username
);
398 passwd
= getpwuid(getuid());
400 const char *basedir(pool
.strcat(passwd
->pw_dir
, "/.cycript", NULL
));
401 const char *histfile(pool
.strcat(basedir
, "/history", NULL
));
405 rl_readline_name
= name_
;
407 mkdir(basedir
, 0700);
408 read_history(histfile
);
417 // rl_completer_word_break_characters is broken in libedit
418 rl_basic_word_break_characters
= break_
;
420 rl_completer_word_break_characters
= break_
;
421 rl_attempted_completion_function
= &Complete
;
422 rl_bind_key('\t', rl_complete
);
424 struct sigaction action
;
425 sigemptyset(&action
.sa_mask
);
426 action
.sa_handler
= &sigint
;
428 sigaction(SIGINT
, &action
, NULL
);
432 std::vector
<std::string
> lines
;
435 const char *prompt("cy# ");
437 if (setjmp(ctrlc_
) != 0) {
445 #if RL_READLINE_VERSION >= 0x0600
447 rl_prep_term_function
= CYDisplayStart
;
448 rl_redisplay_function
= CYDisplayUpdate
;
449 rl_deprep_term_function
= CYDisplayFinish
;
451 rl_prep_term_function
= rl_prep_terminal
;
452 rl_redisplay_function
= rl_redisplay
;
453 rl_deprep_term_function
= rl_deprep_terminal
;
458 char *line(readline(prompt
));
468 if (line
[0] == '?') {
469 std::string
data(line
+ 1);
470 if (data
== "bypass") {
472 *out_
<< "bypass == " << (bypass
? "true" : "false") << std::endl
;
473 } else if (data
== "debug") {
475 *out_
<< "debug == " << (debug
? "true" : "false") << std::endl
;
476 } else if (data
== "expand") {
478 *out_
<< "expand == " << (expand
? "true" : "false") << std::endl
;
479 } else if (data
== "syntax") {
481 *out_
<< "syntax == " << (syntax
? "true" : "false") << std::endl
;
491 char *begin(line
), *end(line
+ strlen(line
));
492 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
494 lines
.push_back(begin
);
498 lines
.push_back(begin
);
509 std::istringstream
stream(command_
);
510 CYDriver
driver(stream
);
512 cy::parser
parser(driver
);
513 Setup(driver
, parser
);
515 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
516 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
517 cy::position
begin(error
->location_
.begin
);
518 if (begin
.line
!= lines
.size() || begin
.column
< lines
.back().size() || error
->warning_
) {
519 cy::position
end(error
->location_
.end
);
521 if (begin
.line
!= lines
.size()) {
523 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
527 for (size_t i(0); i
!= begin
.column
; ++i
)
529 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
531 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
533 std::cerr
<< std::endl
;
536 std::cerr
<< error
->message_
<< std::endl
;
538 add_history(command_
.c_str());
544 driver
.errors_
.clear();
551 if (driver
.program_
== NULL
)
557 std::ostringstream str
;
558 CYOutput
out(str
, options
);
559 Setup(out
, driver
, options
);
560 out
<< *driver
.program_
;
565 add_history(command_
.c_str());
569 Write(syntax
, code
.c_str(), code
.size(), std::cout
);
570 std::cout
<< std::endl
;
573 Run(client_
, syntax
, code
, out_
, expand
);
576 if (append_history$
!= NULL
) {
577 _syscall(close(_syscall(open(histfile
, O_CREAT
| O_WRONLY
, 0600))));
578 (*append_history$
)(histlines
, histfile
);
580 write_history(histfile
);
586 static void *Map(const char *path
, size_t *psize
) {
588 _syscall(fd
= open(path
, O_RDONLY
));
591 _syscall(fstat(fd
, &stat
));
592 size_t size(stat
.st_size
);
597 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
603 void InjectLibrary(pid_t pid
);
605 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
606 _aprcall(apr_initialize());
609 apr_pool_create(&pool
, NULL
);
611 bool tty(isatty(STDIN_FILENO
));
615 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
618 pid_t
pid(_not(pid_t
));
621 const char *host(NULL
);
622 const char *port(NULL
);
625 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
631 apr_status_t
status(apr_getopt(state
,
646 "usage: cycript [-c]"
651 " [<script> [<arg>...]]\n"
665 else if (strcmp(arg
, "rename") == 0)
666 options
.verbose_
= true;
668 else if (strcmp(arg
, "bison") == 0)
672 fprintf(stderr
, "invalid name for -g\n");
679 else if (strcmp(arg
, "minify") == 0)
682 fprintf(stderr
, "invalid name for -n\n");
689 size_t size(strlen(arg
));
692 pid
= strtoul(arg
, &end
, 0);
693 if (arg
+ size
!= end
) {
694 // XXX: arg needs to be escaped in some horrendous way of doom
695 const char *command(apr_pstrcat(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^", arg
, " /{s/^[^ ]* //;q;};};d'", NULL
));
697 if (FILE *pids
= popen(command
, "r")) {
702 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
707 if (size
== sizeof(value
)) {
717 if (value
[size
- 1] == '\n') {
723 size
= strlen(value
);
724 pid
= strtoul(value
, &end
, 0);
725 if (value
+ size
!= end
) fail
:
727 _syscall(pclose(pids
));
730 if (pid
== _not(pid_t
)) {
731 fprintf(stderr
, "invalid pid for -p\n");
739 //size_t size(strlen(arg));
741 char *colon(strrchr(arg
, ':'));
743 fprintf(stderr
, "missing colon in hostspec\n");
748 port = strtoul(colon + 1, &end, 10);
749 if (end != arg + size) {
750 fprintf(stderr, "invalid port in hostspec\n");
769 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
770 fprintf(stderr
, "-p cannot set argv\n");
774 if (pid
!= _not(pid_t
) && compile
) {
775 fprintf(stderr
, "-p conflicts with -c\n");
784 // XXX: const_cast?! wtf gcc :(
785 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
788 if (strcmp(script
, "-") == 0)
793 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
794 fprintf(stderr
, "non-terminal attaching to remote console\n");
800 if (pid
== _not(pid_t
))
803 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
804 struct sockaddr_un address
;
805 memset(&address
, 0, sizeof(address
));
806 address
.sun_family
= AF_UNIX
;
808 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
810 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
811 _syscall(chmod(address
.sun_path
, 0777));
814 _syscall(listen(server
, 1));
816 client_
= _syscall(accept(server
, NULL
, NULL
));
819 unlink(address
.sun_path
);
823 _syscall(close(server
));
831 if (client_
== -1 && host
!= NULL
&& port
!= NULL
) {
832 struct addrinfo hints
;
833 memset(&hints
, 0, sizeof(hints
));
834 hints
.ai_family
= AF_UNSPEC
;
835 hints
.ai_socktype
= SOCK_STREAM
;
836 hints
.ai_protocol
= 0;
839 struct addrinfo
*infos
;
840 _syscall(getaddrinfo(host
, port
, &hints
, &infos
));
842 _assert(infos
!= NULL
); try {
843 for (struct addrinfo
*info(infos
); info
!= NULL
; info
= info
->ai_next
) {
844 int client(_syscall(socket(info
->ai_family
, info
->ai_socktype
, info
->ai_protocol
))); try {
845 _syscall(connect(client
, info
->ai_addr
, info
->ai_addrlen
));
849 _syscall(close(client
));
859 if (script
== NULL
&& tty
)
865 std::istream
*indirect
;
867 if (script
== NULL
) {
870 indirect
= &std::cin
;
873 start
= reinterpret_cast<char *>(Map(script
, &size
));
876 if (size
>= 2 && start
[0] == '#' && start
[1] == '!') {
879 if (void *line
= memchr(start
, '\n', end
- start
))
880 start
= reinterpret_cast<char *>(line
);
888 CYStream
direct(start
, end
);
889 std::istream
&stream(indirect
== NULL
? direct
: *indirect
);
890 CYDriver
driver(stream
, script
?: "<stdin>");
892 cy::parser
parser(driver
);
893 Setup(driver
, parser
);
895 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
896 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
897 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
898 } else if (driver
.program_
!= NULL
)
900 // XXX: this code means that you can't pipe to another process
901 std::string
code(start
, end
-start
);
902 Run(client_
, false, code
, &std::cout
);
904 std::ostringstream str
;
905 CYOutput
out(str
, options
);
906 Setup(out
, driver
, options
);
907 out
<< *driver
.program_
;
908 std::string
code(str
.str());
912 Run(client_
, false, code
, &std::cout
);
916 apr_pool_destroy(pool
);
921 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
922 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
924 if (status
!= APR_SUCCESS
) {
925 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
928 return Main(argc
, argv
, envp
);
929 } catch (const CYException
&error
) {
931 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));