4270712828aa3fc56bf93808c39487705e22041f
[libguestfs.git] / src / inspect_fs_unix.c
1 /* libguestfs
2  * Copyright (C) 2010-2011 Red Hat Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stdint.h>
24 #include <inttypes.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <errno.h>
30 #include <endian.h>
31
32 #include <pcre.h>
33
34 #ifdef HAVE_HIVEX
35 #include <hivex.h>
36 #endif
37
38 #include "c-ctype.h"
39 #include "ignore-value.h"
40 #include "xstrtol.h"
41
42 #include "guestfs.h"
43 #include "guestfs-internal.h"
44 #include "guestfs-internal-actions.h"
45 #include "guestfs_protocol.h"
46
47 #if defined(HAVE_HIVEX)
48
49 /* Compile all the regular expressions once when the shared library is
50  * loaded.  PCRE is thread safe so we're supposedly OK here if
51  * multiple threads call into the libguestfs API functions below
52  * simultaneously.
53  */
54 static pcre *re_fedora;
55 static pcre *re_rhel_old;
56 static pcre *re_rhel;
57 static pcre *re_rhel_no_minor;
58 static pcre *re_centos_old;
59 static pcre *re_centos;
60 static pcre *re_centos_no_minor;
61 static pcre *re_scientific_linux_old;
62 static pcre *re_scientific_linux;
63 static pcre *re_scientific_linux_no_minor;
64 static pcre *re_major_minor;
65 static pcre *re_aug_seq;
66 static pcre *re_xdev;
67 static pcre *re_first_partition;
68 static pcre *re_freebsd;
69
70 static void compile_regexps (void) __attribute__((constructor));
71 static void free_regexps (void) __attribute__((destructor));
72
73 static void
74 compile_regexps (void)
75 {
76   const char *err;
77   int offset;
78
79 #define COMPILE(re,pattern,options)                                     \
80   do {                                                                  \
81     re = pcre_compile ((pattern), (options), &err, &offset, NULL);      \
82     if (re == NULL) {                                                   \
83       ignore_value (write (2, err, strlen (err)));                      \
84       abort ();                                                         \
85     }                                                                   \
86   } while (0)
87
88   COMPILE (re_fedora, "Fedora release (\\d+)", 0);
89   COMPILE (re_rhel_old,
90            "Red Hat.*release (\\d+).*Update (\\d+)", 0);
91   COMPILE (re_rhel,
92            "Red Hat.*release (\\d+)\\.(\\d+)", 0);
93   COMPILE (re_rhel_no_minor,
94            "Red Hat.*release (\\d+)", 0);
95   COMPILE (re_centos_old,
96            "CentOS.*release (\\d+).*Update (\\d+)", 0);
97   COMPILE (re_centos,
98            "CentOS.*release (\\d+)\\.(\\d+)", 0);
99   COMPILE (re_centos_no_minor,
100            "CentOS.*release (\\d+)", 0);
101   COMPILE (re_scientific_linux_old,
102            "Scientific Linux.*release (\\d+).*Update (\\d+)", 0);
103   COMPILE (re_scientific_linux,
104            "Scientific Linux.*release (\\d+)\\.(\\d+)", 0);
105   COMPILE (re_scientific_linux_no_minor,
106            "Scientific Linux.*release (\\d+)", 0);
107   COMPILE (re_major_minor, "(\\d+)\\.(\\d+)", 0);
108   COMPILE (re_aug_seq, "/\\d+$", 0);
109   COMPILE (re_xdev, "^/dev/(?:h|s|v|xv)d([a-z]\\d*)$", 0);
110   COMPILE (re_freebsd, "^/dev/ad(\\d+)s(\\d+)([a-z])$", 0);
111 }
112
113 static void
114 free_regexps (void)
115 {
116   pcre_free (re_fedora);
117   pcre_free (re_rhel_old);
118   pcre_free (re_rhel);
119   pcre_free (re_rhel_no_minor);
120   pcre_free (re_centos_old);
121   pcre_free (re_centos);
122   pcre_free (re_centos_no_minor);
123   pcre_free (re_scientific_linux_old);
124   pcre_free (re_scientific_linux);
125   pcre_free (re_scientific_linux_no_minor);
126   pcre_free (re_major_minor);
127   pcre_free (re_aug_seq);
128   pcre_free (re_xdev);
129   pcre_free (re_freebsd);
130 }
131
132 static void check_architecture (guestfs_h *g, struct inspect_fs *fs);
133 static int check_hostname_unix (guestfs_h *g, struct inspect_fs *fs);
134 static int check_hostname_redhat (guestfs_h *g, struct inspect_fs *fs);
135 static int check_hostname_freebsd (guestfs_h *g, struct inspect_fs *fs);
136 static int check_fstab (guestfs_h *g, struct inspect_fs *fs);
137 static int add_fstab_entry (guestfs_h *g, struct inspect_fs *fs,
138                             const char *spec, const char *mp);
139 static char *resolve_fstab_device (guestfs_h *g, const char *spec);
140 static int inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, const char *filename, int (*f) (guestfs_h *, struct inspect_fs *));
141
142 /* Set fs->product_name to the first line of the release file. */
143 static int
144 parse_release_file (guestfs_h *g, struct inspect_fs *fs,
145                     const char *release_filename)
146 {
147   fs->product_name = guestfs___first_line_of_file (g, release_filename);
148   if (fs->product_name == NULL)
149     return -1;
150   return 0;
151 }
152
153 /* Ubuntu has /etc/lsb-release containing:
154  *   DISTRIB_ID=Ubuntu                                # Distro
155  *   DISTRIB_RELEASE=10.04                            # Version
156  *   DISTRIB_CODENAME=lucid
157  *   DISTRIB_DESCRIPTION="Ubuntu 10.04.1 LTS"         # Product name
158  *
159  * [Ubuntu-derived ...] Linux Mint was found to have this:
160  *   DISTRIB_ID=LinuxMint
161  *   DISTRIB_RELEASE=10
162  *   DISTRIB_CODENAME=julia
163  *   DISTRIB_DESCRIPTION="Linux Mint 10 Julia"
164  * Linux Mint also has /etc/linuxmint/info with more information,
165  * but we can use the LSB file.
166  *
167  * Mandriva has:
168  *   LSB_VERSION=lsb-4.0-amd64:lsb-4.0-noarch
169  *   DISTRIB_ID=MandrivaLinux
170  *   DISTRIB_RELEASE=2010.1
171  *   DISTRIB_CODENAME=Henry_Farman
172  *   DISTRIB_DESCRIPTION="Mandriva Linux 2010.1"
173  * Mandriva also has a normal release file called /etc/mandriva-release.
174  */
175 static int
176 parse_lsb_release (guestfs_h *g, struct inspect_fs *fs)
177 {
178   const char *filename = "/etc/lsb-release";
179   int64_t size;
180   char **lines;
181   size_t i;
182   int r = 0;
183
184   /* Don't trust guestfs_head_n not to break with very large files.
185    * Check the file size is something reasonable first.
186    */
187   size = guestfs_filesize (g, filename);
188   if (size == -1)
189     /* guestfs_filesize failed and has already set error in handle */
190     return -1;
191   if (size > MAX_SMALL_FILE_SIZE) {
192     error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
193            filename, size);
194     return -1;
195   }
196
197   lines = guestfs_head_n (g, 10, filename);
198   if (lines == NULL)
199     return -1;
200
201   for (i = 0; lines[i] != NULL; ++i) {
202     if (fs->distro == 0 &&
203         STREQ (lines[i], "DISTRIB_ID=Ubuntu")) {
204       fs->distro = OS_DISTRO_UBUNTU;
205       r = 1;
206     }
207     else if (fs->distro == 0 &&
208              STREQ (lines[i], "DISTRIB_ID=LinuxMint")) {
209       fs->distro = OS_DISTRO_LINUX_MINT;
210       r = 1;
211     }
212     else if (fs->distro == 0 &&
213              STREQ (lines[i], "DISTRIB_ID=MandrivaLinux")) {
214       fs->distro = OS_DISTRO_MANDRIVA;
215       r = 1;
216     }
217     else if (STRPREFIX (lines[i], "DISTRIB_RELEASE=")) {
218       char *major, *minor;
219       if (match2 (g, &lines[i][16], re_major_minor, &major, &minor)) {
220         fs->major_version = guestfs___parse_unsigned_int (g, major);
221         free (major);
222         if (fs->major_version == -1) {
223           free (minor);
224           guestfs___free_string_list (lines);
225           return -1;
226         }
227         fs->minor_version = guestfs___parse_unsigned_int (g, minor);
228         free (minor);
229         if (fs->minor_version == -1) {
230           guestfs___free_string_list (lines);
231           return -1;
232         }
233       }
234     }
235     else if (fs->product_name == NULL &&
236              (STRPREFIX (lines[i], "DISTRIB_DESCRIPTION=\"") ||
237               STRPREFIX (lines[i], "DISTRIB_DESCRIPTION='"))) {
238       size_t len = strlen (lines[i]) - 21 - 1;
239       fs->product_name = safe_strndup (g, &lines[i][21], len);
240       r = 1;
241     }
242     else if (fs->product_name == NULL &&
243              STRPREFIX (lines[i], "DISTRIB_DESCRIPTION=")) {
244       size_t len = strlen (lines[i]) - 20;
245       fs->product_name = safe_strndup (g, &lines[i][20], len);
246       r = 1;
247     }
248   }
249
250   guestfs___free_string_list (lines);
251   return r;
252 }
253
254 /* The currently mounted device is known to be a Linux root.  Try to
255  * determine from this the distro, version, etc.  Also parse
256  * /etc/fstab to determine the arrangement of mountpoints and
257  * associated devices.
258  */
259 int
260 guestfs___check_linux_root (guestfs_h *g, struct inspect_fs *fs)
261 {
262   int r;
263
264   fs->type = OS_TYPE_LINUX;
265
266   if (guestfs_exists (g, "/etc/lsb-release") > 0) {
267     r = parse_lsb_release (g, fs);
268     if (r == -1)        /* error */
269       return -1;
270     if (r == 1)         /* ok - detected the release from this file */
271       goto skip_release_checks;
272   }
273
274   if (guestfs_exists (g, "/etc/redhat-release") > 0) {
275     fs->distro = OS_DISTRO_REDHAT_BASED; /* Something generic Red Hat-like. */
276
277     if (parse_release_file (g, fs, "/etc/redhat-release") == -1)
278       return -1;
279
280     char *major, *minor;
281     if ((major = match1 (g, fs->product_name, re_fedora)) != NULL) {
282       fs->distro = OS_DISTRO_FEDORA;
283       fs->major_version = guestfs___parse_unsigned_int (g, major);
284       free (major);
285       if (fs->major_version == -1)
286         return -1;
287     }
288     else if (match2 (g, fs->product_name, re_rhel_old, &major, &minor) ||
289              match2 (g, fs->product_name, re_rhel, &major, &minor)) {
290       fs->distro = OS_DISTRO_RHEL;
291       fs->major_version = guestfs___parse_unsigned_int (g, major);
292       free (major);
293       if (fs->major_version == -1) {
294         free (minor);
295         return -1;
296       }
297       fs->minor_version = guestfs___parse_unsigned_int (g, minor);
298       free (minor);
299       if (fs->minor_version == -1)
300         return -1;
301     }
302     else if ((major = match1 (g, fs->product_name, re_rhel_no_minor)) != NULL) {
303       fs->distro = OS_DISTRO_RHEL;
304       fs->major_version = guestfs___parse_unsigned_int (g, major);
305       free (major);
306       if (fs->major_version == -1)
307         return -1;
308       fs->minor_version = 0;
309     }
310     else if (match2 (g, fs->product_name, re_centos_old, &major, &minor) ||
311              match2 (g, fs->product_name, re_centos, &major, &minor)) {
312       fs->distro = OS_DISTRO_CENTOS;
313       fs->major_version = guestfs___parse_unsigned_int (g, major);
314       free (major);
315       if (fs->major_version == -1) {
316         free (minor);
317         return -1;
318       }
319       fs->minor_version = guestfs___parse_unsigned_int (g, minor);
320       free (minor);
321       if (fs->minor_version == -1)
322         return -1;
323     }
324     else if ((major = match1 (g, fs->product_name, re_centos_no_minor)) != NULL) {
325       fs->distro = OS_DISTRO_CENTOS;
326       fs->major_version = guestfs___parse_unsigned_int (g, major);
327       free (major);
328       if (fs->major_version == -1)
329         return -1;
330       fs->minor_version = 0;
331     }
332     else if (match2 (g, fs->product_name, re_scientific_linux_old, &major, &minor) ||
333              match2 (g, fs->product_name, re_scientific_linux, &major, &minor)) {
334       fs->distro = OS_DISTRO_SCIENTIFIC_LINUX;
335       fs->major_version = guestfs___parse_unsigned_int (g, major);
336       free (major);
337       if (fs->major_version == -1) {
338         free (minor);
339         return -1;
340       }
341       fs->minor_version = guestfs___parse_unsigned_int (g, minor);
342       free (minor);
343       if (fs->minor_version == -1)
344         return -1;
345     }
346     else if ((major = match1 (g, fs->product_name, re_scientific_linux_no_minor)) != NULL) {
347       fs->distro = OS_DISTRO_SCIENTIFIC_LINUX;
348       fs->major_version = guestfs___parse_unsigned_int (g, major);
349       free (major);
350       if (fs->major_version == -1)
351         return -1;
352       fs->minor_version = 0;
353     }
354   }
355   else if (guestfs_exists (g, "/etc/debian_version") > 0) {
356     fs->distro = OS_DISTRO_DEBIAN;
357
358     if (parse_release_file (g, fs, "/etc/debian_version") == -1)
359       return -1;
360
361     if (guestfs___parse_major_minor (g, fs) == -1)
362       return -1;
363   }
364   else if (guestfs_exists (g, "/etc/pardus-release") > 0) {
365     fs->distro = OS_DISTRO_PARDUS;
366
367     if (parse_release_file (g, fs, "/etc/pardus-release") == -1)
368       return -1;
369
370     if (guestfs___parse_major_minor (g, fs) == -1)
371       return -1;
372   }
373   else if (guestfs_exists (g, "/etc/arch-release") > 0) {
374     fs->distro = OS_DISTRO_ARCHLINUX;
375
376     /* /etc/arch-release file is empty and I can't see a way to
377      * determine the actual release or product string.
378      */
379   }
380   else if (guestfs_exists (g, "/etc/gentoo-release") > 0) {
381     fs->distro = OS_DISTRO_GENTOO;
382
383     if (parse_release_file (g, fs, "/etc/gentoo-release") == -1)
384       return -1;
385
386     if (guestfs___parse_major_minor (g, fs) == -1)
387       return -1;
388   }
389   else if (guestfs_exists (g, "/etc/meego-release") > 0) {
390     fs->distro = OS_DISTRO_MEEGO;
391
392     if (parse_release_file (g, fs, "/etc/meego-release") == -1)
393       return -1;
394
395     if (guestfs___parse_major_minor (g, fs) == -1)
396       return -1;
397   }
398   else if (guestfs_exists (g, "/etc/slackware-version") > 0) {
399     fs->distro = OS_DISTRO_SLACKWARE;
400
401     if (parse_release_file (g, fs, "/etc/slackware-version") == -1)
402       return -1;
403
404     if (guestfs___parse_major_minor (g, fs) == -1)
405       return -1;
406   }
407   else if (guestfs_exists (g, "/etc/ttylinux-target") > 0) {
408     fs->distro = OS_DISTRO_TTYLINUX;
409
410     fs->product_name = guestfs___first_line_of_file (g, "/etc/ttylinux-target");
411     if (fs->product_name == NULL)
412       return -1;
413
414     if (guestfs___parse_major_minor (g, fs) == -1)
415       return -1;
416   }
417
418  skip_release_checks:;
419
420   /* Determine the architecture. */
421   check_architecture (g, fs);
422
423   /* We already know /etc/fstab exists because it's part of the test
424    * for Linux root above.  We must now parse this file to determine
425    * which filesystems are used by the operating system and how they
426    * are mounted.
427    */
428   if (inspect_with_augeas (g, fs, "/etc/fstab", check_fstab) == -1)
429     return -1;
430
431   /* Determine hostname. */
432   if (check_hostname_unix (g, fs) == -1)
433     return -1;
434
435   return 0;
436 }
437
438 /* The currently mounted device is known to be a FreeBSD root. */
439 int
440 guestfs___check_freebsd_root (guestfs_h *g, struct inspect_fs *fs)
441 {
442   fs->type = OS_TYPE_FREEBSD;
443
444   /* FreeBSD has no authoritative version file.  The version number is
445    * in /etc/motd, which the system administrator might edit, but
446    * we'll use that anyway.
447    */
448
449   if (guestfs_exists (g, "/etc/motd") > 0) {
450     if (parse_release_file (g, fs, "/etc/motd") == -1)
451       return -1;
452
453     if (guestfs___parse_major_minor (g, fs) == -1)
454       return -1;
455   }
456
457   /* Determine the architecture. */
458   check_architecture (g, fs);
459
460   /* We already know /etc/fstab exists because it's part of the test above. */
461   if (inspect_with_augeas (g, fs, "/etc/fstab", check_fstab) == -1)
462     return -1;
463
464   /* Determine hostname. */
465   if (check_hostname_unix (g, fs) == -1)
466     return -1;
467
468   return 0;
469 }
470
471 static void
472 check_architecture (guestfs_h *g, struct inspect_fs *fs)
473 {
474   const char *binaries[] =
475     { "/bin/bash", "/bin/ls", "/bin/echo", "/bin/rm", "/bin/sh" };
476   size_t i;
477
478   for (i = 0; i < sizeof binaries / sizeof binaries[0]; ++i) {
479     if (guestfs_is_file (g, binaries[i]) > 0) {
480       /* Ignore errors from file_architecture call. */
481       guestfs_error_handler_cb old_error_cb = g->error_cb;
482       g->error_cb = NULL;
483       char *arch = guestfs_file_architecture (g, binaries[i]);
484       g->error_cb = old_error_cb;
485
486       if (arch) {
487         /* String will be owned by handle, freed by
488          * guestfs___free_inspect_info.
489          */
490         fs->arch = arch;
491         break;
492       }
493     }
494   }
495 }
496
497 /* Try several methods to determine the hostname from a Linux or
498  * FreeBSD guest.  Note that type and distro have been set, so we can
499  * use that information to direct the search.
500  */
501 static int
502 check_hostname_unix (guestfs_h *g, struct inspect_fs *fs)
503 {
504   switch (fs->type) {
505   case OS_TYPE_LINUX:
506     /* Red Hat-derived would be in /etc/sysconfig/network, and
507      * Debian-derived in the file /etc/hostname.  Very old Debian and
508      * SUSE use /etc/HOSTNAME.  It's best to just look for each of
509      * these files in turn, rather than try anything clever based on
510      * distro.
511      */
512     if (guestfs_is_file (g, "/etc/HOSTNAME")) {
513       fs->hostname = guestfs___first_line_of_file (g, "/etc/HOSTNAME");
514       if (fs->hostname == NULL)
515         return -1;
516     }
517     else if (guestfs_is_file (g, "/etc/hostname")) {
518       fs->hostname = guestfs___first_line_of_file (g, "/etc/hostname");
519       if (fs->hostname == NULL)
520         return -1;
521     }
522     else if (guestfs_is_file (g, "/etc/sysconfig/network")) {
523       if (inspect_with_augeas (g, fs, "/etc/sysconfig/network",
524                                check_hostname_redhat) == -1)
525         return -1;
526     }
527     break;
528
529   case OS_TYPE_FREEBSD:
530     /* /etc/rc.conf contains the hostname, but there is no Augeas lens
531      * for this file.
532      */
533     if (guestfs_is_file (g, "/etc/rc.conf")) {
534       if (check_hostname_freebsd (g, fs) == -1)
535         return -1;
536     }
537     break;
538
539   case OS_TYPE_WINDOWS: /* not here, see check_windows_system_registry */
540   case OS_TYPE_UNKNOWN:
541   default:
542     /* nothing, keep GCC warnings happy */;
543   }
544
545   return 0;
546 }
547
548 /* Parse the hostname from /etc/sysconfig/network.  This must be called
549  * from the inspect_with_augeas wrapper.
550  */
551 static int
552 check_hostname_redhat (guestfs_h *g, struct inspect_fs *fs)
553 {
554   char *hostname;
555
556   /* Errors here are not fatal (RHBZ#726739), since it could be
557    * just missing HOSTNAME field in the file.
558    */
559   guestfs_error_handler_cb old_error_cb = g->error_cb;
560   g->error_cb = NULL;
561   hostname = guestfs_aug_get (g, "/files/etc/sysconfig/network/HOSTNAME");
562   g->error_cb = old_error_cb;
563
564   /* This is freed by guestfs___free_inspect_info.  Note that hostname
565    * could be NULL because we ignored errors above.
566    */
567   fs->hostname = hostname;
568   return 0;
569 }
570
571 /* Parse the hostname from /etc/rc.conf.  On FreeBSD this file
572  * contains comments, blank lines and:
573  *   hostname="freebsd8.example.com"
574  *   ifconfig_re0="DHCP"
575  *   keymap="uk.iso"
576  *   sshd_enable="YES"
577  */
578 static int
579 check_hostname_freebsd (guestfs_h *g, struct inspect_fs *fs)
580 {
581   const char *filename = "/etc/rc.conf";
582   int64_t size;
583   char **lines;
584   size_t i;
585
586   /* Don't trust guestfs_read_lines not to break with very large files.
587    * Check the file size is something reasonable first.
588    */
589   size = guestfs_filesize (g, filename);
590   if (size == -1)
591     /* guestfs_filesize failed and has already set error in handle */
592     return -1;
593   if (size > MAX_SMALL_FILE_SIZE) {
594     error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
595            filename, size);
596     return -1;
597   }
598
599   lines = guestfs_read_lines (g, filename);
600   if (lines == NULL)
601     return -1;
602
603   for (i = 0; lines[i] != NULL; ++i) {
604     if (STRPREFIX (lines[i], "hostname=\"") ||
605         STRPREFIX (lines[i], "hostname='")) {
606       size_t len = strlen (lines[i]) - 10 - 1;
607       fs->hostname = safe_strndup (g, &lines[i][10], len);
608       break;
609     } else if (STRPREFIX (lines[i], "hostname=")) {
610       size_t len = strlen (lines[i]) - 9;
611       fs->hostname = safe_strndup (g, &lines[i][9], len);
612       break;
613     }
614   }
615
616   guestfs___free_string_list (lines);
617   return 0;
618 }
619
620 static int
621 check_fstab (guestfs_h *g, struct inspect_fs *fs)
622 {
623   char **lines = guestfs_aug_ls (g, "/files/etc/fstab");
624   if (lines == NULL)
625     return -1;
626
627   if (lines[0] == NULL) {
628     error (g, _("could not parse /etc/fstab or empty file"));
629     guestfs___free_string_list (lines);
630     return -1;
631   }
632
633   size_t i;
634   char augpath[256];
635   for (i = 0; lines[i] != NULL; ++i) {
636     /* Ignore comments.  Only care about sequence lines which
637      * match m{/\d+$}.
638      */
639     if (match (g, lines[i], re_aug_seq)) {
640       snprintf (augpath, sizeof augpath, "%s/spec", lines[i]);
641       char *spec = guestfs_aug_get (g, augpath);
642       if (spec == NULL) {
643         guestfs___free_string_list (lines);
644         return -1;
645       }
646
647       snprintf (augpath, sizeof augpath, "%s/file", lines[i]);
648       char *mp = guestfs_aug_get (g, augpath);
649       if (mp == NULL) {
650         guestfs___free_string_list (lines);
651         free (spec);
652         return -1;
653       }
654
655       int r = add_fstab_entry (g, fs, spec, mp);
656       free (spec);
657       free (mp);
658
659       if (r == -1) {
660         guestfs___free_string_list (lines);
661         return -1;
662       }
663     }
664   }
665
666   guestfs___free_string_list (lines);
667   return 0;
668 }
669
670 /* Add a filesystem and possibly a mountpoint entry for
671  * the root filesystem 'fs'.
672  *
673  * 'spec' is the fstab spec field, which might be a device name or a
674  * pseudodevice or 'UUID=...' or 'LABEL=...'.
675  *
676  * 'mp' is the mount point, which could also be 'swap' or 'none'.
677  */
678 static int
679 add_fstab_entry (guestfs_h *g, struct inspect_fs *fs,
680                  const char *spec, const char *mp)
681 {
682   /* Ignore certain mountpoints. */
683   if (STRPREFIX (mp, "/dev/") ||
684       STREQ (mp, "/dev") ||
685       STRPREFIX (mp, "/media/") ||
686       STRPREFIX (mp, "/proc/") ||
687       STREQ (mp, "/proc") ||
688       STRPREFIX (mp, "/selinux/") ||
689       STREQ (mp, "/selinux") ||
690       STRPREFIX (mp, "/sys/") ||
691       STREQ (mp, "/sys"))
692     return 0;
693
694   /* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives. */
695   if ((STRPREFIX (spec, "/dev/fd") && c_isdigit (spec[7])) ||
696       STREQ (spec, "/dev/floppy") ||
697       STREQ (spec, "/dev/cdrom"))
698     return 0;
699
700   /* Resolve UUID= and LABEL= to the actual device. */
701   char *device = NULL;
702   if (STRPREFIX (spec, "UUID="))
703     device = guestfs_findfs_uuid (g, &spec[5]);
704   else if (STRPREFIX (spec, "LABEL="))
705     device = guestfs_findfs_label (g, &spec[6]);
706   /* Ignore "/.swap" (Pardus) and pseudo-devices like "tmpfs". */
707   else if (STRPREFIX (spec, "/dev/"))
708     /* Resolve guest block device names. */
709     device = resolve_fstab_device (g, spec);
710
711   /* If we haven't resolved the device successfully by this point,
712    * we don't care, just ignore it.
713    */
714   if (device == NULL)
715     return 0;
716
717   char *mountpoint = safe_strdup (g, mp);
718
719   /* Add this to the fstab entry in 'fs'.
720    * Note these are further filtered by guestfs_inspect_get_mountpoints
721    * and guestfs_inspect_get_filesystems.
722    */
723   size_t n = fs->nr_fstab + 1;
724   struct inspect_fstab_entry *p;
725
726   p = realloc (fs->fstab, n * sizeof (struct inspect_fstab_entry));
727   if (p == NULL) {
728     perrorf (g, "realloc");
729     free (device);
730     free (mountpoint);
731     return -1;
732   }
733
734   fs->fstab = p;
735   fs->nr_fstab = n;
736
737   /* These are owned by the handle and freed by guestfs___free_inspect_info. */
738   fs->fstab[n-1].device = device;
739   fs->fstab[n-1].mountpoint = mountpoint;
740
741   debug (g, "fstab: device=%s mountpoint=%s", device, mountpoint);
742
743   return 0;
744 }
745
746 /* Resolve block device name to the libguestfs device name, eg.
747  * /dev/xvdb1 => /dev/vdb1; and /dev/mapper/VG-LV => /dev/VG/LV.  This
748  * assumes that disks were added in the same order as they appear to
749  * the real VM, which is a reasonable assumption to make.  Return
750  * anything we don't recognize unchanged.
751  */
752 static char *
753 resolve_fstab_device (guestfs_h *g, const char *spec)
754 {
755   char *a1;
756   char *device = NULL;
757   char *bsddisk, *bsdslice, *bsdpart;
758
759   if (STRPREFIX (spec, "/dev/mapper/")) {
760     /* LVM2 does some strange munging on /dev/mapper paths for VGs and
761      * LVs which contain '-' character:
762      *
763      * ><fs> lvcreate LV--test VG--test 32
764      * ><fs> debug ls /dev/mapper
765      * VG----test-LV----test
766      *
767      * This makes it impossible to reverse those paths directly, so
768      * we have implemented lvm_canonical_lv_name in the daemon.
769      */
770     device = guestfs_lvm_canonical_lv_name (g, spec);
771   }
772   else if ((a1 = match1 (g, spec, re_xdev)) != NULL) {
773     char **devices = guestfs_list_devices (g);
774     if (devices == NULL)
775       return NULL;
776
777     size_t count;
778     for (count = 0; devices[count] != NULL; count++)
779       ;
780
781     size_t i = a1[0] - 'a'; /* a1[0] is always [a-z] because of regex. */
782     if (i < count) {
783       size_t len = strlen (devices[i]) + strlen (a1) + 16;
784       device = safe_malloc (g, len);
785       snprintf (device, len, "%s%s", devices[i], &a1[1]);
786     }
787
788     free (a1);
789     guestfs___free_string_list (devices);
790   }
791   else if (match3 (g, spec, re_freebsd, &bsddisk, &bsdslice, &bsdpart)) {
792     /* FreeBSD disks are organized quite differently.  See:
793      * http://www.freebsd.org/doc/handbook/disk-organization.html
794      * FreeBSD "partitions" are exposed as quasi-extended partitions
795      * numbered from 5 in Linux.  I have no idea what happens when you
796      * have multiple "slices" (the FreeBSD term for MBR partitions).
797      */
798     int disk = guestfs___parse_unsigned_int (g, bsddisk);
799     int slice = guestfs___parse_unsigned_int (g, bsdslice);
800     int part = bsdpart[0] - 'a' /* counting from 0 */;
801     free (bsddisk);
802     free (bsdslice);
803     free (bsdpart);
804
805     if (disk == -1 || disk > 26 ||
806         slice <= 0 || slice > 1 /* > 4 .. see comment above */ ||
807         part < 0 || part >= 26)
808       goto out;
809
810     device = safe_asprintf (g, "/dev/sd%c%d", disk + 'a', part + 5);
811   }
812
813  out:
814   /* Didn't match device pattern, return original spec unchanged. */
815   if (device == NULL)
816     device = safe_strdup (g, spec);
817
818   return device;
819 }
820
821 /* Call 'f' with Augeas opened and having parsed 'filename' (this file
822  * must exist).  As a security measure, this bails if the file is too
823  * large for a reasonable configuration file.  After the call to 'f'
824  * Augeas is closed.
825  */
826 static int
827 inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, const char *filename,
828                      int (*f) (guestfs_h *, struct inspect_fs *))
829 {
830   /* Security: Refuse to do this if filename is too large. */
831   int64_t size = guestfs_filesize (g, filename);
832   if (size == -1)
833     /* guestfs_filesize failed and has already set error in handle */
834     return -1;
835   if (size > MAX_AUGEAS_FILE_SIZE) {
836     error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
837            filename, size);
838     return -1;
839   }
840
841   /* If !feature_available (g, "augeas") then the next call will fail.
842    * Arguably we might want to fall back to a non-Augeas method in
843    * this case.
844    */
845   if (guestfs_aug_init (g, "/", 16|32) == -1)
846     return -1;
847
848   int r = -1;
849
850   /* Tell Augeas to only load one file (thanks RaphaĆ«l Pinson). */
851   char buf[strlen (filename) + 64];
852   snprintf (buf, strlen (filename) + 64, "/augeas/load//incl[. != \"%s\"]",
853             filename);
854   if (guestfs_aug_rm (g, buf) == -1)
855     goto out;
856
857   if (guestfs_aug_load (g) == -1)
858     goto out;
859
860   r = f (g, fs);
861
862  out:
863   guestfs_aug_close (g);
864
865   return r;
866 }
867
868 #endif /* defined(HAVE_HIVEX) */