linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Guiyao <guiyao@huawei.com>
To: "Theodore Y. Ts'o" <tytso@mit.edu>
Cc: "linux-ext4@vger.kernel.org" <linux-ext4@vger.kernel.org>,
	Mingfangsen <mingfangsen@huawei.com>,
	"ebiggers@google.com" <ebiggers@google.com>,
	"aceballos@gmail.com" <aceballos@gmail.com>,
	"vertaling@coevern.nl" <vertaling@coevern.nl>
Subject: 答复: [PATCH v2] e2fsprogs: Check device id in advance to skip fake device name
Date: Mon, 11 Nov 2019 14:43:46 +0000	[thread overview]
Message-ID: <005F77DB9A260B4E91664DDF22573C66E9D380C7@dggemm512-mbs.china.huawei.com> (raw)

Hi Theodore,

Thanks for your response and your rewriting.

Actually, we found some insane system administrators, they not only do something like "mount -t tmpfs /dev/sdb /tmp ", but also they do " ln -s /dev/sdb abc ", then "resize2fs abc xxx". :(

So we have to add the fixing code in both sides of "name matched" and "name not matched".

For the compiling issue, it's my fault in previous patch, and added the macro in a wrong line.

So, I rewrote it again, and please give more advise. Thank you in advance.


diff --git a/lib/ext2fs/ismounted.c b/lib/ext2fs/ismounted.c
index 6cd497d..729769e 100644
--- a/lib/ext2fs/ismounted.c
+++ b/lib/ext2fs/ismounted.c
@@ -97,6 +97,9 @@ static errcode_t check_mntent_file(const char *mtab_file, const char *file,
                   int *mount_flags, char *mtpt, int mtlen)
 {
    struct mntent   *mnt;
+#ifndef __GNU__
+   struct stat dir_st_buf;
+#endif  /* __GNU__ */
    struct stat st_buf;
    errcode_t   retval = 0;
    dev_t       file_dev=0, file_rdev=0;
@@ -128,13 +131,32 @@ static errcode_t check_mntent_file(const char *mtab_file, const char *file,
    while ((mnt = getmntent (f)) != NULL) {
        if (mnt->mnt_fsname[0] != '/')
            continue;
-       if (strcmp(file, mnt->mnt_fsname) == 0)
+#ifndef __GNU__
+       if (stat(mnt->mnt_dir, &dir_st_buf) != 0)
+           continue;
+#endif
+       if (strcmp(file, mnt->mnt_fsname) == 0) {
+#ifndef __GNU__
+           if (file_rdev && (file_rdev != dir_st_buf.st_dev)) {
+#ifdef DEBUG
+               printf("Bogus entry in %s!  "
+                      "(%s does not exist)\n",
+                      mtab_file, mnt->mnt_dir);
+#endif /* DEBUG */
+               continue;
+           }
+#endif /* __GNU__ */
            break;
+       }
+
        if (stat(mnt->mnt_fsname, &st_buf) == 0) {
            if (ext2fsP_is_disk_device(st_buf.st_mode)) {
 #ifndef __GNU__
-               if (file_rdev && (file_rdev == st_buf.st_rdev))
-                   break;
+               if (file_rdev && (file_rdev == st_buf.st_rdev)) {
+                   if (file_rdev == dir_st_buf.st_dev)
+                       break;
+               }
+
                if (check_loop_mounted(mnt->mnt_fsname,
                        st_buf.st_rdev, file_dev,
                        file_ino) == 1)
@@ -168,32 +190,6 @@ static errcode_t check_mntent_file(const char *mtab_file, const char *file,
 #endif /* __GNU__ */
        goto errout;
    }
-#ifndef __GNU__ /* The GNU hurd is deficient; what else is new? */
-   /* Validate the entry in case /etc/mtab is out of date */
-   /*
-    * We need to be paranoid, because some broken distributions
-    * (read: Slackware) don't initialize /etc/mtab before checking
-    * all of the non-root filesystems on the disk.
-    */
-   if (stat(mnt->mnt_dir, &st_buf) < 0) {
-       retval = errno;
-       if (retval == ENOENT) {
-#ifdef DEBUG
-           printf("Bogus entry in %s!  (%s does not exist)\n",
-                  mtab_file, mnt->mnt_dir);
-#endif /* DEBUG */
-           retval = 0;
-       }
-       goto errout;
-   }
-   if (file_rdev && (st_buf.st_dev != file_rdev)) {
-#ifdef DEBUG
-       printf("Bogus entry in %s!  (%s not mounted on %s)\n",
-              mtab_file, file, mnt->mnt_dir);
-#endif /* DEBUG */
-       goto errout;
-   }
-#endif /* __GNU__ */
    *mount_flags = EXT2_MF_MOUNTED;

 #ifdef MNTOPT_RO
-- 
1.8.3.1

             reply	other threads:[~2019-11-11 14:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-11 14:43 Guiyao [this message]
2019-11-11 17:20 ` 答复: [PATCH v2] e2fsprogs: Check device id in advance to skip fake device name Theodore Y. Ts'o

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=005F77DB9A260B4E91664DDF22573C66E9D380C7@dggemm512-mbs.china.huawei.com \
    --to=guiyao@huawei.com \
    --cc=aceballos@gmail.com \
    --cc=ebiggers@google.com \
    --cc=linux-ext4@vger.kernel.org \
    --cc=mingfangsen@huawei.com \
    --cc=tytso@mit.edu \
    --cc=vertaling@coevern.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).