f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync/* $Id$ */
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync/** @file
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * IPRT - rtProcInitName, OS/2.
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync */
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync *
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * available from http://www.virtualbox.org. This file is free software;
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * you can redistribute it and/or modify it under the terms of the GNU
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * General Public License (GPL) as published by the Free Software
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync *
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * The contents of this file may alternatively be used under the terms
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * of the Common Development and Distribution License Version 1.0
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * VirtualBox OSE distribution, in which case the provisions of the
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * CDDL are applicable instead of those of the GPL.
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync *
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * You may elect to license modified versions of this file under the
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * terms and conditions of either the GPL or the CDDL or both.
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync */
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync/*******************************************************************************
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync* Header Files *
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync*******************************************************************************/
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#define LOG_GROUP RTLOGGROUP_PROCESS
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <stdlib.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <stdio.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <unistd.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <iprt/string.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <iprt/assert.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <iprt/err.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include <iprt/path.h>
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include "internal/process.h"
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync#include "internal/path.h"
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsyncDECLHIDDEN(int) rtProcInitExePath(char *pszPath, size_t cchPath)
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync{
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync /*
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync * Query the image name from the dynamic linker, convert and return it.
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync */
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync _execname(pszPath, cchPath);
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync
95bbd60a323feec1eaf008a93690364eea86c298vboxsync char const *pszTmp;
95bbd60a323feec1eaf008a93690364eea86c298vboxsync int rc = rtPathFromNative(&pszTmp, pszPath, NULL);
92453c7e11969eccff568c08178524f057247426vboxsync AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchPath, pszPath), rc);
95bbd60a323feec1eaf008a93690364eea86c298vboxsync if (pszTmp != pszPath)
95bbd60a323feec1eaf008a93690364eea86c298vboxsync {
95bbd60a323feec1eaf008a93690364eea86c298vboxsync rc = RTStrCopy(pszPath, cchPath, pszTmp);
95bbd60a323feec1eaf008a93690364eea86c298vboxsync rtPathFreeIprt(pszTmp, pszPath);
95bbd60a323feec1eaf008a93690364eea86c298vboxsync }
95bbd60a323feec1eaf008a93690364eea86c298vboxsync return rc;
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync}
f0f603c5fba5a342c00101bbaf5fad0bbd44fb55vboxsync