mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-02 04:41:08 +00:00
There's no need to wait for exponential backoff to satisfy waitTime > MAX_WAIT_TIME if we already found the result.
136 lines
3.6 KiB
C++
136 lines
3.6 KiB
C++
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2016-2017 Baldur Karlsson
|
|
*
|
|
* 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 <unistd.h>
|
|
#include "os/os_specific.h"
|
|
|
|
extern char **environ;
|
|
|
|
#define INITIAL_WAIT_TIME 1000
|
|
#define MAX_WAIT_TIME 128000
|
|
|
|
char **GetCurrentEnvironment()
|
|
{
|
|
return environ;
|
|
}
|
|
|
|
int GetIdentPort(pid_t childPid)
|
|
{
|
|
int ret = 0;
|
|
|
|
string procfile = StringFormat::Fmt("/proc/%d/net/tcp", (int)childPid);
|
|
|
|
int waitTime = INITIAL_WAIT_TIME;
|
|
|
|
// try for a little while for the /proc entry to appear
|
|
while(ret == 0 && waitTime <= MAX_WAIT_TIME)
|
|
{
|
|
// back-off for each retry
|
|
usleep(waitTime);
|
|
|
|
waitTime *= 2;
|
|
|
|
FILE *f = FileIO::fopen(procfile.c_str(), "r");
|
|
|
|
if(f == NULL)
|
|
{
|
|
// try again in a bit
|
|
continue;
|
|
}
|
|
|
|
// read through the proc file to check for an open listen socket
|
|
while(ret == 0 && !feof(f))
|
|
{
|
|
const size_t sz = 512;
|
|
char line[sz];
|
|
line[sz - 1] = 0;
|
|
fgets(line, sz - 1, f);
|
|
|
|
int socketnum = 0, hexip = 0, hexport = 0;
|
|
int num = sscanf(line, " %d: %x:%x", &socketnum, &hexip, &hexport);
|
|
|
|
// find open listen socket on 0.0.0.0:port
|
|
if(num == 3 && hexip == 0 && hexport >= RenderDoc_FirstTargetControlPort &&
|
|
hexport <= RenderDoc_LastTargetControlPort)
|
|
{
|
|
ret = hexport;
|
|
}
|
|
}
|
|
|
|
FileIO::fclose(f);
|
|
}
|
|
|
|
if(ret == 0)
|
|
{
|
|
RDCWARN("Couldn't locate renderdoc target control listening port between %u and %u in %s",
|
|
(uint32_t)RenderDoc_FirstTargetControlPort, (uint32_t)RenderDoc_LastTargetControlPort,
|
|
procfile.c_str());
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
// because OSUtility::DebuggerPresent is called often we want it to be
|
|
// cheap. Opening and parsing a file would cause high overhead on each
|
|
// call, so instead we just cache it at startup. This fails in the case
|
|
// of attaching to processes
|
|
bool debuggerPresent = false;
|
|
|
|
void CacheDebuggerPresent()
|
|
{
|
|
FILE *f = FileIO::fopen("/proc/self/status", "r");
|
|
|
|
if(f == NULL)
|
|
{
|
|
RDCWARN("Couldn't open /proc/self/status");
|
|
return;
|
|
}
|
|
|
|
// read through the proc file to check for TracerPid
|
|
while(!feof(f))
|
|
{
|
|
const size_t sz = 512;
|
|
char line[sz];
|
|
line[sz - 1] = 0;
|
|
fgets(line, sz - 1, f);
|
|
|
|
int tracerpid = 0;
|
|
int num = sscanf(line, "TracerPid: %d", &tracerpid);
|
|
|
|
// found TracerPid line
|
|
if(num == 1)
|
|
{
|
|
debuggerPresent = (tracerpid != 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
FileIO::fclose(f);
|
|
}
|
|
|
|
bool OSUtility::DebuggerPresent()
|
|
{
|
|
return debuggerPresent;
|
|
}
|