1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. 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>
51 #include <sys/socket.h>
52 #include <sys/types.h>
57 #include <sys/ioctl.h>
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <netinet/in.h>
68 #include <mach/mach_time.h>
73 #include "Highlight.hpp"
76 extern "C" int rl_display_fixed
;
77 extern "C" int _rl_vis_botlin
;
78 extern "C" int _rl_last_c_pos
;
79 extern "C" int _rl_last_v_pos
;
81 typedef std::complex<int> CYCursor
;
83 static CYCursor current_
;
87 unsigned CYDisplayWidth() {
89 if (ioctl(1, TIOCGWINSZ
, &info
) != -1)
91 return tgetnum(const_cast<char *>("co"));
94 void CYDisplayOutput_(bool display
, const char *&data
) {
97 if (next
== '\0' || next
== CYIgnoreEnd
)
104 CYCursor
CYDisplayOutput(bool display
, int width
, const char *data
, ssize_t offset
= 0) {
105 CYCursor
point(current_
);
110 switch (char next
= *data
++) {
116 CYDisplayOutput_(display
, data
);
124 current_
+= CYCursor(0, 1);
125 if (current_
.imag() != width
)
127 current_
= CYCursor(current_
.real() + 1, 0);
133 current_
= CYCursor(current_
.real() + 1, 4);
148 void CYDisplayMove_(char *negative
, char *positive
, int offset
) {
150 putp(tparm(negative
, -offset
));
152 putp(tparm(positive
, offset
));
155 void CYDisplayMove(CYCursor target
) {
156 CYCursor
offset(target
- current_
);
158 CYDisplayMove_(parm_up_cursor
, parm_down_cursor
, offset
.real());
160 if (char *parm
= tparm(column_address
, target
.imag()))
163 CYDisplayMove_(parm_left_cursor
, parm_right_cursor
, offset
.imag());
168 void CYDisplayUpdate() {
169 current_
= CYCursor(_rl_last_v_pos
, _rl_last_c_pos
);
171 const char *prompt(rl_display_prompt
);
173 std::ostringstream stream
;
174 CYLexerHighlight(rl_line_buffer
, rl_end
, stream
, true);
175 std::string
string(stream
.str());
176 const char *buffer(string
.c_str());
178 int width(CYDisplayWidth());
179 if (width_
!= width
) {
180 current_
= CYCursor();
181 CYDisplayOutput(false, width
, prompt
);
182 current_
= CYDisplayOutput(false, width
, buffer
, point_
);
185 CYDisplayMove(CYCursor());
186 CYDisplayOutput(true, width
, prompt
);
187 CYCursor
target(CYDisplayOutput(true, width
, stream
.str().c_str(), rl_point
));
189 _rl_vis_botlin
= current_
.real();
191 if (current_
.imag() == 0)
192 CYDisplayOutput(true, width
, " ");
195 CYDisplayMove(target
);
198 _rl_last_v_pos
= current_
.real();
199 _rl_last_c_pos
= current_
.imag();
205 static volatile enum {
213 static jmp_buf ctrlc_
;
215 static void sigint(int) {
236 void Setup(CYDriver
&driver
) {
240 driver
.strict_
= true;
243 void Setup(CYOutput
&out
, CYDriver
&driver
, CYOptions
&options
, bool lower
) {
244 out
.pretty_
= pretty_
;
246 driver
.Replace(options
);
249 static CYUTF8String
Run(CYPool
&pool
, int client
, CYUTF8String code
) {
256 json
= CYExecute(CYGetJSContext(), pool
, code
);
268 _assert(CYSendAll(client
, &size
, sizeof(size
)));
269 _assert(CYSendAll(client
, code
.data
, code
.size
));
271 _assert(CYRecvAll(client
, &size
, sizeof(size
)));
272 if (size
== _not(uint32_t))
275 char *temp(new(pool
) char[size
+ 1]);
276 _assert(CYRecvAll(client
, temp
, size
));
283 return CYUTF8String(json
, size
);
286 static CYUTF8String
Run(CYPool
&pool
, int client
, const std::string
&code
) {
287 return Run(pool
, client
, CYUTF8String(code
.c_str(), code
.size()));
290 static std::ostream
*out_
;
292 static void Output(CYUTF8String json
, std::ostream
*out
, bool expand
= false) {
293 const char *data(json
.data
);
294 size_t size(json
.size
);
296 if (data
== NULL
|| out
== NULL
)
300 data
[0] != '@' && data
[0] != '"' && data
[0] != '\'' ||
301 data
[0] == '@' && data
[1] != '"' && data
[1] != '\''
303 CYLexerHighlight(data
, size
, *out
);
304 else for (size_t i(0); i
!= size
; ++i
)
307 else switch(data
[++i
]) {
308 case '\0': goto done
;
309 case '\\': *out
<< '\\'; break;
310 case '\'': *out
<< '\''; break;
311 case '"': *out
<< '"'; break;
312 case 'b': *out
<< '\b'; break;
313 case 'f': *out
<< '\f'; break;
314 case 'n': *out
<< '\n'; break;
315 case 'r': *out
<< '\r'; break;
316 case 't': *out
<< '\t'; break;
317 case 'v': *out
<< '\v'; break;
318 default: *out
<< '\\'; --i
; break;
325 int (*append_history$
)(int, const char *);
327 static std::string command_
;
331 static CYUTF8String
Run(CYPool
&pool
, const std::string
&code
) {
332 return Run(pool
, client_
, code
);
335 static char **Complete(const char *word
, int start
, int end
) {
336 rl_attempted_completion_over
= ~0;
337 std::string
line(rl_line_buffer
, start
);
338 char **values(CYComplete(word
, command_
+ line
, &Run
));
342 // need char *, not const char *
343 static char name_
[] = "cycript";
344 static char break_
[] = " \t\n\"\\'`@><=;|&{(" ")}" ".:[]";
348 std::string histfile_
;
352 History(std::string histfile
) :
356 read_history(histfile_
.c_str());
358 for (HIST_ENTRY
*history((history_set_pos(0), current_history())); history
; history
= next_history())
359 for (char *character(history
->line
); *character
; ++character
)
360 if (*character
== '\x01') *character
= '\n';
364 for (HIST_ENTRY
*history((history_set_pos(0), current_history())); history
; history
= next_history())
365 for (char *character(history
->line
); *character
; ++character
)
366 if (*character
== '\n') *character
= '\x01';
368 if (append_history$
!= NULL
) {
369 int fd(_syscall(open(histfile_
.c_str(), O_CREAT
| O_WRONLY
, 0600)));
371 _assert((*append_history$
)(histlines_
, histfile_
.c_str()) == 0);
373 _assert(write_history(histfile_
.c_str()) == 0);
377 void operator +=(std::string command
) {
378 add_history(command
.c_str());
383 static int CYConsoleKeyReturn(int count
, int key
) {
384 rl_insert(count
, '\n');
386 if (rl_end
!= 0 && rl_point
== rl_end
&& rl_line_buffer
[0] == '?')
388 else if (rl_point
== rl_end
) {
389 std::string
command(rl_line_buffer
, rl_end
);
390 std::istringstream
stream(command
);
392 size_t last(std::string::npos
);
393 for (size_t i(0); i
!= std::string::npos
; i
= command
.find('\n', i
+ 1))
397 CYDriver
driver(pool
, stream
);
398 if (driver
.Parse() || !driver
.errors_
.empty())
399 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
400 if (error
->location_
.begin
.line
!= last
+ 1)
409 std::cout
<< std::endl
;
413 static void Console(CYOptions
&options
) {
415 if (const char *home
= getenv("HOME"))
419 if (const char *username
= getenv("LOGNAME"))
420 passwd
= getpwnam(username
);
422 passwd
= getpwuid(getuid());
423 basedir
= passwd
->pw_dir
;
426 basedir
+= "/.cycript";
427 mkdir(basedir
.c_str(), 0700);
430 rl_readline_name
= name_
;
432 History
history(basedir
+ "/history");
441 rl_completer_word_break_characters
= break_
;
442 rl_attempted_completion_function
= &Complete
;
443 rl_bind_key('\t', rl_complete
);
445 rl_redisplay_function
= CYDisplayUpdate
;
447 struct sigaction action
;
448 sigemptyset(&action
.sa_mask
);
449 action
.sa_handler
= &sigint
;
451 sigaction(SIGINT
, &action
, NULL
);
454 if (setjmp(ctrlc_
) != 0) {
461 rl_bind_key('\r', &rl_newline
);
463 rl_bind_key('\r', &CYConsoleKeyReturn
);
466 char *line(readline("cy# "));
474 std::string
command(line
);
476 _assert(!command
.empty());
477 _assert(command
[command
.size() - 1] == '\n');
478 command
.resize(command
.size() - 1);
482 if (command
[0] == '?') {
483 std::string
data(command
.substr(1));
484 if (data
== "bypass") {
486 *out_
<< "bypass == " << (bypass
? "true" : "false") << std::endl
;
487 } else if (data
== "debug") {
489 *out_
<< "debug == " << (debug
? "true" : "false") << std::endl
;
490 } else if (data
== "destroy") {
492 } else if (data
== "gc") {
493 *out_
<< "collecting... " << std::flush
;
494 CYGarbageCollect(CYGetJSContext());
495 *out_
<< "done." << std::endl
;
496 } else if (data
== "exit") {
498 } else if (data
== "expand") {
500 *out_
<< "expand == " << (expand
? "true" : "false") << std::endl
;
501 } else if (data
== "lower") {
503 *out_
<< "lower == " << (lower
? "true" : "false") << std::endl
;
514 std::istringstream
stream(command
);
517 CYDriver
driver(pool
, stream
);
520 if (driver
.Parse() || !driver
.errors_
.empty()) {
521 for (CYDriver::Errors::const_iterator
error(driver
.errors_
.begin()); error
!= driver
.errors_
.end(); ++error
) {
522 CYPosition
begin(error
->location_
.begin
);
523 CYPosition
end(error
->location_
.end
);
525 /*if (begin.line != lines2.size()) {
527 std::cerr << lines2[begin.line - 1] << std::endl;
531 for (size_t i(0); i
!= begin
.column
; ++i
)
533 if (begin
.line
!= end
.line
|| begin
.column
== end
.column
)
535 else for (size_t i(0), e(end
.column
- begin
.column
); i
!= e
; ++i
)
537 std::cerr
<< std::endl
;
540 std::cerr
<< error
->message_
<< std::endl
;
549 if (driver
.script_
== NULL
)
553 CYOutput
out(str
, options
);
554 Setup(out
, driver
, options
, lower
);
555 out
<< *driver
.script_
;
563 CYLexerHighlight(code
.c_str(), code
.size(), std::cout
);
564 std::cout
<< std::endl
;
568 Output(Run(pool
, client_
, code
), &std::cout
, expand
);
572 void InjectLibrary(pid_t
, int, const char *const []);
574 static uint64_t CYGetTime() {
576 return mach_absolute_time();
578 struct timespec spec
;
579 clock_gettime(CLOCK_MONOTONIC
, &spec
);
580 return spec
.tv_sec
* UINT64_C(1000000000) + spec
.tv_nsec
;
584 int Main(int argc
, char * const argv
[], char const * const envp
[]) {
585 bool tty(isatty(STDIN_FILENO
));
590 append_history$
= (int (*)(int, const char *)) (dlsym(RTLD_DEFAULT
, "append_history"));
593 pid_t
pid(_not(pid_t
));
596 const char *host(NULL
);
597 const char *port(NULL
);
602 int option(getopt_long(argc
, argv
,
611 , (const struct option
[]) {
612 {NULL
, no_argument
, NULL
, 'c'},
613 {NULL
, required_argument
, NULL
, 'g'},
614 {NULL
, required_argument
, NULL
, 'n'},
616 {NULL
, required_argument
, NULL
, 'p'},
618 {NULL
, required_argument
, NULL
, 'r'},
619 {NULL
, no_argument
, NULL
, 's'},
620 {0, 0, 0, 0}}, NULL
));
629 "usage: cycript [-c]"
634 " [<script> [<arg>...]]\n"
642 fprintf(stderr
, "only one of -[c"
646 "r] may be used at a time\n");
657 else if (strcmp(optarg
, "rename") == 0)
658 options
.verbose_
= true;
659 else if (strcmp(optarg
, "bison") == 0)
661 else if (strcmp(optarg
, "timing") == 0)
664 fprintf(stderr
, "invalid name for -g\n");
671 else if (strcmp(optarg
, "minify") == 0)
674 fprintf(stderr
, "invalid name for -n\n");
681 size_t size(strlen(optarg
));
684 pid
= strtoul(optarg
, &end
, 0);
685 if (optarg
+ size
!= end
) {
686 // XXX: arg needs to be escaped in some horrendous way of doom
687 // XXX: this is a memory leak now because I just don't care enough
689 int writ(asprintf(&command
, "ps axc|sed -e '/^ *[0-9]/{s/^ *\\([0-9]*\\)\\( *[^ ]*\\)\\{3\\} *-*\\([^ ]*\\)/\\3 \\1/;/^%s /{s/^[^ ]* //;q;};};d'", optarg
));
692 if (FILE *pids
= popen(command
, "r")) {
697 size_t read(fread(value
+ size
, 1, sizeof(value
) - size
, pids
));
702 if (size
== sizeof(value
))
710 if (value
[size
- 1] == '\n') {
716 size
= strlen(value
);
717 pid
= strtoul(value
, &end
, 0);
718 if (value
+ size
!= end
) fail
:
720 _syscall(pclose(pids
));
723 if (pid
== _not(pid_t
)) {
724 fprintf(stderr
, "unable to find process `%s' using ps\n", optarg
);
732 //size_t size(strlen(optarg));
734 char *colon(strrchr(optarg
, ':'));
736 fprintf(stderr
, "missing colon in hostspec\n");
741 port = strtoul(colon + 1, &end, 10);
742 if (end != optarg + size) {
743 fprintf(stderr, "invalid port in hostspec\n");
768 if (pid
!= _not(pid_t
) && argc
> 1) {
769 fprintf(stderr
, "-p cannot set argv\n");
778 // XXX: const_cast?! wtf gcc :(
779 CYSetArgs(argc
- 1, const_cast<const char **>(argv
+ 1));
782 if (strcmp(script
, "-") == 0)
787 if (pid
== _not(pid_t
))
805 } server(_syscall(socket(PF_UNIX
, SOCK_STREAM
, 0)));
807 struct sockaddr_un address
;
808 memset(&address
, 0, sizeof(address
));
809 address
.sun_family
= AF_UNIX
;
812 #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
813 tmp
= "/Library/Caches";
818 sprintf(address
.sun_path
, "%s/.s.cy.%u", tmp
, getpid());
819 unlink(address
.sun_path
);
824 File(const char *path
) :
832 } file(address
.sun_path
);
834 _syscall(bind(server
, reinterpret_cast<sockaddr
*>(&address
), SUN_LEN(&address
)));
835 _syscall(chmod(address
.sun_path
, 0777));
837 _syscall(listen(server
, 1));
838 const char *const argv
[] = {address
.sun_path
, NULL
};
839 InjectLibrary(pid
, 1, argv
);
840 client_
= _syscall(accept(server
, NULL
, NULL
));
846 if (client_
== -1 && host
!= NULL
&& port
!= NULL
) {
847 struct addrinfo hints
;
848 memset(&hints
, 0, sizeof(hints
));
849 hints
.ai_family
= AF_UNSPEC
;
850 hints
.ai_socktype
= SOCK_STREAM
;
851 hints
.ai_protocol
= 0;
854 struct addrinfo
*infos
;
855 _syscall(getaddrinfo(host
, port
, &hints
, &infos
));
857 _assert(infos
!= NULL
); try {
858 for (struct addrinfo
*info(infos
); info
!= NULL
; info
= info
->ai_next
) {
859 int client(_syscall(socket(info
->ai_family
, info
->ai_socktype
, info
->ai_protocol
))); try {
860 _syscall(connect(client
, info
->ai_addr
, info
->ai_addrlen
));
864 _syscall(close(client
));
874 if (script
== NULL
&& tty
)
877 std::istream
*stream
;
878 if (script
== NULL
) {
882 stream
= new std::fstream(script
, std::ios::in
| std::ios::binary
);
883 _assert(!stream
->fail());
887 std::stringbuf buffer
;
888 stream
->get(buffer
, '\0');
889 _assert(!stream
->fail());
893 uint64_t start(CYGetTime());
896 stream
= new std::istringstream(buffer
.str());
899 CYDriver
driver(pool
, *stream
, script
);
902 uint64_t begin(CYGetTime());
904 uint64_t end(CYGetTime());
908 average
+= (end
- begin
- average
) / ++samples
;
910 uint64_t now(CYGetTime());
913 else if ((now
- start
) / 1000000000 >= 1)
914 std::cout
<< std::fixed
<< average
<< '\t' << (end
- begin
) << '\t' << samples
<< std::endl
;
920 stream
= new std::istringstream(buffer
.str());
925 CYDriver
driver(pool
, *stream
, script
);
928 bool failed(driver
.Parse());
930 if (failed
|| !driver
.errors_
.empty()) {
931 for (CYDriver::Errors::const_iterator
i(driver
.errors_
.begin()); i
!= driver
.errors_
.end(); ++i
)
932 std::cerr
<< i
->location_
.begin
<< ": " << i
->message_
<< std::endl
;
933 } else if (driver
.script_
!= NULL
) {
935 CYOutput
out(str
, options
);
936 Setup(out
, driver
, options
, true);
937 out
<< *driver
.script_
;
938 std::string
code(str
.str());
942 CYUTF8String
json(Run(pool
, client_
, code
));
943 if (CYStartsWith(json
, "throw ")) {
944 CYLexerHighlight(json
.data
, json
.size
, std::cerr
);
945 std::cerr
<< std::endl
;
955 int main(int argc
, char * const argv
[], char const * const envp
[]) {
957 return Main(argc
, argv
, envp
);
958 } catch (const CYException
&error
) {
960 fprintf(stderr
, "%s\n", error
.PoolCString(pool
));