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>
51 #include <sys/socket.h>
52 #include <sys/types.h>
57 #include <sys/types.h>
58 #include <sys/socket.h>
59 #include <netinet/in.h>
65 #include "Display.hpp"
66 #include "Replace.hpp"
68 #include "Cycript.tab.hh"
71 static volatile enum {
79 static jmp_buf ctrlc_
;
81 static void sigint(int) {
102 void Setup(CYDriver
&driver
, cy::parser
&parser
) {
105 parser
.set_debug_level(1);
108 driver
.strict_
= true;
111 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
, bool lower
) {
112 out
.pretty_
= pretty_
;
113 CYContext
context(options
);
115 driver
.program_
->Replace(context
);
118 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
125 json
= CYExecute(CYGetJSContext(), pool
, code
);
137 _assert(CYSendAll(client
, &size
, sizeof(size
)));
138 _assert(CYSendAll(client
, code
.data
, code
.size
));
140 _assert(CYRecvAll(client
, &size
, sizeof(size
)));
141 if (size
== _not(uint32_t))
144 char *temp(new(pool
) char[size
+ 1]);
145 _assert(CYRecvAll(client
, temp
, size
));
152 return CYUTF8String(json
, size
);
155 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
156 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
159 static std::ostream
*out_
;
161 static void Write(bool syntax
, const char *data
, size_t size
, std::ostream
&out
) {
163 CYLexerHighlight(data
, size
, out
);
165 out
.write(data
, size
);
168 static void Output(bool syntax
, CYUTF8String json
, std::ostream
*out
, bool expand
= false) {
169 const char *data(json
.data
);
170 size_t size(json
.size
);
172 if (data
== NULL
|| out
== NULL
)
176 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
177 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
179 Write(syntax
, data
, size
, *out
);
180 else for (size_t i(0); i
!= size
; ++i
)
183 else switch(data
[++i
]) {
184 case '\0': goto done
;
185 case '\\': *out
<< '\\'; break;
186 case '\'': *out
<< '\''; break;
187 case '"': *out
<< '"'; break;
188 case 'b': *out
<< '\b'; break;
189 case 'f': *out
<< '\f'; break;
190 case 'n': *out
<< '\n'; break;
191 case 'r': *out
<< '\r'; break;
192 case 't': *out
<< '\t'; break;
193 case 'v': *out
<< '\v'; break;
194 default: *out
<< '\\'; --i
; break;
201 static void Run(int client
, bool syntax
, const char *data
, size_t size
, std::ostream
*out
= NULL
, bool expand
= false) {
203 Output(syntax
, Run(pool
, client
, CYUTF8String(data
, size
)), out
, expand
);
206 static void Run(int client
, bool syntax
, std::string
&code
, std::ostream
*out
= NULL
, bool expand
= false) {
207 Run(client
, syntax
, code
.c_str(), code
.size(), out
, expand
);
210 int (*append_history$
)(int, const char *);
212 static std::string command_
;
214 static CYExpression
*ParseExpression(CYUTF8String code
) {
215 std::stringstream stream
;
216 stream
<< '(' << code
<< ')';
217 CYDriver
driver(stream
);
219 cy::parser
parser(driver
);
220 Setup(driver
, parser
);
222 if (parser
.parse() != 0 || !driver
.errors_
.empty())
226 CYContext
context(options
);
228 CYStatement
*statement(driver
.program_
->statements_
);
229 _assert(statement
!= NULL
);
230 _assert(statement
->next_
== NULL
);
232 CYExpress
*express(dynamic_cast<CYExpress
*>(driver
.program_
->statements_
));
233 _assert(express
!= NULL
);
235 return express
->expression_
;
240 static char **Complete(const char *word
, int start
, int end
) {
241 rl_attempted_completion_over
= ~0;
245 std::string
line(rl_line_buffer
, start
);
246 std::istringstream
stream(command_
+ line
);
247 CYDriver
driver(stream
);
251 cy::parser
parser(driver
);
252 Setup(driver
, parser
);
254 if (parser
.parse() != 0 || !driver
.errors_
.empty())
257 if (driver
.mode_
== CYDriver::AutoNone
)
260 CYExpression
*expression
;
263 CYContext
context(options
);
265 std::ostringstream prefix
;
267 switch (driver
.mode_
) {
268 case CYDriver::AutoPrimary
:
269 expression
= $
CYThis();
272 case CYDriver::AutoDirect
:
273 expression
= driver
.context_
;
276 case CYDriver::AutoIndirect
:
277 expression
= $
CYIndirect(driver
.context_
);
280 case CYDriver::AutoMessage
: {
281 CYDriver::Context
&thing(driver
.contexts_
.back());
282 expression
= $
M($
C1($
V("object_getClass"), thing
.context_
), $
S("messages"));
283 for (CYDriver::Context::Words::const_iterator
part(thing
.words_
.begin()); part
!= thing
.words_
.end(); ++part
)
284 prefix
<< (*part
)->word_
<< ':';
291 std::string
begin(prefix
.str());
293 driver
.program_
= $
CYProgram($
CYExpress($
C3(ParseExpression(
294 " function(object, prefix, word) {\n"
296 " var before = prefix.length;\n"
298 " var entire = prefix.length;\n"
299 " for (var name in object)\n"
300 " if (name.substring(0, entire) == prefix)\n"
301 " names.push(name.substr(before));\n"
304 ), expression
, $
S(begin
.c_str()), $
S(word
))));
306 driver
.program_
->Replace(context
);
308 std::ostringstream str
;
309 CYOutput
out(str
, options
);
310 out
<< *driver
.program_
;
312 std::string
code(str
.str());
313 CYUTF8String
json(Run(pool
, client_
, code
));
314 // XXX: if this fails we should not try to parse it
316 CYExpression
*result(ParseExpression(json
));
320 CYArray
*array(dynamic_cast<CYArray
*>(result
->Primitive(context
)));
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\"\\'`@$><=;|&{(" ")}" ".:[]";
393 std::string histfile_
;
397 History(std::string histfile
) :
401 read_history(histfile_
.c_str());
405 if (append_history$
!= NULL
) {
406 int fd(_syscall(open(histfile_
.c_str(), O_CREAT
| O_WRONLY
, 0600)));
408 _assert((*append_history$
)(histlines_
, histfile_
.c_str()) == 0);
410 _assert(write_history(histfile_
.c_str()) == 0);
414 void operator +=(const std::string
&command
) {
415 add_history(command_
.c_str());
420 static void Console(CYOptions
&options
) {
424 if (const char *username
= getenv("LOGNAME"))
425 passwd
= getpwnam(username
);
427 passwd
= getpwuid(getuid());
429 std::string
basedir(passwd
->pw_dir
);
430 basedir
+= "/.cycript";
431 mkdir(basedir
.c_str(), 0700);
434 rl_readline_name
= name_
;
436 History
history(basedir
+ "/history");
446 // rl_completer_word_break_characters is broken in libedit
447 rl_basic_word_break_characters
= break_
;
449 rl_completer_word_break_characters
= break_
;
450 rl_attempted_completion_function
= &Complete
;
451 rl_bind_key('\t', rl_complete
);
453 struct sigaction action
;
454 sigemptyset(&action
.sa_mask
);
455 action
.sa_handler
= &sigint
;
457 sigaction(SIGINT
, &action
, NULL
);
461 std::vector
<std::string
> lines
;
464 const char *prompt("cy# ");
466 if (setjmp(ctrlc_
) != 0) {
474 #if RL_READLINE_VERSION >= 0x0600
476 rl_redisplay_function
= CYDisplayUpdate
;
478 rl_redisplay_function
= rl_redisplay
;
482 char *line(readline(prompt
));
488 } else if (line
[0] == '\0')
493 if (line
[0] == '?') {
494 std::string
data(line
+ 1);
495 if (data
== "bypass") {
497 *out_
<< "bypass == " << (bypass
? "true" : "false") << std::endl
;
498 } else if (data
== "debug") {
500 *out_
<< "debug == " << (debug
? "true" : "false") << std::endl
;
501 } else if (data
== "destroy") {
503 } else if (data
== "gc") {
504 *out_
<< "collecting... " << std::flush
;
505 CYGarbageCollect(CYGetJSContext());
506 *out_
<< "done." << std::endl
;
507 } else if (data
== "exit") {
509 } else if (data
== "expand") {
511 *out_
<< "expand == " << (expand
? "true" : "false") << std::endl
;
512 } else if (data
== "lower") {
514 *out_
<< "lower == " << (lower
? "true" : "false") << std::endl
;
515 } else if (data
== "syntax") {
517 *out_
<< "syntax == " << (syntax
? "true" : "false") << std::endl
;
527 char *begin(line
), *end(line
+ strlen(line
));
528 while (char *nl
= reinterpret_cast<char *>(memchr(begin
, '\n', end
- begin
))) {
530 lines
.push_back(begin
);
534 lines
.push_back(begin
);
545 std::istringstream
stream(command_
);
546 CYDriver
driver(stream
);
548 cy::parser
parser(driver
);
549 Setup(driver
, parser
);
551 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
552 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
553 cy::position
begin(error
->location_
.begin
);
554 if (begin
.line
!= lines
.size() || begin
.column
< lines
.back().size() || error
->warning_
) {
555 cy::position
end(error
->location_
.end
);
557 if (begin
.line
!= lines
.size()) {
559 std::cerr
<< lines
[begin
.line
- 1] << std::endl
;
563 for (size_t i(0); i
!= begin
.column
; ++i
)
565 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
567 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
569 std::cerr
<< std::endl
;
572 std::cerr
<< error
->message_
<< std::endl
;
579 driver
.errors_
.clear();
586 if (driver
.program_
== NULL
)
589 std::ostringstream str
;
590 CYOutput
out(str
, options
);
591 Setup(out
, driver
, options
, lower
);
592 out
<< *driver
.program_
;
600 Write(syntax
, code
.c_str(), code
.size(), std::cout
);
601 std::cout
<< std::endl
;
604 Run(client_
, syntax
, code
, out_
, expand
);
608 void InjectLibrary(pid_t pid
);
610 int Main(int argc
, char * const argv
[], char const * const envp
[]) {
611 bool tty(isatty(STDIN_FILENO
));
616 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
619 pid_t
pid(_not(pid_t
));
622 const char *host(NULL
);
623 const char *port(NULL
);
628 int option(getopt_long(argc
, argv
,
637 , (const struct option
[]) {
638 {NULL
, no_argument
, NULL
, 'c'},
639 {NULL
, required_argument
, NULL
, 'g'},
640 {NULL
, required_argument
, NULL
, 'n'},
642 {NULL
, required_argument
, NULL
, 'p'},
644 {NULL
, required_argument
, NULL
, 'r'},
645 {NULL
, no_argument
, NULL
, 's'},
646 {0, 0, 0, 0}}, NULL
));
655 "usage: cycript [-c]"
660 " [<script> [<arg>...]]\n"
668 fprintf(stderr
, "only one of -[c"
672 "r] may be used at a time\n");
683 else if (strcmp(optarg
, "rename") == 0)
684 options
.verbose_
= true;
686 else if (strcmp(optarg
, "bison") == 0)
690 fprintf(stderr
, "invalid name for -g\n");
697 else if (strcmp(optarg
, "minify") == 0)
700 fprintf(stderr
, "invalid name for -n\n");
707 size_t size(strlen(optarg
));
710 pid
= strtoul(optarg
, &end
, 0);
711 if (optarg
+ size
!= end
) {
712 // XXX: arg needs to be escaped in some horrendous way of doom
713 // XXX: this is a memory leak now because I just don't care enough
715 asprintf(&command
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", optarg
);
717 if (FILE *pids
= popen(command
, "r")) {
722 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
727 if (size
== sizeof(value
))
735 if (value
[size
- 1] == '\n') {
741 size
= strlen(value
);
742 pid
= strtoul(value
, &end
, 0);
743 if (value
+ size
!= end
) fail
:
745 _syscall(pclose(pids
));
748 if (pid
== _not(pid_t
)) {
749 fprintf(stderr
, "unable to find process `%s' using ps\n", optarg
);
757 //size_t size(strlen(optarg));
759 char *colon(strrchr(optarg
, ':'));
761 fprintf(stderr
, "missing colon in hostspec\n");
766 port = strtoul(colon + 1, &end, 10);
767 if (end != optarg + size) {
768 fprintf(stderr, "invalid port in hostspec\n");
793 if (pid
!= _not(pid_t
) && argc
> 1) {
794 fprintf(stderr
, "-p cannot set argv\n");
803 // XXX: const_cast?! wtf gcc :(
804 CYSetArgs(argc
- 1, const_cast<const char **>(argv
+ 1));
807 if (strcmp(script
, "-") == 0)
812 if (pid
== _not(pid_t
))
830 } server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0)));
832 struct sockaddr_un address
;
833 memset(&address
, 0, sizeof(address
));
834 address
.sun_family
= AF_UNIX
;
836 sprintf(address
.sun_path
, "/tmp/.s.cy.%u", getpid());
837 unlink(address
.sun_path
);
842 File(const char *path
) :
850 } file(address
.sun_path
);
852 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
853 _syscall(chmod(address
.sun_path
, 0777));
855 _syscall(listen(server
, 1));
857 client_
= _syscall(accept(server
, NULL
, NULL
));
863 if (client_
== -1 && host
!= NULL
&& port
!= NULL
) {
864 struct addrinfo hints
;
865 memset(&hints
, 0, sizeof(hints
));
866 hints
.ai_family
= AF_UNSPEC
;
867 hints
.ai_socktype
= SOCK_STREAM
;
868 hints
.ai_protocol
= 0;
871 struct addrinfo
*infos
;
872 _syscall(getaddrinfo(host
, port
, &hints
, &infos
));
874 _assert(infos
!= NULL
); try {
875 for (struct addrinfo
*info(infos
); info
!= NULL
; info
= info
->ai_next
) {
876 int client(_syscall(socket(info
->ai_family
, info
->ai_socktype
, info
->ai_protocol
))); try {
877 _syscall(connect(client
, info
->ai_addr
, info
->ai_addrlen
));
881 _syscall(close(client
));
891 if (script
== NULL
&& tty
)
896 std::istream
*stream
;
897 if (script
== NULL
) {
901 stream
= new std::fstream(script
, std::ios::in
| std::ios::binary
);
902 _assert(!stream
->fail());
905 CYDriver
driver(*stream
, script
);
906 cy::parser
parser(driver
);
907 Setup(driver
, parser
);
909 if (parser
.parse() != 0 || !driver
.errors_
.empty()) {
910 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
911 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
912 } else if (driver
.program_
!= NULL
) {
913 std::ostringstream str
;
914 CYOutput
out(str
, options
);
915 Setup(out
, driver
, options
, true);
916 out
<< *driver
.program_
;
917 std::string
code(str
.str());
921 Run(client_
, false, code
, &std::cout
);
928 int main(int argc
, char * const argv
[], char const * const envp
[]) {
930 return Main(argc
, argv
, envp
);
931 } catch (const CYException
&error
) {
933 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));