1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#include <nbdkit-plugin.h>
#include "ascii-ctype.h"
#include "windows-compat.h"
#ifndef WIN32
/* Convert exit status to nbd_error. If the exit status was nonzero
* or another failure then -1 is returned.
*/
int
exit_status_to_nbd_error (int status, const char *cmd)
{
if (WIFEXITED (status) && WEXITSTATUS (status) != 0) {
nbdkit_error ("%s: command failed with exit code %d",
cmd, WEXITSTATUS (status));
return -1;
}
else if (WIFSIGNALED (status)) {
nbdkit_error ("%s: command was killed by signal %d",
cmd, WTERMSIG (status));
return -1;
}
else if (WIFSTOPPED (status)) {
nbdkit_error ("%s: command was stopped by signal %d",
cmd, WSTOPSIG (status));
return -1;
}
return 0;
}
#else /* WIN32 */
/* This assumes we're using Win32 system(). See:
* https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/system-wsystem?view=vs-2019
*/
int
exit_status_to_nbd_error (int status, const char *cmd)
{
if (status == 0)
return 0;
nbdkit_error ("%s: command failed: errno = %d", cmd, errno);
return -1;
}
#endif /* WIN32 */
#ifndef WIN32
/* Set the FD_CLOEXEC flag on the given fd, if it is non-negative.
* On failure, close fd and return -1; on success, return fd.
*
* Note that this function should ONLY be used on platforms that lack
* atomic CLOEXEC support during fd creation (such as Haiku in 2019);
* when using it as a fallback path, you must also consider how to
* prevent fd leaks to plugins that want to fork().
*/
int
set_cloexec (int fd)
{
#if (defined SOCK_CLOEXEC && defined HAVE_MKOSTEMP && defined HAVE_PIPE2 && \
defined HAVE_ACCEPT4)
nbdkit_error ("prefer creating fds with CLOEXEC atomically set");
close (fd);
errno = EBADF;
return -1;
#else
# if !defined __APPLE__ && \
(defined SOCK_CLOEXEC || defined HAVE_MKOSTEMP || defined HAVE_PIPE2 || \
defined HAVE_ACCEPT4)
# error "Unexpected: your system has incomplete atomic CLOEXEC support"
# endif
int f;
int err;
if (fd == -1)
return -1;
f = fcntl (fd, F_GETFD);
if (f == -1 || fcntl (fd, F_SETFD, f | FD_CLOEXEC) == -1) {
err = errno;
nbdkit_error ("fcntl: %m");
close (fd);
errno = err;
return -1;
}
return fd;
#endif
}
#else /* WIN32 */
int
set_cloexec (int fd)
{
return fd;
}
#endif /* WIN32 */
#ifndef WIN32
/* Set the O_NONBLOCK flag on the given fd, if it is non-negative.
* On failure, close fd and return -1; on success, return fd.
*/
int
set_nonblock (int fd)
{
int f;
int err;
if (fd == -1)
return -1;
f = fcntl (fd, F_GETFL);
if (f == -1 || fcntl (fd, F_SETFL, f | O_NONBLOCK) == -1) {
err = errno;
nbdkit_error ("fcntl: %m");
close (fd);
errno = err;
return -1;
}
return fd;
}
#else /* WIN32 */
int
set_nonblock (int fd)
{
return fd;
}
#endif /* WIN32 */
#ifndef WIN32
char *
make_temporary_directory (void)
{
/* NB: Callers assume this path will not need to be quoted, eg. for
* running shell scripts etc.
*/
char template[] = "/tmp/nbdkitXXXXXX";
if (mkdtemp (template) == NULL)
return NULL;
return strdup (template);
}
#else /* WIN32 */
char *
make_temporary_directory (void)
{
char tmppath[MAX_PATH];
char tmpname[MAX_PATH];
DWORD ret;
ret = GetTempPath (MAX_PATH, tmppath);
if (ret > MAX_PATH || ret == 0) {
fprintf (stderr, "mkdtemp: GetTempPath: %lu\n", GetLastError ());
return NULL;
}
ret = GetTempFileName (tmppath, TEXT ("nbdkit"), 0, tmpname);
if (!ret) {
fprintf (stderr, "mkdtemp: GetTempFileName: %lu\n", GetLastError ());
return NULL;
}
/* The above function actually creates the file, so we must remove
* it before creating the directory. Not ideal because it leaves a
* small window for exploitation (XXX).
*/
unlink (tmpname);
if (mkdir (tmpname) == -1) {
fprintf (stderr, "mkdtemp: mkdir: %s: %lu\n", tmpname, GetLastError ());
return NULL;
}
return strdup (tmpname);
}
#endif /* WIN32 */
/* Returns true if this is a valid shell variable name. While shell
* variables aren't environment variables, for this I used the
* definition in "POSIX section 8.1 Environment Variable Definition",
* but also allowing lowercase. See also
* https://stackoverflow.com/questions/2821043
*/
bool
is_shell_variable (const char *name)
{
size_t i, len;
len = strlen (name);
if (len == 0)
return false;
/* Cannot start with a digit. */
if (ascii_isdigit (name[0]))
return false;
/* Must contain only ASCII alphanumeric and underscore. */
for (i = 0; i < len; ++i) {
if (ascii_isalnum (name[i]) || name[i] == '_')
continue;
return false;
}
return true;
}
|