VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibPidFile.cpp

Last change on this file was 98473, checked in by vboxsync, 16 months ago

Guest Library: Introduce VbglR3DaemonizeEx and VbglR3PidfileWait (fix build), bugref:10359.

  • Property svn:eol-style set to native
  • Property svn:keyword set to Id
  • Property svn:keywords set to Id Revision
File size: 5.3 KB
Line 
1/** $Id: VBoxGuestR3LibPidFile.cpp 98473 2023-02-03 19:04:00Z vboxsync $ */
2/** @file
3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions,
4 * Create a PID file.
5 */
6
7/*
8 * Copyright (C) 2015-2023 Oracle and/or its affiliates.
9 *
10 * This file is part of VirtualBox base platform packages, as
11 * available from https://www.virtualbox.org.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation, in version 3 of the
16 * License.
17 *
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, see <https://www.gnu.org/licenses>.
25 *
26 * The contents of this file may alternatively be used under the terms
27 * of the Common Development and Distribution License Version 1.0
28 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
29 * in the VirtualBox distribution, in which case the provisions of the
30 * CDDL are applicable instead of those of the GPL.
31 *
32 * You may elect to license modified versions of this file under the
33 * terms and conditions of either the GPL or the CDDL or both.
34 *
35 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
36 */
37
38
39/*********************************************************************************************************************************
40* Header Files *
41*********************************************************************************************************************************/
42#include <iprt/file.h>
43#include <iprt/string.h>
44#include <iprt/process.h>
45#include <iprt/thread.h>
46#include <iprt/err.h>
47#include "VBoxGuestR3LibInternal.h"
48
49/* A time to wait before starting the next attempt to check a pidfile. */
50#define VBGL_PIDFILE_WAIT_RELAX_TIME_MS (250)
51
52/**
53 * Creates a PID File and returns the open file descriptor.
54 *
55 * On DOS based system, file sharing (deny write) is used for locking the PID
56 * file.
57 *
58 * On Unix-y systems, an exclusive advisory lock is used for locking the PID
59 * file since the file sharing support is usually missing there.
60 *
61 * This API will overwrite any existing PID Files without a lock on them, on the
62 * assumption that they are stale files which an old process did not properly
63 * clean up.
64 *
65 * @returns IPRT status code.
66 * @param pszPath The path and filename to create the PID File under
67 * @param phFile Where to store the file descriptor of the open (and locked
68 * on Unix-y systems) PID File. On failure, or if another
69 * process owns the PID File, this will be set to NIL_RTFILE.
70 */
71VBGLR3DECL(int) VbglR3PidFile(const char *pszPath, PRTFILE phFile)
72{
73 AssertPtrReturn(pszPath, VERR_INVALID_PARAMETER);
74 AssertPtrReturn(phFile, VERR_INVALID_PARAMETER);
75 *phFile = NIL_RTFILE;
76
77 RTFILE hPidFile;
78 int rc = RTFileOpen(&hPidFile, pszPath,
79 RTFILE_O_READWRITE | RTFILE_O_OPEN_CREATE | RTFILE_O_DENY_WRITE
80 | (0644 << RTFILE_O_CREATE_MODE_SHIFT));
81 if (RT_SUCCESS(rc))
82 {
83#if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2)
84 /** @todo using size 0 for locking means lock all on Posix.
85 * We should adopt this as our convention too, or something
86 * similar. */
87 rc = RTFileLock(hPidFile, RTFILE_LOCK_WRITE, 0, 0);
88 if (RT_FAILURE(rc))
89 RTFileClose(hPidFile);
90 else
91#endif
92 {
93 char szBuf[256];
94 size_t cbPid = RTStrPrintf(szBuf, sizeof(szBuf), "%d\n",
95 RTProcSelf());
96 RTFileWrite(hPidFile, szBuf, cbPid, NULL);
97 *phFile = hPidFile;
98 }
99 }
100 return rc;
101}
102
103
104/**
105 * Close and remove an open PID File.
106 *
107 * @param pszPath The path to the PID File,
108 * @param hFile The handle for the file. NIL_RTFILE is ignored as usual.
109 */
110VBGLR3DECL(void) VbglR3ClosePidFile(const char *pszPath, RTFILE hFile)
111{
112 AssertPtrReturnVoid(pszPath);
113 if (hFile != NIL_RTFILE)
114 {
115#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
116 RTFileWriteAt(hFile, 0, "-1", 2, NULL);
117#else
118 RTFileDelete(pszPath);
119#endif
120 RTFileClose(hFile);
121 }
122}
123
124
125/**
126 * Wait for other process to release pidfile.
127 *
128 * This function is a wrapper to VbglR3PidFile().
129 *
130 * @returns IPRT status code.
131 * @param szPidfile Path to pidfile.
132 * @param phPidfile Handle to pidfile.
133 * @param u64TimeoutMs A timeout value in milliseconds to wait for
134 * other process to release pidfile.
135 */
136VBGLR3DECL(int) VbglR3PidfileWait(const char *szPidfile, RTFILE *phPidfile, uint64_t u64TimeoutMs)
137{
138 int rc = VERR_FILE_LOCK_VIOLATION;
139 uint64_t u64Start = RTTimeSystemMilliTS();
140
141 AssertPtrReturn(szPidfile, VERR_INVALID_PARAMETER);
142 AssertPtrReturn(phPidfile, VERR_INVALID_PARAMETER);
143
144 while ( !RT_SUCCESS((rc = VbglR3PidFile(szPidfile, phPidfile)))
145 && (RTTimeSystemMilliTS() - u64Start < u64TimeoutMs))
146 {
147 RTThreadSleep(VBGL_PIDFILE_WAIT_RELAX_TIME_MS);
148 }
149
150 return rc;
151}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use