summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-05-15 17:08:05 +0200
committerGravatar Martin Szulecki2010-05-15 17:08:05 +0200
commita78323c5135a33851e7056a2f2fce3c83b5acfbc (patch)
tree55357d4d900dc5e80c93880068c2346e04d2d515 /src
parent21ab0f72efa67879d60174ecd8e76ad59bea43cc (diff)
downloadlibimobiledevice-a78323c5135a33851e7056a2f2fce3c83b5acfbc.tar.gz
libimobiledevice-a78323c5135a33851e7056a2f2fce3c83b5acfbc.tar.bz2
Use a more general implementation to get data classes the device supports
Some devices appear to not have anything set in com.apple.mobile.tethered_sync. Thus we use the more general com.apple.mobile.iTunes domain to query which seems to be supported on all tested devices.
Diffstat (limited to 'src')
-rw-r--r--src/lockdown.c59
1 files changed, 14 insertions, 45 deletions
diff --git a/src/lockdown.c b/src/lockdown.c
index 3f03eab..ae865fb 100644
--- a/src/lockdown.c
+++ b/src/lockdown.c
@@ -1527,8 +1527,7 @@ static void str_remove_spaces(char *source)
}
/**
- * Calculates and returns the data classes the device supports and which are
- * enabled for synchronization from lockdownd.
+ * Calculates and returns the data classes the device supports from lockdownd.
*
* @param client An initialized lockdownd client.
* @param classes A pointer to store an array of class names. The caller is responsible
@@ -1549,19 +1548,17 @@ lockdownd_error_t lockdownd_get_sync_data_classes(lockdownd_client_t client, cha
return LOCKDOWN_E_NO_RUNNING_SESSION;
plist_t dict = NULL;
- plist_dict_iter iter = NULL;
lockdownd_error_t err = LOCKDOWN_E_UNKNOWN_ERROR;
- char *key = NULL;
plist_t value = NULL;
char **newlist = NULL;
- int newcount = 0;
+ char *val = NULL;
*classes = NULL;
*count = 0;
- err = lockdownd_get_value(client, "com.apple.mobile.tethered_sync", NULL, &dict);
+ err = lockdownd_get_value(client, "com.apple.mobile.iTunes", "SyncDataClasses", &dict);
if (err != LOCKDOWN_E_SUCCESS) {
if (dict) {
plist_free(dict);
@@ -1569,54 +1566,26 @@ lockdownd_error_t lockdownd_get_sync_data_classes(lockdownd_client_t client, cha
return err;
}
- if (plist_get_node_type(dict) != PLIST_DICT) {
+ if (plist_get_node_type(dict) != PLIST_ARRAY) {
plist_free(dict);
return LOCKDOWN_E_PLIST_ERROR;
}
- plist_dict_new_iter(dict, &iter);
-
- plist_dict_next_item(dict, iter, &key, &value);
- while (key && value) {
- int add_to_list = 0;
- plist_t disabled = NULL;
-
- disabled = plist_dict_get_item(value, "DisableTethered");
-
- if (!disabled) {
- add_to_list = 1;
- } else {
- if (plist_get_node_type(disabled) == PLIST_BOOLEAN) {
- uint8_t val = 0;
- plist_get_bool_val(disabled, &val);
- add_to_list = val > 0 ? 0 : 1;
- } else {
- uint64_t val = 0;
- plist_get_uint_val(disabled, &val);
- add_to_list = val > 0 ? 0 : 1;
- }
- }
-
- if (add_to_list) {
- newlist = realloc(*classes, sizeof(char*) * (newcount+1));
- str_remove_spaces(key);
- asprintf(&newlist[newcount++], "com.apple.%s", key);
+ while((value = plist_array_get_item(dict, *count)) != NULL) {
+ plist_get_string_val(value, &val);
+ newlist = realloc(*classes, sizeof(char*) * (*count+1));
+ str_remove_spaces(val);
+ asprintf(&newlist[*count], "com.apple.%s", val);
+ free(val);
+ val = NULL;
*classes = newlist;
- }
- free(key);
- key = NULL;
- value = NULL;
- plist_dict_next_item(dict, iter, &key, &value);
+ *count = *count+1;
}
- *count = newcount;
- newlist = realloc(*classes, sizeof(char*) * (newcount+1));
- newlist[newcount] = NULL;
+ newlist = realloc(*classes, sizeof(char*) * (*count+1));
+ newlist[*count] = NULL;
*classes = newlist;
- if (iter) {
- free(iter);
- }
if (dict) {
plist_free(dict);
}