// Copyright 2022 Google LLC // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google LLC nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifdef HAVE_CONFIG_H #include <config.h> // Must come first #endif #include "common/windows/sym_upload_v2_protocol.h" #include <cstdio> #include "common/windows/http_upload.h" #include "common/windows/symbol_collector_client.h" using google_breakpad::CompleteUploadResult; using google_breakpad::HTTPUpload; using google_breakpad::SymbolCollectorClient; using google_breakpad::SymbolStatus; using google_breakpad::UploadUrlResponse; using std::wstring; namespace google_breakpad { static bool SymUploadV2ProtocolSend(const wchar_t* api_url, const wchar_t* api_key, int* timeout_ms, const wstring& debug_file, const wstring& debug_id, const wstring& symbol_filename, const wstring& symbol_type, const wstring& product_name, bool force) { wstring url(api_url); wstring key(api_key); if (!force) { SymbolStatus symbolStatus = SymbolCollectorClient::CheckSymbolStatus( url, key, timeout_ms, debug_file, debug_id); if (symbolStatus == SymbolStatus::Found) { wprintf( L"Symbol file already exists, upload aborted." L" Use \"-f\" to overwrite.\n"); return true; } else if (symbolStatus == SymbolStatus::Unknown) { wprintf(L"Failed to get check for existing symbol.\n"); return false; } } UploadUrlResponse uploadUrlResponse; if (!SymbolCollectorClient::CreateUploadUrl(url, key, timeout_ms, &uploadUrlResponse)) { wprintf(L"Failed to create upload URL.\n"); return false; } wstring signed_url = uploadUrlResponse.upload_url; wstring upload_key = uploadUrlResponse.upload_key; wstring response; int response_code; bool success = HTTPUpload::SendPutRequest( signed_url, symbol_filename, timeout_ms, &response, &response_code); if (!success) { wprintf(L"Failed to send symbol file.\n"); wprintf(L"Response code: %ld\n", response_code); wprintf(L"Response:\n"); wprintf(L"%s\n", response.c_str()); return false; } else if (response_code == 0) { wprintf(L"Failed to send symbol file: No response code\n"); return false; } else if (response_code != 200) { wprintf(L"Failed to send symbol file: Response code %ld\n", response_code); wprintf(L"Response:\n"); wprintf(L"%s\n", response.c_str()); return false; } CompleteUploadResult completeUploadResult = SymbolCollectorClient::CompleteUpload(url, key, timeout_ms, upload_key, debug_file, debug_id, symbol_type, product_name); if (completeUploadResult == CompleteUploadResult::Error) { wprintf(L"Failed to complete upload.\n"); return false; } else if (completeUploadResult == CompleteUploadResult::DuplicateData) { wprintf( L"Uploaded file checksum matched existing file checksum," L" no change necessary.\n"); } else { wprintf(L"Successfully sent the symbol file.\n"); } return true; } } // namespace google_breakpad