]> git.decadent.org.uk Git - nfs-utils.git/commit
text-based mount.nfs: parse option strings into lists
authorChuck Lever <chuck.lever@oracle.com>
Fri, 28 Sep 2007 20:36:35 +0000 (16:36 -0400)
committerNeil Brown <neilb@suse.de>
Fri, 28 Sep 2007 21:58:57 +0000 (07:58 +1000)
commit2ab6ed792a773751d1f5d60d13a06161559c0e54
treebc35f4978046e6dfcaadc3379624e1d71a7b6940
parentaf5939d15a41b337cc499a04fe4001a5cd51fdce
text-based mount.nfs: parse option strings into lists

Adapt a parsing trick used by Python.

Parse mount option strings into an abstract data type so we don't have to
copy and/or tokenize the whole option string multiple times while trying
to manipulate the mount options.  Then, just before calling the mount(2)
system call, convert the object back into a C string.

One major advantage of this approach is that we can copy the final version
of the mount options into /etc/mtab when we're done, instead of copying in
the original mount options that the user specified.  Any fallback from NFS
v3 to NFS v2 or TCP to UDP that was done by mount.nfs will be reflected in
/etc/mtab.

This patch adds methods for creating and manipulating mount option data
objects.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Neil Brown <neilb@suse.de>
utils/mount/Makefile.am
utils/mount/parse_opt.c [new file with mode: 0644]
utils/mount/parse_opt.h [new file with mode: 0644]