VirtualBox

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

Last change on this file since 63190 was 63190, checked in by vboxsync, 9 years ago

Runtime/NetBSD: rtProcInitExePath-netbsd.cpp based on FreeBSD version.
KERN_PROC_PATHNAME is only in NetBSD-current, so can't use it.

From Haomai Wang GSoC project with additional changes by Arto Huusko.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1/* $Id: rtProcInitExePath-netbsd.cpp 63190 2016-08-09 02:28:03Z vboxsync $ */
2/** @file
3 * IPRT - rtProcInitName, NetBSD.
4 */
5
6/*
7 * Copyright (C) 2006-2010 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* Header Files *
29*******************************************************************************/
30#define LOG_GROUP RTLOGGROUP_PROCESS
31#include <sys/param.h>
32#include <sys/sysctl.h>
33#include <unistd.h>
34#include <errno.h>
35#include <dlfcn.h>
36#include <link.h>
37
38#include <iprt/string.h>
39#include <iprt/assert.h>
40#include <iprt/err.h>
41#include <iprt/path.h>
42#include "internal/process.h"
43#include "internal/path.h"
44
45
46DECLHIDDEN(int) rtProcInitExePath(char *pszPath, size_t cchPath)
47{
48 /*
49 * Read the /proc/curproc/file link, convert to native and return it.
50 */
51 int cchLink = readlink("/proc/curproc/exe", pszPath, cchPath - 1);
52 if (cchLink > 0 && (size_t)cchLink <= cchPath - 1)
53 {
54 pszPath[cchLink] = '\0';
55
56 char const *pszTmp;
57 int rc = rtPathFromNative(&pszTmp, pszPath, NULL);
58 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchLink, pszPath), rc);
59 if (pszTmp != pszPath)
60 {
61 rc = RTStrCopy(pszPath, cchPath, pszTmp);
62 rtPathFreeIprt(pszTmp, pszPath);
63 }
64 return rc;
65 }
66
67 int err = errno;
68
69 /*
70 * Fall back on the dynamic linker since /proc is optional.
71 */
72 void *hExe = dlopen(NULL, 0);
73 if (hExe)
74 {
75 struct link_map const *pLinkMap = 0;
76 if (dlinfo(hExe, RTLD_DI_LINKMAP, &pLinkMap) == 0)
77 {
78 const char *pszImageName = pLinkMap->l_name;
79 if (*pszImageName == '/') /* this may not always be absolute, despite the docs. :-( */
80 {
81 char const *pszTmp;
82 int rc = rtPathFromNative(&pszTmp, pszImageName, NULL);
83 AssertMsgRCReturn(rc, ("rc=%Rrc pszImageName=\"%s\"\n", rc, pszImageName), rc);
84 if (pszTmp != pszPath)
85 {
86 rc = RTStrCopy(pszPath, cchPath, pszTmp);
87 rtPathFreeIprt(pszTmp, pszPath);
88 }
89 return rc;
90 }
91 /** @todo Try search the PATH for the file name or append the current
92 * directory, which ever makes sense... */
93 }
94 }
95
96 int rc = RTErrConvertFromErrno(err);
97 AssertMsgFailed(("rc=%Rrc err=%d cchLink=%d hExe=%p\n", rc, err, cchLink, hExe));
98 return rc;
99}
Note: See TracBrowser for help on using the repository browser.

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