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

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: DCE 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: 2 December 1997
  14.  *
  15.  * Copyright 1997 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. #include <dce/rpc.h>
  43. #include <dce/sec_login.h>
  44. struct passwd *checkpw (struct passwd *pw,char *pass,int argc,char *argv[])
  45. {
  46.   sec_passwd_rec_t pwr;
  47.   sec_login_handle_t lhdl;
  48.   boolean32 rstpwd;
  49.   sec_login_auth_src_t asrc;
  50.   error_status_t status;
  51.   FILE *fd;
  52. /* easy case */
  53.   if (!strcmp (pw->pw_passwd,(char *) crypt (pass,pw->pw_passwd))) return pw;
  54. /* try DCE password cache file */
  55.   if (fd = fopen (PASSWD_OVERRIDE, "r")) {
  56.     char *usr = cpystr (pw->pw_name);
  57.     while ((pw = fgetpwent (fd)) && strcmp (usr,pw->pw_name));
  58.     fclose (fd); /* finished with cache file */
  59.     if (pw && pw->pw_uid && /* validate cached password */
  60. !strcmp (pw->pw_passwd,(char *) crypt (pass,pw->pw_passwd))) {
  61.       fs_give ((void **) &usr);
  62.       return pw;
  63.     }
  64.     if (!pw) pw = getpwnam (usr);
  65.     fs_give ((void **) &usr);
  66.   }
  67.   if (pw) { /* try S-L-O-W DCE... */
  68.     sec_login_setup_identity ((unsigned_char_p_t) pw->pw_name,
  69.       sec_login_no_flags,&lhdl,&status);
  70.     if (status == error_status_ok) {
  71.       pwr.key.tagged_union.plain = (idl_char *) pass;
  72.       pwr.key.key_type = sec_passwd_plain;
  73.       pwr.pepper = NIL;
  74.       pwr.version_number = sec_passwd_c_version_none;
  75. /* validate password with login context */
  76.       sec_login_validate_identity (lhdl,&pwr,&rstpwd,&asrc,&status);
  77.       if (!rstpwd && (asrc == sec_login_auth_src_network) &&
  78.   (status == error_status_ok)) {
  79. sec_login_purge_context (&lhdl,&status);
  80. if (status == error_status_ok) return pw;
  81.       }
  82.     }
  83.   }
  84.   return NIL; /* password validation failed */
  85. }