Coverity: Don't close fd_cwd if fd_cwd == -1.
[libguestfs.git] / daemon / realpath.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009-2011 Red Hat Inc.
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <limits.h>
27 #include <sys/types.h>
28 #include <dirent.h>
29
30 #include "daemon.h"
31 #include "optgroups.h"
32 #include "actions.h"
33
34 /* On Windows, NAME_MAX is not defined. */
35 #ifndef NAME_MAX
36 #define NAME_MAX FILENAME_MAX
37 #endif
38
39 int
40 optgroup_realpath_available (void)
41 {
42 #ifdef HAVE_REALPATH
43   return 1;
44 #else
45   return 0;
46 #endif
47 }
48
49 char *
50 do_realpath (const char *path)
51 {
52 #ifdef HAVE_REALPATH
53   char *ret;
54
55   CHROOT_IN;
56   ret = realpath (path, NULL);
57   CHROOT_OUT;
58   if (ret == NULL) {
59     reply_with_perror ("%s", path);
60     return NULL;
61   }
62
63   return ret;                   /* caller frees */
64 #else
65   NOT_AVAILABLE (NULL);
66 #endif
67 }
68
69 char *
70 do_case_sensitive_path (const char *path)
71 {
72   char ret[PATH_MAX+1] = "/";
73   size_t next = 1;
74   int fd_cwd;
75
76   /* 'fd_cwd' here is a surrogate for the current working directory, so
77    * that we don't have to actually call chdir(2).
78    */
79   fd_cwd = open (sysroot, O_RDONLY | O_DIRECTORY);
80   if (fd_cwd == -1) {
81     reply_with_perror ("%s", sysroot);
82     return NULL;
83   }
84
85   /* First character is a '/'.  Take each subsequent path element
86    * and follow it.
87    */
88   while (*path) {
89     size_t i = strcspn (path, "/");
90     if (i == 0) {
91       path++;
92       continue;
93     }
94
95     if ((i == 1 && path[0] == '.') ||
96         (i == 2 && path[0] == '.' && path[1] == '.')) {
97       reply_with_error ("path contained . or .. elements");
98       goto error;
99     }
100     if (i > NAME_MAX) {
101       reply_with_error ("path element too long");
102       goto error;
103     }
104
105     char name[NAME_MAX+1];
106     memcpy (name, path, i);
107     name[i] = '\0';
108
109     /* Skip to next element in path (for the next loop iteration). */
110     path += i;
111
112     /* Read the current directory looking (case insensitively) for
113      * this element of the path.
114      */
115     int fd2 = dup (fd_cwd); /* because closedir will close it */
116     if (fd2 == -1) {
117       reply_with_perror ("dup");
118       goto error;
119     }
120     DIR *dir = fdopendir (fd2);
121     if (dir == NULL) {
122       reply_with_perror ("opendir");
123       goto error;
124     }
125
126     struct dirent *d = NULL;
127
128     errno = 0;
129     while ((d = readdir (dir)) != NULL) {
130       if (STRCASEEQ (d->d_name, name))
131         break;
132     }
133
134     if (d == NULL && errno != 0) {
135       reply_with_perror ("readdir");
136       goto error;
137     }
138
139     if (closedir (dir) == -1) {
140       reply_with_perror ("closedir");
141       goto error;
142     }
143
144     if (d == NULL) {
145       reply_with_error ("%s: no file or directory found with this name", name);
146       goto error;
147     }
148
149     /* Add the real name of this path element to the return value. */
150     if (next > 1)
151       ret[next++] = '/';
152
153     i = strlen (d->d_name);
154     if (next + i >= PATH_MAX) {
155       reply_with_error ("final path too long");
156       goto error;
157     }
158
159     strcpy (&ret[next], d->d_name);
160     next += i;
161
162     /* Is it a directory?  Try going into it. */
163     fd2 = openat (fd_cwd, d->d_name, O_RDONLY | O_DIRECTORY);
164     int err = errno;
165     close (fd_cwd);
166     fd_cwd = fd2;
167     errno = err;
168     if (fd_cwd == -1) {
169       /* ENOTDIR is OK provided we've reached the end of the path. */
170       if (errno != ENOTDIR) {
171         reply_with_perror ("openat: %s", d->d_name);
172         goto error;
173       }
174
175       if (*path) {
176         reply_with_error ("%s: non-directory element in path", d->d_name);
177         goto error;
178       }
179     }
180   }
181
182   if (fd_cwd >= 0)
183     close (fd_cwd);
184
185   ret[next] = '\0';
186   char *retp = strdup (ret);
187   if (retp == NULL) {
188     reply_with_perror ("strdup");
189     return NULL;
190   }
191   return retp;                  /* caller frees */
192
193  error:
194   if (fd_cwd >= 0)
195     close (fd_cwd);
196
197   return NULL;
198 }