]> git.pond.sub.org Git - empserver/blob - src/client/login.c
Update copyright notice
[empserver] / src / client / login.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, 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  *  login.c: Log into an empire server
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1989
31  *     Steve McClure, 1998
32  *     Markus Armbruster, 2004-2009
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <unistd.h>
42 #ifdef _WIN32
43 #include <windows.h>
44 #endif
45 #include "misc.h"
46 #include "proto.h"
47
48 #ifndef HAVE_GETPASS
49 #define getpass ersatz_getpass
50 static char *
51 ersatz_getpass(char *prompt)
52 {
53     static char buf[128];
54     char *p;
55     size_t len;
56 #ifdef _WIN32
57     DWORD mode;
58     HANDLE input_handle = GetStdHandle(STD_INPUT_HANDLE);
59
60     if (GetConsoleMode(input_handle, &mode))
61         SetConsoleMode(input_handle, mode & ~ENABLE_ECHO_INPUT);
62     else
63 #endif
64         printf("Note: your input is echoed to the screen\n");
65     printf("%s", prompt);
66     fflush(stdout);
67     p = fgets(buf, sizeof(buf), stdin);
68 #ifdef _WIN32
69     if (GetConsoleMode(input_handle, &mode))
70         SetConsoleMode(input_handle, mode | ENABLE_ECHO_INPUT);
71 #endif
72     if (!p)
73         return NULL;
74     len = strlen(p);
75     if (p[len - 1] == '\n')
76         p[len - 1] = 0;
77     return p;
78 }
79 #endif
80
81 int
82 login(int s, char *uname, char *cname, char *cpass,
83       int kill_proc, int utf8)
84 {
85     char tmp[128];
86     char buf[1024];
87     char *ptr;
88     char *p;
89     int len, code;
90
91     if (!expect(s, C_INIT, buf))
92         return 0;
93     sendcmd(s, "user", uname);
94     if (!expect(s, C_CMDOK, buf)) {
95         fprintf(stderr, "Server rejects your user name\n");
96         return 0;
97     }
98     if (utf8) {
99         sendcmd(s, "options", "utf-8");
100         for (;;) {
101             code = recvline(s, buf);
102             if (code == C_CMDOK)
103                 break;
104             if (code != C_DATA) {
105                 fprintf(stderr, "Server doesn't support UTF-8\n");
106                 return 0;
107             }
108         }
109     }
110     if (cname == NULL) {
111         (void)printf("Country name? ");
112         fflush(stdout);
113         cname = fgets(tmp, sizeof(tmp), stdin);
114         if (cname == NULL || *cname == 0)
115             return 0;
116     }
117     len = strlen(cname);
118     if (cname[len-1] == '\n')
119         cname[len-1] = 0;
120     sendcmd(s, "coun", cname);
121     if (!expect(s, C_CMDOK, buf)) {
122         (void)fprintf(stderr, "No such country\n");
123         return 0;
124     }
125     if (cpass == NULL) {
126         cpass = getpass("Your name? ");
127         if (cpass == NULL || *cpass == 0)
128             return 0;
129     }
130     (void)printf("\n");
131     sendcmd(s, "pass", cpass);
132     memset(cpass, 0, strlen(cpass));    /* for core dumps */
133     if (!expect(s, C_CMDOK, buf)) {
134         (void)fprintf(stderr, "Bad password\n");
135         return 0;
136     }
137     if (kill_proc) {
138         sendcmd(s, "kill", NULL);
139         (void)printf("\n\t-=O=-\n");
140         (void)expect(s, C_EXIT, buf);
141         fprintf(stderr, "%s\n", buf);
142         return 0;
143     }
144     sendcmd(s, "play", NULL);
145     (void)printf("\n\t-=O=-\n");
146     if (!expect(s, C_INIT, buf)) {
147         fprintf(stderr, "%s\n", buf);
148         return 0;
149     }
150     for (ptr = buf; !isspace(*ptr); ptr++) ;
151     ptr++;
152     p = strchr(ptr, '\n');
153     if (p != NULL)
154         *p = 0;
155     if (atoi(ptr) != CLIENTPROTO) {
156         printf("Empire client out of date; get new version!\n");
157         printf("   this version: %d, current version: %d\n",
158                CLIENTPROTO, atoi(ptr));
159     }
160     fflush(stdout);
161     return 1;
162 }