X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=daemon%2Fmain.c;h=dddd8f14cbc6ab3bf0d16a73198875ada7bab6a5;hb=a8e6bb8183d91e91e4244d55cc24829db4ce307d;hp=025c5a291ff8d2e66c12c1c5c5736a21ad680bcf;hpb=dae3c8b486e3283767205fd78cdf4eb1840c4ef6;p=doldaconnect.git diff --git a/daemon/main.c b/daemon/main.c index 025c5a2..dddd8f1 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -43,6 +43,10 @@ #include "sysevents.h" #include "auth.h" +#ifdef HAVE_KEYUTILS +#include +#endif + struct module *modchain = NULL; static struct timer *timers = NULL; static struct child *children = NULL; @@ -303,6 +307,10 @@ pid_t forksess(uid_t user, struct authhandle *auth, void (*ccbfunc)(pid_t, int, setpgrp(); signal(SIGHUP, SIG_IGN); errno = 0; +#ifdef HAVE_KEYUTILS + keyctl_join_session_keyring(NULL); + keyctl_chown(KEY_SPEC_SESSION_KEYRING, pwent->pw_uid, pwent->pw_gid); +#endif if((authopensess(auth)) != AUTH_SUCCESS) { flog(LOG_WARNING, "could not open session for user %s: %s", pwent->pw_name, (errno == 0)?"Unknown error - should be logged above":strerror(errno));