Am Dienstag, 21. Juli 2020, 14:55:14 CEST schrieb Elena Petrova: Hi Elena, > > > +#ifdef CONFIG_CRYPTO_CAVS_DRBG > > > +static int rng_setentropy(void *private, const u8 *entropy, unsigned > > > int > > > len) +{ > > > + struct rng_parent_ctx *pctx = private; > > > + u8 *kentropy = NULL; > > > + > > > + if (!capable(CAP_SYS_ADMIN)) > > > + return -EPERM; > > > + > > > + if (pctx->entropy) > > > + return -EINVAL; > > > + > > > + if (len > MAXSIZE) > > > + len = MAXSIZE; > > > + > > > + if (len) { > > > + kentropy = memdup_user(entropy, len); > > > + if (IS_ERR(kentropy)) > > > + return PTR_ERR(kentropy); > > > + } > > > + > > > + crypto_rng_alg(pctx->drng)->set_ent(pctx->drng, kentropy, len); > > > + pctx->entropy = kentropy; > > > > Why do you need to keep kentropy around? For the check above whether > > entropy was set, wouldn't a boolean suffice? > > I need to keep the pointer to free it after use. Unlike the setting of > the key, DRBG saves the entropy pointer in one of its internal > structures, but doesn't do any memory > management. I had only two ideas on how to prevent memory leaks: > either change drbg code to deal with the memory, or save the pointer > somewhere inside the socket. I opted for the latter. But if you know a > better approach I'm happy to rework my code accordingly. I was thinking of calling crypto_rng_alg(pctx->drng)->seed() directly after set_ent. This call performs a DRBG instantatiate where the entropy buffer is used. See crypto_drbg_reset_test for the approach. But maybe you are right, the test "entropy" buffer inside the DRBG currently cannot be reset. So, for sanity purposes, you need to keep it around. Ciao Stephan