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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/win/win_util.h"
#include <windows.h>
#include <aclapi.h>
#include <combaseapi.h>
#include <objidl.h>
#include <regstr.h>
#include <shellapi.h>
#include <shlobj.h>
#include <winhttp.h>
#include <wrl/client.h>
#include <wtsapi32.h>
#include <algorithm>
#include <cstdlib>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/base_paths_win.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/containers/flat_map.h"
#include "base/containers/flat_set.h"
#include "base/debug/alias.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/callback_helpers.h"
#include "base/functional/function_ref.h"
#include "base/logging.h"
#include "base/memory/free_deleter.h"
#include "base/path_service.h"
#include "base/process/kill.h"
#include "base/process/launch.h"
#include "base/process/process.h"
#include "base/process/process_iterator.h"
#include "base/scoped_native_library.h"
#include "base/strings/strcat.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/waitable_event.h"
#include "base/system/sys_info.h"
#include "base/time/time.h"
#include "base/uuid.h"
#include "base/version.h"
#include "base/win/atl.h"
#include "base/win/elevation_util.h"
#include "base/win/registry.h"
#include "base/win/scoped_bstr.h"
#include "base/win/scoped_handle.h"
#include "base/win/scoped_localalloc.h"
#include "base/win/scoped_process_information.h"
#include "base/win/scoped_variant.h"
#include "base/win/startup_information.h"
#include "chrome/enterprise_companion/installer_paths.h"
#include "chrome/updater/branded_constants.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/registration_data.h"
#include "chrome/updater/updater_branding.h"
#include "chrome/updater/updater_scope.h"
#include "chrome/updater/updater_version.h"
#include "chrome/updater/util/util.h"
#include "chrome/updater/util/win_util.h"
#include "chrome/updater/win/scoped_handle.h"
#include "chrome/updater/win/user_info.h"
#include "chrome/updater/win/win_constants.h"
#include "chrome/windows_services/service_program/scoped_client_impersonation.h"
#include "third_party/abseil-cpp/absl/cleanup/cleanup.h"
namespace updater {
namespace {
HResultOr<bool> IsUserRunningSplitToken() {
HANDLE token = NULL;
if (!::OpenProcessToken(::GetCurrentProcess(), TOKEN_QUERY, &token)) {
return base::unexpected(HRESULTFromLastError());
}
base::win::ScopedHandle token_holder(token);
TOKEN_ELEVATION_TYPE elevation_type = TokenElevationTypeDefault;
DWORD size_returned = 0;
if (!::GetTokenInformation(token_holder.Get(), TokenElevationType,
&elevation_type, sizeof(elevation_type),
&size_returned)) {
return base::unexpected(HRESULTFromLastError());
}
bool is_split_token = elevation_type == TokenElevationTypeFull ||
elevation_type == TokenElevationTypeLimited;
CHECK(is_split_token || elevation_type == TokenElevationTypeDefault);
return base::ok(is_split_token);
}
HRESULT GetSidIntegrityLevel(PSID sid, MANDATORY_LEVEL* level) {
if (!::IsValidSid(sid)) {
return E_FAIL;
}
SID_IDENTIFIER_AUTHORITY* authority = ::GetSidIdentifierAuthority(sid);
if (!authority) {
return E_FAIL;
}
static constexpr SID_IDENTIFIER_AUTHORITY kMandatoryLabelAuth =
SECURITY_MANDATORY_LABEL_AUTHORITY;
if (UNSAFE_TODO(std::memcmp(authority, &kMandatoryLabelAuth,
sizeof(SID_IDENTIFIER_AUTHORITY)))) {
return E_FAIL;
}
PUCHAR count = ::GetSidSubAuthorityCount(sid);
if (!count || *count != 1) {
return E_FAIL;
}
DWORD* rid = ::GetSidSubAuthority(sid, 0);
if (!rid) {
return E_FAIL;
}
if ((*rid & 0xFFF) != 0 || *rid > SECURITY_MANDATORY_PROTECTED_PROCESS_RID) {
return E_FAIL;
}
*level = static_cast<MANDATORY_LEVEL>(*rid >> 12);
return S_OK;
}
// Gets the mandatory integrity level of a process.
HRESULT GetProcessIntegrityLevel(DWORD process_id, MANDATORY_LEVEL* level) {
HANDLE process = ::OpenProcess(PROCESS_QUERY_INFORMATION, false, process_id);
if (!process) {
return HRESULTFromLastError();
}
base::win::ScopedHandle process_holder(process);
HANDLE token = NULL;
if (!::OpenProcessToken(process_holder.Get(),
TOKEN_QUERY | TOKEN_QUERY_SOURCE, &token)) {
return HRESULTFromLastError();
}
base::win::ScopedHandle token_holder(token);
DWORD label_size = 0;
if (::GetTokenInformation(token_holder.Get(), TokenIntegrityLevel, nullptr, 0,
&label_size) ||
::GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
return E_FAIL;
}
std::unique_ptr<TOKEN_MANDATORY_LABEL, base::FreeDeleter> label(
static_cast<TOKEN_MANDATORY_LABEL*>(std::malloc(label_size)));
if (!::GetTokenInformation(token_holder.Get(), TokenIntegrityLevel,
label.get(), label_size, &label_size)) {
return HRESULTFromLastError();
}
return GetSidIntegrityLevel(label->Label.Sid, level);
}
bool IsExplorerRunningAtMediumOrLower() {
base::NamedProcessIterator iter(L"EXPLORER.EXE", nullptr);
while (const base::ProcessEntry* process_entry = iter.NextProcessEntry()) {
MANDATORY_LEVEL level = MandatoryLevelUntrusted;
if (SUCCEEDED(GetProcessIntegrityLevel(process_entry->pid(), &level)) &&
level <= MandatoryLevelMedium) {
return true;
}
}
return false;
}
// Creates a WS_POPUP | WS_VISIBLE with zero
// size, of the STATIC WNDCLASS. It uses the default running EXE module
// handle for creation.
//
// A visible centered foreground window is needed as the parent in Windows 7 and
// above, to allow the UAC prompt to come up in the foreground, centered.
// Otherwise, the elevation prompt will be minimized on the taskbar. A zero size
// window works. A plain vanilla WS_POPUP allows the window to be free of
// adornments. WS_EX_TOOLWINDOW prevents the task bar from showing the
// zero-sized window.
//
// Returns NULL on failure. Call ::GetLastError() to get extended error
// information on failure.
HWND CreateForegroundParentWindowForUAC() {
CWindow foreground_parent;
if (foreground_parent.Create(L"STATIC", NULL, NULL, NULL,
WS_POPUP | WS_VISIBLE, WS_EX_TOOLWINDOW)) {
foreground_parent.CenterWindow(NULL);
::SetForegroundWindow(foreground_parent);
}
return foreground_parent.Detach();
}
// Compares the OS, service pack, and build numbers using `::VerifyVersionInfo`,
// in accordance with `type_mask` and `oper`.
bool CompareOSVersionsInternal(const OSVERSIONINFOEX& os,
DWORD type_mask,
BYTE oper) {
CHECK(type_mask);
CHECK(oper);
ULONGLONG cond_mask = 0;
cond_mask = ::VerSetConditionMask(cond_mask, VER_MAJORVERSION, oper);
cond_mask = ::VerSetConditionMask(cond_mask, VER_MINORVERSION, oper);
cond_mask = ::VerSetConditionMask(cond_mask, VER_SERVICEPACKMAJOR, oper);
cond_mask = ::VerSetConditionMask(cond_mask, VER_SERVICEPACKMINOR, oper);
cond_mask = ::VerSetConditionMask(cond_mask, VER_BUILDNUMBER, oper);
// `::VerifyVersionInfo` could return `FALSE` due to an error other than
// `ERROR_OLD_WIN_VERSION`. We do not handle that case here.
// https://msdn.microsoft.com/ms725492.
OSVERSIONINFOEX os_in = os;
return ::VerifyVersionInfo(&os_in, type_mask, cond_mask);
}
std::optional<int> DaynumFromDWORD(DWORD value) {
const int daynum = static_cast<int>(value);
// When daynum is positive, it is the number of days since January 1, 2007.
// It's reasonable to only accept value between 3000 (maps to Mar 20, 2015)
// and 50000 (maps to Nov 24, 2143).
// -1 is special value for first install.
return daynum == -1 || (daynum >= 3000 && daynum <= 50000)
? std::make_optional(daynum)
: std::nullopt;
}
std::optional<std::vector<std::wstring>> CommandLineToArgv(
const std::wstring& command_line) {
int num_args = 0;
base::win::ScopedLocalAllocTyped<wchar_t*> argv(
::CommandLineToArgvW(&command_line[0], &num_args));
if (!argv || num_args < 1) {
LOG(ERROR) << __func__ << "!argv || num_args < 1: " << num_args;
return std::nullopt;
}
// SAFETY: `num_args` describes the valid portion of `argv`.
return UNSAFE_BUFFERS(
std::vector<std::wstring>(argv.get(), argv.get() + num_args));
}
[[nodiscard]] bool IsServicePresentNonAdmin(const std::wstring& service_name) {
ScopedScHandle scm(
::OpenSCManager(nullptr, nullptr, SC_MANAGER_CONNECT | GENERIC_READ));
if (!scm.IsValid()) {
return false;
}
ScopedScHandle service(
::OpenService(scm.Get(), service_name.c_str(), SERVICE_QUERY_CONFIG));
return service.IsValid() || (::GetLastError() == ERROR_ACCESS_DENIED);
}
[[nodiscard]] bool IsServicePresentAdmin(const std::wstring& service_name) {
ScopedScHandle scm(::OpenSCManager(
nullptr, nullptr, SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE));
if (!scm.IsValid()) {
return false;
}
ScopedScHandle service(
::OpenService(scm.Get(), service_name.c_str(),
SERVICE_QUERY_CONFIG | SERVICE_CHANGE_CONFIG));
if (!service.IsValid()) {
return ::GetLastError() == ERROR_ACCESS_DENIED;
}
// Detects the specific case where a service shows as present, but is marked
// for deletion.
return ::ChangeServiceConfig(service.Get(), SERVICE_NO_CHANGE,
SERVICE_NO_CHANGE, SERVICE_NO_CHANGE, nullptr,
nullptr, nullptr, nullptr, nullptr, nullptr,
nullptr) ||
(::GetLastError() != ERROR_SERVICE_MARKED_FOR_DELETE);
}
} // namespace
NamedObjectAttributes::NamedObjectAttributes(const std::wstring& name,
const CSecurityDesc& sd)
: name(name), sa(CSecurityAttributes(sd)) {}
NamedObjectAttributes::~NamedObjectAttributes() = default;
HRESULT HRESULTFromLastError() {
const auto error_code = ::GetLastError();
return (error_code != NO_ERROR) ? HRESULT_FROM_WIN32(error_code) : E_FAIL;
}
NamedObjectAttributes GetNamedObjectAttributes(const wchar_t* base_name,
UpdaterScope scope) {
CHECK(base_name);
switch (scope) {
case UpdaterScope::kUser: {
std::wstring user_sid;
GetProcessUser(nullptr, nullptr, &user_sid);
return {
base::StrCat({kGlobalPrefix, base_name, user_sid}),
GetCurrentUserDefaultSecurityDescriptor().value_or(CSecurityDesc())};
}
case UpdaterScope::kSystem:
// Grant access to administrators and system.
return {base::StrCat({kGlobalPrefix, base_name}),
GetAdminDaclSecurityDescriptor(GENERIC_ALL)};
}
}
std::optional<CSecurityDesc> GetCurrentUserDefaultSecurityDescriptor() {
CAccessToken token;
if (!token.GetProcessToken(TOKEN_QUERY)) {
return std::nullopt;
}
CSecurityDesc security_desc;
CSid sid_owner;
if (!token.GetOwner(&sid_owner)) {
return std::nullopt;
}
security_desc.SetOwner(sid_owner);
CSid sid_group;
if (!token.GetPrimaryGroup(&sid_group)) {
return std::nullopt;
}
security_desc.SetGroup(sid_group);
CDacl dacl;
if (!token.GetDefaultDacl(&dacl)) {
return std::nullopt;
}
CSid sid_user;
if (!token.GetUser(&sid_user)) {
return std::nullopt;
}
if (!dacl.AddAllowedAce(sid_user, GENERIC_ALL)) {
return std::nullopt;
}
security_desc.SetDacl(dacl);
return security_desc;
}
CSecurityDesc GetAdminDaclSecurityDescriptor(ACCESS_MASK accessmask) {
CSecurityDesc sd;
CDacl dacl;
dacl.AddAllowedAce(Sids::System(), accessmask);
dacl.AddAllowedAce(Sids::Admins(), accessmask);
sd.SetOwner(Sids::Admins());
sd.SetGroup(Sids::Admins());
sd.SetDacl(dacl);
sd.MakeAbsolute();
return sd;
}
std::wstring GetAppClientsKey(const std::string& app_id) {
return GetAppClientsKey(base::UTF8ToWide(app_id));
}
std::wstring GetAppClientsKey(const std::wstring& app_id) {
return base::StrCat({CLIENTS_KEY, app_id});
}
std::wstring GetAppClientStateKey(const std::string& app_id) {
return GetAppClientStateKey(base::UTF8ToWide(app_id));
}
std::wstring GetAppClientStateKey(const std::wstring& app_id) {
return base::StrCat({CLIENT_STATE_KEY, app_id});
}
std::wstring GetAppClientStateMediumKey(const std::string& app_id) {
return GetAppClientStateMediumKey(base::UTF8ToWide(app_id));
}
std::wstring GetAppClientStateMediumKey(const std::wstring& app_id) {
return base::StrCat({CLIENT_STATE_MEDIUM_KEY, app_id});
}
std::wstring GetAppCohortKey(const std::string& app_id) {
return GetAppCohortKey(base::UTF8ToWide(app_id));
}
std::wstring GetAppCohortKey(const std::wstring& app_id) {
return base::StrCat({GetAppClientStateKey(app_id), L"\\", kRegKeyCohort});
}
std::wstring GetAppCommandKey(const std::wstring& app_id,
const std::wstring& command_id) {
return base::StrCat(
{GetAppClientsKey(app_id), L"\\", kRegKeyCommands, L"\\", command_id});
}
std::string GetAppAPValue(UpdaterScope scope, const std::string& app_id) {
base::win::RegKey client_state_key;
if (client_state_key.Open(
UpdaterScopeToHKeyRoot(scope),
GetAppClientStateKey(base::UTF8ToWide(app_id)).c_str(),
Wow6432(KEY_READ)) == ERROR_SUCCESS) {
std::wstring ap;
if (client_state_key.ReadValue(kRegValueAP, &ap) == ERROR_SUCCESS) {
return base::WideToUTF8(ap);
}
}
return {};
}
std::wstring GetRegistryKeyClientsUpdater() {
return GetAppClientsKey(kUpdaterAppId);
}
std::wstring GetRegistryKeyClientStateUpdater() {
return GetAppClientStateKey(kUpdaterAppId);
}
bool SetRegistryKey(HKEY root,
const std::wstring& key,
const std::wstring& name,
const std::wstring& value) {
base::win::RegKey rkey;
LONG result = rkey.Create(root, key.c_str(), Wow6432(KEY_WRITE));
if (result != ERROR_SUCCESS) {
VLOG(1) << "Failed to open (" << root << ") " << key << ": " << result;
return false;
}
result = rkey.WriteValue(name.c_str(), value.c_str());
if (result != ERROR_SUCCESS) {
VLOG(1) << "Failed to write (" << root << ") " << key << " @ " << name
<< ": " << result;
return false;
}
return result == ERROR_SUCCESS;
}
bool SetEulaAccepted(UpdaterScope scope, bool eula_accepted) {
const HKEY root = UpdaterScopeToHKeyRoot(scope);
return eula_accepted
? DeleteRegValue(root, UPDATER_KEY, L"eulaaccepted")
: base::win::RegKey(root, UPDATER_KEY, Wow6432(KEY_WRITE))
.WriteValue(L"eulaaccepted", 0ul) == ERROR_SUCCESS;
}
HResultOr<bool> IsTokenAdmin(HANDLE token) {
SID_IDENTIFIER_AUTHORITY nt_authority = SECURITY_NT_AUTHORITY;
PSID administrators_group = nullptr;
if (!::AllocateAndInitializeSid(&nt_authority, 2, SECURITY_BUILTIN_DOMAIN_RID,
DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0,
&administrators_group)) {
return base::unexpected(HRESULTFromLastError());
}
absl::Cleanup free_sid = [&] { ::FreeSid(administrators_group); };
BOOL is_member = false;
if (!::CheckTokenMembership(token, administrators_group, &is_member)) {
return base::unexpected(HRESULTFromLastError());
}
return base::ok(is_member);
}
HResultOr<bool> IsUserAdmin() {
return IsTokenAdmin(NULL);
}
HResultOr<bool> IsUserNonElevatedAdmin() {
HANDLE token = NULL;
if (!::OpenProcessToken(::GetCurrentProcess(), TOKEN_READ, &token)) {
return base::unexpected(HRESULTFromLastError());
}
bool is_user_non_elevated_admin = false;
base::win::ScopedHandle token_holder(token);
TOKEN_ELEVATION_TYPE elevation_type = TokenElevationTypeDefault;
DWORD size_returned = 0;
if (::GetTokenInformation(token_holder.Get(), TokenElevationType,
&elevation_type, sizeof(elevation_type),
&size_returned)) {
if (elevation_type == TokenElevationTypeLimited) {
is_user_non_elevated_admin = true;
}
}
return base::ok(is_user_non_elevated_admin);
}
HResultOr<bool> IsCOMCallerAdmin() {
ScopedClientImpersonation impersonate_client;
if (!impersonate_client.is_valid()) {
// RPC_E_CALL_COMPLETE indicates that the caller is in-proc.
if (impersonate_client.result() != RPC_E_CALL_COMPLETE) {
return base::unexpected(impersonate_client.result());
}
return base::ok(::IsUserAnAdmin());
}
HResultOr<ScopedKernelHANDLE> token = []() -> decltype(token) {
ScopedKernelHANDLE token;
if (!::OpenThreadToken(::GetCurrentThread(), TOKEN_QUERY, TRUE,
ScopedKernelHANDLE::Receiver(token).get())) {
HRESULT hr = HRESULTFromLastError();
LOG(ERROR) << "::OpenThreadToken failed: " << std::hex << hr;
return base::unexpected(hr);
}
return token;
}();
if (!token.has_value()) {
return base::unexpected(token.error());
}
return IsTokenAdmin(token.value().get()).transform_error([](HRESULT error) {
CHECK(FAILED(error));
LOG(ERROR) << "IsTokenAdmin failed: " << std::hex << error;
return error;
});
}
bool IsUACOn() {
// The presence of a split token definitively indicates that UAC is on. But
// the absence of the token does not necessarily indicate that UAC is off.
HResultOr<bool> is_split_token = IsUserRunningSplitToken();
return (is_split_token.has_value() && is_split_token.value()) ||
IsExplorerRunningAtMediumOrLower();
}
bool IsElevatedWithUACOn() {
HResultOr<bool> is_user_admin = IsUserAdmin();
return (!is_user_admin.has_value() || is_user_admin.value()) && IsUACOn();
}
std::string GetUACState() {
std::string s;
HResultOr<bool> is_user_admin = IsUserAdmin();
if (is_user_admin.has_value()) {
base::StringAppendF(&s, "IsUserAdmin: %d, ", is_user_admin.value());
}
HResultOr<bool> is_user_non_elevated_admin = IsUserNonElevatedAdmin();
if (is_user_non_elevated_admin.has_value()) {
base::StringAppendF(&s, "IsUserNonElevatedAdmin: %d, ",
is_user_non_elevated_admin.value());
}
base::StringAppendF(&s, "IsUACOn: %d, IsElevatedWithUACOn: %d, ", IsUACOn(),
IsElevatedWithUACOn());
base::StringAppendF(&s, "LUA: %d", base::win::UserAccountControlIsEnabled());
return s;
}
std::wstring GetServiceName(bool is_internal_service,
const base::Version& version) {
std::wstring service_name = base::StrCat(
{base::UTF8ToWide(PRODUCT_FULLNAME_STRING), L" ",
is_internal_service ? kWindowsInternalServiceName : kWindowsServiceName,
L" ", base::UTF8ToWide(version.GetString())});
std::erase_if(service_name, base::IsAsciiWhitespace<wchar_t>);
return service_name;
}
REGSAM Wow6432(REGSAM access) {
CHECK(access);
return KEY_WOW64_32KEY | access;
}
HResultOr<DWORD> ShellExecuteAndWait(const base::FilePath& file_path,
const std::wstring& parameters,
const std::wstring& verb) {
VLOG(1) << __func__ << ": path: " << file_path
<< ", parameters:" << parameters << ", verb:" << verb;
CHECK(!file_path.empty());
const HWND hwnd = CreateForegroundParentWindowForUAC();
const absl::Cleanup destroy_window = [&] {
if (hwnd) {
::DestroyWindow(hwnd);
}
};
SHELLEXECUTEINFO shell_execute_info = {};
shell_execute_info.cbSize = sizeof(SHELLEXECUTEINFO);
shell_execute_info.fMask = SEE_MASK_FLAG_NO_UI | SEE_MASK_NOCLOSEPROCESS |
SEE_MASK_NOZONECHECKS | SEE_MASK_NOASYNC;
shell_execute_info.hProcess = NULL;
shell_execute_info.hwnd = hwnd;
shell_execute_info.lpVerb = verb.c_str();
shell_execute_info.lpFile = file_path.value().c_str();
shell_execute_info.lpParameters = parameters.c_str();
shell_execute_info.lpDirectory = NULL;
shell_execute_info.nShow = SW_SHOW;
shell_execute_info.hInstApp = NULL;
if (!::ShellExecuteEx(&shell_execute_info)) {
const HRESULT hr = HRESULTFromLastError();
VLOG(1) << __func__ << ": ::ShellExecuteEx failed: " << std::hex << hr;
return base::unexpected(hr);
}
if (!shell_execute_info.hProcess) {
VLOG(1) << __func__ << ": Started process, PID unknown";
return base::ok(0);
}
const base::Process process(shell_execute_info.hProcess);
const DWORD pid = process.Pid();
VLOG(1) << __func__ << ": Started process, PID: " << pid;
// Allow the spawned process to show windows in the foreground.
if (!::AllowSetForegroundWindow(pid)) {
VLOG(1) << __func__
<< ": ::AllowSetForegroundWindow failed: " << ::GetLastError();
}
int ret_val = 0;
if (!process.WaitForExit(&ret_val)) {
return base::unexpected(HRESULTFromLastError());
}
return base::ok(static_cast<DWORD>(ret_val));
}
HResultOr<DWORD> RunElevated(const base::FilePath& file_path,
const std::wstring& parameters) {
return ShellExecuteAndWait(file_path, parameters, L"runas");
}
HRESULT RunDeElevatedCmdLine(const std::wstring& cmd_line) {
if (!IsElevatedWithUACOn()) {
auto process = base::LaunchProcess(cmd_line, {});
return process.IsValid() ? S_OK : HRESULTFromLastError();
}
// Custom processing is used here instead of using
// `base::CommandLine::FromString` because this `cmd_line` string can have a
// parameter format that is different from what is expected of
// `base::CommandLine` parameters.
std::optional<std::vector<std::wstring>> argv = CommandLineToArgv(cmd_line);
if (!argv) {
return E_INVALIDARG;
}
const base::FilePath program(argv->at(0));
return base::win::RunDeElevatedNoWait(
argv->at(0),
base::JoinString(
[&]() -> std::vector<std::wstring> {
if (argv->size() <= 1) {
return {};
}
std::vector<std::wstring> parameters;
std::ranges::for_each(
argv->begin() + 1, argv->end(),
[&](const std::wstring& parameter) {
parameters.push_back(
base::CommandLine::QuoteForCommandLineToArgvW(parameter));
});
return parameters;
}(),
L" "),
program.DirName().value());
}
std::optional<base::FilePath> GetGoogleUpdateExePath(UpdaterScope scope) {
base::FilePath goopdate_base_dir;
if (!base::PathService::Get(IsSystemInstall(scope)
? base::DIR_PROGRAM_FILESX86
: base::DIR_LOCAL_APP_DATA,
&goopdate_base_dir)) {
LOG(ERROR) << "Can't retrieve GoogleUpdate base directory.";
return std::nullopt;
}
return goopdate_base_dir.AppendUTF8(COMPANY_SHORTNAME_STRING)
.Append(L"Update")
.Append(kLegacyExeName);
}
HRESULT DisableCOMExceptionHandling() {
Microsoft::WRL::ComPtr<IGlobalOptions> options;
HRESULT hr = ::CoCreateInstance(CLSID_GlobalOptions, nullptr,
CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&options));
if (FAILED(hr)) {
return hr;
}
return hr = options->Set(COMGLB_EXCEPTION_HANDLING,
COMGLB_EXCEPTION_DONOT_HANDLE);
}
std::wstring BuildMsiCommandLine(
const std::wstring& arguments,
std::optional<base::FilePath> installer_data_file,
const base::FilePath& msi_installer) {
if (!msi_installer.MatchesExtension(L".msi")) {
return std::wstring();
}
return base::StrCat(
{L"msiexec ", arguments,
installer_data_file
? base::StrCat(
{L" ",
base::UTF8ToWide(base::ToUpperASCII(kInstallerDataSwitch)),
L"=",
base::CommandLine::QuoteForCommandLineToArgvW(
installer_data_file->value())})
: L"",
L" REBOOT=ReallySuppress /qn /i ",
base::CommandLine::QuoteForCommandLineToArgvW(msi_installer.value()),
L" /log ",
base::CommandLine::QuoteForCommandLineToArgvW(
msi_installer.AddExtension(L".log").value())});
}
std::wstring BuildExeCommandLine(
const std::wstring& arguments,
std::optional<base::FilePath> installer_data_file,
const base::FilePath& exe_installer) {
if (!exe_installer.MatchesExtension(L".exe")) {
return std::wstring();
}
return base::StrCat(
{base::CommandLine::QuoteForCommandLineToArgvW(exe_installer.value()),
L" ", arguments, [&installer_data_file] {
if (!installer_data_file) {
return std::wstring();
}
base::CommandLine installer_data_args(base::CommandLine::NO_PROGRAM);
installer_data_args.AppendSwitchPath(kInstallerDataSwitch,
*installer_data_file);
return base::StrCat({L" ", installer_data_args.GetArgumentsString()});
}()});
}
bool IsServiceRunning(const std::wstring& service_name) {
ScopedScHandle scm(::OpenSCManager(nullptr, nullptr, SC_MANAGER_CONNECT));
if (!scm.IsValid()) {
LOG(ERROR) << "::OpenSCManager failed. service_name: " << service_name
<< ", error: " << std::hex << HRESULTFromLastError();
return false;
}
ScopedScHandle service(
::OpenService(scm.Get(), service_name.c_str(), SERVICE_QUERY_STATUS));
if (!service.IsValid()) {
LOG(ERROR) << "::OpenService failed. service_name: " << service_name
<< ", error: " << std::hex << HRESULTFromLastError();
return false;
}
SERVICE_STATUS status = {0};
if (!::QueryServiceStatus(service.Get(), &status)) {
LOG(ERROR) << "::QueryServiceStatus failed. service_name: " << service_name
<< ", error: " << std::hex << HRESULTFromLastError();
return false;
}
VLOG(1) << "IsServiceRunning. service_name: " << service_name
<< ", status: " << std::hex << status.dwCurrentState;
return status.dwCurrentState == SERVICE_RUNNING ||
status.dwCurrentState == SERVICE_START_PENDING;
}
HKEY UpdaterScopeToHKeyRoot(UpdaterScope scope) {
return IsSystemInstall(scope) ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER;
}
std::optional<OSVERSIONINFOEX> GetOSVersion() {
// `::RtlGetVersion` is being used here instead of `::GetVersionEx`, because
// the latter function can return the incorrect version if it is shimmed using
// an app compat shim.
using RtlGetVersion = LONG(WINAPI*)(OSVERSIONINFOEX*);
static const RtlGetVersion rtl_get_version = reinterpret_cast<RtlGetVersion>(
::GetProcAddress(::GetModuleHandle(L"ntdll.dll"), "RtlGetVersion"));
if (!rtl_get_version) {
return std::nullopt;
}
OSVERSIONINFOEX os_out = {};
os_out.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
rtl_get_version(&os_out);
if (!os_out.dwMajorVersion) {
return std::nullopt;
}
return os_out;
}
bool CompareOSVersions(const OSVERSIONINFOEX& os_version, BYTE oper) {
CHECK(oper);
static constexpr DWORD kOSTypeMask = VER_MAJORVERSION | VER_MINORVERSION |
VER_SERVICEPACKMAJOR |
VER_SERVICEPACKMINOR;
static constexpr DWORD kBuildTypeMask = VER_BUILDNUMBER;
// If the OS and the service pack match, return the build number comparison.
return CompareOSVersionsInternal(os_version, kOSTypeMask, VER_EQUAL)
? CompareOSVersionsInternal(os_version, kBuildTypeMask, oper)
: CompareOSVersionsInternal(os_version, kOSTypeMask, oper);
}
bool EnableSecureDllLoading() {
#if defined(COMPONENT_BUILD)
const DWORD directory_flags = LOAD_LIBRARY_SEARCH_DEFAULT_DIRS;
#else
const DWORD directory_flags = LOAD_LIBRARY_SEARCH_SYSTEM32;
#endif
return ::SetDefaultDllDirectories(directory_flags);
}
bool EnableProcessHeapMetadataProtection() {
if (!::HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, nullptr,
0)) {
LOG(ERROR) << __func__
<< ": Failed to enable heap metadata protection: " << std::hex
<< HRESULTFromLastError();
return false;
}
return true;
}
std::optional<base::ScopedTempDir> CreateSecureTempDir() {
// This function uses `base::CreateNewTempDirectory` and then a
// `base::ScopedTempDir` as owner, instead of just
// `base::ScopedTempDir::CreateUniqueTempDir`, because the former allows
// setting a more recognizable prefix of `COMPANY_SHORTNAME_STRING` on the
// temp directory.
base::FilePath temp_dir;
if (!base::CreateNewTempDirectory(FILE_PATH_LITERAL(COMPANY_SHORTNAME_STRING),
&temp_dir)) {
return std::nullopt;
}
base::ScopedTempDir temp_dir_owner;
if (temp_dir_owner.Set(temp_dir)) {
return temp_dir_owner;
}
return std::nullopt;
}
base::ScopedClosureRunner SignalShutdownEvent(UpdaterScope scope) {
NamedObjectAttributes attr = GetNamedObjectAttributes(kShutdownEvent, scope);
base::win::ScopedHandle shutdown_event_handle(
::CreateEvent(&attr.sa, true, false, attr.name.c_str()));
if (!shutdown_event_handle.IsValid()) {
VLOG(1) << __func__ << "Could not create the shutdown event: " << std::hex
<< HRESULTFromLastError();
return {};
}
auto shutdown_event =
std::make_unique<base::WaitableEvent>(std::move(shutdown_event_handle));
shutdown_event->Signal();
return base::ScopedClosureRunner(
base::BindOnce(&base::WaitableEvent::Reset, std::move(shutdown_event)));
}
bool IsShutdownEventSignaled(UpdaterScope scope) {
NamedObjectAttributes attr = GetNamedObjectAttributes(kShutdownEvent, scope);
base::win::ScopedHandle event_handle(
::OpenEvent(EVENT_ALL_ACCESS, false, attr.name.c_str()));
if (!event_handle.IsValid()) {
return false;
}
base::WaitableEvent event(std::move(event_handle));
return event.IsSignaled();
}
void StopProcessesUnderPath(const base::FilePath& path,
base::TimeDelta wait_period) {
// Filters processes running under `path_prefix`.
class PathPrefixProcessFilter : public base::ProcessFilter {
public:
explicit PathPrefixProcessFilter(const base::FilePath& path_prefix)
: path_prefix_(path_prefix) {}
bool Includes(const base::ProcessEntry& entry) const override {
base::Process process(::OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION,
false, entry.th32ProcessID));
if (!process.IsValid()) {
return false;
}
DWORD path_len = MAX_PATH;
wchar_t path_string[MAX_PATH];
if (!::QueryFullProcessImageName(process.Handle(), 0, path_string,
&path_len)) {
return false;
}
return path_prefix_.IsParent(base::FilePath(path_string));
}
private:
const base::FilePath path_prefix_;
};
PathPrefixProcessFilter path_prefix_filter(path);
base::ProcessIterator iter(&path_prefix_filter);
base::flat_set<std::wstring> process_names_to_cleanup;
for (const base::ProcessEntry* entry = iter.NextProcessEntry(); entry;
entry = iter.NextProcessEntry()) {
process_names_to_cleanup.insert(entry->exe_file());
}
const auto deadline = base::TimeTicks::Now() + wait_period;
for (const auto& exe_file : process_names_to_cleanup) {
base::CleanupProcesses(
exe_file, std::max(deadline - base::TimeTicks::Now(), base::Seconds(0)),
-1, &path_prefix_filter);
}
}
std::optional<base::CommandLine> CommandLineForLegacyFormat(
const std::wstring& cmd_string) {
std::optional<std::vector<std::wstring>> args = CommandLineToArgv(cmd_string);
if (!args) {
return std::nullopt;
}
auto is_switch = [](const std::wstring& arg) { return arg[0] == L'-'; };
auto is_legacy_switch = [](const std::wstring& arg) {
return arg[0] == L'/';
};
// First argument is the program.
base::CommandLine command_line(base::FilePath{args->front()});
for (size_t i = 1; i < args->size(); ++i) {
const std::wstring next_arg = i < args->size() - 1 ? args->at(i + 1) : L"";
if (is_switch(args->at(i)) || is_switch(next_arg)) {
// Won't parse Chromium-style command line.
return std::nullopt;
}
if (!is_legacy_switch(args->at(i))) {
// This is a bare argument.
command_line.AppendArg(base::WideToUTF8(args->at(i)));
continue;
}
std::string switch_name = base::WideToUTF8(
std::wstring(args->at(i).begin() + 1, args->at(i).end()));
if (switch_name.empty()) {
VLOG(1) << "Empty switch in command line: [" << cmd_string << "]";
return std::nullopt;
}
if (base::StringPairs switch_value_pairs;
base::SplitStringIntoKeyValuePairs(switch_name, '=', '\n',
&switch_value_pairs)) {
command_line.AppendSwitchUTF8(switch_value_pairs[0].first,
switch_value_pairs[0].second);
continue;
}
if (is_legacy_switch(next_arg) || next_arg.empty()) {
command_line.AppendSwitch(switch_name);
} else {
// Next argument is the value for this switch.
command_line.AppendSwitchNative(switch_name, next_arg);
++i;
}
}
return command_line;
}
std::optional<base::FilePath> GetInstallDirectory(UpdaterScope scope) {
base::FilePath app_data_dir;
if (!base::PathService::Get(IsSystemInstall(scope)
? base::DIR_PROGRAM_FILESX86
: base::DIR_LOCAL_APP_DATA,
&app_data_dir)) {
LOG(ERROR) << "Can't retrieve app data directory.";
return std::nullopt;
}
return app_data_dir.AppendUTF8(COMPANY_SHORTNAME_STRING)
.AppendUTF8(PRODUCT_FULLNAME_STRING);
}
base::FilePath GetExecutableRelativePath() {
return base::FilePath::FromUTF8Unsafe(kExecutableName);
}
bool IsGuid(const std::wstring& s) {
CHECK(!s.empty());
GUID guid = {0};
return SUCCEEDED(::IIDFromString(&s[0], &guid));
}
void ForEachRegistryRunValueWithPrefix(
const std::wstring& prefix,
base::FunctionRef<void(const std::wstring&)> callback) {
for (base::win::RegistryValueIterator it(HKEY_CURRENT_USER, REGSTR_PATH_RUN,
KEY_WOW64_32KEY);
it.Valid(); ++it) {
const std::wstring run_name = it.Name();
if (base::StartsWith(run_name, prefix)) {
callback(run_name);
}
}
}
[[nodiscard]] bool DeleteRegValue(HKEY root,
const std::wstring& path,
const std::wstring& value) {
if (!base::win::RegKey(root, path.c_str(), Wow6432(KEY_QUERY_VALUE))
.Valid()) {
return true;
}
LONG result = base::win::RegKey(root, path.c_str(), Wow6432(KEY_WRITE))
.DeleteValue(value.c_str());
return result == ERROR_SUCCESS || result == ERROR_FILE_NOT_FOUND;
}
void ForEachServiceWithPrefix(
const std::wstring& service_name_prefix,
const std::wstring& display_name_prefix,
base::FunctionRef<void(const std::wstring&)> callback) {
for (base::win::RegistryKeyIterator it(HKEY_LOCAL_MACHINE,
L"SYSTEM\\CurrentControlSet\\Services",
KEY_WOW64_32KEY);
it.Valid(); ++it) {
const std::wstring service_name = it.Name();
if (base::StartsWith(service_name, service_name_prefix)) {
if (display_name_prefix.empty()) {
callback(service_name);
continue;
}
base::win::RegKey key;
if (key.Open(HKEY_LOCAL_MACHINE,
base::StrCat(
{L"SYSTEM\\CurrentControlSet\\Services\\", service_name})
.c_str(),
Wow6432(KEY_READ)) != ERROR_SUCCESS) {
continue;
}
std::wstring display_name;
if (key.ReadValue(L"DisplayName", &display_name) != ERROR_SUCCESS) {
continue;
}
const bool display_name_starts_with_prefix =
base::StartsWith(display_name, display_name_prefix);
VLOG(1) << __func__ << ": " << service_name
<< " matches: " << service_name_prefix << ": " << display_name
<< ": " << display_name_starts_with_prefix << ": "
<< display_name_prefix;
if (display_name_starts_with_prefix) {
callback(service_name);
}
}
}
}
[[nodiscard]] bool DeleteService(const std::wstring& service_name) {
ScopedScHandle scm(::OpenSCManager(
nullptr, nullptr, SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE));
if (!scm.IsValid()) {
return false;
}
ScopedScHandle service(
::OpenService(scm.Get(), service_name.c_str(), DELETE));
bool is_service_deleted = !service.IsValid();
if (!is_service_deleted) {
is_service_deleted =
::DeleteService(service.Get())
? true
: ::GetLastError() == ERROR_SERVICE_MARKED_FOR_DELETE;
}
if (!DeleteRegValue(HKEY_LOCAL_MACHINE, UPDATER_KEY, service_name)) {
return false;
}
VLOG(1) << __func__ << ": " << service_name << ": " << is_service_deleted;
return is_service_deleted;
}
bool WrongUser(UpdaterScope scope) {
return IsSystemInstall(scope) ? !::IsUserAnAdmin()
: ::IsUserAnAdmin() && IsUACOn();
}
bool EulaAccepted(const std::vector<std::string>& app_ids) {
for (const auto& app_id : app_ids) {
DWORD eula_accepted = 0;
if (base::win::RegKey(
HKEY_LOCAL_MACHINE,
base::StrCat({CLIENT_STATE_MEDIUM_KEY, base::UTF8ToWide(app_id)})
.c_str(),
Wow6432(KEY_READ))
.ReadValueDW(L"eulaaccepted", &eula_accepted) ==
ERROR_SUCCESS &&
eula_accepted == 1) {
return true;
}
}
return false;
}
void LogClsidEntries(REFCLSID clsid) {
const std::wstring local_server32_reg_path(base::StrCat(
{base::StrCat({L"Software\\Classes\\CLSID\\", StringFromGuid(clsid)}),
L"\\LocalServer32"}));
for (const HKEY root : {HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER}) {
for (const REGSAM key_flag : {KEY_WOW64_32KEY, KEY_WOW64_64KEY}) {
base::win::RegKey key;
if (ERROR_SUCCESS == key.Open(root, local_server32_reg_path.c_str(),
KEY_QUERY_VALUE | key_flag)) {
std::wstring val;
if (ERROR_SUCCESS == key.ReadValue(L"", &val)) {
LOG(ERROR) << __func__ << ": CLSID entry found: "
<< (root == HKEY_LOCAL_MACHINE ? "HKEY_LOCAL_MACHINE\\"
: "HKEY_CURRENT_USER\\")
<< local_server32_reg_path << ": " << val;
}
}
}
}
}
std::optional<std::wstring> GetRegKeyContents(const std::wstring& reg_key) {
base::FilePath system_path;
if (!base::PathService::Get(base::DIR_SYSTEM, &system_path)) {
return {};
}
std::string output;
if (!base::GetAppOutput(
base::StrCat({system_path.Append(L"reg.exe").value(), L" query ",
base::CommandLine::QuoteForCommandLineToArgvW(reg_key),
L" /s"}),
&output)) {
return {};
}
return base::UTF8ToWide(output);
}
std::wstring GetTextForSystemError(int error) {
if (static_cast<HRESULT>(error & 0xFFFF0000) ==
MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, 0)) {
error = HRESULT_CODE(error);
}
HMODULE source = nullptr;
DWORD format_options =
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_MAX_WIDTH_MASK;
if (error >= WINHTTP_ERROR_BASE && error <= WINHTTP_ERROR_LAST) {
source = ::GetModuleHandle(_T("winhttp.dll"));
if (source) {
format_options |= FORMAT_MESSAGE_FROM_HMODULE;
}
}
wchar_t* system_allocated_buffer = nullptr;
const DWORD chars_written = ::FormatMessage(
format_options, source, error, 0,
reinterpret_cast<wchar_t*>(&system_allocated_buffer), 0, nullptr);
base::win::ScopedLocalAllocTyped<wchar_t> free_buffer(
system_allocated_buffer);
return chars_written > 0 ? system_allocated_buffer
: base::UTF8ToWide(base::StringPrintf("%#x", error));
}
bool MigrateLegacyUpdaters(
UpdaterScope scope,
base::RepeatingCallback<void(const RegistrationRequest&)>
register_callback) {
const HKEY root = UpdaterScopeToHKeyRoot(scope);
for (const auto& access_mask : {KEY_WOW64_32KEY, KEY_WOW64_64KEY}) {
for (base::win::RegistryKeyIterator it(root, CLIENTS_KEY, access_mask);
it.Valid(); ++it) {
const std::wstring app_id = it.Name();
// Skip importing the legacy updater.
if (base::EqualsCaseInsensitiveASCII(app_id, kLegacyGoogleUpdateAppID)) {
continue;
}
// Skip importing this updater.
if (base::EqualsCaseInsensitiveASCII(app_id, kUpdaterAppId)) {
continue;
}
base::win::RegKey key;
if (key.Open(root, GetAppClientsKey(app_id).c_str(),
KEY_READ | access_mask) != ERROR_SUCCESS) {
continue;
}
RegistrationRequest registration;
registration.app_id = base::SysWideToUTF8(app_id);
std::wstring pv;
if (key.ReadValue(kRegValuePV, &pv) != ERROR_SUCCESS) {
continue;
}
registration.version = base::Version(base::SysWideToUTF8(pv));
if (!registration.version.IsValid()) {
continue;
}
base::win::RegKey client_state_key;
if (client_state_key.Open(root, GetAppClientStateKey(app_id).c_str(),
KEY_READ | access_mask) == ERROR_SUCCESS) {
std::wstring brand_code;
if (client_state_key.ReadValue(kRegValueBrandCode, &brand_code) ==
ERROR_SUCCESS) {
registration.brand_code = base::SysWideToUTF8(brand_code);
}
std::wstring ap;
if (client_state_key.ReadValue(kRegValueAP, &ap) == ERROR_SUCCESS) {
registration.ap = base::SysWideToUTF8(ap);
}
DWORD date_last_activity = 0;
if (client_state_key.ReadValueDW(kRegValueDateOfLastActivity,
&date_last_activity) ==
ERROR_SUCCESS) {
registration.dla = DaynumFromDWORD(date_last_activity);
}
DWORD date_last_rollcall = 0;
if (client_state_key.ReadValueDW(kRegValueDateOfLastRollcall,
&date_last_rollcall) ==
ERROR_SUCCESS) {
registration.dlrc = DaynumFromDWORD(date_last_rollcall);
}
DWORD install_date = 0;
if (client_state_key.ReadValueDW(kRegValueDayOfInstall,
&install_date) == ERROR_SUCCESS) {
registration.install_date = DaynumFromDWORD(install_date);
}
base::win::RegKey cohort_key;
if (cohort_key.Open(root, GetAppCohortKey(app_id).c_str(),
Wow6432(KEY_READ)) == ERROR_SUCCESS) {
std::wstring cohort;
if (cohort_key.ReadValue(nullptr, &cohort) == ERROR_SUCCESS) {
registration.cohort = base::SysWideToUTF8(cohort);
std::wstring cohort_name;
if (cohort_key.ReadValue(kRegValueCohortName, &cohort_name) ==
ERROR_SUCCESS) {
registration.cohort_name = base::SysWideToUTF8(cohort_name);
}
std::wstring cohort_hint;
if (cohort_key.ReadValue(kRegValueCohortHint, &cohort_hint) ==
ERROR_SUCCESS) {
registration.cohort_hint = base::SysWideToUTF8(cohort_hint);
}
VLOG(2) << "Cohort values: " << registration.cohort << ", "
<< registration.cohort_name << ", "
<< registration.cohort_hint;
}
}
}
register_callback.Run(registration);
}
}
return true;
}
namespace {
struct ScopedWtsConnectStateCloseTraits {
static WTS_CONNECTSTATE_CLASS* InvalidValue() { return nullptr; }
static void Free(WTS_CONNECTSTATE_CLASS* memory) { ::WTSFreeMemory(memory); }
};
struct ScopedWtsSessionInfoCloseTraits {
static PWTS_SESSION_INFO InvalidValue() { return nullptr; }
static void Free(PWTS_SESSION_INFO memory) { ::WTSFreeMemory(memory); }
};
using ScopedWtsConnectState =
base::ScopedGeneric<WTS_CONNECTSTATE_CLASS*,
ScopedWtsConnectStateCloseTraits>;
using ScopedWtsSessionInfo =
base::ScopedGeneric<PWTS_SESSION_INFO, ScopedWtsSessionInfoCloseTraits>;
// Returns `true` if there is a user logged on and active in the specified
// session.
bool IsSessionActive(std::optional<DWORD> session_id) {
if (!session_id) {
return false;
}
ScopedWtsConnectState wts_connect_state;
DWORD bytes_returned = 0;
if (::WTSQuerySessionInformation(
WTS_CURRENT_SERVER_HANDLE, *session_id, WTSConnectState,
reinterpret_cast<LPTSTR*>(
ScopedWtsConnectState::Receiver(wts_connect_state).get()),
&bytes_returned)) {
CHECK_EQ(bytes_returned, sizeof(WTS_CONNECTSTATE_CLASS));
return *wts_connect_state.get() == WTSActive;
}
return false;
}
// Returns the currently active session.
// `WTSGetActiveConsoleSessionId` retrieves the Terminal Services session
// currently attached to the physical console, so that is attempted first.
// `WTSGetActiveConsoleSessionId` does not work for terminal servers where the
// current active session is always the console. For those, an active session
// is found by enumerating all the sessions that are present on the system, and
// the first active session is returned.
std::optional<DWORD> GetActiveSessionId() {
if (DWORD active_session_id = ::WTSGetActiveConsoleSessionId();
IsSessionActive(active_session_id)) {
return active_session_id;
}
ScopedWtsSessionInfo session_info;
DWORD num_sessions = 0;
if (::WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1,
ScopedWtsSessionInfo::Receiver(session_info).get(),
&num_sessions)) {
for (size_t i = 0; i < num_sessions; ++i) {
// SAFETY: `num_sessions` describes the valid portion of `session_info`.
const WTS_SESSION_INFO& session = UNSAFE_BUFFERS(session_info.get()[i]);
if (session.State == WTSActive) {
return session.SessionId;
}
}
}
return {};
}
std::vector<DWORD> FindProcesses(const std::wstring& process_name) {
base::NamedProcessIterator iter(process_name, nullptr);
std::vector<DWORD> pids;
while (const base::ProcessEntry* process_entry = iter.NextProcessEntry()) {
pids.push_back(process_entry->pid());
}
return pids;
}
// Returns processes running under `session_id`.
std::vector<DWORD> FindProcessesInSession(const std::wstring& process_name,
std::optional<DWORD> session_id) {
if (!session_id) {
return {};
}
std::vector<DWORD> pids;
for (const auto pid : FindProcesses(process_name)) {
DWORD process_session = 0;
if (::ProcessIdToSessionId(pid, &process_session) &&
(process_session == *session_id)) {
pids.push_back(pid);
}
}
return pids;
}
// Returns the first instance found of explorer.exe.
std::optional<DWORD> GetExplorerPid() {
std::vector<DWORD> pids =
FindProcessesInSession(L"EXPLORER.EXE", GetActiveSessionId());
if (pids.empty()) {
return {};
}
return pids[0];
}
// Returns an impersonation token for the user running process_id.
HResultOr<ScopedKernelHANDLE> GetImpersonationToken(
std::optional<DWORD> process_id) {
if (!process_id) {
return base::unexpected(E_UNEXPECTED);
}
base::win::ScopedHandle process(::OpenProcess(
PROCESS_DUP_HANDLE | PROCESS_QUERY_INFORMATION, TRUE, *process_id));
if (!process.IsValid()) {
return base::unexpected(HRESULTFromLastError());
}
ScopedKernelHANDLE process_token;
if (!::OpenProcessToken(process.Get(), TOKEN_DUPLICATE | TOKEN_QUERY,
ScopedKernelHANDLE::Receiver(process_token).get())) {
return base::unexpected(HRESULTFromLastError());
}
ScopedKernelHANDLE user_token;
if (!::DuplicateTokenEx(process_token.get(),
TOKEN_IMPERSONATE | TOKEN_QUERY |
TOKEN_ASSIGN_PRIMARY | TOKEN_DUPLICATE,
NULL, SecurityImpersonation, TokenPrimary,
ScopedKernelHANDLE::Receiver(user_token).get())) {
return base::unexpected(HRESULTFromLastError());
}
return user_token;
}
} // namespace
HResultOr<ScopedKernelHANDLE> GetLoggedOnUserToken() {
return GetImpersonationToken(GetExplorerPid());
}
bool IsAuditMode() {
base::win::RegKey setup_state_key;
std::wstring state;
return setup_state_key.Open(HKEY_LOCAL_MACHINE, kSetupStateKey,
KEY_QUERY_VALUE) == ERROR_SUCCESS &&
setup_state_key.ReadValue(kImageStateValueName, &state) ==
ERROR_SUCCESS &&
(base::EqualsCaseInsensitiveASCII(state, kImageStateUnuseableValue) ||
base::EqualsCaseInsensitiveASCII(state,
kImageStateGeneralAuditValue) ||
base::EqualsCaseInsensitiveASCII(state,
kImageStateSpecialAuditValue));
}
bool SetOemInstallState() {
if (!::IsUserAnAdmin() || !IsAuditMode()) {
return false;
}
const base::Time now = base::Time::Now();
VLOG(1) << "OEM install time set: " << now;
return base::win::RegKey(HKEY_LOCAL_MACHINE, CLIENTS_KEY,
Wow6432(KEY_SET_VALUE))
.WriteValue(kRegValueOemInstallTimeMin,
now.ToDeltaSinceWindowsEpoch().InMinutes()) ==
ERROR_SUCCESS;
}
bool ResetOemInstallState() {
VLOG(1) << "OEM install reset at time: " << base::Time::Now();
const LONG result =
base::win::RegKey(HKEY_LOCAL_MACHINE, CLIENTS_KEY, Wow6432(KEY_SET_VALUE))
.DeleteValue(kRegValueOemInstallTimeMin);
return result == ERROR_SUCCESS || result == ERROR_FILE_NOT_FOUND;
}
bool IsOemInstalling() {
DWORD oem_install_time_minutes = 0;
if (base::win::RegKey(HKEY_LOCAL_MACHINE, CLIENTS_KEY,
Wow6432(KEY_QUERY_VALUE))
.ReadValueDW(kRegValueOemInstallTimeMin, &oem_install_time_minutes) !=
ERROR_SUCCESS) {
VLOG(2) << "OemInstallTime not found";
return false;
}
const base::Time now = base::Time::Now();
const base::Time oem_install_time = base::Time::FromDeltaSinceWindowsEpoch(
base::Minutes(oem_install_time_minutes));
const base::TimeDelta time_in_oem_mode = now - oem_install_time;
const bool is_oem_installing = time_in_oem_mode < kMinOemModeTime;
if (!is_oem_installing) {
ResetOemInstallState();
}
VLOG(1) << "now: " << now << ", OEM install time: " << oem_install_time
<< ", time_in_oem_mode: " << time_in_oem_mode
<< ", is_oem_installing: " << is_oem_installing;
return is_oem_installing;
}
std::wstring StringFromGuid(const GUID& guid) {
// {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
static constexpr int kGuidStringCharacters =
1 + 8 + 1 + 4 + 1 + 4 + 1 + 4 + 1 + 12 + 1 + 1;
wchar_t guid_string[kGuidStringCharacters] = {};
CHECK_NE(::StringFromGUID2(guid, guid_string, kGuidStringCharacters), 0);
return guid_string;
}
bool StoreRunTimeEnrollmentToken(const std::string& enrollment_token) {
VLOG(1) << __func__ << ": " << enrollment_token;
return base::win::RegKey(HKEY_LOCAL_MACHINE,
GetAppClientsKey(kUpdaterAppId).c_str(),
Wow6432(KEY_SET_VALUE))
.WriteValue(kRegValueCloudManagementEnrollmentToken,
base::SysUTF8ToWide(enrollment_token).c_str()) ==
ERROR_SUCCESS;
}
std::optional<base::FilePath> GetBundledEnterpriseCompanionExecutablePath(
UpdaterScope scope) {
std::optional<base::FilePath> install_dir =
GetVersionedInstallDirectory(scope);
if (!install_dir) {
return std::nullopt;
}
return install_dir->AppendUTF8(
base::StrCat({base::FilePath()
.AppendUTF8(enterprise_companion::kExecutableName)
.RemoveExtension()
.AsUTF8Unsafe(),
kExecutableSuffix, ".exe"}));
}
[[nodiscard]] bool IsServicePresent(const std::wstring& service_name) {
return ::IsUserAnAdmin() ? IsServicePresentAdmin(service_name)
: IsServicePresentNonAdmin(service_name);
}
[[nodiscard]] bool IsServiceEnabled(const std::wstring& service_name) {
ScopedScHandle scm(
::OpenSCManager(nullptr, nullptr, SC_MANAGER_CONNECT | GENERIC_READ));
if (!scm.IsValid()) {
return false;
}
ScopedScHandle service(
::OpenService(scm.Get(), service_name.c_str(), SERVICE_QUERY_CONFIG));
if (!service.IsValid()) {
return false;
}
static constexpr uint32_t kMaxQueryConfigBufferBytes = 8 * 1024;
auto buffer = std::make_unique<uint8_t[]>(kMaxQueryConfigBufferBytes);
DWORD bytes_needed_ignored = 0;
QUERY_SERVICE_CONFIG* service_config =
reinterpret_cast<QUERY_SERVICE_CONFIG*>(buffer.get());
return ::QueryServiceConfig(service.Get(), service_config,
kMaxQueryConfigBufferBytes,
&bytes_needed_ignored) &&
(service_config->dwStartType != SERVICE_DISABLED);
}
} // namespace updater
|