X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fdir.c;h=6eb86bbcbe5ca0c91670593712ccea553343a0b1;hb=a86aa7d152ed996170714a3a4516eab58bf8b59d;hp=83536ef5a0a53114a16a4a5c4532ee47ab95dbcd;hpb=56bef498f46ac3dd580f4bde3c8f3ed2fe688826;p=libguestfs.git diff --git a/daemon/dir.c b/daemon/dir.c index 83536ef..6eb86bb 100644 --- a/daemon/dir.c +++ b/daemon/dir.c @@ -1,5 +1,5 @@ /* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 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 @@ -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; +}