summaryrefslogtreecommitdiffstats
path: root/daemon/dir.c
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2009-06-24 18:22:37 +0100
committerRichard W.M. Jones <rjones@redhat.com>2009-06-24 18:22:37 +0100
commit8228eec99045ae720d8ef35851aa8c278f6b4e5c (patch)
treed3a6f405b526bc5865ca86fc81e8cf3c135a17f5 /daemon/dir.c
parentaf0cfda7e4942c14c9db7304962f8471ccad170f (diff)
downloadlibguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.tar.gz
libguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.tar.xz
libguestfs-8228eec99045ae720d8ef35851aa8c278f6b4e5c.zip
Add mkdtemp command.
Diffstat (limited to 'daemon/dir.c')
-rw-r--r--daemon/dir.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/daemon/dir.c b/daemon/dir.c
index 83536ef5..753323d1 100644
--- a/daemon/dir.c
+++ b/daemon/dir.c
@@ -201,3 +201,33 @@ do_is_dir (char *path)
return S_ISDIR (buf.st_mode);
}
+
+char *
+do_mkdtemp (char *template)
+{
+ char *r;
+
+ NEED_ROOT (NULL);
+ ABS_PATH (template, NULL);
+
+ CHROOT_IN;
+ r = mkdtemp (template);
+ CHROOT_OUT;
+
+ if (r == NULL) {
+ reply_with_perror ("mkdtemp: %s", template);
+ return NULL;
+ }
+
+ /* The caller will free template AND try to free the return value,
+ * so we must make a copy here.
+ */
+ if (r == template) {
+ r = strdup (template);
+ if (r == NULL) {
+ reply_with_perror ("strdup");
+ return NULL;
+ }
+ }
+ return r;
+}