Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-28 | Remove trailing whitespace errors from all files | 1 | -3/+3 | ||
2014-08-06 | userpref: Fix wrong documentation about return values of ↵ | 1 | -7/+10 | ||
userpref_read_system_buid() Also, add a debug message that will print the actual error code. | |||||
2014-03-22 | Update copyright in various files | 1 | -1/+1 | ||
2014-03-21 | implement global thread safe library initialization | 1 | -4/+0 | ||
2014-03-21 | userpref: Try to output similar error messages in GnuTLS and OpenSSL logic | 1 | -1/+5 | ||
2014-03-21 | userpref: fix GnuTLS key generation | 1 | -7/+3 | ||
2014-03-21 | userpref: merge pair_record_generate_from_device_public_key() into ↵ | 1 | -249/+138 | ||
pair_record_generate_keys_and_certs() | |||||
2014-03-21 | userpref: fix mixed up root/host certificate storage | 1 | -2/+2 | ||
2014-03-21 | userpref: Remove obsolete dict item check as plist_dict_set_item() takes care | 1 | -5/+0 | ||
2014-03-21 | userpref: Fix invalid plist_free() which caused pair process to fail | 1 | -3/+6 | ||
2014-03-21 | userpref: Use correct import helper for keys and certs | 1 | -9/+9 | ||
2014-03-21 | Refactor pair record handling to use new usbmuxd pair record interface | 1 | -569/+420 | ||
This refactoring is mandatory as libimobiledevice should not interact with the pair record configuration directory which is owned by the usbmuxd user. This change also adds compatibility for the native usbmuxd and thus pair records saved by iTunes. | |||||
2014-03-20 | Bump dependency to libplist 1.11 and remove use of "plist_dict_insert_item()" | 1 | -2/+2 | ||
2013-12-04 | userpref.c: removed excessive plist_free of a plist dict item. | 1 | -1/+0 | ||
2013-11-06 | userpref: Fix memory leak in userpref_device_record_get_certs_as_pem() | 1 | -0/+7 | ||
2013-11-06 | userpref: fix incorrect use of BIO_get_mem_data() when generating keys ↵ | 1 | -4/+29 | ||
(closing #32) | |||||
2013-10-25 | userpref: Use RSA_generate_key_ex() in favor of deprecated RSA_generate_key() | 1 | -2/+10 | ||
The RSA_generate_key function has been deprecated in OpenSSL in favour of the newer function RSA_generate_key_ex. RSA_generate_key_ex with its current interface has been part of OpenSSL starting from version 0.9.8 (July 2005). | |||||
2013-10-09 | Remove duplicate newline from debug messages as one is added automatically | 1 | -1/+1 | ||
2013-10-09 | userpref: Free string in internal_set_value() to fix a memory leak | 1 | -0/+2 | ||
2013-10-08 | userpref: Free some plist return values to fix a few memory leaks | 1 | -0/+15 | ||
2013-09-27 | userpref: rename 'index' parameter to silece compiler warning on the Pi | 1 | -2/+2 | ||
2013-09-24 | userpref: return error if remove in userpref_remove_device_record fails | 1 | -3/+7 | ||
2013-09-21 | userpref: Use /var/lib/lockdown as the system-wide pair record path on Linux | 1 | -4/+1 | ||
2013-09-19 | userpref: Use system wide pair record path and add config directory getter | 1 | -73/+3 | ||
2013-09-19 | userpref: fix leak and possible endless recursion in mkdir_with_parents | 1 | -7/+4 | ||
2013-09-17 | userpref: Add missing argument docs for device_record_get_certs_as_pem() | 1 | -0/+1 | ||
2013-09-17 | Make sure to re-use the DeviceCertificate instead of generating a new one ↵ | 1 | -1/+14 | ||
every time This prevented iTunes from using a pairing made by libimobiledevice giving an error that the device sent invalid data. | |||||
2013-09-17 | Fix broken build of GnuTLS and silence two compiler warnings | 1 | -2/+2 | ||
2013-09-17 | userpref: Add copyright reference | 1 | -0/+1 | ||
2013-09-17 | Refactor userpref logic to use plist format and implement trust dialog handling | 1 | -351/+333 | ||
iOS 7 introduced a new pairing workflow which increases security by showing a trust dialog to the user before pairing with the host is allowed. The userpref system was refactored to use the native plist format, too. Configuration files of the native implementations are used on each platform. Former configuration files are no longer in use and can be deleted. | |||||
2013-07-15 | userpref: correctly NULL-terminate arguments in string_concat calls | 1 | -2/+2 | ||
2013-07-13 | common: Fix WIN32 portability for recent userpref security fix | 1 | -1/+6 | ||
2013-07-02 | Bug #331 - Don't create a /tmp/root directory insecurely | 1 | -29/+76 | ||
When finding the user's home directory to generate a subdirectory in $HOME/.config, we would fall back to /tmp if there were no environment variables for HOME or XDG_CONFIG_HOME. Since libimobiledevice gets used by upower, and since upowerd runs as root, this would cause a /tmp/root directory to be created insecurely, leaving upowerd vulnerable to a symlink attack. Now we fall back to getpwuid_r() to find the user's home directory if it is not provided in environment variables - this is the case when upowerd gets run via systemd, for example. The result is that we'll end up creating /root/.config, a safe directory, since regular users cannot create symlinks in /root. In the future we'll need a way for libimobiledevice to find where to store its pairing data on behalf of the console user, rather than writing it to /root. http://libiphone.lighthouseapp.com/projects/27916-libiphone/tickets/331-insecure-tmp-directory-use | |||||
2013-05-23 | Silence compiler warnings for win32 builds | 1 | -0/+2 | ||
2013-04-25 | common: Move debug and userpref code into libinternalcommon | 1 | -0/+1161 | ||