s3_pkt.c 58 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748
  1. /* ssl/s3_pkt.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* ====================================================================
  59. * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
  60. *
  61. * Redistribution and use in source and binary forms, with or without
  62. * modification, are permitted provided that the following conditions
  63. * are met:
  64. *
  65. * 1. Redistributions of source code must retain the above copyright
  66. * notice, this list of conditions and the following disclaimer.
  67. *
  68. * 2. Redistributions in binary form must reproduce the above copyright
  69. * notice, this list of conditions and the following disclaimer in
  70. * the documentation and/or other materials provided with the
  71. * distribution.
  72. *
  73. * 3. All advertising materials mentioning features or use of this
  74. * software must display the following acknowledgment:
  75. * "This product includes software developed by the OpenSSL Project
  76. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  77. *
  78. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  79. * endorse or promote products derived from this software without
  80. * prior written permission. For written permission, please contact
  81. * openssl-core@openssl.org.
  82. *
  83. * 5. Products derived from this software may not be called "OpenSSL"
  84. * nor may "OpenSSL" appear in their names without prior written
  85. * permission of the OpenSSL Project.
  86. *
  87. * 6. Redistributions of any form whatsoever must retain the following
  88. * acknowledgment:
  89. * "This product includes software developed by the OpenSSL Project
  90. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  91. *
  92. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  93. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  94. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  95. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  96. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  97. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  98. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  99. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  100. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  101. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  102. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  103. * OF THE POSSIBILITY OF SUCH DAMAGE.
  104. * ====================================================================
  105. *
  106. * This product includes cryptographic software written by Eric Young
  107. * (eay@cryptsoft.com). This product includes software written by Tim
  108. * Hudson (tjh@cryptsoft.com).
  109. *
  110. */
  111. #include <stdio.h>
  112. #include <limits.h>
  113. #include <errno.h>
  114. #define USE_SOCKETS
  115. #include "ssl_locl.h"
  116. #include <openssl/evp.h>
  117. #include <openssl/buffer.h>
  118. #include <openssl/rand.h>
  119. #ifndef EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
  120. # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0
  121. #endif
  122. #if defined(OPENSSL_SMALL_FOOTPRINT) || \
  123. !( defined(AES_ASM) && ( \
  124. defined(__x86_64) || defined(__x86_64__) || \
  125. defined(_M_AMD64) || defined(_M_X64) || \
  126. defined(__INTEL__) ) \
  127. )
  128. # undef EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
  129. # define EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK 0
  130. #endif
  131. static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
  132. unsigned int len, int create_empty_fragment);
  133. static int ssl3_get_record(SSL *s);
  134. int ssl3_read_n(SSL *s, int n, int max, int extend)
  135. {
  136. /*
  137. * If extend == 0, obtain new n-byte packet; if extend == 1, increase
  138. * packet by another n bytes. The packet will be in the sub-array of
  139. * s->s3->rbuf.buf specified by s->packet and s->packet_length. (If
  140. * s->read_ahead is set, 'max' bytes may be stored in rbuf [plus
  141. * s->packet_length bytes if extend == 1].)
  142. */
  143. int i, len, left;
  144. long align = 0;
  145. unsigned char *pkt;
  146. SSL3_BUFFER *rb;
  147. if (n <= 0)
  148. return n;
  149. rb = &(s->s3->rbuf);
  150. if (rb->buf == NULL)
  151. if (!ssl3_setup_read_buffer(s))
  152. return -1;
  153. left = rb->left;
  154. #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
  155. align = (long)rb->buf + SSL3_RT_HEADER_LENGTH;
  156. align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
  157. #endif
  158. if (!extend) {
  159. /* start with empty packet ... */
  160. if (left == 0)
  161. rb->offset = align;
  162. else if (align != 0 && left >= SSL3_RT_HEADER_LENGTH) {
  163. /*
  164. * check if next packet length is large enough to justify payload
  165. * alignment...
  166. */
  167. pkt = rb->buf + rb->offset;
  168. if (pkt[0] == SSL3_RT_APPLICATION_DATA
  169. && (pkt[3] << 8 | pkt[4]) >= 128) {
  170. /*
  171. * Note that even if packet is corrupted and its length field
  172. * is insane, we can only be led to wrong decision about
  173. * whether memmove will occur or not. Header values has no
  174. * effect on memmove arguments and therefore no buffer
  175. * overrun can be triggered.
  176. */
  177. memmove(rb->buf + align, pkt, left);
  178. rb->offset = align;
  179. }
  180. }
  181. s->packet = rb->buf + rb->offset;
  182. s->packet_length = 0;
  183. /* ... now we can act as if 'extend' was set */
  184. }
  185. /*
  186. * For DTLS/UDP reads should not span multiple packets because the read
  187. * operation returns the whole packet at once (as long as it fits into
  188. * the buffer).
  189. */
  190. if (SSL_IS_DTLS(s)) {
  191. if (left == 0 && extend)
  192. return 0;
  193. if (left > 0 && n > left)
  194. n = left;
  195. }
  196. /* if there is enough in the buffer from a previous read, take some */
  197. if (left >= n) {
  198. s->packet_length += n;
  199. rb->left = left - n;
  200. rb->offset += n;
  201. return (n);
  202. }
  203. /* else we need to read more data */
  204. len = s->packet_length;
  205. pkt = rb->buf + align;
  206. /*
  207. * Move any available bytes to front of buffer: 'len' bytes already
  208. * pointed to by 'packet', 'left' extra ones at the end
  209. */
  210. if (s->packet != pkt) { /* len > 0 */
  211. memmove(pkt, s->packet, len + left);
  212. s->packet = pkt;
  213. rb->offset = len + align;
  214. }
  215. if (n > (int)(rb->len - rb->offset)) { /* does not happen */
  216. SSLerr(SSL_F_SSL3_READ_N, ERR_R_INTERNAL_ERROR);
  217. return -1;
  218. }
  219. /* We always act like read_ahead is set for DTLS */
  220. if (!s->read_ahead && !SSL_IS_DTLS(s))
  221. /* ignore max parameter */
  222. max = n;
  223. else {
  224. if (max < n)
  225. max = n;
  226. if (max > (int)(rb->len - rb->offset))
  227. max = rb->len - rb->offset;
  228. }
  229. while (left < n) {
  230. /*
  231. * Now we have len+left bytes at the front of s->s3->rbuf.buf and
  232. * need to read in more until we have len+n (up to len+max if
  233. * possible)
  234. */
  235. clear_sys_error();
  236. if (s->rbio != NULL) {
  237. s->rwstate = SSL_READING;
  238. i = BIO_read(s->rbio, pkt + len + left, max - left);
  239. } else {
  240. SSLerr(SSL_F_SSL3_READ_N, SSL_R_READ_BIO_NOT_SET);
  241. i = -1;
  242. }
  243. if (i <= 0) {
  244. rb->left = left;
  245. if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
  246. if (len + left == 0)
  247. ssl3_release_read_buffer(s);
  248. return (i);
  249. }
  250. left += i;
  251. /*
  252. * reads should *never* span multiple packets for DTLS because the
  253. * underlying transport protocol is message oriented as opposed to
  254. * byte oriented as in the TLS case.
  255. */
  256. if (SSL_IS_DTLS(s)) {
  257. if (n > left)
  258. n = left; /* makes the while condition false */
  259. }
  260. }
  261. /* done reading, now the book-keeping */
  262. rb->offset += n;
  263. rb->left = left - n;
  264. s->packet_length += n;
  265. s->rwstate = SSL_NOTHING;
  266. return (n);
  267. }
  268. /*
  269. * MAX_EMPTY_RECORDS defines the number of consecutive, empty records that
  270. * will be processed per call to ssl3_get_record. Without this limit an
  271. * attacker could send empty records at a faster rate than we can process and
  272. * cause ssl3_get_record to loop forever.
  273. */
  274. #define MAX_EMPTY_RECORDS 32
  275. /*-
  276. * Call this to get a new input record.
  277. * It will return <= 0 if more data is needed, normally due to an error
  278. * or non-blocking IO.
  279. * When it finishes, one packet has been decoded and can be found in
  280. * ssl->s3->rrec.type - is the type of record
  281. * ssl->s3->rrec.data, - data
  282. * ssl->s3->rrec.length, - number of bytes
  283. */
  284. /* used only by ssl3_read_bytes */
  285. static int ssl3_get_record(SSL *s)
  286. {
  287. int ssl_major, ssl_minor, al;
  288. int enc_err, n, i, ret = -1;
  289. SSL3_RECORD *rr;
  290. SSL_SESSION *sess;
  291. unsigned char *p;
  292. unsigned char md[EVP_MAX_MD_SIZE];
  293. short version;
  294. unsigned mac_size, orig_len;
  295. size_t extra;
  296. unsigned empty_record_count = 0;
  297. rr = &(s->s3->rrec);
  298. sess = s->session;
  299. if (s->options & SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER)
  300. extra = SSL3_RT_MAX_EXTRA;
  301. else
  302. extra = 0;
  303. if (extra && !s->s3->init_extra) {
  304. /*
  305. * An application error: SLS_OP_MICROSOFT_BIG_SSLV3_BUFFER set after
  306. * ssl3_setup_buffers() was done
  307. */
  308. SSLerr(SSL_F_SSL3_GET_RECORD, ERR_R_INTERNAL_ERROR);
  309. return -1;
  310. }
  311. again:
  312. /* check if we have the header */
  313. if ((s->rstate != SSL_ST_READ_BODY) ||
  314. (s->packet_length < SSL3_RT_HEADER_LENGTH)) {
  315. n = ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0);
  316. if (n <= 0)
  317. return (n); /* error or non-blocking */
  318. s->rstate = SSL_ST_READ_BODY;
  319. p = s->packet;
  320. if (s->msg_callback)
  321. s->msg_callback(0, 0, SSL3_RT_HEADER, p, 5, s,
  322. s->msg_callback_arg);
  323. /* Pull apart the header into the SSL3_RECORD */
  324. rr->type = *(p++);
  325. ssl_major = *(p++);
  326. ssl_minor = *(p++);
  327. version = (ssl_major << 8) | ssl_minor;
  328. n2s(p, rr->length);
  329. #if 0
  330. fprintf(stderr, "Record type=%d, Length=%d\n", rr->type, rr->length);
  331. #endif
  332. /* Lets check version */
  333. if (!s->first_packet) {
  334. if (version != s->version) {
  335. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_WRONG_VERSION_NUMBER);
  336. if ((s->version & 0xFF00) == (version & 0xFF00)
  337. && !s->enc_write_ctx && !s->write_hash) {
  338. if (rr->type == SSL3_RT_ALERT) {
  339. /*
  340. * The record is using an incorrect version number, but
  341. * what we've got appears to be an alert. We haven't
  342. * read the body yet to check whether its a fatal or
  343. * not - but chances are it is. We probably shouldn't
  344. * send a fatal alert back. We'll just end.
  345. */
  346. goto err;
  347. }
  348. /*
  349. * Send back error using their minor version number :-)
  350. */
  351. s->version = (unsigned short)version;
  352. }
  353. al = SSL_AD_PROTOCOL_VERSION;
  354. goto f_err;
  355. }
  356. }
  357. if ((version >> 8) != SSL3_VERSION_MAJOR) {
  358. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_WRONG_VERSION_NUMBER);
  359. goto err;
  360. }
  361. if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH) {
  362. al = SSL_AD_RECORD_OVERFLOW;
  363. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_PACKET_LENGTH_TOO_LONG);
  364. goto f_err;
  365. }
  366. /* now s->rstate == SSL_ST_READ_BODY */
  367. }
  368. /* s->rstate == SSL_ST_READ_BODY, get and decode the data */
  369. if (rr->length > s->packet_length - SSL3_RT_HEADER_LENGTH) {
  370. /* now s->packet_length == SSL3_RT_HEADER_LENGTH */
  371. i = rr->length;
  372. n = ssl3_read_n(s, i, i, 1);
  373. if (n <= 0)
  374. return (n); /* error or non-blocking io */
  375. /*
  376. * now n == rr->length, and s->packet_length == SSL3_RT_HEADER_LENGTH
  377. * + rr->length
  378. */
  379. }
  380. s->rstate = SSL_ST_READ_HEADER; /* set state for later operations */
  381. /*
  382. * At this point, s->packet_length == SSL3_RT_HEADER_LNGTH + rr->length,
  383. * and we have that many bytes in s->packet
  384. */
  385. rr->input = &(s->packet[SSL3_RT_HEADER_LENGTH]);
  386. /*
  387. * ok, we can now read from 's->packet' data into 'rr' rr->input points
  388. * at rr->length bytes, which need to be copied into rr->data by either
  389. * the decryption or by the decompression When the data is 'copied' into
  390. * the rr->data buffer, rr->input will be pointed at the new buffer
  391. */
  392. /*
  393. * We now have - encrypted [ MAC [ compressed [ plain ] ] ] rr->length
  394. * bytes of encrypted compressed stuff.
  395. */
  396. /* check is not needed I believe */
  397. if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH + extra) {
  398. al = SSL_AD_RECORD_OVERFLOW;
  399. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
  400. goto f_err;
  401. }
  402. /* decrypt in place in 'rr->input' */
  403. rr->data = rr->input;
  404. enc_err = s->method->ssl3_enc->enc(s, 0);
  405. /*-
  406. * enc_err is:
  407. * 0: (in non-constant time) if the record is publically invalid.
  408. * 1: if the padding is valid
  409. * -1: if the padding is invalid
  410. */
  411. if (enc_err == 0) {
  412. al = SSL_AD_DECRYPTION_FAILED;
  413. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BLOCK_CIPHER_PAD_IS_WRONG);
  414. goto f_err;
  415. }
  416. #ifdef TLS_DEBUG
  417. printf("dec %d\n", rr->length);
  418. {
  419. unsigned int z;
  420. for (z = 0; z < rr->length; z++)
  421. printf("%02X%c", rr->data[z], ((z + 1) % 16) ? ' ' : '\n');
  422. }
  423. printf("\n");
  424. #endif
  425. /* r->length is now the compressed data plus mac */
  426. if ((sess != NULL) &&
  427. (s->enc_read_ctx != NULL) && (EVP_MD_CTX_md(s->read_hash) != NULL)) {
  428. /* s->read_hash != NULL => mac_size != -1 */
  429. unsigned char *mac = NULL;
  430. unsigned char mac_tmp[EVP_MAX_MD_SIZE];
  431. mac_size = EVP_MD_CTX_size(s->read_hash);
  432. OPENSSL_assert(mac_size <= EVP_MAX_MD_SIZE);
  433. /*
  434. * kludge: *_cbc_remove_padding passes padding length in rr->type
  435. */
  436. orig_len = rr->length + ((unsigned int)rr->type >> 8);
  437. /*
  438. * orig_len is the length of the record before any padding was
  439. * removed. This is public information, as is the MAC in use,
  440. * therefore we can safely process the record in a different amount
  441. * of time if it's too short to possibly contain a MAC.
  442. */
  443. if (orig_len < mac_size ||
  444. /* CBC records must have a padding length byte too. */
  445. (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE &&
  446. orig_len < mac_size + 1)) {
  447. al = SSL_AD_DECODE_ERROR;
  448. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_LENGTH_TOO_SHORT);
  449. goto f_err;
  450. }
  451. if (EVP_CIPHER_CTX_mode(s->enc_read_ctx) == EVP_CIPH_CBC_MODE) {
  452. /*
  453. * We update the length so that the TLS header bytes can be
  454. * constructed correctly but we need to extract the MAC in
  455. * constant time from within the record, without leaking the
  456. * contents of the padding bytes.
  457. */
  458. mac = mac_tmp;
  459. ssl3_cbc_copy_mac(mac_tmp, rr, mac_size, orig_len);
  460. rr->length -= mac_size;
  461. } else {
  462. /*
  463. * In this case there's no padding, so |orig_len| equals
  464. * |rec->length| and we checked that there's enough bytes for
  465. * |mac_size| above.
  466. */
  467. rr->length -= mac_size;
  468. mac = &rr->data[rr->length];
  469. }
  470. i = s->method->ssl3_enc->mac(s, md, 0 /* not send */ );
  471. if (i < 0 || mac == NULL
  472. || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0)
  473. enc_err = -1;
  474. if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + extra + mac_size)
  475. enc_err = -1;
  476. }
  477. if (enc_err < 0) {
  478. /*
  479. * A separate 'decryption_failed' alert was introduced with TLS 1.0,
  480. * SSL 3.0 only has 'bad_record_mac'. But unless a decryption
  481. * failure is directly visible from the ciphertext anyway, we should
  482. * not reveal which kind of error occured -- this might become
  483. * visible to an attacker (e.g. via a logfile)
  484. */
  485. al = SSL_AD_BAD_RECORD_MAC;
  486. SSLerr(SSL_F_SSL3_GET_RECORD,
  487. SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
  488. goto f_err;
  489. }
  490. /* r->length is now just compressed */
  491. if (s->expand != NULL) {
  492. if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + extra) {
  493. al = SSL_AD_RECORD_OVERFLOW;
  494. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_COMPRESSED_LENGTH_TOO_LONG);
  495. goto f_err;
  496. }
  497. if (!ssl3_do_uncompress(s)) {
  498. al = SSL_AD_DECOMPRESSION_FAILURE;
  499. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_DECOMPRESSION);
  500. goto f_err;
  501. }
  502. }
  503. if (rr->length > SSL3_RT_MAX_PLAIN_LENGTH + extra) {
  504. al = SSL_AD_RECORD_OVERFLOW;
  505. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_DATA_LENGTH_TOO_LONG);
  506. goto f_err;
  507. }
  508. rr->off = 0;
  509. /*-
  510. * So at this point the following is true
  511. * ssl->s3->rrec.type is the type of record
  512. * ssl->s3->rrec.length == number of bytes in record
  513. * ssl->s3->rrec.off == offset to first valid byte
  514. * ssl->s3->rrec.data == where to take bytes from, increment
  515. * after use :-).
  516. */
  517. /* we have pulled in a full packet so zero things */
  518. s->packet_length = 0;
  519. /* just read a 0 length packet */
  520. if (rr->length == 0) {
  521. empty_record_count++;
  522. if (empty_record_count > MAX_EMPTY_RECORDS) {
  523. al = SSL_AD_UNEXPECTED_MESSAGE;
  524. SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_RECORD_TOO_SMALL);
  525. goto f_err;
  526. }
  527. goto again;
  528. }
  529. #if 0
  530. fprintf(stderr, "Ultimate Record type=%d, Length=%d\n", rr->type,
  531. rr->length);
  532. #endif
  533. return (1);
  534. f_err:
  535. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  536. err:
  537. return (ret);
  538. }
  539. int ssl3_do_uncompress(SSL *ssl)
  540. {
  541. #ifndef OPENSSL_NO_COMP
  542. int i;
  543. SSL3_RECORD *rr;
  544. rr = &(ssl->s3->rrec);
  545. i = COMP_expand_block(ssl->expand, rr->comp,
  546. SSL3_RT_MAX_PLAIN_LENGTH, rr->data,
  547. (int)rr->length);
  548. if (i < 0)
  549. return (0);
  550. else
  551. rr->length = i;
  552. rr->data = rr->comp;
  553. #endif
  554. return (1);
  555. }
  556. int ssl3_do_compress(SSL *ssl)
  557. {
  558. #ifndef OPENSSL_NO_COMP
  559. int i;
  560. SSL3_RECORD *wr;
  561. wr = &(ssl->s3->wrec);
  562. i = COMP_compress_block(ssl->compress, wr->data,
  563. SSL3_RT_MAX_COMPRESSED_LENGTH,
  564. wr->input, (int)wr->length);
  565. if (i < 0)
  566. return (0);
  567. else
  568. wr->length = i;
  569. wr->input = wr->data;
  570. #endif
  571. return (1);
  572. }
  573. /*
  574. * Call this to write data in records of type 'type' It will return <= 0 if
  575. * not all data has been sent or non-blocking IO.
  576. */
  577. int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len)
  578. {
  579. const unsigned char *buf = buf_;
  580. int tot;
  581. unsigned int n, nw;
  582. #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
  583. unsigned int max_send_fragment;
  584. #endif
  585. SSL3_BUFFER *wb = &(s->s3->wbuf);
  586. int i;
  587. s->rwstate = SSL_NOTHING;
  588. OPENSSL_assert(s->s3->wnum <= INT_MAX);
  589. tot = s->s3->wnum;
  590. s->s3->wnum = 0;
  591. if (SSL_in_init(s) && !s->in_handshake) {
  592. i = s->handshake_func(s);
  593. if (i < 0)
  594. return (i);
  595. if (i == 0) {
  596. SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
  597. return -1;
  598. }
  599. }
  600. /*
  601. * ensure that if we end up with a smaller value of data to write out
  602. * than the the original len from a write which didn't complete for
  603. * non-blocking I/O and also somehow ended up avoiding the check for
  604. * this in ssl3_write_pending/SSL_R_BAD_WRITE_RETRY as it must never be
  605. * possible to end up with (len-tot) as a large number that will then
  606. * promptly send beyond the end of the users buffer ... so we trap and
  607. * report the error in a way the user will notice
  608. */
  609. if (len < tot) {
  610. SSLerr(SSL_F_SSL3_WRITE_BYTES, SSL_R_BAD_LENGTH);
  611. return (-1);
  612. }
  613. /*
  614. * first check if there is a SSL3_BUFFER still being written out. This
  615. * will happen with non blocking IO
  616. */
  617. if (wb->left != 0) {
  618. i = ssl3_write_pending(s, type, &buf[tot], s->s3->wpend_tot);
  619. if (i <= 0) {
  620. /* XXX should we ssl3_release_write_buffer if i<0? */
  621. s->s3->wnum = tot;
  622. return i;
  623. }
  624. tot += i; /* this might be last fragment */
  625. }
  626. #if !defined(OPENSSL_NO_MULTIBLOCK) && EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK
  627. /*
  628. * Depending on platform multi-block can deliver several *times*
  629. * better performance. Downside is that it has to allocate
  630. * jumbo buffer to accomodate up to 8 records, but the
  631. * compromise is considered worthy.
  632. */
  633. if (type == SSL3_RT_APPLICATION_DATA &&
  634. len >= 4 * (int)(max_send_fragment = s->max_send_fragment) &&
  635. s->compress == NULL && s->msg_callback == NULL &&
  636. SSL_USE_EXPLICIT_IV(s) &&
  637. EVP_CIPHER_flags(s->enc_write_ctx->cipher) &
  638. EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK) {
  639. unsigned char aad[13];
  640. EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM mb_param;
  641. int packlen;
  642. /* minimize address aliasing conflicts */
  643. if ((max_send_fragment & 0xfff) == 0)
  644. max_send_fragment -= 512;
  645. if (tot == 0 || wb->buf == NULL) { /* allocate jumbo buffer */
  646. ssl3_release_write_buffer(s);
  647. packlen = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
  648. EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE,
  649. max_send_fragment, NULL);
  650. if (len >= 8 * (int)max_send_fragment)
  651. packlen *= 8;
  652. else
  653. packlen *= 4;
  654. wb->buf = OPENSSL_malloc(packlen);
  655. if (!wb->buf) {
  656. SSLerr(SSL_F_SSL3_WRITE_BYTES, ERR_R_MALLOC_FAILURE);
  657. return -1;
  658. }
  659. wb->len = packlen;
  660. } else if (tot == len) { /* done? */
  661. OPENSSL_free(wb->buf); /* free jumbo buffer */
  662. wb->buf = NULL;
  663. return tot;
  664. }
  665. n = (len - tot);
  666. for (;;) {
  667. if (n < 4 * max_send_fragment) {
  668. OPENSSL_free(wb->buf); /* free jumbo buffer */
  669. wb->buf = NULL;
  670. break;
  671. }
  672. if (s->s3->alert_dispatch) {
  673. i = s->method->ssl_dispatch_alert(s);
  674. if (i <= 0) {
  675. s->s3->wnum = tot;
  676. return i;
  677. }
  678. }
  679. if (n >= 8 * max_send_fragment)
  680. nw = max_send_fragment * (mb_param.interleave = 8);
  681. else
  682. nw = max_send_fragment * (mb_param.interleave = 4);
  683. memcpy(aad, s->s3->write_sequence, 8);
  684. aad[8] = type;
  685. aad[9] = (unsigned char)(s->version >> 8);
  686. aad[10] = (unsigned char)(s->version);
  687. aad[11] = 0;
  688. aad[12] = 0;
  689. mb_param.out = NULL;
  690. mb_param.inp = aad;
  691. mb_param.len = nw;
  692. packlen = EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
  693. EVP_CTRL_TLS1_1_MULTIBLOCK_AAD,
  694. sizeof(mb_param), &mb_param);
  695. if (packlen <= 0 || packlen > (int)wb->len) { /* never happens */
  696. OPENSSL_free(wb->buf); /* free jumbo buffer */
  697. wb->buf = NULL;
  698. break;
  699. }
  700. mb_param.out = wb->buf;
  701. mb_param.inp = &buf[tot];
  702. mb_param.len = nw;
  703. if (EVP_CIPHER_CTX_ctrl(s->enc_write_ctx,
  704. EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT,
  705. sizeof(mb_param), &mb_param) <= 0)
  706. return -1;
  707. s->s3->write_sequence[7] += mb_param.interleave;
  708. if (s->s3->write_sequence[7] < mb_param.interleave) {
  709. int j = 6;
  710. while (j >= 0 && (++s->s3->write_sequence[j--]) == 0) ;
  711. }
  712. wb->offset = 0;
  713. wb->left = packlen;
  714. s->s3->wpend_tot = nw;
  715. s->s3->wpend_buf = &buf[tot];
  716. s->s3->wpend_type = type;
  717. s->s3->wpend_ret = nw;
  718. i = ssl3_write_pending(s, type, &buf[tot], nw);
  719. if (i <= 0) {
  720. if (i < 0 && (!s->wbio || !BIO_should_retry(s->wbio))) {
  721. OPENSSL_free(wb->buf);
  722. wb->buf = NULL;
  723. }
  724. s->s3->wnum = tot;
  725. return i;
  726. }
  727. if (i == (int)n) {
  728. OPENSSL_free(wb->buf); /* free jumbo buffer */
  729. wb->buf = NULL;
  730. return tot + i;
  731. }
  732. n -= i;
  733. tot += i;
  734. }
  735. } else
  736. #endif
  737. if (tot == len) { /* done? */
  738. if (s->mode & SSL_MODE_RELEASE_BUFFERS && !SSL_IS_DTLS(s))
  739. ssl3_release_write_buffer(s);
  740. return tot;
  741. }
  742. n = (len - tot);
  743. for (;;) {
  744. if (n > s->max_send_fragment)
  745. nw = s->max_send_fragment;
  746. else
  747. nw = n;
  748. i = do_ssl3_write(s, type, &(buf[tot]), nw, 0);
  749. if (i <= 0) {
  750. /* XXX should we ssl3_release_write_buffer if i<0? */
  751. s->s3->wnum = tot;
  752. return i;
  753. }
  754. if ((i == (int)n) ||
  755. (type == SSL3_RT_APPLICATION_DATA &&
  756. (s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))) {
  757. /*
  758. * next chunk of data should get another prepended empty fragment
  759. * in ciphersuites with known-IV weakness:
  760. */
  761. s->s3->empty_fragment_done = 0;
  762. if ((i == (int)n) && s->mode & SSL_MODE_RELEASE_BUFFERS &&
  763. !SSL_IS_DTLS(s))
  764. ssl3_release_write_buffer(s);
  765. return tot + i;
  766. }
  767. n -= i;
  768. tot += i;
  769. }
  770. }
  771. static int do_ssl3_write(SSL *s, int type, const unsigned char *buf,
  772. unsigned int len, int create_empty_fragment)
  773. {
  774. unsigned char *p, *plen;
  775. int i, mac_size, clear = 0;
  776. int prefix_len = 0;
  777. int eivlen;
  778. long align = 0;
  779. SSL3_RECORD *wr;
  780. SSL3_BUFFER *wb = &(s->s3->wbuf);
  781. SSL_SESSION *sess;
  782. /*
  783. * first check if there is a SSL3_BUFFER still being written out. This
  784. * will happen with non blocking IO
  785. */
  786. if (wb->left != 0)
  787. return (ssl3_write_pending(s, type, buf, len));
  788. /* If we have an alert to send, lets send it */
  789. if (s->s3->alert_dispatch) {
  790. i = s->method->ssl_dispatch_alert(s);
  791. if (i <= 0)
  792. return (i);
  793. /* if it went, fall through and send more stuff */
  794. }
  795. if (wb->buf == NULL)
  796. if (!ssl3_setup_write_buffer(s))
  797. return -1;
  798. if (len == 0 && !create_empty_fragment)
  799. return 0;
  800. wr = &(s->s3->wrec);
  801. sess = s->session;
  802. if ((sess == NULL) ||
  803. (s->enc_write_ctx == NULL) ||
  804. (EVP_MD_CTX_md(s->write_hash) == NULL)) {
  805. #if 1
  806. clear = s->enc_write_ctx ? 0 : 1; /* must be AEAD cipher */
  807. #else
  808. clear = 1;
  809. #endif
  810. mac_size = 0;
  811. } else {
  812. mac_size = EVP_MD_CTX_size(s->write_hash);
  813. if (mac_size < 0)
  814. goto err;
  815. }
  816. /*
  817. * 'create_empty_fragment' is true only when this function calls itself
  818. */
  819. if (!clear && !create_empty_fragment && !s->s3->empty_fragment_done) {
  820. /*
  821. * countermeasure against known-IV weakness in CBC ciphersuites (see
  822. * http://www.openssl.org/~bodo/tls-cbc.txt)
  823. */
  824. if (s->s3->need_empty_fragments && type == SSL3_RT_APPLICATION_DATA) {
  825. /*
  826. * recursive function call with 'create_empty_fragment' set; this
  827. * prepares and buffers the data for an empty fragment (these
  828. * 'prefix_len' bytes are sent out later together with the actual
  829. * payload)
  830. */
  831. prefix_len = do_ssl3_write(s, type, buf, 0, 1);
  832. if (prefix_len <= 0)
  833. goto err;
  834. if (prefix_len >
  835. (SSL3_RT_HEADER_LENGTH + SSL3_RT_SEND_MAX_ENCRYPTED_OVERHEAD))
  836. {
  837. /* insufficient space */
  838. SSLerr(SSL_F_DO_SSL3_WRITE, ERR_R_INTERNAL_ERROR);
  839. goto err;
  840. }
  841. }
  842. s->s3->empty_fragment_done = 1;
  843. }
  844. if (create_empty_fragment) {
  845. #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
  846. /*
  847. * extra fragment would be couple of cipher blocks, which would be
  848. * multiple of SSL3_ALIGN_PAYLOAD, so if we want to align the real
  849. * payload, then we can just pretent we simply have two headers.
  850. */
  851. align = (long)wb->buf + 2 * SSL3_RT_HEADER_LENGTH;
  852. align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
  853. #endif
  854. p = wb->buf + align;
  855. wb->offset = align;
  856. } else if (prefix_len) {
  857. p = wb->buf + wb->offset + prefix_len;
  858. } else {
  859. #if defined(SSL3_ALIGN_PAYLOAD) && SSL3_ALIGN_PAYLOAD!=0
  860. align = (long)wb->buf + SSL3_RT_HEADER_LENGTH;
  861. align = (-align) & (SSL3_ALIGN_PAYLOAD - 1);
  862. #endif
  863. p = wb->buf + align;
  864. wb->offset = align;
  865. }
  866. /* write the header */
  867. *(p++) = type & 0xff;
  868. wr->type = type;
  869. *(p++) = (s->version >> 8);
  870. /*
  871. * Some servers hang if iniatial client hello is larger than 256 bytes
  872. * and record version number > TLS 1.0
  873. */
  874. if (s->state == SSL3_ST_CW_CLNT_HELLO_B
  875. && !s->renegotiate && TLS1_get_version(s) > TLS1_VERSION)
  876. *(p++) = 0x1;
  877. else
  878. *(p++) = s->version & 0xff;
  879. /* field where we are to write out packet length */
  880. plen = p;
  881. p += 2;
  882. /* Explicit IV length, block ciphers appropriate version flag */
  883. if (s->enc_write_ctx && SSL_USE_EXPLICIT_IV(s)) {
  884. int mode = EVP_CIPHER_CTX_mode(s->enc_write_ctx);
  885. if (mode == EVP_CIPH_CBC_MODE) {
  886. eivlen = EVP_CIPHER_CTX_iv_length(s->enc_write_ctx);
  887. if (eivlen <= 1)
  888. eivlen = 0;
  889. }
  890. /* Need explicit part of IV for GCM mode */
  891. else if (mode == EVP_CIPH_GCM_MODE)
  892. eivlen = EVP_GCM_TLS_EXPLICIT_IV_LEN;
  893. else
  894. eivlen = 0;
  895. } else
  896. eivlen = 0;
  897. /* lets setup the record stuff. */
  898. wr->data = p + eivlen;
  899. wr->length = (int)len;
  900. wr->input = (unsigned char *)buf;
  901. /*
  902. * we now 'read' from wr->input, wr->length bytes into wr->data
  903. */
  904. /* first we compress */
  905. if (s->compress != NULL) {
  906. if (!ssl3_do_compress(s)) {
  907. SSLerr(SSL_F_DO_SSL3_WRITE, SSL_R_COMPRESSION_FAILURE);
  908. goto err;
  909. }
  910. } else {
  911. memcpy(wr->data, wr->input, wr->length);
  912. wr->input = wr->data;
  913. }
  914. /*
  915. * we should still have the output to wr->data and the input from
  916. * wr->input. Length should be wr->length. wr->data still points in the
  917. * wb->buf
  918. */
  919. if (mac_size != 0) {
  920. if (s->method->ssl3_enc->mac(s, &(p[wr->length + eivlen]), 1) < 0)
  921. goto err;
  922. wr->length += mac_size;
  923. }
  924. wr->input = p;
  925. wr->data = p;
  926. if (eivlen) {
  927. /*
  928. * if (RAND_pseudo_bytes(p, eivlen) <= 0) goto err;
  929. */
  930. wr->length += eivlen;
  931. }
  932. if (s->method->ssl3_enc->enc(s, 1) < 1)
  933. goto err;
  934. /* record length after mac and block padding */
  935. s2n(wr->length, plen);
  936. if (s->msg_callback)
  937. s->msg_callback(1, 0, SSL3_RT_HEADER, plen - 5, 5, s,
  938. s->msg_callback_arg);
  939. /*
  940. * we should now have wr->data pointing to the encrypted data, which is
  941. * wr->length long
  942. */
  943. wr->type = type; /* not needed but helps for debugging */
  944. wr->length += SSL3_RT_HEADER_LENGTH;
  945. if (create_empty_fragment) {
  946. /*
  947. * we are in a recursive call; just return the length, don't write
  948. * out anything here
  949. */
  950. return wr->length;
  951. }
  952. /* now let's set up wb */
  953. wb->left = prefix_len + wr->length;
  954. /*
  955. * memorize arguments so that ssl3_write_pending can detect bad write
  956. * retries later
  957. */
  958. s->s3->wpend_tot = len;
  959. s->s3->wpend_buf = buf;
  960. s->s3->wpend_type = type;
  961. s->s3->wpend_ret = len;
  962. /* we now just need to write the buffer */
  963. return ssl3_write_pending(s, type, buf, len);
  964. err:
  965. return -1;
  966. }
  967. /* if s->s3->wbuf.left != 0, we need to call this */
  968. int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
  969. unsigned int len)
  970. {
  971. int i;
  972. SSL3_BUFFER *wb = &(s->s3->wbuf);
  973. /* XXXX */
  974. if ((s->s3->wpend_tot > (int)len)
  975. || ((s->s3->wpend_buf != buf) &&
  976. !(s->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER))
  977. || (s->s3->wpend_type != type)) {
  978. SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BAD_WRITE_RETRY);
  979. return (-1);
  980. }
  981. for (;;) {
  982. clear_sys_error();
  983. if (s->wbio != NULL) {
  984. s->rwstate = SSL_WRITING;
  985. i = BIO_write(s->wbio,
  986. (char *)&(wb->buf[wb->offset]),
  987. (unsigned int)wb->left);
  988. } else {
  989. SSLerr(SSL_F_SSL3_WRITE_PENDING, SSL_R_BIO_NOT_SET);
  990. i = -1;
  991. }
  992. if (i == wb->left) {
  993. wb->left = 0;
  994. wb->offset += i;
  995. s->rwstate = SSL_NOTHING;
  996. return (s->s3->wpend_ret);
  997. } else if (i <= 0) {
  998. if (SSL_IS_DTLS(s)) {
  999. /*
  1000. * For DTLS, just drop it. That's kind of the whole point in
  1001. * using a datagram service
  1002. */
  1003. wb->left = 0;
  1004. }
  1005. return (i);
  1006. }
  1007. wb->offset += i;
  1008. wb->left -= i;
  1009. }
  1010. }
  1011. /*-
  1012. * Return up to 'len' payload bytes received in 'type' records.
  1013. * 'type' is one of the following:
  1014. *
  1015. * - SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
  1016. * - SSL3_RT_APPLICATION_DATA (when ssl3_read calls us)
  1017. * - 0 (during a shutdown, no data has to be returned)
  1018. *
  1019. * If we don't have stored data to work from, read a SSL/TLS record first
  1020. * (possibly multiple records if we still don't have anything to return).
  1021. *
  1022. * This function must handle any surprises the peer may have for us, such as
  1023. * Alert records (e.g. close_notify), ChangeCipherSpec records (not really
  1024. * a surprise, but handled as if it were), or renegotiation requests.
  1025. * Also if record payloads contain fragments too small to process, we store
  1026. * them until there is enough for the respective protocol (the record protocol
  1027. * may use arbitrary fragmentation and even interleaving):
  1028. * Change cipher spec protocol
  1029. * just 1 byte needed, no need for keeping anything stored
  1030. * Alert protocol
  1031. * 2 bytes needed (AlertLevel, AlertDescription)
  1032. * Handshake protocol
  1033. * 4 bytes needed (HandshakeType, uint24 length) -- we just have
  1034. * to detect unexpected Client Hello and Hello Request messages
  1035. * here, anything else is handled by higher layers
  1036. * Application data protocol
  1037. * none of our business
  1038. */
  1039. int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
  1040. {
  1041. int al, i, j, ret;
  1042. unsigned int n;
  1043. SSL3_RECORD *rr;
  1044. void (*cb) (const SSL *ssl, int type2, int val) = NULL;
  1045. if (s->s3->rbuf.buf == NULL) /* Not initialized yet */
  1046. if (!ssl3_setup_read_buffer(s))
  1047. return (-1);
  1048. if ((type && (type != SSL3_RT_APPLICATION_DATA)
  1049. && (type != SSL3_RT_HANDSHAKE)) || (peek
  1050. && (type !=
  1051. SSL3_RT_APPLICATION_DATA))) {
  1052. SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
  1053. return -1;
  1054. }
  1055. if ((type == SSL3_RT_HANDSHAKE) && (s->s3->handshake_fragment_len > 0))
  1056. /* (partially) satisfy request from storage */
  1057. {
  1058. unsigned char *src = s->s3->handshake_fragment;
  1059. unsigned char *dst = buf;
  1060. unsigned int k;
  1061. /* peek == 0 */
  1062. n = 0;
  1063. while ((len > 0) && (s->s3->handshake_fragment_len > 0)) {
  1064. *dst++ = *src++;
  1065. len--;
  1066. s->s3->handshake_fragment_len--;
  1067. n++;
  1068. }
  1069. /* move any remaining fragment bytes: */
  1070. for (k = 0; k < s->s3->handshake_fragment_len; k++)
  1071. s->s3->handshake_fragment[k] = *src++;
  1072. return n;
  1073. }
  1074. /*
  1075. * Now s->s3->handshake_fragment_len == 0 if type == SSL3_RT_HANDSHAKE.
  1076. */
  1077. if (!s->in_handshake && SSL_in_init(s)) {
  1078. /* type == SSL3_RT_APPLICATION_DATA */
  1079. i = s->handshake_func(s);
  1080. if (i < 0)
  1081. return (i);
  1082. if (i == 0) {
  1083. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
  1084. return (-1);
  1085. }
  1086. }
  1087. start:
  1088. s->rwstate = SSL_NOTHING;
  1089. /*-
  1090. * s->s3->rrec.type - is the type of record
  1091. * s->s3->rrec.data, - data
  1092. * s->s3->rrec.off, - offset into 'data' for next read
  1093. * s->s3->rrec.length, - number of bytes.
  1094. */
  1095. rr = &(s->s3->rrec);
  1096. /* get new packet if necessary */
  1097. if ((rr->length == 0) || (s->rstate == SSL_ST_READ_BODY)) {
  1098. ret = ssl3_get_record(s);
  1099. if (ret <= 0)
  1100. return (ret);
  1101. }
  1102. /* we now have a packet which can be read and processed */
  1103. if (s->s3->change_cipher_spec /* set when we receive ChangeCipherSpec,
  1104. * reset by ssl3_get_finished */
  1105. && (rr->type != SSL3_RT_HANDSHAKE)) {
  1106. al = SSL_AD_UNEXPECTED_MESSAGE;
  1107. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_DATA_BETWEEN_CCS_AND_FINISHED);
  1108. goto f_err;
  1109. }
  1110. /*
  1111. * If the other end has shut down, throw anything we read away (even in
  1112. * 'peek' mode)
  1113. */
  1114. if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
  1115. rr->length = 0;
  1116. s->rwstate = SSL_NOTHING;
  1117. return (0);
  1118. }
  1119. if (type == rr->type) { /* SSL3_RT_APPLICATION_DATA or
  1120. * SSL3_RT_HANDSHAKE */
  1121. /*
  1122. * make sure that we are not getting application data when we are
  1123. * doing a handshake for the first time
  1124. */
  1125. if (SSL_in_init(s) && (type == SSL3_RT_APPLICATION_DATA) &&
  1126. (s->enc_read_ctx == NULL)) {
  1127. al = SSL_AD_UNEXPECTED_MESSAGE;
  1128. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_APP_DATA_IN_HANDSHAKE);
  1129. goto f_err;
  1130. }
  1131. if (len <= 0)
  1132. return (len);
  1133. if ((unsigned int)len > rr->length)
  1134. n = rr->length;
  1135. else
  1136. n = (unsigned int)len;
  1137. memcpy(buf, &(rr->data[rr->off]), n);
  1138. if (!peek) {
  1139. rr->length -= n;
  1140. rr->off += n;
  1141. if (rr->length == 0) {
  1142. s->rstate = SSL_ST_READ_HEADER;
  1143. rr->off = 0;
  1144. if (s->mode & SSL_MODE_RELEASE_BUFFERS
  1145. && s->s3->rbuf.left == 0)
  1146. ssl3_release_read_buffer(s);
  1147. }
  1148. }
  1149. return (n);
  1150. }
  1151. /*
  1152. * If we get here, then type != rr->type; if we have a handshake message,
  1153. * then it was unexpected (Hello Request or Client Hello).
  1154. */
  1155. /*
  1156. * In case of record types for which we have 'fragment' storage, fill
  1157. * that so that we can process the data at a fixed place.
  1158. */
  1159. {
  1160. unsigned int dest_maxlen = 0;
  1161. unsigned char *dest = NULL;
  1162. unsigned int *dest_len = NULL;
  1163. if (rr->type == SSL3_RT_HANDSHAKE) {
  1164. dest_maxlen = sizeof s->s3->handshake_fragment;
  1165. dest = s->s3->handshake_fragment;
  1166. dest_len = &s->s3->handshake_fragment_len;
  1167. } else if (rr->type == SSL3_RT_ALERT) {
  1168. dest_maxlen = sizeof s->s3->alert_fragment;
  1169. dest = s->s3->alert_fragment;
  1170. dest_len = &s->s3->alert_fragment_len;
  1171. }
  1172. #ifndef OPENSSL_NO_HEARTBEATS
  1173. else if (rr->type == TLS1_RT_HEARTBEAT) {
  1174. tls1_process_heartbeat(s);
  1175. /* Exit and notify application to read again */
  1176. rr->length = 0;
  1177. s->rwstate = SSL_READING;
  1178. BIO_clear_retry_flags(SSL_get_rbio(s));
  1179. BIO_set_retry_read(SSL_get_rbio(s));
  1180. return (-1);
  1181. }
  1182. #endif
  1183. if (dest_maxlen > 0) {
  1184. n = dest_maxlen - *dest_len; /* available space in 'dest' */
  1185. if (rr->length < n)
  1186. n = rr->length; /* available bytes */
  1187. /* now move 'n' bytes: */
  1188. while (n-- > 0) {
  1189. dest[(*dest_len)++] = rr->data[rr->off++];
  1190. rr->length--;
  1191. }
  1192. if (*dest_len < dest_maxlen)
  1193. goto start; /* fragment was too small */
  1194. }
  1195. }
  1196. /*-
  1197. * s->s3->handshake_fragment_len == 4 iff rr->type == SSL3_RT_HANDSHAKE;
  1198. * s->s3->alert_fragment_len == 2 iff rr->type == SSL3_RT_ALERT.
  1199. * (Possibly rr is 'empty' now, i.e. rr->length may be 0.)
  1200. */
  1201. /* If we are a client, check for an incoming 'Hello Request': */
  1202. if ((!s->server) &&
  1203. (s->s3->handshake_fragment_len >= 4) &&
  1204. (s->s3->handshake_fragment[0] == SSL3_MT_HELLO_REQUEST) &&
  1205. (s->session != NULL) && (s->session->cipher != NULL)) {
  1206. s->s3->handshake_fragment_len = 0;
  1207. if ((s->s3->handshake_fragment[1] != 0) ||
  1208. (s->s3->handshake_fragment[2] != 0) ||
  1209. (s->s3->handshake_fragment[3] != 0)) {
  1210. al = SSL_AD_DECODE_ERROR;
  1211. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_BAD_HELLO_REQUEST);
  1212. goto f_err;
  1213. }
  1214. if (s->msg_callback)
  1215. s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
  1216. s->s3->handshake_fragment, 4, s,
  1217. s->msg_callback_arg);
  1218. if (SSL_is_init_finished(s) &&
  1219. !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS) &&
  1220. !s->s3->renegotiate) {
  1221. ssl3_renegotiate(s);
  1222. if (ssl3_renegotiate_check(s)) {
  1223. i = s->handshake_func(s);
  1224. if (i < 0)
  1225. return (i);
  1226. if (i == 0) {
  1227. SSLerr(SSL_F_SSL3_READ_BYTES,
  1228. SSL_R_SSL_HANDSHAKE_FAILURE);
  1229. return (-1);
  1230. }
  1231. if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
  1232. if (s->s3->rbuf.left == 0) { /* no read-ahead left? */
  1233. BIO *bio;
  1234. /*
  1235. * In the case where we try to read application data,
  1236. * but we trigger an SSL handshake, we return -1 with
  1237. * the retry option set. Otherwise renegotiation may
  1238. * cause nasty problems in the blocking world
  1239. */
  1240. s->rwstate = SSL_READING;
  1241. bio = SSL_get_rbio(s);
  1242. BIO_clear_retry_flags(bio);
  1243. BIO_set_retry_read(bio);
  1244. return (-1);
  1245. }
  1246. }
  1247. }
  1248. }
  1249. /*
  1250. * we either finished a handshake or ignored the request, now try
  1251. * again to obtain the (application) data we were asked for
  1252. */
  1253. goto start;
  1254. }
  1255. /*
  1256. * If we are a server and get a client hello when renegotiation isn't
  1257. * allowed send back a no renegotiation alert and carry on. WARNING:
  1258. * experimental code, needs reviewing (steve)
  1259. */
  1260. if (s->server &&
  1261. SSL_is_init_finished(s) &&
  1262. !s->s3->send_connection_binding &&
  1263. (s->version > SSL3_VERSION) &&
  1264. (s->s3->handshake_fragment_len >= 4) &&
  1265. (s->s3->handshake_fragment[0] == SSL3_MT_CLIENT_HELLO) &&
  1266. (s->session != NULL) && (s->session->cipher != NULL) &&
  1267. !(s->ctx->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
  1268. /*
  1269. * s->s3->handshake_fragment_len = 0;
  1270. */
  1271. rr->length = 0;
  1272. ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
  1273. goto start;
  1274. }
  1275. if (s->s3->alert_fragment_len >= 2) {
  1276. int alert_level = s->s3->alert_fragment[0];
  1277. int alert_descr = s->s3->alert_fragment[1];
  1278. s->s3->alert_fragment_len = 0;
  1279. if (s->msg_callback)
  1280. s->msg_callback(0, s->version, SSL3_RT_ALERT,
  1281. s->s3->alert_fragment, 2, s, s->msg_callback_arg);
  1282. if (s->info_callback != NULL)
  1283. cb = s->info_callback;
  1284. else if (s->ctx->info_callback != NULL)
  1285. cb = s->ctx->info_callback;
  1286. if (cb != NULL) {
  1287. j = (alert_level << 8) | alert_descr;
  1288. cb(s, SSL_CB_READ_ALERT, j);
  1289. }
  1290. if (alert_level == SSL3_AL_WARNING) {
  1291. s->s3->warn_alert = alert_descr;
  1292. if (alert_descr == SSL_AD_CLOSE_NOTIFY) {
  1293. s->shutdown |= SSL_RECEIVED_SHUTDOWN;
  1294. return (0);
  1295. }
  1296. /*
  1297. * This is a warning but we receive it if we requested
  1298. * renegotiation and the peer denied it. Terminate with a fatal
  1299. * alert because if application tried to renegotiatie it
  1300. * presumably had a good reason and expects it to succeed. In
  1301. * future we might have a renegotiation where we don't care if
  1302. * the peer refused it where we carry on.
  1303. */
  1304. else if (alert_descr == SSL_AD_NO_RENEGOTIATION) {
  1305. al = SSL_AD_HANDSHAKE_FAILURE;
  1306. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_NO_RENEGOTIATION);
  1307. goto f_err;
  1308. }
  1309. #ifdef SSL_AD_MISSING_SRP_USERNAME
  1310. else if (alert_descr == SSL_AD_MISSING_SRP_USERNAME)
  1311. return (0);
  1312. #endif
  1313. } else if (alert_level == SSL3_AL_FATAL) {
  1314. char tmp[16];
  1315. s->rwstate = SSL_NOTHING;
  1316. s->s3->fatal_alert = alert_descr;
  1317. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_AD_REASON_OFFSET + alert_descr);
  1318. BIO_snprintf(tmp, sizeof tmp, "%d", alert_descr);
  1319. ERR_add_error_data(2, "SSL alert number ", tmp);
  1320. s->shutdown |= SSL_RECEIVED_SHUTDOWN;
  1321. SSL_CTX_remove_session(s->ctx, s->session);
  1322. return (0);
  1323. } else {
  1324. al = SSL_AD_ILLEGAL_PARAMETER;
  1325. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNKNOWN_ALERT_TYPE);
  1326. goto f_err;
  1327. }
  1328. goto start;
  1329. }
  1330. if (s->shutdown & SSL_SENT_SHUTDOWN) { /* but we have not received a
  1331. * shutdown */
  1332. s->rwstate = SSL_NOTHING;
  1333. rr->length = 0;
  1334. return (0);
  1335. }
  1336. if (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC) {
  1337. /*
  1338. * 'Change Cipher Spec' is just a single byte, so we know exactly
  1339. * what the record payload has to look like
  1340. */
  1341. if ((rr->length != 1) || (rr->off != 0) ||
  1342. (rr->data[0] != SSL3_MT_CCS)) {
  1343. al = SSL_AD_ILLEGAL_PARAMETER;
  1344. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_BAD_CHANGE_CIPHER_SPEC);
  1345. goto f_err;
  1346. }
  1347. /* Check we have a cipher to change to */
  1348. if (s->s3->tmp.new_cipher == NULL) {
  1349. al = SSL_AD_UNEXPECTED_MESSAGE;
  1350. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
  1351. goto f_err;
  1352. }
  1353. if (!(s->s3->flags & SSL3_FLAGS_CCS_OK)) {
  1354. al = SSL_AD_UNEXPECTED_MESSAGE;
  1355. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_CCS_RECEIVED_EARLY);
  1356. goto f_err;
  1357. }
  1358. s->s3->flags &= ~SSL3_FLAGS_CCS_OK;
  1359. rr->length = 0;
  1360. if (s->msg_callback)
  1361. s->msg_callback(0, s->version, SSL3_RT_CHANGE_CIPHER_SPEC,
  1362. rr->data, 1, s, s->msg_callback_arg);
  1363. s->s3->change_cipher_spec = 1;
  1364. if (!ssl3_do_change_cipher_spec(s))
  1365. goto err;
  1366. else
  1367. goto start;
  1368. }
  1369. /*
  1370. * Unexpected handshake message (Client Hello, or protocol violation)
  1371. */
  1372. if ((s->s3->handshake_fragment_len >= 4) && !s->in_handshake) {
  1373. if (((s->state & SSL_ST_MASK) == SSL_ST_OK) &&
  1374. !(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS)) {
  1375. #if 0 /* worked only because C operator preferences
  1376. * are not as expected (and because this is
  1377. * not really needed for clients except for
  1378. * detecting protocol violations): */
  1379. s->state = SSL_ST_BEFORE | (s->server)
  1380. ? SSL_ST_ACCEPT : SSL_ST_CONNECT;
  1381. #else
  1382. s->state = s->server ? SSL_ST_ACCEPT : SSL_ST_CONNECT;
  1383. #endif
  1384. s->renegotiate = 1;
  1385. s->new_session = 1;
  1386. }
  1387. i = s->handshake_func(s);
  1388. if (i < 0)
  1389. return (i);
  1390. if (i == 0) {
  1391. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
  1392. return (-1);
  1393. }
  1394. if (!(s->mode & SSL_MODE_AUTO_RETRY)) {
  1395. if (s->s3->rbuf.left == 0) { /* no read-ahead left? */
  1396. BIO *bio;
  1397. /*
  1398. * In the case where we try to read application data, but we
  1399. * trigger an SSL handshake, we return -1 with the retry
  1400. * option set. Otherwise renegotiation may cause nasty
  1401. * problems in the blocking world
  1402. */
  1403. s->rwstate = SSL_READING;
  1404. bio = SSL_get_rbio(s);
  1405. BIO_clear_retry_flags(bio);
  1406. BIO_set_retry_read(bio);
  1407. return (-1);
  1408. }
  1409. }
  1410. goto start;
  1411. }
  1412. switch (rr->type) {
  1413. default:
  1414. #ifndef OPENSSL_NO_TLS
  1415. /*
  1416. * TLS up to v1.1 just ignores unknown message types: TLS v1.2 give
  1417. * an unexpected message alert.
  1418. */
  1419. if (s->version >= TLS1_VERSION && s->version <= TLS1_1_VERSION) {
  1420. rr->length = 0;
  1421. goto start;
  1422. }
  1423. #endif
  1424. al = SSL_AD_UNEXPECTED_MESSAGE;
  1425. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
  1426. goto f_err;
  1427. case SSL3_RT_CHANGE_CIPHER_SPEC:
  1428. case SSL3_RT_ALERT:
  1429. case SSL3_RT_HANDSHAKE:
  1430. /*
  1431. * we already handled all of these, with the possible exception of
  1432. * SSL3_RT_HANDSHAKE when s->in_handshake is set, but that should not
  1433. * happen when type != rr->type
  1434. */
  1435. al = SSL_AD_UNEXPECTED_MESSAGE;
  1436. SSLerr(SSL_F_SSL3_READ_BYTES, ERR_R_INTERNAL_ERROR);
  1437. goto f_err;
  1438. case SSL3_RT_APPLICATION_DATA:
  1439. /*
  1440. * At this point, we were expecting handshake data, but have
  1441. * application data. If the library was running inside ssl3_read()
  1442. * (i.e. in_read_app_data is set) and it makes sense to read
  1443. * application data at this point (session renegotiation not yet
  1444. * started), we will indulge it.
  1445. */
  1446. if (s->s3->in_read_app_data &&
  1447. (s->s3->total_renegotiations != 0) &&
  1448. (((s->state & SSL_ST_CONNECT) &&
  1449. (s->state >= SSL3_ST_CW_CLNT_HELLO_A) &&
  1450. (s->state <= SSL3_ST_CR_SRVR_HELLO_A)
  1451. ) || ((s->state & SSL_ST_ACCEPT) &&
  1452. (s->state <= SSL3_ST_SW_HELLO_REQ_A) &&
  1453. (s->state >= SSL3_ST_SR_CLNT_HELLO_A)
  1454. )
  1455. )) {
  1456. s->s3->in_read_app_data = 2;
  1457. return (-1);
  1458. } else {
  1459. al = SSL_AD_UNEXPECTED_MESSAGE;
  1460. SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_UNEXPECTED_RECORD);
  1461. goto f_err;
  1462. }
  1463. }
  1464. /* not reached */
  1465. f_err:
  1466. ssl3_send_alert(s, SSL3_AL_FATAL, al);
  1467. err:
  1468. return (-1);
  1469. }
  1470. int ssl3_do_change_cipher_spec(SSL *s)
  1471. {
  1472. int i;
  1473. const char *sender;
  1474. int slen;
  1475. if (s->state & SSL_ST_ACCEPT)
  1476. i = SSL3_CHANGE_CIPHER_SERVER_READ;
  1477. else
  1478. i = SSL3_CHANGE_CIPHER_CLIENT_READ;
  1479. if (s->s3->tmp.key_block == NULL) {
  1480. if (s->session == NULL || s->session->master_key_length == 0) {
  1481. /* might happen if dtls1_read_bytes() calls this */
  1482. SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC,
  1483. SSL_R_CCS_RECEIVED_EARLY);
  1484. return (0);
  1485. }
  1486. s->session->cipher = s->s3->tmp.new_cipher;
  1487. if (!s->method->ssl3_enc->setup_key_block(s))
  1488. return (0);
  1489. }
  1490. if (!s->method->ssl3_enc->change_cipher_state(s, i))
  1491. return (0);
  1492. /*
  1493. * we have to record the message digest at this point so we can get it
  1494. * before we read the finished message
  1495. */
  1496. if (s->state & SSL_ST_CONNECT) {
  1497. sender = s->method->ssl3_enc->server_finished_label;
  1498. slen = s->method->ssl3_enc->server_finished_label_len;
  1499. } else {
  1500. sender = s->method->ssl3_enc->client_finished_label;
  1501. slen = s->method->ssl3_enc->client_finished_label_len;
  1502. }
  1503. i = s->method->ssl3_enc->final_finish_mac(s,
  1504. sender, slen,
  1505. s->s3->tmp.peer_finish_md);
  1506. if (i == 0) {
  1507. SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
  1508. return 0;
  1509. }
  1510. s->s3->tmp.peer_finish_md_len = i;
  1511. return (1);
  1512. }
  1513. int ssl3_send_alert(SSL *s, int level, int desc)
  1514. {
  1515. /* Map tls/ssl alert value to correct one */
  1516. desc = s->method->ssl3_enc->alert_value(desc);
  1517. if (s->version == SSL3_VERSION && desc == SSL_AD_PROTOCOL_VERSION)
  1518. desc = SSL_AD_HANDSHAKE_FAILURE; /* SSL 3.0 does not have
  1519. * protocol_version alerts */
  1520. if (desc < 0)
  1521. return -1;
  1522. /* If a fatal one, remove from cache */
  1523. if ((level == 2) && (s->session != NULL))
  1524. SSL_CTX_remove_session(s->ctx, s->session);
  1525. s->s3->alert_dispatch = 1;
  1526. s->s3->send_alert[0] = level;
  1527. s->s3->send_alert[1] = desc;
  1528. if (s->s3->wbuf.left == 0) /* data still being written out? */
  1529. return s->method->ssl_dispatch_alert(s);
  1530. /*
  1531. * else data is still being written out, we will get written some time in
  1532. * the future
  1533. */
  1534. return -1;
  1535. }
  1536. int ssl3_dispatch_alert(SSL *s)
  1537. {
  1538. int i, j;
  1539. void (*cb) (const SSL *ssl, int type, int val) = NULL;
  1540. s->s3->alert_dispatch = 0;
  1541. i = do_ssl3_write(s, SSL3_RT_ALERT, &s->s3->send_alert[0], 2, 0);
  1542. if (i <= 0) {
  1543. s->s3->alert_dispatch = 1;
  1544. } else {
  1545. /*
  1546. * Alert sent to BIO. If it is important, flush it now. If the
  1547. * message does not get sent due to non-blocking IO, we will not
  1548. * worry too much.
  1549. */
  1550. if (s->s3->send_alert[0] == SSL3_AL_FATAL)
  1551. (void)BIO_flush(s->wbio);
  1552. if (s->msg_callback)
  1553. s->msg_callback(1, s->version, SSL3_RT_ALERT, s->s3->send_alert,
  1554. 2, s, s->msg_callback_arg);
  1555. if (s->info_callback != NULL)
  1556. cb = s->info_callback;
  1557. else if (s->ctx->info_callback != NULL)
  1558. cb = s->ctx->info_callback;
  1559. if (cb != NULL) {
  1560. j = (s->s3->send_alert[0] << 8) | s->s3->send_alert[1];
  1561. cb(s, SSL_CB_WRITE_ALERT, j);
  1562. }
  1563. }
  1564. return (i);
  1565. }