aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_atm.c
diff options
context:
space:
mode:
authorVakul Garg <vakul.garg@nxp.com>2018-09-25 16:26:17 +0530
committerDavid S. Miller <davem@davemloft.net>2018-09-25 10:43:01 -0700
commitb85135b595db01353a18ccfeafa9d9ae9028745e (patch)
treee1471ac258124f6f57ab495b76ee8187138097d0 /net/sched/sch_atm.c
parentMerge ra.kernel.org:/pub/scm/linux/kernel/git/davem/net (diff)
downloadlinux-dev-b85135b595db01353a18ccfeafa9d9ae9028745e.tar.xz
linux-dev-b85135b595db01353a18ccfeafa9d9ae9028745e.zip
tls: Fix socket mem accounting error under async encryption
Current async encryption implementation sometimes showed up socket memory accounting error during socket close. This results in kernel warning calltrace. The root cause of the problem is that socket var sk_forward_alloc gets corrupted due to access in sk_mem_charge() and sk_mem_uncharge() being invoked from multiple concurrent contexts in multicore processor. The apis sk_mem_charge() and sk_mem_uncharge() are called from functions alloc_plaintext_sg(), free_sg() etc. It is required that memory accounting apis are called under a socket lock. The plaintext sg data sent for encryption is freed using free_sg() in tls_encryption_done(). It is wrong to call free_sg() from this function. This is because this function may run in irq context. We cannot acquire socket lock in this function. We remove calling of function free_sg() for plaintext data from tls_encryption_done() and defer freeing up of plaintext data to the time when the record is picked up from tx_list and transmitted/freed. When tls_tx_records() gets called, socket is already locked and thus there is no concurrent access problem. Fixes: a42055e8d2c3 ("net/tls: Add support for async encryption") Signed-off-by: Vakul Garg <vakul.garg@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_atm.c')
0 files changed, 0 insertions, 0 deletions