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
|
/*
** Copyright (c) 2021 Advanced Micro Devices, Inc. All rights reserved.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and associated documentation files (the "Software"),
** to deal in the Software without restriction, including without limitation
** the rights to use, copy, modify, merge, publish, distribute, sublicense,
** and/or sell copies of the Software, and to permit persons to whom the
** Software is furnished to do so, subject to the following conditions:
**
** The above copyright notice and this permission notice shall be included in
** all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
** DEALINGS IN THE SOFTWARE.
*/
#include "create_process.h"
#include "hooking_detours.h"
#include "injection.h"
#include "ref_tracker.h"
#include "ref_tracker_counter.h"
#include <algorithm>
GFXRECON_BEGIN_NAMESPACE(gfxrecon)
GFXRECON_BEGIN_NAMESPACE(util)
GFXRECON_BEGIN_NAMESPACE(interception)
/// Used to mask out sections of code that are called by the runtime (not the app)
static gfxrecon::util::interception::RefTrackerCounter nested_count_;
/// List of all applications which we should not inject into, in lower case
const static LPCSTR kBlackList[] = {
{ "fxc.exe" },
{ "cmd.exe" },
{ "dev.exe" },
{ "steamwebhelper.exe" },
{ "gldriverquery.exe" },
{ "gldriverquery64.exe" },
{ "vulkandriverquery.exe" },
{ "vulkandriverquery64.exe" },
{ "galaxyclient helper.exe" },
{ "gog galaxy notifications renderer.exe" },
{ "galaxyoverlay.exe" },
{ "epicwebhelper.exe" },
{ "epiconlineservicesuserhelper.exe" },
};
/// Function pointers and their typedefs to create process
using CreateProcessAFunc = BOOL(WINAPI*)(LPCSTR,
LPSTR,
LPSECURITY_ATTRIBUTES,
LPSECURITY_ATTRIBUTES,
BOOL,
DWORD,
LPVOID,
LPCSTR,
LPSTARTUPINFOA,
LPPROCESS_INFORMATION);
CreateProcessAFunc real_create_process_a = CreateProcessA;
using CreateProcessWFunc = BOOL(WINAPI*)(LPCWSTR,
LPWSTR,
LPSECURITY_ATTRIBUTES,
LPSECURITY_ATTRIBUTES,
BOOL,
DWORD,
LPVOID,
LPCWSTR,
LPSTARTUPINFOW,
LPPROCESS_INFORMATION);
CreateProcessWFunc real_create_process_w = CreateProcessW;
/// Counters to track injection hopping
const static int k_max_hop_count_ = 20;
static int total_hop_count_ = 0;
//----------------------------------------------------------------------------
/// Utility function to convert string to lowercase
/// \param str output string
//----------------------------------------------------------------------------
static void ToLowerCase(std::string& str)
{
std::transform(str.begin(), str.end(), str.begin(), [](char c) { return (char)::tolower(c); });
}
//----------------------------------------------------------------------------
/// Try to detect blacklisted app
/// \param app_name
/// \return True if disallowed, false otherwise
//----------------------------------------------------------------------------
static bool CheckBlackList(std::string app_name)
{
ToLowerCase(app_name);
const int count = sizeof(kBlackList) / sizeof(kBlackList[0]);
for (int i = 0; i < count; ++i)
{
if (app_name.find(kBlackList[i]) != std::string::npos)
{
return true;
}
}
return false;
}
//----------------------------------------------------------------------------
/// Returns true if the input name is on the blacklist of processes not to inject into
/// \param app The path/exe name
/// \return true if the app is blacklisted
//----------------------------------------------------------------------------
static bool BlockInjectionCheckA(LPCSTR app)
{
return CheckBlackList(app);
}
//----------------------------------------------------------------------------
/// Returns true if the input name is on the blacklist of processes not to inject into
/// \param app The path/exe name
/// \return true if the app is blacklisted
//----------------------------------------------------------------------------
static bool BlockInjectionCheckW(LPCWSTR app)
{
const std::string app_name = WideStringToString(app);
return CheckBlackList(app_name);
}
//----------------------------------------------------------------------------
/// Returns true if either of the input names is on the blacklist of processes not to inject into
/// \param app_path Path to app
/// \param cmd_line app command line
/// \return true if either of the the apps is blacklisted
//----------------------------------------------------------------------------
static bool BlockInjectionA(LPCSTR app_path, LPSTR cmd_line)
{
bool block_injection = false;
if (app_path != nullptr && strlen(app_path) > 0)
{
if (BlockInjectionCheckA(app_path))
{
block_injection = true;
}
}
if (cmd_line != nullptr)
{
if (BlockInjectionCheckA(static_cast<LPCSTR>(cmd_line)))
{
block_injection = true;
}
}
return block_injection;
}
//----------------------------------------------------------------------------
/// Returns true if either of the input names is on the blacklist of processes not to inject into
/// \param app_path Path to app
/// \param cmd_line app command line
/// \return true if either of the the apps is blacklisted
//----------------------------------------------------------------------------
static bool BlockInjectionW(LPCWSTR app_path, LPWSTR cmd_line)
{
bool block_injection = false;
if ((app_path != nullptr) && (wcslen(app_path) > 0))
{
if (BlockInjectionCheckW(app_path))
{
block_injection = true;
}
}
if (cmd_line != nullptr)
{
if (BlockInjectionCheckW(static_cast<LPCWSTR>(cmd_line)))
{
block_injection = true;
}
}
return block_injection;
}
//----------------------------------------------------------------------------
/// Entry point for the intercepted function
/// \param application_name Application name
/// \param command_line Command line
/// \param process_attributes Process attributes
/// \param thread_attributes Thread attributes
/// \param inherit_handles Inherit handles flag
/// \param creation_flags flags
/// \param environment Environment
/// \param current_directory Current directory
/// \param startup_info Startup info
/// \param process_information Process info
/// \return True or false
//----------------------------------------------------------------------------
BOOL WINAPI Mine_CreateProcessA(LPCSTR application_name,
LPSTR command_line,
LPSECURITY_ATTRIBUTES process_attributes,
LPSECURITY_ATTRIBUTES thread_attributes,
BOOL inherit_handles,
DWORD creation_flags,
LPVOID environment,
LPCSTR current_directory,
LPSTARTUPINFOA startup_info,
LPPROCESS_INFORMATION process_information)
{
BOOL ret_val = FALSE;
if (nested_count_ == 0)
{
gfxrecon::util::interception::RefTracker rf(&nested_count_);
// Get the current hop count
int hop_count = total_hop_count_;
const bool block_load = BlockInjectionA(application_name, command_line);
// Decide if we need to inject into the new process
if ((hop_count >= k_max_hop_count_) || (block_load == true))
{
ret_val = real_create_process_a(application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information);
}
else
{
// Update the current hop count
total_hop_count_ = hop_count + 1;
ret_val = gfxrecon::util::interception::LaunchAndInjectA(
application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information,
gfxrecon::util::interception::GetInterceptorPath(command_line).c_str());
}
}
else
{
ret_val = real_create_process_a(application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information);
}
return ret_val;
}
//----------------------------------------------------------------------------
/// Entry point for the intercepted function
/// \param application_name Application name
/// \param command_line Command line
/// \param process_attributes Process attributes
/// \param thread_attributes Thread attributes
/// \param inherit_handles Inherit handles flag
/// \param creation_flags flags
/// \param environment Environment
/// \param current_directory Current directory
/// \param startup_info Startup info
/// \param process_information Process info
/// \return True or false
//----------------------------------------------------------------------------
BOOL WINAPI Mine_CreateProcessW(LPCWSTR application_name,
LPWSTR command_line,
LPSECURITY_ATTRIBUTES process_attributes,
LPSECURITY_ATTRIBUTES thread_attributes,
BOOL inherit_handles,
DWORD creation_flags,
LPVOID environment,
LPCWSTR current_directory,
LPSTARTUPINFOW startup_info,
LPPROCESS_INFORMATION process_information)
{
BOOL ret_val = FALSE;
if (nested_count_ == 0)
{
gfxrecon::util::interception::RefTracker rf(&nested_count_);
// Get the current hop count
int hop_count = total_hop_count_;
const bool block_load = BlockInjectionW(application_name, command_line);
// Decide if we need to inject into the new process
if ((hop_count >= k_max_hop_count_) || (block_load == true))
{
ret_val = real_create_process_w(application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information);
}
else
{
// Update the current hop count
total_hop_count_ = hop_count + 1;
ret_val = gfxrecon::util::interception::LaunchAndInjectW(
application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information,
gfxrecon::util::interception::GetInterceptorPath(command_line).c_str());
}
}
else
{
ret_val = real_create_process_w(application_name,
command_line,
process_attributes,
thread_attributes,
inherit_handles,
creation_flags,
environment,
current_directory,
startup_info,
process_information);
}
return ret_val;
}
bool HookCreateProcess()
{
bool hook_success = gfxrecon::util::interception::HookAPICall(&(PVOID&)real_create_process_a, Mine_CreateProcessA);
assert(hook_success == true);
hook_success = gfxrecon::util::interception::HookAPICall(&(PVOID&)real_create_process_w, Mine_CreateProcessW);
assert(hook_success == true);
return hook_success;
}
bool UnhookCreateProcess()
{
bool unhook_success =
gfxrecon::util::interception::UnhookAPICall(&(PVOID&)real_create_process_a, Mine_CreateProcessA);
assert(unhook_success == true);
unhook_success = gfxrecon::util::interception::UnhookAPICall(&(PVOID&)real_create_process_w, Mine_CreateProcessW);
assert(unhook_success == true);
// Restore Real functions to original values in case they aren't restored correctly by the unhook call
real_create_process_w = CreateProcessW;
real_create_process_a = CreateProcessA;
return unhook_success;
}
GFXRECON_END_NAMESPACE(interception)
GFXRECON_END_NAMESPACE(util)
GFXRECON_END_NAMESPACE(gfxrecon)
|