[{"id":1762536,"web_url":"http://patchwork.ozlabs.org/comment/1762536/","msgid":"<527798b901d04751a58a4778133ea44c@JPTOMBX11.corpusers.net>","list_archive_url":null,"date":"2017-08-31T11:44:08","subject":"RE: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","submitter":{"id":72046,"url":"http://patchwork.ozlabs.org/api/people/72046/","name":"Hatano, Tomoharu (Sony Mobile)","email":"tomoharu.hatano@sony.com"},"content":"Hi Hostap,\n\nI'm waiting for your feedback.\nWhen you can start the review?\n\nBest Regards,\nTomoharu Hatano\n\n-----Original Message-----\nFrom: Hatano, Tomoharu (Sony Mobile) \nSent: Wednesday, August 16, 2017 9:52 PM\nTo: 'Tomoharu Hatano' <tomoharu.hatano@sony.com>; hostap@lists.infradead.org\nCc: Sogo, Shinji (Sony Mobile) <Shinji.Sogo@sony.com>; Nanbu, Tomonori (Sony Mobile) <Tomonori.Nanbu@sony.com>; Onodera, Akihiro X (Sony Mobile) <Akihiro.Onodera@sony.com>; Hatano, Tomoharu (Sony Mobile) <Tomoharu.Hatano@sony.com>\nSubject: RE: [PATCH] Send Client-Error when AT_KDF attributes from the server are incorrect\n\nHi Hostap,\n\nDo you have any progress about review?\n\nBest Regards,\nTomoharu Hatano\n\n-----Original Message-----\nFrom: Tomoharu Hatano [mailto:tomoharu.hatano@sony.com]\nSent: Tuesday, July 25, 2017 12:26 PM\nTo: hostap@lists.infradead.org\nCc: Sogo, Shinji (Sony Mobile) <Shinji.Sogo@sony.com>; Nanbu, Tomonori (Sony Mobile) <Tomonori.Nanbu@sony.com>; Onodera, Akihiro X (Sony Mobile) <Akihiro.Onodera@sony.com>; Hatano, Tomoharu (Sony Mobile) <Tomoharu.Hatano@sony.com>\nSubject: [PATCH] Send Client-Error when AT_KDF attributes from the server are incorrect\n\nFrom: Akihiro Onodera <akihiro.onodera@sony.com>\n\nAfter KDF negotiation, must check only requested change occurred in the list of AT_KDF attributes. If there are any other changes, the peer must behave like the case that AT_MAC had been incorrect and authentication is failed. These are defined in EAP-AKA' specification RFC5448.\n\nAdds a complete check of AT_KDF attributes and sends Client-Error if a change which is not requested is included in it.\n\nChange-Id: Ic8ac504a7ff01992e2632d35c243f53bdd27df74\nSigned-off-by: Tomoharu Hatano <tomoharu.hatano@sony.com>\n---\n src/eap_peer/eap_aka.c | 42 +++++++++++++++++++++++++++---------------\n 1 file changed, 27 insertions(+), 15 deletions(-)\n\ndiff --git a/src/eap_peer/eap_aka.c b/src/eap_peer/eap_aka.c index 0bac62d..9a09184 100644\n--- a/src/eap_peer/eap_aka.c\n+++ b/src/eap_peer/eap_aka.c\n@@ -53,6 +53,8 @@ struct eap_aka_data {\n \tsize_t network_name_len;\n \tu16 kdf;\n \tint kdf_negotiation;\n+\tu16 last_kdf_attrs[EAP_AKA_PRIME_KDF_MAX];\n+\tsize_t last_kdf_count;\n };\n \n \n@@ -817,9 +819,12 @@ static struct wpabuf * eap_aka_prime_kdf_neg(struct eap_aka_data *data,\n \tsize_t i;\n \n \tfor (i = 0; i < attr->kdf_count; i++) {\n-\t\tif (attr->kdf[i] == EAP_AKA_PRIME_KDF)\n+\t\tif (attr->kdf[i] == EAP_AKA_PRIME_KDF) {\n+\t\t\tos_memcpy(data->last_kdf_attrs, attr->kdf, sizeof(u16) * attr->kdf_count);\n+\t\t\tdata->last_kdf_count = attr->kdf_count;\n \t\t\treturn eap_aka_prime_kdf_select(data, id,\n \t\t\t\t\t\t\tEAP_AKA_PRIME_KDF);\n+\t\t}\n \t}\n \n \t/* No matching KDF found - fail authentication as if AUTN had been @@ -840,26 +845,30 @@ static int eap_aka_prime_kdf_valid(struct eap_aka_data *data,\n \t * of the selected KDF into the beginning of the list. */\n \n \tif (data->kdf_negotiation) {\n+\t\t/* When the peer receives the new EAP-Request/AKA'-Challenge message, must check\n+\t\t * only requested change occurred in the list of AT_KDF attributes. If there are any\n+\t\t * other changes, the peer must behave like the case that AT_MAC had been incorrect\n+\t\t * and authentication is failed. These are defined in EAP-AKA' specification\n+\t\t * RFC5448. */\n \t\tif (attr->kdf[0] != data->kdf) {\n \t\t\twpa_printf(MSG_WARNING, \"EAP-AKA': The server did not \"\n \t\t\t\t   \"accept the selected KDF\");\n-\t\t\treturn 0;\n+\t\t\treturn -1;\n \t\t}\n \n-\t\tfor (i = 1; i < attr->kdf_count; i++) {\n-\t\t\tif (attr->kdf[i] == data->kdf)\n-\t\t\t\tbreak;\n-\t\t}\n-\t\tif (i == attr->kdf_count &&\n-\t\t    attr->kdf_count < EAP_AKA_PRIME_KDF_MAX) {\n-\t\t\twpa_printf(MSG_WARNING, \"EAP-AKA': The server did not \"\n-\t\t\t\t   \"duplicate the selected KDF\");\n-\t\t\treturn 0;\n+\t\tif (attr->kdf_count > EAP_AKA_PRIME_KDF_MAX ||\n+\t\t    attr->kdf_count != (data->last_kdf_count + 1)) {\n+\t\t\twpa_printf(MSG_WARNING, \"EAP-AKA': The length of KDF attributes is wrong\");\n+\t\t\treturn -1;\n \t\t}\n \n-\t\t/* TODO: should check that the list is identical to the one\n-\t\t * used in the previous Challenge message apart from the added\n-\t\t * entry in the beginning. */\n+\t\tfor (i = 1; i < attr->kdf_count; i++) {\n+\t\t\tif (attr->kdf[i] != data->last_kdf_attrs[i - 1]) {\n+\t\t\t\twpa_printf(MSG_WARNING, \"EAP-AKA': The KDF attributes except \"\n+\t\t\t\t\t   \"selected KDF are not same as original one.\");\n+\t\t\t\treturn -1;\n+\t\t\t}\n+\t\t}\n \t}\n \n \tfor (i = data->kdf ? 1 : 0; i < attr->kdf_count; i++) { @@ -922,8 +931,11 @@ static struct wpabuf * eap_aka_process_challenge(struct eap_sm *sm,\n \t\t\t\t  data->network_name, data->network_name_len);\n \t\t/* TODO: check Network Name per 3GPP.33.402 */\n \n-\t\tif (!eap_aka_prime_kdf_valid(data, attr))\n+\t\tres = eap_aka_prime_kdf_valid(data, attr);\n+\t\tif (res == 0)\n \t\t\treturn eap_aka_authentication_reject(data, id);\n+\t\telse if (res == -1)\n+\t\t\treturn eap_aka_client_error(data, id, \n+EAP_AKA_UNABLE_TO_PROCESS_PACKET);\n \n \t\tif (attr->kdf[0] != EAP_AKA_PRIME_KDF)\n \t\t\treturn eap_aka_prime_kdf_neg(data, id, attr);\n--\n2.7.4","headers":{"Return-Path":"<hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org; spf=none (mailfrom)\n\tsmtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133;\n\thelo=bombadil.infradead.org;\n\tenvelope-from=hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org;\n\treceiver=<UNKNOWN>)","ozlabs.org; dkim=pass (2048-bit key;\n\tunprotected) header.d=lists.infradead.org\n\theader.i=@lists.infradead.org header.b=\"ecDUbBGU\"; \n\tdkim-atps=neutral"],"Received":["from bombadil.infradead.org (bombadil.infradead.org\n\t[65.50.211.133])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xm4LS038Qz9s7C\n\tfor <incoming@patchwork.ozlabs.org>;\n\tMon,  4 Sep 2017 19:29:36 +1000 (AEST)","from localhost ([127.0.0.1] helo=bombadil.infradead.org)\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dongw-0007AF-AI; Mon, 04 Sep 2017 09:29:14 +0000","from jptosegrel01.sonyericsson.com ([124.215.201.71])\n\tby bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dnNtf-000523-J5\n\tfor hostap@lists.infradead.org; Thu, 31 Aug 2017 11:44:33 +0000"],"DKIM-Signature":"v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;\n\td=lists.infradead.org; s=bombadil.20170209; h=Sender:\n\tContent-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post:\n\tList-Archive:List-Unsubscribe:List-Id:MIME-Version:References:Message-ID:Date\n\t:Subject:To:From:Reply-To:Content-ID:Content-Description:Resent-Date:\n\tResent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:\n\tList-Owner; bh=e7/NkRncaIhZeneMNLqh55/XYJvlphZOicHPkmZ+QH8=;\n\tb=ecDUbBGUkYb362\n\thh5kVSf9RK6bhOR9Pd9iX7bgv5ONWacbhh+KKn6Ox2jHKvz0JFoUXBcCaigSKvFGryOrgsAvwXo9n\n\tJPXF45L0Z9a8R2WCm084DraPS2Uqj/9VtcfCK47qBvRC43+MsMs3GwD22ApG1u8XqxWVlVvM2F8P/\n\tY9NvsTrDGLUvUpgjQ83vACKdVLqwt66RVZjZI6p8RDDvCbtsbmC9qUim+sgFiqIfsxjYlIQxARBE3\n\tG1mLUcFnkRs4tXlm8K6D3O7MGpyFN7epzdBnpL4aOsowlQUrT7ohuEA+I2Tn/WtLutbE4C7dPrQYN\n\twXv85PRyTYPeSSJ3vddA==;","From":"\"Hatano, Tomoharu (Sony Mobile)\" <Tomoharu.Hatano@sony.com>","To":"\"hostap@lists.infradead.org\" <hostap@lists.infradead.org>","Subject":"RE: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","Thread-Topic":"[PATCH] Send Client-Error when AT_KDF attributes from the\n\tserver are incorrect","Thread-Index":"AQHTBPW/EVldQqym4ECGtWsjfYnbHqKHEwhAgBd/3fA=","Date":"Thu, 31 Aug 2017 11:44:08 +0000","Message-ID":"<527798b901d04751a58a4778133ea44c@JPTOMBX11.corpusers.net>","References":"<1500953151-5022-1-git-send-email-tomoharu.hatano@sony.com> ","Accept-Language":"ja-JP, en-US","Content-Language":"ja-JP","X-MS-Has-Attach":"","X-MS-TNEF-Correlator":"","x-ms-exchange-transport-fromentityheader":"Hosted","x-originating-ip":"[10.153.228.2]","MIME-Version":"1.0","X-CRM114-Version":"20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 ","X-CRM114-CacheID":"sfid-20170831_044431_781826_07AEF0BE ","X-CRM114-Status":"GOOD (  19.42  )","X-Spam-Score":"-1.9 (-)","X-Spam-Report":"SpamAssassin version 3.4.1 on bombadil.infradead.org summary:\n\tContent analysis details:   (-1.9 points)\n\tpts rule name              description\n\t---- ----------------------\n\t--------------------------------------------------\n\t0.0 T_SPF_PERMERROR        SPF: test of record failed (permerror)\n\t-1.9 BAYES_00               BODY: Bayes spam probability is 0 to 1%\n\t[score: 0.0000]","X-Mailman-Approved-At":"Mon, 04 Sep 2017 02:28:36 -0700","X-BeenThere":"hostap@lists.infradead.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<hostap.lists.infradead.org>","List-Unsubscribe":"<http://lists.infradead.org/mailman/options/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=unsubscribe>","List-Archive":"<http://lists.infradead.org/pipermail/hostap/>","List-Post":"<mailto:hostap@lists.infradead.org>","List-Help":"<mailto:hostap-request@lists.infradead.org?subject=help>","List-Subscribe":"<http://lists.infradead.org/mailman/listinfo/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=subscribe>","Cc":"\"Hatano, Tomoharu \\(Sony Mobile\\)\" <Tomoharu.Hatano@sony.com>, \"Nanbu,\n\tTomonori \\(Sony Mobile\\)\" <Tomonori.Nanbu@sony.com>, \"Sogo,\n\tShinji \\(Sony Mobile\\)\" <Shinji.Sogo@sony.com>","Content-Type":"text/plain; charset=\"us-ascii\"","Content-Transfer-Encoding":"7bit","Sender":"\"Hostap\" <hostap-bounces@lists.infradead.org>","Errors-To":"hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org"}},{"id":1765999,"web_url":"http://patchwork.ozlabs.org/comment/1765999/","msgid":"<20170910195036.GC6728@w1.fi>","list_archive_url":null,"date":"2017-09-10T19:50:36","subject":"Re: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","submitter":{"id":2486,"url":"http://patchwork.ozlabs.org/api/people/2486/","name":"Jouni Malinen","email":"j@w1.fi"},"content":"On Tue, Jul 25, 2017 at 12:25:51PM +0900, Tomoharu Hatano wrote:\n> After KDF negotiation, must check only requested change occurred in the\n> list of AT_KDF attributes. If there are any other changes, the peer must\n> behave like the case that AT_MAC had been incorrect and authentication\n> is failed. These are defined in EAP-AKA' specification RFC5448.\n> \n> Adds a complete check of AT_KDF attributes and sends Client-Error if a\n> change which is not requested is included in it.\n\nThanks, applied.","headers":{"Return-Path":"<hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org; spf=none (mailfrom)\n\tsmtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133;\n\thelo=bombadil.infradead.org;\n\tenvelope-from=hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org;\n\treceiver=<UNKNOWN>)","ozlabs.org; dkim=pass (2048-bit key;\n\tunprotected) header.d=lists.infradead.org\n\theader.i=@lists.infradead.org header.b=\"BlYWYjeE\"; \n\tdkim-atps=neutral"],"Received":["from bombadil.infradead.org (bombadil.infradead.org\n\t[65.50.211.133])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xr1sC1v7sz9s7g\n\tfor <incoming@patchwork.ozlabs.org>;\n\tMon, 11 Sep 2017 05:51:27 +1000 (AEST)","from localhost ([127.0.0.1] helo=bombadil.infradead.org)\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dr8G4-0005vp-Bh; Sun, 10 Sep 2017 19:51:08 +0000","from mail.w1.fi ([212.71.239.96] helo=li674-96.members.linode.com)\n\tby bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat\n\tLinux)) id 1dr8Fx-0005ei-Hb\n\tfor hostap@lists.infradead.org; Sun, 10 Sep 2017 19:51:05 +0000","from jm (188-67-35-238.bb.dnainternet.fi [188.67.35.238])\n\tby li674-96.members.linode.com (Postfix) with ESMTPSA id 1C6F711821; \n\tSun, 10 Sep 2017 19:50:37 +0000 (UTC)","by jm (sSMTP sendmail emulation); Sun, 10 Sep 2017 22:50:36 +0300"],"DKIM-Signature":"v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;\n\td=lists.infradead.org; s=bombadil.20170209; h=Sender:\n\tContent-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post:\n\tList-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:\n\tMessage-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description:\n\tResent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:\n\tList-Owner; bh=I6F4xfRqDjLbyWU/8RiNAWIajgzRSYdzz4Gq96JnKkw=;\n\tb=BlYWYjeEm4IFMu\n\tdDk273X5q1iOzQjDEdRV0sYnjFB5aKs0KCYBsAK4DTOC3scUwca454io7vYUNusYqcwH5G2keWKHq\n\tERng41Olo6VBUghtiIURyCWjJ6npAOb15wXqFbQBmqFNQpN9FBRbEEYh3i7+NNxGvA0INBaCmPlhr\n\tPiYX8OhMRnCo06/e9eX5E2O+0X7tKGA6cpjbrq4OST2vIVrk8n/AdH09NdjryTXl1OejJMnFmDVjr\n\t0fF0PfYUI6m9iPL9uAuShaE95NJm69tI38vDsb6Ab//YDUZ/YMiS4a3qMiJjoM4RW6arNJdHO1zlJ\n\tD3/O75nqSaLOaYZ5Yyhw==;","Date":"Sun, 10 Sep 2017 22:50:36 +0300","From":"Jouni Malinen <j@w1.fi>","To":"Tomoharu Hatano <tomoharu.hatano@sony.com>","Subject":"Re: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","Message-ID":"<20170910195036.GC6728@w1.fi>","References":"<1500953151-5022-1-git-send-email-tomoharu.hatano@sony.com>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<1500953151-5022-1-git-send-email-tomoharu.hatano@sony.com>","User-Agent":"Mutt/1.5.24 (2015-08-30)","X-CRM114-Version":"20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 ","X-CRM114-CacheID":"sfid-20170910_125102_264115_49914CFD ","X-CRM114-Status":"UNSURE (   7.02  )","X-CRM114-Notice":"Please train this message.","X-Spam-Score":"-1.9 (-)","X-Spam-Report":"SpamAssassin version 3.4.1 on bombadil.infradead.org summary:\n\tContent analysis details:   (-1.9 points)\n\tpts rule name              description\n\t---- ----------------------\n\t--------------------------------------------------\n\t-0.0 SPF_PASS               SPF: sender matches SPF record\n\t-0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay\n\tdomain\n\t-1.9 BAYES_00               BODY: Bayes spam probability is 0 to 1%\n\t[score: 0.0000]","X-BeenThere":"hostap@lists.infradead.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<hostap.lists.infradead.org>","List-Unsubscribe":"<http://lists.infradead.org/mailman/options/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=unsubscribe>","List-Archive":"<http://lists.infradead.org/pipermail/hostap/>","List-Post":"<mailto:hostap@lists.infradead.org>","List-Help":"<mailto:hostap-request@lists.infradead.org?subject=help>","List-Subscribe":"<http://lists.infradead.org/mailman/listinfo/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=subscribe>","Cc":"Akihiro Onodera <akihiro.onodera@sony.com>, hostap@lists.infradead.org, \n\tTomonori.Nanbu@sony.com, Shinji.Sogo@sony.com","Content-Type":"text/plain; charset=\"us-ascii\"","Content-Transfer-Encoding":"7bit","Sender":"\"Hostap\" <hostap-bounces@lists.infradead.org>","Errors-To":"hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org"}},{"id":1766154,"web_url":"http://patchwork.ozlabs.org/comment/1766154/","msgid":"<4fd0f4a1a0554d938e4ac52047abb8e4@JPTOMBX11.corpusers.net>","list_archive_url":null,"date":"2017-09-11T05:53:05","subject":"RE: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","submitter":{"id":72046,"url":"http://patchwork.ozlabs.org/api/people/72046/","name":"Hatano, Tomoharu (Sony Mobile)","email":"tomoharu.hatano@sony.com"},"content":"Hi Jouni,\n\nThank you for your approval.\n\nBest Regards,\nTomoharu Hatano\n\n-----Original Message-----\nFrom: Jouni Malinen [mailto:j@w1.fi] \nSent: Monday, September 11, 2017 4:51 AM\nTo: Hatano, Tomoharu (Sony Mobile) <Tomoharu.Hatano@sony.com>\nCc: hostap@lists.infradead.org; Akihiro Onodera <akihiro.onodera@sony.com>; Nanbu, Tomonori (Sony Mobile) <Tomonori.Nanbu@sony.com>; Sogo, Shinji (Sony Mobile) <Shinji.Sogo@sony.com>\nSubject: Re: [PATCH] Send Client-Error when AT_KDF attributes from the server are incorrect\n\nOn Tue, Jul 25, 2017 at 12:25:51PM +0900, Tomoharu Hatano wrote:\n> After KDF negotiation, must check only requested change occurred in \n> the list of AT_KDF attributes. If there are any other changes, the \n> peer must behave like the case that AT_MAC had been incorrect and \n> authentication is failed. These are defined in EAP-AKA' specification RFC5448.\n> \n> Adds a complete check of AT_KDF attributes and sends Client-Error if a \n> change which is not requested is included in it.\n\nThanks, applied.","headers":{"Return-Path":"<hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org; spf=none (mailfrom)\n\tsmtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133;\n\thelo=bombadil.infradead.org;\n\tenvelope-from=hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org;\n\treceiver=<UNKNOWN>)","ozlabs.org; dkim=pass (2048-bit key;\n\tunprotected) header.d=lists.infradead.org\n\theader.i=@lists.infradead.org header.b=\"t3eXhHYX\"; \n\tdkim-atps=neutral"],"Received":["from bombadil.infradead.org (bombadil.infradead.org\n\t[65.50.211.133])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xrMfZ17Kyz9s75\n\tfor <incoming@patchwork.ozlabs.org>;\n\tMon, 11 Sep 2017 19:13:26 +1000 (AEST)","from localhost ([127.0.0.1] helo=bombadil.infradead.org)\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1drKmC-0000uF-QM; Mon, 11 Sep 2017 09:13:08 +0000","from jptosegrel01.sonyericsson.com ([124.215.201.71])\n\tby bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux))\n\tid 1drHet-0000xR-BA\n\tfor hostap@lists.infradead.org; Mon, 11 Sep 2017 05:53:29 +0000"],"DKIM-Signature":"v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;\n\td=lists.infradead.org; s=bombadil.20170209; h=Sender:\n\tContent-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post:\n\tList-Archive:List-Unsubscribe:List-Id:MIME-Version:In-Reply-To:References:\n\tMessage-ID:Date:Subject:To:From:Reply-To:Content-ID:Content-Description:\n\tResent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:\n\tList-Owner; bh=W51COjfQ782dk5T6G9pS8VVBdMYvAvdqD6DbQGdnyno=;\n\tb=t3eXhHYXmAn0D1\n\te7L3WpNDvmk9vXmQUQbyEbD2X2HXyf3w6w+RNCtZuD6A8fuQeGRtyfYhUIuMf5eGHHcA5bwK/f1ii\n\th3rIxH9JvmeAMjKM5eKVWNWkRHteSoyvPqK0/zdNwfMB+3C/tURgMtKdAmJJKfqV9fVS7Vub32vg/\n\tYvCn8ZozWR0sicoaE+NvJLata0ZqUY/HdBowHRaKuEvXxQhrQf+hwoNBhGdgFW69pzjP12YlaB9Hr\n\t+x6ruYtOK3zAZ3UzziLIFksKl7ROiJz6jxSoBpnOvLQ+jU1RbmQVKVjeCgq698JxLBYuSTZDge4hd\n\tiAbkTDZQBDjS4NErAOIw==;","From":"\"Hatano, Tomoharu (Sony Mobile)\" <Tomoharu.Hatano@sony.com>","To":"Jouni Malinen <j@w1.fi>","Subject":"RE: [PATCH] Send Client-Error when AT_KDF attributes from the server\n\tare incorrect","Thread-Topic":"[PATCH] Send Client-Error when AT_KDF attributes from the\n\tserver are incorrect","Thread-Index":"AQHTBPW/EVldQqym4ECGtWsjfYnbHqKuO1gAgAE/IjA=","Date":"Mon, 11 Sep 2017 05:53:05 +0000","Message-ID":"<4fd0f4a1a0554d938e4ac52047abb8e4@JPTOMBX11.corpusers.net>","References":"<1500953151-5022-1-git-send-email-tomoharu.hatano@sony.com>\n\t<20170910195036.GC6728@w1.fi>","In-Reply-To":"<20170910195036.GC6728@w1.fi>","Accept-Language":"ja-JP, en-US","Content-Language":"ja-JP","X-MS-Has-Attach":"","X-MS-TNEF-Correlator":"","x-ms-exchange-transport-fromentityheader":"Hosted","x-originating-ip":"[10.153.228.2]","MIME-Version":"1.0","X-CRM114-Version":"20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 ","X-CRM114-CacheID":"sfid-20170910_225326_076757_2D769D64 ","X-CRM114-Status":"UNSURE (   7.02  )","X-CRM114-Notice":"Please train this message.","X-Spam-Score":"-1.9 (-)","X-Spam-Report":"SpamAssassin version 3.4.1 on bombadil.infradead.org summary:\n\tContent analysis details:   (-1.9 points)\n\tpts rule name              description\n\t---- ----------------------\n\t--------------------------------------------------\n\t0.0 T_SPF_PERMERROR        SPF: test of record failed (permerror)\n\t-1.9 BAYES_00               BODY: Bayes spam probability is 0 to 1%\n\t[score: 0.0000]","X-Mailman-Approved-At":"Mon, 11 Sep 2017 02:13:07 -0700","X-BeenThere":"hostap@lists.infradead.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<hostap.lists.infradead.org>","List-Unsubscribe":"<http://lists.infradead.org/mailman/options/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=unsubscribe>","List-Archive":"<http://lists.infradead.org/pipermail/hostap/>","List-Post":"<mailto:hostap@lists.infradead.org>","List-Help":"<mailto:hostap-request@lists.infradead.org?subject=help>","List-Subscribe":"<http://lists.infradead.org/mailman/listinfo/hostap>,\n\t<mailto:hostap-request@lists.infradead.org?subject=subscribe>","Cc":"\"Hatano, Tomoharu \\(Sony Mobile\\)\" <Tomoharu.Hatano@sony.com>,\n\tAkihiro Onodera <akihiro.onodera@sony.com>,\n\t\"hostap@lists.infradead.org\" <hostap@lists.infradead.org>, \"Nanbu,\n\tTomonori \\(Sony Mobile\\)\" <Tomonori.Nanbu@sony.com>, \"Sogo,\n\tShinji \\(Sony Mobile\\)\" <Shinji.Sogo@sony.com>","Content-Type":"text/plain; charset=\"us-ascii\"","Content-Transfer-Encoding":"7bit","Sender":"\"Hostap\" <hostap-bounces@lists.infradead.org>","Errors-To":"hostap-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org"}}]