Author: jpaetzel
Date: Fri Jan  1 17:06:16 2016
New Revision: 293043
URL: https://svnweb.freebsd.org/changeset/base/293043

Log:
  Unset the gss kernel state when gssd exits
  
  When gssd exits it leaves the kernel state set by
  gssd_syscall().  nfsd sees this and waits endlessly
  in an unkillable state for gssd to come back.  If you
  had acidentally started gssd then stopped it, then
  started nfsd you'd be in a bad way until you either
  restarted gssd or rebooted the system.  This change
  fixes that by setting the kernel state to "" when
  gssd exits.
  Reviewed by:  rmacklem
  MFC after:    1 week
  Sponsored by: iXsystems

Modified:
  head/sys/kgssapi/gss_impl.c
  head/usr.sbin/gssd/gssd.c

Modified: head/sys/kgssapi/gss_impl.c
==============================================================================
--- head/sys/kgssapi/gss_impl.c Fri Jan  1 15:48:48 2016        (r293042)
+++ head/sys/kgssapi/gss_impl.c Fri Jan  1 17:06:16 2016        (r293043)
@@ -105,14 +105,17 @@ sys_gssd_syscall(struct thread *td, stru
        if (error)
                return (error);
 
-        sun.sun_family = AF_LOCAL;
-        strcpy(sun.sun_path, path);
-        sun.sun_len = SUN_LEN(&sun);
-        
-        nconf = getnetconfigent("local");
-        cl = clnt_reconnect_create(nconf,
-           (struct sockaddr *) &sun, GSSD, GSSDVERS,
-           RPC_MAXDATASIZE, RPC_MAXDATASIZE);
+       if (path[0] != '\0') {
+               sun.sun_family = AF_LOCAL;
+               strcpy(sun.sun_path, path);
+               sun.sun_len = SUN_LEN(&sun);
+               
+               nconf = getnetconfigent("local");
+               cl = clnt_reconnect_create(nconf,
+                   (struct sockaddr *) &sun, GSSD, GSSDVERS,
+                   RPC_MAXDATASIZE, RPC_MAXDATASIZE);
+       } else
+               cl = NULL;
 
        mtx_lock(&kgss_gssd_lock);
        oldcl = kgss_gssd_handle;

Modified: head/usr.sbin/gssd/gssd.c
==============================================================================
--- head/usr.sbin/gssd/gssd.c   Fri Jan  1 15:48:48 2016        (r293042)
+++ head/usr.sbin/gssd/gssd.c   Fri Jan  1 17:06:16 2016        (r293043)
@@ -254,6 +254,7 @@ main(int argc, char **argv)
 
        gssd_syscall(_PATH_GSSDSOCK);
        svc_run();
+       gssd_syscall("");
 
        return (0);
 }
@@ -1285,6 +1286,7 @@ void gssd_terminate(int sig __unused)
        if (hostbased_initiator_cred != 0)
                unlink(GSSD_CREDENTIAL_CACHE_FILE);
 #endif
+       gssd_syscall("");
        exit(0);
 }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to