authenticate.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: authenticate.c,v 1.8 1999/09/27 12:24:49 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. #include "config.h"
  28. #include <stdio.h>
  29. #include <string.h>
  30. #include "support/authuser.h"
  31. #include "authenticate.h"
  32. #include "proto.h"
  33. #define AUTHNAMESIZE 100
  34. char authuser[AUTHNAMESIZE];
  35. int authenticated;
  36. extern int disable_rfc931;
  37. extern unsigned int timeout_rfc931;
  38. /*
  39.  * Ideally more authentication schemes would be called from here, with the
  40.  * strongest called first.  One possible double-check would be to verify that
  41.  * the results of all authentication calls (returning identical data!) are
  42.  * checked against each other.
  43.  */
  44. int wu_authenticate(void)
  45. {
  46.     char *user;
  47. #if USE_A_RFC931
  48.     unsigned long in;
  49.     unsigned short local, remote;
  50. #endif /* USE_A_RFC931 */
  51.     authenticated = 0; /* this is a bitmask, one bit per method */
  52.     user = "*";
  53. #if USE_A_RFC931
  54.     if (disable_rfc931 || (timeout_rfc931 == 0))
  55. user = "*";
  56.     else if (auth_fd(0, &in, &local, &remote) == -1)
  57. user = "?"; /* getpeername/getsockname failure */
  58.     else {
  59. if (!(user = auth_tcpuser(in, local, remote)))
  60.     user = "*"; /* remote host doesn't support RFC 931 */
  61. else
  62.     authenticated |= A_RFC931;
  63.     }
  64. #endif /* USE_A_RFC931 */
  65.     strncpy(authuser, user, sizeof(authuser));
  66.     authuser[AUTHNAMESIZE - 1] = '';
  67.     return (0);
  68. }