2009-08-24 23:18:06

by Daniel J Blueman

[permalink] [raw]
Subject: Re: [2.6.31-rc7] NFS4 client manager kthread spinning...

On Mon, Aug 24, 2009 at 6:26 PM, Trond
Myklebust<[email protected]> wrote:
> On Mon, 2009-08-24 at 16:18 +0100, Daniel J Blueman wrote:
>> Hi Trond,
>>
>> On Mon, Aug 17, 2009 at 2:53 PM, Daniel J
>> Blueman<[email protected]> wrote:
>> > Hi Trond,
>> >
>> > On Mon, Aug 17, 2009 at 2:12 PM, Trond
>> > Myklebust<[email protected]> wrote:
>> >> On Sun, 2009-08-16 at 23:40 +0100, Daniel J Blueman wrote:
>> >>> After losing and regaining ethernet link a few times with 2.6.31=
-rc5
>> >>> [1], I've hit an oops in the NFS4 client manager kthread [2] on =
my
>> >>> client with NFS4 homedir mount.
>> >>>
>> >>> Do you have a frequent test-case for when the client's manager k=
thread
>> >>> gets invoked (with and without succeeding callbacks, due to eg a
>> >>> firewall)? Server here is unpatched 2.6.30-rc6; I recall seeing
>> >>> problems when the manager kthread gets invoked, across quite a f=
ew
>> >>> kernel releases, just wasn't lucky enough to catch an oops.
>> >>>
>> >>> Oppsing in allow_signal() suggests task state corruption perhaps=
? I'm
>> >>> downloading the debug kernel to match up the disassembly and lin=
e
>> >>> numbers, if that helps? This time, the client had no firewall (b=
ut
>> >>> have seen other issues when the callback has failed due to the
>> >>> firewall).
>> >>
>> >> Those aren't Oopses. They are 'soft lockup' warnings. Basically, =
they're
>> >> saying that the CPU is getting stuck waiting for a spin lock or a=
mutex.
>> >>
>> >> In this case, it is probably the fact that the state manager is g=
oing
>> >> nuts trying to recover, while the connection to the server keeps =
coming
>> >> up and going down.
>> >>
>> >> What does 'netstat -t' say when you get into this situation?
>> >
>> > Whoops; it's true the stack-trace comes from the soft-lockup detec=
tor.
>> >
>> > There was a single 200s link excursion, but the client didn't reco=
ver
>> > as locks are held and never released it seems; I observe the
>> > '192.168.1.250-m' NFS4 manager kthread being created and not going
>> > away, despite IP connectivity with the server being fine after.
>> >
>> > I'll reproduce it with stock 2.6.31-rc6 on the client and get 'net=
stat
>> > -t' output.
>>
>> (subject line updated)
>>
>> After further analysis, I see that NFS services do correctly recover
>> after the link excursion, however we see:
>> =A0- link is restored
>> =A0- the manager kthread gets created, does some work
>> =A0- we see lock reclamation fail [1]
>> =A0- after a short while, NFS read()s continue, all is good
>> =A0- the manager kthread spins indefinitely [2, 3] on (struct
>> rpc_wait_queue)queue->lock with spin_lock_bh() [see rpc_wake_up]
>>
>> This seems reproducible with various kernel debugging enabled (perha=
ps
>> suggesting use-after-free via the lock being reinitialised/poisoned?=
).
>>
>> Let me know if anything else may help track this down (config, stack
>> frame resolution etc). I'll take a deeper look if I get time in a
>> couple of weeks, but alas it may be after 2.6.31 is released. NFS+RP=
C
>> debugging (taken at a different time than [1]) at
>> http://quora.org/hive/nfs-manager-spin.bz2 .
>
> I think I've found the bug. Does the following patch fix it for you?
>
> Cheers
> =A0Trond
> ---------------------------------------------------------------------=
-
> From: Trond Myklebust <[email protected]>
> NFSv4: Fix an infinite looping problem with the nfs4_state_manager
>
> Commit 76db6d9500caeaa774a3e32a997eba30bbdc176b (nfs41: add session s=
etup
> to the state manager) introduces an infinite loop possibility in the =
NFSv4
> state manager. By first checking nfs4_has_session() before clearing t=
he
> NFS4CLNT_SESSION_SETUP flag, it allows for a situation where someone =
sets
> that flag, but it never gets cleared, and so the state manager loops.
>
> In fact commit c3fad1b1aaf850bf692642642ace7cd0d64af0a3 (nfs41: add s=
ession
> reset to state manager) causes this to happen every time we get a net=
work
> partition error.
>
> Signed-off-by: Trond Myklebust <[email protected]>
> ---
>
> =A0fs/nfs/nfs4state.c | =A0 =A04 ++--
> =A01 files changed, 2 insertions(+), 2 deletions(-)
>
>
> diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
> index 65ca8c1..1434080 100644
> --- a/fs/nfs/nfs4state.c
> +++ b/fs/nfs/nfs4state.c
> @@ -1250,8 +1250,8 @@ static void nfs4_state_manager(struct nfs_clien=
t *clp)
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0contin=
ue;
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0}
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0/* Initialize or reset the session */
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (nfs4_has_session(clp) &&
> - =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0test_and_clear_bit(NFS4CLNT_SESS=
ION_SETUP, &clp->cl_state)) {
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (test_and_clear_bit(NFS4CLNT_SESSION=
_SETUP, &clp->cl_state)
> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0&& nfs4_has_session(clp)) {
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0if (clp->cl_cons_state=
=3D=3D NFS_CS_SESSION_INITING)
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0status=
=3D nfs4_initialize_session(clp);
> =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0else
>

Yes, this addresses the manager kthread spinning; nice work!

Perhaps unrelated to the manager kthread, I reproduced a
"nfs4_reclaim_open_state: Lock reclaim failed!" message ultimately -
expected/significant?

Thanks,
Daniel

---

Tested-by: Daniel J Blueman <[email protected]>
--=20
Daniel J Blueman