]> git.pond.sub.org Git - empserver/blob - src/client/getpass.c
517e37740bf27ba6370015de44f8cdca433dab8f
[empserver] / src / client / getpass.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2020, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  getpass.c: Get a password
28  *
29  *  Known contributors to this file:
30  *     Markus Armbruster, 2009-2020
31  */
32
33 #include <config.h>
34
35 #ifdef HAVE_GETPASS
36 #include <unistd.h>
37 #else
38 #include <string.h>
39 #ifdef _WIN32
40 #include <windows.h>
41 #endif
42 #endif
43 #include "misc.h"
44
45 char *
46 get_password(const char *prompt)
47 {
48 #ifdef HAVE_GETPASS
49     return getpass(prompt);
50 #else
51     static char buf[128];
52     char *p;
53     size_t len;
54 #ifdef _WIN32
55     DWORD mode;
56     HANDLE input_handle = GetStdHandle(STD_INPUT_HANDLE);
57
58     if (GetConsoleMode(input_handle, &mode))
59         SetConsoleMode(input_handle, mode & ~ENABLE_ECHO_INPUT);
60     else
61 #endif
62         printf("Note: your input is echoed to the screen\n");
63     printf("%s", prompt);
64     fflush(stdout);
65     p = fgets(buf, sizeof(buf), stdin);
66 #ifdef _WIN32
67     if (GetConsoleMode(input_handle, &mode))
68         SetConsoleMode(input_handle, mode | ENABLE_ECHO_INPUT);
69 #endif
70     if (!p)
71         return NULL;
72     len = strlen(p);
73     if (p[len - 1] == '\n')
74         p[len - 1] = 0;
75     return p;
76 #endif  /* !HAVE_GETPASS */
77 }