]> andersk Git - openssh.git/blob - ssh-add.c
- markus@cvs.openbsd.org 2001/03/26 08:07:09
[openssh.git] / ssh-add.c
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Adds an identity to the authentication server, or removes an identity.
6  *
7  * As far as I am concerned, the code I have written for this software
8  * can be used freely for any purpose.  Any derived versions of this
9  * software must be clearly marked as such, and if the derived work is
10  * incompatible with the protocol description in the RFC file, it must be
11  * called by a name other than "ssh" or "Secure Shell".
12  *
13  * SSH2 implementation,
14  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  * 1. Redistributions of source code must retain the above copyright
20  *    notice, this list of conditions and the following disclaimer.
21  * 2. Redistributions in binary form must reproduce the above copyright
22  *    notice, this list of conditions and the following disclaimer in the
23  *    documentation and/or other materials provided with the distribution.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 #include "includes.h"
38 RCSID("$OpenBSD: ssh-add.c,v 1.31 2001/03/26 08:07:08 markus Exp $");
39
40 #include <openssl/evp.h>
41
42 #include "ssh.h"
43 #include "rsa.h"
44 #include "log.h"
45 #include "xmalloc.h"
46 #include "key.h"
47 #include "authfd.h"
48 #include "authfile.h"
49 #include "pathnames.h"
50 #include "readpass.h"
51
52 #ifdef HAVE___PROGNAME
53 extern char *__progname;
54 #else
55 char *__progname;
56 #endif
57
58 void
59 delete_file(AuthenticationConnection *ac, const char *filename)
60 {
61         Key *public;
62         char *comment;
63
64         public = key_load_public(filename, &comment);
65         if (public == NULL) {
66                 printf("Bad key file %s\n", filename);
67                 return;
68         }
69         if (ssh_remove_identity(ac, public))
70                 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
71         else
72                 fprintf(stderr, "Could not remove identity: %s\n", filename);
73         key_free(public);
74         xfree(comment);
75 }
76
77 /* Send a request to remove all identities. */
78 void
79 delete_all(AuthenticationConnection *ac)
80 {
81         int success = 1;
82
83         if (!ssh_remove_all_identities(ac, 1))
84                 success = 0;
85         /* ignore error-code for ssh2 */
86         ssh_remove_all_identities(ac, 2);
87
88         if (success)
89                 fprintf(stderr, "All identities removed.\n");
90         else
91                 fprintf(stderr, "Failed to remove all identities.\n");
92 }
93
94 char *
95 ssh_askpass(char *askpass, char *msg)
96 {
97         pid_t pid;
98         size_t len;
99         char *nl, *pass;
100         int p[2], status;
101         char buf[1024];
102
103         if (fflush(stdout) != 0)
104                 error("ssh_askpass: fflush: %s", strerror(errno));
105         if (askpass == NULL)
106                 fatal("internal error: askpass undefined");
107         if (pipe(p) < 0)
108                 fatal("ssh_askpass: pipe: %s", strerror(errno));
109         if ((pid = fork()) < 0)
110                 fatal("ssh_askpass: fork: %s", strerror(errno));
111         if (pid == 0) {
112                 close(p[0]);
113                 if (dup2(p[1], STDOUT_FILENO) < 0)
114                         fatal("ssh_askpass: dup2: %s", strerror(errno));
115                 execlp(askpass, askpass, msg, (char *) 0);
116                 fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
117         }
118         close(p[1]);
119         len = read(p[0], buf, sizeof buf);
120         close(p[0]);
121         while (waitpid(pid, &status, 0) < 0)
122                 if (errno != EINTR)
123                         break;
124         if (len <= 1)
125                 return xstrdup("");
126         nl = strchr(buf, '\n');
127         if (nl)
128                 *nl = '\0';
129         pass = xstrdup(buf);
130         memset(buf, 0, sizeof(buf));
131         return pass;
132 }
133
134 void
135 add_file(AuthenticationConnection *ac, const char *filename)
136 {
137         struct stat st;
138         Key *private;
139         char *comment, *askpass = NULL, *pass;
140         char buf[1024], msg[1024];
141         int interactive = isatty(STDIN_FILENO);
142
143         if (stat(filename, &st) < 0) {
144                 perror(filename);
145                 exit(1);
146         }
147         if (!interactive && getenv("DISPLAY")) {
148                 if (getenv(SSH_ASKPASS_ENV))
149                         askpass = getenv(SSH_ASKPASS_ENV);
150                 else
151                         askpass = _PATH_SSH_ASKPASS_DEFAULT;
152         }
153
154         /* At first, try empty passphrase */
155         private = key_load_private(filename, "", &comment);
156         if (comment == NULL)
157                 comment = xstrdup(filename);
158         if (private == NULL) {
159                 printf("Need passphrase for %.200s\n", filename);
160                 if (!interactive && askpass == NULL) {
161                         xfree(comment);
162                         return;
163                 }
164                 snprintf(msg, sizeof msg, "Enter passphrase for %.200s", comment);
165                 for (;;) {
166                         if (interactive) {
167                                 snprintf(buf, sizeof buf, "%s: ", msg);
168                                 pass = read_passphrase(buf, 1);
169                         } else {
170                                 pass = ssh_askpass(askpass, msg);
171                         }
172                         if (strcmp(pass, "") == 0) {
173                                 xfree(pass);
174                                 xfree(comment);
175                                 return;
176                         }
177                         private = key_load_private(filename, pass, &comment);
178                         memset(pass, 0, strlen(pass));
179                         xfree(pass);
180                         if (private != NULL)
181                                 break;
182                         strlcpy(msg, "Bad passphrase, try again", sizeof msg);
183                 }
184         }
185         if (ssh_add_identity(ac, private, comment))
186                 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
187         else
188                 fprintf(stderr, "Could not add identity: %s\n", filename);
189         xfree(comment);
190         key_free(private);
191 }
192
193 void
194 list_identities(AuthenticationConnection *ac, int do_fp)
195 {
196         Key *key;
197         char *comment, *fp;
198         int had_identities = 0;
199         int version;
200
201         for (version = 1; version <= 2; version++) {
202                 for (key = ssh_get_first_identity(ac, &comment, version);
203                      key != NULL;
204                      key = ssh_get_next_identity(ac, &comment, version)) {
205                         had_identities = 1;
206                         if (do_fp) {
207                                 fp = key_fingerprint(key, SSH_FP_MD5,
208                                     SSH_FP_HEX);
209                                 printf("%d %s %s (%s)\n",
210                                     key_size(key), fp, comment, key_type(key));
211                                 xfree(fp);
212                         } else {
213                                 if (!key_write(key, stdout))
214                                         fprintf(stderr, "key_write failed");
215                                 fprintf(stdout, " %s\n", comment);
216                         }
217                         key_free(key);
218                         xfree(comment);
219                 }
220         }
221         if (!had_identities)
222                 printf("The agent has no identities.\n");
223 }
224
225 int
226 main(int argc, char **argv)
227 {
228         AuthenticationConnection *ac = NULL;
229         struct passwd *pw;
230         char buf[1024];
231         int no_files = 1;
232         int i;
233         int deleting = 0;
234
235         __progname = get_progname(argv[0]);
236         init_rng();
237
238         SSLeay_add_all_algorithms();
239
240         /* At first, get a connection to the authentication agent. */
241         ac = ssh_get_authentication_connection();
242         if (ac == NULL) {
243                 fprintf(stderr, "Could not open a connection to your authentication agent.\n");
244                 exit(1);
245         }
246         for (i = 1; i < argc; i++) {
247                 if ((strcmp(argv[i], "-l") == 0) ||
248                     (strcmp(argv[i], "-L") == 0)) {
249                         list_identities(ac, argv[i][1] == 'l' ? 1 : 0);
250                         /* Don't default-add/delete if -l. */
251                         no_files = 0;
252                         continue;
253                 }
254                 if (strcmp(argv[i], "-d") == 0) {
255                         deleting = 1;
256                         continue;
257                 }
258                 if (strcmp(argv[i], "-D") == 0) {
259                         delete_all(ac);
260                         no_files = 0;
261                         continue;
262                 }
263                 no_files = 0;
264                 if (deleting)
265                         delete_file(ac, argv[i]);
266                 else
267                         add_file(ac, argv[i]);
268         }
269         if (no_files) {
270                 pw = getpwuid(getuid());
271                 if (!pw) {
272                         fprintf(stderr, "No user found with uid %u\n",
273                             (u_int)getuid());
274                         ssh_close_authentication_connection(ac);
275                         exit(1);
276                 }
277                 snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, _PATH_SSH_CLIENT_IDENTITY);
278                 if (deleting)
279                         delete_file(ac, buf);
280                 else
281                         add_file(ac, buf);
282         }
283         ssh_close_authentication_connection(ac);
284         exit(0);
285 }
This page took 0.075863 seconds and 5 git commands to generate.