summaryrefslogtreecommitdiffstats
path: root/daemons
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2012-07-26 14:30:39 -0400
committerSimo Sorce <ssorce@redhat.com>2012-07-26 14:30:39 -0400
commit9d853483fe3366b8af28de6b8318720339bde89d (patch)
treeec4c54c4d7e9918ecd192473703c1ffbd4556525 /daemons
parentcc466e98ffd67d8ced2d14734d654f331c477037 (diff)
downloadfreeipa-9d853483fe3366b8af28de6b8318720339bde89d.tar.gz
freeipa-9d853483fe3366b8af28de6b8318720339bde89d.tar.xz
freeipa-9d853483fe3366b8af28de6b8318720339bde89d.zip
Do not check for DNA magic values
The DNA magic value can be arbitrarily changed by admins so we cannot use a const value to check. And we relly do not need to check at all. If the DNA plugin is broken and leaves magic values to reach the post-op stage we have bigger problems. So just simply get rid of this check.
Diffstat (limited to 'daemons')
-rw-r--r--daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.h2
-rw-r--r--daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen_common.c6
2 files changed, 0 insertions, 8 deletions
diff --git a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.h b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.h
index cfb624bde..dec2a6524 100644
--- a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.h
+++ b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen.h
@@ -54,8 +54,6 @@
#define IPANT_USER_ATTRS "ipantuserattrs"
#define IPANT_GROUP_ATTRS "ipantgroupattrs"
-#define IPA_DNA_MAGIC 999
-
#define IPA_PLUGIN_NAME "ipa-sidgen-postop"
#define IPA_SIDGEN_FEATURE_DESC "IPA SIDGEN postop plugin"
#define IPA_SIDGEN_PLUGIN_DESC "Add a SID to newly added or modified " \
diff --git a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen_common.c b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen_common.c
index cbbb2ef18..d7e6ac39a 100644
--- a/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen_common.c
+++ b/daemons/ipa-slapi-plugins/ipa-sidgen/ipa_sidgen_common.c
@@ -479,12 +479,6 @@ int find_sid_for_ldap_entry(struct slapi_entry *entry,
goto done;
}
- if (uid_number == IPA_DNA_MAGIC || gid_number == IPA_DNA_MAGIC) {
- LOG_FATAL("Looks that DNA plugin was not run before.\n");
- ret = LDAP_OPERATIONS_ERROR;
- goto done;
- }
-
if (uid_number >= UINT32_MAX || gid_number >= UINT32_MAX) {
LOG_FATAL("ID value too large.\n");
ret = LDAP_CONSTRAINT_VIOLATION;