<div dir="ltr"><div>In security/security.c (see here:<a href="https://github.com/torvalds/linux/blob/835c92d43b29eb354abdbd5475308a474d7efdfa/security/security.c">https://github.com/torvalds/linux/blob/835c92d43b29eb354abdbd5475308a474d7efdfa/security/security.c</a>)</div><div><br></div><div>Looking at this:</div><div><br></div><div>int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)</div><div>{</div><div>    if (unlikely(IS_PRIVATE(inode)))</div><div>        return 0;</div><div>    return call_int_hook(inode_listsecurity, 0, inode, buffer, buffer_size);</div><div>}</div><div>One would expect all stacked security module to be called. However, when looking at this:</div><div><br></div><div>#define call_int_hook(FUNC, IRC, ...) ({            \</div><div>    int RC = IRC;                       \</div><div>    do {                            \</div><div>        struct security_hook_list *P;           \</div><div>                                \</div><div>        list_for_each_entry(P, &amp;security_hook_heads.FUNC, list) { \</div><div>            RC = P-&gt;hook.FUNC(__VA_ARGS__);     \</div><div>            if (RC != 0)                \</div><div>                break;              \</div><div>        }                       \</div><div>    } while (0);                        \</div><div>    RC;                         \</div><div>})</div><div>If one of the module return a non-zero value, the other are not called. That means that the list of security of xattr is not built (or rather that it only contains the first module being called), as the lenght of inserted element is returned. Similarly for setsecurity and getsecurity, it seems that only one module will be called as if the given module does not support the security xattr, it returns -EOPNOTSUPP (instead I believe the next module being called, until one supporting the attribute is met).</div><div><br></div><div>What is the rational here? I could change the code to support multiple security xattr, but don&#39;t want to do so before I understand why it was done like this. Any help is welcome.</div><div class="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><table style="margin:0px;padding:0px;border:0px;font-size:13px;border-collapse:collapse;color:rgb(36,39,41);font-family:arial,&quot;helvetica neue&quot;,helvetica,sans-serif;line-height:16.9px"><tbody style="margin:0px;padding:0px;border:0px"><tr style="margin:0px;padding:0px;border:0px"><td class="gmail-votecell" style="padding:0px 15px 0px 0px;border:0px;vertical-align:top"><br></td><td class="gmail-postcell" style="padding:0px;border:0px;vertical-align:top"><br></td></tr></tbody></table></div></div></div></div></div>
</div>