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
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <Foundation/Foundation.h>
#include <iostream>
#include "base/apple/foundation_util.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/strings/sys_string_conversions.h"
#import "chrome/updater/mac/setup/ks_tickets.h"
@interface KSTicket (TestingTool)
@end
@implementation KSTicket (TestingTool)
- (instancetype)initWithAppId:(NSString*)appId
version:(NSString*)version
versionPath:(NSString*)versionPath
versionKey:(NSString*)versionKey
ecp:(NSString*)ecp
tag:(NSString*)tag
tagPath:(NSString*)tagPath
tagKey:(NSString*)tagKey
brandCode:(NSString*)brandCode
brandPath:(NSString*)brandPath
brandKey:(NSString*)brandKey
cohort:(NSString*)cohort
cohortHint:(NSString*)cohortHint
cohortName:(NSString*)cohortName
creationDate:(NSDate*)creationData {
if ((self = [super init])) {
productID_ = appId;
version_ = version;
if (ecp.length) {
existenceChecker_ = [[KSPathExistenceChecker alloc]
initWithFilePath:base::apple::NSStringToFilePath(ecp)];
}
tag_ = tag;
if (tagPath.length) {
tagPath_ = tagPath;
}
if (tagKey.length) {
tagKey_ = tagKey;
}
brandCode_ = brandCode;
if (brandPath.length) {
brandPath_ = brandPath;
}
if (brandKey.length) {
brandKey_ = brandKey;
}
serverURL_ =
[NSURL URLWithString:@"https://tools.google.com/service/update"];
serverType_ = @"Omaha";
versionPath_ = versionPath;
versionKey_ = versionKey;
cohort_ = cohort;
cohortHint_ = cohortHint;
cohortName_ = cohortName;
creationDate_ = creationData;
ticketVersion_ = 1;
}
return self;
}
@end
namespace updater {
namespace {
constexpr char kPlistPathSwtich[] = "plist";
constexpr char kStorePathSwitch[] = "store";
void Usage() {
std::cerr
<< "Usage:" << std::endl
<< " Read Keystone ticket store: " << std::endl
<< " keystone_ticket_tool --store=<path/to/Keystone.ticketstore>"
<< std::endl
<< std::endl
<< " Convert plist ticket store to Keystone ticket store: "
<< std::endl
<< " keystone_ticket_tool --plist=<path/to/ticketstore.plist> "
<< "--store=<path/to/Keystone.ticketstore>" << std::endl
<< std::endl;
}
int ReadTicketStore(const base::FilePath& path) {
@autoreleasepool {
NSDictionary<NSString*, KSTicket*>* store =
[KSTicketStore readStoreWithPath:base::apple::FilePathToNSString(path)];
for (NSString* key in store) {
std::cout << "------ Key " << base::SysNSStringToUTF8(key) << std::endl
<< base::SysNSStringToUTF8(
[[store objectForKey:key] description])
<< std::endl
<< std::endl;
}
}
return 0;
}
NSDictionary<NSString*, KSTicket*>* ReadPlistTicketStore(
const base::FilePath& input) {
NSError* error = nil;
NSDictionary<NSString*, NSDictionary<NSString*, id>*>* tickets_data =
[NSDictionary
dictionaryWithContentsOfURL:base::apple::FilePathToNSURL(input)
error:&error];
if (error) {
std::cerr << "Error read store: "
<< base::SysNSStringToUTF8(error.description) << std::endl;
return nil;
}
NSMutableDictionary* tickets = [NSMutableDictionary dictionary];
[tickets_data
enumerateKeysAndObjectsUsingBlock:^(id key, id ticket_data, BOOL* stop) {
tickets[key] =
[[KSTicket alloc] initWithAppId:key
version:ticket_data[@"Version"]
versionPath:ticket_data[@"VersionPath"]
versionKey:ticket_data[@"VersionKey"]
ecp:ticket_data[@"ExistenceChecker"]
tag:ticket_data[@"Tag"]
tagPath:ticket_data[@"TagPath"]
tagKey:ticket_data[@"TagKey"]
brandCode:ticket_data[@"BrandCode"]
brandPath:ticket_data[@"BrandPath"]
brandKey:ticket_data[@"BrandKey"]
cohort:ticket_data[@"Cohort"]
cohortHint:ticket_data[@"CohortHint"]
cohortName:ticket_data[@"CohortName"]
creationDate:ticket_data[@"CreationDate"]];
}];
return tickets;
}
int ConvertTicketStore(const base::FilePath& input,
const base::FilePath& output) {
@autoreleasepool {
NSDictionary<NSString*, KSTicket*>* store = ReadPlistTicketStore(input);
if (!store) {
std::cerr << "Failed to read input ticket store, is it a valid plist?"
<< std::endl;
return 1;
}
NSError* error;
NSData* storeData = [NSKeyedArchiver archivedDataWithRootObject:store
requiringSecureCoding:YES
error:&error];
if (!storeData) {
std::cerr << "Input ticket store data is invalid: "
<< base::SysNSStringToUTF8(error.description) << std::endl;
return 1;
}
if (![storeData writeToFile:base::apple::FilePathToNSString(output)
options:NSDataWritingAtomic
error:&error]) {
std::cerr << "Failed to write output: "
<< base::SysNSStringToUTF8(error.description) << std::endl;
return 1;
}
return 0;
}
}
} // namespace
} // namespace updater
int main(int argc, char* argv[]) {
base::CommandLine::Init(argc, argv);
const base::CommandLine* command_line =
base::CommandLine::ForCurrentProcess();
if (!command_line->HasSwitch(updater::kStorePathSwitch)) {
updater::Usage();
return 1;
}
if (command_line->HasSwitch(updater::kPlistPathSwtich)) {
return updater::ConvertTicketStore(
command_line->GetSwitchValuePath(updater::kPlistPathSwtich),
command_line->GetSwitchValuePath(updater::kStorePathSwitch));
} else {
return updater::ReadTicketStore(
command_line->GetSwitchValuePath(updater::kStorePathSwitch));
}
}
|