ckp_psx.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:4k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: POSIX check password
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 1 August 1988
  13.  * Last Edited: 7 April 1999
  14.  *
  15.  * Copyright 1999 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made available
  24.  * "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. /* Check password
  36.  * Accepts: login passwd struct
  37.  *     password string
  38.  *     argument count
  39.  *     argument vector
  40.  * Returns: passwd struct if password validated, NIL otherwise
  41.  */
  42. struct passwd *checkpw (struct passwd *pw,char *pass,int argc,char *argv[])
  43. {
  44.   char tmp[MAILTMPLEN];
  45.   struct spwd *sp = NIL;
  46.   time_t left;
  47.   time_t now = time (0);
  48.   struct tm *t = gmtime (&now);
  49.   int zone = t->tm_hour * 60 + t->tm_min;
  50.   int julian = t->tm_yday;
  51.   t = localtime (&now); /* get local time now */
  52. /* minus UTC minutes since midnight */
  53.   zone = t->tm_hour * 60 + t->tm_min - zone;
  54.   /* julian can be one of:
  55.    *  36x  local time is December 31, UTC is January 1, offset -24 hours
  56.    *    1  local time is 1 day ahead of UTC, offset +24 hours
  57.    *    0  local time is same day as UTC, no offset
  58.    *   -1  local time is 1 day behind UTC, offset -24 hours
  59.    * -36x  local time is January 1, UTC is December 31, offset +24 hours
  60.    */
  61.   if (julian = t->tm_yday -julian)
  62.     zone += ((julian < 0) == (abs (julian) == 1)) ? -24*60 : 24*60;
  63. /* days since 1/1/1970 local time */
  64.   now = ((now /60) + zone) / (60*24);
  65. /* non-shadow authentication */
  66.   if (!pw->pw_passwd || !pw->pw_passwd[0] ||
  67.       strcmp (pw->pw_passwd,(char *) crypt (pass,pw->pw_passwd))) {
  68.     /* As far as I've been able to determine, here is how the expiration
  69.      * fields in the shadow authentication data work:
  70.      *  lstchg last password change date if non-negative.  If zero, the
  71.      * user can not log in without changing password.
  72.      *  max number of days a password is valid if positive
  73.      *  warn number of days of password expiration warning
  74.      *  expire date account expires if positive
  75.      * The expiration day is the *last* day that the password or account
  76.      * is valid.
  77.      */
  78. /* shadow authentication */
  79.     if ((sp = getspnam (pw->pw_name)) && sp->sp_lstchg &&
  80. ((sp->sp_lstchg < 0) || (sp->sp_max <= 0) ||
  81.  ((sp->sp_lstchg + sp->sp_max) >= now)) &&
  82. ((sp->sp_expire <= 0) || (sp->sp_expire >= now)) &&
  83. !strcmp (sp->sp_pwdp,(char *) crypt (pass,sp->sp_pwdp))) {
  84.       if ((sp->sp_lstchg > 0) && (sp->sp_max > 0) &&
  85.   ((left = (sp->sp_lstchg + sp->sp_max) - now) <= sp->sp_warn)) {
  86. if (left) {
  87.   sprintf (tmp,"[ALERT] Password expires in %ld day(s)",(long) left);
  88.   mm_notify (NIL,tmp,NIL);
  89. }
  90. else mm_notify (NIL,"[ALERT] Password expires today!",WARN);
  91.       }
  92.       if ((sp->sp_expire > 0) && ((left = sp->sp_expire - now) < 28)) {
  93. if (left) {
  94.   sprintf (tmp,"[ALERT] Account expires in %ld day(s)",(long) left);
  95.   mm_notify (NIL,tmp,NIL);
  96. }
  97. else mm_notify (NIL,"[ALERT] Account expires today!",WARN);
  98.       }
  99.       endspent (); /* don't need shadow password data any more */
  100.     }
  101.     else pw = NIL; /* password failed */
  102.   }
  103.   return pw;
  104. }