This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author EdSchouten
Recipients EdSchouten
Date 2016-10-22.05:46:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477115195.1.0.580287867342.issue28502@psf.upfronthosting.co.za>
In-reply-to
Content
CloudABI is a POSIX-like strongly sandboxed runtime environment, for which we got Python to work (https://mail.python.org/pipermail/python-dev/2016-July/145708.html). Patches for this are slowly being upstreamed.

CloudABI uses a capability-based security model, similar to Capsicum (https://www.cl.cam.ac.uk/research/security/capsicum/). With this model, the file system can only be accessed by using file descriptors to directories. Files inside of them can be used by using openat() (in Python: os.open(dirfd=...). This means that there is no need to provide support for process working directories. chdir() is therefore entirely absent.

It looks like chdir() is only used by Python in its posixmodule. The attached patch adds a new Autoconf check and adds the proper #if logic around its implementation.

Changes to the Autoconf/Automake files are not provided by this patch, as my versions of these tools generate files containing unnecessary changes.
History
Date User Action Args
2016-10-22 05:46:35EdSchoutensetrecipients: + EdSchouten
2016-10-22 05:46:35EdSchoutensetmessageid: <1477115195.1.0.580287867342.issue28502@psf.upfronthosting.co.za>
2016-10-22 05:46:35EdSchoutenlinkissue28502 messages
2016-10-22 05:46:34EdSchoutencreate