Commit f56426ae authored by Jan Kara's avatar Jan Kara

ext3: Fix memory leak when quota options are specified multiple times

When usrjquota or grpjquota mount options are specified several times,
we leak memory storing the names. Free the memory correctly.
Reported-by: default avatarChen Gang <gang.chen@asianux.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 306a7492
...@@ -916,21 +916,24 @@ static int set_qf_name(struct super_block *sb, int qtype, substring_t *args) ...@@ -916,21 +916,24 @@ static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
"Not enough memory for storing quotafile name"); "Not enough memory for storing quotafile name");
return 0; return 0;
} }
if (sbi->s_qf_names[qtype] && if (sbi->s_qf_names[qtype]) {
strcmp(sbi->s_qf_names[qtype], qname)) { int same = !strcmp(sbi->s_qf_names[qtype], qname);
ext3_msg(sb, KERN_ERR,
"%s quota file already specified", QTYPE2NAME(qtype));
kfree(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(qname, '/')) {
if (strchr(sbi->s_qf_names[qtype], '/')) {
ext3_msg(sb, KERN_ERR, ext3_msg(sb, KERN_ERR,
"quotafile must be on filesystem root"); "quotafile must be on filesystem root");
kfree(sbi->s_qf_names[qtype]); kfree(qname);
sbi->s_qf_names[qtype] = NULL;
return 0; return 0;
} }
sbi->s_qf_names[qtype] = qname;
set_opt(sbi->s_mount_opt, QUOTA); set_opt(sbi->s_mount_opt, QUOTA);
return 1; return 1;
} }
...@@ -945,11 +948,10 @@ static int clear_qf_name(struct super_block *sb, int qtype) { ...@@ -945,11 +948,10 @@ static int clear_qf_name(struct super_block *sb, int qtype) {
" when quota turned on"); " when quota turned on");
return 0; return 0;
} }
/* if (sbi->s_qf_names[qtype]) {
* The space will be released later when all options are confirmed kfree(sbi->s_qf_names[qtype]);
* to be correct sbi->s_qf_names[qtype] = NULL;
*/ }
sbi->s_qf_names[qtype] = NULL;
return 1; return 1;
} }
#endif #endif
...@@ -2605,7 +2607,18 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data) ...@@ -2605,7 +2607,18 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data)
#ifdef CONFIG_QUOTA #ifdef CONFIG_QUOTA
old_opts.s_jquota_fmt = sbi->s_jquota_fmt; old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
for (i = 0; i < MAXQUOTAS; i++) for (i = 0; i < MAXQUOTAS; i++)
old_opts.s_qf_names[i] = sbi->s_qf_names[i]; if (sbi->s_qf_names[i]) {
old_opts.s_qf_names[i] = kstrdup(sbi->s_qf_names[i],
GFP_KERNEL);
if (!old_opts.s_qf_names[i]) {
int j;
for (j = 0; j < i; j++)
kfree(old_opts.s_qf_names[j]);
return -ENOMEM;
}
} else
old_opts.s_qf_names[i] = NULL;
#endif #endif
/* /*
...@@ -2698,9 +2711,7 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data) ...@@ -2698,9 +2711,7 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data)
#ifdef CONFIG_QUOTA #ifdef CONFIG_QUOTA
/* Release old quota file names */ /* Release old quota file names */
for (i = 0; i < MAXQUOTAS; i++) for (i = 0; i < MAXQUOTAS; i++)
if (old_opts.s_qf_names[i] && kfree(old_opts.s_qf_names[i]);
old_opts.s_qf_names[i] != sbi->s_qf_names[i])
kfree(old_opts.s_qf_names[i]);
#endif #endif
if (enable_quota) if (enable_quota)
dquot_resume(sb, -1); dquot_resume(sb, -1);
...@@ -2714,9 +2725,7 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data) ...@@ -2714,9 +2725,7 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data)
#ifdef CONFIG_QUOTA #ifdef CONFIG_QUOTA
sbi->s_jquota_fmt = old_opts.s_jquota_fmt; sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
for (i = 0; i < MAXQUOTAS; i++) { for (i = 0; i < MAXQUOTAS; i++) {
if (sbi->s_qf_names[i] && kfree(sbi->s_qf_names[i]);
old_opts.s_qf_names[i] != sbi->s_qf_names[i])
kfree(sbi->s_qf_names[i]);
sbi->s_qf_names[i] = old_opts.s_qf_names[i]; sbi->s_qf_names[i] = old_opts.s_qf_names[i];
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment