diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-11-12 09:36:56 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-11-15 09:52:35 -0500 |
commit | be434625437ff3dd4cce83a655226c67943e5ceb (patch) | |
tree | 74168cf7ac8e8f8a9f277abbbd6d9177e8aa9f17 /src/providers/ldap/sdap.c | |
parent | 4f5824cf9b80dede79a6eddbcbb48f4ac75e5de4 (diff) | |
download | sssd-be434625437ff3dd4cce83a655226c67943e5ceb.tar.gz sssd-be434625437ff3dd4cce83a655226c67943e5ceb.tar.bz2 sssd-be434625437ff3dd4cce83a655226c67943e5ceb.zip |
Sanitize ldap attributes in the config file
https://fedorahosted.org/sssd/ticket/458
Diffstat (limited to 'src/providers/ldap/sdap.c')
-rw-r--r-- | src/providers/ldap/sdap.c | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap.c b/src/providers/ldap/sdap.c index 95b63d17..047562f7 100644 --- a/src/providers/ldap/sdap.c +++ b/src/providers/ldap/sdap.c @@ -34,6 +34,7 @@ int sdap_get_map(TALLOC_CTX *memctx, struct sdap_attr_map **_map) { struct sdap_attr_map *map; + char *name; int i, ret; map = talloc_array(memctx, struct sdap_attr_map, num_entries); @@ -50,8 +51,26 @@ int sdap_get_map(TALLOC_CTX *memctx, ret = confdb_get_string(cdb, map, conf_path, map[i].opt_name, map[i].def_name, - &map[i].name); - if ((ret != EOK) || (map[i].def_name && !map[i].name)) { + &name); + if (ret != EOK) { + DEBUG(0, ("Failed to retrieve value for %s\n", map[i].opt_name)); + talloc_zfree(map); + return EINVAL; + } + + if (name) { + ret = sss_filter_sanitize(map, name, &map[i].name); + if (ret != EOK) { + DEBUG(1, ("Could not sanitize attribute [%s]\n", name)); + talloc_zfree(map); + return EINVAL; + } + talloc_zfree(name); + } else { + map[i].name = NULL; + } + + if (map[i].def_name && !map[i].name) { DEBUG(0, ("Failed to retrieve value for %s\n", map[i].opt_name)); if (ret != EOK) { talloc_zfree(map); |