VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/netbsd/rtProcInitExePath-netbsd.cpp@ 95685

Last change on this file since 95685 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/* $Id: rtProcInitExePath-netbsd.cpp 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * IPRT - rtProcInitName, NetBSD.
4 */
5
6/*
7 * Copyright (C) 2006-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#define LOG_GROUP RTLOGGROUP_PROCESS
32#include <sys/param.h>
33#include <sys/sysctl.h>
34#include <unistd.h>
35#include <errno.h>
36#include <dlfcn.h>
37#include <link.h>
38
39#include <iprt/string.h>
40#include <iprt/assert.h>
41#include <iprt/errcore.h>
42#include <iprt/path.h>
43#include "internal/process.h"
44#include "internal/path.h"
45
46
47DECLHIDDEN(int) rtProcInitExePath(char *pszPath, size_t cchPath)
48{
49 /*
50 * Read the /proc/curproc/file link, convert to native and return it.
51 */
52 int cchLink = readlink("/proc/curproc/exe", pszPath, cchPath - 1);
53 if (cchLink > 0 && (size_t)cchLink <= cchPath - 1)
54 {
55 pszPath[cchLink] = '\0';
56
57 char const *pszTmp;
58 int rc = rtPathFromNative(&pszTmp, pszPath, NULL);
59 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchLink, pszPath), rc);
60 if (pszTmp != pszPath)
61 {
62 rc = RTStrCopy(pszPath, cchPath, pszTmp);
63 rtPathFreeIprt(pszTmp, pszPath);
64 }
65 return rc;
66 }
67
68 int err = errno;
69
70 /*
71 * Fall back on the dynamic linker since /proc is optional.
72 */
73 void *hExe = dlopen(NULL, 0);
74 if (hExe)
75 {
76 struct link_map const *pLinkMap = 0;
77 if (dlinfo(hExe, RTLD_DI_LINKMAP, &pLinkMap) == 0)
78 {
79 const char *pszImageName = pLinkMap->l_name;
80 if (*pszImageName == '/') /* this may not always be absolute, despite the docs. :-( */
81 {
82 char const *pszTmp;
83 int rc = rtPathFromNative(&pszTmp, pszImageName, NULL);
84 AssertMsgRCReturn(rc, ("rc=%Rrc pszImageName=\"%s\"\n", rc, pszImageName), rc);
85 if (pszTmp != pszPath)
86 {
87 rc = RTStrCopy(pszPath, cchPath, pszTmp);
88 rtPathFreeIprt(pszTmp, pszPath);
89 }
90 return rc;
91 }
92 /** @todo Try search the PATH for the file name or append the current
93 * directory, which ever makes sense... */
94 }
95 }
96
97 int rc = RTErrConvertFromErrno(err);
98 AssertMsgFailed(("rc=%Rrc err=%d cchLink=%d hExe=%p\n", rc, err, cchLink, hExe));
99 return rc;
100}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette