Ticket #127 (new defect)

Opened 1 year ago

Last modified 1 month ago

onExit animations

Reported by: rndblnch Owned by: saurik
Priority: blocker Component: Bootstrap
Keywords: jailbreak, QuickPwn, Cydia, install, BossPrefs, SBSettings Cc: rndblnch@…

Description

Python segfaults when calling a python function wrapped with c types into a c function pointer (aka callback function in ctypes terminology [0]).

After some investigations [1], it looks like the libffi which is used by ctypes to create c function pointer needs to have access to a memory region which is both writable and executable, which is not possible on the iPhoneOS.

The same issue for pyobjc is probably fixed in [2] but adapting the fix to libffi is not straightforward for the author of the ticket :)

It's also worth mentioning that libffi provides a fallback mechanism using temporary files mapped in memory, but I've not been able to make it work.

0. callback function <http://www.python.org/doc/2.5.2/lib/ctypes-callback-functions.html>

1. bug in ctypes/libffi <http://www.telesphoreo.org/pipermail/iphone-python/2008-October/000201.html>

2. patch to pyobjc fixing the same issue <http://www.telesphoreo.org/browser/trunk/data/pyobjc/mprotect.diff>

Change History

in reply to: ↑ description   Changed 1 year ago by rndblnch

forgot to give a test case, here is an typical interactive session :

podet:~ root# uname -mprs 
Darwin 9.4.1 iPod1,1 arm
podet:~ root# python
Python 2.5.1 (r251:54863, xx/xx/xx, xx:xx:xx) 
[GCC 4.2.1 (Based on Apple Inc. build 5555)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import *
>>> cf = CFUNCTYPE(None)
>>> def test(): pass
... 
>>> test()
>>> ctest = cf(test)
>>> ctest()
Bus error
podet:~ root# 

the line ctest = cf(test) produce the following line in the syslog: Nov 10 13:09:27 podet kernel[0]: EMBEDDED: vm_map_enter curprot cannot be write+execute. turning off execute and the last line produce the crash with the following report:

Process:         python [22134]
Path:            /usr/bin/python
Identifier:      python
Version:         ??? (???)
Code Type:       ARM (Native)
Parent Process:  sh [16028]

Date/Time:       2008-11-10 13:09:31.496 +0100
OS Version:      iPhone OS 2.1 (5F137)
Report Version:  103

Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00008fe0
Crashed Thread:  0

Thread 0 Crashed:
0   ???                                 0x00008fe0 0 + 36832
1   _ctypes.dylib                       0x0013809c 0x12d000 + 45212
2   _ctypes.dylib                       0x0012ff84 0x12d000 + 12164
3   libpython2.5.dylib.1.0              0x001b1524 0x1a6000 + 46372
4   libpython2.5.dylib.1.0              0x0027b4a8 0x1a6000 + 873640
5   libpython2.5.dylib.1.0              0x0027ecf4 0x1a6000 + 888052
6   libpython2.5.dylib.1.0              0x0027f4c4 0x1a6000 + 890052
7   libpython2.5.dylib.1.0              0x002aa990 0x1a6000 + 1067408
8   libpython2.5.dylib.1.0              0x002aac10 0x1a6000 + 1068048
9   libpython2.5.dylib.1.0              0x002aad60 0x1a6000 + 1068384
10  libpython2.5.dylib.1.0              0x002b6f98 0x1a6000 + 1118104
11  python                              0x00001f78 0x1000 + 3960
12  python                              0x00001ec4 0x1000 + 3780
13  python                              0x00001d60 0x1000 + 3424

Thread 0 crashed with ARM Thread State:
    r0: 0x003d8d84    r1: 0x2fffe744      r2: 0x00000000      r3: 0x00000001
    r4: 0x2fffe798    r5: 0x2fffe774      r6: 0x00000000      r7: 0x2fffe760
    r8: 0x2fffe774    r9: 0x3941d6d0     r10: 0x003d8fb8     r11: 0x2fffe724
    ip: 0x00008fe0    sp: 0x2fffe724      lr: 0x003d88c0      pc: 0x00008fe0
  cpsr: 0x80000010

Binary Images:
    0x1000 -     0x1fff +python ??? (???) /usr/bin/python
   0x43000 -    0x4bfff  libgcc_s.1.dylib ??? (???) &lt;ba28db7055013d2a79c7a82df3eb1a88&gt; /usr/lib/libgcc_s.1.dylib
   0xc6000 -    0xc7fff  readline.dylib ??? (???) /usr/lib/python2.5/lib-dynload/readline.dylib
  0x12d000 -   0x13ffff  _ctypes.dylib ??? (???) /usr/lib/python2.5/lib-dynload/_ctypes.dylib
  0x1a6000 -   0x2eefff  libpython2.5.dylib.1.0 ??? (???) /usr/lib/libpython2.5.dylib.1.0
  0x34c000 -   0x371fff  libreadline.5.2.dylib ??? (???) /usr/lib/libreadline.5.2.dylib
  0x3d7000 -   0x3d8fff  libffi.4.dylib ??? (???) /usr/lib/libffi.4.dylib
  0x3e4000 -   0x3e8fff  _struct.dylib ??? (???) /usr/lib/python2.5/lib-dynload/_struct.dylib
  ...

  Changed 8 months ago by GlassesShop

Save money up to 70% from online Glasses Shop to buy discounted eye glasses frames, prescription lenses, fashion reading eyewear, sunglasses.Buy [http://www.visionsking.com eye

glasses] on a online glasses shop Buy glasses on a online glasses shop Online eyewear store eyes need a eyeglasses. Choose a discount glasses I need a discount eyeglasses give you a glasses frames do you want a pair of prescription glasses Buy glasses on a online glasses shop Where to buy cheap glasses? buy prescription sunglasses from glassesshop.com Choose a kids glasses via glasses shop. women are all like to buy women glasses online. man often choose men glasses from glassesshop.com Online cheap eyeglasses give you a cheap eyewear shop You need a discount eyewear Mary like reading glasses Let's choose a reading eyeglasses

  Changed 7 months ago by lxy

Rings symbolize unity, love, faithfulness, devotion, and much more. Behind every couples <a href="http://www.linkslife.co.uk/Charms/">links of london charm</a> are stories of how they got engaged, wedding memories and unique ideas. Feel difficult to find your favorite Tiffany jewelry like earrings? United Kingdom online store Tiffanysjewellery.co.uk is your best destination. <a href="http://www.linkslife.co.uk/Charms/">links of london charms</a> are well known for their highest quality and characteristic designs. Welcome to buy fashion <a href="http://www.linkslife.co.uk/Charms/">Charms</a>, in this page, you will find some classic engravable cuff links, such as Almond Cuff Links, BEAN Cuff Links, Comma cuff links, Eternal Circle Cuff Links, Numerical Cuff Links, Oval Tag Cuff Links and so on.-LXY

  Changed 7 months ago by lxy

buy <a href="http://www.glassesshop.com/">eye glasses</a>. Recommened <a href="http://www.eyewearwiki.com/">eyewear</a> online shop. Choose a <a href="http://www.glassesshop.com/">designer eyeglasses</a> via virtual try on system. Just let <a href="http://www.glassesshop.com/">eyeglass frames</a> be your best daily partners. Choose a suitable <a href="http://www.glassesshop.com/">reading glasses</a> fit your face.-LXY

  Changed 5 months ago by edhardys

cheap ed hardy 50% Off for Ed Hardy Clothing,Christian Audigier Clothes,Ed hardy tattoo,Ed Hardy,Christian Audigier,Ed Hardy Hat,Ed Hardy Shirt,Ed Hardy Hoodies,Don Ed Hardy is known as the godfather of modern tattoo,Wholesale Ed Hardy for his sophistication, depth and sense of experimentation.ed Hardy ed hardy ed hardy clothes

  Changed 5 months ago by sunrise

Save money up to 70% from online Glasses Shop to buy discounted eye glasses frames, prescription lenses, fashion reading eyewear, sunglasses.Buy Air nike Shoes

  Changed 4 months ago by diana77

  Changed 4 months ago by fsfew4527jjjj@…

  • keywords jailbreak, QuickPwn, Cydia, install, BossPrefs, SBSettings added
  • component changed from Telesphoreo to Bootstrap
  • summary changed from bug in python ctypes (presumably underlying libffi unable to create closure) to thanks a lot

Come see the selection of wedding dresses and Tuxedos in the heart of Waikiki, in Honolulu,Hawaii. In that bag was my wholesale wedding dress which had a big stain on it.

Your bridesmaid dresses is made-to-measure from top quality materials.

  Changed 3 months ago by jackiboa

  Changed 3 months ago by jackiboa

This coding is really useful for me. Buy Term Papers | Buy Theses

  Changed 3 months ago by yppsc

  • summary changed from thanks a lot to onExit animations

Great news awaits for S.U.N global players Knight online Noah like me. Upon learning the upcoming event in the Webzen's official website, I as a player would like to share this information and of course want to be a part of this treat from the game Last Chaos Gold publisher. Players across North and South America, Australia as well as Asia will be able to brace this event on November 29 up to December 2, 2009 in Maplestory Mesos ushering the new server Klippe that players can start playing S.U.N from the beginning.e

  Changed 3 months ago by happy

As we pull into the parking lot and search for an open space,nfl jerseys Baltimore Ravens Jerseys we feel the stares of Irish eyes. Baltimore Ravens Jerseys They aren't smiling.Cincinnati Bengals Jerseys Like little green daggers,Cincinnati Bengals Jerseys Indianapolis Colts Jerseysburning a hole in our red No.Indianapolis Colts Jerseys 7 nfl jerseys and Biggest Upset Ever T-shirts.

  Changed 3 months ago by sunrise

Welcome to the site: 20 off nike shoes Hot selling shoes,Cheap Jordan are hot selling,]Nike Air Yeezy hot selling.jordan fusion hot selling, NBA cheap Basketball shoes hot selling,HOT!!Celebrate Christmas with a special gite for your love ones, With FREE gift wrapping,Free Geeeting Card and Free Dilivery,Purchase any items from 20 off nike shoes online, you will get free Cheap Jordan,Niike Air Yeezy Sock.

you will get free Cheap Jordan,Niike Air Yeezy Sock. This is the cheap-jordans website 20 off nike shoes by Zhang

  Changed 2 months ago by temp_lol111

Watch Anime Online the historical idea of cron seems to be flawed). Near as I can currently tell, it actually wakes up every minute, and opens and reads all of the cron files (probably waking the phone up and burning battery power) in order to see if there are any cron jobs it needs to run for that minute. In comparison, launchd seems to correctly sleep until its actually needed.Dress Up Games

  Changed 2 months ago by beiji

In the cold weather, the UGG boots are considered as the best shoes.More and more people like wearing the UGG boots such as the UGG Classic Metallic 5812.With its development ,the UGG boots have lauched different kinds of boots into the fashion market,including the UGG Classic Short Boots and the UGG Women's Highkoo.However,in the fashion world,if you want to be more attractive and elegant,the beautiful shoes are not enough.You have to choose the best stylish handbag to match your shoes.Therefor,the designer replica handbags are very necessary.If you want to buy the best designer cheap handbags,i would like to introduce two famous brand handbags to you.I think there must be one handbag is your favorite.One is the famous brand Versace Handbags,the other is the Ferragamo Handbags.Both of them are the famous brand in the world.Their quality are very good.

  Changed 2 months ago by weddingdress

  Changed 1 month ago by loveugg0

bailey button ugg boots bailey button ugg boots classic tall ugg boots classic tall ugg boots classic short ugg boots classic short ugg boots classic cardy ugg boots classic cardy ugg boots classic mini ugg boots classic mini ugg boots metallic ugg boots metallic ugg boots nightfall ugg boots nightfall ugg boots sundance ii ugg boots sundance ii ugg boots ultra tall ugg boots ultra tall ugg boots ultra short ugg boots ultra short ugg boots ugg boots ugg boots

Note: See TracTickets for help on using tickets.