2 * Copyright (C) 2010-2011 Red Hat Inc.
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.
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.
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
41 #include "ignore-value.h"
45 #include "guestfs-internal.h"
46 #include "guestfs-internal-actions.h"
47 #include "guestfs_protocol.h"
49 #if defined(HAVE_PCRE) && defined(HAVE_HIVEX)
51 /* Compile all the regular expressions once when the shared library is
52 * loaded. PCRE is thread safe so we're supposedly OK here if
53 * multiple threads call into the libguestfs API functions below
56 static pcre *re_fedora;
57 static pcre *re_rhel_old;
59 static pcre *re_rhel_no_minor;
60 static pcre *re_centos_old;
61 static pcre *re_centos;
62 static pcre *re_centos_no_minor;
63 static pcre *re_scientific_linux_old;
64 static pcre *re_scientific_linux;
65 static pcre *re_scientific_linux_no_minor;
66 static pcre *re_major_minor;
67 static pcre *re_aug_seq;
69 static pcre *re_first_partition;
70 static pcre *re_freebsd;
72 static void compile_regexps (void) __attribute__((constructor));
73 static void free_regexps (void) __attribute__((destructor));
76 compile_regexps (void)
81 #define COMPILE(re,pattern,options) \
83 re = pcre_compile ((pattern), (options), &err, &offset, NULL); \
85 ignore_value (write (2, err, strlen (err))); \
90 COMPILE (re_fedora, "Fedora release (\\d+)", 0);
92 "Red Hat.*release (\\d+).*Update (\\d+)", 0);
94 "Red Hat.*release (\\d+)\\.(\\d+)", 0);
95 COMPILE (re_rhel_no_minor,
96 "Red Hat.*release (\\d+)", 0);
97 COMPILE (re_centos_old,
98 "CentOS.*release (\\d+).*Update (\\d+)", 0);
100 "CentOS.*release (\\d+)\\.(\\d+)", 0);
101 COMPILE (re_centos_no_minor,
102 "CentOS.*release (\\d+)", 0);
103 COMPILE (re_scientific_linux_old,
104 "Scientific Linux.*release (\\d+).*Update (\\d+)", 0);
105 COMPILE (re_scientific_linux,
106 "Scientific Linux.*release (\\d+)\\.(\\d+)", 0);
107 COMPILE (re_scientific_linux_no_minor,
108 "Scientific Linux.*release (\\d+)", 0);
109 COMPILE (re_major_minor, "(\\d+)\\.(\\d+)", 0);
110 COMPILE (re_aug_seq, "/\\d+$", 0);
111 COMPILE (re_xdev, "^/dev/(?:h|s|v|xv)d([a-z]\\d*)$", 0);
112 COMPILE (re_freebsd, "^/dev/ad(\\d+)s(\\d+)([a-z])$", 0);
118 pcre_free (re_fedora);
119 pcre_free (re_rhel_old);
121 pcre_free (re_rhel_no_minor);
122 pcre_free (re_centos_old);
123 pcre_free (re_centos);
124 pcre_free (re_centos_no_minor);
125 pcre_free (re_scientific_linux_old);
126 pcre_free (re_scientific_linux);
127 pcre_free (re_scientific_linux_no_minor);
128 pcre_free (re_major_minor);
129 pcre_free (re_aug_seq);
131 pcre_free (re_freebsd);
134 static void check_architecture (guestfs_h *g, struct inspect_fs *fs);
135 static int check_hostname_unix (guestfs_h *g, struct inspect_fs *fs);
136 static int check_hostname_redhat (guestfs_h *g, struct inspect_fs *fs);
137 static int check_hostname_freebsd (guestfs_h *g, struct inspect_fs *fs);
138 static int check_fstab (guestfs_h *g, struct inspect_fs *fs);
139 static int add_fstab_entry (guestfs_h *g, struct inspect_fs *fs,
140 const char *spec, const char *mp);
141 static char *resolve_fstab_device (guestfs_h *g, const char *spec);
142 static int inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, const char *filename, int (*f) (guestfs_h *, struct inspect_fs *));
144 /* Set fs->product_name to the first line of the release file. */
146 parse_release_file (guestfs_h *g, struct inspect_fs *fs,
147 const char *release_filename)
149 fs->product_name = guestfs___first_line_of_file (g, release_filename);
150 if (fs->product_name == NULL)
155 /* Ubuntu has /etc/lsb-release containing:
156 * DISTRIB_ID=Ubuntu # Distro
157 * DISTRIB_RELEASE=10.04 # Version
158 * DISTRIB_CODENAME=lucid
159 * DISTRIB_DESCRIPTION="Ubuntu 10.04.1 LTS" # Product name
161 * [Ubuntu-derived ...] Linux Mint was found to have this:
162 * DISTRIB_ID=LinuxMint
164 * DISTRIB_CODENAME=julia
165 * DISTRIB_DESCRIPTION="Linux Mint 10 Julia"
166 * Linux Mint also has /etc/linuxmint/info with more information,
167 * but we can use the LSB file.
170 * LSB_VERSION=lsb-4.0-amd64:lsb-4.0-noarch
171 * DISTRIB_ID=MandrivaLinux
172 * DISTRIB_RELEASE=2010.1
173 * DISTRIB_CODENAME=Henry_Farman
174 * DISTRIB_DESCRIPTION="Mandriva Linux 2010.1"
175 * Mandriva also has a normal release file called /etc/mandriva-release.
178 parse_lsb_release (guestfs_h *g, struct inspect_fs *fs)
180 const char *filename = "/etc/lsb-release";
186 /* Don't trust guestfs_head_n not to break with very large files.
187 * Check the file size is something reasonable first.
189 size = guestfs_filesize (g, filename);
191 /* guestfs_filesize failed and has already set error in handle */
193 if (size > MAX_SMALL_FILE_SIZE) {
194 error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
199 lines = guestfs_head_n (g, 10, filename);
203 for (i = 0; lines[i] != NULL; ++i) {
204 if (fs->distro == 0 &&
205 STREQ (lines[i], "DISTRIB_ID=Ubuntu")) {
206 fs->distro = OS_DISTRO_UBUNTU;
209 else if (fs->distro == 0 &&
210 STREQ (lines[i], "DISTRIB_ID=LinuxMint")) {
211 fs->distro = OS_DISTRO_LINUX_MINT;
214 else if (fs->distro == 0 &&
215 STREQ (lines[i], "DISTRIB_ID=MandrivaLinux")) {
216 fs->distro = OS_DISTRO_MANDRIVA;
219 else if (STRPREFIX (lines[i], "DISTRIB_RELEASE=")) {
221 if (match2 (g, &lines[i][16], re_major_minor, &major, &minor)) {
222 fs->major_version = guestfs___parse_unsigned_int (g, major);
224 if (fs->major_version == -1) {
226 guestfs___free_string_list (lines);
229 fs->minor_version = guestfs___parse_unsigned_int (g, minor);
231 if (fs->minor_version == -1) {
232 guestfs___free_string_list (lines);
237 else if (fs->product_name == NULL &&
238 (STRPREFIX (lines[i], "DISTRIB_DESCRIPTION=\"") ||
239 STRPREFIX (lines[i], "DISTRIB_DESCRIPTION='"))) {
240 size_t len = strlen (lines[i]) - 21 - 1;
241 fs->product_name = safe_strndup (g, &lines[i][21], len);
244 else if (fs->product_name == NULL &&
245 STRPREFIX (lines[i], "DISTRIB_DESCRIPTION=")) {
246 size_t len = strlen (lines[i]) - 20;
247 fs->product_name = safe_strndup (g, &lines[i][20], len);
252 guestfs___free_string_list (lines);
256 /* The currently mounted device is known to be a Linux root. Try to
257 * determine from this the distro, version, etc. Also parse
258 * /etc/fstab to determine the arrangement of mountpoints and
259 * associated devices.
262 guestfs___check_linux_root (guestfs_h *g, struct inspect_fs *fs)
266 fs->type = OS_TYPE_LINUX;
268 if (guestfs_exists (g, "/etc/lsb-release") > 0) {
269 r = parse_lsb_release (g, fs);
270 if (r == -1) /* error */
272 if (r == 1) /* ok - detected the release from this file */
273 goto skip_release_checks;
276 if (guestfs_exists (g, "/etc/redhat-release") > 0) {
277 fs->distro = OS_DISTRO_REDHAT_BASED; /* Something generic Red Hat-like. */
279 if (parse_release_file (g, fs, "/etc/redhat-release") == -1)
283 if ((major = match1 (g, fs->product_name, re_fedora)) != NULL) {
284 fs->distro = OS_DISTRO_FEDORA;
285 fs->major_version = guestfs___parse_unsigned_int (g, major);
287 if (fs->major_version == -1)
290 else if (match2 (g, fs->product_name, re_rhel_old, &major, &minor) ||
291 match2 (g, fs->product_name, re_rhel, &major, &minor)) {
292 fs->distro = OS_DISTRO_RHEL;
293 fs->major_version = guestfs___parse_unsigned_int (g, major);
295 if (fs->major_version == -1) {
299 fs->minor_version = guestfs___parse_unsigned_int (g, minor);
301 if (fs->minor_version == -1)
304 else if ((major = match1 (g, fs->product_name, re_rhel_no_minor)) != NULL) {
305 fs->distro = OS_DISTRO_RHEL;
306 fs->major_version = guestfs___parse_unsigned_int (g, major);
308 if (fs->major_version == -1)
310 fs->minor_version = 0;
312 else if (match2 (g, fs->product_name, re_centos_old, &major, &minor) ||
313 match2 (g, fs->product_name, re_centos, &major, &minor)) {
314 fs->distro = OS_DISTRO_CENTOS;
315 fs->major_version = guestfs___parse_unsigned_int (g, major);
317 if (fs->major_version == -1) {
321 fs->minor_version = guestfs___parse_unsigned_int (g, minor);
323 if (fs->minor_version == -1)
326 else if ((major = match1 (g, fs->product_name, re_centos_no_minor)) != NULL) {
327 fs->distro = OS_DISTRO_CENTOS;
328 fs->major_version = guestfs___parse_unsigned_int (g, major);
330 if (fs->major_version == -1)
332 fs->minor_version = 0;
334 else if (match2 (g, fs->product_name, re_scientific_linux_old, &major, &minor) ||
335 match2 (g, fs->product_name, re_scientific_linux, &major, &minor)) {
336 fs->distro = OS_DISTRO_SCIENTIFIC_LINUX;
337 fs->major_version = guestfs___parse_unsigned_int (g, major);
339 if (fs->major_version == -1) {
343 fs->minor_version = guestfs___parse_unsigned_int (g, minor);
345 if (fs->minor_version == -1)
348 else if ((major = match1 (g, fs->product_name, re_scientific_linux_no_minor)) != NULL) {
349 fs->distro = OS_DISTRO_SCIENTIFIC_LINUX;
350 fs->major_version = guestfs___parse_unsigned_int (g, major);
352 if (fs->major_version == -1)
354 fs->minor_version = 0;
357 else if (guestfs_exists (g, "/etc/debian_version") > 0) {
358 fs->distro = OS_DISTRO_DEBIAN;
360 if (parse_release_file (g, fs, "/etc/debian_version") == -1)
363 if (guestfs___parse_major_minor (g, fs) == -1)
366 else if (guestfs_exists (g, "/etc/pardus-release") > 0) {
367 fs->distro = OS_DISTRO_PARDUS;
369 if (parse_release_file (g, fs, "/etc/pardus-release") == -1)
372 if (guestfs___parse_major_minor (g, fs) == -1)
375 else if (guestfs_exists (g, "/etc/arch-release") > 0) {
376 fs->distro = OS_DISTRO_ARCHLINUX;
378 /* /etc/arch-release file is empty and I can't see a way to
379 * determine the actual release or product string.
382 else if (guestfs_exists (g, "/etc/gentoo-release") > 0) {
383 fs->distro = OS_DISTRO_GENTOO;
385 if (parse_release_file (g, fs, "/etc/gentoo-release") == -1)
388 if (guestfs___parse_major_minor (g, fs) == -1)
391 else if (guestfs_exists (g, "/etc/meego-release") > 0) {
392 fs->distro = OS_DISTRO_MEEGO;
394 if (parse_release_file (g, fs, "/etc/meego-release") == -1)
397 if (guestfs___parse_major_minor (g, fs) == -1)
400 else if (guestfs_exists (g, "/etc/slackware-version") > 0) {
401 fs->distro = OS_DISTRO_SLACKWARE;
403 if (parse_release_file (g, fs, "/etc/slackware-version") == -1)
406 if (guestfs___parse_major_minor (g, fs) == -1)
410 skip_release_checks:;
412 /* Determine the architecture. */
413 check_architecture (g, fs);
415 /* We already know /etc/fstab exists because it's part of the test
416 * for Linux root above. We must now parse this file to determine
417 * which filesystems are used by the operating system and how they
420 if (inspect_with_augeas (g, fs, "/etc/fstab", check_fstab) == -1)
423 /* Determine hostname. */
424 if (check_hostname_unix (g, fs) == -1)
430 /* The currently mounted device is known to be a FreeBSD root. */
432 guestfs___check_freebsd_root (guestfs_h *g, struct inspect_fs *fs)
434 fs->type = OS_TYPE_FREEBSD;
436 /* FreeBSD has no authoritative version file. The version number is
437 * in /etc/motd, which the system administrator might edit, but
438 * we'll use that anyway.
441 if (guestfs_exists (g, "/etc/motd") > 0) {
442 if (parse_release_file (g, fs, "/etc/motd") == -1)
445 if (guestfs___parse_major_minor (g, fs) == -1)
449 /* Determine the architecture. */
450 check_architecture (g, fs);
452 /* We already know /etc/fstab exists because it's part of the test above. */
453 if (inspect_with_augeas (g, fs, "/etc/fstab", check_fstab) == -1)
456 /* Determine hostname. */
457 if (check_hostname_unix (g, fs) == -1)
464 check_architecture (guestfs_h *g, struct inspect_fs *fs)
466 const char *binaries[] =
467 { "/bin/bash", "/bin/ls", "/bin/echo", "/bin/rm", "/bin/sh" };
470 for (i = 0; i < sizeof binaries / sizeof binaries[0]; ++i) {
471 if (guestfs_is_file (g, binaries[i]) > 0) {
472 /* Ignore errors from file_architecture call. */
473 guestfs_error_handler_cb old_error_cb = g->error_cb;
475 char *arch = guestfs_file_architecture (g, binaries[i]);
476 g->error_cb = old_error_cb;
479 /* String will be owned by handle, freed by
480 * guestfs___free_inspect_info.
489 /* Try several methods to determine the hostname from a Linux or
490 * FreeBSD guest. Note that type and distro have been set, so we can
491 * use that information to direct the search.
494 check_hostname_unix (guestfs_h *g, struct inspect_fs *fs)
498 /* Red Hat-derived would be in /etc/sysconfig/network, and
499 * Debian-derived in the file /etc/hostname. Very old Debian and
500 * SUSE use /etc/HOSTNAME. It's best to just look for each of
501 * these files in turn, rather than try anything clever based on
504 if (guestfs_is_file (g, "/etc/HOSTNAME")) {
505 fs->hostname = guestfs___first_line_of_file (g, "/etc/HOSTNAME");
506 if (fs->hostname == NULL)
509 else if (guestfs_is_file (g, "/etc/hostname")) {
510 fs->hostname = guestfs___first_line_of_file (g, "/etc/hostname");
511 if (fs->hostname == NULL)
514 else if (guestfs_is_file (g, "/etc/sysconfig/network")) {
515 if (inspect_with_augeas (g, fs, "/etc/sysconfig/network",
516 check_hostname_redhat) == -1)
521 case OS_TYPE_FREEBSD:
522 /* /etc/rc.conf contains the hostname, but there is no Augeas lens
525 if (guestfs_is_file (g, "/etc/rc.conf")) {
526 if (check_hostname_freebsd (g, fs) == -1)
531 case OS_TYPE_WINDOWS: /* not here, see check_windows_system_registry */
532 case OS_TYPE_UNKNOWN:
534 /* nothing, keep GCC warnings happy */;
540 /* Parse the hostname from /etc/sysconfig/network. This must be called
541 * from the inspect_with_augeas wrapper.
544 check_hostname_redhat (guestfs_h *g, struct inspect_fs *fs)
548 hostname = guestfs_aug_get (g, "/files/etc/sysconfig/network/HOSTNAME");
552 fs->hostname = hostname; /* freed by guestfs___free_inspect_info */
556 /* Parse the hostname from /etc/rc.conf. On FreeBSD this file
557 * contains comments, blank lines and:
558 * hostname="freebsd8.example.com"
559 * ifconfig_re0="DHCP"
564 check_hostname_freebsd (guestfs_h *g, struct inspect_fs *fs)
566 const char *filename = "/etc/rc.conf";
571 /* Don't trust guestfs_read_lines not to break with very large files.
572 * Check the file size is something reasonable first.
574 size = guestfs_filesize (g, filename);
576 /* guestfs_filesize failed and has already set error in handle */
578 if (size > MAX_SMALL_FILE_SIZE) {
579 error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
584 lines = guestfs_read_lines (g, filename);
588 for (i = 0; lines[i] != NULL; ++i) {
589 if (STRPREFIX (lines[i], "hostname=\"") ||
590 STRPREFIX (lines[i], "hostname='")) {
591 size_t len = strlen (lines[i]) - 10 - 1;
592 fs->hostname = safe_strndup (g, &lines[i][10], len);
594 } else if (STRPREFIX (lines[i], "hostname=")) {
595 size_t len = strlen (lines[i]) - 9;
596 fs->hostname = safe_strndup (g, &lines[i][9], len);
601 guestfs___free_string_list (lines);
606 check_fstab (guestfs_h *g, struct inspect_fs *fs)
608 char **lines = guestfs_aug_ls (g, "/files/etc/fstab");
612 if (lines[0] == NULL) {
613 error (g, _("could not parse /etc/fstab or empty file"));
614 guestfs___free_string_list (lines);
620 for (i = 0; lines[i] != NULL; ++i) {
621 /* Ignore comments. Only care about sequence lines which
624 if (match (g, lines[i], re_aug_seq)) {
625 snprintf (augpath, sizeof augpath, "%s/spec", lines[i]);
626 char *spec = guestfs_aug_get (g, augpath);
628 guestfs___free_string_list (lines);
632 snprintf (augpath, sizeof augpath, "%s/file", lines[i]);
633 char *mp = guestfs_aug_get (g, augpath);
635 guestfs___free_string_list (lines);
640 int r = add_fstab_entry (g, fs, spec, mp);
645 guestfs___free_string_list (lines);
651 guestfs___free_string_list (lines);
655 /* Add a filesystem and possibly a mountpoint entry for
656 * the root filesystem 'fs'.
658 * 'spec' is the fstab spec field, which might be a device name or a
659 * pseudodevice or 'UUID=...' or 'LABEL=...'.
661 * 'mp' is the mount point, which could also be 'swap' or 'none'.
664 add_fstab_entry (guestfs_h *g, struct inspect_fs *fs,
665 const char *spec, const char *mp)
667 /* Ignore certain mountpoints. */
668 if (STRPREFIX (mp, "/dev/") ||
669 STREQ (mp, "/dev") ||
670 STRPREFIX (mp, "/media/") ||
671 STRPREFIX (mp, "/proc/") ||
672 STREQ (mp, "/proc") ||
673 STRPREFIX (mp, "/selinux/") ||
674 STREQ (mp, "/selinux") ||
675 STRPREFIX (mp, "/sys/") ||
679 /* Ignore /dev/fd (floppy disks) (RHBZ#642929) and CD-ROM drives. */
680 if ((STRPREFIX (spec, "/dev/fd") && c_isdigit (spec[7])) ||
681 STREQ (spec, "/dev/floppy") ||
682 STREQ (spec, "/dev/cdrom"))
685 /* Resolve UUID= and LABEL= to the actual device. */
687 if (STRPREFIX (spec, "UUID="))
688 device = guestfs_findfs_uuid (g, &spec[5]);
689 else if (STRPREFIX (spec, "LABEL="))
690 device = guestfs_findfs_label (g, &spec[6]);
691 /* Ignore "/.swap" (Pardus) and pseudo-devices like "tmpfs". */
692 else if (STRPREFIX (spec, "/dev/"))
693 /* Resolve guest block device names. */
694 device = resolve_fstab_device (g, spec);
696 /* If we haven't resolved the device successfully by this point,
697 * we don't care, just ignore it.
702 char *mountpoint = safe_strdup (g, mp);
704 /* Add this to the fstab entry in 'fs'.
705 * Note these are further filtered by guestfs_inspect_get_mountpoints
706 * and guestfs_inspect_get_filesystems.
708 size_t n = fs->nr_fstab + 1;
709 struct inspect_fstab_entry *p;
711 p = realloc (fs->fstab, n * sizeof (struct inspect_fstab_entry));
713 perrorf (g, "realloc");
722 /* These are owned by the handle and freed by guestfs___free_inspect_info. */
723 fs->fstab[n-1].device = device;
724 fs->fstab[n-1].mountpoint = mountpoint;
726 debug (g, "fstab: device=%s mountpoint=%s", device, mountpoint);
731 /* Resolve block device name to the libguestfs device name, eg.
732 * /dev/xvdb1 => /dev/vdb1; and /dev/mapper/VG-LV => /dev/VG/LV. This
733 * assumes that disks were added in the same order as they appear to
734 * the real VM, which is a reasonable assumption to make. Return
735 * anything we don't recognize unchanged.
738 resolve_fstab_device (guestfs_h *g, const char *spec)
742 char *bsddisk, *bsdslice, *bsdpart;
744 if (STRPREFIX (spec, "/dev/mapper/")) {
745 /* LVM2 does some strange munging on /dev/mapper paths for VGs and
746 * LVs which contain '-' character:
748 * ><fs> lvcreate LV--test VG--test 32
749 * ><fs> debug ls /dev/mapper
750 * VG----test-LV----test
752 * This makes it impossible to reverse those paths directly, so
753 * we have implemented lvm_canonical_lv_name in the daemon.
755 device = guestfs_lvm_canonical_lv_name (g, spec);
757 else if ((a1 = match1 (g, spec, re_xdev)) != NULL) {
758 char **devices = guestfs_list_devices (g);
763 for (count = 0; devices[count] != NULL; count++)
766 size_t i = a1[0] - 'a'; /* a1[0] is always [a-z] because of regex. */
768 size_t len = strlen (devices[i]) + strlen (a1) + 16;
769 device = safe_malloc (g, len);
770 snprintf (device, len, "%s%s", devices[i], &a1[1]);
774 guestfs___free_string_list (devices);
776 else if (match3 (g, spec, re_freebsd, &bsddisk, &bsdslice, &bsdpart)) {
777 /* FreeBSD disks are organized quite differently. See:
778 * http://www.freebsd.org/doc/handbook/disk-organization.html
779 * FreeBSD "partitions" are exposed as quasi-extended partitions
780 * numbered from 5 in Linux. I have no idea what happens when you
781 * have multiple "slices" (the FreeBSD term for MBR partitions).
783 int disk = guestfs___parse_unsigned_int (g, bsddisk);
784 int slice = guestfs___parse_unsigned_int (g, bsdslice);
785 int part = bsdpart[0] - 'a' /* counting from 0 */;
790 if (disk == -1 || disk > 26 ||
791 slice <= 0 || slice > 1 /* > 4 .. see comment above */ ||
792 part < 0 || part >= 26)
795 device = safe_asprintf (g, "/dev/sd%c%d", disk + 'a', part + 5);
799 /* Didn't match device pattern, return original spec unchanged. */
801 device = safe_strdup (g, spec);
806 /* Call 'f' with Augeas opened and having parsed 'filename' (this file
807 * must exist). As a security measure, this bails if the file is too
808 * large for a reasonable configuration file. After the call to 'f'
812 inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, const char *filename,
813 int (*f) (guestfs_h *, struct inspect_fs *))
815 /* Security: Refuse to do this if filename is too large. */
816 int64_t size = guestfs_filesize (g, filename);
818 /* guestfs_filesize failed and has already set error in handle */
820 if (size > MAX_AUGEAS_FILE_SIZE) {
821 error (g, _("size of %s is unreasonably large (%" PRIi64 " bytes)"),
826 /* If !feature_available (g, "augeas") then the next call will fail.
827 * Arguably we might want to fall back to a non-Augeas method in
830 if (guestfs_aug_init (g, "/", 16|32) == -1)
835 /* Tell Augeas to only load one file (thanks Raphaƫl Pinson). */
836 char buf[strlen (filename) + 64];
837 snprintf (buf, strlen (filename) + 64, "/augeas/load//incl[. != \"%s\"]",
839 if (guestfs_aug_rm (g, buf) == -1)
842 if (guestfs_aug_load (g) == -1)
848 guestfs_aug_close (g);
853 #endif /* defined(HAVE_PCRE) && defined(HAVE_HIVEX) */