forked from kyanny/openssh-for-git
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenssh-6.0p1-debian-authorized-keys-script.diff
209 lines (200 loc) · 6.06 KB
/
openssh-6.0p1-debian-authorized-keys-script.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
diff --git a/auth.c b/auth.c
index 3e8fe57..c7ec40f 100644
--- a/auth.c
+++ b/auth.c
@@ -363,6 +363,15 @@ authorized_principals_file(struct passwd *pw)
return expand_authorized_keys(options.authorized_principals_file, pw);
}
+char *
+authorized_keys_script(struct passwd *pw)
+{
+ if (options.authorized_keys_script)
+ return expand_authorized_keys(options.authorized_keys_script, pw);
+ else
+ return NULL;
+}
+
/* return ok if key exists in sysfile or userfile */
HostStatus
check_key_in_hostfiles(struct passwd *pw, Key *key, const char *host,
diff --git a/auth.h b/auth.h
index 568212f..f08502f 100644
--- a/auth.h
+++ b/auth.h
@@ -171,6 +171,7 @@ void abandon_challenge_response(Authctxt *);
char *expand_authorized_keys(const char *, struct passwd *pw);
char *authorized_principals_file(struct passwd *);
+char *authorized_keys_script(struct passwd *);
FILE *auth_openkeyfile(const char *, struct passwd *, int);
FILE *auth_openprincipals(const char *, struct passwd *, int);
diff --git a/auth2-pubkey.c b/auth2-pubkey.c
index d42ba14..19819ba 100644
--- a/auth2-pubkey.c
+++ b/auth2-pubkey.c
@@ -437,6 +437,97 @@ user_cert_trusted_ca(struct passwd *pw, Key *key)
return ret;
}
+/* check to see if the script specified by file can authorize the key
+ *
+ * the script will have the key written to STDIN, which is identical
+ * to the normal public key format.
+ *
+ * the script must exit with either 0 for success or 1 for failure.
+ * the script can print login options (if any) to STDOUT. No whitepace should be added
+ * to the output.
+ *
+ * Use with caution: the script can hang sshd. It is recommended you code the script
+ * with a timeout set if it cannot determine authenication quickly.
+ */
+static int
+user_key_found_by_script(struct passwd *pw, Key *key, char *file)
+{
+ pid_t pid;
+ char line[SSH_MAX_PUBKEY_BYTES];
+ int pipe_in[2];
+ int pipe_out[2];
+ int exit_code = 1;
+ int success = 0;
+ FILE *f;
+ //mysig_t oldsig;
+
+ pipe(pipe_in);
+ pipe(pipe_out);
+
+ //oldsig = signal(SIGCHLD, SIG_IGN);
+ temporarily_use_uid(pw);
+
+ debug3("user_key_found_by_script: executing %s", file);
+
+ switch ((pid = fork())) {
+ case -1:
+ error("fork(): %s", strerror(errno));
+ restore_uid();
+ return (-1);
+ case 0:
+ /* setup input pipe */
+ close(pipe_in[1]);
+ dup2(pipe_in[0], 0);
+ close(pipe_in[0]);
+
+ /* setup output pipe */
+ close(pipe_out[0]);
+ dup2(pipe_out[1], 1);
+ close(pipe_out[1]);
+
+ execl(file, file, pw->pw_name, NULL);
+
+ /* exec failed */
+ error("execl(): %s", strerror(errno));
+ _exit(1);
+ default:
+ debug3("user_key_found_by_script: script pid %d", pid);
+
+ close(pipe_in[0]);
+ close(pipe_out[1]);
+
+ f = fdopen(pipe_in[1], "w");
+ key_write(key, f);
+ fclose(f);
+
+ while(waitpid(pid, &exit_code, 0) < 0) {
+ switch(errno) {
+ case EINTR:
+ debug3("user_key_found_by_script: waitpid() EINTR, continuing");
+ continue;
+ default:
+ error("waitpid(): %s", strerror(errno));
+ goto waitpid_error;
+ }
+ }
+ if (WIFEXITED(exit_code) && WEXITSTATUS(exit_code) == 0) {
+ int amt_read = read(pipe_out[0], line, sizeof(line) - 1);
+ line[amt_read] = ' ';
+ line[amt_read + 1] = 0;
+ debug3("user_key_found_by_script: options: %s", line);
+ if (auth_parse_options(pw, line, file, 0) == 1)
+ success = 1;
+ }
+ waitpid_error:
+ close(pipe_out[0]);
+ }
+
+ restore_uid();
+ //signal(SIGCHLD, oldsig);
+
+ return success;
+}
+
/* check whether given key is in .ssh/authorized_keys* */
int
user_key_allowed(struct passwd *pw, Key *key)
@@ -459,6 +550,14 @@ user_key_allowed(struct passwd *pw, Key *key)
options.authorized_keys_files[i], pw);
success = user_key_allowed2(pw, key, file);
xfree(file);
+ if (success)
+ return success;
+ }
+
+ /* try the script to find the key */
+ if ((file = authorized_keys_script(pw))) {
+ success = user_key_found_by_script(pw, key, file);
+ xfree(file);
}
return success;
diff --git a/servconf.c b/servconf.c
index 5b3f6f5..361c09b 100644
--- a/servconf.c
+++ b/servconf.c
@@ -140,6 +140,7 @@ initialize_server_options(ServerOptions *options)
options->revoked_keys_file = NULL;
options->trusted_user_ca_keys = NULL;
options->authorized_principals_file = NULL;
+ options->authorized_keys_script = NULL;
options->ip_qos_interactive = -1;
options->ip_qos_bulk = -1;
options->debian_banner = -1;
@@ -333,6 +334,7 @@ typedef enum {
sBanner, sUseDNS, sHostbasedAuthentication,
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
sClientAliveCountMax, sAuthorizedKeysFile,
+ sAuthorizedKeysScript,
sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor,
sGssKeyEx, sGssStoreRekey,
sAcceptEnv, sPermitTunnel,
@@ -464,6 +466,7 @@ static struct {
{ "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL },
{ "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL },
{ "authorizedkeysfile2", sDeprecated, SSHCFG_ALL },
+ { "authorizedkeysscript", sAuthorizedKeysScript, SSHCFG_ALL },
{ "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL},
{ "acceptenv", sAcceptEnv, SSHCFG_GLOBAL },
{ "permittunnel", sPermitTunnel, SSHCFG_ALL },
@@ -1313,6 +1316,10 @@ process_server_config_line(ServerOptions *options, char *line,
}
break;
+ case sAuthorizedKeysScript:
+ charptr = &options->authorized_keys_script;
+ goto parse_filename;
+
case sClientAliveInterval:
intptr = &options->client_alive_interval;
goto parse_time;
@@ -1812,6 +1819,7 @@ dump_config(ServerOptions *o)
dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
dump_cfg_string(sAuthorizedPrincipalsFile,
o->authorized_principals_file);
+ dump_cfg_string(sAuthorizedKeysScript, o->authorized_keys_script);
/* string arguments requiring a lookup */
dump_cfg_string(sLogLevel, log_level_name(o->log_level));
diff --git a/servconf.h b/servconf.h
index 0be15f0..22b92c2 100644
--- a/servconf.h
+++ b/servconf.h
@@ -158,6 +158,8 @@ typedef struct {
u_int num_authkeys_files; /* Files containing public keys */
char *authorized_keys_files[MAX_AUTHKEYS_FILES];
+ char *authorized_keys_script;
+
char *adm_forced_command;
int use_pam; /* Enable auth via PAM */