1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009 Red Hat Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #include <sys/types.h>
31 #include "optgroups.h"
34 /* On Windows, NAME_MAX is not defined. */
36 #define NAME_MAX FILENAME_MAX
40 optgroup_realpath_available (void)
50 do_realpath (const char *path)
56 ret = realpath (path, NULL);
59 reply_with_perror ("%s", path);
63 return ret; /* caller frees */
70 do_case_sensitive_path (const char *path)
72 char ret[PATH_MAX+1] = "/";
76 /* 'fd_cwd' here is a surrogate for the current working directory, so
77 * that we don't have to actually call chdir(2).
79 fd_cwd = open (sysroot, O_RDONLY | O_DIRECTORY);
81 reply_with_perror ("%s", sysroot);
85 /* First character is a '/'. Take each subsequent path element
89 size_t i = strcspn (path, "/");
96 fprintf (stderr, "case_sensitive_path: path = %s, next = %zu, i = %zu\n",
99 if ((i == 1 && path[0] == '.') ||
100 (i == 2 && path[0] == '.' && path[1] == '.')) {
101 reply_with_error ("path contained . or .. elements");
105 reply_with_error ("path element too long");
109 char name[NAME_MAX+1];
110 memcpy (name, path, i);
113 /* Skip to next element in path (for the next loop iteration). */
116 /* Read the current directory looking (case insensitively) for
117 * this element of the path.
119 int fd2 = dup (fd_cwd); /* because closedir will close it */
121 reply_with_perror ("dup");
124 DIR *dir = fdopendir (fd2);
126 reply_with_perror ("opendir");
130 struct dirent *d = NULL;
133 while ((d = readdir (dir)) != NULL) {
134 if (STRCASEEQ (d->d_name, name))
138 if (d == NULL && errno != 0) {
139 reply_with_perror ("readdir");
143 if (closedir (dir) == -1) {
144 reply_with_perror ("closedir");
149 reply_with_error ("%s: no file or directory found with this name", name);
153 /* Add the real name of this path element to the return value. */
157 i = strlen (d->d_name);
158 if (next + i >= PATH_MAX) {
159 reply_with_error ("final path too long");
163 strcpy (&ret[next], d->d_name);
166 /* Is it a directory? Try going into it. */
167 fd2 = openat (fd_cwd, d->d_name, O_RDONLY | O_DIRECTORY);
173 /* ENOTDIR is OK provided we've reached the end of the path. */
174 if (errno != ENOTDIR) {
175 reply_with_perror ("openat: %s", d->d_name);
180 reply_with_error ("%s: non-directory element in path", d->d_name);
189 char *retp = strdup (ret);
191 reply_with_perror ("strdup");
194 return retp; /* caller frees */