]> andersk Git - openssh.git/blob - auth2.c
4880b736ef1e80ff8bda088062de40cb0d1aca25
[openssh.git] / auth2.c
1 /*
2  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include "includes.h"
26 RCSID("$OpenBSD: auth2.c,v 1.24 2000/12/28 14:25:51 markus Exp $");
27
28 #ifdef HAVE_OSF_SIA
29 # include <sia.h>
30 # include <siad.h>
31 #endif
32
33 #include <openssl/dsa.h>
34 #include <openssl/rsa.h>
35 #include <openssl/evp.h>
36
37 #include "xmalloc.h"
38 #include "rsa.h"
39 #include "ssh.h"
40 #include "pty.h"
41 #include "packet.h"
42 #include "buffer.h"
43 #include "servconf.h"
44 #include "compat.h"
45 #include "channels.h"
46 #include "bufaux.h"
47 #include "ssh2.h"
48 #include "auth.h"
49 #include "session.h"
50 #include "dispatch.h"
51 #include "auth.h"
52 #include "key.h"
53 #include "kex.h"
54
55 #include "uidswap.h"
56 #include "auth-options.h"
57
58 /* import */
59 extern ServerOptions options;
60 extern u_char *session_id2;
61 extern int session_id2_len;
62
63 #ifdef WITH_AIXAUTHENTICATE
64 extern char *aixloginmsg;
65 #endif
66 #ifdef HAVE_OSF_SIA
67 extern int saved_argc;
68 extern char **saved_argv;
69 #endif
70
71 static Authctxt *x_authctxt = NULL;
72 static int one = 1;
73
74 typedef struct Authmethod Authmethod;
75 struct Authmethod {
76         char    *name;
77         int     (*userauth)(Authctxt *authctxt);
78         int     *enabled;
79 };
80
81 /* protocol */
82
83 void    input_service_request(int type, int plen, void *ctxt);
84 void    input_userauth_request(int type, int plen, void *ctxt);
85 void    protocol_error(int type, int plen, void *ctxt);
86
87
88 /* helper */
89 Authmethod      *authmethod_lookup(const char *name);
90 struct passwd   *pwcopy(struct passwd *pw);
91 int     user_key_allowed(struct passwd *pw, Key *key);
92 char    *authmethods_get(void);
93
94 /* auth */
95 int     userauth_none(Authctxt *authctxt);
96 int     userauth_passwd(Authctxt *authctxt);
97 int     userauth_pubkey(Authctxt *authctxt);
98 int     userauth_kbdint(Authctxt *authctxt);
99
100 Authmethod authmethods[] = {
101         {"none",
102                 userauth_none,
103                 &one},
104         {"publickey",
105                 userauth_pubkey,
106                 &options.pubkey_authentication},
107         {"keyboard-interactive",
108                 userauth_kbdint,
109                 &options.kbd_interactive_authentication},
110         {"password",
111                 userauth_passwd,
112                 &options.password_authentication},
113         {NULL, NULL, NULL}
114 };
115
116 /*
117  * loop until authctxt->success == TRUE
118  */
119
120 void
121 do_authentication2()
122 {
123         Authctxt *authctxt = xmalloc(sizeof(*authctxt));
124         memset(authctxt, 'a', sizeof(*authctxt));
125         authctxt->valid = 0;
126         authctxt->attempt = 0;
127         authctxt->failures = 0;
128         authctxt->success = 0;
129         x_authctxt = authctxt;          /*XXX*/
130
131 #ifdef KRB4
132         /* turn off kerberos, not supported by SSH2 */
133         options.kerberos_authentication = 0;
134 #endif
135         dispatch_init(&protocol_error);
136         dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
137         dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
138         do_authenticated2();
139 }
140
141 void
142 protocol_error(int type, int plen, void *ctxt)
143 {
144         log("auth: protocol error: type %d plen %d", type, plen);
145         packet_start(SSH2_MSG_UNIMPLEMENTED);
146         packet_put_int(0);
147         packet_send();
148         packet_write_wait();
149 }
150
151 void
152 input_service_request(int type, int plen, void *ctxt)
153 {
154         Authctxt *authctxt = ctxt;
155         u_int len;
156         int accept = 0;
157         char *service = packet_get_string(&len);
158         packet_done();
159
160         if (authctxt == NULL)
161                 fatal("input_service_request: no authctxt");
162
163         if (strcmp(service, "ssh-userauth") == 0) {
164                 if (!authctxt->success) {
165                         accept = 1;
166                         /* now we can handle user-auth requests */
167                         dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
168                 }
169         }
170         /* XXX all other service requests are denied */
171
172         if (accept) {
173                 packet_start(SSH2_MSG_SERVICE_ACCEPT);
174                 packet_put_cstring(service);
175                 packet_send();
176                 packet_write_wait();
177         } else {
178                 debug("bad service request %s", service);
179                 packet_disconnect("bad service request %s", service);
180         }
181         xfree(service);
182 }
183
184 void
185 input_userauth_request(int type, int plen, void *ctxt)
186 {
187         Authctxt *authctxt = ctxt;
188         Authmethod *m = NULL;
189         char *user, *service, *method;
190         int authenticated = 0;
191
192         if (authctxt == NULL)
193                 fatal("input_userauth_request: no authctxt");
194
195         user = packet_get_string(NULL);
196         service = packet_get_string(NULL);
197         method = packet_get_string(NULL);
198         debug("userauth-request for user %s service %s method %s", user, service, method);
199         debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
200
201         if (authctxt->attempt++ == 0) {
202                 /* setup auth context */
203                 struct passwd *pw = NULL;
204                 setproctitle("%s", user);
205                 pw = getpwnam(user);
206                 if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) {
207                         authctxt->pw = pwcopy(pw);
208                         authctxt->valid = 1;
209                         debug2("input_userauth_request: setting up authctxt for %s", user);
210 #ifdef USE_PAM
211                         start_pam(pw);
212 #endif
213                 } else {
214                         log("input_userauth_request: illegal user %s", user);
215                 }
216                 authctxt->user = xstrdup(user);
217                 authctxt->service = xstrdup(service);
218         } else if (authctxt->valid) {
219                 if (strcmp(user, authctxt->user) != 0 ||
220                     strcmp(service, authctxt->service) != 0) {
221                         log("input_userauth_request: missmatch: (%s,%s)!=(%s,%s)",
222                             user, service, authctxt->user, authctxt->service);
223                         authctxt->valid = 0;
224                 }
225         }
226
227         m = authmethod_lookup(method);
228         if (m != NULL) {
229                 debug2("input_userauth_request: try method %s", method);
230                 authenticated = m->userauth(authctxt);
231         } else {
232                 debug2("input_userauth_request: unsupported method %s", method);
233         }
234         if (!authctxt->valid && authenticated == 1) {
235                 log("input_userauth_request: INTERNAL ERROR: authenticated invalid user %s service %s", user, method);
236                 authenticated = 0;
237         }
238
239         /* Special handling for root */
240         if (authenticated == 1 &&
241             authctxt->valid && authctxt->pw->pw_uid == 0 && !options.permit_root_login) {
242                 authenticated = 0;
243                 log("ROOT LOGIN REFUSED FROM %.200s", get_canonical_hostname());
244         }
245
246 #ifdef USE_PAM
247         if (authenticated && authctxt->user && !do_pam_account(authctxt->user, NULL))
248                 authenticated = 0;
249 #endif /* USE_PAM */
250
251         /* Log before sending the reply */
252         userauth_log(authctxt, authenticated, method);
253         userauth_reply(authctxt, authenticated);
254
255         xfree(service);
256         xfree(user);
257         xfree(method);
258 }
259
260
261 void
262 userauth_log(Authctxt *authctxt, int authenticated, char *method)
263 {
264         void (*authlog) (const char *fmt,...) = verbose;
265         char *user = NULL, *authmsg = NULL;
266
267         /* Raise logging level */
268         if (authenticated == 1 ||
269             !authctxt->valid ||
270             authctxt->failures >= AUTH_FAIL_LOG ||
271             strcmp(method, "password") == 0)
272                 authlog = log;
273
274         if (authenticated == 1) {
275                 authmsg = "Accepted";
276         } else if (authenticated == 0) {
277                 authmsg = "Failed";
278         } else {
279                 authmsg = "Postponed";
280         }
281
282         if (authctxt->valid) {
283                 user = authctxt->pw->pw_uid == 0 ? "ROOT" : authctxt->user;
284         } else {
285                 user = "NOUSER";
286         }
287
288         authlog("%s %s for %.200s from %.200s port %d ssh2",
289             authmsg,
290             method,
291             user,
292             get_remote_ipaddr(),
293             get_remote_port());
294 }
295
296 void   
297 userauth_reply(Authctxt *authctxt, int authenticated)
298 {
299         char *methods;
300         /* XXX todo: check if multiple auth methods are needed */
301         if (authenticated == 1) {
302 #ifdef WITH_AIXAUTHENTICATE
303                 /* We don't have a pty yet, so just label the line as "ssh" */
304                 if (loginsuccess(authctxt->user?authctxt->user:"NOUSER", 
305                         get_canonical_hostname(), "ssh", &aixloginmsg) < 0)
306                         aixloginmsg = NULL;
307 #endif /* WITH_AIXAUTHENTICATE */
308                 /* turn off userauth */
309                 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &protocol_error);
310                 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
311                 packet_send();
312                 packet_write_wait();
313                 /* now we can break out */
314                 authctxt->success = 1;
315         } else if (authenticated == 0) {
316                 if (authctxt->failures++ >= AUTH_FAIL_MAX)
317                         packet_disconnect("too many failed userauth_requests");
318                 methods = authmethods_get();
319                 packet_start(SSH2_MSG_USERAUTH_FAILURE);
320                 packet_put_cstring(methods);
321                 packet_put_char(0);     /* XXX partial success, unused */
322                 packet_send();
323                 packet_write_wait();
324                 xfree(methods);
325         } else {
326                 /* do nothing, we did already send a reply */
327         }
328 }
329
330 int
331 userauth_none(Authctxt *authctxt)
332 {
333         /* disable method "none", only allowed one time */
334         Authmethod *m = authmethod_lookup("none");
335         if (m != NULL)
336                 m->enabled = NULL;
337         packet_done();
338
339         if (authctxt->valid == 0)
340                 return(0);
341                 
342 #ifdef HAVE_CYGWIN
343         if (check_nt_auth(1, authctxt->pw->pw_uid) == 0)
344                 return(0);
345 #endif
346 #ifdef USE_PAM
347         return auth_pam_password(authctxt->pw, "");
348 #elif defined(HAVE_OSF_SIA)
349         return (sia_validate_user(NULL, saved_argc, saved_argv, 
350                 get_canonical_hostname(), authctxt->user?authctxt->user:"NOUSER", 
351                         NULL, 0, NULL, "") == SIASUCCESS);
352 #else /* !HAVE_OSF_SIA && !USE_PAM */
353         return auth_password(authctxt->pw, "");
354 #endif /* USE_PAM */
355 }
356
357 int
358 userauth_passwd(Authctxt *authctxt)
359 {
360         char *password;
361         int authenticated = 0;
362         int change;
363         u_int len;
364         change = packet_get_char();
365         if (change)
366                 log("password change not supported");
367         password = packet_get_string(&len);
368         packet_done();
369         if (authctxt->valid &&
370 #ifdef HAVE_CYGWIN
371                 check_nt_auth(1, authctxt->pw->pw_uid) &&
372 #endif
373 #ifdef USE_PAM
374             auth_pam_password(authctxt->pw, password) == 1)
375 #elif defined(HAVE_OSF_SIA)
376             sia_validate_user(NULL, saved_argc, saved_argv, 
377                         get_canonical_hostname(), authctxt->user?authctxt->user:"NOUSER", 
378                         NULL, 0, NULL, password) == SIASUCCESS)
379 #else /* !USE_PAM && !HAVE_OSF_SIA */
380             auth_password(authctxt->pw, password) == 1)
381 #endif /* USE_PAM */
382                 authenticated = 1;
383         memset(password, 0, len);
384         xfree(password);
385         return authenticated;
386 }
387
388 int
389 userauth_kbdint(Authctxt *authctxt)
390 {
391         int authenticated = 0;
392         char *lang = NULL;
393         char *devs = NULL;
394
395         lang = packet_get_string(NULL);
396         devs = packet_get_string(NULL);
397         packet_done();
398
399         debug("keyboard-interactive language %s devs %s", lang, devs);
400 #ifdef USE_PAM
401         if (authenticated == 0)
402                 authenticated = auth2_pam(authctxt);
403 #endif
404 #ifdef SKEY
405         /* XXX hardcoded, we should look at devs */
406         if (authenticated == 0)
407                 if (options.skey_authentication != 0)
408                         authenticated = auth2_skey(authctxt);
409 #endif
410         xfree(lang);
411         xfree(devs);
412 #ifdef HAVE_CYGWIN
413         if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
414                 return(0);
415 #endif
416         return authenticated;
417 }
418
419 int
420 userauth_pubkey(Authctxt *authctxt)
421 {
422         Buffer b;
423         Key *key;
424         char *pkalg, *pkblob, *sig;
425         u_int alen, blen, slen;
426         int have_sig, pktype;
427         int authenticated = 0;
428
429         if (!authctxt->valid) {
430                 debug2("userauth_pubkey: disabled because of invalid user");
431                 return 0;
432         }
433         have_sig = packet_get_char();
434         if (datafellows & SSH_BUG_PKAUTH) {
435                 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
436                 /* no explicit pkalg given */
437                 pkblob = packet_get_string(&blen);
438                 buffer_init(&b);
439                 buffer_append(&b, pkblob, blen);
440                 /* so we have to extract the pkalg from the pkblob */
441                 pkalg = buffer_get_string(&b, &alen);
442                 buffer_free(&b);
443         } else {
444                 pkalg = packet_get_string(&alen);
445                 pkblob = packet_get_string(&blen);
446         }
447         pktype = key_type_from_name(pkalg);
448         if (pktype == KEY_UNSPEC) {
449                 /* this is perfectly legal */
450                 log("userauth_pubkey: unsupported public key algorithm: %s", pkalg);
451                 xfree(pkalg);
452                 xfree(pkblob);
453                 return 0;
454         }
455         key = key_from_blob(pkblob, blen);
456         if (key != NULL) {
457                 if (have_sig) {
458                         sig = packet_get_string(&slen);
459                         packet_done();
460                         buffer_init(&b);
461                         if (datafellows & SSH_OLD_SESSIONID) {
462                                 buffer_append(&b, session_id2, session_id2_len);
463                         } else {
464                                 buffer_put_string(&b, session_id2, session_id2_len);
465                         }
466                         /* reconstruct packet */
467                         buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
468                         buffer_put_cstring(&b, authctxt->user);
469                         buffer_put_cstring(&b,
470                             datafellows & SSH_BUG_PKSERVICE ?
471                             "ssh-userauth" :
472                             authctxt->service);
473                         if (datafellows & SSH_BUG_PKAUTH) {
474                                 buffer_put_char(&b, have_sig);
475                         } else {
476                                 buffer_put_cstring(&b, "publickey");
477                                 buffer_put_char(&b, have_sig);
478                                 buffer_put_cstring(&b, key_ssh_name(key));
479                         }
480                         buffer_put_string(&b, pkblob, blen);
481 #ifdef DEBUG_PK
482                         buffer_dump(&b);
483 #endif
484                         /* test for correct signature */
485                         if (user_key_allowed(authctxt->pw, key) &&
486                             key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
487                                 authenticated = 1;
488                         buffer_clear(&b);
489                         xfree(sig);
490                 } else {
491                         debug("test whether pkalg/pkblob are acceptable");
492                         packet_done();
493
494                         /* XXX fake reply and always send PK_OK ? */
495                         /*
496                          * XXX this allows testing whether a user is allowed
497                          * to login: if you happen to have a valid pubkey this
498                          * message is sent. the message is NEVER sent at all
499                          * if a user is not allowed to login. is this an
500                          * issue? -markus
501                          */
502                         if (user_key_allowed(authctxt->pw, key)) {
503                                 packet_start(SSH2_MSG_USERAUTH_PK_OK);
504                                 packet_put_string(pkalg, alen);
505                                 packet_put_string(pkblob, blen);
506                                 packet_send();
507                                 packet_write_wait();
508                                 authenticated = -1;
509                         }
510                 }
511                 if (authenticated != 1)
512                         auth_clear_options();
513                 key_free(key);
514         }
515         debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
516         xfree(pkalg);
517         xfree(pkblob);
518 #ifdef HAVE_CYGWIN
519         if (check_nt_auth(0, authctxt->pw->pw_uid) == 0)
520                 return(0);
521 #endif
522         return authenticated;
523 }
524
525 /* get current user */
526
527 struct passwd*
528 auth_get_user(void)
529 {
530         return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
531 }
532
533 #define DELIM   ","
534
535 char *
536 authmethods_get(void)
537 {
538         Authmethod *method = NULL;
539         u_int size = 0;
540         char *list;
541
542         for (method = authmethods; method->name != NULL; method++) {
543                 if (strcmp(method->name, "none") == 0)
544                         continue;
545                 if (method->enabled != NULL && *(method->enabled) != 0) {
546                         if (size != 0)
547                                 size += strlen(DELIM);
548                         size += strlen(method->name);
549                 }
550         }
551         size++;                 /* trailing '\0' */
552         list = xmalloc(size);
553         list[0] = '\0';
554
555         for (method = authmethods; method->name != NULL; method++) {
556                 if (strcmp(method->name, "none") == 0)
557                         continue;
558                 if (method->enabled != NULL && *(method->enabled) != 0) {
559                         if (list[0] != '\0')
560                                 strlcat(list, DELIM, size);
561                         strlcat(list, method->name, size);
562                 }
563         }
564         return list;
565 }
566
567 Authmethod *
568 authmethod_lookup(const char *name)
569 {
570         Authmethod *method = NULL;
571         if (name != NULL)
572                 for (method = authmethods; method->name != NULL; method++)
573                         if (method->enabled != NULL &&
574                             *(method->enabled) != 0 &&
575                             strcmp(name, method->name) == 0)
576                                 return method;
577         debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
578         return NULL;
579 }
580
581 /* return 1 if user allows given key */
582 int
583 user_key_allowed(struct passwd *pw, Key *key)
584 {
585         char line[8192], file[1024];
586         int found_key = 0;
587         FILE *f;
588         u_long linenum = 0;
589         struct stat st;
590         Key *found;
591
592         if (pw == NULL)
593                 return 0;
594
595         /* Temporarily use the user's uid. */
596         temporarily_use_uid(pw->pw_uid);
597
598         /* The authorized keys. */
599         snprintf(file, sizeof file, "%.500s/%.100s", pw->pw_dir,
600             SSH_USER_PERMITTED_KEYS2);
601
602         /* Fail quietly if file does not exist */
603         if (stat(file, &st) < 0) {
604                 /* Restore the privileged uid. */
605                 restore_uid();
606                 return 0;
607         }
608         /* Open the file containing the authorized keys. */
609         f = fopen(file, "r");
610         if (!f) {
611                 /* Restore the privileged uid. */
612                 restore_uid();
613                 return 0;
614         }
615         if (options.strict_modes) {
616                 int fail = 0;
617                 char buf[1024];
618                 /* Check open file in order to avoid open/stat races */
619                 if (fstat(fileno(f), &st) < 0 ||
620                     (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
621                     (st.st_mode & 022) != 0) {
622                         snprintf(buf, sizeof buf,
623                             "%s authentication refused for %.100s: "
624                             "bad ownership or modes for '%s'.",
625                             key_type(key), pw->pw_name, file);
626                         fail = 1;
627                 } else {
628                         /* Check path to SSH_USER_PERMITTED_KEYS */
629                         int i;
630                         static const char *check[] = {
631                                 "", SSH_USER_DIR, NULL
632                         };
633                         for (i = 0; check[i]; i++) {
634                                 snprintf(line, sizeof line, "%.500s/%.100s",
635                                     pw->pw_dir, check[i]);
636                                 if (stat(line, &st) < 0 ||
637                                     (st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
638                                     (st.st_mode & 022) != 0) {
639                                         snprintf(buf, sizeof buf,
640                                             "%s authentication refused for %.100s: "
641                                             "bad ownership or modes for '%s'.",
642                                             key_type(key), pw->pw_name, line);
643                                         fail = 1;
644                                         break;
645                                 }
646                         }
647                 }
648                 if (fail) {
649                         fclose(f);
650                         log("%s",buf);
651                         restore_uid();
652                         return 0;
653                 }
654         }
655         found_key = 0;
656         found = key_new(key->type);
657
658         while (fgets(line, sizeof(line), f)) {
659                 char *cp, *options = NULL;
660                 linenum++;
661                 /* Skip leading whitespace, empty and comment lines. */
662                 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
663                         ;
664                 if (!*cp || *cp == '\n' || *cp == '#')
665                         continue;
666
667                 if (key_read(found, &cp) == -1) {
668                         /* no key?  check if there are options for this key */
669                         int quoted = 0;
670                         debug2("user_key_allowed: check options: '%s'", cp);
671                         options = cp;
672                         for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
673                                 if (*cp == '\\' && cp[1] == '"')
674                                         cp++;   /* Skip both */
675                                 else if (*cp == '"')
676                                         quoted = !quoted;
677                         }
678                         /* Skip remaining whitespace. */
679                         for (; *cp == ' ' || *cp == '\t'; cp++)
680                                 ;
681                         if (key_read(found, &cp) == -1) {
682                                 debug2("user_key_allowed: advance: '%s'", cp);
683                                 /* still no key?  advance to next line*/
684                                 continue;
685                         }
686                 }
687                 if (key_equal(found, key) &&
688                     auth_parse_options(pw, options, linenum) == 1) {
689                         found_key = 1;
690                         debug("matching key found: file %s, line %ld",
691                             file, linenum);
692                         break;
693                 }
694         }
695         restore_uid();
696         fclose(f);
697         key_free(found);
698         return found_key;
699 }
700
701 struct passwd *
702 pwcopy(struct passwd *pw)
703 {
704         struct passwd *copy = xmalloc(sizeof(*copy));
705         memset(copy, 0, sizeof(*copy));
706         copy->pw_name = xstrdup(pw->pw_name);
707         copy->pw_passwd = xstrdup(pw->pw_passwd);
708         copy->pw_uid = pw->pw_uid;
709         copy->pw_gid = pw->pw_gid;
710 #ifdef HAVE_PW_CLASS_IN_PASSWD
711         copy->pw_class = xstrdup(pw->pw_class);
712 #endif
713         copy->pw_dir = xstrdup(pw->pw_dir);
714         copy->pw_shell = xstrdup(pw->pw_shell);
715         return copy;
716 }
This page took 0.087125 seconds and 3 git commands to generate.