No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / external / bsd / openssh / dist / ssh-add.c
blobf7716a7870c113b0208212aa89bce1d5b955587e
1 /* $NetBSD$ */
2 /* $OpenBSD: ssh-add.c,v 1.90 2007/09/09 11:38:01 sobrado Exp $ */
3 /*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 * Adds an identity to the authentication server, or removes an identity.
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
15 * SSH2 implementation,
16 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include "includes.h"
40 __RCSID("$NetBSD: ssh-add.c,v 1.25 2008/04/06 23:38:19 christos Exp $");
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <sys/param.h>
45 #include <openssl/evp.h>
47 #include <fcntl.h>
48 #include <pwd.h>
49 #include <stdio.h>
50 #include <stdlib.h>
51 #include <string.h>
52 #include <unistd.h>
54 #include "xmalloc.h"
55 #include "ssh.h"
56 #include "rsa.h"
57 #include "log.h"
58 #include "key.h"
59 #include "buffer.h"
60 #include "authfd.h"
61 #include "authfile.h"
62 #include "pathnames.h"
63 #include "misc.h"
65 /* argv0 */
66 extern char *__progname;
68 /* Default files to add */
69 static char *default_files[] = {
70 _PATH_SSH_CLIENT_ID_RSA,
71 _PATH_SSH_CLIENT_ID_DSA,
72 _PATH_SSH_CLIENT_IDENTITY,
73 NULL
76 /* Default lifetime (0 == forever) */
77 static int lifetime = 0;
79 /* User has to confirm key use */
80 static int confirm = 0;
82 /* we keep a cache of one passphrases */
83 static char *pass = NULL;
84 static void
85 clear_pass(void)
87 if (pass) {
88 memset(pass, 0, strlen(pass));
89 xfree(pass);
90 pass = NULL;
94 static int
95 delete_file(AuthenticationConnection *ac, const char *filename)
97 Key *public;
98 char *comment = NULL;
99 int ret = -1;
101 public = key_load_public(filename, &comment);
102 if (public == NULL) {
103 printf("Bad key file %s\n", filename);
104 return -1;
106 if (ssh_remove_identity(ac, public)) {
107 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
108 ret = 0;
109 } else
110 fprintf(stderr, "Could not remove identity: %s\n", filename);
112 key_free(public);
113 xfree(comment);
115 return ret;
118 /* Send a request to remove all identities. */
119 static int
120 delete_all(AuthenticationConnection *ac)
122 int ret = -1;
124 if (ssh_remove_all_identities(ac, 1))
125 ret = 0;
126 /* ignore error-code for ssh2 */
127 ssh_remove_all_identities(ac, 2);
129 if (ret == 0)
130 fprintf(stderr, "All identities removed.\n");
131 else
132 fprintf(stderr, "Failed to remove all identities.\n");
134 return ret;
137 static int
138 add_file(AuthenticationConnection *ac, const char *filename)
140 Key *private;
141 char *comment = NULL;
142 char msg[1024];
143 int fd, perms_ok, ret = -1;
145 if ((fd = open(filename, O_RDONLY)) < 0) {
146 perror(filename);
147 return -1;
151 * Since we'll try to load a keyfile multiple times, permission errors
152 * will occur multiple times, so check perms first and bail if wrong.
154 perms_ok = key_perm_ok(fd, filename);
155 close(fd);
156 if (!perms_ok)
157 return -1;
159 /* At first, try empty passphrase */
160 private = key_load_private(filename, "", &comment);
161 if (comment == NULL)
162 comment = xstrdup(filename);
163 /* try last */
164 if (private == NULL && pass != NULL)
165 private = key_load_private(filename, pass, NULL);
166 if (private == NULL) {
167 /* clear passphrase since it did not work */
168 clear_pass();
169 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
170 comment);
171 for (;;) {
172 pass = read_passphrase(msg, RP_ALLOW_STDIN);
173 if (strcmp(pass, "") == 0) {
174 clear_pass();
175 xfree(comment);
176 return -1;
178 private = key_load_private(filename, pass, &comment);
179 if (private != NULL)
180 break;
181 clear_pass();
182 snprintf(msg, sizeof msg,
183 "Bad passphrase, try again for %.200s: ", comment);
187 if (ssh_add_identity_constrained(ac, private, comment, lifetime,
188 confirm)) {
189 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
190 ret = 0;
191 if (lifetime != 0)
192 fprintf(stderr,
193 "Lifetime set to %d seconds\n", lifetime);
194 if (confirm != 0)
195 fprintf(stderr,
196 "The user has to confirm each use of the key\n");
197 } else if (ssh_add_identity(ac, private, comment)) {
198 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
199 ret = 0;
200 } else {
201 fprintf(stderr, "Could not add identity: %s\n", filename);
204 xfree(comment);
205 key_free(private);
207 return ret;
210 static int
211 update_card(AuthenticationConnection *ac, int add, const char *id)
213 char *pin;
214 int ret = -1;
216 pin = read_passphrase("Enter passphrase for smartcard: ", RP_ALLOW_STDIN);
217 if (pin == NULL)
218 return -1;
220 if (ssh_update_card(ac, add, id, pin, lifetime, confirm)) {
221 fprintf(stderr, "Card %s: %s\n",
222 add ? "added" : "removed", id);
223 ret = 0;
224 } else {
225 fprintf(stderr, "Could not %s card: %s\n",
226 add ? "add" : "remove", id);
227 ret = -1;
229 xfree(pin);
230 return ret;
233 static int
234 list_identities(AuthenticationConnection *ac, int do_fp)
236 Key *key;
237 char *comment, *fp;
238 int had_identities = 0;
239 int version;
241 for (version = 1; version <= 2; version++) {
242 for (key = ssh_get_first_identity(ac, &comment, version);
243 key != NULL;
244 key = ssh_get_next_identity(ac, &comment, version)) {
245 had_identities = 1;
246 if (do_fp) {
247 fp = key_fingerprint(key, SSH_FP_MD5,
248 SSH_FP_HEX);
249 printf("%d %s %s (%s)\n",
250 key_size(key), fp, comment, key_type(key));
251 xfree(fp);
252 } else {
253 if (!key_write(key, stdout))
254 fprintf(stderr, "key_write failed");
255 fprintf(stdout, " %s\n", comment);
257 key_free(key);
258 xfree(comment);
261 if (!had_identities) {
262 printf("The agent has no identities.\n");
263 return -1;
265 return 0;
268 static int
269 lock_agent(AuthenticationConnection *ac, int lock)
271 char prompt[100], *p1, *p2;
272 int passok = 1, ret = -1;
274 strlcpy(prompt, "Enter lock password: ", sizeof(prompt));
275 p1 = read_passphrase(prompt, RP_ALLOW_STDIN);
276 if (lock) {
277 strlcpy(prompt, "Again: ", sizeof prompt);
278 p2 = read_passphrase(prompt, RP_ALLOW_STDIN);
279 if (strcmp(p1, p2) != 0) {
280 fprintf(stderr, "Passwords do not match.\n");
281 passok = 0;
283 memset(p2, 0, strlen(p2));
284 xfree(p2);
286 if (passok && ssh_lock_agent(ac, lock, p1)) {
287 fprintf(stderr, "Agent %slocked.\n", lock ? "" : "un");
288 ret = 0;
289 } else
290 fprintf(stderr, "Failed to %slock agent.\n", lock ? "" : "un");
291 memset(p1, 0, strlen(p1));
292 xfree(p1);
293 return (ret);
296 static int
297 do_file(AuthenticationConnection *ac, int deleting, char *file)
299 if (deleting) {
300 if (delete_file(ac, file) == -1)
301 return -1;
302 } else {
303 if (add_file(ac, file) == -1)
304 return -1;
306 return 0;
309 static void
310 usage(void)
312 fprintf(stderr, "usage: %s [options] [file ...]\n", __progname);
313 fprintf(stderr, "Options:\n");
314 fprintf(stderr, " -l List fingerprints of all identities.\n");
315 fprintf(stderr, " -L List public key parameters of all identities.\n");
316 fprintf(stderr, " -d Delete identity.\n");
317 fprintf(stderr, " -D Delete all identities.\n");
318 fprintf(stderr, " -x Lock agent.\n");
319 fprintf(stderr, " -X Unlock agent.\n");
320 fprintf(stderr, " -t life Set lifetime (in seconds) when adding identities.\n");
321 fprintf(stderr, " -c Require confirmation to sign using identities\n");
322 #ifdef SMARTCARD
323 fprintf(stderr, " -s reader Add key in smartcard reader.\n");
324 fprintf(stderr, " -e reader Remove key in smartcard reader.\n");
325 #endif
329 main(int argc, char **argv)
331 extern char *optarg;
332 extern int optind;
333 AuthenticationConnection *ac = NULL;
334 char *sc_reader_id = NULL;
335 int i, ch, deleting = 0, ret = 0;
337 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
338 sanitise_stdfd();
340 SSLeay_add_all_algorithms();
342 /* At first, get a connection to the authentication agent. */
343 ac = ssh_get_authentication_connection();
344 if (ac == NULL) {
345 fprintf(stderr,
346 "Could not open a connection to your authentication agent.\n");
347 exit(2);
349 while ((ch = getopt(argc, argv, "lLcdDxXe:s:t:")) != -1) {
350 switch (ch) {
351 case 'l':
352 case 'L':
353 if (list_identities(ac, ch == 'l' ? 1 : 0) == -1)
354 ret = 1;
355 goto done;
356 case 'x':
357 case 'X':
358 if (lock_agent(ac, ch == 'x' ? 1 : 0) == -1)
359 ret = 1;
360 goto done;
361 case 'c':
362 confirm = 1;
363 break;
364 case 'd':
365 deleting = 1;
366 break;
367 case 'D':
368 if (delete_all(ac) == -1)
369 ret = 1;
370 goto done;
371 case 's':
372 sc_reader_id = optarg;
373 break;
374 case 'e':
375 deleting = 1;
376 sc_reader_id = optarg;
377 break;
378 case 't':
379 if ((lifetime = convtime(optarg)) == -1) {
380 fprintf(stderr, "Invalid lifetime\n");
381 ret = 1;
382 goto done;
384 break;
385 default:
386 usage();
387 ret = 1;
388 goto done;
391 argc -= optind;
392 argv += optind;
393 if (sc_reader_id != NULL) {
394 if (update_card(ac, !deleting, sc_reader_id) == -1)
395 ret = 1;
396 goto done;
398 if (argc == 0) {
399 char buf[MAXPATHLEN];
400 struct passwd *pw;
401 struct stat st;
402 int count = 0;
404 if ((pw = getpwuid(getuid())) == NULL) {
405 fprintf(stderr, "No user found with uid %u\n",
406 (u_int)getuid());
407 ret = 1;
408 goto done;
411 for (i = 0; default_files[i]; i++) {
412 snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir,
413 default_files[i]);
414 if (stat(buf, &st) < 0)
415 continue;
416 if (do_file(ac, deleting, buf) == -1)
417 ret = 1;
418 else
419 count++;
421 if (count == 0)
422 ret = 1;
423 } else {
424 for (i = 0; i < argc; i++) {
425 if (do_file(ac, deleting, argv[i]) == -1)
426 ret = 1;
429 clear_pass();
431 done:
432 ssh_close_authentication_connection(ac);
433 return ret;