/sssd/src/providers/ldap/ |
H A D | sdap_async_netgroups.c | 53 char **missing = NULL; local 135 attrs, &missing); 137 DEBUG(SSSDBG_CRIT_FAILURE, "Failed to list missing attributes\n"); 146 * We need to ensure if originalMemberNisNetgroup is missing, 147 * memberNisNetgroup is missing too. 149 if (string_in_list(SYSDB_ORIG_NETGROUP_MEMBER, missing, false)) { 150 ret = add_string_to_list(attrs, SYSDB_NETGROUP_MEMBER, &missing); 157 ret = sysdb_add_netgroup(dom, name, NULL, netgroup_attrs, missing,
|
H A D | sdap_async_services.c | 358 char **missing; local 467 attrs, &missing); 478 svc_attrs, missing, cache_timeout, now);
|
H A D | sdap_async_users.c | 139 char **missing = NULL; local 286 * treated as a missing attribute from LDAP and removed. 343 * treated as a missing attribute from LDAP and removed. 502 attrs, &missing); 511 user_attrs, missing, cache_timeout, now);
|
H A D | ldap_common.c | 754 char **missing = NULL; local 777 missing = talloc_array(tmp_ctx, char *, attr_count + 2); 778 if (!missing) { 822 /* Attribute was found, therefore not missing */ 825 /* Attribute could not be found. Add to the missing list */ 826 missing[k] = talloc_steal(missing, sysdb_name); 829 /* Remove originalMemberOf as well if MemberOf is missing */ 831 missing[k] = talloc_strdup(missing, SYSDB_ORIG_MEMBERO [all...] |
H A D | sdap_async_initgroups.c | 45 char **missing; local 62 missing = talloc_array(tmp_ctx, char *, ldap_groups_count+1); 63 if (!missing) { 75 missing[mi] = talloc_strdup(missing, sysdb_groupnames[i]); 78 i, sysdb_groupnames[i], missing[mi]); 87 missing[mi] = NULL; 110 for (i=0; missing[i]; i++) { 121 if (strcmp(groupname, missing[i]) == 0) { 169 groupname, ret == ENOENT ? "missing" [all...] |
H A D | sdap_async_nested_groups.c | 294 "The group's gid was %s\n", ret == ENOENT ? "missing" : "zero"); 354 true, "missing external users"); 563 struct sdap_nested_group_member *missing = NULL; local 590 missing = talloc_zero_array(tmp_ctx, struct sdap_nested_group_member, 592 if (missing == NULL) { 597 /* create list of missing members 680 missing[num_missing].dn = talloc_strdup(missing, dn); 681 if (missing[num_missing].dn == NULL) { 686 missing[num_missin 1004 struct sdap_nested_group_member *missing; member in struct:sdap_nested_group_process_state [all...] |
/sssd/src/ldb_modules/ |
H A D | memberof.c | 88 struct mbof_dn *missing; member in struct:mbof_add_ctx 317 * still missing from the parent list we have provided. 616 if (add_ctx->missing) { 723 /* this target does not exists, save as missing */ 734 if (add_ctx->missing) { 991 mdn->next = add_ctx->missing; 992 add_ctx->missing = mdn; 1013 for (iter = add_ctx->missing; iter; iter = iter->next) { 1034 for (i = 0, iter = add_ctx->missing; iter; iter = iter->next, i++) { 2201 * one and for each missing entr [all...] |
/sssd/src/providers/ipa/ |
H A D | ipa_s2n_exop.c | 1492 "Missing memory context for missing members list.\n"); 1963 const char *missing[] = {NULL, NULL}; local 2205 missing[0] = SYSDB_ORIG_MEMBEROF; 2220 missing[0] == NULL ? NULL 2221 : discard_const(missing),
|
/sssd/src/python/ |
H A D | pyhbac.c | 925 uint32_t missing; local 942 is_valid = hbac_rule_is_complete(rule, &missing); 961 if (!(missing & attr)) continue; 988 "validate() -> (valid, missing)\n\n" 991 "the rule is valid. If it is False, then the set lists all the missing "
|
/sssd/src/db/ |
H A D | sysdb_ops.c | 60 * entries that are missing are ignored on deletes 2372 char **missing, 2417 if (missing) { 2420 missing); 2422 DEBUG(SSSDBG_MINOR_FAILURE, "Could not remove missing attributes\n"); 2675 "Could not remove missing attributes\n"); 3540 "Attribute is missing but this should never happen!\n"); 3754 "Attribute is missing but this should never happen!\n"); 2368 sysdb_add_netgroup(struct sss_domain_info *domain, const char *name, const char *description, struct sysdb_attrs *attrs, char **missing, int cache_timeout, time_t now) argument
|