X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fporting.cpp;h=98b85b7d00dcedceab0a2e3b80a9539b786ac591;hb=65c09a96f41705bb8e75fc5ff4276342be91ed11;hp=ef461242d28cad1afb37e34c889d3d9df55cfe71;hpb=75ddf4d221301bea206311df4834903c64c566c1;p=minetest.git diff --git a/src/porting.cpp b/src/porting.cpp index ef461242d..98b85b7d0 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -25,29 +25,36 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "porting.h" -#if defined(__APPLE__) - #include - #include "CoreFoundation/CoreFoundation.h" -#elif defined(__FreeBSD__) +#if defined(__FreeBSD__) #include #include #elif defined(_WIN32) + #include + #include #include -#elif defined(__LINUX) - #include #endif #if !defined(_WIN32) - #include #include #include #endif +#if defined(__hpux) + #define _PSTAT64 + #include +#endif +#if !defined(_WIN32) && !defined(__APPLE__) && \ + !defined(__ANDROID__) && !defined(SERVER) + #define XORG_USED +#endif +#ifdef XORG_USED + #include + #include +#endif #include "config.h" #include "debug.h" #include "filesys.h" #include "log.h" #include "util/string.h" -#include "main.h" #include "settings.h" #include @@ -70,20 +77,17 @@ bool * signal_handler_killstatus(void) void sigint_handler(int sig) { - if(g_killed == false) - { - dstream< - BOOL WINAPI event_handler(DWORD sig) - { - switch(sig) - { - case CTRL_C_EVENT: - case CTRL_CLOSE_EVENT: - case CTRL_LOGOFF_EVENT: - case CTRL_SHUTDOWN_EVENT: - - if(g_killed == false) - { - dstream<= 702106)) \ - || defined(__linux) || defined(linux) - - cpu_set_t cpuset; - - CPU_ZERO(&cpuset); - CPU_SET(pnumber, &cpuset); - return pthread_setaffinity_np(tid, sizeof(cpuset), &cpuset) == 0; - -#elif defined(__sun) || defined(sun) - - return processor_bind(P_LWPID, MAKE_LWPID_PTHREAD(tid), - pnumber, NULL) == 0; - -#elif defined(_AIX) - - return bindprocessor(BINDTHREAD, (tid_t)tid, pnumber) == 0; - -#elif defined(__hpux) || defined(hpux) - - pthread_spu_t answer; - - return pthread_processor_bind_np(PTHREAD_BIND_ADVISORY_NP, - &answer, pnumber, tid) == 0; - -#elif defined(__APPLE__) - - struct thread_affinity_policy tapol; - - thread_port_t threadport = pthread_mach_thread_np(tid); - tapol.affinity_tag = pnumber + 1; - return thread_policy_set(threadport, THREAD_AFFINITY_POLICY, - (thread_policy_t)&tapol, THREAD_AFFINITY_POLICY_COUNT) == KERN_SUCCESS; - -#else - - return false; - #endif -} - - -bool threadSetPriority(threadid_t tid, int prio) -{ -#if defined(_WIN32) - - HANDLE hThread = OpenThread(THREAD_ALL_ACCESS, 0, tid); - if (!hThread) - return false; - - bool success = SetThreadPriority(hThread, prio) != 0; - - CloseHandle(hThread); - return success; - -#else - - struct sched_param sparam; - int policy; - - if (pthread_getschedparam(tid, &policy, &sparam) != 0) - return false; - - int min = sched_get_priority_min(policy); - int max = sched_get_priority_max(policy); - - sparam.sched_priority = min + prio * (max - min) / THREAD_PRIORITY_HIGHEST; - return pthread_setschedparam(tid, policy, &sparam) == 0; - -#endif -} /* @@ -267,6 +138,9 @@ bool threadSetPriority(threadid_t tid, int prio) // Default to RUN_IN_PLACE style relative paths std::string path_share = ".."; std::string path_user = ".."; +std::string path_locale = path_share + DIR_DELIM + "locale"; +std::string path_cache = path_user + DIR_DELIM + "cache"; + std::string getDataPath(const char *subpath) { @@ -285,10 +159,16 @@ void pathRemoveFile(char *path, char delim) path[i] = 0; } -bool detectMSVCBuildDir(char *c_path) +bool detectMSVCBuildDir(const std::string &path) { - std::string path(c_path); - const char *ends[] = {"bin\\Release", "bin\\Build", NULL}; + const char *ends[] = { + "bin\\Release", + "bin\\MinSizeRel", + "bin\\RelWithDebInfo", + "bin\\Debug", + "bin\\Build", + NULL + }; return (removeStringEnd(path, ends) != ""); } @@ -306,14 +186,14 @@ std::string get_sysinfo() oss << "Windows/" << osvi.dwMajorVersion << "." << osvi.dwMinorVersion; - if(osvi.szCSDVersion[0]) + if (osvi.szCSDVersion[0]) oss << "-" << tmp; oss << " "; #ifdef _WIN64 oss << "x86_64"; #else BOOL is64 = FALSE; - if(IsWow64Process(GetCurrentProcess(), &is64) && is64) + if (IsWow64Process(GetCurrentProcess(), &is64) && is64) oss << "x86_64"; // 32-bit app on 64-bit OS else oss << "x86"; @@ -328,341 +208,580 @@ std::string get_sysinfo() #endif } -void initializePaths() + +bool getCurrentWorkingDir(char *buf, size_t len) { -#if RUN_IN_PLACE - /* - Use relative paths if RUN_IN_PLACE - */ +#ifdef _WIN32 + DWORD ret = GetCurrentDirectory(len, buf); + return (ret != 0) && (ret <= len); +#else + return getcwd(buf, len); +#endif +} - infostream<<"Using relative paths (RUN_IN_PLACE)"<= len) + return false; -#else // RUN_IN_PLACE + return true; +} + + +// HP-UX +#elif defined(__hpux) + +bool getCurrentExecPath(char *buf, size_t len) +{ + struct pst_status psts; + + if (pstat_getproc(&psts, sizeof(psts), 0, getpid()) == -1) + return false; + + if (pstat_getpathname(buf, len, &psts.pst_fid_text) == -1) + return false; + + return true; +} + + +#else + +bool getCurrentExecPath(char *buf, size_t len) +{ + return false; +} - /* - Use platform-specific paths otherwise - */ +#endif - infostream<<"Using system-wide paths (NOT RUN_IN_PLACE)"<" - len = GetEnvironmentVariable("APPDATA", buf, buflen); - assert(len < buflen); + DWORD len = GetEnvironmentVariable("APPDATA", buf, sizeof(buf)); + FATAL_ERROR_IF(len == 0 || len > sizeof(buf), "Failed to get APPDATA"); + path_user = std::string(buf) + DIR_DELIM + PROJECT_NAME; + return true; +} - /* - Linux - */ - #elif defined(linux) - // Get path to executable - std::string bindir = ""; - { - char buf[BUFSIZ]; - memset(buf, 0, BUFSIZ); - assert(readlink("/proc/self/exe", buf, BUFSIZ-1) != -1); - pathRemoveFile(buf, '/'); - bindir = buf; +//// Linux +#elif defined(linux) || defined(__linux) + +bool setSystemPaths() +{ + char buf[BUFSIZ]; + + if (!getCurrentExecPath(buf, sizeof(buf))) { +#ifdef __ANDROID__ + errorstream << "Unable to read bindir "<< std::endl; +#else + FATAL_ERROR("Unable to read bindir"); +#endif + return false; } + pathRemoveFile(buf, '/'); + std::string bindir(buf); + // Find share directory from these. // It is identified by containing the subdirectory "builtin". std::list trylist; std::string static_sharedir = STATIC_SHAREDIR; - if(static_sharedir != "" && static_sharedir != ".") + if (static_sharedir != "" && static_sharedir != ".") trylist.push_back(static_sharedir); - trylist.push_back( - bindir + DIR_DELIM + ".." + DIR_DELIM + "share" + DIR_DELIM + PROJECT_NAME); - trylist.push_back(bindir + DIR_DELIM + ".."); - for(std::list::const_iterator i = trylist.begin(); - i != trylist.end(); i++) - { + trylist.push_back(bindir + DIR_DELIM ".." DIR_DELIM "share" + DIR_DELIM + PROJECT_NAME); + trylist.push_back(bindir + DIR_DELIM ".."); + +#ifdef __ANDROID__ + trylist.push_back(path_user); +#endif + + for (std::list::const_iterator + i = trylist.begin(); i != trylist.end(); i++) { const std::string &trypath = *i; - if(!fs::PathExists(trypath) || !fs::PathExists(trypath + DIR_DELIM + "builtin")){ - dstream<<"WARNING: system-wide share not found at \"" - <= 1 && buf[cwdlen - 1] == DIR_DELIM_CHAR) { + cwdlen--; + buf[cwdlen] = '\0'; + } + + if (cwdlen >= 4 && !strcmp(buf + cwdlen - 4, DIR_DELIM "bin")) + pathRemoveFile(buf, DIR_DELIM_CHAR); + + std::string execpath(buf); + + path_share = execpath; + path_user = execpath; + } + path_cache = path_user + DIR_DELIM + "cache"; +#else + infostream << "Using system-wide paths (NOT RUN_IN_PLACE)" << std::endl; + + if (!setSystemPaths()) + errorstream << "Failed to get one or more system-wide path" << std::endl; + + // Initialize path_cache + // First try $XDG_CACHE_HOME/PROJECT_NAME + const char *cache_dir = getenv("XDG_CACHE_HOME"); + const char *home_dir = getenv("HOME"); + if (cache_dir) { + path_cache = std::string(cache_dir) + DIR_DELIM + PROJECT_NAME; + } else if (home_dir) { + // Then try $HOME/.cache/PROJECT_NAME + path_cache = std::string(home_dir) + DIR_DELIM + ".cache" + + DIR_DELIM + PROJECT_NAME; + } else { + // If neither works, use $PATH_USER/cache + path_cache = path_user + DIR_DELIM + "cache"; + } + // Migrate cache folder to new location if possible + migrateCachePath(); +#endif + + infostream << "Detected share path: " << path_share << std::endl; + infostream << "Detected user path: " << path_user << std::endl; + infostream << "Detected cache path: " << path_cache << std::endl; + +#ifdef USE_GETTEXT + bool found_localedir = false; +# ifdef STATIC_LOCALEDIR + if (STATIC_LOCALEDIR[0] && fs::PathExists(STATIC_LOCALEDIR)) { + found_localedir = true; + path_locale = STATIC_LOCALEDIR; + infostream << "Using locale directory " << STATIC_LOCALEDIR << std::endl; + } else { + path_locale = getDataPath("locale"); + if (fs::PathExists(path_locale)) { + found_localedir = true; + infostream << "Using in-place locale directory " << path_locale + << " even though a static one was provided " + << "(RUN_IN_PLACE or CUSTOM_LOCALEDIR)." << std::endl; + } + } +# else + path_locale = getDataPath("locale"); + if (fs::PathExists(path_locale)) { + found_localedir = true; + } +# endif + if (!found_localedir) { + warningstream << "Couldn't find a locale directory!" << std::endl; + } +#endif // USE_GETTEXT +} + + -void initIrrlicht(irr::IrrlichtDevice * _device) +void setXorgClassHint(const video::SExposedVideoData &video_data, + const std::string &name) { - device = _device; +#ifdef XORG_USED + if (video_data.OpenGLLinux.X11Display == NULL) + return; + + XClassHint *classhint = XAllocClassHint(); + classhint->res_name = (char *)name.c_str(); + classhint->res_class = (char *)name.c_str(); + + XSetClassHint((Display *)video_data.OpenGLLinux.X11Display, + video_data.OpenGLLinux.X11Window, classhint); + XFree(classhint); +#endif } + +//// +//// Video/Display Information (Client-only) +//// + #ifndef SERVER + +static irr::IrrlichtDevice *device; + +void initIrrlicht(irr::IrrlichtDevice *device_) +{ + device = device_; +} + v2u32 getWindowSize() { return device->getVideoDriver()->getScreenSize(); } -float getDisplayDensity() +std::vector > getSupportedVideoModes() { - float gui_scaling = g_settings->getFloat("gui_scaling"); - // using Y here feels like a bug, this needs to be discussed later! - if (getWindowSize().Y <= 800) { - return (2.0/3.0) * gui_scaling; - } - if (getWindowSize().Y <= 1280) { - return 1.0 * gui_scaling; + IrrlichtDevice *nulldevice = createDevice(video::EDT_NULL); + sanity_check(nulldevice != NULL); + + std::vector > mlist; + video::IVideoModeList *modelist = nulldevice->getVideoModeList(); + + u32 num_modes = modelist->getVideoModeCount(); + for (u32 i = 0; i != num_modes; i++) { + core::dimension2d mode_res = modelist->getVideoModeResolution(i); + s32 mode_depth = modelist->getVideoModeDepth(i); + mlist.push_back(core::vector3d(mode_res.Width, mode_res.Height, mode_depth)); } - return (4.0/3.0) * gui_scaling; + nulldevice->drop(); + + return mlist; } -v2u32 getDisplaySize() +std::vector getSupportedVideoDrivers() { - IrrlichtDevice *nulldevice = createDevice(video::EDT_NULL); + std::vector drivers; - core::dimension2d deskres = nulldevice->getVideoModeList()->getDesktopResolution(); - nulldevice -> drop(); + for (int i = 0; i != irr::video::EDT_COUNT; i++) { + if (irr::IrrlichtDevice::isDriverSupported((irr::video::E_DRIVER_TYPE)i)) + drivers.push_back((irr::video::E_DRIVER_TYPE)i); + } - return deskres; + return drivers; } -#endif -#ifdef SERVER -#ifdef _WIN32 -void daemonize() +const char *getVideoDriverName(irr::video::E_DRIVER_TYPE type) { - errorstream << "daemonize not implemented on windows" << std::endl; + static const char *driver_ids[] = { + "null", + "software", + "burningsvideo", + "direct3d8", + "direct3d9", + "opengl", + "ogles1", + "ogles2", + }; + + return driver_ids[type]; } -#else // assume posix like os -static std::string get_pidfile_path() + +const char *getVideoDriverFriendlyName(irr::video::E_DRIVER_TYPE type) { - // make it static to make sure it won't change after first call to this fct - static std::string path_pidfile = ""; - static bool initialized = false; + static const char *driver_names[] = { + "NULL Driver", + "Software Renderer", + "Burning's Video", + "Direct3D 8", + "Direct3D 9", + "OpenGL", + "OpenGL ES1", + "OpenGL ES2", + }; + + return driver_names[type]; +} - if (initialized) - { - return path_pidfile; - } +# ifndef __ANDROID__ +# ifdef XORG_USED - g_settings->getNoEx("pidfile", path_pidfile); +static float calcDisplayDensity() +{ + const char *current_display = getenv("DISPLAY"); - if (path_pidfile == "") { -#ifdef RUN_IN_PLACE - path_pidfile = "pidfile.pid"; -#else - path_pidfile = "/var/run/minetest.pid"; -#endif + if (current_display != NULL) { + Display *x11display = XOpenDisplay(current_display); + + if (x11display != NULL) { + /* try x direct */ + float dpi_height = floor(DisplayHeight(x11display, 0) / + (DisplayHeightMM(x11display, 0) * 0.039370) + 0.5); + float dpi_width = floor(DisplayWidth(x11display, 0) / + (DisplayWidthMM(x11display, 0) * 0.039370) + 0.5); + + XCloseDisplay(x11display); + + return std::max(dpi_height,dpi_width) / 96.0; + } } - initialized = true; - return path_pidfile; + + /* return manually specified dpi */ + return g_settings->getFloat("screen_dpi")/96.0; } -void daemonize() +float getDisplayDensity() { - std::string path_pidfile = get_pidfile_path(); + static float cached_display_density = calcDisplayDensity(); + return cached_display_density; +} - FILE* pidfile = fopen(path_pidfile.c_str(),"r"); - if (pidfile) { - int pid = 0; - if (fscanf(pidfile, "%i", &pid) == 1) { - if (kill(pid, 0) == 0) { - errorstream << - "Minetestserver is already running with pid: " - << pid << std::endl; - exit(-1); - } - } else { - errorstream << "Pidfile \"" << path_pidfile << "\" " - "already exists but content is invalid" << std::endl << - "Delete it manually if you're sure minetest isn't running!" - << std::endl; - exit(-1); - } - fclose(pidfile); - pidfile = 0; - } +# else // XORG_USED +float getDisplayDensity() +{ + return g_settings->getFloat("screen_dpi")/96.0; +} +# endif // XORG_USED + +v2u32 getDisplaySize() +{ + IrrlichtDevice *nulldevice = createDevice(video::EDT_NULL); - pid_t pid = fork(); + core::dimension2d deskres = nulldevice->getVideoModeList()->getDesktopResolution(); + nulldevice -> drop(); - if (pid > 0) { - pidfile = fopen(path_pidfile.c_str(),"w+"); - if (pidfile) { - fprintf(pidfile,"%i",pid); - fclose(pidfile); - } else { - errorstream << "Failed to create pidfile: \"" << path_pidfile - << "\""<< std::endl; - } - exit (0); - } else if (pid == 0) { - fclose(stdout); - fclose(stderr); - return; - } + return deskres; +} +# endif // __ANDROID__ +#endif // SERVER + + +//// +//// OS-specific Secure Random +//// + +#ifdef WIN32 + +bool secure_rand_fill_buf(void *buf, size_t len) +{ + HCRYPTPROV wctx; + + if (!CryptAcquireContext(&wctx, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) + return false; - errorstream << "Failed to daemonize minetest, exiting" << std::endl; - exit(-1); + CryptGenRandom(wctx, len, (BYTE *)buf); + CryptReleaseContext(wctx, 0); + return true; } -void cleanup_pid() +#else + +bool secure_rand_fill_buf(void *buf, size_t len) { - unlink(get_pidfile_path().c_str()); + // N.B. This function checks *only* for /dev/urandom, because on most + // common OSes it is non-blocking, whereas /dev/random is blocking, and it + // is exceptionally uncommon for there to be a situation where /dev/random + // exists but /dev/urandom does not. This guesswork is necessary since + // random devices are not covered by any POSIX standard... + FILE *fp = fopen("/dev/urandom", "rb"); + if (!fp) + return false; + + bool success = fread(buf, len, 1, fp) == 1; + + fclose(fp); + return success; } -#endif + #endif } //namespace porting -