summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5/krb5_common.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-05-27 09:48:57 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-05-27 14:44:13 -0400
commit6e64fe7158875dc5e7f25c45b234cc4a3c584644 (patch)
tree75025042846dc24ee0052a8e10affa756ad6f1f4 /src/providers/krb5/krb5_common.c
parent35c70c767d366fc82a50f6f29793ab7f1477f79d (diff)
downloadsssd-6e64fe7158875dc5e7f25c45b234cc4a3c584644.tar.gz
sssd-6e64fe7158875dc5e7f25c45b234cc4a3c584644.tar.xz
sssd-6e64fe7158875dc5e7f25c45b234cc4a3c584644.zip
Revert "Create kdcinfo and kpasswdinfo file at startup"
This reverts commit f3c31d11bf365eb6a79c4f698667915a4c81eeb7.
Diffstat (limited to 'src/providers/krb5/krb5_common.c')
-rw-r--r--src/providers/krb5/krb5_common.c41
1 files changed, 1 insertions, 40 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index da7627ce3..f038557d9 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -31,8 +31,6 @@
#include "providers/dp_backend.h"
#include "providers/krb5/krb5_common.h"
-#define DUMMY_ADDRESS "255.255.255.255"
-
struct dp_option default_krb5_opts[] = {
{ "krb5_kdcip", DP_OPT_STRING, NULL_STRING, NULL_STRING },
{ "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING },
@@ -290,6 +288,7 @@ static void krb5_resolve_callback(void *private_data, struct fo_server *server)
return;
}
+
int krb5_service_init(TALLOC_CTX *memctx, struct be_ctx *ctx,
const char *service_name, const char *servers,
const char *realm, struct krb5_service **_service)
@@ -304,7 +303,6 @@ int krb5_service_init(TALLOC_CTX *memctx, struct be_ctx *ctx,
char *server_spec;
char *endptr;
struct servent *servent;
- struct tevent_req *req;
tmp_ctx = talloc_new(memctx);
if (!tmp_ctx) {
@@ -427,14 +425,6 @@ int krb5_service_init(TALLOC_CTX *memctx, struct be_ctx *ctx,
goto done;
}
- req = be_resolve_server_send(memctx, ctx->ev, ctx, service_name);
- if (req == NULL) {
- DEBUG(1, ("be_resolve_server_send failed.\n"));
- ret = ENOMEM;
- goto done;
- }
- tevent_req_set_callback(req, krb5_init_resolve_done, service);
-
ret = EOK;
done:
@@ -485,32 +475,3 @@ void krb5_finalize(struct tevent_context *ev,
sig_term(signum);
}
-
-void krb5_init_resolve_done(struct tevent_req *req)
-{
- struct krb5_service *krb5_service = tevent_req_callback_data(req,
- struct krb5_service);
- int ret;
- struct fo_server *srv;
- const char *service_name;
-
- ret = be_resolve_server_recv(req, &srv);
- talloc_zfree(req);
- if (ret) {
- DEBUG(1, ("be_resolve_server request failed [%d][%s]. "
- "Creating dummy info file.\n", ret, strerror(ret)));
-
- service_name = krb5_service->name;
- if (strcmp(service_name, "IPA") == 0) {
- service_name = SSS_KRB5KDC_FO_SRV;
- }
- ret = write_krb5info_file(krb5_service->realm, DUMMY_ADDRESS,
- service_name);
- if (ret != EOK) {
- DEBUG(2, ("write_krb5info_file failed, "
- "authentication might fail.\n"));
- }
- }
-
- return;
-}