summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Aaron Burghardt2013-08-07 05:42:36 -0400
committerGravatar Martin Szulecki2013-08-08 15:16:53 +0200
commit3d1de1b31ec2bd5e9db93dea8522743b1627675e (patch)
tree96f89ed168e5c3fd8f3849f982233182bfc8a714
parente7e9bc8a674b6d93c28c0d2416755c0ae1c8d146 (diff)
downloadlibimobiledevice-3d1de1b31ec2bd5e9db93dea8522743b1627675e.tar.gz
libimobiledevice-3d1de1b31ec2bd5e9db93dea8522743b1627675e.tar.bz2
idevicebackup2: Implement support for encrypted backups in Unback command
Allows to specify a password for the Unback request. It is also sent in the main message, not in an options dictionary.
-rw-r--r--src/mobilebackup2.c6
-rw-r--r--tools/idevicebackup2.c10
2 files changed, 15 insertions, 1 deletions
diff --git a/src/mobilebackup2.c b/src/mobilebackup2.c
index 594ba84..577901e 100644
--- a/src/mobilebackup2.c
+++ b/src/mobilebackup2.c
@@ -458,6 +458,12 @@ mobilebackup2_error_t mobilebackup2_send_request(mobilebackup2_client_t client,
if (options) {
plist_dict_insert_item(dict, "Options", plist_copy(options));
}
+ if (!strcmp(request, "Unback") && options) {
+ plist_t password = plist_dict_get_item(options, "Password");
+ if (password) {
+ plist_dict_insert_item(dict, "Password", plist_copy(password));
+ }
+ }
mobilebackup2_error_t err = mobilebackup2_send_message(client, request, dict);
plist_free(dict);
diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c
index b4ef94f..1aa03f5 100644
--- a/tools/idevicebackup2.c
+++ b/tools/idevicebackup2.c
@@ -1810,7 +1810,15 @@ checkpoint:
break;
case CMD_UNBACK:
PRINT_VERBOSE(1, "Starting to unpack backup...\n");
- err = mobilebackup2_send_request(mobilebackup2, "Unback", udid, source_udid, NULL);
+ if (backup_password != NULL) {
+ opts = plist_new_dict();
+ plist_dict_insert_item(opts, "Password", plist_new_string(backup_password));
+ }
+ PRINT_VERBOSE(1, "Backup password: %s\n", (backup_password == NULL ? "No":"Yes"));
+ err = mobilebackup2_send_request(mobilebackup2, "Unback", udid, source_udid, opts);
+ if (backup_password !=NULL) {
+ plist_free(opts);
+ }
if (err != MOBILEBACKUP2_E_SUCCESS) {
printf("Error requesting unback operation from device, error code %d\n", err);
cmd = CMD_LEAVE;