Re: [PATCH] binder: create node flag to request sender's security context

2019-01-14 Thread Dan Carpenter
Hi Todd, url: https://github.com/0day-ci/linux/commits/Todd-Kjos/binder-create-node-flag-to-request-sender-s-security-context/20190111-095225 New smatch warnings: drivers/android/binder.c:4364 binder_thread_read() warn: check that 'tr.secctx' doesn't leak information #

Re: [PATCH] binder: create node flag to request sender's security context

2019-01-11 Thread Greg KH
On Thu, Jan 10, 2019 at 10:21:00AM -0800, Todd Kjos wrote: > To allow servers to verify client identity, allow a node > flag to be set that causes the sender's security context > to be delivered with the transaction. The BR_TRANSACTION > command is extended in BR_TRANSACTION_SEC_CTX to > contain a

Re: [PATCH] binder: create node flag to request sender's security context

2019-01-10 Thread kbuild test robot
Hi Todd, I love your patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v5.0-rc1 next-20190110] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[PATCH] binder: create node flag to request sender's security context

2019-01-10 Thread Todd Kjos
To allow servers to verify client identity, allow a node flag to be set that causes the sender's security context to be delivered with the transaction. The BR_TRANSACTION command is extended in BR_TRANSACTION_SEC_CTX to contain a pointer to the security context string. Signed-off-by: Todd Kjos