During UDS connection check, both sides are checked for write access to
the other side. But only the first check is performed with audit support.
The second one didn't produce any audit logs. This simple patch fixes that.
Signed-off-by: Rafal Krypa <r.krypa@samsung.com>
(cherry-picked from upstream
138a868f009bfca8633032cdb91e2b02e292658b)
if (rc == 0) {
okp = osp->smk_out;
skp = ssp->smk_in;
- rc = smk_access(okp, skp, MAY_WRITE, NULL);
+ rc = smk_access(okp, skp, MAY_WRITE, &ad);
rc = smk_bu_note("UDS connect", okp, skp,
MAY_WRITE, rc);
}