1 | /* $Id: RTSystemShutdown-solaris.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 |
|
---|
51 | RTDECL(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[8];
|
---|
61 |
|
---|
62 | RT_BZERO(apszArgs, sizeof(apszArgs));
|
---|
63 |
|
---|
64 | apszArgs[iArg++] = "/usr/sbin/shutdown";
|
---|
65 | apszArgs[iArg++] = "-y"; /* Pre-answer confirmation question. */
|
---|
66 | apszArgs[iArg++] = "-i"; /* Change to the following state. */
|
---|
67 | switch (fFlags & RTSYSTEM_SHUTDOWN_ACTION_MASK)
|
---|
68 | {
|
---|
69 | case RTSYSTEM_SHUTDOWN_HALT:
|
---|
70 | apszArgs[iArg++] = "0";
|
---|
71 | break;
|
---|
72 | case RTSYSTEM_SHUTDOWN_REBOOT:
|
---|
73 | apszArgs[iArg++] = "6";
|
---|
74 | break;
|
---|
75 | case RTSYSTEM_SHUTDOWN_POWER_OFF:
|
---|
76 | case RTSYSTEM_SHUTDOWN_POWER_OFF_HALT:
|
---|
77 | apszArgs[iArg++] = "5";
|
---|
78 | break;
|
---|
79 | }
|
---|
80 |
|
---|
81 | apszArgs[iArg++] = "-g"; /* Grace period. */
|
---|
82 |
|
---|
83 | char szWhen[80];
|
---|
84 | if (cMsDelay < 500)
|
---|
85 | strcpy(szWhen, "0");
|
---|
86 | else
|
---|
87 | RTStrPrintf(szWhen, sizeof(szWhen), "%u", (unsigned)((cMsDelay + 499) / 1000));
|
---|
88 | apszArgs[iArg++] = szWhen;
|
---|
89 |
|
---|
90 | apszArgs[iArg++] = pszLogMsg;
|
---|
91 |
|
---|
92 |
|
---|
93 | /*
|
---|
94 | * Start the shutdown process and wait for it to complete.
|
---|
95 | */
|
---|
96 | RTPROCESS hProc;
|
---|
97 | int rc = RTProcCreate(apszArgs[0], apszArgs, RTENV_DEFAULT, 0 /*fFlags*/, &hProc);
|
---|
98 | if (RT_FAILURE(rc))
|
---|
99 | return rc;
|
---|
100 |
|
---|
101 | RTPROCSTATUS ProcStatus;
|
---|
102 | rc = RTProcWait(hProc, RTPROCWAIT_FLAGS_BLOCK, &ProcStatus);
|
---|
103 | if (RT_SUCCESS(rc))
|
---|
104 | {
|
---|
105 | if ( ProcStatus.enmReason != RTPROCEXITREASON_NORMAL
|
---|
106 | || ProcStatus.iStatus != 0)
|
---|
107 | rc = VERR_SYS_SHUTDOWN_FAILED;
|
---|
108 | }
|
---|
109 |
|
---|
110 | return rc;
|
---|
111 | }
|
---|
112 |
|
---|