On Wed 26-12-12 13:04:59, Chen Gang wrote: > Hello Theodore Ts'o > > in fs/ext3/supper.c > for function set_qf_name: > sbi->s_qf_names[qtype] may already have owned a memory (line 919..925) > we set sbi->s_qf_names[qtype] = qname directly without checking (line 926) > > for function clear_qf_name: > we set sbi->s_qf_names[qtype] = NULL (line 942..952) > > > for function parse_options: > we can call set_qf_name or clear_qf_name with USR or GRP many times. > we find parameters not mind whether they are repeated. (line 975..985) > so we may call set_qf_name or clear_qf_name several times. > also may first call set_qf_name, then call clear_qf_name. > > in this situation, we will get memory leak. > > please help check this suggestion whether valid (I find it by code review). Thanks for report. Yes, memory leak seems to be possible. Attached patch should fix it, I have added it to my tree. Honza -- Jan Kara <jack@xxxxxxx> SUSE Labs, CR
>From 59cefce80eb3e081d0dbef335843340512aff79e Mon Sep 17 00:00:00 2001 From: Jan Kara <jack@xxxxxxx> Date: Mon, 31 Dec 2012 12:38:36 +0100 Subject: [PATCH] ext3: Fix memory leak when quota options are specified multiple times When usrjquota or grpjquota mount options are specified several times with the same file name, we leak memory storing the names. Free the memory correctly. Reported-by: Chen Gang <gang.chen@xxxxxxxxxxx> Signed-off-by: Jan Kara <jack@xxxxxxx> --- fs/ext3/super.c | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 6e50223..b36cea9 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -916,12 +916,16 @@ static int set_qf_name(struct super_block *sb, int qtype, substring_t *args) "Not enough memory for storing quotafile name"); return 0; } - if (sbi->s_qf_names[qtype] && - strcmp(sbi->s_qf_names[qtype], qname)) { - ext3_msg(sb, KERN_ERR, - "%s quota file already specified", QTYPE2NAME(qtype)); + if (sbi->s_qf_names[qtype]) { + int same = !strcmp(sbi->s_qf_names[qtype], qname); + kfree(qname); - return 0; + if (!same) { + ext3_msg(sb, KERN_ERR, + "%s quota file already specified", + QTYPE2NAME(qtype)); + } + return same; } sbi->s_qf_names[qtype] = qname; if (strchr(sbi->s_qf_names[qtype], '/')) { -- 1.7.1