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"
34 #ifdef HAVE_READLINE_H
37 #include <readline/readline.h>
43 #include <readline/history.h>
49 #include <sys/socket.h>
50 #include <sys/types.h>
55 #include <sys/types.h>
56 #include <sys/socket.h>
57 #include <netinet/in.h>
61 #include <apr_getopt.h>
62 #include <apr_pools.h>
63 #include <apr_strings.h>
67 #include "Display.hpp"
68 #include "Replace.hpp"
70 #include "Cycript.tab.hh"
73 static volatile enum {
81 static jmp_buf ctrlc_
;
83 static void sigint(int) {
104 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
107 parser
.set_debug_level(1);
110 driver
.strict_
= true;
113 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
) {
114 out
.pretty_
= pretty_
;
115 CYContext
context(options
);
116 driver
.program_
->Replace(context
);
119 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
126 json
= CYExecute(CYGetJSContext(), pool
, code
);
138 _assert(CYSendAll(client
, &size
, sizeof(size
)));
139 _assert(CYSendAll(client
, code
.data
, code
.size
));
141 _assert(CYRecvAll(client
, &size
, sizeof(size
)));
142 if (size
== _not(uint32_t))
145 char *temp(new(pool
) char[size
+ 1]);
146 _assert(CYRecvAll(client
, temp
, size
));
153 return CYUTF8String(json
, size
);
156 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
157 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
160 static std::ostream
*out_
;
162 static void Write(bool syntax
, const char *data
, size_t size
, std::ostream
&out
) {
164 CYLexerHighlight(data
, size
, out
);
166 out
.write(data
, size
);
169 static void Output(bool syntax
, CYUTF8String json
, std::ostream
*out
, bool expand
= false) {
170 const char *data(json
.data
);
171 size_t size(json
.size
);
173 if (data
== NULL
|| out
== NULL
)
177 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
178 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
180 Write(syntax
, data
, size
, *out
);
181 else for (size_t i(0); i
!= size
; ++i
)
184 else switch(data
[++i
]) {
185 case '\0': goto done
;
186 case '\\': *out
<< '\\'; break;
187 case '\'': *out
<< '\''; break;
188 case '"': *out
<< '"'; break;
189 case 'b': *out
<< '\b'; break;
190 case 'f': *out
<< '\f'; break;
191 case 'n': *out
<< '\n'; break;
192 case 'r': *out
<< '\r'; break;
193 case 't': *out
<< '\t'; break;
194 case 'v': *out
<< '\v'; break;
195 default: *out
<< '\\'; --i
; break;
202 static void Run(int client
, bool syntax
, const char *data
, size_t size
, std::ostream
*out
= NULL
, bool expand
= false) {
204 Output(syntax
, Run(pool
, client
, CYUTF8String(data
, size
)), out
, expand
);
207 static void Run(int client
, bool syntax
, std::string
&code
, std::ostream
*out
= NULL
, bool expand
= false) {
208 Run(client
, syntax
, code
.c_str(), code
.size(), out
, expand
);
211 int (*append_history$
)(int, const char *);
213 static std::string command_
;
215 static CYExpression
*ParseExpression(CYUTF8String code
) {
216 std::stringstream stream
;
217 stream
<< '(' << code
<< ')';
218 CYDriver
driver(stream
);
220 cy::parser
parser(driver
);
221 Setup(driver
, parser
);
223 if (parser
.parse() != 0 || !driver
.errors_
.empty())
227 CYContext
context(options
);
229 // XXX: this could be replaced with a CYStatement::Primitive()
230 if (CYExpress
*express
= dynamic_cast<CYExpress
*>(driver
.program_
->statements_
))
231 return express
->expression_
->Primitive(context
);
238 static char **Complete(const char *word
, int start
, int end
) {
239 rl_attempted_completion_over
= TRUE
;
243 std::string
line(rl_line_buffer
, start
);
244 std::istringstream
stream(command_
+ line
);
245 CYDriver
driver(stream
);
249 cy::parser
parser(driver
);
250 Setup(driver
, parser
);
252 if (parser
.parse() != 0 || !driver
.errors_
.empty())
255 if (driver
.mode_
== CYDriver::AutoNone
)
258 CYExpression
*expression
;
261 CYContext
context(options
);
263 std::ostringstream prefix
;
265 switch (driver
.mode_
) {
266 case CYDriver::AutoPrimary
:
267 expression
= $
CYThis();
270 case CYDriver::AutoDirect
:
271 expression
= driver
.context_
;
274 case CYDriver::AutoIndirect
:
275 expression
= $
CYIndirect(driver
.context_
);
278 case CYDriver::AutoMessage
: {
279 CYDriver::Context
&thing(driver
.contexts_
.back());
280 expression
= $
M($
C1($
V("object_getClass"), thing
.context_
), $
S("messages"));
281 for (CYDriver::Context::Words::const_iterator
part(thing
.words_
.begin()); part
!= thing
.words_
.end(); ++part
)
282 prefix
<< (*part
)->word_
<< ':';
289 std::string
begin(prefix
.str());
291 driver
.program_
= $
CYProgram($
CYExpress($
C3(ParseExpression(
292 " function(object, prefix, word) {\n"
294 " var before = prefix.length;\n"
296 " var entire = prefix.length;\n"
297 " for (name in object)\n"
298 " if (name.substring(0, entire) == prefix)\n"
299 " names.push(name.substr(before));\n"
302 ), expression
, $
S(begin
.c_str()), $
S(word
))));
304 driver
.program_
->Replace(context
);
306 std::ostringstream str
;
307 CYOutput
out(str
, options
);
308 out
<< *driver
.program_
;
310 std::string
code(str
.str());
311 CYUTF8String
json(Run(pool
, client_
, code
));
312 // XXX: if this fails we should not try to parse it
314 CYExpression
*result(ParseExpression(json
));
318 CYArray
*array(dynamic_cast<CYArray
*>(result
));
322 Output(false, json
, out_
);
323 rl_forced_update_display();
327 // XXX: use an std::set?
328 typedef std::vector
<std::string
> Completions
;
329 Completions completions
;
334 CYForEach (element
, array
->elements_
) {
335 CYString
*string(dynamic_cast<CYString
*>(element
->value_
));
336 _assert(string
!= NULL
);
338 std::string completion
;
339 if (string
->size_
!= 0)
340 completion
.assign(string
->value_
, string
->size_
);
341 else if (driver
.mode_
== CYDriver::AutoMessage
)
346 completions
.push_back(completion
);
352 size_t limit(completion
.size()), size(common
.size());
354 common
= common
.substr(0, limit
);
357 for (limit
= 0; limit
!= size
; ++limit
)
358 if (common
[limit
] != completion
[limit
])
361 common
= common
.substr(0, limit
);
365 size_t count(completions
.size());
369 size_t colon(common
.find(':'));
370 if (colon
!= std::string::npos
)
371 common
= common
.substr(0, colon
+ 1);
372 if (completions
.size() == 1)
375 char **results(reinterpret_cast<char **>(malloc(sizeof(char *) * (count
+ 2))));
377 results
[0] = strdup(common
.c_str());
379 for (Completions::const_iterator
i(completions
.begin()); i
!= completions
.end(); ++i
)
380 results
[++index
] = strdup(i
->c_str());
381 results
[count
+ 1] = NULL
;
386 // need char *, not const char *
387 static char name_
[] = "cycript";
388 static char break_
[] = " \t\n\"\\'`@$><=;|&{(" ")}" ".:[]";
392 std::string histfile_
;
396 History(std::string histfile
) :
400 read_history(histfile_
.c_str());
404 if (append_history$
!= NULL
) {
405 _syscall(close(_syscall(open(histfile_
.c_str(), O_CREAT
| O_WRONLY
, 0600))));
406 _assert((*append_history$
)(histlines_
, histfile_
.c_str()) == 0);
408 _assert(write_history(histfile_
.c_str()) == 0);
412 void operator +=(const std::string
&command
) {
413 add_history(command_
.c_str());
418 static void Console(CYOptions
&options
) {
422 if (const char *username
= getenv("LOGNAME"))
423 passwd
= getpwnam(username
);
425 passwd
= getpwuid(getuid());
427 std::string
basedir(passwd
->pw_dir
);
428 basedir
+= "/.cycript";
429 mkdir(basedir
.c_str(), 0700);
432 rl_readline_name
= name_
;
434 History
history(basedir
+ "/history");
443 // rl_completer_word_break_characters is broken in libedit
444 rl_basic_word_break_characters
= break_
;
446 rl_completer_word_break_characters
= break_
;
447 rl_attempted_completion_function
= &Complete
;
448 rl_bind_key('\t', rl_complete
);
450 struct sigaction action
;
451 sigemptyset(&action
.sa_mask
);
452 action
.sa_handler
= &sigint
;
454 sigaction(SIGINT
, &action
, NULL
);
458 std::vector
<std::string
> lines
;
461 const char *prompt("cy# ");
463 if (setjmp(ctrlc_
) != 0) {
471 #if RL_READLINE_VERSION >= 0x0600
473 rl_prep_term_function
= CYDisplayStart
;
474 rl_redisplay_function
= CYDisplayUpdate
;
475 rl_deprep_term_function
= CYDisplayFinish
;
477 rl_prep_term_function
= rl_prep_terminal
;
478 rl_redisplay_function
= rl_redisplay
;
479 rl_deprep_term_function
= rl_deprep_terminal
;
484 char *line(readline(prompt
));
490 } else if (line
[0] == '\0')
495 if (line
[0] == '?') {
496 std::string
data(line
+ 1);
497 if (data
== "bypass") {
499 *out_
<< "bypass == " << (bypass
? "true" : "false") << std::endl
;
500 } else if (data
== "debug") {
502 *out_
<< "debug == " << (debug
? "true" : "false") << std::endl
;
503 } else if (data
== "expand") {
505 *out_
<< "expand == " << (expand
? "true" : "false") << std::endl
;
506 } else if (data
== "syntax") {
508 *out_
<< "syntax == " << (syntax
? "true" : "false") << std::endl
;
518 char *begin(line
), *end(line
+ strlen(line
));
519 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
521 lines
.push_back(begin
);
525 lines
.push_back(begin
);
536 std::istringstream
stream(command_
);
537 CYDriver
driver(stream
);
539 cy::parser
parser(driver
);
540 Setup(driver
, parser
);
542 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
543 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
544 cy::position
begin(error
->location_
.begin
);
545 if (begin
.line
!= lines
.size() || begin
.column
< lines
.back().size() || error
->warning_
) {
546 cy::position
end(error
->location_
.end
);
548 if (begin
.line
!= lines
.size()) {
550 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
554 for (size_t i(0); i
!= begin
.column
; ++i
)
556 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
558 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
560 std::cerr
<< std::endl
;
563 std::cerr
<< error
->message_
<< std::endl
;
570 driver
.errors_
.clear();
577 if (driver
.program_
== NULL
)
580 std::ostringstream str
;
581 CYOutput
out(str
, options
);
582 Setup(out
, driver
, options
);
583 out
<< *driver
.program_
;
590 Write(syntax
, code
.c_str(), code
.size(), std::cout
);
591 std::cout
<< std::endl
;
594 Run(client_
, syntax
, code
, out_
, expand
);
598 void InjectLibrary(pid_t pid
);
600 int Main(int argc
, char const * const argv
[], char const * const envp
[]) {
601 _aprcall(apr_initialize());
604 apr_pool_create(&pool
, NULL
);
606 bool tty(isatty(STDIN_FILENO
));
610 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
613 pid_t
pid(_not(pid_t
));
616 const char *host(NULL
);
617 const char *port(NULL
);
620 _aprcall(apr_getopt_init(&state
, pool
, argc
, argv
));
626 apr_status_t
status(apr_getopt(state
,
641 "usage: cycript [-c]"
646 " [<script> [<arg>...]]\n"
660 else if (strcmp(arg
, "rename") == 0)
661 options
.verbose_
= true;
663 else if (strcmp(arg
, "bison") == 0)
667 fprintf(stderr
, "invalid name for -g\n");
674 else if (strcmp(arg
, "minify") == 0)
677 fprintf(stderr
, "invalid name for -n\n");
684 size_t size(strlen(arg
));
687 pid
= strtoul(arg
, &end
, 0);
688 if (arg
+ size
!= end
) {
689 // XXX: arg needs to be escaped in some horrendous way of doom
690 const char *command(apr_pstrcat(pool
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^", arg
, " /{s/^[^ ]* //;q;};};d'", NULL
));
692 if (FILE *pids
= popen(command
, "r")) {
697 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
702 if (size
== sizeof(value
)) {
712 if (value
[size
- 1] == '\n') {
718 size
= strlen(value
);
719 pid
= strtoul(value
, &end
, 0);
720 if (value
+ size
!= end
) fail
:
722 _syscall(pclose(pids
));
725 if (pid
== _not(pid_t
)) {
726 fprintf(stderr
, "invalid pid for -p\n");
734 //size_t size(strlen(arg));
736 char *colon(strrchr(arg
, ':'));
738 fprintf(stderr
, "missing colon in hostspec\n");
743 port = strtoul(colon + 1, &end, 10);
744 if (end != arg + size) {
745 fprintf(stderr, "invalid port in hostspec\n");
764 if (pid
!= _not(pid_t
) && ind
< argc
- 1) {
765 fprintf(stderr
, "-p cannot set argv\n");
769 if (pid
!= _not(pid_t
) && compile
) {
770 fprintf(stderr
, "-p conflicts with -c\n");
779 // XXX: const_cast?! wtf gcc :(
780 CYSetArgs(argc
- ind
- 1, const_cast<const char **>(argv
+ ind
+ 1));
783 if (strcmp(script
, "-") == 0)
788 if (pid
!= _not(pid_t
) && script
== NULL
&& !tty
) {
789 fprintf(stderr
, "non-terminal attaching to remote console\n");
795 if (pid
== _not(pid_t
))
798 int server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0))); try {
799 struct sockaddr_un address
;
800 memset(&address
, 0, sizeof(address
));
801 address
.sun_family
= AF_UNIX
;
803 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
805 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
806 _syscall(chmod(address
.sun_path
, 0777));
809 _syscall(listen(server
, 1));
811 client_
= _syscall(accept(server
, NULL
, NULL
));
814 unlink(address
.sun_path
);
818 _syscall(close(server
));
826 if (client_
== -1 && host
!= NULL
&& port
!= NULL
) {
827 struct addrinfo hints
;
828 memset(&hints
, 0, sizeof(hints
));
829 hints
.ai_family
= AF_UNSPEC
;
830 hints
.ai_socktype
= SOCK_STREAM
;
831 hints
.ai_protocol
= 0;
834 struct addrinfo
*infos
;
835 _syscall(getaddrinfo(host
, port
, &hints
, &infos
));
837 _assert(infos
!= NULL
); try {
838 for (struct addrinfo
*info(infos
); info
!= NULL
; info
= info
->ai_next
) {
839 int client(_syscall(socket(info
->ai_family
, info
->ai_socktype
, info
->ai_protocol
))); try {
840 _syscall(connect(client
, info
->ai_addr
, info
->ai_addrlen
));
844 _syscall(close(client
));
854 if (script
== NULL
&& tty
)
859 std::istream
*stream
;
860 if (script
== NULL
) {
864 stream
= new std::fstream(script
, std::ios::in
| std::ios::binary
);
865 _assert(!stream
->fail());
868 CYDriver
driver(*stream
, script
);
869 cy::parser
parser(driver
);
870 Setup(driver
, parser
);
872 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
873 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
874 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
875 } else if (driver
.program_
!= NULL
) {
876 std::ostringstream str
;
877 CYOutput
out(str
, options
);
878 Setup(out
, driver
, options
);
879 out
<< *driver
.program_
;
880 std::string
code(str
.str());
884 Run(client_
, false, code
, &std::cout
);
888 apr_pool_destroy(pool
);
893 int main(int argc
, char const * const argv
[], char const * const envp
[]) {
894 apr_status_t
status(apr_app_initialize(&argc
, &argv
, &envp
));
896 if (status
!= APR_SUCCESS
) {
897 fprintf(stderr
, "apr_app_initialize() != APR_SUCCESS\n");
900 return Main(argc
, argv
, envp
);
901 } catch (const CYException
&error
) {
903 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));