diff options
author | Martin Szulecki | 2012-09-20 22:03:49 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-11-07 22:21:05 +0100 |
commit | 9770d4cd4a50e030b46610073ad9731d09eb2635 (patch) | |
tree | 8ef9edbdd143b94a9deda96655e45977f597c123 | |
parent | ddf459f9aea6965295e69d443a94759cbe8ac4ec (diff) | |
download | idevicerestore-9770d4cd4a50e030b46610073ad9731d09eb2635.tar.gz idevicerestore-9770d4cd4a50e030b46610073ad9731d09eb2635.tar.bz2 |
normal: Implement normal_get_nonce()
-rw-r--r-- | src/normal.c | 43 | ||||
-rw-r--r-- | src/normal.h | 1 |
2 files changed, 44 insertions, 0 deletions
diff --git a/src/normal.c b/src/normal.c index fa5c9a5..2749555 100644 --- a/src/normal.c +++ b/src/normal.c @@ -335,6 +335,49 @@ int normal_enter_recovery(struct idevicerestore_client_t* client) { return 0; } +int normal_get_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size) { + idevice_t device = NULL; + plist_t nonce_node = NULL; + lockdownd_client_t lockdown = NULL; + idevice_error_t device_error = IDEVICE_E_SUCCESS; + lockdownd_error_t lockdown_error = IDEVICE_E_SUCCESS; + + device_error = idevice_new(&device, client->udid); + if (device_error != IDEVICE_E_SUCCESS) { + return -1; + } + + lockdown_error = lockdownd_client_new(device, &lockdown, "idevicerestore"); + if (lockdown_error != LOCKDOWN_E_SUCCESS) { + error("ERROR: Unable to connect to lockdownd\n"); + idevice_free(device); + return -1; + } + + lockdown_error = lockdownd_get_value(lockdown, NULL, "ApNonce", &nonce_node); + if (lockdown_error != LOCKDOWN_E_SUCCESS) { + error("ERROR: Unable to get ApNonce from lockdownd\n"); + lockdownd_client_free(lockdown); + idevice_free(device); + return -1; + } + + if (!nonce_node || plist_get_node_type(nonce_node) != PLIST_DATA) { + error("ERROR: Unable to get nonce\n"); + lockdownd_client_free(lockdown); + idevice_free(device); + return -1; + } + plist_get_data_val(nonce_node, nonce, nonce_size); + plist_free(nonce_node); + + lockdownd_client_free(lockdown); + idevice_free(device); + lockdown = NULL; + device = NULL; + return 0; +} + int normal_get_cpid(struct idevicerestore_client_t* client, uint32_t* cpid) { return 0; } diff --git a/src/normal.h b/src/normal.h index 4ca6664..f6998e0 100644 --- a/src/normal.h +++ b/src/normal.h @@ -47,6 +47,7 @@ int normal_enter_recovery(struct idevicerestore_client_t* client); int normal_get_cpid(struct idevicerestore_client_t* client, uint32_t* cpid); int normal_get_bdid(struct idevicerestore_client_t* client, uint32_t* bdid); int normal_get_ecid(struct idevicerestore_client_t* client, uint64_t* ecid); +int normal_get_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); #ifdef __cplusplus } |