/* libguestfs - the guestfsd daemon
- * Copyright (C) 2009 Red Hat Inc.
+ * Copyright (C) 2009-2011 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
FILE *fp = NULL;
guestfs_int_inotify_event_list *events;
char buf[PATH_MAX];
+ char tempfile[] = "/tmp/inotifyXXXXXX";
+ int fd;
+ char cmd[64];
NEED_INOTIFY (NULL);
- fp = popen ("sort -u > /tmp/inotify", "w");
+ fd = mkstemp (tempfile);
+ if (fd == -1) {
+ reply_with_perror ("mkstemp");
+ return NULL;
+ }
+
+ snprintf (cmd, sizeof cmd, "sort -u > %s", tempfile);
+
+ fp = popen (cmd, "w");
if (fp == NULL) {
reply_with_perror ("sort");
return NULL;
pclose (fp);
- fp = fopen ("/tmp/inotify", "r");
+ fp = fdopen (fd, "r");
if (fp == NULL) {
- reply_with_perror ("/tmp/inotify");
+ reply_with_perror ("%s", tempfile);
+ unlink (tempfile);
+ close (fd);
return NULL;
}
goto error;
}
- fclose (fp);
+ fclose (fp); /* implicitly closes fd */
fp = NULL;
if (add_string (&ret, &size, &alloc, NULL) == -1)
goto error;
- unlink ("/tmp/inotify");
+ unlink (tempfile);
return ret;
error:
if (fp != NULL)
fclose (fp);
- unlink ("/tmp/inotify");
+ unlink (tempfile);
return NULL;
#else
NOT_AVAILABLE (NULL);
/* libguestfs - the guestfsd daemon
- * Copyright (C) 2009-2010 Red Hat Inc.
+ * Copyright (C) 2009-2011 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
return prog_exists ("xz");
}
-/* Redirect errors from the tar command to the error file, then
- * provide functions for reading it in. We overwrite the file each
- * time, and since it's small and stored on the appliance we don't
- * bother to delete it.
- */
-static const char *error_file = "/tmp/error";
-
+/* Read the error file. Returns a string that the caller must free. */
static char *
-read_error_file (void)
+read_error_file (char *error_file)
{
size_t len;
- char *str = read_file (error_file, &len);
+ char *str;
+
+ str = read_file (error_file, &len);
if (str == NULL) {
str = strdup ("(no error)");
if (str == NULL) {
int err, r;
FILE *fp;
char *cmd;
+ char error_file[] = "/tmp/tarXXXXXX";
+ int fd;
+
+ fd = mkstemp (error_file);
+ if (fd == -1) {
+ reply_with_perror ("mkstemp");
+ return -1;
+ }
+
+ close (fd);
/* "tar -C /sysroot%s -xf -" but we have to quote the dir. */
if (asprintf_nowarn (&cmd, "tar -C %R -%sxf - 2> %s",
r = cancel_receive ();
errno = err;
reply_with_perror ("asprintf");
+ unlink (error_file);
return -1;
}
r = cancel_receive ();
errno = err;
reply_with_perror ("%s", cmd);
+ unlink (error_file);
free (cmd);
return -1;
}
/* The semantics of fwrite are too undefined, so write to the
* file descriptor directly instead.
*/
- int fd = fileno (fp);
+ fd = fileno (fp);
r = receive_file (write_cb, &fd);
if (r == -1) { /* write error */
cancel_receive ();
- char *errstr = read_error_file ();
+ char *errstr = read_error_file (error_file);
reply_with_error ("write error on directory: %s: %s", dir, errstr);
free (errstr);
+ unlink (error_file);
pclose (fp);
return -1;
}
*/
reply_with_error ("file upload cancelled");
pclose (fp);
+ unlink (error_file);
return -1;
}
if (pclose (fp) != 0) {
- char *errstr = read_error_file ();
+ char *errstr = read_error_file (error_file);
reply_with_error ("tar subcommand failed on directory: %s: %s",
dir, errstr);
free (errstr);
+ unlink (error_file);
return -1;
}
+ unlink (error_file);
+
return 0;
}