[Bug 7850] New: Mount helpers program launched with bad options.

bugzilla at busybox.net bugzilla at busybox.net
Thu Jan 29 08:50:25 UTC 2015


https://bugs.busybox.net/show_bug.cgi?id=7850

           Summary: Mount helpers program launched with bad options.
           Product: Busybox
           Version: unspecified
          Platform: All
        OS/Version: Linux
            Status: NEW
          Severity: minor
          Priority: P5
         Component: Other
        AssignedTo: unassigned at busybox.net
        ReportedBy: v.balyasnyy at gmail.com
                CC: busybox-cvs at busybox.net
   Estimated Hours: 0.0


Created attachment 5828
  --> https://bugs.busybox.net/attachment.cgi?id=5828
patch to fix error

If you try to launch:
# mount -t ntfs-3g -o ro <DEV> <MNT>
mount helpers try to launch it that way:
# /sbin/ntfs-3g <DEV> <MNT> //without "ro" options

but if you try to launch:
# mount -t ntfs-3g -o SOME_CRAZY_OPTS <DEV> <MNT>
mount helpers try to launch it that way:
# /sbin/ntfs-3g SOME_CRAZY_OPTS <DEV> <MNT> //with not recognized option list

so, recognized option list converted in vfsflags by parse_mount_options method
and do not used in mount helpers call.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


More information about the busybox-cvs mailing list