]> andersk Git - openssh.git/blob - authfile.c
- (tim) [kex.c myproposal.h md-sha256.c openbsd-compat/sha2.c,h] Disable
[openssh.git] / authfile.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  * This file contains functions for reading and writing identity files, and
6  * for reading the passphrase from the user.
7  *
8  * As far as I am concerned, the code I have written for this software
9  * can be used freely for any purpose.  Any derived versions of this
10  * software must be clearly marked as such, and if the derived work is
11  * incompatible with the protocol description in the RFC file, it must be
12  * called by a name other than "ssh" or "Secure Shell".
13  *
14  *
15  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions
19  * are met:
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  * 2. Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the
24  *    documentation and/or other materials provided with the distribution.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37
38 #include "includes.h"
39 RCSID("$OpenBSD: authfile.c,v 1.63 2006/03/13 10:26:52 dtucker Exp $");
40
41 #include <sys/types.h>
42 #include <sys/stat.h>
43
44 #include <openssl/err.h>
45 #include <openssl/evp.h>
46 #include <openssl/pem.h>
47
48 #include "cipher.h"
49 #include "xmalloc.h"
50 #include "buffer.h"
51 #include "bufaux.h"
52 #include "key.h"
53 #include "ssh.h"
54 #include "log.h"
55 #include "authfile.h"
56 #include "rsa.h"
57 #include "misc.h"
58 #include "atomicio.h"
59
60 /* Version identification string for SSH v1 identity files. */
61 static const char authfile_id_string[] =
62     "SSH PRIVATE KEY FILE FORMAT 1.1\n";
63
64 /*
65  * Saves the authentication (private) key in a file, encrypting it with
66  * passphrase.  The identification of the file (lowest 64 bits of n) will
67  * precede the key to provide identification of the key without needing a
68  * passphrase.
69  */
70
71 static int
72 key_save_private_rsa1(Key *key, const char *filename, const char *passphrase,
73     const char *comment)
74 {
75         Buffer buffer, encrypted;
76         u_char buf[100], *cp;
77         int fd, i, cipher_num;
78         CipherContext ciphercontext;
79         Cipher *cipher;
80         u_int32_t rnd;
81
82         /*
83          * If the passphrase is empty, use SSH_CIPHER_NONE to ease converting
84          * to another cipher; otherwise use SSH_AUTHFILE_CIPHER.
85          */
86         cipher_num = (strcmp(passphrase, "") == 0) ?
87             SSH_CIPHER_NONE : SSH_AUTHFILE_CIPHER;
88         if ((cipher = cipher_by_number(cipher_num)) == NULL)
89                 fatal("save_private_key_rsa: bad cipher");
90
91         /* This buffer is used to built the secret part of the private key. */
92         buffer_init(&buffer);
93
94         /* Put checkbytes for checking passphrase validity. */
95         rnd = arc4random();
96         buf[0] = rnd & 0xff;
97         buf[1] = (rnd >> 8) & 0xff;
98         buf[2] = buf[0];
99         buf[3] = buf[1];
100         buffer_append(&buffer, buf, 4);
101
102         /*
103          * Store the private key (n and e will not be stored because they
104          * will be stored in plain text, and storing them also in encrypted
105          * format would just give known plaintext).
106          */
107         buffer_put_bignum(&buffer, key->rsa->d);
108         buffer_put_bignum(&buffer, key->rsa->iqmp);
109         buffer_put_bignum(&buffer, key->rsa->q);        /* reverse from SSL p */
110         buffer_put_bignum(&buffer, key->rsa->p);        /* reverse from SSL q */
111
112         /* Pad the part to be encrypted until its size is a multiple of 8. */
113         while (buffer_len(&buffer) % 8 != 0)
114                 buffer_put_char(&buffer, 0);
115
116         /* This buffer will be used to contain the data in the file. */
117         buffer_init(&encrypted);
118
119         /* First store keyfile id string. */
120         for (i = 0; authfile_id_string[i]; i++)
121                 buffer_put_char(&encrypted, authfile_id_string[i]);
122         buffer_put_char(&encrypted, 0);
123
124         /* Store cipher type. */
125         buffer_put_char(&encrypted, cipher_num);
126         buffer_put_int(&encrypted, 0);  /* For future extension */
127
128         /* Store public key.  This will be in plain text. */
129         buffer_put_int(&encrypted, BN_num_bits(key->rsa->n));
130         buffer_put_bignum(&encrypted, key->rsa->n);
131         buffer_put_bignum(&encrypted, key->rsa->e);
132         buffer_put_cstring(&encrypted, comment);
133
134         /* Allocate space for the private part of the key in the buffer. */
135         cp = buffer_append_space(&encrypted, buffer_len(&buffer));
136
137         cipher_set_key_string(&ciphercontext, cipher, passphrase,
138             CIPHER_ENCRYPT);
139         cipher_crypt(&ciphercontext, cp,
140             buffer_ptr(&buffer), buffer_len(&buffer));
141         cipher_cleanup(&ciphercontext);
142         memset(&ciphercontext, 0, sizeof(ciphercontext));
143
144         /* Destroy temporary data. */
145         memset(buf, 0, sizeof(buf));
146         buffer_free(&buffer);
147
148         fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
149         if (fd < 0) {
150                 error("open %s failed: %s.", filename, strerror(errno));
151                 buffer_free(&encrypted);
152                 return 0;
153         }
154         if (atomicio(vwrite, fd, buffer_ptr(&encrypted),
155             buffer_len(&encrypted)) != buffer_len(&encrypted)) {
156                 error("write to key file %s failed: %s", filename,
157                     strerror(errno));
158                 buffer_free(&encrypted);
159                 close(fd);
160                 unlink(filename);
161                 return 0;
162         }
163         close(fd);
164         buffer_free(&encrypted);
165         return 1;
166 }
167
168 /* save SSH v2 key in OpenSSL PEM format */
169 static int
170 key_save_private_pem(Key *key, const char *filename, const char *_passphrase,
171     const char *comment)
172 {
173         FILE *fp;
174         int fd;
175         int success = 0;
176         int len = strlen(_passphrase);
177         u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
178         const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
179
180         if (len > 0 && len <= 4) {
181                 error("passphrase too short: have %d bytes, need > 4", len);
182                 return 0;
183         }
184         fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
185         if (fd < 0) {
186                 error("open %s failed: %s.", filename, strerror(errno));
187                 return 0;
188         }
189         fp = fdopen(fd, "w");
190         if (fp == NULL ) {
191                 error("fdopen %s failed: %s.", filename, strerror(errno));
192                 close(fd);
193                 return 0;
194         }
195         switch (key->type) {
196         case KEY_DSA:
197                 success = PEM_write_DSAPrivateKey(fp, key->dsa,
198                     cipher, passphrase, len, NULL, NULL);
199                 break;
200         case KEY_RSA:
201                 success = PEM_write_RSAPrivateKey(fp, key->rsa,
202                     cipher, passphrase, len, NULL, NULL);
203                 break;
204         }
205         fclose(fp);
206         return success;
207 }
208
209 int
210 key_save_private(Key *key, const char *filename, const char *passphrase,
211     const char *comment)
212 {
213         switch (key->type) {
214         case KEY_RSA1:
215                 return key_save_private_rsa1(key, filename, passphrase,
216                     comment);
217                 break;
218         case KEY_DSA:
219         case KEY_RSA:
220                 return key_save_private_pem(key, filename, passphrase,
221                     comment);
222                 break;
223         default:
224                 break;
225         }
226         error("key_save_private: cannot save key type %d", key->type);
227         return 0;
228 }
229
230 /*
231  * Loads the public part of the ssh v1 key file.  Returns NULL if an error was
232  * encountered (the file does not exist or is not readable), and the key
233  * otherwise.
234  */
235
236 static Key *
237 key_load_public_rsa1(int fd, const char *filename, char **commentp)
238 {
239         Buffer buffer;
240         Key *pub;
241         struct stat st;
242         char *cp;
243         u_int i;
244         size_t len;
245
246         if (fstat(fd, &st) < 0) {
247                 error("fstat for key file %.200s failed: %.100s",
248                     filename, strerror(errno));
249                 return NULL;
250         }
251         if (st.st_size > 1*1024*1024) {
252                 error("key file %.200s too large", filename);
253                 return NULL;
254         }
255         len = (size_t)st.st_size;               /* truncated */
256
257         buffer_init(&buffer);
258         cp = buffer_append_space(&buffer, len);
259
260         if (atomicio(read, fd, cp, len) != len) {
261                 debug("Read from key file %.200s failed: %.100s", filename,
262                     strerror(errno));
263                 buffer_free(&buffer);
264                 return NULL;
265         }
266
267         /* Check that it is at least big enough to contain the ID string. */
268         if (len < sizeof(authfile_id_string)) {
269                 debug3("Not a RSA1 key file %.200s.", filename);
270                 buffer_free(&buffer);
271                 return NULL;
272         }
273         /*
274          * Make sure it begins with the id string.  Consume the id string
275          * from the buffer.
276          */
277         for (i = 0; i < sizeof(authfile_id_string); i++)
278                 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
279                         debug3("Not a RSA1 key file %.200s.", filename);
280                         buffer_free(&buffer);
281                         return NULL;
282                 }
283         /* Skip cipher type and reserved data. */
284         (void) buffer_get_char(&buffer);        /* cipher type */
285         (void) buffer_get_int(&buffer);         /* reserved */
286
287         /* Read the public key from the buffer. */
288         (void) buffer_get_int(&buffer);
289         pub = key_new(KEY_RSA1);
290         buffer_get_bignum(&buffer, pub->rsa->n);
291         buffer_get_bignum(&buffer, pub->rsa->e);
292         if (commentp)
293                 *commentp = buffer_get_string(&buffer, NULL);
294         /* The encrypted private part is not parsed by this function. */
295
296         buffer_free(&buffer);
297         return pub;
298 }
299
300 /* load public key from private-key file, works only for SSH v1 */
301 Key *
302 key_load_public_type(int type, const char *filename, char **commentp)
303 {
304         Key *pub;
305         int fd;
306
307         if (type == KEY_RSA1) {
308                 fd = open(filename, O_RDONLY);
309                 if (fd < 0)
310                         return NULL;
311                 pub = key_load_public_rsa1(fd, filename, commentp);
312                 close(fd);
313                 return pub;
314         }
315         return NULL;
316 }
317
318 /*
319  * Loads the private key from the file.  Returns 0 if an error is encountered
320  * (file does not exist or is not readable, or passphrase is bad). This
321  * initializes the private key.
322  * Assumes we are called under uid of the owner of the file.
323  */
324
325 static Key *
326 key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
327     char **commentp)
328 {
329         u_int i;
330         int check1, check2, cipher_type;
331         size_t len;
332         Buffer buffer, decrypted;
333         u_char *cp;
334         CipherContext ciphercontext;
335         Cipher *cipher;
336         Key *prv = NULL;
337         struct stat st;
338
339         if (fstat(fd, &st) < 0) {
340                 error("fstat for key file %.200s failed: %.100s",
341                     filename, strerror(errno));
342                 close(fd);
343                 return NULL;
344         }
345         if (st.st_size > 1*1024*1024) {
346                 error("key file %.200s too large", filename);
347                 close(fd);
348                 return (NULL);
349         }
350         len = (size_t)st.st_size;               /* truncated */
351
352         buffer_init(&buffer);
353         cp = buffer_append_space(&buffer, len);
354
355         if (atomicio(read, fd, cp, len) != len) {
356                 debug("Read from key file %.200s failed: %.100s", filename,
357                     strerror(errno));
358                 buffer_free(&buffer);
359                 close(fd);
360                 return NULL;
361         }
362
363         /* Check that it is at least big enough to contain the ID string. */
364         if (len < sizeof(authfile_id_string)) {
365                 debug3("Not a RSA1 key file %.200s.", filename);
366                 buffer_free(&buffer);
367                 close(fd);
368                 return NULL;
369         }
370         /*
371          * Make sure it begins with the id string.  Consume the id string
372          * from the buffer.
373          */
374         for (i = 0; i < sizeof(authfile_id_string); i++)
375                 if (buffer_get_char(&buffer) != authfile_id_string[i]) {
376                         debug3("Not a RSA1 key file %.200s.", filename);
377                         buffer_free(&buffer);
378                         close(fd);
379                         return NULL;
380                 }
381
382         /* Read cipher type. */
383         cipher_type = buffer_get_char(&buffer);
384         (void) buffer_get_int(&buffer); /* Reserved data. */
385
386         /* Read the public key from the buffer. */
387         (void) buffer_get_int(&buffer);
388         prv = key_new_private(KEY_RSA1);
389
390         buffer_get_bignum(&buffer, prv->rsa->n);
391         buffer_get_bignum(&buffer, prv->rsa->e);
392         if (commentp)
393                 *commentp = buffer_get_string(&buffer, NULL);
394         else
395                 xfree(buffer_get_string(&buffer, NULL));
396
397         /* Check that it is a supported cipher. */
398         cipher = cipher_by_number(cipher_type);
399         if (cipher == NULL) {
400                 debug("Unsupported cipher %d used in key file %.200s.",
401                     cipher_type, filename);
402                 buffer_free(&buffer);
403                 goto fail;
404         }
405         /* Initialize space for decrypted data. */
406         buffer_init(&decrypted);
407         cp = buffer_append_space(&decrypted, buffer_len(&buffer));
408
409         /* Rest of the buffer is encrypted.  Decrypt it using the passphrase. */
410         cipher_set_key_string(&ciphercontext, cipher, passphrase,
411             CIPHER_DECRYPT);
412         cipher_crypt(&ciphercontext, cp,
413             buffer_ptr(&buffer), buffer_len(&buffer));
414         cipher_cleanup(&ciphercontext);
415         memset(&ciphercontext, 0, sizeof(ciphercontext));
416         buffer_free(&buffer);
417
418         check1 = buffer_get_char(&decrypted);
419         check2 = buffer_get_char(&decrypted);
420         if (check1 != buffer_get_char(&decrypted) ||
421             check2 != buffer_get_char(&decrypted)) {
422                 if (strcmp(passphrase, "") != 0)
423                         debug("Bad passphrase supplied for key file %.200s.",
424                             filename);
425                 /* Bad passphrase. */
426                 buffer_free(&decrypted);
427                 goto fail;
428         }
429         /* Read the rest of the private key. */
430         buffer_get_bignum(&decrypted, prv->rsa->d);
431         buffer_get_bignum(&decrypted, prv->rsa->iqmp);          /* u */
432         /* in SSL and SSH v1 p and q are exchanged */
433         buffer_get_bignum(&decrypted, prv->rsa->q);             /* p */
434         buffer_get_bignum(&decrypted, prv->rsa->p);             /* q */
435
436         /* calculate p-1 and q-1 */
437         rsa_generate_additional_parameters(prv->rsa);
438
439         buffer_free(&decrypted);
440
441         /* enable blinding */
442         if (RSA_blinding_on(prv->rsa, NULL) != 1) {
443                 error("key_load_private_rsa1: RSA_blinding_on failed");
444                 goto fail;
445         }
446         close(fd);
447         return prv;
448
449 fail:
450         if (commentp)
451                 xfree(*commentp);
452         close(fd);
453         key_free(prv);
454         return NULL;
455 }
456
457 Key *
458 key_load_private_pem(int fd, int type, const char *passphrase,
459     char **commentp)
460 {
461         FILE *fp;
462         EVP_PKEY *pk = NULL;
463         Key *prv = NULL;
464         char *name = "<no key>";
465
466         fp = fdopen(fd, "r");
467         if (fp == NULL) {
468                 error("fdopen failed: %s", strerror(errno));
469                 close(fd);
470                 return NULL;
471         }
472         pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
473         if (pk == NULL) {
474                 debug("PEM_read_PrivateKey failed");
475                 (void)ERR_get_error();
476         } else if (pk->type == EVP_PKEY_RSA &&
477             (type == KEY_UNSPEC||type==KEY_RSA)) {
478                 prv = key_new(KEY_UNSPEC);
479                 prv->rsa = EVP_PKEY_get1_RSA(pk);
480                 prv->type = KEY_RSA;
481                 name = "rsa w/o comment";
482 #ifdef DEBUG_PK
483                 RSA_print_fp(stderr, prv->rsa, 8);
484 #endif
485                 if (RSA_blinding_on(prv->rsa, NULL) != 1) {
486                         error("key_load_private_pem: RSA_blinding_on failed");
487                         key_free(prv);
488                         prv = NULL;
489                 }
490         } else if (pk->type == EVP_PKEY_DSA &&
491             (type == KEY_UNSPEC||type==KEY_DSA)) {
492                 prv = key_new(KEY_UNSPEC);
493                 prv->dsa = EVP_PKEY_get1_DSA(pk);
494                 prv->type = KEY_DSA;
495                 name = "dsa w/o comment";
496 #ifdef DEBUG_PK
497                 DSA_print_fp(stderr, prv->dsa, 8);
498 #endif
499         } else {
500                 error("PEM_read_PrivateKey: mismatch or "
501                     "unknown EVP_PKEY save_type %d", pk->save_type);
502         }
503         fclose(fp);
504         if (pk != NULL)
505                 EVP_PKEY_free(pk);
506         if (prv != NULL && commentp)
507                 *commentp = xstrdup(name);
508         debug("read PEM private key done: type %s",
509             prv ? key_type(prv) : "<unknown>");
510         return prv;
511 }
512
513 int
514 key_perm_ok(int fd, const char *filename)
515 {
516         struct stat st;
517
518         if (fstat(fd, &st) < 0)
519                 return 0;
520         /*
521          * if a key owned by the user is accessed, then we check the
522          * permissions of the file. if the key owned by a different user,
523          * then we don't care.
524          */
525 #ifdef HAVE_CYGWIN
526         if (check_ntsec(filename))
527 #endif
528         if ((st.st_uid == getuid()) && (st.st_mode & 077) != 0) {
529                 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
530                 error("@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @");
531                 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
532                 error("Permissions 0%3.3o for '%s' are too open.",
533                     (u_int)st.st_mode & 0777, filename);
534                 error("It is recommended that your private key files are NOT accessible by others.");
535                 error("This private key will be ignored.");
536                 return 0;
537         }
538         return 1;
539 }
540
541 Key *
542 key_load_private_type(int type, const char *filename, const char *passphrase,
543     char **commentp)
544 {
545         int fd;
546
547         fd = open(filename, O_RDONLY);
548         if (fd < 0)
549                 return NULL;
550         if (!key_perm_ok(fd, filename)) {
551                 error("bad permissions: ignore key: %s", filename);
552                 close(fd);
553                 return NULL;
554         }
555         switch (type) {
556         case KEY_RSA1:
557                 return key_load_private_rsa1(fd, filename, passphrase,
558                     commentp);
559                 /* closes fd */
560                 break;
561         case KEY_DSA:
562         case KEY_RSA:
563         case KEY_UNSPEC:
564                 return key_load_private_pem(fd, type, passphrase, commentp);
565                 /* closes fd */
566                 break;
567         default:
568                 close(fd);
569                 break;
570         }
571         return NULL;
572 }
573
574 Key *
575 key_load_private(const char *filename, const char *passphrase,
576     char **commentp)
577 {
578         Key *pub, *prv;
579         int fd;
580
581         fd = open(filename, O_RDONLY);
582         if (fd < 0)
583                 return NULL;
584         if (!key_perm_ok(fd, filename)) {
585                 error("bad permissions: ignore key: %s", filename);
586                 close(fd);
587                 return NULL;
588         }
589         pub = key_load_public_rsa1(fd, filename, commentp);
590         lseek(fd, (off_t) 0, SEEK_SET);         /* rewind */
591         if (pub == NULL) {
592                 /* closes fd */
593                 prv = key_load_private_pem(fd, KEY_UNSPEC, passphrase, NULL);
594                 /* use the filename as a comment for PEM */
595                 if (commentp && prv)
596                         *commentp = xstrdup(filename);
597         } else {
598                 /* it's a SSH v1 key if the public key part is readable */
599                 key_free(pub);
600                 /* closes fd */
601                 prv = key_load_private_rsa1(fd, filename, passphrase, NULL);
602         }
603         return prv;
604 }
605
606 static int
607 key_try_load_public(Key *k, const char *filename, char **commentp)
608 {
609         FILE *f;
610         char line[SSH_MAX_PUBKEY_BYTES];
611         char *cp;
612         u_long linenum = 0;
613
614         f = fopen(filename, "r");
615         if (f != NULL) {
616                 while (read_keyfile_line(f, filename, line, sizeof(line),
617                             &linenum) != -1) {
618                         cp = line;
619                         switch (*cp) {
620                         case '#':
621                         case '\n':
622                         case '\0':
623                                 continue;
624                         }
625                         /* Skip leading whitespace. */
626                         for (; *cp && (*cp == ' ' || *cp == '\t'); cp++)
627                                 ;
628                         if (*cp) {
629                                 if (key_read(k, &cp) == 1) {
630                                         if (commentp)
631                                                 *commentp=xstrdup(filename);
632                                         fclose(f);
633                                         return 1;
634                                 }
635                         }
636                 }
637                 fclose(f);
638         }
639         return 0;
640 }
641
642 /* load public key from ssh v1 private or any pubkey file */
643 Key *
644 key_load_public(const char *filename, char **commentp)
645 {
646         Key *pub;
647         char file[MAXPATHLEN];
648
649         /* try rsa1 private key */
650         pub = key_load_public_type(KEY_RSA1, filename, commentp);
651         if (pub != NULL)
652                 return pub;
653
654         /* try rsa1 public key */
655         pub = key_new(KEY_RSA1);
656         if (key_try_load_public(pub, filename, commentp) == 1)
657                 return pub;
658         key_free(pub);
659
660         /* try ssh2 public key */
661         pub = key_new(KEY_UNSPEC);
662         if (key_try_load_public(pub, filename, commentp) == 1)
663                 return pub;
664         if ((strlcpy(file, filename, sizeof file) < sizeof(file)) &&
665             (strlcat(file, ".pub", sizeof file) < sizeof(file)) &&
666             (key_try_load_public(pub, file, commentp) == 1))
667                 return pub;
668         key_free(pub);
669         return NULL;
670 }
This page took 0.092163 seconds and 5 git commands to generate.