diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-22 13:11:29 -0400 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-09-23 07:33:31 -0400 |
commit | 87b8670b2749d02ffdc6c06506ac692b09db5be2 (patch) | |
tree | ead3f62f72c3522d3dc7703cd9f009aabc86a023 /server/confdb | |
parent | 091df02f920b5f5a658962d3add6f965d84375ac (diff) | |
download | sssd-87b8670b2749d02ffdc6c06506ac692b09db5be2.tar.gz sssd-87b8670b2749d02ffdc6c06506ac692b09db5be2.tar.bz2 sssd-87b8670b2749d02ffdc6c06506ac692b09db5be2.zip |
Revert "Use syslog for logging error conditions in SSSD"
This reverts commit 8c50bd085c0efe5fde354deee2c8118887aae29d.
Amended: commit 1016af2b1b97ad4290ccce8fa462cc7e3c191b2e also made
use of the SYSLOG_ERROR() macro, so those portions of that code
also needed to be reverted.
Diffstat (limited to 'server/confdb')
-rw-r--r-- | server/confdb/confdb.c | 46 | ||||
-rw-r--r-- | server/confdb/confdb_setup.c | 24 |
2 files changed, 35 insertions, 35 deletions
diff --git a/server/confdb/confdb.c b/server/confdb/confdb.c index ffd839db..bb1fc2b2 100644 --- a/server/confdb/confdb.c +++ b/server/confdb/confdb.c @@ -665,15 +665,15 @@ int confdb_init(TALLOC_CTX *mem_ctx, ret = ldb_set_debug(cdb->ldb, ldb_debug_messages, NULL); if (ret != LDB_SUCCESS) { - SYSLOG_ERROR("Could not set up debug fn.\n"); + DEBUG(0,("Could not set up debug fn.\n")); talloc_free(cdb); return EIO; } ret = ldb_connect(cdb->ldb, confdb_location, 0, NULL); if (ret != LDB_SUCCESS) { - SYSLOG_ERROR("Unable to open config database [%s]\n", - confdb_location); + DEBUG(0, ("Unable to open config database [%s]\n", + confdb_location)); talloc_free(cdb); return EIO; } @@ -785,7 +785,7 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, } if (res->count != 1) { - SYSLOG_ERROR("Unknown domain [%s]\n", name); + DEBUG(0, ("Unknown domain [%s]\n", name)); ret = ENOENT; goto done; } @@ -798,7 +798,7 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, tmp = ldb_msg_find_attr_as_string(res->msgs[0], "cn", NULL); if (!tmp) { - SYSLOG_ERROR("Invalid configuration entry, fatal error!\n"); + DEBUG(0, ("Invalid configuration entry, fatal error!\n")); ret = EINVAL; goto done; } @@ -817,8 +817,8 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, } } else { - SYSLOG_ERROR("Domain [%s] does not specify a provider, disabling!\n", - domain->name); + DEBUG(0, ("Domain [%s] does not specify a provider, disabling!\n", + domain->name)); ret = EINVAL; goto done; } @@ -832,15 +832,15 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, * superceeded. */ val = ldb_msg_find_attr_as_int(res->msgs[0], CONFDB_ENUMERATE, 0); if (val > 0) { /* ok there was a number in here */ - SYSLOG_ERROR("Warning: enumeration parameter in %s still uses integers! " - "Enumeration is now a boolean and takes true/false values. " - "Interpreting as true\n", domain->name); + DEBUG(0, ("Warning: enumeration parameter in %s still uses integers! " + "Enumeration is now a boolean and takes true/false values. " + "Interpreting as true\n", domain->name)); domain->enumerate = true; } else { /* assume the new format */ ret = get_entry_as_bool(res->msgs[0], &domain->enumerate, CONFDB_ENUMERATE, 0); if(ret != EOK) { - SYSLOG_ERROR("Invalid value for %s\n", CONFDB_ENUMERATE); + DEBUG(0, ("Invalid value for %s\n", CONFDB_ENUMERATE)); goto done; } } @@ -851,7 +851,7 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, /* Determine if this is domain uses MPG */ ret = get_entry_as_bool(res->msgs[0], &domain->mpg, CONFDB_MPG, 0); if(ret != EOK) { - SYSLOG_ERROR("Invalid value for %s\n", CONFDB_MPG); + DEBUG(0, ("Invalid value for %s\n", CONFDB_MPG)); goto done; } @@ -864,14 +864,14 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, * in NSS interfaces */ ret = get_entry_as_bool(res->msgs[0], &domain->fqnames, CONFDB_FQ, 0); if(ret != EOK) { - SYSLOG_ERROR("Invalid value for %s\n", CONFDB_FQ); + DEBUG(0, ("Invalid value for %s\n", CONFDB_FQ)); goto done; } ret = get_entry_as_uint32(res->msgs[0], &domain->id_min, CONFDB_MINID, SSSD_MIN_ID); if (ret != EOK) { - SYSLOG_ERROR("Invalid value for minId\n"); + DEBUG(0, ("Invalid value for minId\n")); ret = EINVAL; goto done; } @@ -879,13 +879,13 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, ret = get_entry_as_uint32(res->msgs[0], &domain->id_max, CONFDB_MAXID, 0); if (ret != EOK) { - SYSLOG_ERROR("Invalid value for maxId\n"); + DEBUG(0, ("Invalid value for maxId\n")); ret = EINVAL; goto done; } if (domain->id_max && (domain->id_max < domain->id_min)) { - SYSLOG_ERROR("Invalid domain range\n"); + DEBUG(0, ("Invalid domain range\n")); ret = EINVAL; goto done; } @@ -894,14 +894,14 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb, ret = get_entry_as_bool(res->msgs[0], &domain->cache_credentials, CONFDB_CACHE_CREDS, 0); if(ret != EOK) { - SYSLOG_ERROR("Invalid value for %s\n", CONFDB_CACHE_CREDS); + DEBUG(0, ("Invalid value for %s\n", CONFDB_CACHE_CREDS)); goto done; } ret = get_entry_as_bool(res->msgs[0], &domain->legacy_passwords, CONFDB_LEGACY_PASS, 0); if(ret != EOK) { - SYSLOG_ERROR("Invalid value for %s\n", CONFDB_LEGACY_PASS); + DEBUG(0, ("Invalid value for %s\n", CONFDB_LEGACY_PASS)); goto done; } @@ -932,19 +932,19 @@ int confdb_get_domains(struct confdb_ctx *cdb, ret = confdb_get_string_as_list(cdb, tmp_ctx, CONFDB_DOMAINS_PATH, "domains", &domlist); if (ret == ENOENT) { - SYSLOG_ERROR("No domains configured, fatal error!\n"); + DEBUG(0, ("No domains configured, fatal error!\n")); goto done; } if (ret != EOK ) { - SYSLOG_ERROR("Fatal error retrieving domains list!\n"); + DEBUG(0, ("Fatal error retrieving domains list!\n")); goto done; } for (i = 0; domlist[i]; i++) { ret = confdb_get_domain_internal(cdb, cdb, domlist[i], &domain); if (ret) { - SYSLOG_ERROR("Error (%d [%s]) retrieving domain [%s], skipping!\n", - ret, strerror(ret), domlist[i]); + DEBUG(0, ("Error (%d [%s]) retrieving domain [%s], skipping!\n", + ret, strerror(ret), domlist[i])); ret = EOK; continue; } @@ -959,7 +959,7 @@ int confdb_get_domains(struct confdb_ctx *cdb, } if (cdb->doms == NULL) { - SYSLOG_ERROR("No properly configured domains, fatal error!\n"); + DEBUG(0, ("No properly configured domains, fatal error!\n")); ret = ENOENT; goto done; } diff --git a/server/confdb/confdb_setup.c b/server/confdb/confdb_setup.c index 3c2cb715..00bba7f1 100644 --- a/server/confdb/confdb_setup.c +++ b/server/confdb/confdb_setup.c @@ -110,8 +110,8 @@ int confdb_create_base(struct confdb_ctx *cdb) while ((ldif = ldb_ldif_read_string(cdb->ldb, &base_ldif))) { ret = ldb_add(cdb->ldb, ldif->msg); if (ret != LDB_SUCCESS) { - SYSLOG_ERROR("Failed to initialize DB (%d,[%s]), aborting!\n", - ret, ldb_errstring(cdb->ldb)); + DEBUG(0, ("Failed to initialize DB (%d,[%s]), aborting!\n", + ret, ldb_errstring(cdb->ldb))); return EIO; } ldb_ldif_read_free(cdb->ldb, ldif); @@ -279,13 +279,13 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) /* ok, first of all stat conf file */ ret = stat(config_file, &cstat); if (ret != 0) { - SYSLOG_ERROR("Unable to stat config file [%s]! (%d [%s])\n", - config_file, errno, strerror(errno)); + DEBUG(0, ("Unable to stat config file [%s]! (%d [%s])\n", + config_file, errno, strerror(errno))); return errno; } ret = snprintf(timestr, 21, "%llu", (long long unsigned)cstat.st_mtime); if (ret <= 0 || ret >= 21) { - SYSLOG_ERROR("Failed to convert time_t to string ??\n"); + DEBUG(0, ("Failed to convert time_t to string ??\n")); return errno ? errno: EFAULT; } @@ -303,7 +303,7 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) /* Set up a transaction to replace the configuration */ ret = ldb_transaction_start(cdb->ldb); if (ret != LDB_SUCCESS) { - SYSLOG_ERROR("Failed to start a transaction for updating the configuration\n"); + DEBUG(0, ("Failed to start a transaction for updating the configuration\n")); talloc_free(tmp_ctx); return sysdb_error_to_errno(ret); } @@ -311,7 +311,7 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) /* Purge existing database */ ret = confdb_purge(cdb); if (ret != EOK) { - SYSLOG_ERROR("Could not purge existing configuration\n"); + DEBUG(0, ("Could not purge existing configuration\n")); goto done; } @@ -319,8 +319,8 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) ret = config_from_file("sssd", config_file, &sssd_config, INI_STOP_ON_ANY, &error_list); if (ret != EOK) { - SYSLOG_ERROR("Parse error reading configuration file [%s]\n", - config_file); + DEBUG(0, ("Parse error reading configuration file [%s]\n", + config_file)); print_file_parsing_errors(stderr, error_list); free_ini_config_errors(error_list); free_ini_config(sssd_config); @@ -330,7 +330,7 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) ret = confdb_create_ldif(tmp_ctx, sssd_config, &config_ldif); free_ini_config(sssd_config); if (ret != EOK) { - SYSLOG_ERROR("Could not create LDIF for confdb\n"); + DEBUG(0, ("Could not create LDIF for confdb\n")); goto done; } @@ -340,8 +340,8 @@ int confdb_init_db(const char *config_file, struct confdb_ctx *cdb) while ((ldif = ldb_ldif_read_string(cdb->ldb, (const char **)&config_ldif))) { ret = ldb_add(cdb->ldb, ldif->msg); if (ret != LDB_SUCCESS) { - SYSLOG_ERROR("Failed to initialize DB (%d,[%s]), aborting!\n", - ret, ldb_errstring(cdb->ldb)); + DEBUG(0, ("Failed to initialize DB (%d,[%s]), aborting!\n", + ret, ldb_errstring(cdb->ldb))); ret = EIO; goto done; } |