1 /* Cydget - open-source AwayView plugin multiplexer
2 * Copyright (C) 2009-2011 Jay Freeman (saurik)
6 * Redistribution and use in source and binary
7 * forms, with or without modification, are permitted
8 * provided that the following conditions are met:
10 * 1. Redistributions of source code must retain the
11 * above copyright notice, this list of conditions
12 * and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the
14 * above copyright notice, this list of conditions
15 * and the following disclaimer in the documentation
16 * and/or other materials provided with the
18 * 3. The name of the author may not be used to endorse
19 * or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
33 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
35 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <substrate.h>
39 #include <sys/sysctl.h>
41 #import <GraphicsServices/GraphicsServices.h>
42 #import <UIKit/UIKit.h>
43 #import <AddressBook/AddressBook.h>
45 #import <SpringBoard/SBStatusBarController.h>
46 #import <SpringBoardUI/SBAwayViewPluginController.h>
47 #import <TelephonyUI/TPBottomLockBar.h>
49 #import <QuartzCore/CALayer.h>
50 // XXX: fix the minimum requirement
51 extern NSString * const kCAFilterNearest;
53 #include <WebKit/DOMCSSPrimitiveValue.h>
54 #include <WebKit/DOMCSSStyleDeclaration.h>
55 #include <WebKit/DOMDocument.h>
56 #include <WebKit/DOMHTMLBodyElement.h>
57 #include <WebKit/DOMNodeList.h>
58 #include <WebKit/DOMRGBColor.h>
60 #include <WebKit/WebFrame.h>
61 #include <WebKit/WebPolicyDelegate.h>
62 #include <WebKit/WebPreferences.h>
63 #include <WebKit/WebScriptObject.h>
65 #import <WebKit/WebView.h>
66 #import <WebKit/WebView-WebPrivate.h>
68 #include <WebCore/Page.h>
69 #include <WebCore/Settings.h>
71 #include <WebCore/WebCoreThread.h>
72 #include <WebKit/WebPreferences-WebPrivate.h>
74 #include "JSGlobalData.h"
76 #include "SourceCode.h"
78 #include <apr-1/apr_pools.h>
82 #define _forever for (;;)
84 _disused static unsigned trace_;
86 #define _trace() do { \
87 NSLog(@"_trace(%u)@%s:%u[%s](%p)\n", \
88 trace_++, __FILE__, __LINE__, __FUNCTION__, pthread_self() \
92 #define _assert(test) do \
94 fprintf(stderr, "_assert(%d:%s)@%s:%u[%s]\n", errno, #test, __FILE__, __LINE__, __FUNCTION__); \
99 #define _syscall(expr) \
100 do if ((long) (expr) != -1) \
102 else switch (errno) { \
109 @protocol CydgetController
110 - (NSDictionary *) currentConfiguration;
113 static Class $CydgetController(objc_getClass("CydgetController"));
115 static bool iOS32, iOS4;
117 @interface NSString (UIKit)
118 - (NSString *) stringByAddingPercentEscapes;
121 @implementation UIWebDocumentView (WebCycript)
123 - (void) _setScrollerOffset:(CGPoint)offset {
124 UIScroller *scroller([self _scroller]);
126 CGSize size([scroller contentSize]);
127 CGSize bounds([scroller bounds].size);
130 max.x = size.width - bounds.width;
131 max.y = size.height - bounds.height;
139 offset.x = offset.x < 0 ? 0 : offset.x > max.x ? max.x : offset.x;
140 offset.y = offset.y < 0 ? 0 : offset.y > max.y ? max.y : offset.y;
142 [scroller setOffset:offset];
147 /* Perl-Compatible RegEx {{{ */
157 Pcre(const char *regex, int options = 0) :
162 code_ = pcre_compile(regex, options, &error, &offset, NULL);
165 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"*** Pcre(,): [%u] %s", offset, error] userInfo:nil];
167 pcre_fullinfo(code_, study_, PCRE_INFO_CAPTURECOUNT, &capture_);
168 matches_ = new int[(capture_ + 1) * 3];
176 NSString *operator [](size_t match) {
177 return [[[NSString alloc] initWithBytes:(data_ + matches_[match * 2]) length:(matches_[match * 2 + 1] - matches_[match * 2]) encoding:NSUTF8StringEncoding] autorelease];
180 bool operator ()(NSString *data) {
181 // XXX: length is for characters, not for bytes
182 return operator ()([data UTF8String], [data length]);
185 bool operator ()(const char *data, size_t size) {
187 return pcre_exec(code_, study_, data, size, 0, 0, matches_, (capture_ + 1) * 3) >= 0;
192 static float CYScrollViewDecelerationRateNormal;
194 @interface UIScrollView (Apple)
195 - (void) setDecelerationRate:(float)value;
196 - (void) setScrollingEnabled:(BOOL)enabled;
199 @interface UIWebView (Apple)
200 - (void) setDataDetectorTypes:(int)types;
201 - (UIScrollView *) _scrollView;
202 - (UIScroller *) _scroller;
203 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
206 @interface WebView (Apple)
207 - (void) _setLayoutInterval:(float)interval;
208 - (void) _setAllowsMessaging:(BOOL)allows;
209 - (void) setShouldUpdateWhileOffscreen:(BOOL)update;
212 @protocol CydgetWebViewDelegate //<UIWebViewDelegate>
213 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
216 @class UIWebViewWebViewDelegate;
218 @interface CydgetWebView : UIWebView {
223 @implementation CydgetWebView
225 - (void) webView:(WebView *)view decidePolicyForNavigationAction:(NSDictionary *)action request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id<WebPolicyDecisionListener>)listener {
229 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
230 NSObject<CydgetWebViewDelegate> *delegate([self delegate]);
231 if ([delegate respondsToSelector:@selector(webView:didClearWindowObject:forFrame:)])
232 [delegate webView:view didClearWindowObject:window forFrame:frame];
233 if ([UIWebView instancesRespondToSelector:@selector(webView:didClearWindowObject:forFrame:)])
234 [super webView:view didClearWindowObject:window forFrame:frame];
239 @interface WebCydgetLockScreenView : UIView {
240 CydgetWebView *webview_;
241 UIScrollView *scroller_;
247 @implementation WebCydgetLockScreenView
249 //#include "UICaboodle/UCInternal.h"
252 [webview_ setDelegate:nil];
257 - (void) loadRequest:(NSURLRequest *)request {
258 [webview_ loadRequest:request];
261 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy {
262 [self loadRequest:[NSURLRequest
269 - (void) loadURL:(NSURL *)url {
270 [self loadURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy];
274 CGRect frame = {{0, 0}, {320, 480}};
275 frame.size.height -= 20; //[[[$SBStatusBarController sharedStatusBarController] statusBarView] frame].size.height;
277 if ((self = [super initWithFrame:frame]) != nil) {
278 CGRect bounds([self bounds]);
279 bounds.size.height -= [TPBottomLockBar defaultHeight];
281 webview_ = [[CydgetWebView alloc] initWithFrame:bounds];
282 [webview_ setDelegate:self];
283 [self addSubview:webview_];
285 if ([webview_ respondsToSelector:@selector(setDataDetectorTypes:)])
286 [webview_ setDataDetectorTypes:0x80000000];
288 [webview_ setDetectsPhoneNumbers:NO];
290 [webview_ setScalesPageToFit:YES];
292 UIWebDocumentView *document([webview_ _documentView]);
293 WebView *webview([document webView]);
294 WebPreferences *preferences([webview preferences]);
296 [document setTileSize:CGSizeMake(bounds.size.width, 500)];
298 [document setBackgroundColor:[UIColor blackColor]];
299 [document setDrawsBackground:NO];
301 [webview setPreferencesIdentifier:@"WebCycript"];
303 if ([webview respondsToSelector:@selector(_setLayoutInterval:)])
304 [webview _setLayoutInterval:0];
306 [preferences _setLayoutInterval:0];
308 [preferences setCacheModel:WebCacheModelDocumentViewer];
309 [preferences setJavaScriptCanOpenWindowsAutomatically:YES];
310 [preferences setOfflineWebApplicationCacheEnabled:YES];
312 if ([webview respondsToSelector:@selector(setShouldUpdateWhileOffscreen:)])
313 [webview setShouldUpdateWhileOffscreen:NO];
315 if ([document respondsToSelector:@selector(setAllowsMessaging:)])
316 [document setAllowsMessaging:YES];
317 if ([webview respondsToSelector:@selector(_setAllowsMessaging:)])
318 [webview _setAllowsMessaging:YES];
320 if ([webview_ respondsToSelector:@selector(_scrollView)]) {
321 scroller_ = [webview_ _scrollView];
323 [scroller_ setDirectionalLockEnabled:YES];
324 [scroller_ setDecelerationRate:CYScrollViewDecelerationRateNormal];
325 [scroller_ setDelaysContentTouches:NO];
327 [scroller_ setCanCancelContentTouches:YES];
329 [scroller_ setAlwaysBounceVertical:NO];
330 } else if ([webview_ respondsToSelector:@selector(_scroller)]) {
331 UIScroller *scroller([webview_ _scroller]);
332 scroller_ = (UIScrollView *) scroller;
334 [scroller setDirectionalScrolling:YES];
335 [scroller setScrollDecelerationFactor:CYScrollViewDecelerationRateNormal]; /* 0.989324 */
336 [scroller setScrollHysteresis:0]; /* 8 */
338 [scroller setThumbDetectionEnabled:NO];
341 [scroller_ setFixedBackgroundPattern:YES];
342 [scroller_ setBackgroundColor:[UIColor blackColor]];
343 [scroller_ setClipsSubviews:NO];
345 [scroller_ setBounces:YES];
346 [scroller_ setShowBackgroundShadow:NO]; /* YES */
348 [self setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
349 [webview_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
351 NSDictionary *configuration([$CydgetController currentConfiguration]);
353 cycript_ = [configuration objectForKey:@"CycriptURLs"];
355 [scroller_ setScrollingEnabled:[[configuration objectForKey:@"Scrollable"] boolValue]];
357 NSString *homepage([configuration objectForKey:@"Homepage"]);
358 [self loadURL:[NSURL URLWithString:homepage]];
362 - (void) webView:(WebView *)webview didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame {
364 if (NSString *href = [[[[frame dataSource] request] URL] absoluteString])
365 if (Pcre([cycript_ UTF8String], 0 /*XXX:PCRE_UTF8*/)(href))
366 if (void *handle = dlopen("/usr/lib/libcycript.dylib", RTLD_LAZY | RTLD_GLOBAL))
367 if (void (*CYSetupContext)(JSGlobalContextRef) = reinterpret_cast<void (*)(JSGlobalContextRef)>(dlsym(handle, "CydgetSetupContext"))) {
368 WebFrame *frame([webview mainFrame]);
369 JSGlobalContextRef context([frame globalContext]);
370 CYSetupContext(context);
376 @interface WebCycriptLockScreenController : SBAwayViewPluginController {
387 // String Helpers {{{
388 static const UChar *(*_ZNK7WebCore6String10charactersEv)(const WebCore::String *);
389 static const UChar *(*_ZN7WebCore6String29charactersWithNullTerminationEv)(const WebCore::String *);
390 static unsigned (*_ZNK7WebCore6String6lengthEv)(const WebCore::String *);
392 static bool StringGet(const WebCore::String &string, const UChar *&data, size_t &length) {
395 if (_ZNK7WebCore6String10charactersEv != NULL) {
396 data = (*_ZNK7WebCore6String10charactersEv)(&string);
398 } else if (_ZN7WebCore6String29charactersWithNullTerminationEv != NULL) {
399 data = (*_ZN7WebCore6String29charactersWithNullTerminationEv)(&string);
403 if (_ZNK7WebCore6String6lengthEv != NULL)
404 length = (*_ZNK7WebCore6String6lengthEv)(&string);
406 for (length = 0; data[length] != 0; ++length);
412 static bool StringEquals(const WebCore::String &string, const char *value) {
415 if (!StringGet(string, data, size))
418 size_t length(strlen(value));
422 for (size_t index(0); index != length; ++index)
423 if (data[index] != value[index])
430 static bool cycript_;
432 MSHook(bool, _ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE, const WebCore::String &mime) {
433 if (!StringEquals(mime, "text/cycript")) {
435 return __ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE(mime);
438 static void *handle(dlopen("/usr/lib/libcycript.dylib", RTLD_LAZY | RTLD_GLOBAL));
446 // Script Compiler {{{
447 static void Log(const WebCore::String &string) {
451 if (!StringGet(string, data, length))
454 UChar terminated[length + 1];
455 terminated[length] = 0;
456 memcpy(terminated, data, length * 2);
457 NSLog(@"wtf %p:%zu:%S:", &string, length, terminated);
461 static void Cycriptify(apr_pool_t *pool, const uint16_t *&data, size_t &size) {
464 if (void *handle = dlopen("/usr/lib/libcycript.dylib", RTLD_LAZY | RTLD_GLOBAL))
465 if (void (*CydgetPoolParse)(apr_pool_t *, const uint16_t **, size_t *) = reinterpret_cast<void (*)(apr_pool_t *, const uint16_t **, size_t *)>(dlsym(handle, "CydgetPoolParse")))
466 CydgetPoolParse(pool, &data, &size);
469 static void (*_ZN7WebCore6String6appendEPKtj)(WebCore::String *, const UChar *, unsigned);
470 static void (*_ZN7WebCore6String8truncateEj)(WebCore::String *, unsigned);
472 static void Cycriptify(const WebCore::String &source, int *psize = NULL) {
479 if (!StringGet(source, data, length)) {
486 apr_pool_create(&pool, NULL);
488 Cycriptify(pool, data, size);
490 WebCore::String &script(const_cast<WebCore::String &>(source));
492 _ZN7WebCore6String8truncateEj(&script, 0);
493 _ZN7WebCore6String6appendEPKtj(&script, data, size);
498 apr_pool_destroy(pool);
504 extern "C" void *_ZN3JSC7UString3Rep14nullBaseStringE __attribute__((__weak_import__));
505 extern "C" void *_ZN3JSC7UString3Rep7destroyEv __attribute__((__weak_import__));
506 extern "C" void *_ZN3JSC7UStringC1EPKti __attribute__((__weak_import__));
507 extern "C" void *_ZN3JSC7UStringC1EPKc __attribute__((__weak_import__));
508 extern "C" void *_ZNK3JSC7UString6substrEii __attribute__((__weak_import__));
509 extern "C" void *_ZN3WTF10fastMallocEm __attribute__((__weak_import__));
510 extern "C" void WTFReportAssertionFailure(const char *, int, const char *, const char *) __attribute__((__weak_import__));
511 extern "C" void *_ZN3WTF8fastFreeEPv __attribute__((__weak_import__));
515 &_ZN3JSC7UString3Rep14nullBaseStringE == NULL ||
516 &_ZN3JSC7UString3Rep7destroyEv == NULL ||
517 &_ZN3JSC7UStringC1EPKti == NULL ||
518 &_ZN3JSC7UStringC1EPKc == NULL ||
519 &_ZNK3JSC7UString6substrEii == NULL ||
520 &_ZN3WTF10fastMallocEm == NULL ||
521 &WTFReportAssertionFailure == NULL ||
522 &_ZN3WTF8fastFreeEPv == NULL ||
526 static WebCore::String *string;
529 MSHook(State, _ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i, void *_this, const WebCore::String &string, State state, const WebCore::String &url, int line) {
531 return __ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i(_this, string, state, url, line);
535 MSHook(void, _ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE, JSC::SourceCode **_this, JSC::JSGlobalData *global, int *line, JSC::UString *message) {
537 JSC::SourceCode *source(_this[iOS32 ? 6 : 0]);
538 const uint16_t *data(source->data());
539 size_t size(source->length());
542 apr_pool_create(&pool, NULL);
544 Cycriptify(pool, data, size);
545 source->~SourceCode();
546 // XXX: I actually don't have the original URL here: pants
547 new (source) JSC::SourceCode(JSC::UStringSourceProvider::create(JSC::UString(data, size), "cycript://"), 1);
549 apr_pool_destroy(pool);
553 return __ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE(_this, global, line, message);
557 MSHook(void, _ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi, void *_this, const WebCore::String &source, const WebCore::KURL &url, int line) {
559 return __ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi(_this, source, url, line);
563 MSHook(const WebCore::String &, _ZN7WebCore12CachedScript6scriptEv, void *_this) {
564 const WebCore::String &script(__ZN7WebCore12CachedScript6scriptEv(_this));
565 string = const_cast<WebCore::String *>(&script);
571 MSHook(State, _ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE, void *_this, void *source, State state) {
572 if (string != NULL) {
574 Cycriptify(*string, reinterpret_cast<int *>(source) + 3);
579 return __ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE(_this, source, state);
582 /* Cydget:// Protocol {{{ */
583 @interface CydgetURLProtocol : NSURLProtocol {
588 @implementation CydgetURLProtocol
590 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
591 NSURL *url([request URL]);
594 NSString *scheme([[url scheme] lowercaseString]);
595 if (scheme == nil || ![scheme isEqualToString:@"cydget"])
600 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
604 - (void) _returnPNGWithImage:(UIImage *)icon forRequest:(NSURLRequest *)request {
605 id<NSURLProtocolClient> client([self client]);
607 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
609 NSData *data(UIImagePNGRepresentation(icon));
611 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:@"image/png" expectedContentLength:-1 textEncodingName:nil] autorelease]);
612 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
613 [client URLProtocol:self didLoadData:data];
614 [client URLProtocolDidFinishLoading:self];
618 - (void) startLoading {
619 id<NSURLProtocolClient> client([self client]);
620 NSURLRequest *request([self request]);
622 NSURL *url([request URL]);
623 NSString *href([url absoluteString]);
625 NSString *path([href substringFromIndex:9]);
626 NSRange slash([path rangeOfString:@"/"]);
629 if (slash.location == NSNotFound) {
633 command = [path substringToIndex:slash.location];
634 path = [path substringFromIndex:(slash.location + 1)];
637 if ([command isEqualToString:@"_UIImageWithName"]) {
640 path = [path stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
641 UIImage *icon(_UIImageWithName(path));
642 [self _returnPNGWithImage:icon forRequest:request];
644 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
648 - (void) stopLoading {
653 /* Cydget-CGI:// Protocol {{{ */
654 @interface CydgetCGIURLProtocol : NSURLProtocol {
656 CFHTTPMessageRef http_;
657 NSFileHandle *handle_;
662 @implementation CydgetCGIURLProtocol
664 + (BOOL) canInitWithRequest:(NSURLRequest *)request {
665 NSURL *url([request URL]);
668 NSString *scheme([[url scheme] lowercaseString]);
669 if (scheme == nil || ![scheme isEqualToString:@"cydget-cgi"])
674 + (NSURLRequest *) canonicalRequestForRequest:(NSURLRequest *)request {
678 - (id) initWithRequest:(NSURLRequest *)request cachedResponse:(NSCachedURLResponse *)response client:(id<NSURLProtocolClient>)client {
679 if ((self = [super initWithRequest:request cachedResponse:response client:client]) != nil) {
684 - (void) startLoading {
685 id<NSURLProtocolClient> client([self client]);
686 NSURLRequest *request([self request]);
687 NSURL *url([request URL]);
689 NSString *path([url path]);
691 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
695 NSFileManager *manager([NSFileManager defaultManager]);
696 if (![manager fileExistsAtPath:path]) {
697 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil]];
702 _assert(pipe(fds) != -1);
707 _assert(close(fds[0]) != -1);
708 _assert(close(fds[1]) != -1);
709 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorResourceUnavailable userInfo:nil]];
714 const char *script([path UTF8String]);
716 setenv("GATEWAY_INTERFACE", "CGI/1.1", true);
717 setenv("SCRIPT_FILENAME", script, true);
718 NSString *query([url query]);
720 setenv("QUERY_STRING", [query UTF8String], true);
722 _assert(dup2(fds[1], 1) != -1);
723 _assert(close(fds[0]) != -1);
724 _assert(close(fds[1]) != -1);
726 execl(script, script, NULL);
731 _assert(close(fds[1]) != -1);
733 _assert(http_ == NULL);
734 http_ = CFHTTPMessageCreateEmpty(kCFAllocatorDefault, FALSE);
735 CFHTTPMessageAppendBytes(http_, (const uint8_t *) "HTTP/1.1 200 OK\r\n", 17);
737 _assert(handle_ == nil);
738 handle_ = [[NSFileHandle alloc] initWithFileDescriptor:fds[0] closeOnDealloc:YES];
740 [[NSNotificationCenter defaultCenter]
742 selector:@selector(onRead:)
743 name:@"NSFileHandleReadCompletionNotification"
747 [handle_ readInBackgroundAndNotify];
750 - (void) onRead:(NSNotification *)notification {
751 NSFileHandle *handle([notification object]);
753 NSData *data([[notification userInfo] objectForKey:NSFileHandleNotificationDataItem]);
755 if (size_t length = [data length]) {
756 CFHTTPMessageAppendBytes(http_, reinterpret_cast<const UInt8 *>([data bytes]), length);
757 [handle readInBackgroundAndNotify];
759 id<NSURLProtocolClient> client([self client]);
761 CFStringRef mime(CFHTTPMessageCopyHeaderFieldValue(http_, CFSTR("Content-type")));
763 [client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorBadServerResponse userInfo:nil]];
765 NSURLRequest *request([self request]);
767 NSURLResponse *response([[[NSURLResponse alloc] initWithURL:[request URL] MIMEType:(NSString *)mime expectedContentLength:-1 textEncodingName:nil] autorelease]);
770 [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
772 CFDataRef body(CFHTTPMessageCopyBody(http_));
773 [client URLProtocol:self didLoadData:(NSData *)body];
776 [client URLProtocolDidFinishLoading:self];
784 //[client URLProtocol:self didFailWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorNetworkConnectionLost userInfo:nil]];
786 - (void) stopLoading_ {
787 [[NSNotificationCenter defaultCenter] removeObserver:self];
789 if (handle_ != nil) {
797 _syscall(waitpid(pid_, &status, 0));
802 - (void) stopLoading {
804 performSelectorOnMainThread:@selector(stopLoading_)
813 template <typename Type_>
814 static void nlset(Type_ &function, struct nlist *nl, size_t index) {
815 struct nlist &name(nl[index]);
816 uintptr_t value(name.n_value);
817 if ((name.n_desc & N_ARM_THUMB_DEF) != 0)
819 function = reinterpret_cast<Type_>(value);
822 template <typename Type_>
823 static void dlset(Type_ &function, const char *name) {
824 function = reinterpret_cast<Type_>(dlsym(RTLD_DEFAULT, name));
827 template <typename Type_>
828 static void msset_(Type_ &function, const char *name, MSImageRef handle) {
829 function = reinterpret_cast<Type_>(MSFindSymbol(handle, name));
832 #define msset(function, handle) \
833 msset_(function, "_" #function, handle)
835 @implementation WebCycriptLockScreenController
837 static void $UIWebViewWebViewDelegate$webView$didClearWindowObject$forFrame$(UIWebViewWebViewDelegate *self, SEL sel, WebView *view, WebScriptObject *window, WebFrame *frame) {
838 UIWebView *uiWebView(MSHookIvar<UIWebView *>(self, "uiWebView"));
839 if ([uiWebView respondsToSelector:@selector(webView:didClearWindowObject:forFrame:)])
840 [uiWebView webView:view didClearWindowObject:window forFrame:frame];
843 + (void) initialize {
844 if (Class $UIWebViewWebViewDelegate = objc_getClass("UIWebViewWebViewDelegate"))
845 class_addMethod($UIWebViewWebViewDelegate, @selector(webView:didClearWindowObject:forFrame:), (IMP) &$UIWebViewWebViewDelegate$webView$didClearWindowObject$forFrame$, "v20@0:4@8@12@16");
847 if (float *_UIScrollViewDecelerationRateNormal = reinterpret_cast<float *>(dlsym(RTLD_DEFAULT, "UIScrollViewDecelerationRateNormal")))
848 CYScrollViewDecelerationRateNormal = *_UIScrollViewDecelerationRateNormal;
849 else // XXX: this actually might be fast on some older systems: we should look into this
850 CYScrollViewDecelerationRateNormal = 0.998;
852 iOS4 = kCFCoreFoundationVersionNumber >= 550.32;
853 iOS32 = !iOS4 && kCFCoreFoundationVersionNumber >= 478.61;
856 size_t size(sizeof(maxproc));
857 if (sysctlbyname("kern.maxproc", &maxproc, &size, NULL, 0) == -1)
858 NSLog(@"sysctlbyname(\"kern.maxproc\", ?)");
859 else if (maxproc < 72) {
861 if (sysctlbyname("kern.maxproc", NULL, NULL, &maxproc, sizeof(maxproc)) == -1)
862 NSLog(@"sysctlbyname(\"kern.maxproc\", #)");
867 [NSURLProtocol registerClass:[CydgetURLProtocol class]];
868 [NSURLProtocol registerClass:[CydgetCGIURLProtocol class]];
871 void (*_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE)(JSC::SourceCode **, JSC::JSGlobalData *, int *, JSC::UString *);
872 dlset(_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE, "_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE");
873 if (_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE != NULL)
874 MSHookFunction(_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE, MSHake(_ZN3JSC6Parser5parseEPNS_12JSGlobalDataEPiPNS_7UStringE));
878 memset(nl, 0, sizeof(nl));
880 nl[0].n_un.n_name = (char *) "__ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE";
882 nl[1].n_un.n_name = (char *) "__ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi";
884 nl[2].n_un.n_name = (char *) "__ZN7WebCore12CachedScript6scriptEv";
885 nl[3].n_un.n_name = (char *) "__ZNK7WebCore20StringSourceProvider6sourceEv";
887 nl[4].n_un.n_name = (char *) "__ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i";
888 nl[5].n_un.n_name = (char *) "__ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE";
890 nl[6].n_un.n_name = (char *) "__ZN7WebCore6String6appendEPKtj";
891 nl[7].n_un.n_name = (char *) "__ZN7WebCore6String8truncateEj";
893 nlist("/System/Library/PrivateFrameworks/WebCore.framework/WebCore", nl);
895 bool (*_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE)(const WebCore::String &);
896 nlset(_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE, nl, 0);
897 if (_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE != NULL)
898 MSHookFunction(_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE, MSHake(_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKNS_6StringE));
900 void (*_ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi)(void *, const WebCore::String &, const WebCore::KURL &, int);
901 nlset(_ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi, nl, 1);
902 if (_ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi != NULL)
903 MSHookFunction(_ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi, MSHake(_ZN7WebCore16ScriptSourceCodeC2ERKNS_6StringERKNS_4KURLEi));
906 const WebCore::String &(*_ZN7WebCore12CachedScript6scriptEv)(void *);
907 nlset(_ZN7WebCore12CachedScript6scriptEv, nl, 2);
908 if (_ZN7WebCore12CachedScript6scriptEv != NULL)
909 MSHookFunction(_ZN7WebCore12CachedScript6scriptEv, MSHake(_ZN7WebCore12CachedScript6scriptEv));
912 State (*_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i)(void *, const WebCore::String &, State, const WebCore::String &, int);
913 nlset(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i, nl, 4);
914 if (_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i != NULL)
915 MSHookFunction(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i, MSHake(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_6StringENS0_5StateES3_i));
918 State (*_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE)(void *, void *, State);
919 nlset(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE, nl, 5);
920 if (_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE != NULL)
921 MSHookFunction(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE, MSHake(_ZN7WebCore13HTMLTokenizer15scriptExecutionERKNS_16ScriptSourceCodeENS0_5StateE));
924 nlset(_ZN7WebCore6String6appendEPKtj, nl, 6);
925 nlset(_ZN7WebCore6String8truncateEj, nl, 7);
927 MSImageRef JavaScriptCore(MSGetImageByName("/System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore"));
928 MSImageRef WebCore(MSGetImageByName("/System/Library/PrivateFrameworks/WebCore.framework/WebCore"));
930 if (_ZN7WebCore6String6appendEPKtj == NULL)
931 msset(_ZN7WebCore6String6appendEPKtj, JavaScriptCore);
933 if (_ZN7WebCore6String8truncateEj == NULL)
934 msset(_ZN7WebCore6String8truncateEj, JavaScriptCore);
936 msset(_ZNK7WebCore6String10charactersEv, WebCore);
937 msset(_ZN7WebCore6String29charactersWithNullTerminationEv, JavaScriptCore);
938 msset(_ZNK7WebCore6String6lengthEv, WebCore);
941 + (id) rootViewController {
942 return [[[self alloc] init] autorelease];
946 [self setView:[[[WebCydgetLockScreenView alloc] init] autorelease]];