Received: by 2002:ac0:98c7:0:0:0:0:0 with SMTP id g7-v6csp506289imd; Thu, 1 Nov 2018 00:32:15 -0700 (PDT) X-Google-Smtp-Source: AJdET5ceXJoFds+em/PP66V5iRRRpygDtjlYStVkC3fp09WRxurqtSGlk1s58f26bgVFCuRbiN5D X-Received: by 2002:a17:902:2468:: with SMTP id m37-v6mr6702600plg.154.1541057535238; Thu, 01 Nov 2018 00:32:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1541057535; cv=none; d=google.com; s=arc-20160816; b=G9IpUjZNgmNwb4ur7JjuJ0IzKI0HLtP1C/Cto6mR8NcFVkweXatB4VLwlHutRHwlSP 9Q+UbjVTrBL7rPcyMwT5CErieiliRIhAA3uxWmiBUsB4/Shn9ych1xmSiAyQIltgKyIU 8Ayfn5KFxXb9+oAVqAUpoGhnEEEnfBmNFe2F0qoub/f2TmguXweLfoCxUiLDuki81FVz k+TF9GsGahek/jXigaiK3JtPqZMO2AMcDbC5zRIUcuq9d28zc7BwoN30AdgcEw2d8OGC UYL6qIDkIOmZ2LswUyiO83k4MnfYGxgLSI/U7CLMIIT5ROIogdw1tofxanV4zQRajfBf AvHw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=B2gJ9JN37GUAGTqFXbNObI577BeSHURQ2u6YW/L26fA=; b=z6P8kulqDE1lcmHjfXM1+xItcTtnaKhjKrjmhQcoyOixKe4AKG5ZLGZUbobx1A9q44 iNBiflXuNNwSPfy6yq1u5Gd3PVey7fkrxOmdtFWB+w7YhGEufxTjnqV2Gbj0gr+P3W4Q G69LvexKt57VfqniO5lVer2KF10Suj8hJ90wp4s1QjosSW7XTq/txksI2YF2bqhPU6dY WrOAp03wVm83VPSKuCpMBZtbU4HP2tSR/8mhjzegrsL4C2DX2F+sr+Te9Q1f25Cuyo/e DOtifSBvI2Bbz0VtF4slH8GQ0uOOgXTXthTtO63sjcHxL/4ysYs02ulERb1GK2oAkF1z UZ4Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r12-v6si29307402pga.346.2018.11.01.00.31.58; Thu, 01 Nov 2018 00:32:15 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727976AbeKAQQ3 (ORCPT + 99 others); Thu, 1 Nov 2018 12:16:29 -0400 Received: from smtp2.provo.novell.com ([137.65.250.81]:32919 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727573AbeKAQQ2 (ORCPT ); Thu, 1 Nov 2018 12:16:28 -0400 Received: from Alpha.suse.asia (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by smtp2.provo.novell.com with ESMTP (NOT encrypted); Thu, 01 Nov 2018 01:14:38 -0600 From: Larry Chen To: mark@fasheh.com, jlbec@evilplan.org Cc: linux-kernel@vger.kernel.org, ocfs2-devel@oss.oracle.com, akpm@linux-foundation.org, ge.changwei@h3c.com Subject: [PATCH V3] ocfs2: fix dead lock caused by ocfs2_defrag_extent Date: Thu, 1 Nov 2018 15:14:22 +0800 Message-Id: <20181101071422.14470-1-lchen@suse.com> X-Mailer: git-send-email 2.16.4 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ocfs2_defrag_extent may fall into deadlock. ocfs2_ioctl_move_extents ocfs2_ioctl_move_extents ocfs2_move_extents ocfs2_defrag_extent ocfs2_lock_allocators_move_extents ocfs2_reserve_clusters inode_lock GLOBAL_BITMAP_SYSTEM_INODE __ocfs2_flush_truncate_log inode_lock GLOBAL_BITMAP_SYSTEM_INODE As backtrace shows above, ocfs2_reserve_clusters() will call inode_lock against the global bitmap if local allocator has not sufficient cluters. Once global bitmap could meet the demand, ocfs2_reserve_cluster will return success with global bitmap locked. After ocfs2_reserve_cluster(), if truncate log is full, __ocfs2_flush_truncate_log() will definitely fall into deadlock because it needs to inode_lock global bitmap, which has already been locked. To fix this bug, we could remove from ocfs2_lock_allocators_move_extents() the code which intends to lock global allocator, and put the removed code after __ocfs2_flush_truncate_log(). ocfs2_lock_allocators_move_extents() is referred by 2 places, one is here, the other does not need the data allocator context, which means this patch does not affect the caller so far. Change log: 1. Correct the function comment. 2. Remove unused argument from ocfs2_lock_meta_allocator_move_extents. Signed-off-by: Larry Chen --- fs/ocfs2/move_extents.c | 47 ++++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/fs/ocfs2/move_extents.c b/fs/ocfs2/move_extents.c index 7eb3b0a6347e..f55f82ca3425 100644 --- a/fs/ocfs2/move_extents.c +++ b/fs/ocfs2/move_extents.c @@ -156,18 +156,14 @@ static int __ocfs2_move_extent(handle_t *handle, } /* - * lock allocators, and reserving appropriate number of bits for - * meta blocks and data clusters. - * - * in some cases, we don't need to reserve clusters, just let data_ac - * be NULL. + * lock allocator, and reserve appropriate number of bits for + * meta blocks. */ -static int ocfs2_lock_allocators_move_extents(struct inode *inode, +static int ocfs2_lock_meta_allocator_move_extents(struct inode *inode, struct ocfs2_extent_tree *et, u32 clusters_to_move, u32 extents_to_split, struct ocfs2_alloc_context **meta_ac, - struct ocfs2_alloc_context **data_ac, int extra_blocks, int *credits) { @@ -192,13 +188,6 @@ static int ocfs2_lock_allocators_move_extents(struct inode *inode, goto out; } - if (data_ac) { - ret = ocfs2_reserve_clusters(osb, clusters_to_move, data_ac); - if (ret) { - mlog_errno(ret); - goto out; - } - } *credits += ocfs2_calc_extend_credits(osb->sb, et->et_root_el); @@ -257,10 +246,10 @@ static int ocfs2_defrag_extent(struct ocfs2_move_extents_context *context, } } - ret = ocfs2_lock_allocators_move_extents(inode, &context->et, *len, 1, - &context->meta_ac, - &context->data_ac, - extra_blocks, &credits); + ret = ocfs2_lock_meta_allocator_move_extents(inode, &context->et, + *len, 1, + &context->meta_ac, + extra_blocks, &credits); if (ret) { mlog_errno(ret); goto out; @@ -283,6 +272,21 @@ static int ocfs2_defrag_extent(struct ocfs2_move_extents_context *context, } } + /* + * Make sure ocfs2_reserve_cluster is called after + * __ocfs2_flush_truncate_log, otherwise, dead lock may happen. + * + * If ocfs2_reserve_cluster is called + * before __ocfs2_flush_truncate_log, dead lock on global bitmap + * may happen. + * + */ + ret = ocfs2_reserve_clusters(osb, *len, &context->data_ac); + if (ret) { + mlog_errno(ret); + goto out_unlock_mutex; + } + handle = ocfs2_start_trans(osb, credits); if (IS_ERR(handle)) { ret = PTR_ERR(handle); @@ -600,9 +604,10 @@ static int ocfs2_move_extent(struct ocfs2_move_extents_context *context, } } - ret = ocfs2_lock_allocators_move_extents(inode, &context->et, len, 1, - &context->meta_ac, - NULL, extra_blocks, &credits); + ret = ocfs2_lock_meta_allocator_move_extents(inode, &context->et, + len, 1, + &context->meta_ac, + extra_blocks, &credits); if (ret) { mlog_errno(ret); goto out; -- 2.16.4