The fullmesh flag mustn't be used with the signal flag when adding an
address. This patch added the necessary flags check for this case.
Fixes: 73c762c1f07d ("mptcp: set fullmesh flag in pm_netlink")
Signed-off-by: Geliang Tang <geliang.tang@suse.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
                return -EINVAL;
        }
 
+       if (addr.flags & MPTCP_PM_ADDR_FLAG_SIGNAL &&
+           addr.flags & MPTCP_PM_ADDR_FLAG_FULLMESH) {
+               GENL_SET_ERR_MSG(info, "flags mustn't have both signal and fullmesh");
+               return -EINVAL;
+       }
+
        if (addr.flags & MPTCP_PM_ADDR_FLAG_IMPLICIT) {
                GENL_SET_ERR_MSG(info, "can't create IMPLICIT endpoint");
                return -EINVAL;