From bae51b6a9e09694ed517e0c03fbf0bf660ceb271 Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Fri, 16 Aug 2024 11:04:05 +1000 Subject: [PATCH] Reworked some logic to use safer functions to navigate the memory --- Session/Utilities/IP2Country.swift | 33 ++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/Session/Utilities/IP2Country.swift b/Session/Utilities/IP2Country.swift index 4de7b115d..59fdf72d5 100644 --- a/Session/Utilities/IP2Country.swift +++ b/Session/Utilities/IP2Country.swift @@ -96,24 +96,39 @@ public enum IP2Country { return [] } - var targetCount: Int32 = 0 - _ = withUnsafeMutableBytes(of: &targetCount) { countBuffer in - targetData.copyBytes(to: countBuffer, from: ...size) - } + var targetCount: Int32 = targetData + .prefix(MemoryLayout.size) + .withUnsafeBytes { bytes -> Int32 in + guard + bytes.count >= MemoryLayout.size, + let baseAddress: UnsafePointer = bytes + .bindMemory(to: Int32.self) + .baseAddress + else { return 0 } + + return baseAddress.pointee + } - /// Move past the count - targetData = targetData.advanced(by: MemoryLayout.size) + /// Move past the count and extract the content data + targetData = targetData.dropFirst(MemoryLayout.size) + let contentData: Data = targetData.prefix(Int(targetCount)) guard - targetData.count >= targetCount, - let contentString: String = String(data: Data(targetData[.. targetData.count { + Log.error(.ip2Country, "\(name) suggested it had mare data then was actually available (\(targetCount) vs. \(targetData.count)).") + } + /// Move past the data and return the result - targetData = targetData.advanced(by: Int(targetCount)) + targetData = targetData.dropFirst(Int(targetCount)) return contentString.components(separatedBy: "\0\0") }