1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2010, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * \brief Functions to queue create cells, and handle onionskin
10 * parsing and creation.
15 /** Type for a linked list of circuits that are waiting for a free CPU worker
16 * to process a waiting onion handshake. */
17 typedef struct onion_queue_t
{
21 struct onion_queue_t
*next
;
24 /** 5 seconds on the onion queue til we just send back a destroy */
25 #define ONIONQUEUE_WAIT_CUTOFF 5
27 /** First and last elements in the linked list of circuits waiting for CPU
28 * workers, or NULL if the list is empty. */
29 static onion_queue_t
*ol_list
=NULL
;
30 static onion_queue_t
*ol_tail
=NULL
;
31 /** Length of ol_list */
32 static int ol_length
=0;
34 /** Add <b>circ</b> to the end of ol_list and return 0, except
35 * if ol_list is too long, in which case do nothing and return -1.
38 onion_pending_add(or_circuit_t
*circ
, char *onionskin
)
41 time_t now
= time(NULL
);
43 tmp
= tor_malloc_zero(sizeof(onion_queue_t
));
45 tmp
->onionskin
= onionskin
;
46 tmp
->when_added
= now
;
50 tor_assert(!ol_length
);
58 tor_assert(!ol_tail
->next
);
60 if (ol_length
>= get_options()->MaxOnionsPending
) {
61 #define WARN_TOO_MANY_CIRC_CREATIONS_INTERVAL (60)
62 static time_t last_warned
= 0;
63 time_t now
= time(NULL
);
64 if (last_warned
+ WARN_TOO_MANY_CIRC_CREATIONS_INTERVAL
< now
) {
66 "Your computer is too slow to handle this many circuit "
67 "creation requests! Please consider using the "
68 "MaxAdvertisedBandwidth config option or choosing a more "
69 "restricted exit policy.");
79 while ((int)(now
- ol_list
->when_added
) >= ONIONQUEUE_WAIT_CUTOFF
) {
80 /* cull elderly requests. */
82 onion_pending_remove(ol_list
->circ
);
84 "Circuit create request is too old; canceling due to overload.");
85 circuit_mark_for_close(TO_CIRCUIT(circ
), END_CIRC_REASON_RESOURCELIMIT
);
90 /** Remove the first item from ol_list and return it, or return
91 * NULL if the list is empty.
94 onion_next_task(char **onionskin_out
)
99 return NULL
; /* no onions pending, we're done */
101 tor_assert(ol_list
->circ
);
102 tor_assert(ol_list
->circ
->p_conn
); /* make sure it's still valid */
103 tor_assert(ol_length
> 0);
104 circ
= ol_list
->circ
;
105 *onionskin_out
= ol_list
->onionskin
;
106 ol_list
->onionskin
= NULL
; /* prevent free. */
107 onion_pending_remove(ol_list
->circ
);
111 /** Go through ol_list, find the onion_queue_t element which points to
112 * circ, remove and free that element. Leave circ itself alone.
115 onion_pending_remove(or_circuit_t
*circ
)
117 onion_queue_t
*tmpo
, *victim
;
120 return; /* nothing here. */
122 /* first check to see if it's the first entry */
124 if (tmpo
->circ
== circ
) {
125 /* it's the first one. remove it from the list. */
126 ol_list
= tmpo
->next
;
131 } else { /* we need to hunt through the rest of the list */
132 for ( ;tmpo
->next
&& tmpo
->next
->circ
!= circ
; tmpo
=tmpo
->next
) ;
134 log_debug(LD_GENERAL
,
135 "circ (p_circ_id %d) not in list, probably at cpuworker.",
139 /* now we know tmpo->next->circ == circ */
141 tmpo
->next
= victim
->next
;
142 if (ol_tail
== victim
)
147 /* now victim points to the element that needs to be removed */
149 tor_free(victim
->onionskin
);
153 /*----------------------------------------------------------------------*/
155 /** Given a router's 128 byte public key,
156 * stores the following in onion_skin_out:
157 * - [42 bytes] OAEP padding
158 * - [16 bytes] Symmetric key for encrypting blob past RSA
159 * - [70 bytes] g^x part 1 (inside the RSA)
160 * - [58 bytes] g^x part 2 (symmetrically encrypted)
162 * Stores the DH private key into handshake_state_out for later completion
165 * The meeting point/cookies and auth are zeroed out for now.
168 onion_skin_create(crypto_pk_env_t
*dest_router_key
,
169 crypto_dh_env_t
**handshake_state_out
,
170 char *onion_skin_out
) /* ONIONSKIN_CHALLENGE_LEN bytes */
172 char challenge
[DH_KEY_LEN
];
173 crypto_dh_env_t
*dh
= NULL
;
174 int dhbytes
, pkbytes
;
176 tor_assert(dest_router_key
);
177 tor_assert(handshake_state_out
);
178 tor_assert(onion_skin_out
);
179 *handshake_state_out
= NULL
;
180 memset(onion_skin_out
, 0, ONIONSKIN_CHALLENGE_LEN
);
182 if (!(dh
= crypto_dh_new()))
185 dhbytes
= crypto_dh_get_bytes(dh
);
186 pkbytes
= (int) crypto_pk_keysize(dest_router_key
);
187 tor_assert(dhbytes
== 128);
188 tor_assert(pkbytes
== 128);
190 if (crypto_dh_get_public(dh
, challenge
, dhbytes
))
193 note_crypto_pk_op(ENC_ONIONSKIN
);
195 /* set meeting point, meeting cookie, etc here. Leave zero for now. */
196 if (crypto_pk_public_hybrid_encrypt(dest_router_key
, onion_skin_out
,
197 challenge
, DH_KEY_LEN
,
198 PK_PKCS1_OAEP_PADDING
, 1)<0)
201 memset(challenge
, 0, sizeof(challenge
));
202 *handshake_state_out
= dh
;
206 memset(challenge
, 0, sizeof(challenge
));
207 if (dh
) crypto_dh_free(dh
);
211 /** Given an encrypted DH public key as generated by onion_skin_create,
212 * and the private key for this onion router, generate the reply (128-byte
213 * DH plus the first 20 bytes of shared key material), and store the
214 * next key_out_len bytes of key material in key_out.
217 onion_skin_server_handshake(const char *onion_skin
, /*ONIONSKIN_CHALLENGE_LEN*/
218 crypto_pk_env_t
*private_key
,
219 crypto_pk_env_t
*prev_private_key
,
220 char *handshake_reply_out
, /*ONIONSKIN_REPLY_LEN*/
224 char challenge
[ONIONSKIN_CHALLENGE_LEN
];
225 crypto_dh_env_t
*dh
= NULL
;
227 char *key_material
=NULL
;
228 size_t key_material_len
=0;
234 k
= i
==0?private_key
:prev_private_key
;
237 note_crypto_pk_op(DEC_ONIONSKIN
);
238 len
= crypto_pk_private_hybrid_decrypt(k
, challenge
,
239 onion_skin
, ONIONSKIN_CHALLENGE_LEN
,
240 PK_PKCS1_OAEP_PADDING
,0);
245 log_info(LD_PROTOCOL
,
246 "Couldn't decrypt onionskin: client may be using old onion key");
248 } else if (len
!= DH_KEY_LEN
) {
249 log_warn(LD_PROTOCOL
, "Unexpected onionskin length after decryption: %ld",
254 dh
= crypto_dh_new();
255 if (crypto_dh_get_public(dh
, handshake_reply_out
, DH_KEY_LEN
)) {
256 log_info(LD_GENERAL
, "crypto_dh_get_public failed.");
260 key_material_len
= DIGEST_LEN
+key_out_len
;
261 key_material
= tor_malloc(key_material_len
);
262 len
= crypto_dh_compute_secret(LOG_PROTOCOL_WARN
, dh
, challenge
,
263 DH_KEY_LEN
, key_material
,
266 log_info(LD_GENERAL
, "crypto_dh_compute_secret failed.");
270 /* send back H(K|0) as proof that we learned K. */
271 memcpy(handshake_reply_out
+DH_KEY_LEN
, key_material
, DIGEST_LEN
);
273 /* use the rest of the key material for our shared keys, digests, etc */
274 memcpy(key_out
, key_material
+DIGEST_LEN
, key_out_len
);
276 memset(challenge
, 0, sizeof(challenge
));
277 memset(key_material
, 0, key_material_len
);
278 tor_free(key_material
);
282 memset(challenge
, 0, sizeof(challenge
));
284 memset(key_material
, 0, key_material_len
);
285 tor_free(key_material
);
287 if (dh
) crypto_dh_free(dh
);
292 /** Finish the client side of the DH handshake.
293 * Given the 128 byte DH reply + 20 byte hash as generated by
294 * onion_skin_server_handshake and the handshake state generated by
295 * onion_skin_create, verify H(K) with the first 20 bytes of shared
296 * key material, then generate key_out_len more bytes of shared key
297 * material and store them in key_out.
299 * After the invocation, call crypto_dh_free on handshake_state.
302 onion_skin_client_handshake(crypto_dh_env_t
*handshake_state
,
303 const char *handshake_reply
, /* ONIONSKIN_REPLY_LEN bytes */
308 char *key_material
=NULL
;
309 size_t key_material_len
;
310 tor_assert(crypto_dh_get_bytes(handshake_state
) == DH_KEY_LEN
);
312 key_material_len
= DIGEST_LEN
+ key_out_len
;
313 key_material
= tor_malloc(key_material_len
);
314 len
= crypto_dh_compute_secret(LOG_PROTOCOL_WARN
, handshake_state
,
315 handshake_reply
, DH_KEY_LEN
, key_material
,
320 if (memcmp(key_material
, handshake_reply
+DH_KEY_LEN
, DIGEST_LEN
)) {
321 /* H(K) does *not* match. Something fishy. */
322 log_warn(LD_PROTOCOL
,"Digest DOES NOT MATCH on onion handshake. "
327 /* use the rest of the key material for our shared keys, digests, etc */
328 memcpy(key_out
, key_material
+DIGEST_LEN
, key_out_len
);
330 memset(key_material
, 0, key_material_len
);
331 tor_free(key_material
);
334 memset(key_material
, 0, key_material_len
);
335 tor_free(key_material
);
339 /** Implement the server side of the CREATE_FAST abbreviated handshake. The
340 * client has provided DIGEST_LEN key bytes in <b>key_in</b> ("x"). We
341 * generate a reply of DIGEST_LEN*2 bytes in <b>key_out</b>, consisting of a
342 * new random "y", followed by H(x|y) to check for correctness. We set
343 * <b>key_out_len</b> bytes of key material in <b>key_out</b>.
344 * Return 0 on success, <0 on failure.
347 fast_server_handshake(const char *key_in
, /* DIGEST_LEN bytes */
348 char *handshake_reply_out
, /* DIGEST_LEN*2 bytes */
352 char tmp
[DIGEST_LEN
+DIGEST_LEN
];
357 if (crypto_rand(handshake_reply_out
, DIGEST_LEN
)<0)
360 memcpy(tmp
, key_in
, DIGEST_LEN
);
361 memcpy(tmp
+DIGEST_LEN
, handshake_reply_out
, DIGEST_LEN
);
362 out_len
= key_out_len
+DIGEST_LEN
;
363 out
= tor_malloc(out_len
);
364 if (crypto_expand_key_material(tmp
, sizeof(tmp
), out
, out_len
)) {
367 memcpy(handshake_reply_out
+DIGEST_LEN
, out
, DIGEST_LEN
);
368 memcpy(key_out
, out
+DIGEST_LEN
, key_out_len
);
371 memset(tmp
, 0, sizeof(tmp
));
372 memset(out
, 0, out_len
);
377 /** Implement the second half of the client side of the CREATE_FAST handshake.
378 * We sent the server <b>handshake_state</b> ("x") already, and the server
379 * told us <b>handshake_reply_out</b> (y|H(x|y)). Make sure that the hash is
380 * correct, and generate key material in <b>key_out</b>. Return 0 on success,
383 * NOTE: The "CREATE_FAST" handshake path is distinguishable from regular
384 * "onionskin" handshakes, and is not secure if an adversary can see or modify
385 * the messages. Therefore, it should only be used by clients, and only as
386 * the first hop of a circuit (since the first hop is already authenticated
387 * and protected by TLS).
390 fast_client_handshake(const char *handshake_state
, /* DIGEST_LEN bytes */
391 const char *handshake_reply_out
, /* DIGEST_LEN*2 bytes */
395 char tmp
[DIGEST_LEN
+DIGEST_LEN
];
400 memcpy(tmp
, handshake_state
, DIGEST_LEN
);
401 memcpy(tmp
+DIGEST_LEN
, handshake_reply_out
, DIGEST_LEN
);
402 out_len
= key_out_len
+DIGEST_LEN
;
403 out
= tor_malloc(out_len
);
404 if (crypto_expand_key_material(tmp
, sizeof(tmp
), out
, out_len
)) {
407 if (memcmp(out
, handshake_reply_out
+DIGEST_LEN
, DIGEST_LEN
)) {
408 /* H(K) does *not* match. Something fishy. */
409 log_warn(LD_PROTOCOL
,"Digest DOES NOT MATCH on fast handshake. "
413 memcpy(key_out
, out
+DIGEST_LEN
, key_out_len
);
416 memset(tmp
, 0, sizeof(tmp
));
417 memset(out
, 0, out_len
);
422 /** Remove all circuits from the pending list. Called from tor_free_all. */
424 clear_pending_onions(void)
427 onion_queue_t
*victim
= ol_list
;
428 ol_list
= victim
->next
;
429 tor_free(victim
->onionskin
);
432 ol_list
= ol_tail
= NULL
;