Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Tue, 22 Apr 2003 00:23:53 +0200 From: Corinna Vinschen To: cygwin AT cygwin DOT com Subject: Re: proftpd (was: Re: inetutils ftpd fcntl(F_SETOWN) failure message suppression patch) Message-ID: <20030421222353.GF11137@cygbert.vinschen.de> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <20030103133222 DOT GA1712 AT tishler DOT net> <20030107150428 DOT A14974 AT cygbert DOT vinschen DOT de> <20030109164436 DOT GA1064 AT tishler DOT net> <20030109164943 DOT GA3100 AT redhat DOT com> <20030109182038 DOT G21839 AT cygbert DOT vinschen DOT de> <20030113143459 DOT GE1012 AT tishler DOT net> <176380637637 DOT 20030421225541 AT familiehaase DOT de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <176380637637.20030421225541@familiehaase.de> User-Agent: Mutt/1.4.1i On Mon, Apr 21, 2003 at 10:55:41PM +0200, Gerrit P. Haase wrote: > Yes, I'm interested. > It seems that there is a problem with the login. > I could compile the current cvs source, the server runs, but ... > I cannot login. > [...] > +#ifdef __CYGWIN__ > + /* We have to do special Windows NT voodoo with Cygwin in order to be > + * able to switch UID/GID. More info at > + * http://cygwin.com/cygwin-ug-net/ntsec.html#NTSEC-SETUID > + */ > + if (is_winnt) { > + HANDLE hToken = cygwin_logon_user(pw, pass); > + > + if (hToken == INVALID_HANDLE_VALUE) > + goto auth_failure; > + cygwin_set_impersonation_token(hToken); > + } > +#endif /* __CYGWIN__ */ > + Actually I'm missing something like an `else' here. The authentication on NT/2K/XP is done *instead* of making any authentication like calling crypt() to verify the password or calling some PAM functions. You must make sure that on NT/2K/XP that stuff doesn't get called. On 9x/Me OTOH you still must use crypt() to verify the password. If you want to see a really simple example, have a look into the login(1) source -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Developer mailto:cygwin AT cygwin DOT com Red Hat, Inc. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/