Add support for mechanisms with no integrity
[openssh.git] / kex.c
1 /* $OpenBSD: kex.c,v 1.86 2010/09/22 05:01:29 djm Exp $ */
2 /*
3  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "includes.h"
27
28 #include <sys/param.h>
29
30 #include <signal.h>
31 #include <stdarg.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #include <openssl/crypto.h>
37
38 #include "xmalloc.h"
39 #include "ssh2.h"
40 #include "buffer.h"
41 #include "packet.h"
42 #include "compat.h"
43 #include "cipher.h"
44 #include "key.h"
45 #include "kex.h"
46 #include "log.h"
47 #include "mac.h"
48 #include "match.h"
49 #include "dispatch.h"
50 #include "monitor.h"
51 #include "roaming.h"
52
53 #ifdef GSSAPI
54 #include "ssh-gss.h"
55 #endif
56
57 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
58 # if defined(HAVE_EVP_SHA256)
59 # define evp_ssh_sha256 EVP_sha256
60 # else
61 extern const EVP_MD *evp_ssh_sha256(void);
62 # endif
63 #endif
64
65 /* prototype */
66 static void kex_kexinit_finish(Kex *);
67 static void kex_choose_conf(Kex *);
68
69 /* Validate KEX method name list */
70 int
71 kex_names_valid(const char *names)
72 {
73         char *s, *cp, *p;
74
75         if (names == NULL || strcmp(names, "") == 0)
76                 return 0;
77         s = cp = xstrdup(names);
78         for ((p = strsep(&cp, ",")); p && *p != '\0';
79             (p = strsep(&cp, ","))) {
80                 if (strcmp(p, KEX_DHGEX_SHA256) != 0 &&
81                     strcmp(p, KEX_DHGEX_SHA1) != 0 &&
82                     strcmp(p, KEX_DH14) != 0 &&
83                     strcmp(p, KEX_DH1) != 0 &&
84                     (strncmp(p, KEX_ECDH_SHA2_STEM,
85                     sizeof(KEX_ECDH_SHA2_STEM) - 1) != 0 ||
86                     kex_ecdh_name_to_nid(p) == -1)) {
87                         error("Unsupported KEX algorithm \"%.100s\"", p);
88                         xfree(s);
89                         return 0;
90                 }
91         }
92         debug3("kex names ok: [%s]", names);
93         xfree(s);
94         return 1;
95 }
96
97 /* put algorithm proposal into buffer */
98 static void
99 kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
100 {
101         u_int i;
102
103         buffer_clear(b);
104         /*
105          * add a dummy cookie, the cookie will be overwritten by
106          * kex_send_kexinit(), each time a kexinit is set
107          */
108         for (i = 0; i < KEX_COOKIE_LEN; i++)
109                 buffer_put_char(b, 0);
110         for (i = 0; i < PROPOSAL_MAX; i++)
111                 buffer_put_cstring(b, proposal[i]);
112         buffer_put_char(b, 0);                  /* first_kex_packet_follows */
113         buffer_put_int(b, 0);                   /* uint32 reserved */
114 }
115
116 /* parse buffer and return algorithm proposal */
117 static char **
118 kex_buf2prop(Buffer *raw, int *first_kex_follows)
119 {
120         Buffer b;
121         u_int i;
122         char **proposal;
123
124         proposal = xcalloc(PROPOSAL_MAX, sizeof(char *));
125
126         buffer_init(&b);
127         buffer_append(&b, buffer_ptr(raw), buffer_len(raw));
128         /* skip cookie */
129         for (i = 0; i < KEX_COOKIE_LEN; i++)
130                 buffer_get_char(&b);
131         /* extract kex init proposal strings */
132         for (i = 0; i < PROPOSAL_MAX; i++) {
133                 proposal[i] = buffer_get_cstring(&b,NULL);
134                 debug2("kex_parse_kexinit: %s", proposal[i]);
135         }
136         /* first kex follows / reserved */
137         i = buffer_get_char(&b);
138         if (first_kex_follows != NULL)
139                 *first_kex_follows = i;
140         debug2("kex_parse_kexinit: first_kex_follows %d ", i);
141         i = buffer_get_int(&b);
142         debug2("kex_parse_kexinit: reserved %u ", i);
143         buffer_free(&b);
144         return proposal;
145 }
146
147 static void
148 kex_prop_free(char **proposal)
149 {
150         u_int i;
151
152         for (i = 0; i < PROPOSAL_MAX; i++)
153                 xfree(proposal[i]);
154         xfree(proposal);
155 }
156
157 /* ARGSUSED */
158 static void
159 kex_protocol_error(int type, u_int32_t seq, void *ctxt)
160 {
161         error("Hm, kex protocol error: type %d seq %u", type, seq);
162 }
163
164 static void
165 kex_reset_dispatch(void)
166 {
167         dispatch_range(SSH2_MSG_TRANSPORT_MIN,
168             SSH2_MSG_TRANSPORT_MAX, &kex_protocol_error);
169         dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
170 }
171
172 void
173 kex_finish(Kex *kex)
174 {
175         kex_reset_dispatch();
176
177         packet_start(SSH2_MSG_NEWKEYS);
178         packet_send();
179         /* packet_write_wait(); */
180         debug("SSH2_MSG_NEWKEYS sent");
181
182         debug("expecting SSH2_MSG_NEWKEYS");
183         packet_read_expect(SSH2_MSG_NEWKEYS);
184         packet_check_eom();
185         debug("SSH2_MSG_NEWKEYS received");
186
187         kex->done = 1;
188         buffer_clear(&kex->peer);
189         /* buffer_clear(&kex->my); */
190         kex->flags &= ~KEX_INIT_SENT;
191         xfree(kex->name);
192         kex->name = NULL;
193 }
194
195 void
196 kex_send_kexinit(Kex *kex)
197 {
198         u_int32_t rnd = 0;
199         u_char *cookie;
200         u_int i;
201
202         if (kex == NULL) {
203                 error("kex_send_kexinit: no kex, cannot rekey");
204                 return;
205         }
206         if (kex->flags & KEX_INIT_SENT) {
207                 debug("KEX_INIT_SENT");
208                 return;
209         }
210         kex->done = 0;
211
212         /* generate a random cookie */
213         if (buffer_len(&kex->my) < KEX_COOKIE_LEN)
214                 fatal("kex_send_kexinit: kex proposal too short");
215         cookie = buffer_ptr(&kex->my);
216         for (i = 0; i < KEX_COOKIE_LEN; i++) {
217                 if (i % 4 == 0)
218                         rnd = arc4random();
219                 cookie[i] = rnd;
220                 rnd >>= 8;
221         }
222         packet_start(SSH2_MSG_KEXINIT);
223         packet_put_raw(buffer_ptr(&kex->my), buffer_len(&kex->my));
224         packet_send();
225         debug("SSH2_MSG_KEXINIT sent");
226         kex->flags |= KEX_INIT_SENT;
227 }
228
229 /* ARGSUSED */
230 void
231 kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
232 {
233         char *ptr;
234         u_int i, dlen;
235         Kex *kex = (Kex *)ctxt;
236
237         debug("SSH2_MSG_KEXINIT received");
238         if (kex == NULL)
239                 fatal("kex_input_kexinit: no kex, cannot rekey");
240
241         ptr = packet_get_raw(&dlen);
242         buffer_append(&kex->peer, ptr, dlen);
243
244         /* discard packet */
245         for (i = 0; i < KEX_COOKIE_LEN; i++)
246                 packet_get_char();
247         for (i = 0; i < PROPOSAL_MAX; i++)
248                 xfree(packet_get_string(NULL));
249         (void) packet_get_char();
250         (void) packet_get_int();
251         packet_check_eom();
252
253         kex_kexinit_finish(kex);
254 }
255
256 Kex *
257 kex_setup(char *proposal[PROPOSAL_MAX])
258 {
259         Kex *kex;
260
261         kex = xcalloc(1, sizeof(*kex));
262         buffer_init(&kex->peer);
263         buffer_init(&kex->my);
264         kex_prop2buf(&kex->my, proposal);
265         kex->done = 0;
266
267         kex_send_kexinit(kex);                                  /* we start */
268         kex_reset_dispatch();
269
270         return kex;
271 }
272
273 static void
274 kex_kexinit_finish(Kex *kex)
275 {
276         if (!(kex->flags & KEX_INIT_SENT))
277                 kex_send_kexinit(kex);
278
279         kex_choose_conf(kex);
280
281         if (kex->kex_type >= 0 && kex->kex_type < KEX_MAX &&
282             kex->kex[kex->kex_type] != NULL) {
283                 (kex->kex[kex->kex_type])(kex);
284         } else {
285                 fatal("Unsupported key exchange %d", kex->kex_type);
286         }
287 }
288
289 static void
290 choose_enc(Enc *enc, char *client, char *server)
291 {
292         char *name = match_list(client, server, NULL);
293         if (name == NULL)
294                 fatal("no matching cipher found: client %s server %s",
295                     client, server);
296         if ((enc->cipher = cipher_by_name(name)) == NULL)
297                 fatal("matching cipher is not supported: %s", name);
298         enc->name = name;
299         enc->enabled = 0;
300         enc->iv = NULL;
301         enc->key = NULL;
302         enc->key_len = cipher_keylen(enc->cipher);
303         enc->block_size = cipher_blocksize(enc->cipher);
304 }
305
306 static void
307 choose_mac(Mac *mac, char *client, char *server)
308 {
309         char *name = match_list(client, server, NULL);
310         if (name == NULL)
311                 fatal("no matching mac found: client %s server %s",
312                     client, server);
313         if (mac_setup(mac, name) < 0)
314                 fatal("unsupported mac %s", name);
315         /* truncate the key */
316         if (datafellows & SSH_BUG_HMAC)
317                 mac->key_len = 16;
318         mac->name = name;
319         mac->key = NULL;
320         mac->enabled = 0;
321 }
322
323 static void
324 choose_comp(Comp *comp, char *client, char *server)
325 {
326         char *name = match_list(client, server, NULL);
327         if (name == NULL)
328                 fatal("no matching comp found: client %s server %s", client, server);
329         if (strcmp(name, "zlib@openssh.com") == 0) {
330                 comp->type = COMP_DELAYED;
331         } else if (strcmp(name, "zlib") == 0) {
332                 comp->type = COMP_ZLIB;
333         } else if (strcmp(name, "none") == 0) {
334                 comp->type = COMP_NONE;
335         } else {
336                 fatal("unsupported comp %s", name);
337         }
338         comp->name = name;
339 }
340
341 static void
342 choose_kex(Kex *k, char *client, char *server)
343 {
344         k->name = match_list(client, server, NULL);
345         if (k->name == NULL)
346                 fatal("Unable to negotiate a key exchange method");
347         if (strcmp(k->name, KEX_DH1) == 0) {
348                 k->kex_type = KEX_DH_GRP1_SHA1;
349                 k->evp_md = EVP_sha1();
350         } else if (strcmp(k->name, KEX_DH14) == 0) {
351                 k->kex_type = KEX_DH_GRP14_SHA1;
352                 k->evp_md = EVP_sha1();
353         } else if (strcmp(k->name, KEX_DHGEX_SHA1) == 0) {
354                 k->kex_type = KEX_DH_GEX_SHA1;
355                 k->evp_md = EVP_sha1();
356 #if OPENSSL_VERSION_NUMBER >= 0x00907000L
357         } else if (strcmp(k->name, KEX_DHGEX_SHA256) == 0) {
358                 k->kex_type = KEX_DH_GEX_SHA256;
359                 k->evp_md = evp_ssh_sha256();
360         } else if (strncmp(k->name, KEX_ECDH_SHA2_STEM,
361             sizeof(KEX_ECDH_SHA2_STEM) - 1) == 0) {
362                 k->kex_type = KEX_ECDH_SHA2;
363                 k->evp_md = kex_ecdh_name_to_evpmd(k->name);
364 #endif
365 #ifdef GSSAPI
366         } else if (strncmp(k->name, KEX_GSS_GEX_SHA1_ID,
367             sizeof(KEX_GSS_GEX_SHA1_ID) - 1) == 0) {
368                 k->kex_type = KEX_GSS_GEX_SHA1;
369                 k->evp_md = EVP_sha1();
370         } else if (strncmp(k->name, KEX_GSS_GRP1_SHA1_ID,
371             sizeof(KEX_GSS_GRP1_SHA1_ID) - 1) == 0) {
372                 k->kex_type = KEX_GSS_GRP1_SHA1;
373                 k->evp_md = EVP_sha1();
374         } else if (strncmp(k->name, KEX_GSS_GRP14_SHA1_ID,
375             sizeof(KEX_GSS_GRP14_SHA1_ID) - 1) == 0) {
376                 k->kex_type = KEX_GSS_GRP14_SHA1;
377                 k->evp_md = EVP_sha1();
378 #endif
379         } else
380                 fatal("bad kex alg %s", k->name);
381 }
382
383 static void
384 choose_hostkeyalg(Kex *k, char *client, char *server)
385 {
386         char *hostkeyalg = match_list(client, server, NULL);
387         if (hostkeyalg == NULL)
388                 fatal("no hostkey alg");
389         k->hostkey_type = key_type_from_name(hostkeyalg);
390         if (k->hostkey_type == KEY_UNSPEC)
391                 fatal("bad hostkey alg '%s'", hostkeyalg);
392         xfree(hostkeyalg);
393 }
394
395 static int
396 proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
397 {
398         static int check[] = {
399                 PROPOSAL_KEX_ALGS, PROPOSAL_SERVER_HOST_KEY_ALGS, -1
400         };
401         int *idx;
402         char *p;
403
404         for (idx = &check[0]; *idx != -1; idx++) {
405                 if ((p = strchr(my[*idx], ',')) != NULL)
406                         *p = '\0';
407                 if ((p = strchr(peer[*idx], ',')) != NULL)
408                         *p = '\0';
409                 if (strcmp(my[*idx], peer[*idx]) != 0) {
410                         debug2("proposal mismatch: my %s peer %s",
411                             my[*idx], peer[*idx]);
412                         return (0);
413                 }
414         }
415         debug2("proposals match");
416         return (1);
417 }
418
419 static void
420 kex_choose_conf(Kex *kex)
421 {
422         Newkeys *newkeys;
423         char **my, **peer;
424         char **cprop, **sprop;
425         int nenc, nmac, ncomp;
426         u_int mode, ctos, need;
427         int first_kex_follows, type;
428
429         my   = kex_buf2prop(&kex->my, NULL);
430         peer = kex_buf2prop(&kex->peer, &first_kex_follows);
431
432         if (kex->server) {
433                 cprop=peer;
434                 sprop=my;
435         } else {
436                 cprop=my;
437                 sprop=peer;
438         }
439
440         /* Check whether server offers roaming */
441         if (!kex->server) {
442                 char *roaming;
443                 roaming = match_list(KEX_RESUME, peer[PROPOSAL_KEX_ALGS], NULL);
444                 if (roaming) {
445                         kex->roaming = 1;
446                         xfree(roaming);
447                 }
448         }
449
450         /* Algorithm Negotiation */
451         for (mode = 0; mode < MODE_MAX; mode++) {
452                 newkeys = xcalloc(1, sizeof(*newkeys));
453                 kex->newkeys[mode] = newkeys;
454                 ctos = (!kex->server && mode == MODE_OUT) ||
455                     (kex->server && mode == MODE_IN);
456                 nenc  = ctos ? PROPOSAL_ENC_ALGS_CTOS  : PROPOSAL_ENC_ALGS_STOC;
457                 nmac  = ctos ? PROPOSAL_MAC_ALGS_CTOS  : PROPOSAL_MAC_ALGS_STOC;
458                 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
459                 choose_enc (&newkeys->enc,  cprop[nenc],  sprop[nenc]);
460                 choose_mac (&newkeys->mac,  cprop[nmac],  sprop[nmac]);
461                 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
462                 debug("kex: %s %s %s %s",
463                     ctos ? "client->server" : "server->client",
464                     newkeys->enc.name,
465                     newkeys->mac.name,
466                     newkeys->comp.name);
467         }
468         choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
469         choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
470             sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
471         need = 0;
472         for (mode = 0; mode < MODE_MAX; mode++) {
473                 newkeys = kex->newkeys[mode];
474                 if (need < newkeys->enc.key_len)
475                         need = newkeys->enc.key_len;
476                 if (need < newkeys->enc.block_size)
477                         need = newkeys->enc.block_size;
478                 if (need < newkeys->mac.key_len)
479                         need = newkeys->mac.key_len;
480         }
481         /* XXX need runden? */
482         kex->we_need = need;
483
484         /* ignore the next message if the proposals do not match */
485         if (first_kex_follows && !proposals_match(my, peer) &&
486             !(datafellows & SSH_BUG_FIRSTKEX)) {
487                 type = packet_read();
488                 debug2("skipping next packet (type %u)", type);
489         }
490
491         kex_prop_free(my);
492         kex_prop_free(peer);
493 }
494
495 static u_char *
496 derive_key(Kex *kex, int id, u_int need, u_char *hash, u_int hashlen,
497     BIGNUM *shared_secret)
498 {
499         Buffer b;
500         EVP_MD_CTX md;
501         char c = id;
502         u_int have;
503         int mdsz;
504         u_char *digest;
505
506         if ((mdsz = EVP_MD_size(kex->evp_md)) <= 0)
507                 fatal("bad kex md size %d", mdsz);
508         digest = xmalloc(roundup(need, mdsz));
509
510         buffer_init(&b);
511         buffer_put_bignum2(&b, shared_secret);
512
513         /* K1 = HASH(K || H || "A" || session_id) */
514         EVP_DigestInit(&md, kex->evp_md);
515         if (!(datafellows & SSH_BUG_DERIVEKEY))
516                 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
517         EVP_DigestUpdate(&md, hash, hashlen);
518         EVP_DigestUpdate(&md, &c, 1);
519         EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
520         EVP_DigestFinal(&md, digest, NULL);
521
522         /*
523          * expand key:
524          * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
525          * Key = K1 || K2 || ... || Kn
526          */
527         for (have = mdsz; need > have; have += mdsz) {
528                 EVP_DigestInit(&md, kex->evp_md);
529                 if (!(datafellows & SSH_BUG_DERIVEKEY))
530                         EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
531                 EVP_DigestUpdate(&md, hash, hashlen);
532                 EVP_DigestUpdate(&md, digest, have);
533                 EVP_DigestFinal(&md, digest + have, NULL);
534         }
535         buffer_free(&b);
536 #ifdef DEBUG_KEX
537         fprintf(stderr, "key '%c'== ", c);
538         dump_digest("key", digest, need);
539 #endif
540         return digest;
541 }
542
543 Newkeys *current_keys[MODE_MAX];
544
545 #define NKEYS   6
546 void
547 kex_derive_keys(Kex *kex, u_char *hash, u_int hashlen, BIGNUM *shared_secret)
548 {
549         u_char *keys[NKEYS];
550         u_int i, mode, ctos;
551
552         for (i = 0; i < NKEYS; i++) {
553                 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, hashlen,
554                     shared_secret);
555         }
556
557         debug2("kex_derive_keys");
558         for (mode = 0; mode < MODE_MAX; mode++) {
559                 current_keys[mode] = kex->newkeys[mode];
560                 kex->newkeys[mode] = NULL;
561                 ctos = (!kex->server && mode == MODE_OUT) ||
562                     (kex->server && mode == MODE_IN);
563                 current_keys[mode]->enc.iv  = keys[ctos ? 0 : 1];
564                 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
565                 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
566         }
567 }
568
569 Newkeys *
570 kex_get_newkeys(int mode)
571 {
572         Newkeys *ret;
573
574         ret = current_keys[mode];
575         current_keys[mode] = NULL;
576         return ret;
577 }
578
579 void
580 derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
581     u_int8_t cookie[8], u_int8_t id[16])
582 {
583         const EVP_MD *evp_md = EVP_md5();
584         EVP_MD_CTX md;
585         u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE];
586         int len;
587
588         EVP_DigestInit(&md, evp_md);
589
590         len = BN_num_bytes(host_modulus);
591         if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
592                 fatal("%s: bad host modulus (len %d)", __func__, len);
593         BN_bn2bin(host_modulus, nbuf);
594         EVP_DigestUpdate(&md, nbuf, len);
595
596         len = BN_num_bytes(server_modulus);
597         if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
598                 fatal("%s: bad server modulus (len %d)", __func__, len);
599         BN_bn2bin(server_modulus, nbuf);
600         EVP_DigestUpdate(&md, nbuf, len);
601
602         EVP_DigestUpdate(&md, cookie, 8);
603
604         EVP_DigestFinal(&md, obuf, NULL);
605         memcpy(id, obuf, 16);
606
607         memset(nbuf, 0, sizeof(nbuf));
608         memset(obuf, 0, sizeof(obuf));
609         memset(&md, 0, sizeof(md));
610 }
611
612 #if defined(DEBUG_KEX) || defined(DEBUG_KEXDH) || defined(DEBUG_KEXECDH)
613 void
614 dump_digest(char *msg, u_char *digest, int len)
615 {
616         int i;
617
618         fprintf(stderr, "%s\n", msg);
619         for (i = 0; i < len; i++) {
620                 fprintf(stderr, "%02x", digest[i]);
621                 if (i%32 == 31)
622                         fprintf(stderr, "\n");
623                 else if (i%8 == 7)
624                         fprintf(stderr, " ");
625         }
626         fprintf(stderr, "\n");
627 }
628 #endif