imessage_database/util/plist.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
/*!
Contains logic to parse text from plist payload data.
*/
use plist::{Dictionary, Value};
use crate::error::plist::PlistParseError;
/// Serialize a message's `payload_data` BLOB from the `NSKeyedArchiver` format to a [`Dictionary`]
/// that follows the references in the XML document's UID pointers. First, we find the root of the
/// document, then walk the structure, promoting values to the places where their pointers are stored.
///
/// For example, a document with a root pointing to some `XML` like
///
/// ```xml
/// <array>
/// <dict>
/// <key>link</key>
/// <dict>
/// <key>CF$UID</key>
/// <integer>2</integer>
/// </dict>
/// </dict>
/// <string>https://chrissardegna.com</string>
/// </array>
/// ```
///
/// Will serialize to a dictionary that looks like:
///
/// ```json
/// {
/// link: https://chrissardegna.com
/// }
/// ```
///
/// Some detail on this format is described [here](https://en.wikipedia.org/wiki/Property_list#Serializing_to_plist):
///
/// > Internally, `NSKeyedArchiver` somewhat recapitulates the binary plist format by
/// > storing an object table array called `$objects` in the dictionary. Everything else,
/// > including class information, is referenced by a UID pointer. A `$top` entry under
/// > the dict points to the top-level object the programmer was meaning to encode.
pub fn parse_plist(plist: &Value) -> Result<Value, PlistParseError> {
let body = plist.as_dictionary().ok_or_else(|| {
PlistParseError::InvalidType("body".to_string(), "dictionary".to_string())
})?;
let objects = extract_array_key(body, "$objects")?;
// Index of root object
let root = extract_uid_key(extract_dictionary(body, "$top")?, "root")?;
follow_uid(objects, root, &None, None)
}
/// Recursively follows pointers in an `NSKeyedArchiver` format, promoting the values
/// to the positions where the pointers live
fn follow_uid<'a>(
objects: &'a Vec<Value>,
root: usize,
parent: &Option<String>,
item: Option<&'a Value>,
) -> Result<Value, PlistParseError> {
let item = match item {
Some(item) => item,
None => objects
.get(root)
.ok_or(PlistParseError::NoValueAtIndex(root))?,
};
match item {
Value::Array(arr) => {
let mut array = vec![];
for item in arr {
if let Some(idx) = item.as_uid() {
array.push(follow_uid(
objects,
idx.get() as usize,
&parent.to_owned(),
None,
)?);
}
}
Ok(plist::Value::Array(array))
}
Value::Dictionary(dict) => {
let mut dictionary = Dictionary::new();
// Handle where type is a Dictionary that points to another single value
if let Some(relative) = dict.get("NS.relative") {
if let Some(idx) = relative.as_uid() {
if let Some(p) = &parent {
dictionary.insert(
p.to_string(),
follow_uid(objects, idx.get() as usize, &Some(p.to_string()), None)?,
);
}
}
}
// Handle the NSDictionary and NSMutableDictionary types
else if dict.contains_key("NS.keys") && dict.contains_key("NS.objects") {
let keys = extract_array_key(dict, "NS.keys")?;
// These are the values in the objects list
let values = extract_array_key(dict, "NS.objects")?;
// Die here if the data is invalid
if keys.len() != values.len() {
return Err(PlistParseError::InvalidDictionarySize(
keys.len(),
values.len(),
));
}
for idx in 0..keys.len() {
let key_index = extract_uid_idx(keys, idx)?;
let value_index = extract_uid_idx(values, idx)?;
let key = extract_string_idx(objects, key_index)?;
dictionary.insert(
key.to_string(),
follow_uid(objects, value_index, &Some(key.to_string()), None)?,
);
}
}
// Handle a normal `{key: value}` style dictionary
else {
for (key, val) in dict {
// Handle skips
if key == "$class" {
continue;
}
// If the value is a pointer, follow it
if let Some(idx) = val.as_uid() {
dictionary.insert(
key.to_owned(),
follow_uid(objects, idx.get() as usize, &Some(key.to_string()), None)?,
);
}
// If the value is not a pointer, try and follow the data itself
else if let Some(p) = &parent {
dictionary.insert(
p.to_owned(),
follow_uid(objects, root, &Some(p.to_string()), Some(val))?,
);
}
}
}
Ok(plist::Value::Dictionary(dictionary))
}
Value::Uid(uid) => follow_uid(objects, uid.get() as usize, &None, None),
_ => Ok(item.to_owned()),
}
}
/// Extract a dictionary from a specific key in a collection
pub fn extract_dictionary<'a>(
body: &'a Dictionary,
key: &str,
) -> Result<&'a Dictionary, PlistParseError> {
body.get(key)
.ok_or_else(|| PlistParseError::MissingKey(key.to_string()))?
.as_dictionary()
.ok_or_else(|| PlistParseError::InvalidType(key.to_string(), "dictionary".to_string()))
}
/// Extract an array from a specific key in a collection
pub fn extract_array_key<'a>(
body: &'a Dictionary,
key: &str,
) -> Result<&'a Vec<Value>, PlistParseError> {
body.get(key)
.ok_or_else(|| PlistParseError::MissingKey(key.to_string()))?
.as_array()
.ok_or_else(|| PlistParseError::InvalidType(key.to_string(), "array".to_string()))
}
/// Extract a Uid from a specific key in a collection
fn extract_uid_key(body: &Dictionary, key: &str) -> Result<usize, PlistParseError> {
Ok(body
.get(key)
.ok_or_else(|| PlistParseError::MissingKey(key.to_string()))?
.as_uid()
.ok_or_else(|| PlistParseError::InvalidType(key.to_string(), "uid".to_string()))?
.get() as usize)
}
/// Extract bytes from a specific key in a collection
pub fn extract_bytes_key<'a>(body: &'a Dictionary, key: &str) -> Result<&'a [u8], PlistParseError> {
body.get(key)
.ok_or_else(|| PlistParseError::MissingKey(key.to_string()))?
.as_data()
.ok_or_else(|| PlistParseError::InvalidType(key.to_string(), "data".to_string()))
}
/// Extract an int from a specific key in a collection
pub fn extract_int_key(body: &Dictionary, key: &str) -> Result<i64, PlistParseError> {
Ok(body
.get(key)
.ok_or_else(|| PlistParseError::MissingKey(key.to_string()))?
.as_real()
.ok_or_else(|| PlistParseError::InvalidType(key.to_string(), "int".to_string()))?
as i64)
}
/// Extract a Uid from a specific index in a collection
fn extract_uid_idx(body: &[Value], idx: usize) -> Result<usize, PlistParseError> {
Ok(body
.get(idx)
.ok_or(PlistParseError::NoValueAtIndex(idx))?
.as_uid()
.ok_or_else(|| PlistParseError::InvalidTypeIndex(idx, "uid".to_string()))?
.get() as usize)
}
/// Extract a string from a specific index in a collection
fn extract_string_idx(body: &[Value], idx: usize) -> Result<&str, PlistParseError> {
body.get(idx)
.ok_or(PlistParseError::NoValueAtIndex(idx))?
.as_string()
.ok_or_else(|| PlistParseError::InvalidTypeIndex(idx, "string".to_string()))
}
/// Extract a string from a key-value pair that looks like `{key: String("value")}`
pub fn get_string_from_dict<'a>(payload: &'a Value, key: &'a str) -> Option<&'a str> {
payload
.as_dictionary()?
.get(key)?
.as_string()
.filter(|s| !s.is_empty())
}
/// Extract a bool from a key-value pair that looks like `{key: true}`
pub fn get_bool_from_dict<'a>(payload: &'a Value, key: &'a str) -> Option<bool> {
payload.as_dictionary()?.get(key)?.as_boolean()
}
/// Extract a string from a key-value pair that looks like `{key: {key: String("value")}}`
pub fn get_string_from_nested_dict<'a>(payload: &'a Value, key: &'a str) -> Option<&'a str> {
payload
.as_dictionary()?
.get(key)?
.as_dictionary()?
.get(key)?
.as_string()
.filter(|s| !s.is_empty())
}
/// Extract a float from a key-value pair that looks like `{key: {key: 1.2}}`
pub fn get_float_from_nested_dict<'a>(payload: &'a Value, key: &'a str) -> Option<f64> {
payload
.as_dictionary()?
.get(key)?
.as_dictionary()?
.get(key)?
.as_real()
}