Signal-iOS/Signal/src/util/DebugLogs.swift
2024-10-30 13:53:41 -05:00

411 lines
17 KiB
Swift

//
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
import zlib
import SignalServiceKit
import SignalUI
typealias UploadDebugLogsSuccess = (URL) -> Void
typealias UploadDebugLogsFailure = (String, String?) -> Void
@objc
class DebugLogs: NSObject {
private override init() {
super.init()
}
static func submitLogs() {
submitLogsWithSupportTag(nil)
}
@objc
static func submitLogsWithSupportTag(_ tag: String?, completion: (() -> Void)? = nil) {
let submitLogsCompletion = {
if let completion {
// Wait a moment. If the user opens a URL, it needs a moment to complete.
DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
completion()
}
}
}
var supportFilter = "Signal - iOS Debug Log"
if let tag {
supportFilter += " - \(tag)"
}
guard let frontmostViewController = UIApplication.shared.frontmostViewControllerIgnoringAlerts else {
submitLogsCompletion()
return
}
uploadLogsUsingViewController(frontmostViewController) { url in
guard let presentingViewController = UIApplication.shared.frontmostViewControllerIgnoringAlerts else {
submitLogsCompletion()
return
}
let alert = ActionSheetController(
title: NSLocalizedString("DEBUG_LOG_ALERT_TITLE", comment: "Title of the debug log alert."),
message: NSLocalizedString("DEBUG_LOG_ALERT_MESSAGE", comment: "Message of the debug log alert.")
)
if ComposeSupportEmailOperation.canSendEmails {
alert.addAction(ActionSheetAction(
title: NSLocalizedString(
"DEBUG_LOG_ALERT_OPTION_EMAIL",
comment: "Label for the 'email debug log' option of the debug log alert."
),
accessibilityIdentifier: "DebugLogs.send_email",
style: .default,
handler: { _ in
ComposeSupportEmailOperation.sendEmailWithDefaultErrorHandling(
supportFilter: supportFilter,
logUrl: url
)
submitLogsCompletion()
}
))
}
alert.addAction(ActionSheetAction(
title: NSLocalizedString(
"DEBUG_LOG_ALERT_OPTION_COPY_LINK",
comment: "Label for the 'copy link' option of the debug log alert."
),
accessibilityIdentifier: "DebugLogs.copy_link",
style: .default,
handler: { _ in
UIPasteboard.general.string = url.absoluteString
submitLogsCompletion()
}
))
alert.addAction(ActionSheetAction(
title: NSLocalizedString(
"DEBUG_LOG_ALERT_OPTION_SHARE",
comment: "Label for the 'Share' option of the debug log alert."
),
accessibilityIdentifier: "DebugLogs.share",
style: .default,
handler: { _ in
AttachmentSharing.showShareUI(
for: url.absoluteString,
sender: nil,
completion: submitLogsCompletion
)
}
))
alert.addAction(ActionSheetAction(
title: CommonStrings.cancelButton,
accessibilityIdentifier: "OWSActionSheets.cancel",
style: .cancel,
handler: { _ in submitLogsCompletion() }
))
presentingViewController.presentActionSheet(alert)
}
}
private static func uploadLogsUsingViewController(_ viewController: UIViewController, completion: @escaping (URL) -> Void) {
AssertIsOnMainThread()
ModalActivityIndicatorViewController.present(
fromViewController: viewController,
canCancel: true,
backgroundBlock: { modalActivityIndicator in
uploadLogs(
success: { url in
AssertIsOnMainThread()
guard !modalActivityIndicator.wasCancelled else { return }
modalActivityIndicator.dismiss {
completion(url)
}
},
failure: { localizedErrorMessage, logArchiveOrDirectoryPath in
AssertIsOnMainThread()
guard !modalActivityIndicator.wasCancelled else {
if let logArchiveOrDirectoryPath {
OWSFileSystem.deleteFile(logArchiveOrDirectoryPath)
}
return
}
modalActivityIndicator.dismiss {
DebugLogs.showFailureAlert(
with: localizedErrorMessage,
logArchiveOrDirectoryPath: logArchiveOrDirectoryPath
)
}
}
)
}
)
}
// MARK: - Collecting & uploading
private struct NoLogsError: Error {
var errorString: String {
OWSLocalizedString(
"DEBUG_LOG_ALERT_NO_LOGS",
comment: "Error indicating that no debug logs could be found."
)
}
}
private static func collectLogs() -> Result<String, NoLogsError> {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy.MM.dd hh.mm.ss"
let dateString = dateFormatter.string(from: Date())
let logsName = "\(dateString) \(UUID().uuidString)"
let zipDirUrl = URL(fileURLWithPath: OWSTemporaryDirectory()).appendingPathComponent(logsName)
let zipDirPath = zipDirUrl.path
OWSFileSystem.ensureDirectoryExists(zipDirPath)
let logFilePaths = DebugLogger.shared.allLogFilePaths
if logFilePaths.isEmpty {
return .failure(NoLogsError())
}
for logFilePath in logFilePaths {
let lastLogFilePathComponent = URL(fileURLWithPath: logFilePath).lastPathComponent
let copyFilePath = zipDirUrl.appendingPathComponent(lastLogFilePathComponent).path
do {
try FileManager.default.copyItem(atPath: logFilePath, toPath: copyFilePath)
} catch {
Logger.error("could not copy log file at \(logFilePath): \(error)")
// Write the error to the file that would have been copied.
try? error.localizedDescription.write(toFile: copyFilePath, atomically: true, encoding: .utf8)
}
OWSFileSystem.protectFileOrFolder(atPath: copyFilePath)
}
return .success(zipDirPath)
}
public static func exportLogs() {
AssertIsOnMainThread()
switch collectLogs() {
case let .success(logsDirPath):
AttachmentSharing.showShareUI(for: URL(fileURLWithPath: logsDirPath), sender: nil) {
OWSFileSystem.deleteFile(logsDirPath)
}
case let .failure(error):
Self.showFailureAlert(with: error.errorString, logArchiveOrDirectoryPath: nil)
return
}
}
static func uploadLogs(
success: @escaping UploadDebugLogsSuccess,
failure: @escaping UploadDebugLogsFailure
) {
// Ensure that we call the completions on the main thread.
let wrappedSuccess: UploadDebugLogsSuccess = { url in
DispatchMainThreadSafe { success(url) }
}
let wrappedFailure: UploadDebugLogsFailure = { localizedErrorMessage, logArchiveOrDirectoryPath in
DispatchMainThreadSafe { failure(localizedErrorMessage, logArchiveOrDirectoryPath) }
}
// Phase 0. Flush any pending logs to disk.
Logger.info("About to zip debug logs")
Logger.flush()
// Phase 1. Make a local copy of all of the log files.
let zipDirPath: String
switch collectLogs() {
case let .success(logsDirPath):
zipDirPath = logsDirPath
case let .failure(error):
wrappedFailure(error.errorString, nil)
return
}
// Phase 2. Zip up the log files.
let zipDirUrl = URL(fileURLWithPath: zipDirPath)
let zipFileUrl = URL(fileURLWithPath: zipDirPath.appendingFileExtension("zip"))
let fileCoordinator = NSFileCoordinator()
var zipError: NSError?
fileCoordinator.coordinate(readingItemAt: zipDirUrl, options: [.forUploading], error: &zipError) { temporaryFileUrl in
do {
try FileManager.default.copyItem(at: temporaryFileUrl, to: zipFileUrl)
} catch {
Logger.warn("Couldn't copy zipped file: \(error)")
}
}
if zipError != nil || !OWSFileSystem.fileOrFolderExists(url: zipFileUrl) {
let errorMessage = OWSLocalizedString(
"DEBUG_LOG_ALERT_COULD_NOT_PACKAGE_LOGS",
comment: "Error indicating that the debug logs could not be packaged."
)
wrappedFailure(errorMessage, zipDirPath)
return
}
OWSFileSystem.protectFileOrFolder(atPath: zipFileUrl.path)
OWSFileSystem.deleteFile(zipDirPath)
// Phase 3. Upload the log files.
DebugLogUploader.uploadFile(
fileUrl: zipFileUrl,
mimeType: MimeType.applicationZip.rawValue
).done(on: DispatchQueue.global()) { url in
OWSFileSystem.deleteFile(zipFileUrl.path)
wrappedSuccess(url)
}.catch(on: DispatchQueue.global()) { error in
let errorMessage = OWSLocalizedString(
"DEBUG_LOG_ALERT_ERROR_UPLOADING_LOG",
comment: "Error indicating that a debug log could not be uploaded."
)
wrappedFailure(errorMessage, zipFileUrl.path)
}
}
private static func showFailureAlert(with message: String, logArchiveOrDirectoryPath: String?) {
let deleteArchive: (String) -> Void = { filePath in
OWSFileSystem.deleteFile(filePath)
}
let alert = ActionSheetController(title: nil, message: message)
if let logArchiveOrDirectoryPath {
alert.addAction(.init(
title: OWSLocalizedString(
"DEBUG_LOG_ALERT_OPTION_EXPORT_LOG_ARCHIVE",
comment: "Label for the 'Export Logs' fallback option for the alert when debug log uploading fails."
),
accessibilityIdentifier: "export_log_archive"
) { _ in
AttachmentSharing.showShareUI(
for: URL(fileURLWithPath: logArchiveOrDirectoryPath),
sender: nil,
completion: {
deleteArchive(logArchiveOrDirectoryPath)
}
)
})
}
alert.addAction(.init(title: CommonStrings.okButton, accessibilityIdentifier: "ok") { _ in
if let logArchiveOrDirectoryPath {
deleteArchive(logArchiveOrDirectoryPath)
}
})
let presentingViewController = UIApplication.shared.frontmostViewControllerIgnoringAlerts
presentingViewController?.presentActionSheet(alert)
}
}
private enum DebugLogUploader {
static func uploadFile(fileUrl: URL, mimeType: String) -> Promise<URL> {
firstly(on: DispatchQueue.global()) {
getUploadParameters(fileUrl: fileUrl)
}.then(on: DispatchQueue.global()) { (uploadParameters: UploadParameters) -> Promise<URL> in
uploadFile(fileUrl: fileUrl, mimeType: mimeType, uploadParameters: uploadParameters)
}
}
private static func buildOWSURLSession() -> OWSURLSessionProtocol {
OWSURLSession(
securityPolicy: OWSURLSession.defaultSecurityPolicy,
configuration: OWSURLSession.defaultConfigurationWithoutCaching
)
}
private static func getUploadParameters(fileUrl: URL) -> Promise<UploadParameters> {
let url = URL(string: "https://debuglogs.org/")!
return firstly(on: DispatchQueue.global()) { () -> Promise<(HTTPResponse)> in
buildOWSURLSession().dataTaskPromise(url.absoluteString, method: .get, ignoreAppExpiry: true)
}.map(on: DispatchQueue.global()) { (response: HTTPResponse) -> (UploadParameters) in
guard let responseObject = response.responseBodyJson else {
throw OWSAssertionError("Invalid response.")
}
guard let params = ParamParser(responseObject: responseObject) else {
throw OWSAssertionError("Invalid response: \(String(describing: responseObject))")
}
let uploadUrl: String = try params.required(key: "url")
let fieldMap: [String: String] = try params.required(key: "fields")
guard !fieldMap.isEmpty else {
throw OWSAssertionError("Invalid response: \(String(describing: responseObject))")
}
for (key, value) in fieldMap {
guard nil != key.nilIfEmpty,
nil != value.nilIfEmpty else {
throw OWSAssertionError("Invalid response: \(String(describing: responseObject))")
}
}
guard let rawUploadKey = fieldMap["key"]?.nilIfEmpty else {
throw OWSAssertionError("Invalid response: \(String(describing: responseObject))")
}
guard let fileExtension = (fileUrl.lastPathComponent as NSString).pathExtension.nilIfEmpty else {
throw OWSAssertionError("Invalid fileUrl: \(fileUrl)")
}
guard let uploadKey: String = (rawUploadKey as NSString).appendingPathExtension(fileExtension) else {
throw OWSAssertionError("Could not modify uploadKey.")
}
var orderedFieldMap = OrderedDictionary<String, String>()
for (key, value) in fieldMap {
orderedFieldMap.append(key: key, value: value)
}
orderedFieldMap.replace(key: "key", value: uploadKey)
return UploadParameters(uploadUrl: uploadUrl, fieldMap: orderedFieldMap, uploadKey: uploadKey)
}
}
private struct UploadParameters {
let uploadUrl: String
let fieldMap: OrderedDictionary<String, String>
let uploadKey: String
}
private static func uploadFile(
fileUrl: URL,
mimeType: String,
uploadParameters: UploadParameters
) -> Promise<URL> {
firstly(on: DispatchQueue.global()) { () -> Promise<(HTTPResponse)> in
let urlSession = buildOWSURLSession()
guard let url = URL(string: uploadParameters.uploadUrl) else {
throw OWSAssertionError("Invalid url: \(uploadParameters.uploadUrl)")
}
let request = URLRequest(url: url)
var textParts = uploadParameters.fieldMap
textParts.append(key: "Content-Type", value: mimeType)
return urlSession.multiPartUploadTaskPromise(request: request,
fileUrl: fileUrl,
name: "file",
fileName: fileUrl.lastPathComponent,
mimeType: mimeType,
textParts: textParts,
ignoreAppExpiry: true,
progress: nil)
}.map(on: DispatchQueue.global()) { (response: HTTPResponse) -> URL in
let statusCode = response.responseStatusCode
// We'll accept any 2xx status code.
let statusCodeClass = statusCode - (statusCode % 100)
guard statusCodeClass == 200 else {
Logger.error("statusCode: \(statusCode), \(statusCodeClass)")
Logger.error("headers: \(response.responseHeaders)")
throw OWSAssertionError("Invalid status code: \(statusCode), \(statusCodeClass)")
}
let urlString = "https://debuglogs.org/\(uploadParameters.uploadKey)"
guard let url = URL(string: urlString) else {
throw OWSAssertionError("Invalid url: \(urlString)")
}
return url
}
}
}