Searched refs:compare_sids (Results 1 – 3 of 3) sorted by relevance
/linux-6.12.1/fs/smb/server/ |
D | smbacl.c | 71 int compare_sids(const struct smb_sid *ctsid, const struct smb_sid *cwsid) in compare_sids() function 446 if (!(compare_sids(&ppace[i]->sid, &sid_unix_NFS_mode))) { in parse_dacl() 450 } else if (!compare_sids(&ppace[i]->sid, pownersid)) { in parse_dacl() 461 } else if (!compare_sids(&ppace[i]->sid, pgrpsid) || in parse_dacl() 473 } else if (!compare_sids(&ppace[i]->sid, &sid_everyone)) { in parse_dacl() 483 } else if (!compare_sids(&ppace[i]->sid, &creator_owner)) { in parse_dacl() 485 } else if (!compare_sids(&ppace[i]->sid, &creator_group)) { in parse_dacl() 487 } else if (!compare_sids(&ppace[i]->sid, &sid_authusers)) { in parse_dacl() 1074 if (!compare_sids(&creator_owner, &parent_aces->sid)) { in smb_inherit_dacl() 1078 } else if (!compare_sids(&creator_group, &parent_aces->sid)) { in smb_inherit_dacl() [all …]
|
D | smbacl.h | 93 int compare_sids(const struct smb_sid *ctsid, const struct smb_sid *cwsid);
|
/linux-6.12.1/fs/smb/client/ |
D | cifsacl.c | 161 compare_sids(const struct smb_sid *ctsid, const struct smb_sid *cwsid) in compare_sids() function 815 (compare_sids(&(ppace[i]->sid), in parse_dacl() 827 if (compare_sids(&(ppace[i]->sid), pownersid) == 0) { in parse_dacl() 833 } else if (compare_sids(&(ppace[i]->sid), pgrpsid) == 0) { in parse_dacl() 839 } else if ((compare_sids(&(ppace[i]->sid), &sid_everyone) == 0) || in parse_dacl() 840 (compare_sids(&(ppace[i]->sid), &sid_authusers) == 0)) { in parse_dacl() 1063 if (pnownersid && compare_sids(&pntace->sid, pownersid) == 0) in replace_sids_and_copy_aces() 1065 else if (pngrpsid && compare_sids(&pntace->sid, pgrpsid) == 0) in replace_sids_and_copy_aces() 1124 if (((compare_sids(&pntace->sid, &sid_unix_NFS_mode) == 0) || in set_chmod_dacl() 1125 (compare_sids(&pntace->sid, pownersid) == 0) || in set_chmod_dacl() [all …]
|