mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 23:23:53 +02:00
smackfs: use __GFP_NOFAIL for smk_cipso_doi()
[ Upstream commit f91488ee15 ]
syzbot is reporting kernel panic at smk_cipso_doi() due to memory
allocation fault injection [1]. The reason for need to use panic() was
not explained. But since no fix was proposed for 18 months, for now
let's use __GFP_NOFAIL for utilizing syzbot resource on other bugs.
Link: https://syzkaller.appspot.com/bug?extid=89731ccb6fec15ce1c22 [1]
Reported-by: syzbot <syzbot+89731ccb6fec15ce1c22@syzkaller.appspotmail.com>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
32a9a8fdba
commit
c11aecbe05
|
|
@ -693,9 +693,7 @@ static void smk_cipso_doi(void)
|
||||||
printk(KERN_WARNING "%s:%d remove rc = %d\n",
|
printk(KERN_WARNING "%s:%d remove rc = %d\n",
|
||||||
__func__, __LINE__, rc);
|
__func__, __LINE__, rc);
|
||||||
|
|
||||||
doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL);
|
doip = kmalloc(sizeof(struct cipso_v4_doi), GFP_KERNEL | __GFP_NOFAIL);
|
||||||
if (doip == NULL)
|
|
||||||
panic("smack: Failed to initialize cipso DOI.\n");
|
|
||||||
doip->map.std = NULL;
|
doip->map.std = NULL;
|
||||||
doip->doi = smk_cipso_doi_value;
|
doip->doi = smk_cipso_doi_value;
|
||||||
doip->type = CIPSO_V4_MAP_PASS;
|
doip->type = CIPSO_V4_MAP_PASS;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user