VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/freebsd/rtProcInitExePath-freebsd.cpp@ 28800

Last change on this file since 28800 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* $Id: rtProcInitExePath-freebsd.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT - rtProcInitName, FreeBSD.
4 */
5
6/*
7 * Copyright (C) 2006-2008 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#ifdef KERN_PROC_PATHNAME
49 int aiName[4];
50 aiName[0] = CTL_KERN;
51 aiName[1] = KERN_PROC;
52 aiName[2] = KERN_PROC_PATHNAME; /* This was introduced in FreeBSD 6.0, thus the #ifdef above. */
53 aiName[3] = -1; /* Shorthand for the current process. */
54
55 size_t cchExePath = cchPath;
56 if (sysctl(aiName, RT_ELEMENTS(aiName), pszPath, &cchExePath, NULL, 0) == 0)
57 {
58
59 char *pszTmp = NULL;
60 int rc = rtPathFromNative(&pszTmp, pszPath);
61 AssertMsgRCReturn(rc, ("rc=%Rrc pszPath=\"%s\"\nhex: %.*Rhsx\n", rc, pszPath, cchExePath, pszPath), rc);
62
63 size_t cch = strlen(pszTmp);
64 AssertReturn(cch <= cchPath, VERR_BUFFER_OVERFLOW);
65
66 memcpy(pszPath, pszTmp, cch + 1);
67 RTStrFree(pszTmp);
68
69 return VINF_SUCCESS;
70 }
71
72 int rc = RTErrConvertFromErrno(errno);
73 AssertMsgFailed(("rc=%Rrc errno=%d cchExePath=%d\n", rc, errno, cchExePath));
74 return rc;
75
76#else
77
78 /*
79 * Read the /proc/curproc/file link, convert to native and return it.
80 */
81 int cchLink = readlink("/proc/curproc/file", pszPath, cchPath - 1);
82 if (cchLink > 0 && (size_t)cchLink <= cchPath - 1)
83 {
84 pszPath[cchLink] = '\0';
85
86 char *pszTmp = NULL;
87 int rc = rtPathFromNative(&pszTmp, pszPath);
88 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhsx\n", rc, pszPath, cchLink, pszPath), rc);
89
90 size_t cch = strlen(pszTmp);
91 AssertReturn(cch <= cchPath, VERR_BUFFER_OVERFLOW);
92
93 memcpy(pszPath, pszTmp, cch + 1);
94 RTStrFree(pszTmp);
95
96 return VINF_SUCCESS;
97 }
98
99 int err = errno;
100
101 /*
102 * Fall back on the dynamic linker since /proc is optional.
103 */
104 void *hExe = dlopen(NULL, 0);
105 if (hExe)
106 {
107 struct link_map const *pLinkMap = 0;
108 if (dlinfo(hExe, RTLD_DI_LINKMAP, &pLinkMap) == 0)
109 {
110 const char *pszImageName = pLinkMap->l_name;
111 if (*pszImageName == '/') /* this may not always be absolute, despite the docs. :-( */
112 {
113 char *pszTmp = NULL;
114 int rc = rtPathFromNative(&pszTmp, pszImageName);
115 AssertMsgRCReturn(rc, ("rc=%Rrc pszImageName=\"%s\"\n", rc, pszImageName), rc);
116
117 size_t cch = strlen(pszTmp);
118 AssertReturn(cch <= cchPath, VERR_BUFFER_OVERFLOW);
119
120 memcpy(pszPath, pszTmp, cch + 1);
121 RTStrFree(pszTmp);
122
123 return VINF_SUCCESS;
124 }
125 /** @todo Try search the PATH for the file name or append the current
126 * directory, which ever makes sense... */
127 }
128 }
129
130 int rc = RTErrConvertFromErrno(err);
131 AssertMsgFailed(("rc=%Rrc err=%d cchLink=%d hExe=%p\n", rc, err, cchLink, hExe));
132 return rc;
133#endif
134}
135
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