Răsfoiți Sursa

squashfs4: backport an upstream change to fix the file mode check to allow setuid/setgid binaries (thx, ermo) - fixes #7653

SVN-Revision: 22334
Felix Fietkau 15 ani în urmă
părinte
comite
67b4181c8a
1 a modificat fișierele cu 11 adăugiri și 0 ștergeri
  1. 11 0
      tools/squashfs4/patches/140-mode_check.patch

+ 11 - 0
tools/squashfs4/patches/140-mode_check.patch

@@ -0,0 +1,11 @@
+--- a/squashfs-tools/pseudo.c
++++ b/squashfs-tools/pseudo.c
+@@ -374,7 +374,7 @@
+ 	}
+ 
+ 
+-	if(mode > 0777) {
++	if(mode > 07777) {
+ 		ERROR("Mode %o out of range\n", mode);
+ 		goto error;
+ 	}