VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/linux/RTSystemShutdown-linux.cpp

Last change on this file was 106061, checked in by vboxsync, 5 weeks ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/* $Id: RTSystemShutdown-linux.cpp 106061 2024-09-16 14:03:52Z vboxsync $ */
2/** @file
3 * IPRT - RTSystemShutdown, linux implementation.
4 */
5
6/*
7 * Copyright (C) 2012-2024 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/system.h>
42#include "internal/iprt.h"
43
44#include <iprt/assert.h>
45#include <iprt/env.h>
46#include <iprt/err.h>
47#include <iprt/process.h>
48#include <iprt/string.h>
49
50
51RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg)
52{
53 AssertPtrReturn(pszLogMsg, VERR_INVALID_POINTER);
54 AssertReturn(!(fFlags & ~RTSYSTEM_SHUTDOWN_VALID_MASK), VERR_INVALID_PARAMETER);
55
56 /*
57 * Assemble the argument vector.
58 */
59 int iArg = 0;
60 const char *apszArgs[6];
61
62 RT_BZERO(apszArgs, sizeof(apszArgs));
63
64 apszArgs[iArg++] = "/sbin/shutdown";
65 switch (fFlags & RTSYSTEM_SHUTDOWN_ACTION_MASK)
66 {
67 case RTSYSTEM_SHUTDOWN_HALT:
68 apszArgs[iArg++] = "-h";
69 apszArgs[iArg++] = "-H";
70 break;
71 case RTSYSTEM_SHUTDOWN_REBOOT:
72 apszArgs[iArg++] = "-r";
73 break;
74 case RTSYSTEM_SHUTDOWN_POWER_OFF:
75 case RTSYSTEM_SHUTDOWN_POWER_OFF_HALT:
76 apszArgs[iArg++] = "-h";
77 apszArgs[iArg++] = "-P";
78 break;
79 }
80
81 char szWhen[80];
82 if (cMsDelay < 500)
83 strcpy(szWhen, "now");
84 else
85 RTStrPrintf(szWhen, sizeof(szWhen), "%u", (unsigned)((cMsDelay + 499) / 1000));
86 apszArgs[iArg++] = szWhen;
87
88 apszArgs[iArg++] = pszLogMsg;
89
90
91 /*
92 * Start the shutdown process and wait for it to complete.
93 */
94 RTPROCESS hProc;
95 int rc = RTProcCreate(apszArgs[0], apszArgs, RTENV_DEFAULT, 0 /*fFlags*/, &hProc);
96 if (RT_FAILURE(rc))
97 return rc;
98
99 RTPROCSTATUS ProcStatus;
100 rc = RTProcWait(hProc, RTPROCWAIT_FLAGS_BLOCK, &ProcStatus);
101 if (RT_SUCCESS(rc))
102 {
103 if ( ProcStatus.enmReason != RTPROCEXITREASON_NORMAL
104 || ProcStatus.iStatus != 0)
105 rc = VERR_SYS_SHUTDOWN_FAILED;
106 }
107
108 return rc;
109}
110RT_EXPORT_SYMBOL(RTSystemShutdown);
111
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