]> git.sur5r.net Git - openldap/blob - libraries/liblutil/getpass.c
add ifdefs for SASL_GSS_CREDS to accomodate ancient Cyrus SASL
[openldap] / libraries / liblutil / getpass.c
1 /* getpass.c -- get password from user */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2010 The OpenLDAP Foundation.
6  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* Portions Copyright (c) 1992, 1993  Regents of the University of Michigan.
18  * All rights reserved.
19  *
20  * Redistribution and use in source and binary forms are permitted
21  * provided that this notice is preserved and that due credit is given
22  * to the University of Michigan at Ann Arbor. The name of the University
23  * may not be used to endorse or promote products derived from this
24  * software without specific prior written permission. This software
25  * is provided ``as is'' without express or implied warranty.
26  */
27 /* This work was originally developed by the University of Michigan
28  * and distributed as part of U-MICH LDAP.  It was adapted for use in
29  * -llutil by Kurt D. Zeilenga and subsequently rewritten by Howard Chu.
30  */
31
32 #include "portable.h"
33
34 #include <stdio.h>
35
36 #include <ac/stdlib.h>
37
38 #include <ac/ctype.h>
39 #include <ac/signal.h>
40 #include <ac/string.h>
41 #include <ac/termios.h>
42 #include <ac/time.h>
43 #include <ac/unistd.h>
44
45 #ifndef HAVE_GETPASSPHRASE
46
47 #ifdef HAVE_FCNTL_H
48 #include <fcntl.h>
49 #endif
50
51 #ifdef HAVE_CONIO_H
52 #include <conio.h>
53 #endif
54
55 #include <lber.h>
56 #include <ldap.h>
57
58 #include "ldap_defaults.h"
59
60 #define PBUF    512
61
62 #ifdef HAVE_WINSOCK
63 #define TTY "con:"
64 #else
65 #define TTY "/dev/tty"
66 #endif
67
68 char *
69 lutil_getpass( const char *prompt )
70 {
71         static char pbuf[PBUF];
72         FILE *fi;
73         int c;
74         unsigned i;
75 #if defined(HAVE_TERMIOS_H) || defined(HAVE_SGTTY_H)
76         TERMIO_TYPE ttyb;
77         TERMFLAG_TYPE flags;
78         RETSIGTYPE (*sig)( int sig );
79 #endif
80
81         if( prompt == NULL ) prompt = _("Password: ");
82
83 #ifdef DEBUG
84         if (debug & D_TRACE)
85                 printf("->getpass(%s)\n", prompt);
86 #endif
87
88 #if defined(HAVE_TERMIOS_H) || defined(HAVE_SGTTY_H)
89         if ((fi = fopen(TTY, "r")) == NULL)
90                 fi = stdin;
91         else
92                 setbuf(fi, (char *)NULL);
93         if (fi != stdin) {
94                 if (GETATTR(fileno(fi), &ttyb) < 0)
95                         perror("GETATTR");
96                 sig = SIGNAL (SIGINT, SIG_IGN);
97                 flags = GETFLAGS( ttyb );
98                 SETFLAGS( ttyb, flags & ~ECHO );
99                 if (SETATTR(fileno(fi), &ttyb) < 0)
100                         perror("SETATTR");
101         }
102 #else
103         fi = stdin;
104 #endif
105         fprintf(stdout, "%s", prompt); 
106         fflush(stdout);
107         i = 0;
108         while ( (c = getc(fi)) != EOF && c != '\n' && c != '\r' )
109                 if ( i < (sizeof(pbuf)-1) )
110                         pbuf[i++] = c;
111 #if defined(HAVE_TERMIOS_H) || defined(HAVE_SGTTY_H)
112         /* tidy up */
113         if (fi != stdin) {
114                 fprintf(stdout, "\n"); 
115                 fflush(stdout);
116                 SETFLAGS( ttyb, flags );
117                 if (SETATTR(fileno(fi), &ttyb) < 0)
118                         perror("SETATTR");
119                 (void) SIGNAL (SIGINT, sig);
120                 (void) fclose(fi);
121         }
122 #endif
123         if ( c == EOF )
124                 return( NULL );
125         pbuf[i] = '\0';
126         return (pbuf);
127 }
128
129 #endif /* !NEED_GETPASSPHRASE */