git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
528cd8f
)
inspect: Refuse to parse /etc/fstab if it is huge.
author
Richard W.M. Jones
<rjones@redhat.com>
Sat, 13 Nov 2010 14:49:37 +0000
(14:49 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Sat, 13 Nov 2010 14:49:37 +0000
(14:49 +0000)
src/inspect.c
patch
|
blob
|
history
diff --git
a/src/inspect.c
b/src/inspect.c
index
3c4c619
..
d0041c8
100644
(file)
--- a/
src/inspect.c
+++ b/
src/inspect.c
@@
-629,6
+629,14
@@
static int
check_fstab (guestfs_h *g, struct inspect_fs *fs)
{
int r;
+ int64_t size;
+
+ /* Security: Refuse to do this if /etc/fstab is huge. */
+ size = guestfs_filesize (g, "/etc/fstab");
+ if (size == -1 || size > 100000) {
+ error (g, _("size of /etc/fstab unreasonable (%" PRIi64 " bytes)"), size);
+ return -1;
+ }
/* XXX What if !feature_available (g, "augeas")? */
if (guestfs_aug_init (g, "/", 16|32) == -1)