AuthorizedKeysCommandUser: use the user being authenticated by default (#953534)

This commit is contained in:
Petr Lautrbach 2013-04-19 14:12:14 +02:00
parent 1e3cc96dcb
commit fb00871f19
1 changed files with 11 additions and 11 deletions

View File

@ -119,10 +119,9 @@ diff -up openssh-6.1p1/auth2-pubkey.c.akc openssh-6.1p1/auth2-pubkey.c
+ return 0; + return 0;
+ +
+ if (options.authorized_keys_command_user == NULL) { + if (options.authorized_keys_command_user == NULL) {
+ error("No user for AuthorizedKeysCommand specified, skipping"); + pw = user_pw;
+ return 0;
+ } + }
+ + else {
+ username = percent_expand(options.authorized_keys_command_user, + username = percent_expand(options.authorized_keys_command_user,
+ "u", user_pw->pw_name, (char *)NULL); + "u", user_pw->pw_name, (char *)NULL);
+ pw = getpwnam(username); + pw = getpwnam(username);
@ -133,6 +132,7 @@ diff -up openssh-6.1p1/auth2-pubkey.c.akc openssh-6.1p1/auth2-pubkey.c
+ return 0; + return 0;
+ } + }
+ free(username); + free(username);
+ }
+ +
+ temporarily_use_uid(pw); + temporarily_use_uid(pw);
+ +