*
* Returns: newly allocated mount context
*/
-mnt_context *mnt_new_context()
+mnt_context *mnt_new_context(void)
{
mnt_context *cxt;
uid_t ruid, euid;
return 0;
}
+/**
+ * mnt_context_init_helper
+ * @cxt: mount context
+ * @flags: not used
+ *
+ * This function infors libmount that used from [u]mount.<type> helper.
+ *
+ * Returns: 0 on success, negative number in case of error.
+ */
+int mnt_context_init_helper(mnt_context *cxt, int flags)
+{
+ return set_flag(cxt, MNT_FL_HELPER, 1);
+}
+
#ifdef TEST_PROGRAM
mnt_lock *lock;
return 0;
}
+/**
+ * mnt_context_mounthelper_setopt:
+ * @cxr: context
+ * @c: getopt() result
+ * @arg: getopt() optarg
+ *
+ * This function applies mount.<type> command line option (for example parsed
+ * by getopt() or getopt_long()) to @cxt. All unknown options are ignored and
+ * then 1 is returned.
+ *
+ * Returns: negative number on error, 1 if @c is unknown option, 0 on success.
+ */
+int mnt_context_mounthelper_setopt(mnt_context *cxt, int c, char *arg)
+{
+ int rc = -EINVAL;
+
+ if (!cxt || !c)
+ return -EINVAL;
+
+ switch(c) {
+ case 'f':
+ rc = mnt_context_enable_fake(cxt, TRUE);
+ break;
+ case 'n':
+ rc = mnt_context_disable_mtab(cxt, TRUE);
+ break;
+ case 'r':
+ rc = mnt_context_append_options(cxt, "ro");
+ break;
+ case 'v':
+ rc = mnt_context_enable_verbose(cxt, TRUE);
+ break;
+ case 'w':
+ rc = mnt_context_append_options(cxt, "rw");
+ break;
+ case 'o':
+ if (arg)
+ rc = mnt_context_append_options(cxt, arg);
+ break;
+ case 's':
+ rc = mnt_context_enable_sloppy(cxt, TRUE);
+ break;
+ case 't':
+ if (arg)
+ rc = mnt_context_set_fstype(cxt, arg);
+ break;
+ default:
+ return 1;
+ break;
+ }
+
+ return rc;
+}
+
static int exec_helper(mnt_context *cxt)
{
char *o = NULL;
args[i++] = mnt_fs_get_srcpath(cxt->fs);/* 2 */
args[i++] = mnt_fs_get_target(cxt->fs); /* 3 */
- if (cxt->flags & MNT_FL_SLOPPY)
+ if (mnt_context_is_sloppy(cxt))
args[i++] = "-s"; /* 4 */
- if (cxt->flags & MNT_FL_FAKE)
+ if (mnt_context_is_fake(cxt))
args[i++] = "-f"; /* 5 */
- if (cxt->flags & MNT_FL_NOMTAB)
+ if (mnt_context_is_nomtab(cxt))
args[i++] = "-n"; /* 6 */
- if (cxt->flags & MNT_FL_VERBOSE)
+ if (mnt_context_is_verbose(cxt))
args[i++] = "-v"; /* 7 */
if (o) {
args[i++] = "-o"; /* 8 */
extern int mnt_reset_context(mnt_context *cxt);
extern int mnt_context_is_restricted(mnt_context *cxt);
+extern int mnt_context_init_helper(mnt_context *cxt, int flags)
+extern int mnt_context_mounthelper_setopt(mnt_context *cxt, int c, char *arg);
+
extern int mnt_context_set_optsmode(mnt_context *cxt, int mode);
extern int mnt_context_disable_canonicalize(mnt_context *cxt, int disable);
extern int mnt_context_enable_lazy(mnt_context *cxt, int enable);