Imported Upstream version 1.7.4p6
[debian/sudo] / auth / fwtk.c
1 /*
2  * Copyright (c) 1999-2005, 2008, 2010
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * Sponsored in part by the Defense Advanced Research Projects
18  * Agency (DARPA) and Air Force Research Laboratory, Air Force
19  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
20  */
21
22 #include <config.h>
23
24 #include <sys/types.h>
25 #include <sys/param.h>
26 #include <stdio.h>
27 #ifdef STDC_HEADERS
28 # include <stdlib.h>
29 # include <stddef.h>
30 #else
31 # ifdef HAVE_STDLIB_H
32 #  include <stdlib.h>
33 # endif
34 #endif /* STDC_HEADERS */
35 #ifdef HAVE_STRING_H
36 # include <string.h>
37 #endif /* HAVE_STRING_H */
38 #ifdef HAVE_STRINGS_H
39 # include <strings.h>
40 #endif /* HAVE_STRING_H */
41 #ifdef HAVE_UNISTD_H
42 # include <unistd.h>
43 #endif /* HAVE_UNISTD_H */
44 #include <pwd.h>
45
46 #include <auth.h>
47 #include <firewall.h>
48
49 #include "sudo.h"
50 #include "sudo_auth.h"
51
52 int
53 fwtk_init(pw, promptp, auth)
54     struct passwd *pw;
55     char **promptp;
56     sudo_auth *auth;
57 {
58     static Cfg *confp;                  /* Configuration entry struct */
59     char resp[128];                     /* Response from the server */
60
61     if ((confp = cfg_read("sudo")) == (Cfg *)-1) {
62         warningx("cannot read fwtk config");
63         return(AUTH_FATAL);
64     }
65
66     if (auth_open(confp)) {
67         warningx("cannot connect to authentication server");
68         return(AUTH_FATAL);
69     }
70
71     /* Get welcome message from auth server */
72     if (auth_recv(resp, sizeof(resp))) {
73         warningx("lost connection to authentication server");
74         return(AUTH_FATAL);
75     }
76     if (strncmp(resp, "Authsrv ready", 13) != 0) {
77         warningx("authentication server error:\n%s", resp);
78         return(AUTH_FATAL);
79     }
80
81     return(AUTH_SUCCESS);
82 }
83
84 int
85 fwtk_verify(pw, prompt, auth)
86     struct passwd *pw;
87     char *prompt;
88     sudo_auth *auth;
89 {
90     char *pass;                         /* Password from the user */
91     char buf[SUDO_PASS_MAX + 12];       /* General prupose buffer */
92     char resp[128];                     /* Response from the server */
93     int error;
94
95     /* Send username to authentication server. */
96     (void) snprintf(buf, sizeof(buf), "authorize %s 'sudo'", pw->pw_name);
97 restart:
98     if (auth_send(buf) || auth_recv(resp, sizeof(resp))) {
99         warningx("lost connection to authentication server");
100         return(AUTH_FATAL);
101     }
102
103     /* Get the password/response from the user. */
104     if (strncmp(resp, "challenge ", 10) == 0) {
105         (void) snprintf(buf, sizeof(buf), "%s\nResponse: ", &resp[10]);
106         pass = tgetpass(buf, def_passwd_timeout * 60, tgetpass_flags);
107         if (pass && *pass == '\0') {
108             pass = tgetpass("Response [echo on]: ",
109                 def_passwd_timeout * 60, tgetpass_flags | TGP_ECHO);
110         }
111     } else if (strncmp(resp, "chalnecho ", 10) == 0) {
112         pass = tgetpass(&resp[10], def_passwd_timeout * 60, tgetpass_flags);
113     } else if (strncmp(resp, "password", 8) == 0) {
114         pass = tgetpass(prompt, def_passwd_timeout * 60,
115             tgetpass_flags);
116     } else if (strncmp(resp, "display ", 8) == 0) {
117         fprintf(stderr, "%s\n", &resp[8]);
118         strlcpy(buf, "response dummy", sizeof(buf));
119         goto restart;
120     } else {
121         warningx("%s", resp);
122         return(AUTH_FATAL);
123     }
124     if (!pass) {                        /* ^C or error */
125         return(AUTH_INTR);
126     }
127
128     /* Send the user's response to the server */
129     (void) snprintf(buf, sizeof(buf), "response '%s'", pass);
130     if (auth_send(buf) || auth_recv(resp, sizeof(resp))) {
131         warningx("lost connection to authentication server");
132         error = AUTH_FATAL;
133         goto done;
134     }
135
136     if (strncmp(resp, "ok", 2) == 0) {
137         error = AUTH_SUCCESS;
138         goto done;
139     }
140
141     /* Main loop prints "Permission Denied" or insult. */
142     if (strcmp(resp, "Permission Denied.") != 0)
143         warningx("%s", resp);
144     error = AUTH_FAILURE;
145 done:
146     zero_bytes(pass, strlen(pass));
147     zero_bytes(buf, strlen(buf));
148     return(error);
149 }
150
151 int
152 fwtk_cleanup(pw, auth)
153     struct passwd *pw;
154     sudo_auth *auth;
155 {
156
157     auth_close();
158     return(AUTH_SUCCESS);
159 }