From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 09:05:28 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F01B1A03; Sun, 15 Mar 2015 09:05:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8B7736D; Sun, 15 Mar 2015 09:05:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2F95RnB024718; Sun, 15 Mar 2015 09:05:27 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2F95RaR024717; Sun, 15 Mar 2015 09:05:27 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201503150905.t2F95RaR024717@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Sun, 15 Mar 2015 09:05:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280018 - stable/10/sys/ofed/drivers/net/mlx4 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 09:05:28 -0000 Author: hselasky Date: Sun Mar 15 09:05:26 2015 New Revision: 280018 URL: https://svnweb.freebsd.org/changeset/base/280018 Log: MFC r279865: Ensure setting promiscious mode when a network interface is up, is always non-blocking by not locking a SX type of mutex. Sponsored by: Mellanox Technologies Modified: stable/10/sys/ofed/drivers/net/mlx4/en_netdev.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/ofed/drivers/net/mlx4/en_netdev.c ============================================================================== --- stable/10/sys/ofed/drivers/net/mlx4/en_netdev.c Sun Mar 15 08:09:56 2015 (r280017) +++ stable/10/sys/ofed/drivers/net/mlx4/en_netdev.c Sun Mar 15 09:05:26 2015 (r280018) @@ -1916,19 +1916,22 @@ static int mlx4_en_ioctl(struct ifnet *d error = -mlx4_en_change_mtu(dev, ifr->ifr_mtu); break; case SIOCSIFFLAGS: - mutex_lock(&mdev->state_lock); if (dev->if_flags & IFF_UP) { - if ((dev->if_drv_flags & IFF_DRV_RUNNING) == 0) + if ((dev->if_drv_flags & IFF_DRV_RUNNING) == 0) { + mutex_lock(&mdev->state_lock); mlx4_en_start_port(dev); - else + mutex_unlock(&mdev->state_lock); + } else { mlx4_en_set_rx_mode(dev); + } } else { + mutex_lock(&mdev->state_lock); if (dev->if_drv_flags & IFF_DRV_RUNNING) { mlx4_en_stop_port(dev); - if_link_state_change(dev, LINK_STATE_DOWN); + if_link_state_change(dev, LINK_STATE_DOWN); } + mutex_unlock(&mdev->state_lock); } - mutex_unlock(&mdev->state_lock); break; case SIOCADDMULTI: case SIOCDELMULTI: From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 09:07:00 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3451EB3D; Sun, 15 Mar 2015 09:07:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D01637D; Sun, 15 Mar 2015 09:07:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2F96xjh024992; Sun, 15 Mar 2015 09:06:59 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2F96xaG024991; Sun, 15 Mar 2015 09:06:59 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201503150906.t2F96xaG024991@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Sun, 15 Mar 2015 09:06:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280019 - stable/9/sys/ofed/drivers/net/mlx4 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 09:07:00 -0000 Author: hselasky Date: Sun Mar 15 09:06:59 2015 New Revision: 280019 URL: https://svnweb.freebsd.org/changeset/base/280019 Log: MFC r279865: Ensure setting promiscious mode when a network interface is up, is always non-blocking by not locking a SX type of mutex. Sponsored by: Mellanox Technologies Modified: stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c ============================================================================== --- stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c Sun Mar 15 09:05:26 2015 (r280018) +++ stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c Sun Mar 15 09:06:59 2015 (r280019) @@ -1916,19 +1916,22 @@ static int mlx4_en_ioctl(struct ifnet *d error = -mlx4_en_change_mtu(dev, ifr->ifr_mtu); break; case SIOCSIFFLAGS: - mutex_lock(&mdev->state_lock); if (dev->if_flags & IFF_UP) { - if ((dev->if_drv_flags & IFF_DRV_RUNNING) == 0) + if ((dev->if_drv_flags & IFF_DRV_RUNNING) == 0) { + mutex_lock(&mdev->state_lock); mlx4_en_start_port(dev); - else + mutex_unlock(&mdev->state_lock); + } else { mlx4_en_set_rx_mode(dev); + } } else { + mutex_lock(&mdev->state_lock); if (dev->if_drv_flags & IFF_DRV_RUNNING) { mlx4_en_stop_port(dev); - if_link_state_change(dev, LINK_STATE_DOWN); + if_link_state_change(dev, LINK_STATE_DOWN); } + mutex_unlock(&mdev->state_lock); } - mutex_unlock(&mdev->state_lock); break; case SIOCADDMULTI: case SIOCDELMULTI: From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 09:15:12 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B87AD44; Sun, 15 Mar 2015 09:15:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24D8D640; Sun, 15 Mar 2015 09:15:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2F9FCVc029699; Sun, 15 Mar 2015 09:15:12 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2F9FC6R029698; Sun, 15 Mar 2015 09:15:12 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201503150915.t2F9FC6R029698@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Sun, 15 Mar 2015 09:15:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280020 - stable/10/usr.sbin/syslogd X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 09:15:12 -0000 Author: ed Date: Sun Mar 15 09:15:11 2015 New Revision: 280020 URL: https://svnweb.freebsd.org/changeset/base/280020 Log: MFC r279016: Make syslogd work in case shutdown() is POSIX-ly correct. On POSIX conformant systems, shutdown() should return ENOTCONN when not connected. We attempted to fix this once (kern/84761), but this change got backed out because it 'breaks code' (r150155). I just reapplied the patch and indeed, syslogd fails on startup. Make it easier to re-enable this change in the future by paching up syslogd to do the right thing. Sponsored by: Nuxi Modified: stable/10/usr.sbin/syslogd/syslogd.c Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/syslogd/syslogd.c ============================================================================== --- stable/10/usr.sbin/syslogd/syslogd.c Sun Mar 15 09:06:59 2015 (r280019) +++ stable/10/usr.sbin/syslogd/syslogd.c Sun Mar 15 09:15:11 2015 (r280020) @@ -557,7 +557,8 @@ main(int argc, char *argv[]) if (finet) { if (SecureMode) { for (i = 0; i < *finet; i++) { - if (shutdown(finet[i+1], SHUT_RD) < 0) { + if (shutdown(finet[i+1], SHUT_RD) < 0 && + errno != ENOTCONN) { logerror("shutdown"); if (!Debug) die(0); From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 09:20:46 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FA52EBB; Sun, 15 Mar 2015 09:20:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09097750; Sun, 15 Mar 2015 09:20:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2F9Kj8V030962; Sun, 15 Mar 2015 09:20:45 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2F9Kjel030961; Sun, 15 Mar 2015 09:20:45 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201503150920.t2F9Kjel030961@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Sun, 15 Mar 2015 09:20:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280021 - stable/9/usr.sbin/syslogd X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 09:20:46 -0000 Author: ed Date: Sun Mar 15 09:20:45 2015 New Revision: 280021 URL: https://svnweb.freebsd.org/changeset/base/280021 Log: MFC r279016: Make syslogd work in case shutdown() is POSIX-ly correct. On POSIX conformant systems, shutdown() should return ENOTCONN when not connected. We attempted to fix this once (kern/84761), but this change got backed out because it 'breaks code' (r150155). I just reapplied the patch and indeed, syslogd fails on startup. Make it easier to re-enable this change in the future by paching up syslogd to do the right thing. Sponsored by: Nuxi Modified: stable/9/usr.sbin/syslogd/syslogd.c Directory Properties: stable/9/usr.sbin/syslogd/ (props changed) Modified: stable/9/usr.sbin/syslogd/syslogd.c ============================================================================== --- stable/9/usr.sbin/syslogd/syslogd.c Sun Mar 15 09:15:11 2015 (r280020) +++ stable/9/usr.sbin/syslogd/syslogd.c Sun Mar 15 09:20:45 2015 (r280021) @@ -556,7 +556,8 @@ main(int argc, char *argv[]) if (finet) { if (SecureMode) { for (i = 0; i < *finet; i++) { - if (shutdown(finet[i+1], SHUT_RD) < 0) { + if (shutdown(finet[i+1], SHUT_RD) < 0 && + errno != ENOTCONN) { logerror("shutdown"); if (!Debug) die(0); From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 11:43:52 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D8F04E0; Sun, 15 Mar 2015 11:43:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FDC5650; Sun, 15 Mar 2015 11:43:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FBhq0E003298; Sun, 15 Mar 2015 11:43:52 GMT (envelope-from jilles@FreeBSD.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FBhp08003295; Sun, 15 Mar 2015 11:43:51 GMT (envelope-from jilles@FreeBSD.org) Message-Id: <201503151143.t2FBhp08003295@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jilles set sender to jilles@FreeBSD.org using -f From: Jilles Tjoelker Date: Sun, 15 Mar 2015 11:43:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280027 - in stable/10: tools/regression/usr.bin/env usr.bin/env X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 11:43:52 -0000 Author: jilles Date: Sun Mar 15 11:43:51 2015 New Revision: 280027 URL: https://svnweb.freebsd.org/changeset/base/280027 Log: MFC r279779: env: Fix crash when -S string is not empty but no operand follows. split_spaces() set argc in main() incorrectly, which caused trouble for getopt(). Examples: env -S '\c' env -S -i PR: 197769 Modified: stable/10/tools/regression/usr.bin/env/regress-env.rgdata stable/10/tools/regression/usr.bin/env/regress-sb.rb stable/10/usr.bin/env/envopts.c Directory Properties: stable/10/ (props changed) Modified: stable/10/tools/regression/usr.bin/env/regress-env.rgdata ============================================================================== --- stable/10/tools/regression/usr.bin/env/regress-env.rgdata Sun Mar 15 11:37:07 2015 (r280026) +++ stable/10/tools/regression/usr.bin/env/regress-env.rgdata Sun Mar 15 11:43:51 2015 (r280027) @@ -382,3 +382,36 @@ gblenv=OUTSIDEVAR=OutsideValue setenv:D=D_ThisisAlongstring_D1 stdout:A_ThisisAlongstring_A1 B_ThisisAlongstring_B1 C_ThisisAlongstring_C1 D_ThisisAlongstring_D1 ScriptName: [%-script.pathname-%] [run] + +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S '\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S'\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S '\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S'\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S '-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S'-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S '-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S'-u bar \c' >/dev/null +[run] Modified: stable/10/tools/regression/usr.bin/env/regress-sb.rb ============================================================================== --- stable/10/tools/regression/usr.bin/env/regress-sb.rb Sun Mar 15 11:37:07 2015 (r280026) +++ stable/10/tools/regression/usr.bin/env/regress-sb.rb Sun Mar 15 11:43:51 2015 (r280027) @@ -346,6 +346,7 @@ class RGTestOptions # "just anything" that matches the general pattern. There are # no blanks in the recognized values, but I use an x-tended # regexp and then add blanks to make it more readable. + optval.gsub!(/\[%- testpgm\.pathname -%\]/x, $testpgm) optval.gsub!(/\[%- testpgm\.basename -%\]/x, File.basename($testpgm)) optval.gsub!(/\[%- script\.pathname -%\]/x, $scriptfile) Modified: stable/10/usr.bin/env/envopts.c ============================================================================== --- stable/10/usr.bin/env/envopts.c Sun Mar 15 11:37:07 2015 (r280026) +++ stable/10/usr.bin/env/envopts.c Sun Mar 15 11:43:51 2015 (r280027) @@ -372,9 +372,9 @@ str_done: *nextarg = NULL; /* Update optind/argc/argv in the calling routine */ - *origind = 1; - *origc += addcount; + *origc += addcount - *origind + 1; *origv = newargv; + *origind = 1; } /** From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 11:56:54 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00A3CC69; Sun, 15 Mar 2015 11:56:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5F3A7E0; Sun, 15 Mar 2015 11:56:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FBurUu008966; Sun, 15 Mar 2015 11:56:53 GMT (envelope-from jilles@FreeBSD.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FBurpa008957; Sun, 15 Mar 2015 11:56:53 GMT (envelope-from jilles@FreeBSD.org) Message-Id: <201503151156.t2FBurpa008957@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jilles set sender to jilles@FreeBSD.org using -f From: Jilles Tjoelker Date: Sun, 15 Mar 2015 11:56:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280029 - in stable/9: tools/regression/usr.bin/env usr.bin/env X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 11:56:54 -0000 Author: jilles Date: Sun Mar 15 11:56:52 2015 New Revision: 280029 URL: https://svnweb.freebsd.org/changeset/base/280029 Log: MFC r279779: env: Fix crash when -S string is not empty but no operand follows. split_spaces() set argc in main() incorrectly, which caused trouble for getopt(). Examples: env -S '\c' env -S -i PR: 197769 Modified: stable/9/tools/regression/usr.bin/env/regress-env.rgdata stable/9/tools/regression/usr.bin/env/regress-sb.rb stable/9/usr.bin/env/envopts.c Directory Properties: stable/9/tools/regression/usr.bin/env/ (props changed) stable/9/usr.bin/env/ (props changed) Modified: stable/9/tools/regression/usr.bin/env/regress-env.rgdata ============================================================================== --- stable/9/tools/regression/usr.bin/env/regress-env.rgdata Sun Mar 15 11:56:43 2015 (r280028) +++ stable/9/tools/regression/usr.bin/env/regress-env.rgdata Sun Mar 15 11:56:52 2015 (r280029) @@ -382,3 +382,36 @@ gblenv=OUTSIDEVAR=OutsideValue setenv:D=D_ThisisAlongstring_D1 stdout:A_ThisisAlongstring_A1 B_ThisisAlongstring_B1 C_ThisisAlongstring_C1 D_ThisisAlongstring_D1 ScriptName: [%-script.pathname-%] [run] + +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S '\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S'\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S '\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S'\c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S '-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -S'-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S '-u bar \c' >/dev/null +[run] +[test] + sb_args:sh + script:[%-testpgm.pathname-%] -u foo -S'-u bar \c' >/dev/null +[run] Modified: stable/9/tools/regression/usr.bin/env/regress-sb.rb ============================================================================== --- stable/9/tools/regression/usr.bin/env/regress-sb.rb Sun Mar 15 11:56:43 2015 (r280028) +++ stable/9/tools/regression/usr.bin/env/regress-sb.rb Sun Mar 15 11:56:52 2015 (r280029) @@ -346,6 +346,7 @@ class RGTestOptions # "just anything" that matches the general pattern. There are # no blanks in the recognized values, but I use an x-tended # regexp and then add blanks to make it more readable. + optval.gsub!(/\[%- testpgm\.pathname -%\]/x, $testpgm) optval.gsub!(/\[%- testpgm\.basename -%\]/x, File.basename($testpgm)) optval.gsub!(/\[%- script\.pathname -%\]/x, $scriptfile) Modified: stable/9/usr.bin/env/envopts.c ============================================================================== --- stable/9/usr.bin/env/envopts.c Sun Mar 15 11:56:43 2015 (r280028) +++ stable/9/usr.bin/env/envopts.c Sun Mar 15 11:56:52 2015 (r280029) @@ -372,9 +372,9 @@ str_done: *nextarg = NULL; /* Update optind/argc/argv in the calling routine */ - *origind = 1; - *origc += addcount; + *origc += addcount - *origind + 1; *origv = newargv; + *origind = 1; } /** From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 18:40:07 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D93A3A15; Sun, 15 Mar 2015 18:40:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C307825A; Sun, 15 Mar 2015 18:40:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FIe7r4004679; Sun, 15 Mar 2015 18:40:07 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FIe7ua004678; Sun, 15 Mar 2015 18:40:07 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201503151840.t2FIe7ua004678@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sun, 15 Mar 2015 18:40:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280045 - stable/10/sys/vm X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 18:40:08 -0000 Author: kib Date: Sun Mar 15 18:40:06 2015 New Revision: 280045 URL: https://svnweb.freebsd.org/changeset/base/280045 Log: MFC r279764: Fix function name in the panic message. Modified: stable/10/sys/vm/vm_reserv.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/vm/vm_reserv.c ============================================================================== --- stable/10/sys/vm/vm_reserv.c Sun Mar 15 17:45:16 2015 (r280044) +++ stable/10/sys/vm/vm_reserv.c Sun Mar 15 18:40:06 2015 (r280045) @@ -363,7 +363,7 @@ vm_reserv_alloc_contig(vm_object_t objec msucc = TAILQ_FIRST(&object->memq); if (msucc != NULL) { KASSERT(msucc->pindex > pindex, - ("vm_reserv_alloc_page: pindex already allocated")); + ("vm_reserv_alloc_contig: pindex already allocated")); rv = vm_reserv_from_page(msucc); if (rv->object == object && vm_reserv_has_pindex(rv, pindex)) goto found; From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 18:42:20 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17E64B4E; Sun, 15 Mar 2015 18:42:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02DFE324; Sun, 15 Mar 2015 18:42:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FIgJrD008507; Sun, 15 Mar 2015 18:42:19 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FIgJn8008506; Sun, 15 Mar 2015 18:42:19 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201503151842.t2FIgJn8008506@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sun, 15 Mar 2015 18:42:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280046 - stable/10/sys/i386/isa X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 18:42:20 -0000 Author: kib Date: Sun Mar 15 18:42:19 2015 New Revision: 280046 URL: https://svnweb.freebsd.org/changeset/base/280046 Log: MFC r279936: Remove write-only variable. Modified: stable/10/sys/i386/isa/npx.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/i386/isa/npx.c ============================================================================== --- stable/10/sys/i386/isa/npx.c Sun Mar 15 18:40:06 2015 (r280045) +++ stable/10/sys/i386/isa/npx.c Sun Mar 15 18:42:19 2015 (r280046) @@ -1365,9 +1365,7 @@ fpu_kern_leave(struct thread *td, struct int fpu_kern_thread(u_int flags) { - struct pcb *pcb; - pcb = curpcb; KASSERT((curthread->td_pflags & TDP_KTHREAD) != 0, ("Only kthread may use fpu_kern_thread")); KASSERT(curpcb->pcb_save == get_pcb_user_save_pcb(curpcb), From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 19:33:41 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43B16594; Sun, 15 Mar 2015 19:33:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E5FE9CE; Sun, 15 Mar 2015 19:33:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FJXent033982; Sun, 15 Mar 2015 19:33:40 GMT (envelope-from marck@FreeBSD.org) Received: (from marck@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FJXedG033981; Sun, 15 Mar 2015 19:33:40 GMT (envelope-from marck@FreeBSD.org) Message-Id: <201503151933.t2FJXedG033981@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marck set sender to marck@FreeBSD.org using -f From: Dmitry Morozovsky Date: Sun, 15 Mar 2015 19:33:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280048 - stable/10/usr.bin/ctlstat X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 19:33:41 -0000 Author: marck (doc committer) Date: Sun Mar 15 19:33:40 2015 New Revision: 280048 URL: https://svnweb.freebsd.org/changeset/base/280048 Log: MFC r279783, r279785: Reword phrase a bit to decrease possible misleading meaning. Modified: stable/10/usr.bin/ctlstat/ctlstat.8 Modified: stable/10/usr.bin/ctlstat/ctlstat.8 ============================================================================== --- stable/10/usr.bin/ctlstat/ctlstat.8 Sun Mar 15 19:00:35 2015 (r280047) +++ stable/10/usr.bin/ctlstat/ctlstat.8 Sun Mar 15 19:33:40 2015 (r280048) @@ -34,7 +34,7 @@ .\" $Id: //depot/users/kenm/FreeBSD-test2/usr.bin/ctlstat/ctlstat.8#2 $ .\" $FreeBSD$ .\" -.Dd March 6, 2013 +.Dd March 8, 2015 .Dt CTLSTAT 8 .Os .Sh NAME @@ -69,7 +69,7 @@ and a combined total column that also in .It Fl c Ar count Display statistics this many times. .It Fl C -Disable display of CPU statistics. +Disable CPU statistics display. .It Fl d Display DMA operation time (latency) instead of overall I/O time (latency). .It Fl D From owner-svn-src-stable@FreeBSD.ORG Sun Mar 15 19:37:08 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5B5F6EF; Sun, 15 Mar 2015 19:37:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0A299EE; Sun, 15 Mar 2015 19:37:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2FJb8nx034573; Sun, 15 Mar 2015 19:37:08 GMT (envelope-from marck@FreeBSD.org) Received: (from marck@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2FJb8l0034572; Sun, 15 Mar 2015 19:37:08 GMT (envelope-from marck@FreeBSD.org) Message-Id: <201503151937.t2FJb8l0034572@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marck set sender to marck@FreeBSD.org using -f From: Dmitry Morozovsky Date: Sun, 15 Mar 2015 19:37:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280049 - stable/9/usr.bin/ctlstat X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Mar 2015 19:37:08 -0000 Author: marck (doc committer) Date: Sun Mar 15 19:37:07 2015 New Revision: 280049 URL: https://svnweb.freebsd.org/changeset/base/280049 Log: MFC r279783, r279785: Reword phrase a bit to decrease possible misleading meaning. Modified: stable/9/usr.bin/ctlstat/ctlstat.8 Directory Properties: stable/9/usr.bin/ctlstat/ (props changed) Modified: stable/9/usr.bin/ctlstat/ctlstat.8 ============================================================================== --- stable/9/usr.bin/ctlstat/ctlstat.8 Sun Mar 15 19:33:40 2015 (r280048) +++ stable/9/usr.bin/ctlstat/ctlstat.8 Sun Mar 15 19:37:07 2015 (r280049) @@ -34,7 +34,7 @@ .\" $Id: //depot/users/kenm/FreeBSD-test2/usr.bin/ctlstat/ctlstat.8#2 $ .\" $FreeBSD$ .\" -.Dd March 6, 2013 +.Dd March 8, 2015 .Dt CTLSTAT 8 .Os .Sh NAME @@ -69,7 +69,7 @@ and a combined total column that also in .It Fl c Ar count Display statistics this many times. .It Fl C -Disable display of CPU statistics. +Disable CPU statistics display. .It Fl d Display DMA operation time (latency) instead of overall I/O time (latency). .It Fl D From owner-svn-src-stable@FreeBSD.ORG Wed Mar 18 02:29:01 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB9B61C5; Wed, 18 Mar 2015 02:29:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D61A3672; Wed, 18 Mar 2015 02:29:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2I2T1ki064503; Wed, 18 Mar 2015 02:29:01 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2I2T1rm064500; Wed, 18 Mar 2015 02:29:01 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503180229.t2I2T1rm064500@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Wed, 18 Mar 2015 02:29:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280200 - stable/9/cddl/contrib/opensolaris/tools/ctf/cvt X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2015 02:29:02 -0000 Author: markj Date: Wed Mar 18 02:29:00 2015 New Revision: 280200 URL: https://svnweb.freebsd.org/changeset/base/280200 Log: MFC r280125: Add a missing format string argument. PR: 197391 Modified: stable/9/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Directory Properties: stable/9/cddl/contrib/opensolaris/ (props changed) Modified: stable/9/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c ============================================================================== --- stable/9/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 01:13:42 2015 (r280199) +++ stable/9/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 02:29:00 2015 (r280200) @@ -411,7 +411,7 @@ write_type(void *arg1, void *arg2) if (i > CTF_MAX_VLEN) { terminate("function %s has too many args: %d > %d\n", - i, CTF_MAX_VLEN); + tdesc_name(tp), i, CTF_MAX_VLEN); } ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FUNCTION, isroot, i); From owner-svn-src-stable@FreeBSD.ORG Wed Mar 18 02:29:52 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 701C332A; Wed, 18 Mar 2015 02:29:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A86F697; Wed, 18 Mar 2015 02:29:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2I2Tq2p064920; Wed, 18 Mar 2015 02:29:52 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2I2TqWR064919; Wed, 18 Mar 2015 02:29:52 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503180229.t2I2TqWR064919@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Wed, 18 Mar 2015 02:29:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280201 - stable/10/cddl/contrib/opensolaris/tools/ctf/cvt X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2015 02:29:52 -0000 Author: markj Date: Wed Mar 18 02:29:51 2015 New Revision: 280201 URL: https://svnweb.freebsd.org/changeset/base/280201 Log: MFC r280125: Add a missing format string argument. PR: 197391 Modified: stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Directory Properties: stable/10/ (props changed) Modified: stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c ============================================================================== --- stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 02:29:00 2015 (r280200) +++ stable/10/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c Wed Mar 18 02:29:51 2015 (r280201) @@ -492,7 +492,7 @@ write_type(void *arg1, void *arg2) if (i > CTF_MAX_VLEN) { terminate("function %s has too many args: %d > %d\n", - i, CTF_MAX_VLEN); + tdesc_name(tp), i, CTF_MAX_VLEN); } ctt.ctt_info = CTF_TYPE_INFO(CTF_K_FUNCTION, isroot, i); From owner-svn-src-stable@FreeBSD.ORG Wed Mar 18 15:20:10 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59ADFC33; Wed, 18 Mar 2015 15:20:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4313AA00; Wed, 18 Mar 2015 15:20:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2IFKAeZ025566; Wed, 18 Mar 2015 15:20:10 GMT (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2IFK9Ni025558; Wed, 18 Mar 2015 15:20:09 GMT (envelope-from rwatson@FreeBSD.org) Message-Id: <201503181520.t2IFK9Ni025558@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rwatson set sender to rwatson@FreeBSD.org using -f From: Robert Watson Date: Wed, 18 Mar 2015 15:20:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280224 - stable/10/sys/sys X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2015 15:20:10 -0000 Author: rwatson Date: Wed Mar 18 15:20:08 2015 New Revision: 280224 URL: https://svnweb.freebsd.org/changeset/base/280224 Log: Merge r263232 from head to stable/10: Rename capability.h to capsicum.h: the original name conflicts with the draft POSIX.1e capability.h used on some systems (e.g., Linux). On FreeBSD, leave a wrapper header so that current code continues to compile. We will eventually want to deprecate the old header as the presence of a capability.h may be confusing some configure scripts. Suggested by: David Drysdale Discussed on: cl-capsicum-discuss MFC after: 3 weeks Sponsored by: Google, Inc. Added: stable/10/sys/sys/capsicum.h - copied, changed from r280165, stable/10/sys/sys/capability.h Modified: stable/10/sys/sys/capability.h Directory Properties: stable/10/ (props changed) stable/10/sys/gnu/dts/ (props changed) Modified: stable/10/sys/sys/capability.h ============================================================================== --- stable/10/sys/sys/capability.h Wed Mar 18 15:16:31 2015 (r280223) +++ stable/10/sys/sys/capability.h Wed Mar 18 15:20:08 2015 (r280224) @@ -1,14 +1,10 @@ /*- - * Copyright (c) 2008-2010 Robert N. M. Watson - * Copyright (c) 2012 FreeBSD Foundation + * Copyright (c) 2014 Robert N. M. Watson * All rights reserved. * * This software was developed at the University of Cambridge Computer * Laboratory with support from a grant from Google, Inc. * - * Portions of this software were developed by Pawel Jakub Dawidek under - * sponsorship from the FreeBSD Foundation. - * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,389 +30,14 @@ */ /* - * Definitions for FreeBSD capabilities facility. + * Historically, the key userspace and kernel Capsicum definitions were found + * in this file. However, it conflicted with POSIX.1e's capability.h, so has + * been renamed capsicum.h. The file remains for backwards compatibility + * reasons as a nested include. */ #ifndef _SYS_CAPABILITY_H_ #define _SYS_CAPABILITY_H_ -#include -#include - -#include -#include -#include - -#ifndef _KERNEL -#include -#endif - -#define CAPRIGHT(idx, bit) ((1ULL << (57 + (idx))) | (bit)) - -/* - * Possible rights on capabilities. - * - * Notes: - * Some system calls don't require a capability in order to perform an - * operation on an fd. These include: close, dup, dup2. - * - * sendfile is authorized using CAP_READ on the file and CAP_WRITE on the - * socket. - * - * mmap() and aio*() system calls will need special attention as they may - * involve reads or writes depending a great deal on context. - */ - -/* INDEX 0 */ - -/* - * General file I/O. - */ -/* Allows for openat(O_RDONLY), read(2), readv(2). */ -#define CAP_READ CAPRIGHT(0, 0x0000000000000001ULL) -/* Allows for openat(O_WRONLY | O_APPEND), write(2), writev(2). */ -#define CAP_WRITE CAPRIGHT(0, 0x0000000000000002ULL) -/* Allows for lseek(fd, 0, SEEK_CUR). */ -#define CAP_SEEK_TELL CAPRIGHT(0, 0x0000000000000004ULL) -/* Allows for lseek(2). */ -#define CAP_SEEK (CAP_SEEK_TELL | 0x0000000000000008ULL) -/* Allows for aio_read(2), pread(2), preadv(2). */ -#define CAP_PREAD (CAP_SEEK | CAP_READ) -/* - * Allows for aio_write(2), openat(O_WRONLY) (without O_APPEND), pwrite(2), - * pwritev(2). - */ -#define CAP_PWRITE (CAP_SEEK | CAP_WRITE) -/* Allows for mmap(PROT_NONE). */ -#define CAP_MMAP CAPRIGHT(0, 0x0000000000000010ULL) -/* Allows for mmap(PROT_READ). */ -#define CAP_MMAP_R (CAP_MMAP | CAP_SEEK | CAP_READ) -/* Allows for mmap(PROT_WRITE). */ -#define CAP_MMAP_W (CAP_MMAP | CAP_SEEK | CAP_WRITE) -/* Allows for mmap(PROT_EXEC). */ -#define CAP_MMAP_X (CAP_MMAP | CAP_SEEK | 0x0000000000000020ULL) -/* Allows for mmap(PROT_READ | PROT_WRITE). */ -#define CAP_MMAP_RW (CAP_MMAP_R | CAP_MMAP_W) -/* Allows for mmap(PROT_READ | PROT_EXEC). */ -#define CAP_MMAP_RX (CAP_MMAP_R | CAP_MMAP_X) -/* Allows for mmap(PROT_WRITE | PROT_EXEC). */ -#define CAP_MMAP_WX (CAP_MMAP_W | CAP_MMAP_X) -/* Allows for mmap(PROT_READ | PROT_WRITE | PROT_EXEC). */ -#define CAP_MMAP_RWX (CAP_MMAP_R | CAP_MMAP_W | CAP_MMAP_X) -/* Allows for openat(O_CREAT). */ -#define CAP_CREATE CAPRIGHT(0, 0x0000000000000040ULL) -/* Allows for openat(O_EXEC) and fexecve(2) in turn. */ -#define CAP_FEXECVE CAPRIGHT(0, 0x0000000000000080ULL) -/* Allows for openat(O_SYNC), openat(O_FSYNC), fsync(2), aio_fsync(2). */ -#define CAP_FSYNC CAPRIGHT(0, 0x0000000000000100ULL) -/* Allows for openat(O_TRUNC), ftruncate(2). */ -#define CAP_FTRUNCATE CAPRIGHT(0, 0x0000000000000200ULL) - -/* Lookups - used to constrain *at() calls. */ -#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL) - -/* VFS methods. */ -/* Allows for fchdir(2). */ -#define CAP_FCHDIR CAPRIGHT(0, 0x0000000000000800ULL) -/* Allows for fchflags(2). */ -#define CAP_FCHFLAGS CAPRIGHT(0, 0x0000000000001000ULL) -/* Allows for fchflags(2) and chflagsat(2). */ -#define CAP_CHFLAGSAT (CAP_FCHFLAGS | CAP_LOOKUP) -/* Allows for fchmod(2). */ -#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL) -/* Allows for fchmod(2) and fchmodat(2). */ -#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP) -/* Allows for fchown(2). */ -#define CAP_FCHOWN CAPRIGHT(0, 0x0000000000004000ULL) -/* Allows for fchown(2) and fchownat(2). */ -#define CAP_FCHOWNAT (CAP_FCHOWN | CAP_LOOKUP) -/* Allows for fcntl(2). */ -#define CAP_FCNTL CAPRIGHT(0, 0x0000000000008000ULL) -/* - * Allows for flock(2), openat(O_SHLOCK), openat(O_EXLOCK), - * fcntl(F_SETLK_REMOTE), fcntl(F_SETLKW), fcntl(F_SETLK), fcntl(F_GETLK). - */ -#define CAP_FLOCK CAPRIGHT(0, 0x0000000000010000ULL) -/* Allows for fpathconf(2). */ -#define CAP_FPATHCONF CAPRIGHT(0, 0x0000000000020000ULL) -/* Allows for UFS background-fsck operations. */ -#define CAP_FSCK CAPRIGHT(0, 0x0000000000040000ULL) -/* Allows for fstat(2). */ -#define CAP_FSTAT CAPRIGHT(0, 0x0000000000080000ULL) -/* Allows for fstat(2), fstatat(2) and faccessat(2). */ -#define CAP_FSTATAT (CAP_FSTAT | CAP_LOOKUP) -/* Allows for fstatfs(2). */ -#define CAP_FSTATFS CAPRIGHT(0, 0x0000000000100000ULL) -/* Allows for futimes(2). */ -#define CAP_FUTIMES CAPRIGHT(0, 0x0000000000200000ULL) -/* Allows for futimes(2) and futimesat(2). */ -#define CAP_FUTIMESAT (CAP_FUTIMES | CAP_LOOKUP) -/* Allows for linkat(2) and renameat(2) (destination directory descriptor). */ -#define CAP_LINKAT (CAP_LOOKUP | 0x0000000000400000ULL) -/* Allows for mkdirat(2). */ -#define CAP_MKDIRAT (CAP_LOOKUP | 0x0000000000800000ULL) -/* Allows for mkfifoat(2). */ -#define CAP_MKFIFOAT (CAP_LOOKUP | 0x0000000001000000ULL) -/* Allows for mknodat(2). */ -#define CAP_MKNODAT (CAP_LOOKUP | 0x0000000002000000ULL) -/* Allows for renameat(2). */ -#define CAP_RENAMEAT (CAP_LOOKUP | 0x0000000004000000ULL) -/* Allows for symlinkat(2). */ -#define CAP_SYMLINKAT (CAP_LOOKUP | 0x0000000008000000ULL) -/* - * Allows for unlinkat(2) and renameat(2) if destination object exists and - * will be removed. - */ -#define CAP_UNLINKAT (CAP_LOOKUP | 0x0000000010000000ULL) - -/* Socket operations. */ -/* Allows for accept(2) and accept4(2). */ -#define CAP_ACCEPT CAPRIGHT(0, 0x0000000020000000ULL) -/* Allows for bind(2). */ -#define CAP_BIND CAPRIGHT(0, 0x0000000040000000ULL) -/* Allows for connect(2). */ -#define CAP_CONNECT CAPRIGHT(0, 0x0000000080000000ULL) -/* Allows for getpeername(2). */ -#define CAP_GETPEERNAME CAPRIGHT(0, 0x0000000100000000ULL) -/* Allows for getsockname(2). */ -#define CAP_GETSOCKNAME CAPRIGHT(0, 0x0000000200000000ULL) -/* Allows for getsockopt(2). */ -#define CAP_GETSOCKOPT CAPRIGHT(0, 0x0000000400000000ULL) -/* Allows for listen(2). */ -#define CAP_LISTEN CAPRIGHT(0, 0x0000000800000000ULL) -/* Allows for sctp_peeloff(2). */ -#define CAP_PEELOFF CAPRIGHT(0, 0x0000001000000000ULL) -#define CAP_RECV CAP_READ -#define CAP_SEND CAP_WRITE -/* Allows for setsockopt(2). */ -#define CAP_SETSOCKOPT CAPRIGHT(0, 0x0000002000000000ULL) -/* Allows for shutdown(2). */ -#define CAP_SHUTDOWN CAPRIGHT(0, 0x0000004000000000ULL) - -/* Allows for bindat(2) on a directory descriptor. */ -#define CAP_BINDAT (CAP_LOOKUP | 0x0000008000000000ULL) -/* Allows for connectat(2) on a directory descriptor. */ -#define CAP_CONNECTAT (CAP_LOOKUP | 0x0000010000000000ULL) - -#define CAP_SOCK_CLIENT \ - (CAP_CONNECT | CAP_GETPEERNAME | CAP_GETSOCKNAME | CAP_GETSOCKOPT | \ - CAP_PEELOFF | CAP_RECV | CAP_SEND | CAP_SETSOCKOPT | CAP_SHUTDOWN) -#define CAP_SOCK_SERVER \ - (CAP_ACCEPT | CAP_BIND | CAP_GETPEERNAME | CAP_GETSOCKNAME | \ - CAP_GETSOCKOPT | CAP_LISTEN | CAP_PEELOFF | CAP_RECV | CAP_SEND | \ - CAP_SETSOCKOPT | CAP_SHUTDOWN) - -/* All used bits for index 0. */ -#define CAP_ALL0 CAPRIGHT(0, 0x0000007FFFFFFFFFULL) - -/* Available bits for index 0. */ -#define CAP_UNUSED0_40 CAPRIGHT(0, 0x0000008000000000ULL) -/* ... */ -#define CAP_UNUSED0_57 CAPRIGHT(0, 0x0100000000000000ULL) - -/* INDEX 1 */ - -/* Mandatory Access Control. */ -/* Allows for mac_get_fd(3). */ -#define CAP_MAC_GET CAPRIGHT(1, 0x0000000000000001ULL) -/* Allows for mac_set_fd(3). */ -#define CAP_MAC_SET CAPRIGHT(1, 0x0000000000000002ULL) - -/* Methods on semaphores. */ -#define CAP_SEM_GETVALUE CAPRIGHT(1, 0x0000000000000004ULL) -#define CAP_SEM_POST CAPRIGHT(1, 0x0000000000000008ULL) -#define CAP_SEM_WAIT CAPRIGHT(1, 0x0000000000000010ULL) - -/* Allows select(2) and poll(2) on descriptor. */ -#define CAP_EVENT CAPRIGHT(1, 0x0000000000000020ULL) -/* Allows for kevent(2) on kqueue descriptor with eventlist != NULL. */ -#define CAP_KQUEUE_EVENT CAPRIGHT(1, 0x0000000000000040ULL) - -/* Strange and powerful rights that should not be given lightly. */ -/* Allows for ioctl(2). */ -#define CAP_IOCTL CAPRIGHT(1, 0x0000000000000080ULL) -#define CAP_TTYHOOK CAPRIGHT(1, 0x0000000000000100ULL) - -/* Process management via process descriptors. */ -/* Allows for pdgetpid(2). */ -#define CAP_PDGETPID CAPRIGHT(1, 0x0000000000000200ULL) -/* Allows for pdwait4(2). */ -#define CAP_PDWAIT CAPRIGHT(1, 0x0000000000000400ULL) -/* Allows for pdkill(2). */ -#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL) - -/* Extended attributes. */ -/* Allows for extattr_delete_fd(2). */ -#define CAP_EXTATTR_DELETE CAPRIGHT(1, 0x0000000000001000ULL) -/* Allows for extattr_get_fd(2). */ -#define CAP_EXTATTR_GET CAPRIGHT(1, 0x0000000000002000ULL) -/* Allows for extattr_list_fd(2). */ -#define CAP_EXTATTR_LIST CAPRIGHT(1, 0x0000000000004000ULL) -/* Allows for extattr_set_fd(2). */ -#define CAP_EXTATTR_SET CAPRIGHT(1, 0x0000000000008000ULL) - -/* Access Control Lists. */ -/* Allows for acl_valid_fd_np(3). */ -#define CAP_ACL_CHECK CAPRIGHT(1, 0x0000000000010000ULL) -/* Allows for acl_delete_fd_np(3). */ -#define CAP_ACL_DELETE CAPRIGHT(1, 0x0000000000020000ULL) -/* Allows for acl_get_fd(3) and acl_get_fd_np(3). */ -#define CAP_ACL_GET CAPRIGHT(1, 0x0000000000040000ULL) -/* Allows for acl_set_fd(3) and acl_set_fd_np(3). */ -#define CAP_ACL_SET CAPRIGHT(1, 0x0000000000080000ULL) - -/* Allows for kevent(2) on kqueue descriptor with changelist != NULL. */ -#define CAP_KQUEUE_CHANGE CAPRIGHT(1, 0x0000000000100000ULL) - -#define CAP_KQUEUE (CAP_KQUEUE_EVENT | CAP_KQUEUE_CHANGE) - -/* All used bits for index 1. */ -#define CAP_ALL1 CAPRIGHT(1, 0x00000000001FFFFFULL) - -/* Available bits for index 1. */ -#define CAP_UNUSED1_22 CAPRIGHT(1, 0x0000000000200000ULL) -/* ... */ -#define CAP_UNUSED1_57 CAPRIGHT(1, 0x0100000000000000ULL) - -/* Backward compatibility. */ -#define CAP_POLL_EVENT CAP_EVENT - -#define CAP_ALL(rights) do { \ - (rights)->cr_rights[0] = \ - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAP_ALL0; \ - (rights)->cr_rights[1] = CAP_ALL1; \ -} while (0) - -#define CAP_NONE(rights) do { \ - (rights)->cr_rights[0] = \ - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAPRIGHT(0, 0ULL); \ - (rights)->cr_rights[1] = CAPRIGHT(1, 0ULL); \ -} while (0) - -#define CAPRVER(right) ((int)((right) >> 62)) -#define CAPVER(rights) CAPRVER((rights)->cr_rights[0]) -#define CAPARSIZE(rights) (CAPVER(rights) + 2) -#define CAPIDXBIT(right) ((int)(((right) >> 57) & 0x1F)) - -/* - * Allowed fcntl(2) commands. - */ -#define CAP_FCNTL_GETFL (1 << F_GETFL) -#define CAP_FCNTL_SETFL (1 << F_SETFL) -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 -#define CAP_FCNTL_GETOWN (1 << F_GETOWN) -#define CAP_FCNTL_SETOWN (1 << F_SETOWN) -#endif -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | CAP_FCNTL_SETFL | \ - CAP_FCNTL_GETOWN | CAP_FCNTL_SETOWN) -#else -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | CAP_FCNTL_SETFL) -#endif - -#define CAP_IOCTLS_ALL SSIZE_MAX - -#define cap_rights_init(...) \ - __cap_rights_init(CAP_RIGHTS_VERSION, __VA_ARGS__, 0ULL) -cap_rights_t *__cap_rights_init(int version, cap_rights_t *rights, ...); - -#define cap_rights_set(rights, ...) \ - __cap_rights_set((rights), __VA_ARGS__, 0ULL) -cap_rights_t *__cap_rights_set(cap_rights_t *rights, ...); - -#define cap_rights_clear(rights, ...) \ - __cap_rights_clear((rights), __VA_ARGS__, 0ULL) -cap_rights_t *__cap_rights_clear(cap_rights_t *rights, ...); - -#define cap_rights_is_set(rights, ...) \ - __cap_rights_is_set((rights), __VA_ARGS__, 0ULL) -bool __cap_rights_is_set(const cap_rights_t *rights, ...); - -bool cap_rights_is_valid(const cap_rights_t *rights); -cap_rights_t *cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src); -cap_rights_t *cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src); -bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little); - -#ifdef _KERNEL - -#include - -#define IN_CAPABILITY_MODE(td) ((td->td_ucred->cr_flags & CRED_FLAG_CAPMODE) != 0) - -struct filedesc; -struct filedescent; - -/* - * Test whether a capability grants the requested rights. - */ -int cap_check(const cap_rights_t *havep, const cap_rights_t *needp); -/* - * Convert capability rights into VM access flags. - */ -u_char cap_rights_to_vmprot(cap_rights_t *havep); - -/* - * For the purposes of procstat(1) and similar tools, allow kern_descrip.c to - * extract the rights from a capability. - */ -cap_rights_t *cap_rights_fde(struct filedescent *fde); -cap_rights_t *cap_rights(struct filedesc *fdp, int fd); - -int cap_ioctl_check(struct filedesc *fdp, int fd, u_long cmd); -int cap_fcntl_check_fde(struct filedescent *fde, int cmd); -int cap_fcntl_check(struct filedesc *fdp, int fd, int cmd); - -#else /* !_KERNEL */ - -__BEGIN_DECLS -/* - * cap_enter(): Cause the process to enter capability mode, which will - * prevent it from directly accessing global namespaces. System calls will - * be limited to process-local, process-inherited, or file descriptor - * operations. If already in capability mode, a no-op. - */ -int cap_enter(void); - -/* - * Are we sandboxed (in capability mode)? - * This is a libc wrapper around the cap_getmode(2) system call. - */ -bool cap_sandboxed(void); - -/* - * cap_getmode(): Are we in capability mode? - */ -int cap_getmode(u_int *modep); - -/* - * Limits capability rights for the given descriptor (CAP_*). - */ -int cap_rights_limit(int fd, const cap_rights_t *rights); -/* - * Returns capability rights for the given descriptor. - */ -#define cap_rights_get(fd, rights) __cap_rights_get(CAP_RIGHTS_VERSION, (fd), (rights)) -int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); -/* - * Limits allowed ioctls for the given descriptor. - */ -int cap_ioctls_limit(int fd, const unsigned long *cmds, size_t ncmds); -/* - * Returns array of allowed ioctls for the given descriptor. - * If all ioctls are allowed, the cmds array is not populated and - * the function returns CAP_IOCTLS_ALL. - */ -ssize_t cap_ioctls_get(int fd, unsigned long *cmds, size_t maxcmds); -/* - * Limits allowed fcntls for the given descriptor (CAP_FCNTL_*). - */ -int cap_fcntls_limit(int fd, uint32_t fcntlrights); -/* - * Returns bitmask of allowed fcntls for the given descriptor. - */ -int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); - -__END_DECLS - -#endif /* !_KERNEL */ +#include #endif /* !_SYS_CAPABILITY_H_ */ Copied and modified: stable/10/sys/sys/capsicum.h (from r280165, stable/10/sys/sys/capability.h) ============================================================================== --- stable/10/sys/sys/capability.h Tue Mar 17 08:42:09 2015 (r280165, copy source) +++ stable/10/sys/sys/capsicum.h Wed Mar 18 15:20:08 2015 (r280224) @@ -36,8 +36,8 @@ /* * Definitions for FreeBSD capabilities facility. */ -#ifndef _SYS_CAPABILITY_H_ -#define _SYS_CAPABILITY_H_ +#ifndef _SYS_CAPSICUM_H_ +#define _SYS_CAPSICUM_H_ #include #include @@ -419,4 +419,4 @@ __END_DECLS #endif /* !_KERNEL */ -#endif /* !_SYS_CAPABILITY_H_ */ +#endif /* !_SYS_CAPSICUM_H_ */ From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 04:33:57 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CA06C68; Thu, 19 Mar 2015 04:33:57 +0000 (UTC) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 62A53FE; Thu, 19 Mar 2015 04:33:57 +0000 (UTC) Received: from Julian-MBP3.local (ppp121-45-255-201.lns20.per4.internode.on.net [121.45.255.201]) (authenticated bits=0) by vps1.elischer.org (8.14.9/8.14.9) with ESMTP id t2J4XpVU050216 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Mar 2015 21:33:54 -0700 (PDT) (envelope-from julian@freebsd.org) Message-ID: <550A51A9.70006@freebsd.org> Date: Thu, 19 Mar 2015 12:33:45 +0800 From: Julian Elischer User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Robert Watson , svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: Re: svn commit: r280224 - stable/10/sys/sys References: <201503181520.t2IFK9Ni025558@svn.freebsd.org> In-Reply-To: <201503181520.t2IFK9Ni025558@svn.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 04:33:57 -0000 On 3/18/15 11:20 PM, Robert Watson wrote: > Author: rwatson > Date: Wed Mar 18 15:20:08 2015 > New Revision: 280224 > URL: https://svnweb.freebsd.org/changeset/base/280224 > > Log: > Merge r263232 from head to stable/10: > > Rename capability.h to capsicum.h: the original name conflicts with the > draft POSIX.1e capability.h used on some systems (e.g., Linux). On > FreeBSD, leave a wrapper header so that current code continues to compile. > > We will eventually want to deprecate the old header as the presence of a > capability.h may be confusing some configure scripts. shouldn't there be a #warn there to print out a message about changing hte include in the source? > > Suggested by: David Drysdale > Discussed on: cl-capsicum-discuss > MFC after: 3 weeks > > Sponsored by: Google, Inc. > > Added: > stable/10/sys/sys/capsicum.h > - copied, changed from r280165, stable/10/sys/sys/capability.h > Modified: > stable/10/sys/sys/capability.h > Directory Properties: > stable/10/ (props changed) > stable/10/sys/gnu/dts/ (props changed) > > Modified: stable/10/sys/sys/capability.h > ============================================================================== > --- stable/10/sys/sys/capability.h Wed Mar 18 15:16:31 2015 (r280223) > +++ stable/10/sys/sys/capability.h Wed Mar 18 15:20:08 2015 (r280224) > @@ -1,14 +1,10 @@ > /*- > - * Copyright (c) 2008-2010 Robert N. M. Watson > - * Copyright (c) 2012 FreeBSD Foundation > + * Copyright (c) 2014 Robert N. M. Watson > * All rights reserved. > * > * This software was developed at the University of Cambridge Computer > * Laboratory with support from a grant from Google, Inc. > * > - * Portions of this software were developed by Pawel Jakub Dawidek under > - * sponsorship from the FreeBSD Foundation. > - * > * Redistribution and use in source and binary forms, with or without > * modification, are permitted provided that the following conditions > * are met: > @@ -34,389 +30,14 @@ > */ > > /* > - * Definitions for FreeBSD capabilities facility. > + * Historically, the key userspace and kernel Capsicum definitions were found > + * in this file. However, it conflicted with POSIX.1e's capability.h, so has > + * been renamed capsicum.h. The file remains for backwards compatibility > + * reasons as a nested include. > */ > #ifndef _SYS_CAPABILITY_H_ > #define _SYS_CAPABILITY_H_ > > -#include > -#include > - > -#include > -#include > -#include > - > -#ifndef _KERNEL > -#include > -#endif > - > -#define CAPRIGHT(idx, bit) ((1ULL << (57 + (idx))) | (bit)) > - > -/* > - * Possible rights on capabilities. > - * > - * Notes: > - * Some system calls don't require a capability in order to perform an > - * operation on an fd. These include: close, dup, dup2. > - * > - * sendfile is authorized using CAP_READ on the file and CAP_WRITE on the > - * socket. > - * > - * mmap() and aio*() system calls will need special attention as they may > - * involve reads or writes depending a great deal on context. > - */ > - > -/* INDEX 0 */ > - > -/* > - * General file I/O. > - */ > -/* Allows for openat(O_RDONLY), read(2), readv(2). */ > -#define CAP_READ CAPRIGHT(0, 0x0000000000000001ULL) > -/* Allows for openat(O_WRONLY | O_APPEND), write(2), writev(2). */ > -#define CAP_WRITE CAPRIGHT(0, 0x0000000000000002ULL) > -/* Allows for lseek(fd, 0, SEEK_CUR). */ > -#define CAP_SEEK_TELL CAPRIGHT(0, 0x0000000000000004ULL) > -/* Allows for lseek(2). */ > -#define CAP_SEEK (CAP_SEEK_TELL | 0x0000000000000008ULL) > -/* Allows for aio_read(2), pread(2), preadv(2). */ > -#define CAP_PREAD (CAP_SEEK | CAP_READ) > -/* > - * Allows for aio_write(2), openat(O_WRONLY) (without O_APPEND), pwrite(2), > - * pwritev(2). > - */ > -#define CAP_PWRITE (CAP_SEEK | CAP_WRITE) > -/* Allows for mmap(PROT_NONE). */ > -#define CAP_MMAP CAPRIGHT(0, 0x0000000000000010ULL) > -/* Allows for mmap(PROT_READ). */ > -#define CAP_MMAP_R (CAP_MMAP | CAP_SEEK | CAP_READ) > -/* Allows for mmap(PROT_WRITE). */ > -#define CAP_MMAP_W (CAP_MMAP | CAP_SEEK | CAP_WRITE) > -/* Allows for mmap(PROT_EXEC). */ > -#define CAP_MMAP_X (CAP_MMAP | CAP_SEEK | 0x0000000000000020ULL) > -/* Allows for mmap(PROT_READ | PROT_WRITE). */ > -#define CAP_MMAP_RW (CAP_MMAP_R | CAP_MMAP_W) > -/* Allows for mmap(PROT_READ | PROT_EXEC). */ > -#define CAP_MMAP_RX (CAP_MMAP_R | CAP_MMAP_X) > -/* Allows for mmap(PROT_WRITE | PROT_EXEC). */ > -#define CAP_MMAP_WX (CAP_MMAP_W | CAP_MMAP_X) > -/* Allows for mmap(PROT_READ | PROT_WRITE | PROT_EXEC). */ > -#define CAP_MMAP_RWX (CAP_MMAP_R | CAP_MMAP_W | CAP_MMAP_X) > -/* Allows for openat(O_CREAT). */ > -#define CAP_CREATE CAPRIGHT(0, 0x0000000000000040ULL) > -/* Allows for openat(O_EXEC) and fexecve(2) in turn. */ > -#define CAP_FEXECVE CAPRIGHT(0, 0x0000000000000080ULL) > -/* Allows for openat(O_SYNC), openat(O_FSYNC), fsync(2), aio_fsync(2). */ > -#define CAP_FSYNC CAPRIGHT(0, 0x0000000000000100ULL) > -/* Allows for openat(O_TRUNC), ftruncate(2). */ > -#define CAP_FTRUNCATE CAPRIGHT(0, 0x0000000000000200ULL) > - > -/* Lookups - used to constrain *at() calls. */ > -#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL) > - > -/* VFS methods. */ > -/* Allows for fchdir(2). */ > -#define CAP_FCHDIR CAPRIGHT(0, 0x0000000000000800ULL) > -/* Allows for fchflags(2). */ > -#define CAP_FCHFLAGS CAPRIGHT(0, 0x0000000000001000ULL) > -/* Allows for fchflags(2) and chflagsat(2). */ > -#define CAP_CHFLAGSAT (CAP_FCHFLAGS | CAP_LOOKUP) > -/* Allows for fchmod(2). */ > -#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL) > -/* Allows for fchmod(2) and fchmodat(2). */ > -#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP) > -/* Allows for fchown(2). */ > -#define CAP_FCHOWN CAPRIGHT(0, 0x0000000000004000ULL) > -/* Allows for fchown(2) and fchownat(2). */ > -#define CAP_FCHOWNAT (CAP_FCHOWN | CAP_LOOKUP) > -/* Allows for fcntl(2). */ > -#define CAP_FCNTL CAPRIGHT(0, 0x0000000000008000ULL) > -/* > - * Allows for flock(2), openat(O_SHLOCK), openat(O_EXLOCK), > - * fcntl(F_SETLK_REMOTE), fcntl(F_SETLKW), fcntl(F_SETLK), fcntl(F_GETLK). > - */ > -#define CAP_FLOCK CAPRIGHT(0, 0x0000000000010000ULL) > -/* Allows for fpathconf(2). */ > -#define CAP_FPATHCONF CAPRIGHT(0, 0x0000000000020000ULL) > -/* Allows for UFS background-fsck operations. */ > -#define CAP_FSCK CAPRIGHT(0, 0x0000000000040000ULL) > -/* Allows for fstat(2). */ > -#define CAP_FSTAT CAPRIGHT(0, 0x0000000000080000ULL) > -/* Allows for fstat(2), fstatat(2) and faccessat(2). */ > -#define CAP_FSTATAT (CAP_FSTAT | CAP_LOOKUP) > -/* Allows for fstatfs(2). */ > -#define CAP_FSTATFS CAPRIGHT(0, 0x0000000000100000ULL) > -/* Allows for futimes(2). */ > -#define CAP_FUTIMES CAPRIGHT(0, 0x0000000000200000ULL) > -/* Allows for futimes(2) and futimesat(2). */ > -#define CAP_FUTIMESAT (CAP_FUTIMES | CAP_LOOKUP) > -/* Allows for linkat(2) and renameat(2) (destination directory descriptor). */ > -#define CAP_LINKAT (CAP_LOOKUP | 0x0000000000400000ULL) > -/* Allows for mkdirat(2). */ > -#define CAP_MKDIRAT (CAP_LOOKUP | 0x0000000000800000ULL) > -/* Allows for mkfifoat(2). */ > -#define CAP_MKFIFOAT (CAP_LOOKUP | 0x0000000001000000ULL) > -/* Allows for mknodat(2). */ > -#define CAP_MKNODAT (CAP_LOOKUP | 0x0000000002000000ULL) > -/* Allows for renameat(2). */ > -#define CAP_RENAMEAT (CAP_LOOKUP | 0x0000000004000000ULL) > -/* Allows for symlinkat(2). */ > -#define CAP_SYMLINKAT (CAP_LOOKUP | 0x0000000008000000ULL) > -/* > - * Allows for unlinkat(2) and renameat(2) if destination object exists and > - * will be removed. > - */ > -#define CAP_UNLINKAT (CAP_LOOKUP | 0x0000000010000000ULL) > - > -/* Socket operations. */ > -/* Allows for accept(2) and accept4(2). */ > -#define CAP_ACCEPT CAPRIGHT(0, 0x0000000020000000ULL) > -/* Allows for bind(2). */ > -#define CAP_BIND CAPRIGHT(0, 0x0000000040000000ULL) > -/* Allows for connect(2). */ > -#define CAP_CONNECT CAPRIGHT(0, 0x0000000080000000ULL) > -/* Allows for getpeername(2). */ > -#define CAP_GETPEERNAME CAPRIGHT(0, 0x0000000100000000ULL) > -/* Allows for getsockname(2). */ > -#define CAP_GETSOCKNAME CAPRIGHT(0, 0x0000000200000000ULL) > -/* Allows for getsockopt(2). */ > -#define CAP_GETSOCKOPT CAPRIGHT(0, 0x0000000400000000ULL) > -/* Allows for listen(2). */ > -#define CAP_LISTEN CAPRIGHT(0, 0x0000000800000000ULL) > -/* Allows for sctp_peeloff(2). */ > -#define CAP_PEELOFF CAPRIGHT(0, 0x0000001000000000ULL) > -#define CAP_RECV CAP_READ > -#define CAP_SEND CAP_WRITE > -/* Allows for setsockopt(2). */ > -#define CAP_SETSOCKOPT CAPRIGHT(0, 0x0000002000000000ULL) > -/* Allows for shutdown(2). */ > -#define CAP_SHUTDOWN CAPRIGHT(0, 0x0000004000000000ULL) > - > -/* Allows for bindat(2) on a directory descriptor. */ > -#define CAP_BINDAT (CAP_LOOKUP | 0x0000008000000000ULL) > -/* Allows for connectat(2) on a directory descriptor. */ > -#define CAP_CONNECTAT (CAP_LOOKUP | 0x0000010000000000ULL) > - > -#define CAP_SOCK_CLIENT \ > - (CAP_CONNECT | CAP_GETPEERNAME | CAP_GETSOCKNAME | CAP_GETSOCKOPT | \ > - CAP_PEELOFF | CAP_RECV | CAP_SEND | CAP_SETSOCKOPT | CAP_SHUTDOWN) > -#define CAP_SOCK_SERVER \ > - (CAP_ACCEPT | CAP_BIND | CAP_GETPEERNAME | CAP_GETSOCKNAME | \ > - CAP_GETSOCKOPT | CAP_LISTEN | CAP_PEELOFF | CAP_RECV | CAP_SEND | \ > - CAP_SETSOCKOPT | CAP_SHUTDOWN) > - > -/* All used bits for index 0. */ > -#define CAP_ALL0 CAPRIGHT(0, 0x0000007FFFFFFFFFULL) > - > -/* Available bits for index 0. */ > -#define CAP_UNUSED0_40 CAPRIGHT(0, 0x0000008000000000ULL) > -/* ... */ > -#define CAP_UNUSED0_57 CAPRIGHT(0, 0x0100000000000000ULL) > - > -/* INDEX 1 */ > - > -/* Mandatory Access Control. */ > -/* Allows for mac_get_fd(3). */ > -#define CAP_MAC_GET CAPRIGHT(1, 0x0000000000000001ULL) > -/* Allows for mac_set_fd(3). */ > -#define CAP_MAC_SET CAPRIGHT(1, 0x0000000000000002ULL) > - > -/* Methods on semaphores. */ > -#define CAP_SEM_GETVALUE CAPRIGHT(1, 0x0000000000000004ULL) > -#define CAP_SEM_POST CAPRIGHT(1, 0x0000000000000008ULL) > -#define CAP_SEM_WAIT CAPRIGHT(1, 0x0000000000000010ULL) > - > -/* Allows select(2) and poll(2) on descriptor. */ > -#define CAP_EVENT CAPRIGHT(1, 0x0000000000000020ULL) > -/* Allows for kevent(2) on kqueue descriptor with eventlist != NULL. */ > -#define CAP_KQUEUE_EVENT CAPRIGHT(1, 0x0000000000000040ULL) > - > -/* Strange and powerful rights that should not be given lightly. */ > -/* Allows for ioctl(2). */ > -#define CAP_IOCTL CAPRIGHT(1, 0x0000000000000080ULL) > -#define CAP_TTYHOOK CAPRIGHT(1, 0x0000000000000100ULL) > - > -/* Process management via process descriptors. */ > -/* Allows for pdgetpid(2). */ > -#define CAP_PDGETPID CAPRIGHT(1, 0x0000000000000200ULL) > -/* Allows for pdwait4(2). */ > -#define CAP_PDWAIT CAPRIGHT(1, 0x0000000000000400ULL) > -/* Allows for pdkill(2). */ > -#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL) > - > -/* Extended attributes. */ > -/* Allows for extattr_delete_fd(2). */ > -#define CAP_EXTATTR_DELETE CAPRIGHT(1, 0x0000000000001000ULL) > -/* Allows for extattr_get_fd(2). */ > -#define CAP_EXTATTR_GET CAPRIGHT(1, 0x0000000000002000ULL) > -/* Allows for extattr_list_fd(2). */ > -#define CAP_EXTATTR_LIST CAPRIGHT(1, 0x0000000000004000ULL) > -/* Allows for extattr_set_fd(2). */ > -#define CAP_EXTATTR_SET CAPRIGHT(1, 0x0000000000008000ULL) > - > -/* Access Control Lists. */ > -/* Allows for acl_valid_fd_np(3). */ > -#define CAP_ACL_CHECK CAPRIGHT(1, 0x0000000000010000ULL) > -/* Allows for acl_delete_fd_np(3). */ > -#define CAP_ACL_DELETE CAPRIGHT(1, 0x0000000000020000ULL) > -/* Allows for acl_get_fd(3) and acl_get_fd_np(3). */ > -#define CAP_ACL_GET CAPRIGHT(1, 0x0000000000040000ULL) > -/* Allows for acl_set_fd(3) and acl_set_fd_np(3). */ > -#define CAP_ACL_SET CAPRIGHT(1, 0x0000000000080000ULL) > - > -/* Allows for kevent(2) on kqueue descriptor with changelist != NULL. */ > -#define CAP_KQUEUE_CHANGE CAPRIGHT(1, 0x0000000000100000ULL) > - > -#define CAP_KQUEUE (CAP_KQUEUE_EVENT | CAP_KQUEUE_CHANGE) > - > -/* All used bits for index 1. */ > -#define CAP_ALL1 CAPRIGHT(1, 0x00000000001FFFFFULL) > - > -/* Available bits for index 1. */ > -#define CAP_UNUSED1_22 CAPRIGHT(1, 0x0000000000200000ULL) > -/* ... */ > -#define CAP_UNUSED1_57 CAPRIGHT(1, 0x0100000000000000ULL) > - > -/* Backward compatibility. */ > -#define CAP_POLL_EVENT CAP_EVENT > - > -#define CAP_ALL(rights) do { \ > - (rights)->cr_rights[0] = \ > - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAP_ALL0; \ > - (rights)->cr_rights[1] = CAP_ALL1; \ > -} while (0) > - > -#define CAP_NONE(rights) do { \ > - (rights)->cr_rights[0] = \ > - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAPRIGHT(0, 0ULL); \ > - (rights)->cr_rights[1] = CAPRIGHT(1, 0ULL); \ > -} while (0) > - > -#define CAPRVER(right) ((int)((right) >> 62)) > -#define CAPVER(rights) CAPRVER((rights)->cr_rights[0]) > -#define CAPARSIZE(rights) (CAPVER(rights) + 2) > -#define CAPIDXBIT(right) ((int)(((right) >> 57) & 0x1F)) > - > -/* > - * Allowed fcntl(2) commands. > - */ > -#define CAP_FCNTL_GETFL (1 << F_GETFL) > -#define CAP_FCNTL_SETFL (1 << F_SETFL) > -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 > -#define CAP_FCNTL_GETOWN (1 << F_GETOWN) > -#define CAP_FCNTL_SETOWN (1 << F_SETOWN) > -#endif > -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >= 200112 > -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | CAP_FCNTL_SETFL | \ > - CAP_FCNTL_GETOWN | CAP_FCNTL_SETOWN) > -#else > -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | CAP_FCNTL_SETFL) > -#endif > - > -#define CAP_IOCTLS_ALL SSIZE_MAX > - > -#define cap_rights_init(...) \ > - __cap_rights_init(CAP_RIGHTS_VERSION, __VA_ARGS__, 0ULL) > -cap_rights_t *__cap_rights_init(int version, cap_rights_t *rights, ...); > - > -#define cap_rights_set(rights, ...) \ > - __cap_rights_set((rights), __VA_ARGS__, 0ULL) > -cap_rights_t *__cap_rights_set(cap_rights_t *rights, ...); > - > -#define cap_rights_clear(rights, ...) \ > - __cap_rights_clear((rights), __VA_ARGS__, 0ULL) > -cap_rights_t *__cap_rights_clear(cap_rights_t *rights, ...); > - > -#define cap_rights_is_set(rights, ...) \ > - __cap_rights_is_set((rights), __VA_ARGS__, 0ULL) > -bool __cap_rights_is_set(const cap_rights_t *rights, ...); > - > -bool cap_rights_is_valid(const cap_rights_t *rights); > -cap_rights_t *cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src); > -cap_rights_t *cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src); > -bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little); > - > -#ifdef _KERNEL > - > -#include > - > -#define IN_CAPABILITY_MODE(td) ((td->td_ucred->cr_flags & CRED_FLAG_CAPMODE) != 0) > - > -struct filedesc; > -struct filedescent; > - > -/* > - * Test whether a capability grants the requested rights. > - */ > -int cap_check(const cap_rights_t *havep, const cap_rights_t *needp); > -/* > - * Convert capability rights into VM access flags. > - */ > -u_char cap_rights_to_vmprot(cap_rights_t *havep); > - > -/* > - * For the purposes of procstat(1) and similar tools, allow kern_descrip.c to > - * extract the rights from a capability. > - */ > -cap_rights_t *cap_rights_fde(struct filedescent *fde); > -cap_rights_t *cap_rights(struct filedesc *fdp, int fd); > - > -int cap_ioctl_check(struct filedesc *fdp, int fd, u_long cmd); > -int cap_fcntl_check_fde(struct filedescent *fde, int cmd); > -int cap_fcntl_check(struct filedesc *fdp, int fd, int cmd); > - > -#else /* !_KERNEL */ > - > -__BEGIN_DECLS > -/* > - * cap_enter(): Cause the process to enter capability mode, which will > - * prevent it from directly accessing global namespaces. System calls will > - * be limited to process-local, process-inherited, or file descriptor > - * operations. If already in capability mode, a no-op. > - */ > -int cap_enter(void); > - > -/* > - * Are we sandboxed (in capability mode)? > - * This is a libc wrapper around the cap_getmode(2) system call. > - */ > -bool cap_sandboxed(void); > - > -/* > - * cap_getmode(): Are we in capability mode? > - */ > -int cap_getmode(u_int *modep); > - > -/* > - * Limits capability rights for the given descriptor (CAP_*). > - */ > -int cap_rights_limit(int fd, const cap_rights_t *rights); > -/* > - * Returns capability rights for the given descriptor. > - */ > -#define cap_rights_get(fd, rights) __cap_rights_get(CAP_RIGHTS_VERSION, (fd), (rights)) > -int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); > -/* > - * Limits allowed ioctls for the given descriptor. > - */ > -int cap_ioctls_limit(int fd, const unsigned long *cmds, size_t ncmds); > -/* > - * Returns array of allowed ioctls for the given descriptor. > - * If all ioctls are allowed, the cmds array is not populated and > - * the function returns CAP_IOCTLS_ALL. > - */ > -ssize_t cap_ioctls_get(int fd, unsigned long *cmds, size_t maxcmds); > -/* > - * Limits allowed fcntls for the given descriptor (CAP_FCNTL_*). > - */ > -int cap_fcntls_limit(int fd, uint32_t fcntlrights); > -/* > - * Returns bitmask of allowed fcntls for the given descriptor. > - */ > -int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); > - > -__END_DECLS > - > -#endif /* !_KERNEL */ > +#include > > #endif /* !_SYS_CAPABILITY_H_ */ > > Copied and modified: stable/10/sys/sys/capsicum.h (from r280165, stable/10/sys/sys/capability.h) > ============================================================================== > --- stable/10/sys/sys/capability.h Tue Mar 17 08:42:09 2015 (r280165, copy source) > +++ stable/10/sys/sys/capsicum.h Wed Mar 18 15:20:08 2015 (r280224) > @@ -36,8 +36,8 @@ > /* > * Definitions for FreeBSD capabilities facility. > */ > -#ifndef _SYS_CAPABILITY_H_ > -#define _SYS_CAPABILITY_H_ > +#ifndef _SYS_CAPSICUM_H_ > +#define _SYS_CAPSICUM_H_ > > #include > #include > @@ -419,4 +419,4 @@ __END_DECLS > > #endif /* !_KERNEL */ > > -#endif /* !_SYS_CAPABILITY_H_ */ > +#endif /* !_SYS_CAPSICUM_H_ */ > > From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 09:47:59 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00FBF438; Thu, 19 Mar 2015 09:47:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF0773DA; Thu, 19 Mar 2015 09:47:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2J9lwbc045491; Thu, 19 Mar 2015 09:47:58 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2J9lwgl045490; Thu, 19 Mar 2015 09:47:58 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503190947.t2J9lwgl045490@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 19 Mar 2015 09:47:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280241 - stable/10/sys/dev/virtio/block X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 09:47:59 -0000 Author: mav Date: Thu Mar 19 09:47:57 2015 New Revision: 280241 URL: https://svnweb.freebsd.org/changeset/base/280241 Log: MFC r279642: Reenable VIRTIO_BLK_F_TOPOLOGY feature. Modified: stable/10/sys/dev/virtio/block/virtio_blk.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/dev/virtio/block/virtio_blk.c ============================================================================== --- stable/10/sys/dev/virtio/block/virtio_blk.c Thu Mar 19 07:22:42 2015 (r280240) +++ stable/10/sys/dev/virtio/block/virtio_blk.c Thu Mar 19 09:47:57 2015 (r280241) @@ -204,6 +204,7 @@ TUNABLE_INT("hw.vtblk.writecache_mode", VIRTIO_BLK_F_RO | \ VIRTIO_BLK_F_BLK_SIZE | \ VIRTIO_BLK_F_WCE | \ + VIRTIO_BLK_F_TOPOLOGY | \ VIRTIO_BLK_F_CONFIG_WCE | \ VIRTIO_RING_F_INDIRECT_DESC) From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 09:49:13 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B278666C; Thu, 19 Mar 2015 09:49:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CEE73FA; Thu, 19 Mar 2015 09:49:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2J9nDTR045855; Thu, 19 Mar 2015 09:49:13 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2J9nDed045854; Thu, 19 Mar 2015 09:49:13 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503190949.t2J9nDed045854@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 19 Mar 2015 09:49:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280242 - stable/9/sys/dev/virtio/block X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 09:49:13 -0000 Author: mav Date: Thu Mar 19 09:49:12 2015 New Revision: 280242 URL: https://svnweb.freebsd.org/changeset/base/280242 Log: MFC r279642: Reenable VIRTIO_BLK_F_TOPOLOGY feature. Modified: stable/9/sys/dev/virtio/block/virtio_blk.c Directory Properties: stable/9/ (props changed) stable/9/sys/ (props changed) stable/9/sys/dev/ (props changed) Modified: stable/9/sys/dev/virtio/block/virtio_blk.c ============================================================================== --- stable/9/sys/dev/virtio/block/virtio_blk.c Thu Mar 19 09:47:57 2015 (r280241) +++ stable/9/sys/dev/virtio/block/virtio_blk.c Thu Mar 19 09:49:12 2015 (r280242) @@ -197,6 +197,7 @@ TUNABLE_INT("hw.vtblk.writecache_mode", VIRTIO_BLK_F_RO | \ VIRTIO_BLK_F_BLK_SIZE | \ VIRTIO_BLK_F_WCE | \ + VIRTIO_BLK_F_TOPOLOGY | \ VIRTIO_BLK_F_CONFIG_WCE | \ VIRTIO_RING_F_INDIRECT_DESC) From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 09:53:01 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A73458D7; Thu, 19 Mar 2015 09:53:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9112B69D; Thu, 19 Mar 2015 09:53:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2J9r1wq049938; Thu, 19 Mar 2015 09:53:01 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2J9r1vW049929; Thu, 19 Mar 2015 09:53:01 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503190953.t2J9r1vW049929@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 19 Mar 2015 09:53:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280243 - in stable/10: sys/dev/virtio/block usr.sbin/bhyve X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 09:53:01 -0000 Author: mav Date: Thu Mar 19 09:53:00 2015 New Revision: 280243 URL: https://svnweb.freebsd.org/changeset/base/280243 Log: MFC r279651, r279652, r279657: Add support for TOPOLOGY feature of virtio block device. Passing through physical block size/offset from underlying storage allows guest to manage proper data and I/O alignment to improve performance. Modified: stable/10/sys/dev/virtio/block/virtio_blk.h stable/10/usr.sbin/bhyve/pci_virtio_block.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/dev/virtio/block/virtio_blk.h ============================================================================== --- stable/10/sys/dev/virtio/block/virtio_blk.h Thu Mar 19 09:49:12 2015 (r280242) +++ stable/10/sys/dev/virtio/block/virtio_blk.h Thu Mar 19 09:53:00 2015 (r280243) @@ -67,7 +67,7 @@ struct virtio_blk_config { uint8_t physical_block_exp; uint8_t alignment_offset; uint16_t min_io_size; - uint16_t opt_io_size; + uint32_t opt_io_size; } topology; /* Writeback mode (if VIRTIO_BLK_F_CONFIG_WCE) */ Modified: stable/10/usr.sbin/bhyve/pci_virtio_block.c ============================================================================== --- stable/10/usr.sbin/bhyve/pci_virtio_block.c Thu Mar 19 09:49:12 2015 (r280242) +++ stable/10/usr.sbin/bhyve/pci_virtio_block.c Thu Mar 19 09:53:00 2015 (r280243) @@ -64,7 +64,8 @@ __FBSDID("$FreeBSD$"); /* Capability bits */ #define VTBLK_F_SEG_MAX (1 << 2) /* Maximum request segments */ -#define VTBLK_F_BLK_SIZE (1 << 6) /* cfg block size valid */ +#define VTBLK_F_BLK_SIZE (1 << 6) /* cfg block size valid */ +#define VTBLK_F_TOPOLOGY (1 << 10) /* Optimal I/O alignment */ /* * Host capabilities @@ -72,6 +73,7 @@ __FBSDID("$FreeBSD$"); #define VTBLK_S_HOSTCAPS \ ( VTBLK_F_SEG_MAX | \ VTBLK_F_BLK_SIZE | \ + VTBLK_F_TOPOLOGY | \ VIRTIO_RING_F_INDIRECT_DESC ) /* indirect descriptors */ /* @@ -81,11 +83,19 @@ struct vtblk_config { uint64_t vbc_capacity; uint32_t vbc_size_max; uint32_t vbc_seg_max; - uint16_t vbc_geom_c; - uint8_t vbc_geom_h; - uint8_t vbc_geom_s; + struct { + uint16_t cylinders; + uint8_t heads; + uint8_t sectors; + } vbc_geometry; uint32_t vbc_blk_size; - uint32_t vbc_sectors_max; + struct { + uint8_t physical_block_exp; + uint8_t alignment_offset; + uint16_t min_io_size; + uint32_t opt_io_size; + } vbc_topology; + uint8_t vbc_writeback; } __packed; /* @@ -262,7 +272,7 @@ pci_vtblk_init(struct vmctx *ctx, struct MD5_CTX mdctx; u_char digest[16]; struct pci_vtblk_softc *sc; - off_t size; + off_t size, sts, sto; int fd; int sectsz; @@ -291,6 +301,7 @@ pci_vtblk_init(struct vmctx *ctx, struct */ size = sbuf.st_size; sectsz = DEV_BSIZE; + sts = sto = 0; if (S_ISCHR(sbuf.st_mode)) { if (ioctl(fd, DIOCGMEDIASIZE, &size) < 0 || ioctl(fd, DIOCGSECTORSIZE, §sz)) { @@ -300,7 +311,10 @@ pci_vtblk_init(struct vmctx *ctx, struct } assert(size != 0); assert(sectsz != 0); - } + if (ioctl(fd, DIOCGSTRIPESIZE, &sts) == 0 && sts > 0) + ioctl(fd, DIOCGSTRIPEOFFSET, &sto); + } else + sts = sbuf.st_blksize; sc = calloc(1, sizeof(struct pci_vtblk_softc)); @@ -328,13 +342,19 @@ pci_vtblk_init(struct vmctx *ctx, struct /* setup virtio block config space */ sc->vbsc_cfg.vbc_capacity = size / DEV_BSIZE; /* 512-byte units */ + sc->vbsc_cfg.vbc_size_max = 0; /* not negotiated */ sc->vbsc_cfg.vbc_seg_max = VTBLK_MAXSEGS; + sc->vbsc_cfg.vbc_geometry.cylinders = 0; /* no geometry */ + sc->vbsc_cfg.vbc_geometry.heads = 0; + sc->vbsc_cfg.vbc_geometry.sectors = 0; sc->vbsc_cfg.vbc_blk_size = sectsz; - sc->vbsc_cfg.vbc_size_max = 0; /* not negotiated */ - sc->vbsc_cfg.vbc_geom_c = 0; /* no geometry */ - sc->vbsc_cfg.vbc_geom_h = 0; - sc->vbsc_cfg.vbc_geom_s = 0; - sc->vbsc_cfg.vbc_sectors_max = 0; + sc->vbsc_cfg.vbc_topology.physical_block_exp = + (sts > sectsz) ? (ffsll(sts / sectsz) - 1) : 0; + sc->vbsc_cfg.vbc_topology.alignment_offset = + (sto != 0) ? ((sts - sto) / sectsz) : 0; + sc->vbsc_cfg.vbc_topology.min_io_size = 0; + sc->vbsc_cfg.vbc_topology.opt_io_size = 0; + sc->vbsc_cfg.vbc_writeback = 0; /* * Should we move some of this into virtio.c? Could From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 09:54:50 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1ED40A20; Thu, 19 Mar 2015 09:54:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 092336AE; Thu, 19 Mar 2015 09:54:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2J9snkj050203; Thu, 19 Mar 2015 09:54:49 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2J9snJw050199; Thu, 19 Mar 2015 09:54:49 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503190954.t2J9snJw050199@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 19 Mar 2015 09:54:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280244 - stable/10/usr.sbin/bhyve X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 09:54:50 -0000 Author: mav Date: Thu Mar 19 09:54:48 2015 New Revision: 280244 URL: https://svnweb.freebsd.org/changeset/base/280244 Log: MFC r279654: Report logical/physical sector sizes for virtual SATA disk. Modified: stable/10/usr.sbin/bhyve/block_if.c stable/10/usr.sbin/bhyve/block_if.h stable/10/usr.sbin/bhyve/pci_ahci.c Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/bhyve/block_if.c ============================================================================== --- stable/10/usr.sbin/bhyve/block_if.c Thu Mar 19 09:53:00 2015 (r280243) +++ stable/10/usr.sbin/bhyve/block_if.c Thu Mar 19 09:54:48 2015 (r280244) @@ -83,6 +83,8 @@ struct blockif_ctxt { int bc_rdonly; off_t bc_size; int bc_sectsz; + int bc_psectsz; + int bc_psectoff; pthread_t bc_btid; pthread_mutex_t bc_mtx; pthread_cond_t bc_cond; @@ -268,7 +270,7 @@ blockif_open(const char *optstr, const c char *nopt, *xopts; struct blockif_ctxt *bc; struct stat sbuf; - off_t size; + off_t size, psectsz, psectoff; int extra, fd, i, sectsz; int nocache, sync, ro; @@ -323,6 +325,7 @@ blockif_open(const char *optstr, const c */ size = sbuf.st_size; sectsz = DEV_BSIZE; + psectsz = psectoff = 0; if (S_ISCHR(sbuf.st_mode)) { if (ioctl(fd, DIOCGMEDIASIZE, &size) < 0 || ioctl(fd, DIOCGSECTORSIZE, §sz)) { @@ -332,7 +335,10 @@ blockif_open(const char *optstr, const c } assert(size != 0); assert(sectsz != 0); - } + if (ioctl(fd, DIOCGSTRIPESIZE, &psectsz) == 0 && psectsz > 0) + ioctl(fd, DIOCGSTRIPEOFFSET, &psectoff); + } else + psectsz = sbuf.st_blksize; bc = calloc(1, sizeof(struct blockif_ctxt)); if (bc == NULL) { @@ -345,6 +351,8 @@ blockif_open(const char *optstr, const c bc->bc_rdonly = ro; bc->bc_size = size; bc->bc_sectsz = sectsz; + bc->bc_psectsz = psectsz; + bc->bc_psectoff = psectoff; pthread_mutex_init(&bc->bc_mtx, NULL); pthread_cond_init(&bc->bc_cond, NULL); TAILQ_INIT(&bc->bc_freeq); @@ -595,6 +603,15 @@ blockif_sectsz(struct blockif_ctxt *bc) return (bc->bc_sectsz); } +void +blockif_psectsz(struct blockif_ctxt *bc, int *size, int *off) +{ + + assert(bc->bc_magic == BLOCKIF_SIG); + *size = bc->bc_psectsz; + *off = bc->bc_psectoff; +} + int blockif_queuesz(struct blockif_ctxt *bc) { Modified: stable/10/usr.sbin/bhyve/block_if.h ============================================================================== --- stable/10/usr.sbin/bhyve/block_if.h Thu Mar 19 09:53:00 2015 (r280243) +++ stable/10/usr.sbin/bhyve/block_if.h Thu Mar 19 09:54:48 2015 (r280244) @@ -55,6 +55,7 @@ off_t blockif_size(struct blockif_ctxt * void blockif_chs(struct blockif_ctxt *bc, uint16_t *c, uint8_t *h, uint8_t *s); int blockif_sectsz(struct blockif_ctxt *bc); +void blockif_psectsz(struct blockif_ctxt *bc, int *size, int *off); int blockif_queuesz(struct blockif_ctxt *bc); int blockif_is_ro(struct blockif_ctxt *bc); int blockif_read(struct blockif_ctxt *bc, struct blockif_req *breq); Modified: stable/10/usr.sbin/bhyve/pci_ahci.c ============================================================================== --- stable/10/usr.sbin/bhyve/pci_ahci.c Thu Mar 19 09:53:00 2015 (r280243) +++ stable/10/usr.sbin/bhyve/pci_ahci.c Thu Mar 19 09:54:48 2015 (r280244) @@ -684,11 +684,14 @@ handle_identify(struct ahci_port *p, int } else { uint16_t buf[256]; uint64_t sectors; + int sectsz, psectsz, psectoff; uint16_t cyl; uint8_t sech, heads; - sectors = blockif_size(p->bctx) / blockif_sectsz(p->bctx); + sectsz = blockif_sectsz(p->bctx); + sectors = blockif_size(p->bctx) / sectsz; blockif_chs(p->bctx, &cyl, &heads, &sech); + blockif_psectsz(p->bctx, &psectsz, &psectoff); memset(buf, 0, sizeof(buf)); buf[0] = 0x0040; buf[1] = cyl; @@ -733,6 +736,18 @@ handle_identify(struct ahci_port *p, int buf[101] = (sectors >> 16); buf[102] = (sectors >> 32); buf[103] = (sectors >> 48); + buf[106] = 0x4000; + buf[209] = 0x4000; + if (psectsz > sectsz) { + buf[106] |= 0x2000; + buf[106] |= ffsl(psectsz / sectsz) - 1; + buf[209] |= (psectoff / sectsz); + } + if (sectsz > 512) { + buf[106] |= 0x1000; + buf[117] = sectsz / 2; + buf[118] = ((sectsz / 2) >> 16); + } ahci_write_fis_piosetup(p); write_prdt(p, slot, cfis, (void *)buf, sizeof(buf)); p->tfd = ATA_S_DSC | ATA_S_READY; From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 09:56:40 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EBA9B6A; Thu, 19 Mar 2015 09:56:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED58B6C2; Thu, 19 Mar 2015 09:56:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2J9ud4D050527; Thu, 19 Mar 2015 09:56:39 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2J9ud4f050525; Thu, 19 Mar 2015 09:56:39 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503190956.t2J9ud4f050525@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Thu, 19 Mar 2015 09:56:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280245 - stable/10/usr.sbin/bhyve X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 09:56:40 -0000 Author: mav Date: Thu Mar 19 09:56:38 2015 New Revision: 280245 URL: https://svnweb.freebsd.org/changeset/base/280245 Log: MFC r279658, r279673, r279675: Implement cache flush for ahci-hd and for virtio-blk over device. Modified: stable/10/usr.sbin/bhyve/block_if.c stable/10/usr.sbin/bhyve/pci_virtio_block.c Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/bhyve/block_if.c ============================================================================== --- stable/10/usr.sbin/bhyve/block_if.c Thu Mar 19 09:54:48 2015 (r280244) +++ stable/10/usr.sbin/bhyve/block_if.c Thu Mar 19 09:56:38 2015 (r280245) @@ -80,6 +80,7 @@ struct blockif_elem { struct blockif_ctxt { int bc_magic; int bc_fd; + int bc_ischr; int bc_rdonly; off_t bc_size; int bc_sectsz; @@ -190,6 +191,11 @@ blockif_proc(struct blockif_ctxt *bc, st err = errno; break; case BOP_FLUSH: + if (bc->bc_ischr) { + if (ioctl(bc->bc_fd, DIOCGFLUSH)) + err = errno; + } else if (fsync(bc->bc_fd)) + err = errno; break; default: err = EINVAL; @@ -348,6 +354,7 @@ blockif_open(const char *optstr, const c bc->bc_magic = BLOCKIF_SIG; bc->bc_fd = fd; + bc->bc_ischr = S_ISCHR(sbuf.st_mode); bc->bc_rdonly = ro; bc->bc_size = size; bc->bc_sectsz = sectsz; Modified: stable/10/usr.sbin/bhyve/pci_virtio_block.c ============================================================================== --- stable/10/usr.sbin/bhyve/pci_virtio_block.c Thu Mar 19 09:54:48 2015 (r280244) +++ stable/10/usr.sbin/bhyve/pci_virtio_block.c Thu Mar 19 09:56:38 2015 (r280245) @@ -128,6 +128,7 @@ struct pci_vtblk_softc { pthread_mutex_t vsc_mtx; struct vqueue_info vbsc_vq; int vbsc_fd; + int vbsc_ischr; struct vtblk_config vbsc_cfg; char vbsc_ident[VTBLK_BLK_ID_BYTES]; }; @@ -216,12 +217,15 @@ pci_vtblk_proc(struct pci_vtblk_softc *s DPRINTF(("virtio-block: %s op, %d bytes, %d segs, offset %ld\n\r", writeop ? "write" : "read/ident", iolen, i - 1, offset)); + err = 0; switch (type) { case VBH_OP_WRITE: - err = pwritev(sc->vbsc_fd, iov + 1, i - 1, offset); + if (pwritev(sc->vbsc_fd, iov + 1, i - 1, offset) < 0) + err = errno; break; case VBH_OP_READ: - err = preadv(sc->vbsc_fd, iov + 1, i - 1, offset); + if (preadv(sc->vbsc_fd, iov + 1, i - 1, offset) < 0) + err = errno; break; case VBH_OP_IDENT: /* Assume a single buffer */ @@ -231,7 +235,11 @@ pci_vtblk_proc(struct pci_vtblk_softc *s break; case VBH_OP_FLUSH: case VBH_OP_FLUSH_OUT: - err = fsync(sc->vbsc_fd); + if (sc->vbsc_ischr) { + if (ioctl(sc->vbsc_fd, DIOCGFLUSH)) + err = errno; + } else if (fsync(sc->vbsc_fd)) + err = errno; break; default: err = -ENOSYS; @@ -239,12 +247,11 @@ pci_vtblk_proc(struct pci_vtblk_softc *s } /* convert errno into a virtio block error return */ - if (err < 0) { - if (err == -ENOSYS) - *status = VTBLK_S_UNSUPP; - else - *status = VTBLK_S_IOERR; - } else + if (err == -ENOSYS) + *status = VTBLK_S_UNSUPP; + else if (err != 0) + *status = VTBLK_S_IOERR; + else *status = VTBLK_S_OK; /* @@ -320,6 +327,7 @@ pci_vtblk_init(struct vmctx *ctx, struct /* record fd of storage device/file */ sc->vbsc_fd = fd; + sc->vbsc_ischr = S_ISCHR(sbuf.st_mode); pthread_mutex_init(&sc->vsc_mtx, NULL); From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 10:51:32 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 232EE86F; Thu, 19 Mar 2015 10:51:32 +0000 (UTC) Received: from cyrus.watson.org (cyrus.watson.org [198.74.231.69]) by mx1.freebsd.org (Postfix) with ESMTP id B4C53D77; Thu, 19 Mar 2015 10:51:28 +0000 (UTC) Received: from c0152.aw.cl.cam.ac.uk (c0152.aw.cl.cam.ac.uk [128.232.100.152]) by cyrus.watson.org (Postfix) with ESMTPSA id 7D09046B8D; Thu, 19 Mar 2015 06:51:21 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Subject: Re: svn commit: r280224 - stable/10/sys/sys From: "Robert N. M. Watson" In-Reply-To: <550A51A9.70006@freebsd.org> Date: Thu, 19 Mar 2015 10:51:21 +0000 Content-Transfer-Encoding: quoted-printable Message-Id: <3B217D2E-B2E8-49CB-BF07-2CBD3C9E56FA@FreeBSD.org> References: <201503181520.t2IFK9Ni025558@svn.freebsd.org> <550A51A9.70006@freebsd.org> To: Julian Elischer X-Mailer: Apple Mail (2.2070.6) Cc: svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 10:51:32 -0000 On 19 Mar 2015, at 04:33, Julian Elischer wrote: >> Log: >> Merge r263232 from head to stable/10: >> Rename capability.h to capsicum.h: the original name conflicts = with the >> draft POSIX.1e capability.h used on some systems (e.g., Linux). = On >> FreeBSD, leave a wrapper header so that current code continues to = compile. >> We will eventually want to deprecate the old header as the = presence of a >> capability.h may be confusing some configure scripts. >=20 > shouldn't there be a #warn there to print out a message about = changing hte include in the source? Probably premature -- I've not yet merged documentation changes, changes = to use the new header around the kernel and userspace, etc. Those will = come in successor commits. Robert >=20 >> Suggested by: David Drysdale >> Discussed on: cl-capsicum-discuss >> MFC after: 3 weeks >> Sponsored by: Google, Inc. >>=20 >> Added: >> stable/10/sys/sys/capsicum.h >> - copied, changed from r280165, stable/10/sys/sys/capability.h >> Modified: >> stable/10/sys/sys/capability.h >> Directory Properties: >> stable/10/ (props changed) >> stable/10/sys/gnu/dts/ (props changed) >>=20 >> Modified: stable/10/sys/sys/capability.h >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- stable/10/sys/sys/capability.h Wed Mar 18 15:16:31 2015 = (r280223) >> +++ stable/10/sys/sys/capability.h Wed Mar 18 15:20:08 2015 = (r280224) >> @@ -1,14 +1,10 @@ >> /*- >> - * Copyright (c) 2008-2010 Robert N. M. Watson >> - * Copyright (c) 2012 FreeBSD Foundation >> + * Copyright (c) 2014 Robert N. M. Watson >> * All rights reserved. >> * >> * This software was developed at the University of Cambridge = Computer >> * Laboratory with support from a grant from Google, Inc. >> * >> - * Portions of this software were developed by Pawel Jakub Dawidek = under >> - * sponsorship from the FreeBSD Foundation. >> - * >> * Redistribution and use in source and binary forms, with or = without >> * modification, are permitted provided that the following = conditions >> * are met: >> @@ -34,389 +30,14 @@ >> */ >> /* >> - * Definitions for FreeBSD capabilities facility. >> + * Historically, the key userspace and kernel Capsicum definitions = were found >> + * in this file. However, it conflicted with POSIX.1e's = capability.h, so has >> + * been renamed capsicum.h. The file remains for backwards = compatibility >> + * reasons as a nested include. >> */ >> #ifndef _SYS_CAPABILITY_H_ >> #define _SYS_CAPABILITY_H_ >> -#include >> -#include >> - >> -#include >> -#include >> -#include >> - >> -#ifndef _KERNEL >> -#include >> -#endif >> - >> -#define CAPRIGHT(idx, bit) ((1ULL << (57 + (idx))) | (bit)) >> - >> -/* >> - * Possible rights on capabilities. >> - * >> - * Notes: >> - * Some system calls don't require a capability in order to perform = an >> - * operation on an fd. These include: close, dup, dup2. >> - * >> - * sendfile is authorized using CAP_READ on the file and CAP_WRITE = on the >> - * socket. >> - * >> - * mmap() and aio*() system calls will need special attention as = they may >> - * involve reads or writes depending a great deal on context. >> - */ >> - >> -/* INDEX 0 */ >> - >> -/* >> - * General file I/O. >> - */ >> -/* Allows for openat(O_RDONLY), read(2), readv(2). */ >> -#define CAP_READ CAPRIGHT(0, = 0x0000000000000001ULL) >> -/* Allows for openat(O_WRONLY | O_APPEND), write(2), writev(2). */ >> -#define CAP_WRITE CAPRIGHT(0, = 0x0000000000000002ULL) >> -/* Allows for lseek(fd, 0, SEEK_CUR). */ >> -#define CAP_SEEK_TELL CAPRIGHT(0, = 0x0000000000000004ULL) >> -/* Allows for lseek(2). */ >> -#define CAP_SEEK (CAP_SEEK_TELL | = 0x0000000000000008ULL) >> -/* Allows for aio_read(2), pread(2), preadv(2). */ >> -#define CAP_PREAD (CAP_SEEK | CAP_READ) >> -/* >> - * Allows for aio_write(2), openat(O_WRONLY) (without O_APPEND), = pwrite(2), >> - * pwritev(2). >> - */ >> -#define CAP_PWRITE (CAP_SEEK | CAP_WRITE) >> -/* Allows for mmap(PROT_NONE). */ >> -#define CAP_MMAP CAPRIGHT(0, = 0x0000000000000010ULL) >> -/* Allows for mmap(PROT_READ). */ >> -#define CAP_MMAP_R (CAP_MMAP | CAP_SEEK | CAP_READ) >> -/* Allows for mmap(PROT_WRITE). */ >> -#define CAP_MMAP_W (CAP_MMAP | CAP_SEEK | = CAP_WRITE) >> -/* Allows for mmap(PROT_EXEC). */ >> -#define CAP_MMAP_X (CAP_MMAP | CAP_SEEK | = 0x0000000000000020ULL) >> -/* Allows for mmap(PROT_READ | PROT_WRITE). */ >> -#define CAP_MMAP_RW (CAP_MMAP_R | CAP_MMAP_W) >> -/* Allows for mmap(PROT_READ | PROT_EXEC). */ >> -#define CAP_MMAP_RX (CAP_MMAP_R | CAP_MMAP_X) >> -/* Allows for mmap(PROT_WRITE | PROT_EXEC). */ >> -#define CAP_MMAP_WX (CAP_MMAP_W | CAP_MMAP_X) >> -/* Allows for mmap(PROT_READ | PROT_WRITE | PROT_EXEC). */ >> -#define CAP_MMAP_RWX (CAP_MMAP_R | CAP_MMAP_W | = CAP_MMAP_X) >> -/* Allows for openat(O_CREAT). */ >> -#define CAP_CREATE CAPRIGHT(0, = 0x0000000000000040ULL) >> -/* Allows for openat(O_EXEC) and fexecve(2) in turn. */ >> -#define CAP_FEXECVE CAPRIGHT(0, = 0x0000000000000080ULL) >> -/* Allows for openat(O_SYNC), openat(O_FSYNC), fsync(2), = aio_fsync(2). */ >> -#define CAP_FSYNC CAPRIGHT(0, = 0x0000000000000100ULL) >> -/* Allows for openat(O_TRUNC), ftruncate(2). */ >> -#define CAP_FTRUNCATE CAPRIGHT(0, = 0x0000000000000200ULL) >> - >> -/* Lookups - used to constrain *at() calls. */ >> -#define CAP_LOOKUP CAPRIGHT(0, = 0x0000000000000400ULL) >> - >> -/* VFS methods. */ >> -/* Allows for fchdir(2). */ >> -#define CAP_FCHDIR CAPRIGHT(0, = 0x0000000000000800ULL) >> -/* Allows for fchflags(2). */ >> -#define CAP_FCHFLAGS CAPRIGHT(0, = 0x0000000000001000ULL) >> -/* Allows for fchflags(2) and chflagsat(2). */ >> -#define CAP_CHFLAGSAT (CAP_FCHFLAGS | CAP_LOOKUP) >> -/* Allows for fchmod(2). */ >> -#define CAP_FCHMOD CAPRIGHT(0, = 0x0000000000002000ULL) >> -/* Allows for fchmod(2) and fchmodat(2). */ >> -#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP) >> -/* Allows for fchown(2). */ >> -#define CAP_FCHOWN CAPRIGHT(0, = 0x0000000000004000ULL) >> -/* Allows for fchown(2) and fchownat(2). */ >> -#define CAP_FCHOWNAT (CAP_FCHOWN | CAP_LOOKUP) >> -/* Allows for fcntl(2). */ >> -#define CAP_FCNTL CAPRIGHT(0, = 0x0000000000008000ULL) >> -/* >> - * Allows for flock(2), openat(O_SHLOCK), openat(O_EXLOCK), >> - * fcntl(F_SETLK_REMOTE), fcntl(F_SETLKW), fcntl(F_SETLK), = fcntl(F_GETLK). >> - */ >> -#define CAP_FLOCK CAPRIGHT(0, = 0x0000000000010000ULL) >> -/* Allows for fpathconf(2). */ >> -#define CAP_FPATHCONF CAPRIGHT(0, = 0x0000000000020000ULL) >> -/* Allows for UFS background-fsck operations. */ >> -#define CAP_FSCK CAPRIGHT(0, = 0x0000000000040000ULL) >> -/* Allows for fstat(2). */ >> -#define CAP_FSTAT CAPRIGHT(0, = 0x0000000000080000ULL) >> -/* Allows for fstat(2), fstatat(2) and faccessat(2). */ >> -#define CAP_FSTATAT (CAP_FSTAT | CAP_LOOKUP) >> -/* Allows for fstatfs(2). */ >> -#define CAP_FSTATFS CAPRIGHT(0, = 0x0000000000100000ULL) >> -/* Allows for futimes(2). */ >> -#define CAP_FUTIMES CAPRIGHT(0, = 0x0000000000200000ULL) >> -/* Allows for futimes(2) and futimesat(2). */ >> -#define CAP_FUTIMESAT (CAP_FUTIMES | CAP_LOOKUP) >> -/* Allows for linkat(2) and renameat(2) (destination directory = descriptor). */ >> -#define CAP_LINKAT (CAP_LOOKUP | = 0x0000000000400000ULL) >> -/* Allows for mkdirat(2). */ >> -#define CAP_MKDIRAT (CAP_LOOKUP | = 0x0000000000800000ULL) >> -/* Allows for mkfifoat(2). */ >> -#define CAP_MKFIFOAT (CAP_LOOKUP | = 0x0000000001000000ULL) >> -/* Allows for mknodat(2). */ >> -#define CAP_MKNODAT (CAP_LOOKUP | = 0x0000000002000000ULL) >> -/* Allows for renameat(2). */ >> -#define CAP_RENAMEAT (CAP_LOOKUP | = 0x0000000004000000ULL) >> -/* Allows for symlinkat(2). */ >> -#define CAP_SYMLINKAT (CAP_LOOKUP | = 0x0000000008000000ULL) >> -/* >> - * Allows for unlinkat(2) and renameat(2) if destination object = exists and >> - * will be removed. >> - */ >> -#define CAP_UNLINKAT (CAP_LOOKUP | = 0x0000000010000000ULL) >> - >> -/* Socket operations. */ >> -/* Allows for accept(2) and accept4(2). */ >> -#define CAP_ACCEPT CAPRIGHT(0, = 0x0000000020000000ULL) >> -/* Allows for bind(2). */ >> -#define CAP_BIND CAPRIGHT(0, = 0x0000000040000000ULL) >> -/* Allows for connect(2). */ >> -#define CAP_CONNECT CAPRIGHT(0, = 0x0000000080000000ULL) >> -/* Allows for getpeername(2). */ >> -#define CAP_GETPEERNAME CAPRIGHT(0, = 0x0000000100000000ULL) >> -/* Allows for getsockname(2). */ >> -#define CAP_GETSOCKNAME CAPRIGHT(0, = 0x0000000200000000ULL) >> -/* Allows for getsockopt(2). */ >> -#define CAP_GETSOCKOPT CAPRIGHT(0, = 0x0000000400000000ULL) >> -/* Allows for listen(2). */ >> -#define CAP_LISTEN CAPRIGHT(0, = 0x0000000800000000ULL) >> -/* Allows for sctp_peeloff(2). */ >> -#define CAP_PEELOFF CAPRIGHT(0, = 0x0000001000000000ULL) >> -#define CAP_RECV CAP_READ >> -#define CAP_SEND CAP_WRITE >> -/* Allows for setsockopt(2). */ >> -#define CAP_SETSOCKOPT CAPRIGHT(0, = 0x0000002000000000ULL) >> -/* Allows for shutdown(2). */ >> -#define CAP_SHUTDOWN CAPRIGHT(0, = 0x0000004000000000ULL) >> - >> -/* Allows for bindat(2) on a directory descriptor. */ >> -#define CAP_BINDAT (CAP_LOOKUP | = 0x0000008000000000ULL) >> -/* Allows for connectat(2) on a directory descriptor. */ >> -#define CAP_CONNECTAT (CAP_LOOKUP | = 0x0000010000000000ULL) >> - >> -#define CAP_SOCK_CLIENT \ >> - (CAP_CONNECT | CAP_GETPEERNAME | CAP_GETSOCKNAME | = CAP_GETSOCKOPT | \ >> - CAP_PEELOFF | CAP_RECV | CAP_SEND | CAP_SETSOCKOPT | = CAP_SHUTDOWN) >> -#define CAP_SOCK_SERVER \ >> - (CAP_ACCEPT | CAP_BIND | CAP_GETPEERNAME | CAP_GETSOCKNAME | \ >> - CAP_GETSOCKOPT | CAP_LISTEN | CAP_PEELOFF | CAP_RECV | CAP_SEND = | \ >> - CAP_SETSOCKOPT | CAP_SHUTDOWN) >> - >> -/* All used bits for index 0. */ >> -#define CAP_ALL0 CAPRIGHT(0, = 0x0000007FFFFFFFFFULL) >> - >> -/* Available bits for index 0. */ >> -#define CAP_UNUSED0_40 CAPRIGHT(0, = 0x0000008000000000ULL) >> -/* ... */ >> -#define CAP_UNUSED0_57 CAPRIGHT(0, = 0x0100000000000000ULL) >> - >> -/* INDEX 1 */ >> - >> -/* Mandatory Access Control. */ >> -/* Allows for mac_get_fd(3). */ >> -#define CAP_MAC_GET CAPRIGHT(1, = 0x0000000000000001ULL) >> -/* Allows for mac_set_fd(3). */ >> -#define CAP_MAC_SET CAPRIGHT(1, = 0x0000000000000002ULL) >> - >> -/* Methods on semaphores. */ >> -#define CAP_SEM_GETVALUE CAPRIGHT(1, = 0x0000000000000004ULL) >> -#define CAP_SEM_POST CAPRIGHT(1, = 0x0000000000000008ULL) >> -#define CAP_SEM_WAIT CAPRIGHT(1, = 0x0000000000000010ULL) >> - >> -/* Allows select(2) and poll(2) on descriptor. */ >> -#define CAP_EVENT CAPRIGHT(1, = 0x0000000000000020ULL) >> -/* Allows for kevent(2) on kqueue descriptor with eventlist !=3D = NULL. */ >> -#define CAP_KQUEUE_EVENT CAPRIGHT(1, = 0x0000000000000040ULL) >> - >> -/* Strange and powerful rights that should not be given lightly. */ >> -/* Allows for ioctl(2). */ >> -#define CAP_IOCTL CAPRIGHT(1, = 0x0000000000000080ULL) >> -#define CAP_TTYHOOK CAPRIGHT(1, = 0x0000000000000100ULL) >> - >> -/* Process management via process descriptors. */ >> -/* Allows for pdgetpid(2). */ >> -#define CAP_PDGETPID CAPRIGHT(1, = 0x0000000000000200ULL) >> -/* Allows for pdwait4(2). */ >> -#define CAP_PDWAIT CAPRIGHT(1, = 0x0000000000000400ULL) >> -/* Allows for pdkill(2). */ >> -#define CAP_PDKILL CAPRIGHT(1, = 0x0000000000000800ULL) >> - >> -/* Extended attributes. */ >> -/* Allows for extattr_delete_fd(2). */ >> -#define CAP_EXTATTR_DELETE CAPRIGHT(1, = 0x0000000000001000ULL) >> -/* Allows for extattr_get_fd(2). */ >> -#define CAP_EXTATTR_GET CAPRIGHT(1, = 0x0000000000002000ULL) >> -/* Allows for extattr_list_fd(2). */ >> -#define CAP_EXTATTR_LIST CAPRIGHT(1, = 0x0000000000004000ULL) >> -/* Allows for extattr_set_fd(2). */ >> -#define CAP_EXTATTR_SET CAPRIGHT(1, = 0x0000000000008000ULL) >> - >> -/* Access Control Lists. */ >> -/* Allows for acl_valid_fd_np(3). */ >> -#define CAP_ACL_CHECK CAPRIGHT(1, = 0x0000000000010000ULL) >> -/* Allows for acl_delete_fd_np(3). */ >> -#define CAP_ACL_DELETE CAPRIGHT(1, = 0x0000000000020000ULL) >> -/* Allows for acl_get_fd(3) and acl_get_fd_np(3). */ >> -#define CAP_ACL_GET CAPRIGHT(1, = 0x0000000000040000ULL) >> -/* Allows for acl_set_fd(3) and acl_set_fd_np(3). */ >> -#define CAP_ACL_SET CAPRIGHT(1, = 0x0000000000080000ULL) >> - >> -/* Allows for kevent(2) on kqueue descriptor with changelist !=3D = NULL. */ >> -#define CAP_KQUEUE_CHANGE CAPRIGHT(1, = 0x0000000000100000ULL) >> - >> -#define CAP_KQUEUE (CAP_KQUEUE_EVENT | = CAP_KQUEUE_CHANGE) >> - >> -/* All used bits for index 1. */ >> -#define CAP_ALL1 CAPRIGHT(1, = 0x00000000001FFFFFULL) >> - >> -/* Available bits for index 1. */ >> -#define CAP_UNUSED1_22 CAPRIGHT(1, = 0x0000000000200000ULL) >> -/* ... */ >> -#define CAP_UNUSED1_57 CAPRIGHT(1, = 0x0100000000000000ULL) >> - >> -/* Backward compatibility. */ >> -#define CAP_POLL_EVENT CAP_EVENT >> - >> -#define CAP_ALL(rights) do { = \ >> - (rights)->cr_rights[0] =3D = \ >> - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAP_ALL0; = \ >> - (rights)->cr_rights[1] =3D CAP_ALL1; = \ >> -} while (0) >> - >> -#define CAP_NONE(rights) do { = \ >> - (rights)->cr_rights[0] =3D = \ >> - ((uint64_t)CAP_RIGHTS_VERSION << 62) | CAPRIGHT(0, 0ULL); = \ >> - (rights)->cr_rights[1] =3D CAPRIGHT(1, 0ULL); = \ >> -} while (0) >> - >> -#define CAPRVER(right) ((int)((right) >> 62)) >> -#define CAPVER(rights) CAPRVER((rights)->cr_rights[0]) >> -#define CAPARSIZE(rights) (CAPVER(rights) + 2) >> -#define CAPIDXBIT(right) ((int)(((right) >> 57) & 0x1F)) >> - >> -/* >> - * Allowed fcntl(2) commands. >> - */ >> -#define CAP_FCNTL_GETFL (1 << F_GETFL) >> -#define CAP_FCNTL_SETFL (1 << F_SETFL) >> -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >=3D 200112 >> -#define CAP_FCNTL_GETOWN (1 << F_GETOWN) >> -#define CAP_FCNTL_SETOWN (1 << F_SETOWN) >> -#endif >> -#if __BSD_VISIBLE || __XSI_VISIBLE || __POSIX_VISIBLE >=3D 200112 >> -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | = CAP_FCNTL_SETFL | \ >> - CAP_FCNTL_GETOWN | CAP_FCNTL_SETOWN) >> -#else >> -#define CAP_FCNTL_ALL (CAP_FCNTL_GETFL | = CAP_FCNTL_SETFL) >> -#endif >> - >> -#define CAP_IOCTLS_ALL SSIZE_MAX >> - >> -#define cap_rights_init(...) = \ >> - __cap_rights_init(CAP_RIGHTS_VERSION, __VA_ARGS__, 0ULL) >> -cap_rights_t *__cap_rights_init(int version, cap_rights_t *rights, = ...); >> - >> -#define cap_rights_set(rights, ...) = \ >> - __cap_rights_set((rights), __VA_ARGS__, 0ULL) >> -cap_rights_t *__cap_rights_set(cap_rights_t *rights, ...); >> - >> -#define cap_rights_clear(rights, ...) = \ >> - __cap_rights_clear((rights), __VA_ARGS__, 0ULL) >> -cap_rights_t *__cap_rights_clear(cap_rights_t *rights, ...); >> - >> -#define cap_rights_is_set(rights, ...) = \ >> - __cap_rights_is_set((rights), __VA_ARGS__, 0ULL) >> -bool __cap_rights_is_set(const cap_rights_t *rights, ...); >> - >> -bool cap_rights_is_valid(const cap_rights_t *rights); >> -cap_rights_t *cap_rights_merge(cap_rights_t *dst, const cap_rights_t = *src); >> -cap_rights_t *cap_rights_remove(cap_rights_t *dst, const = cap_rights_t *src); >> -bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t = *little); >> - >> -#ifdef _KERNEL >> - >> -#include >> - >> -#define IN_CAPABILITY_MODE(td) ((td->td_ucred->cr_flags & = CRED_FLAG_CAPMODE) !=3D 0) >> - >> -struct filedesc; >> -struct filedescent; >> - >> -/* >> - * Test whether a capability grants the requested rights. >> - */ >> -int cap_check(const cap_rights_t *havep, const cap_rights_t *needp); >> -/* >> - * Convert capability rights into VM access flags. >> - */ >> -u_char cap_rights_to_vmprot(cap_rights_t *havep); >> - >> -/* >> - * For the purposes of procstat(1) and similar tools, allow = kern_descrip.c to >> - * extract the rights from a capability. >> - */ >> -cap_rights_t *cap_rights_fde(struct filedescent *fde); >> -cap_rights_t *cap_rights(struct filedesc *fdp, int fd); >> - >> -int cap_ioctl_check(struct filedesc *fdp, int fd, u_long cmd); >> -int cap_fcntl_check_fde(struct filedescent *fde, int cmd); >> -int cap_fcntl_check(struct filedesc *fdp, int fd, int cmd); >> - >> -#else /* !_KERNEL */ >> - >> -__BEGIN_DECLS >> -/* >> - * cap_enter(): Cause the process to enter capability mode, which = will >> - * prevent it from directly accessing global namespaces. System = calls will >> - * be limited to process-local, process-inherited, or file = descriptor >> - * operations. If already in capability mode, a no-op. >> - */ >> -int cap_enter(void); >> - >> -/* >> - * Are we sandboxed (in capability mode)? >> - * This is a libc wrapper around the cap_getmode(2) system call. >> - */ >> -bool cap_sandboxed(void); >> - >> -/* >> - * cap_getmode(): Are we in capability mode? >> - */ >> -int cap_getmode(u_int *modep); >> - >> -/* >> - * Limits capability rights for the given descriptor (CAP_*). >> - */ >> -int cap_rights_limit(int fd, const cap_rights_t *rights); >> -/* >> - * Returns capability rights for the given descriptor. >> - */ >> -#define cap_rights_get(fd, rights) = __cap_rights_get(CAP_RIGHTS_VERSION, (fd), (rights)) >> -int __cap_rights_get(int version, int fd, cap_rights_t *rightsp); >> -/* >> - * Limits allowed ioctls for the given descriptor. >> - */ >> -int cap_ioctls_limit(int fd, const unsigned long *cmds, size_t = ncmds); >> -/* >> - * Returns array of allowed ioctls for the given descriptor. >> - * If all ioctls are allowed, the cmds array is not populated and >> - * the function returns CAP_IOCTLS_ALL. >> - */ >> -ssize_t cap_ioctls_get(int fd, unsigned long *cmds, size_t maxcmds); >> -/* >> - * Limits allowed fcntls for the given descriptor (CAP_FCNTL_*). >> - */ >> -int cap_fcntls_limit(int fd, uint32_t fcntlrights); >> -/* >> - * Returns bitmask of allowed fcntls for the given descriptor. >> - */ >> -int cap_fcntls_get(int fd, uint32_t *fcntlrightsp); >> - >> -__END_DECLS >> - >> -#endif /* !_KERNEL */ >> +#include >> #endif /* !_SYS_CAPABILITY_H_ */ >>=20 >> Copied and modified: stable/10/sys/sys/capsicum.h (from r280165, = stable/10/sys/sys/capability.h) >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- stable/10/sys/sys/capability.h Tue Mar 17 08:42:09 2015 = (r280165, copy source) >> +++ stable/10/sys/sys/capsicum.h Wed Mar 18 15:20:08 2015 = (r280224) >> @@ -36,8 +36,8 @@ >> /* >> * Definitions for FreeBSD capabilities facility. >> */ >> -#ifndef _SYS_CAPABILITY_H_ >> -#define _SYS_CAPABILITY_H_ >> +#ifndef _SYS_CAPSICUM_H_ >> +#define _SYS_CAPSICUM_H_ >> #include >> #include >> @@ -419,4 +419,4 @@ __END_DECLS >> #endif /* !_KERNEL */ >> -#endif /* !_SYS_CAPABILITY_H_ */ >> +#endif /* !_SYS_CAPSICUM_H_ */ >>=20 >>=20 >=20 From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 11:20:13 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CCAFCF9; Thu, 19 Mar 2015 11:20:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47525FB7; Thu, 19 Mar 2015 11:20:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JBKDYk087819; Thu, 19 Mar 2015 11:20:13 GMT (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JBKDlI087818; Thu, 19 Mar 2015 11:20:13 GMT (envelope-from rwatson@FreeBSD.org) Message-Id: <201503191120.t2JBKDlI087818@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rwatson set sender to rwatson@FreeBSD.org using -f From: Robert Watson Date: Thu, 19 Mar 2015 11:20:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280246 - stable/10/sys/sys X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 11:20:13 -0000 Author: rwatson Date: Thu Mar 19 11:20:12 2015 New Revision: 280246 URL: https://svnweb.freebsd.org/changeset/base/280246 Log: Bump __FreeBSD_version to 1001511 reflecting the capability.h -> capsicum.h rename. Sponsored by: Google, Inc. Modified: stable/10/sys/sys/param.h Modified: stable/10/sys/sys/param.h ============================================================================== --- stable/10/sys/sys/param.h Thu Mar 19 09:56:38 2015 (r280245) +++ stable/10/sys/sys/param.h Thu Mar 19 11:20:12 2015 (r280246) @@ -58,7 +58,7 @@ * in the range 5 to 9. */ #undef __FreeBSD_version -#define __FreeBSD_version 1001510 /* Master, propagated to newvers */ +#define __FreeBSD_version 1001511 /* Master, propagated to newvers */ /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD, From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 11:24:10 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A622DE69; Thu, 19 Mar 2015 11:24:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 872AAC7; Thu, 19 Mar 2015 11:24:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JBOAWR091700; Thu, 19 Mar 2015 11:24:10 GMT (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JBO8OQ091692; Thu, 19 Mar 2015 11:24:08 GMT (envelope-from rwatson@FreeBSD.org) Message-Id: <201503191124.t2JBO8OQ091692@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rwatson set sender to rwatson@FreeBSD.org using -f From: Robert Watson Date: Thu, 19 Mar 2015 11:24:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280247 - in stable/10/lib/libc: capability gen sys X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 11:24:10 -0000 Author: rwatson Date: Thu Mar 19 11:24:07 2015 New Revision: 280247 URL: https://svnweb.freebsd.org/changeset/base/280247 Log: Merge r263842 from HEAD to stable/10: Update system man pages for s/capability.h/capsicum.h/. Sponsored by: Google, Inc. Modified: stable/10/lib/libc/capability/cap_rights_init.3 stable/10/lib/libc/gen/cap_rights_get.3 stable/10/lib/libc/gen/cap_sandboxed.3 stable/10/lib/libc/sys/cap_enter.2 stable/10/lib/libc/sys/cap_fcntls_limit.2 stable/10/lib/libc/sys/cap_ioctls_limit.2 stable/10/lib/libc/sys/cap_rights_limit.2 Directory Properties: stable/10/ (props changed) Modified: stable/10/lib/libc/capability/cap_rights_init.3 ============================================================================== --- stable/10/lib/libc/capability/cap_rights_init.3 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/capability/cap_rights_init.3 Thu Mar 19 11:24:07 2015 (r280247) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 23, 2013 +.Dd March 27, 2014 .Dt CAP_RIGHTS_INIT 3 .Os .Sh NAME @@ -44,7 +44,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft cap_rights_t * .Fn cap_rights_init "cap_rights_t *rights" "..." .Ft cap_rights_t * Modified: stable/10/lib/libc/gen/cap_rights_get.3 ============================================================================== --- stable/10/lib/libc/gen/cap_rights_get.3 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/gen/cap_rights_get.3 Thu Mar 19 11:24:07 2015 (r280247) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 23, 2013 +.Dd March 27, 2014 .Dt CAP_RIGHTS_GET 3 .Os .Sh NAME @@ -37,7 +37,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft int .Fn cap_rights_get "int fd" "cap_rights_t *rights" .Sh DESCRIPTION Modified: stable/10/lib/libc/gen/cap_sandboxed.3 ============================================================================== --- stable/10/lib/libc/gen/cap_sandboxed.3 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/gen/cap_sandboxed.3 Thu Mar 19 11:24:07 2015 (r280247) @@ -1,3 +1,4 @@ +.\" .\" Copyright (c) 2012 The FreeBSD Foundation .\" All rights reserved. .\" @@ -27,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 18, 2012 +.Dd March 27, 2014 .Dt CAP_SANDBOXED 3 .Os .Sh NAME @@ -36,7 +37,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .In stdbool.h .Ft bool .Fn cap_sandboxed "void" Modified: stable/10/lib/libc/sys/cap_enter.2 ============================================================================== --- stable/10/lib/libc/sys/cap_enter.2 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/sys/cap_enter.2 Thu Mar 19 11:24:07 2015 (r280247) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd February 25, 2012 +.Dd March 27, 2014 .Dt CAP_ENTER 2 .Os .Sh NAME @@ -38,7 +38,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft int .Fn cap_enter "void" .Ft int Modified: stable/10/lib/libc/sys/cap_fcntls_limit.2 ============================================================================== --- stable/10/lib/libc/sys/cap_fcntls_limit.2 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/sys/cap_fcntls_limit.2 Thu Mar 19 11:24:07 2015 (r280247) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 20, 2012 +.Dd March 27, 2014 .Dt CAP_FCNTLS_LIMIT 2 .Os .Sh NAME @@ -38,7 +38,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft int .Fn cap_fcntls_limit "int fd" "uint32_t fcntlrights" .Ft int Modified: stable/10/lib/libc/sys/cap_ioctls_limit.2 ============================================================================== --- stable/10/lib/libc/sys/cap_ioctls_limit.2 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/sys/cap_ioctls_limit.2 Thu Mar 19 11:24:07 2015 (r280247) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 20, 2012 +.Dd March 27, 2014 .Dt CAP_IOCTLS_LIMIT 2 .Os .Sh NAME @@ -38,7 +38,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft int .Fn cap_ioctls_limit "int fd" "const unsigned long *cmds" "size_t ncmds" .Ft ssize_t Modified: stable/10/lib/libc/sys/cap_rights_limit.2 ============================================================================== --- stable/10/lib/libc/sys/cap_rights_limit.2 Thu Mar 19 11:20:12 2015 (r280246) +++ stable/10/lib/libc/sys/cap_rights_limit.2 Thu Mar 19 11:24:07 2015 (r280247) @@ -32,7 +32,7 @@ .\" .\" $FreeBSD$ .\" -.Dd February 23, 2013 +.Dd March 27, 2014 .Dt CAP_RIGHTS_LIMIT 2 .Os .Sh NAME @@ -41,7 +41,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In sys/capability.h +.In sys/capsicum.h .Ft int .Fn cap_rights_limit "int fd" "const cap_rights_t *rights" .Sh DESCRIPTION From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 12:32:58 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4908FEB; Thu, 19 Mar 2015 12:32:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AAC7FAA4; Thu, 19 Mar 2015 12:32:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JCWwFN024415; Thu, 19 Mar 2015 12:32:58 GMT (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JCWmlT024375; Thu, 19 Mar 2015 12:32:48 GMT (envelope-from rwatson@FreeBSD.org) Message-Id: <201503191232.t2JCWmlT024375@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rwatson set sender to rwatson@FreeBSD.org using -f From: Robert Watson Date: Thu, 19 Mar 2015 12:32:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280250 - in stable/10: contrib/tcpdump crypto/openssh lib/libc/gen lib/libprocstat sbin/dhclient sbin/hastd tools/regression/capsicum/syscalls tools/regression/security/cap_test usr.bi... X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 12:32:58 -0000 Author: rwatson Date: Thu Mar 19 12:32:48 2015 New Revision: 280250 URL: https://svnweb.freebsd.org/changeset/base/280250 Log: Merge an applicable subset of r263234 from HEAD to stable/10: Update most userspace consumers of capability.h to use capsicum.h instead. auditdistd is not updated as I will make the change upstream and then do a vendor import sometime in the next week or two. Note that a significant fraction does not apply, as FreeBSD 10 doesn't contain a Capsicumised ping, casperd, libcasper, etc. When these features are merged, the capsicum.h change will need to be merged with them. Sponsored by: Google, Inc. Modified: stable/10/contrib/tcpdump/tcpdump.c stable/10/crypto/openssh/sandbox-capsicum.c stable/10/lib/libc/gen/cap_sandboxed.c stable/10/lib/libprocstat/libprocstat.c stable/10/sbin/dhclient/bpf.c stable/10/sbin/dhclient/dhclient.c stable/10/sbin/hastd/subr.c stable/10/tools/regression/capsicum/syscalls/cap_fcntls_limit.c stable/10/tools/regression/capsicum/syscalls/cap_getmode.c stable/10/tools/regression/capsicum/syscalls/cap_ioctls_limit.c stable/10/tools/regression/security/cap_test/cap_test_capabilities.c stable/10/tools/regression/security/cap_test/cap_test_capmode.c stable/10/tools/regression/security/cap_test/cap_test_fcntl.c stable/10/tools/regression/security/cap_test/cap_test_pdfork.c stable/10/tools/regression/security/cap_test/cap_test_pdkill.c stable/10/tools/regression/security/cap_test/cap_test_relative.c stable/10/tools/regression/security/cap_test/cap_test_sysctl.c stable/10/usr.bin/kdump/kdump.c stable/10/usr.bin/kdump/mksubr stable/10/usr.bin/procstat/procstat_files.c stable/10/usr.bin/rwho/rwho.c stable/10/usr.bin/uniq/uniq.c stable/10/usr.sbin/ctld/kernel.c stable/10/usr.sbin/iscsid/iscsid.c stable/10/usr.sbin/rwhod/rwhod.c Directory Properties: stable/10/ (props changed) Modified: stable/10/contrib/tcpdump/tcpdump.c ============================================================================== --- stable/10/contrib/tcpdump/tcpdump.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/contrib/tcpdump/tcpdump.c Thu Mar 19 12:32:48 2015 (r280250) @@ -69,7 +69,7 @@ extern int SIZE_BUF; #include #include #ifdef __FreeBSD__ -#include +#include #include #include #include Modified: stable/10/crypto/openssh/sandbox-capsicum.c ============================================================================== --- stable/10/crypto/openssh/sandbox-capsicum.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/crypto/openssh/sandbox-capsicum.c Thu Mar 19 12:32:48 2015 (r280250) @@ -23,7 +23,7 @@ __RCSID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: stable/10/lib/libc/gen/cap_sandboxed.c ============================================================================== --- stable/10/lib/libc/gen/cap_sandboxed.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/lib/libc/gen/cap_sandboxed.c Thu Mar 19 12:32:48 2015 (r280250) @@ -30,7 +30,7 @@ #include __FBSDID("$FreeBSD$"); -#include +#include #include #include Modified: stable/10/lib/libprocstat/libprocstat.c ============================================================================== --- stable/10/lib/libprocstat/libprocstat.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/lib/libprocstat/libprocstat.c Thu Mar 19 12:32:48 2015 (r280250) @@ -61,7 +61,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #define _KERNEL #include #include Modified: stable/10/sbin/dhclient/bpf.c ============================================================================== --- stable/10/sbin/dhclient/bpf.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/sbin/dhclient/bpf.c Thu Mar 19 12:32:48 2015 (r280250) @@ -43,11 +43,11 @@ #include __FBSDID("$FreeBSD$"); -#include +#include #include "dhcpd.h" #include "privsep.h" -#include +#include #include #include Modified: stable/10/sbin/dhclient/dhclient.c ============================================================================== --- stable/10/sbin/dhclient/dhclient.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/sbin/dhclient/dhclient.c Thu Mar 19 12:32:48 2015 (r280250) @@ -56,12 +56,12 @@ #include __FBSDID("$FreeBSD$"); -#include +#include #include "dhcpd.h" #include "privsep.h" -#include +#include #include Modified: stable/10/sbin/hastd/subr.c ============================================================================== --- stable/10/sbin/hastd/subr.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/sbin/hastd/subr.c Thu Mar 19 12:32:48 2015 (r280250) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #ifdef HAVE_CAPSICUM -#include +#include #include #endif Modified: stable/10/tools/regression/capsicum/syscalls/cap_fcntls_limit.c ============================================================================== --- stable/10/tools/regression/capsicum/syscalls/cap_fcntls_limit.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/capsicum/syscalls/cap_fcntls_limit.c Thu Mar 19 12:32:48 2015 (r280250) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/capsicum/syscalls/cap_getmode.c ============================================================================== --- stable/10/tools/regression/capsicum/syscalls/cap_getmode.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/capsicum/syscalls/cap_getmode.c Thu Mar 19 12:32:48 2015 (r280250) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include Modified: stable/10/tools/regression/capsicum/syscalls/cap_ioctls_limit.c ============================================================================== --- stable/10/tools/regression/capsicum/syscalls/cap_ioctls_limit.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/capsicum/syscalls/cap_ioctls_limit.c Thu Mar 19 12:32:48 2015 (r280250) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_capabilities.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_capabilities.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_capabilities.c Thu Mar 19 12:32:48 2015 (r280250) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_capmode.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_capmode.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_capmode.c Thu Mar 19 12:32:48 2015 (r280250) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_fcntl.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_fcntl.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_fcntl.c Thu Mar 19 12:32:48 2015 (r280250) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_pdfork.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_pdfork.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_pdfork.c Thu Mar 19 12:32:48 2015 (r280250) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_pdkill.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_pdkill.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_pdkill.c Thu Mar 19 12:32:48 2015 (r280250) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_relative.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_relative.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_relative.c Thu Mar 19 12:32:48 2015 (r280250) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include Modified: stable/10/tools/regression/security/cap_test/cap_test_sysctl.c ============================================================================== --- stable/10/tools/regression/security/cap_test/cap_test_sysctl.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/tools/regression/security/cap_test/cap_test_sysctl.c Thu Mar 19 12:32:48 2015 (r280250) @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/usr.bin/kdump/kdump.c ============================================================================== --- stable/10/usr.bin/kdump/kdump.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.bin/kdump/kdump.c Thu Mar 19 12:32:48 2015 (r280250) @@ -46,7 +46,7 @@ extern int errno; #include #undef _KERNEL #include -#include +#include #include #define _KERNEL #include Modified: stable/10/usr.bin/kdump/mksubr ============================================================================== --- stable/10/usr.bin/kdump/mksubr Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.bin/kdump/mksubr Thu Mar 19 12:32:48 2015 (r280250) @@ -190,7 +190,7 @@ cat <<_EOF_ #include #include #include -#include +#include #include #include @@ -451,7 +451,7 @@ _EOF_ auto_or_type "accessmodename" "[A-Z]_OK[[:space:]]+0?x?[0-9A-Fa-f]+" "sys/unistd.h" auto_switch_type "acltypename" "ACL_TYPE_[A-Z4_]+[[:space:]]+0x[0-9]+" "sys/acl.h" -auto_or_type "capfcntlname" "CAP_FCNTL_[A-Z]+[[:space:]]+\(1" "sys/capability.h" +auto_or_type "capfcntlname" "CAP_FCNTL_[A-Z]+[[:space:]]+\(1" "sys/capsicum.h" auto_switch_type "extattrctlname" "EXTATTR_NAMESPACE_[A-Z]+[[:space:]]+0x[0-9]+" "sys/extattr.h" auto_switch_type "fadvisebehavname" "POSIX_FADV_[A-Z]+[[:space:]]+[0-9]+" "sys/fcntl.h" auto_or_type "flagsname" "O_[A-Z]+[[:space:]]+0x[0-9A-Fa-f]+" "sys/fcntl.h" @@ -739,7 +739,7 @@ cat <<_EOF_ } _EOF_ egrep '#define[[:space:]]+CAP_[A-Z_]+[[:space:]]+CAPRIGHT\([0-9],[[:space:]]+0x[0-9]{16}ULL\)' \ - $include_dir/sys/capability.h | \ + $include_dir/sys/capsicum.h | \ sed -E 's/[ ]+/ /g' | \ awk -F '[ \(,\)]' ' BEGIN { Modified: stable/10/usr.bin/procstat/procstat_files.c ============================================================================== --- stable/10/usr.bin/procstat/procstat_files.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.bin/procstat/procstat_files.c Thu Mar 19 12:32:48 2015 (r280250) @@ -27,7 +27,7 @@ */ #include -#include +#include #include #include #include Modified: stable/10/usr.bin/rwho/rwho.c ============================================================================== --- stable/10/usr.bin/rwho/rwho.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.bin/rwho/rwho.c Thu Mar 19 12:32:48 2015 (r280250) @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)rwho.c 8.1 ( #include __FBSDID("$FreeBSD$"); -#include +#include #include #include Modified: stable/10/usr.bin/uniq/uniq.c ============================================================================== --- stable/10/usr.bin/uniq/uniq.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.bin/uniq/uniq.c Thu Mar 19 12:32:48 2015 (r280250) @@ -44,7 +44,7 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ -#include +#include #include #include Modified: stable/10/usr.sbin/ctld/kernel.c ============================================================================== --- stable/10/usr.sbin/ctld/kernel.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.sbin/ctld/kernel.c Thu Mar 19 12:32:48 2015 (r280250) @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/usr.sbin/iscsid/iscsid.c ============================================================================== --- stable/10/usr.sbin/iscsid/iscsid.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.sbin/iscsid/iscsid.c Thu Mar 19 12:32:48 2015 (r280250) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/usr.sbin/rwhod/rwhod.c ============================================================================== --- stable/10/usr.sbin/rwhod/rwhod.c Thu Mar 19 12:22:57 2015 (r280249) +++ stable/10/usr.sbin/rwhod/rwhod.c Thu Mar 19 12:32:48 2015 (r280250) @@ -43,7 +43,7 @@ static char sccsid[] = "@(#)rwhod.c 8.1 #include __FBSDID("$FreeBSD$"); -#include +#include #include #include #include From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 12:49:56 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8811431D; Thu, 19 Mar 2015 12:49:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 728A5C28; Thu, 19 Mar 2015 12:49:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JCnuBU030022; Thu, 19 Mar 2015 12:49:56 GMT (envelope-from ae@FreeBSD.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JCnuEg030021; Thu, 19 Mar 2015 12:49:56 GMT (envelope-from ae@FreeBSD.org) Message-Id: <201503191249.t2JCnuEg030021@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ae set sender to ae@FreeBSD.org using -f From: "Andrey V. Elsukov" Date: Thu, 19 Mar 2015 12:49:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280251 - stable/10/sys/netpfil/pf X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 12:49:56 -0000 Author: ae Date: Thu Mar 19 12:49:55 2015 New Revision: 280251 URL: https://svnweb.freebsd.org/changeset/base/280251 Log: MFC r279910: Reset mbuf pointer to NULL in fastroute case to indicate that mbuf was consumed by filter. This fixes several panics due to accessing to mbuf after free. Modified: stable/10/sys/netpfil/pf/pf.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/netpfil/pf/pf.c ============================================================================== --- stable/10/sys/netpfil/pf/pf.c Thu Mar 19 12:32:48 2015 (r280250) +++ stable/10/sys/netpfil/pf/pf.c Thu Mar 19 12:49:55 2015 (r280251) @@ -5440,6 +5440,7 @@ pf_route6(struct mbuf **m, struct pf_rul PF_STATE_UNLOCK(s); m0->m_flags |= M_SKIP_FIREWALL; ip6_output(m0, NULL, NULL, 0, NULL, NULL, NULL); + *m = NULL; return; } From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 13:08:19 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DB1EA25; Thu, 19 Mar 2015 13:08:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17AD8E15; Thu, 19 Mar 2015 13:08:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JD8IqS039424; Thu, 19 Mar 2015 13:08:18 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JD8Ibq039422; Thu, 19 Mar 2015 13:08:18 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201503191308.t2JD8Ibq039422@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Thu, 19 Mar 2015 13:08:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280255 - in stable: 10/usr.bin/ktrdump 9/usr.bin/ktrdump X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 13:08:19 -0000 Author: jhb Date: Thu Mar 19 13:08:17 2015 New Revision: 280255 URL: https://svnweb.freebsd.org/changeset/base/280255 Log: MFC 278327: Change ktrdump to use the more standard -M/-N flags to specify the path to a crash dump and kernel, respectively. The existing -m/-e flags are still supported for backwards compatiblity but are no longer documented. Modified: stable/10/usr.bin/ktrdump/ktrdump.8 stable/10/usr.bin/ktrdump/ktrdump.c Directory Properties: stable/10/ (props changed) Changes in other areas also in this revision: Modified: stable/9/usr.bin/ktrdump/ktrdump.8 stable/9/usr.bin/ktrdump/ktrdump.c Directory Properties: stable/9/usr.bin/ktrdump/ (props changed) Modified: stable/10/usr.bin/ktrdump/ktrdump.8 ============================================================================== --- stable/10/usr.bin/ktrdump/ktrdump.8 Thu Mar 19 13:05:55 2015 (r280254) +++ stable/10/usr.bin/ktrdump/ktrdump.8 Thu Mar 19 13:08:17 2015 (r280255) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 8, 2005 +.Dd February 6, 2015 .Dt KTRDUMP 8 .Os .Sh NAME @@ -34,9 +34,9 @@ .Sh SYNOPSIS .Nm .Op Fl cfqrtH -.Op Fl e Ar execfile .Op Fl i Ar ktrfile -.Op Fl m Ar corefile +.Op Fl M Ar core +.Op Fl N Ar system .Op Fl o Ar outfile .Sh DESCRIPTION The @@ -44,7 +44,7 @@ The utility is used to dump the contents of the kernel ktr trace buffer. .Pp The following options are available: -.Bl -tag -width ".Fl e Ar execfile" +.Bl -tag -width ".Fl i Ar ktrfile" .It Fl c Print the CPU number that each entry was logged from. .It Fl f @@ -61,11 +61,11 @@ Print the thread ID for each entry. File containing saved ktr trace events; for more information see the .Xr ktr 4 manual page. -.It Fl e Ar execfile +.It Fl N Ar system The kernel image to resolve symbols from. The default is the value returned via .Xr getbootfile 3 . -.It Fl m Ar corefile +.It Fl M Ar core The core file or memory image to read from. The default is .Pa /dev/mem . Modified: stable/10/usr.bin/ktrdump/ktrdump.c ============================================================================== --- stable/10/usr.bin/ktrdump/ktrdump.c Thu Mar 19 13:05:55 2015 (r280254) +++ stable/10/usr.bin/ktrdump/ktrdump.c Thu Mar 19 13:08:17 2015 (r280255) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #define SBUFLEN 128 #define USAGE \ - "usage: ktrdump [-cfqrtH] [-e execfile] [-i ktrfile] [-m corefile] [-o outfile]\n" + "usage: ktrdump [-cfqrtH] [-i ktrfile] [-M core] [-N system] [-o outfile]\n" static void usage(void); @@ -59,9 +59,9 @@ static struct nlist nl[] = { }; static int cflag; -static int eflag; static int fflag; -static int mflag; +static int Mflag; +static int Nflag; static int qflag; static int rflag; static int tflag; @@ -103,16 +103,17 @@ main(int ac, char **av) * Parse commandline arguments. */ out = stdout; - while ((c = getopt(ac, av, "cfqrtHe:i:m:o:")) != -1) + while ((c = getopt(ac, av, "cfqrtHe:i:m:M:N:o:")) != -1) switch (c) { case 'c': cflag = 1; break; + case 'N': case 'e': if (strlcpy(execfile, optarg, sizeof(execfile)) >= sizeof(execfile)) errx(1, "%s: File name too long", optarg); - eflag = 1; + Nflag = 1; break; case 'f': fflag = 1; @@ -122,11 +123,12 @@ main(int ac, char **av) if ((in = open(optarg, O_RDONLY)) == -1) err(1, "%s", optarg); break; + case 'M': case 'm': if (strlcpy(corefile, optarg, sizeof(corefile)) >= sizeof(corefile)) errx(1, "%s: File name too long", optarg); - mflag = 1; + Mflag = 1; break; case 'o': if ((out = fopen(optarg, "w")) == NULL) @@ -157,8 +159,8 @@ main(int ac, char **av) * Open our execfile and corefile, resolve needed symbols and read in * the trace buffer. */ - if ((kd = kvm_openfiles(eflag ? execfile : NULL, - mflag ? corefile : NULL, NULL, O_RDONLY, errbuf)) == NULL) + if ((kd = kvm_openfiles(Nflag ? execfile : NULL, + Mflag ? corefile : NULL, NULL, O_RDONLY, errbuf)) == NULL) errx(1, "%s", errbuf); if (kvm_nlist(kd, nl) != 0 || kvm_read(kd, nl[0].n_value, &version, sizeof(version)) == -1) From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 13:08:20 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56027A26; Thu, 19 Mar 2015 13:08:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40155E16; Thu, 19 Mar 2015 13:08:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JD8KoT039431; Thu, 19 Mar 2015 13:08:20 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JD8Juh039429; Thu, 19 Mar 2015 13:08:19 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201503191308.t2JD8Juh039429@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Thu, 19 Mar 2015 13:08:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280255 - in stable: 10/usr.bin/ktrdump 9/usr.bin/ktrdump X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 13:08:20 -0000 Author: jhb Date: Thu Mar 19 13:08:17 2015 New Revision: 280255 URL: https://svnweb.freebsd.org/changeset/base/280255 Log: MFC 278327: Change ktrdump to use the more standard -M/-N flags to specify the path to a crash dump and kernel, respectively. The existing -m/-e flags are still supported for backwards compatiblity but are no longer documented. Modified: stable/9/usr.bin/ktrdump/ktrdump.8 stable/9/usr.bin/ktrdump/ktrdump.c Directory Properties: stable/9/usr.bin/ktrdump/ (props changed) Changes in other areas also in this revision: Modified: stable/10/usr.bin/ktrdump/ktrdump.8 stable/10/usr.bin/ktrdump/ktrdump.c Directory Properties: stable/10/ (props changed) Modified: stable/9/usr.bin/ktrdump/ktrdump.8 ============================================================================== --- stable/9/usr.bin/ktrdump/ktrdump.8 Thu Mar 19 13:05:55 2015 (r280254) +++ stable/9/usr.bin/ktrdump/ktrdump.8 Thu Mar 19 13:08:17 2015 (r280255) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 8, 2005 +.Dd February 6, 2015 .Dt KTRDUMP 8 .Os .Sh NAME @@ -34,9 +34,9 @@ .Sh SYNOPSIS .Nm .Op Fl cfqrtH -.Op Fl e Ar execfile .Op Fl i Ar ktrfile -.Op Fl m Ar corefile +.Op Fl M Ar core +.Op Fl N Ar system .Op Fl o Ar outfile .Sh DESCRIPTION The @@ -44,7 +44,7 @@ The utility is used to dump the contents of the kernel ktr trace buffer. .Pp The following options are available: -.Bl -tag -width ".Fl e Ar execfile" +.Bl -tag -width ".Fl i Ar ktrfile" .It Fl c Print the CPU number that each entry was logged from. .It Fl f @@ -61,11 +61,11 @@ Print the thread ID for each entry. File containing saved ktr trace events; for more information see the .Xr ktr 4 manual page. -.It Fl e Ar execfile +.It Fl N Ar system The kernel image to resolve symbols from. The default is the value returned via .Xr getbootfile 3 . -.It Fl m Ar corefile +.It Fl M Ar core The core file or memory image to read from. The default is .Pa /dev/mem . Modified: stable/9/usr.bin/ktrdump/ktrdump.c ============================================================================== --- stable/9/usr.bin/ktrdump/ktrdump.c Thu Mar 19 13:05:55 2015 (r280254) +++ stable/9/usr.bin/ktrdump/ktrdump.c Thu Mar 19 13:08:17 2015 (r280255) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #define SBUFLEN 128 #define USAGE \ - "usage: ktrdump [-cfqrtH] [-e execfile] [-i ktrfile] [-m corefile] [-o outfile]\n" + "usage: ktrdump [-cfqrtH] [-i ktrfile] [-M core] [-N system] [-o outfile]\n" static void usage(void); @@ -59,9 +59,9 @@ static struct nlist nl[] = { }; static int cflag; -static int eflag; static int fflag; -static int mflag; +static int Mflag; +static int Nflag; static int qflag; static int rflag; static int tflag; @@ -102,16 +102,17 @@ main(int ac, char **av) * Parse commandline arguments. */ out = stdout; - while ((c = getopt(ac, av, "cfqrtHe:i:m:o:")) != -1) + while ((c = getopt(ac, av, "cfqrtHe:i:m:M:N:o:")) != -1) switch (c) { case 'c': cflag = 1; break; + case 'N': case 'e': if (strlcpy(execfile, optarg, sizeof(execfile)) >= sizeof(execfile)) errx(1, "%s: File name too long", optarg); - eflag = 1; + Nflag = 1; break; case 'f': fflag = 1; @@ -121,11 +122,12 @@ main(int ac, char **av) if ((in = open(optarg, O_RDONLY)) == -1) err(1, "%s", optarg); break; + case 'M': case 'm': if (strlcpy(corefile, optarg, sizeof(corefile)) >= sizeof(corefile)) errx(1, "%s: File name too long", optarg); - mflag = 1; + Mflag = 1; break; case 'o': if ((out = fopen(optarg, "w")) == NULL) @@ -156,8 +158,8 @@ main(int ac, char **av) * Open our execfile and corefile, resolve needed symbols and read in * the trace buffer. */ - if ((kd = kvm_openfiles(eflag ? execfile : NULL, - mflag ? corefile : NULL, NULL, O_RDONLY, errbuf)) == NULL) + if ((kd = kvm_openfiles(Nflag ? execfile : NULL, + Mflag ? corefile : NULL, NULL, O_RDONLY, errbuf)) == NULL) errx(1, "%s", errbuf); if (kvm_nlist(kd, nl) != 0 || kvm_read(kd, nl[0].n_value, &version, sizeof(version)) == -1) From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 13:10:11 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11432CA9; Thu, 19 Mar 2015 13:10:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F023CE31; Thu, 19 Mar 2015 13:10:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JDAA95039816; Thu, 19 Mar 2015 13:10:10 GMT (envelope-from ae@FreeBSD.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JDAAbZ039815; Thu, 19 Mar 2015 13:10:10 GMT (envelope-from ae@FreeBSD.org) Message-Id: <201503191310.t2JDAAbZ039815@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ae set sender to ae@FreeBSD.org using -f From: "Andrey V. Elsukov" Date: Thu, 19 Mar 2015 13:10:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280256 - stable/10/sys/net X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 13:10:11 -0000 Author: ae Date: Thu Mar 19 13:10:09 2015 New Revision: 280256 URL: https://svnweb.freebsd.org/changeset/base/280256 Log: MFC r279920: Add if_input_default() method, that will be used for if_input initialization, when no input method specified before if_attach(). This prevents panics when if_input() method called directly e.g. from bpf(4) code. PR: 192426 Modified: stable/10/sys/net/if.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/net/if.c ============================================================================== --- stable/10/sys/net/if.c Thu Mar 19 13:08:17 2015 (r280255) +++ stable/10/sys/net/if.c Thu Mar 19 13:10:09 2015 (r280256) @@ -162,6 +162,7 @@ static int ifconf(u_long, caddr_t); static void if_freemulti(struct ifmultiaddr *); static void if_init(void *); static void if_grow(void); +static void if_input_default(struct ifnet *, struct mbuf *); static void if_route(struct ifnet *, int flag, int fam); static int if_setflag(struct ifnet *, int, int, int *, int); static int if_transmit(struct ifnet *ifp, struct mbuf *m); @@ -665,7 +666,9 @@ if_attach_internal(struct ifnet *ifp, in ifp->if_transmit = if_transmit; ifp->if_qflush = if_qflush; } - + if (ifp->if_input == NULL) + ifp->if_input = if_input_default; + if (!vmove) { #ifdef MAC mac_ifnet_create(ifp); @@ -3570,6 +3573,13 @@ if_transmit(struct ifnet *ifp, struct mb return (error); } +static void +if_input_default(struct ifnet *ifp __unused, struct mbuf *m) +{ + + m_freem(m); +} + int if_handoff(struct ifqueue *ifq, struct mbuf *m, struct ifnet *ifp, int adjust) { From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 13:33:17 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49B76172; Thu, 19 Mar 2015 13:33:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34BAD105; Thu, 19 Mar 2015 13:33:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JDXGeG052987; Thu, 19 Mar 2015 13:33:16 GMT (envelope-from ae@FreeBSD.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JDXGle052986; Thu, 19 Mar 2015 13:33:16 GMT (envelope-from ae@FreeBSD.org) Message-Id: <201503191333.t2JDXGle052986@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ae set sender to ae@FreeBSD.org using -f From: "Andrey V. Elsukov" Date: Thu, 19 Mar 2015 13:33:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280257 - stable/9/sys/net X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 13:33:17 -0000 Author: ae Date: Thu Mar 19 13:33:15 2015 New Revision: 280257 URL: https://svnweb.freebsd.org/changeset/base/280257 Log: MFC r279920: Add if_input_default() method, that will be used for if_input initialization, when no input method specified before if_attach(). This prevents panics when if_input() method called directly e.g. from bpf(4) code. PR: 192426 Modified: stable/9/sys/net/if.c Directory Properties: stable/9/sys/ (props changed) stable/9/sys/net/ (props changed) Modified: stable/9/sys/net/if.c ============================================================================== --- stable/9/sys/net/if.c Thu Mar 19 13:10:09 2015 (r280256) +++ stable/9/sys/net/if.c Thu Mar 19 13:33:15 2015 (r280257) @@ -158,6 +158,7 @@ static int ifconf(u_long, caddr_t); static void if_freemulti(struct ifmultiaddr *); static void if_init(void *); static void if_grow(void); +static void if_input_default(struct ifnet *, struct mbuf *); static void if_route(struct ifnet *, int flag, int fam); static int if_setflag(struct ifnet *, int, int, int *, int); static int if_transmit(struct ifnet *ifp, struct mbuf *m); @@ -681,7 +682,9 @@ if_attach_internal(struct ifnet *ifp, in ifp->if_transmit = if_transmit; ifp->if_qflush = if_qflush; } - + if (ifp->if_input == NULL) + ifp->if_input = if_input_default; + if (!vmove) { #ifdef MAC mac_ifnet_create(ifp); @@ -3481,6 +3484,13 @@ if_transmit(struct ifnet *ifp, struct mb return (error); } +static void +if_input_default(struct ifnet *ifp __unused, struct mbuf *m) +{ + + m_freem(m); +} + int if_handoff(struct ifqueue *ifq, struct mbuf *m, struct ifnet *ifp, int adjust) { From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 13:38:04 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E6BD350; Thu, 19 Mar 2015 13:38:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35038149; Thu, 19 Mar 2015 13:38:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JDc4S5053753; Thu, 19 Mar 2015 13:38:04 GMT (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JDbc4j053591; Thu, 19 Mar 2015 13:37:38 GMT (envelope-from rwatson@FreeBSD.org) Message-Id: <201503191337.t2JDbc4j053591@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rwatson set sender to rwatson@FreeBSD.org using -f From: Robert Watson Date: Thu, 19 Mar 2015 13:37:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280258 - in stable/10/sys: amd64/amd64 amd64/linux32 arm/arm cam/ctl cddl/compat/opensolaris/sys compat/freebsd32 compat/linux compat/svr4 dev/aac dev/aacraid dev/amr dev/filemon dev/h... X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 13:38:04 -0000 Author: rwatson Date: Thu Mar 19 13:37:36 2015 New Revision: 280258 URL: https://svnweb.freebsd.org/changeset/base/280258 Log: Merge r263233 from HEAD to stable/10: Update kernel inclusions of capability.h to use capsicum.h instead; some further refinement is required as some device drivers intended to be portable over FreeBSD versions rely on __FreeBSD_version to decide whether to include capability.h. Sponsored by: Google, Inc. Modified: stable/10/sys/amd64/amd64/sys_machdep.c stable/10/sys/amd64/linux32/linux32_machdep.c stable/10/sys/arm/arm/sys_machdep.c stable/10/sys/cam/ctl/ctl_frontend_iscsi.c stable/10/sys/cddl/compat/opensolaris/sys/file.h stable/10/sys/compat/freebsd32/freebsd32_capability.c stable/10/sys/compat/freebsd32/freebsd32_ioctl.c stable/10/sys/compat/freebsd32/freebsd32_misc.c stable/10/sys/compat/linux/linux_file.c stable/10/sys/compat/linux/linux_ioctl.c stable/10/sys/compat/linux/linux_socket.c stable/10/sys/compat/svr4/svr4_fcntl.c stable/10/sys/compat/svr4/svr4_filio.c stable/10/sys/compat/svr4/svr4_ioctl.c stable/10/sys/compat/svr4/svr4_misc.c stable/10/sys/compat/svr4/svr4_stream.c stable/10/sys/dev/aac/aac_linux.c stable/10/sys/dev/aacraid/aacraid_linux.c stable/10/sys/dev/amr/amr_linux.c stable/10/sys/dev/filemon/filemon.c stable/10/sys/dev/hwpmc/hwpmc_logging.c stable/10/sys/dev/ipmi/ipmi_linux.c stable/10/sys/dev/iscsi/icl.c stable/10/sys/dev/iscsi/icl_proxy.c stable/10/sys/dev/iscsi_initiator/iscsi.c stable/10/sys/dev/mfi/mfi_linux.c stable/10/sys/dev/tdfx/tdfx_linux.c stable/10/sys/fs/fdescfs/fdesc_vnops.c stable/10/sys/fs/fuse/fuse_vfsops.c stable/10/sys/fs/nfsclient/nfs_clport.c stable/10/sys/fs/nfsserver/nfs_nfsdport.c stable/10/sys/i386/i386/sys_machdep.c stable/10/sys/i386/ibcs2/ibcs2_fcntl.c stable/10/sys/i386/ibcs2/ibcs2_ioctl.c stable/10/sys/i386/ibcs2/ibcs2_misc.c stable/10/sys/i386/linux/linux_machdep.c stable/10/sys/kern/imgact_elf.c stable/10/sys/kern/kern_descrip.c stable/10/sys/kern/kern_event.c stable/10/sys/kern/kern_exec.c stable/10/sys/kern/kern_exit.c stable/10/sys/kern/kern_ktrace.c stable/10/sys/kern/kern_sig.c stable/10/sys/kern/kern_sysctl.c stable/10/sys/kern/subr_capability.c stable/10/sys/kern/subr_syscall.c stable/10/sys/kern/subr_trap.c stable/10/sys/kern/sys_capability.c stable/10/sys/kern/sys_generic.c stable/10/sys/kern/sys_procdesc.c stable/10/sys/kern/tty.c stable/10/sys/kern/uipc_mqueue.c stable/10/sys/kern/uipc_sem.c stable/10/sys/kern/uipc_shm.c stable/10/sys/kern/uipc_syscalls.c stable/10/sys/kern/uipc_usrreq.c stable/10/sys/kern/vfs_acl.c stable/10/sys/kern/vfs_aio.c stable/10/sys/kern/vfs_extattr.c stable/10/sys/kern/vfs_lookup.c stable/10/sys/kern/vfs_syscalls.c stable/10/sys/netsmb/smb_dev.c stable/10/sys/nfsserver/nfs_srvkrpc.c stable/10/sys/security/mac/mac_syscalls.c stable/10/sys/sparc64/sparc64/sys_machdep.c stable/10/sys/ufs/ffs/ffs_alloc.c stable/10/sys/vm/vm_mmap.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/amd64/amd64/sys_machdep.c ============================================================================== --- stable/10/sys/amd64/amd64/sys_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/amd64/amd64/sys_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/amd64/linux32/linux32_machdep.c ============================================================================== --- stable/10/sys/amd64/linux32/linux32_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/amd64/linux32/linux32_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/arm/arm/sys_machdep.c ============================================================================== --- stable/10/sys/arm/arm/sys_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/arm/arm/sys_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/cam/ctl/ctl_frontend_iscsi.c ============================================================================== --- stable/10/sys/cam/ctl/ctl_frontend_iscsi.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/cam/ctl/ctl_frontend_iscsi.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/cddl/compat/opensolaris/sys/file.h ============================================================================== --- stable/10/sys/cddl/compat/opensolaris/sys/file.h Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/cddl/compat/opensolaris/sys/file.h Thu Mar 19 13:37:36 2015 (r280258) @@ -36,7 +36,7 @@ #ifdef _KERNEL typedef struct file file_t; -#include +#include static __inline file_t * getf(int fd, cap_rights_t *rightsp) Modified: stable/10/sys/compat/freebsd32/freebsd32_capability.c ============================================================================== --- stable/10/sys/compat/freebsd32/freebsd32_capability.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/freebsd32/freebsd32_capability.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include "opt_capsicum.h" #include -#include +#include #include #include #include Modified: stable/10/sys/compat/freebsd32/freebsd32_ioctl.c ============================================================================== --- stable/10/sys/compat/freebsd32/freebsd32_ioctl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/freebsd32/freebsd32_ioctl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" #include -#include +#include #include #include #include Modified: stable/10/sys/compat/freebsd32/freebsd32_misc.c ============================================================================== --- stable/10/sys/compat/freebsd32/freebsd32_misc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/freebsd32/freebsd32_misc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/linux/linux_file.c ============================================================================== --- stable/10/sys/compat/linux/linux_file.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/linux/linux_file.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/linux/linux_ioctl.c ============================================================================== --- stable/10/sys/compat/linux/linux_ioctl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/linux/linux_ioctl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/linux/linux_socket.c ============================================================================== --- stable/10/sys/compat/linux/linux_socket.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/linux/linux_socket.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/svr4/svr4_fcntl.c ============================================================================== --- stable/10/sys/compat/svr4/svr4_fcntl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/svr4/svr4_fcntl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/compat/svr4/svr4_filio.c ============================================================================== --- stable/10/sys/compat/svr4/svr4_filio.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/svr4/svr4_filio.c Thu Mar 19 13:37:36 2015 (r280258) @@ -32,7 +32,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/svr4/svr4_ioctl.c ============================================================================== --- stable/10/sys/compat/svr4/svr4_ioctl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/svr4/svr4_ioctl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/svr4/svr4_misc.c ============================================================================== --- stable/10/sys/compat/svr4/svr4_misc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/svr4/svr4_misc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/compat/svr4/svr4_stream.c ============================================================================== --- stable/10/sys/compat/svr4/svr4_stream.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/compat/svr4/svr4_stream.c Thu Mar 19 13:37:36 2015 (r280258) @@ -43,7 +43,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/dev/aac/aac_linux.c ============================================================================== --- stable/10/sys/dev/aac/aac_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/aac/aac_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/dev/aacraid/aacraid_linux.c ============================================================================== --- stable/10/sys/dev/aacraid/aacraid_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/aacraid/aacraid_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); #include #if __FreeBSD_version >= 900000 -#include +#include #endif #include #include Modified: stable/10/sys/dev/amr/amr_linux.c ============================================================================== --- stable/10/sys/dev/amr/amr_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/amr/amr_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -30,7 +30,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/dev/filemon/filemon.c ============================================================================== --- stable/10/sys/dev/filemon/filemon.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/filemon/filemon.c Thu Mar 19 13:37:36 2015 (r280258) @@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$"); #include #if __FreeBSD_version >= 900041 -#include +#include #endif #include "filemon.h" Modified: stable/10/sys/dev/hwpmc/hwpmc_logging.c ============================================================================== --- stable/10/sys/dev/hwpmc/hwpmc_logging.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/hwpmc/hwpmc_logging.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/dev/ipmi/ipmi_linux.c ============================================================================== --- stable/10/sys/dev/ipmi/ipmi_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/ipmi/ipmi_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/dev/iscsi/icl.c ============================================================================== --- stable/10/sys/dev/iscsi/icl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/iscsi/icl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/dev/iscsi/icl_proxy.c ============================================================================== --- stable/10/sys/dev/iscsi/icl_proxy.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/iscsi/icl_proxy.c Thu Mar 19 13:37:36 2015 (r280258) @@ -71,7 +71,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/dev/iscsi_initiator/iscsi.c ============================================================================== --- stable/10/sys/dev/iscsi_initiator/iscsi.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/iscsi_initiator/iscsi.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include "opt_iscsi_initiator.h" #include -#include +#include #include #include #include Modified: stable/10/sys/dev/mfi/mfi_linux.c ============================================================================== --- stable/10/sys/dev/mfi/mfi_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/mfi/mfi_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/dev/tdfx/tdfx_linux.c ============================================================================== --- stable/10/sys/dev/tdfx/tdfx_linux.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/dev/tdfx/tdfx_linux.c Thu Mar 19 13:37:36 2015 (r280258) @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$"); #include -#include +#include #include #include #include Modified: stable/10/sys/fs/fdescfs/fdesc_vnops.c ============================================================================== --- stable/10/sys/fs/fdescfs/fdesc_vnops.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/fs/fdescfs/fdesc_vnops.c Thu Mar 19 13:37:36 2015 (r280258) @@ -40,7 +40,7 @@ #include #include -#include +#include #include #include #include Modified: stable/10/sys/fs/fuse/fuse_vfsops.c ============================================================================== --- stable/10/sys/fs/fuse/fuse_vfsops.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/fs/fuse/fuse_vfsops.c Thu Mar 19 13:37:36 2015 (r280258) @@ -62,7 +62,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/fs/nfsclient/nfs_clport.c ============================================================================== --- stable/10/sys/fs/nfsclient/nfs_clport.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/fs/nfsclient/nfs_clport.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet6.h" #include "opt_kdtrace.h" -#include +#include /* * generally, I don't like #includes inside .h files, but it seems to Modified: stable/10/sys/fs/nfsserver/nfs_nfsdport.c ============================================================================== --- stable/10/sys/fs/nfsserver/nfs_nfsdport.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/fs/nfsserver/nfs_nfsdport.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,7 +34,7 @@ #include __FBSDID("$FreeBSD$"); -#include +#include /* * Functions that perform the vfs operations required by the routines in Modified: stable/10/sys/i386/i386/sys_machdep.c ============================================================================== --- stable/10/sys/i386/i386/sys_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/i386/i386/sys_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$"); #include "opt_kstack_pages.h" #include -#include +#include #include #include #include Modified: stable/10/sys/i386/ibcs2/ibcs2_fcntl.c ============================================================================== --- stable/10/sys/i386/ibcs2/ibcs2_fcntl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/i386/ibcs2/ibcs2_fcntl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -32,7 +32,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/i386/ibcs2/ibcs2_ioctl.c ============================================================================== --- stable/10/sys/i386/ibcs2/ibcs2_ioctl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/i386/ibcs2/ibcs2_ioctl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/i386/ibcs2/ibcs2_misc.c ============================================================================== --- stable/10/sys/i386/ibcs2/ibcs2_misc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/i386/ibcs2/ibcs2_misc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -57,7 +57,7 @@ __FBSDID("$FreeBSD$"); */ #include #include -#include +#include #include #include #include Modified: stable/10/sys/i386/linux/linux_machdep.c ============================================================================== --- stable/10/sys/i386/linux/linux_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/i386/linux/linux_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/imgact_elf.c ============================================================================== --- stable/10/sys/kern/imgact_elf.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/imgact_elf.c Thu Mar 19 13:37:36 2015 (r280258) @@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$"); #include "opt_core.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_descrip.c ============================================================================== --- stable/10/sys/kern/kern_descrip.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_descrip.c Thu Mar 19 13:37:36 2015 (r280258) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_event.c ============================================================================== --- stable/10/sys/kern/kern_event.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_event.c Thu Mar 19 13:37:36 2015 (r280258) @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_exec.c ============================================================================== --- stable/10/sys/kern/kern_exec.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_exec.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,9 +34,9 @@ __FBSDID("$FreeBSD$"); #include "opt_vm.h" #include -#include +#include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_exit.c ============================================================================== --- stable/10/sys/kern/kern_exit.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_exit.c Thu Mar 19 13:37:36 2015 (r280258) @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_ktrace.c ============================================================================== --- stable/10/sys/kern/kern_ktrace.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_ktrace.c Thu Mar 19 13:37:36 2015 (r280258) @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ktrace.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_sig.c ============================================================================== --- stable/10/sys/kern/kern_sig.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_sig.c Thu Mar 19 13:37:36 2015 (r280258) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/kern_sysctl.c ============================================================================== --- stable/10/sys/kern/kern_sysctl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/kern_sysctl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -45,7 +45,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/subr_capability.c ============================================================================== --- stable/10/sys/kern/subr_capability.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/subr_capability.c Thu Mar 19 13:37:36 2015 (r280258) @@ -36,13 +36,13 @@ __FBSDID("$FreeBSD$"); #ifdef _KERNEL #include -#include +#include #include #include #else /* !_KERNEL */ #include -#include +#include #include #include Modified: stable/10/sys/kern/subr_syscall.c ============================================================================== --- stable/10/sys/kern/subr_syscall.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/subr_syscall.c Thu Mar 19 13:37:36 2015 (r280258) @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); -#include +#include #include #ifdef KTRACE #include Modified: stable/10/sys/kern/subr_trap.c ============================================================================== --- stable/10/sys/kern/subr_trap.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/subr_trap.c Thu Mar 19 13:37:36 2015 (r280258) @@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/sys_capability.c ============================================================================== --- stable/10/sys/kern/sys_capability.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/sys_capability.c Thu Mar 19 13:37:36 2015 (r280258) @@ -62,7 +62,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ktrace.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/sys_generic.c ============================================================================== --- stable/10/sys/kern/sys_generic.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/sys_generic.c Thu Mar 19 13:37:36 2015 (r280258) @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/sys_procdesc.c ============================================================================== --- stable/10/sys/kern/sys_procdesc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/sys_procdesc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -64,7 +64,7 @@ __FBSDID("$FreeBSD$"); #include "opt_procdesc.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/tty.c ============================================================================== --- stable/10/sys/kern/tty.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/tty.c Thu Mar 19 13:37:36 2015 (r280258) @@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/uipc_mqueue.c ============================================================================== --- stable/10/sys/kern/uipc_mqueue.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/uipc_mqueue.c Thu Mar 19 13:37:36 2015 (r280258) @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/uipc_sem.c ============================================================================== --- stable/10/sys/kern/uipc_sem.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/uipc_sem.c Thu Mar 19 13:37:36 2015 (r280258) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include "opt_posix.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/uipc_shm.c ============================================================================== --- stable/10/sys/kern/uipc_shm.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/uipc_shm.c Thu Mar 19 13:37:36 2015 (r280258) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ktrace.h" #include -#include +#include #include #include #include Modified: stable/10/sys/kern/uipc_syscalls.c ============================================================================== --- stable/10/sys/kern/uipc_syscalls.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/uipc_syscalls.c Thu Mar 19 13:37:36 2015 (r280258) @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/uipc_usrreq.c ============================================================================== --- stable/10/sys/kern/uipc_usrreq.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/uipc_usrreq.c Thu Mar 19 13:37:36 2015 (r280258) @@ -61,7 +61,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ddb.h" #include -#include +#include #include #include #include /* XXX must be before */ Modified: stable/10/sys/kern/vfs_acl.c ============================================================================== --- stable/10/sys/kern/vfs_acl.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/vfs_acl.c Thu Mar 19 13:37:36 2015 (r280258) @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/vfs_aio.c ============================================================================== --- stable/10/sys/kern/vfs_aio.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/vfs_aio.c Thu Mar 19 13:37:36 2015 (r280258) @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/vfs_extattr.c ============================================================================== --- stable/10/sys/kern/vfs_extattr.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/vfs_extattr.c Thu Mar 19 13:37:36 2015 (r280258) @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/vfs_lookup.c ============================================================================== --- stable/10/sys/kern/vfs_lookup.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/vfs_lookup.c Thu Mar 19 13:37:36 2015 (r280258) @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/kern/vfs_syscalls.c ============================================================================== --- stable/10/sys/kern/vfs_syscalls.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/kern/vfs_syscalls.c Thu Mar 19 13:37:36 2015 (r280258) @@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include #include Modified: stable/10/sys/netsmb/smb_dev.c ============================================================================== --- stable/10/sys/netsmb/smb_dev.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/netsmb/smb_dev.c Thu Mar 19 13:37:36 2015 (r280258) @@ -29,7 +29,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include Modified: stable/10/sys/nfsserver/nfs_srvkrpc.c ============================================================================== --- stable/10/sys/nfsserver/nfs_srvkrpc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/nfsserver/nfs_srvkrpc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$"); #include "opt_kgssapi.h" #include -#include +#include #include #include #include Modified: stable/10/sys/security/mac/mac_syscalls.c ============================================================================== --- stable/10/sys/security/mac/mac_syscalls.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/security/mac/mac_syscalls.c Thu Mar 19 13:37:36 2015 (r280258) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include "opt_mac.h" #include -#include +#include #include #include #include Modified: stable/10/sys/sparc64/sparc64/sys_machdep.c ============================================================================== --- stable/10/sys/sparc64/sparc64/sys_machdep.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/sparc64/sparc64/sys_machdep.c Thu Mar 19 13:37:36 2015 (r280258) @@ -30,7 +30,7 @@ #include #include -#include +#include #include #include #include Modified: stable/10/sys/ufs/ffs/ffs_alloc.c ============================================================================== --- stable/10/sys/ufs/ffs/ffs_alloc.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/ufs/ffs/ffs_alloc.c Thu Mar 19 13:37:36 2015 (r280258) @@ -65,7 +65,7 @@ __FBSDID("$FreeBSD$"); #include "opt_quota.h" #include -#include +#include #include #include #include Modified: stable/10/sys/vm/vm_mmap.c ============================================================================== --- stable/10/sys/vm/vm_mmap.c Thu Mar 19 13:33:15 2015 (r280257) +++ stable/10/sys/vm/vm_mmap.c Thu Mar 19 13:37:36 2015 (r280258) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include +#include #include #include #include From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 14:09:30 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32DE1C6B; Thu, 19 Mar 2015 14:09:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CF9068A; Thu, 19 Mar 2015 14:09:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JE9TD6068039; Thu, 19 Mar 2015 14:09:29 GMT (envelope-from ae@FreeBSD.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JE9SV0068031; Thu, 19 Mar 2015 14:09:28 GMT (envelope-from ae@FreeBSD.org) Message-Id: <201503191409.t2JE9SV0068031@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ae set sender to ae@FreeBSD.org using -f From: "Andrey V. Elsukov" Date: Thu, 19 Mar 2015 14:09:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280261 - in stable/10: sbin/geom/class/part sys/geom/part sys/sys X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 14:09:30 -0000 Author: ae Date: Thu Mar 19 14:09:27 2015 New Revision: 280261 URL: https://svnweb.freebsd.org/changeset/base/280261 Log: MFC r269854: Remove duplicate entry. MFC r279935: Add GUID and alias for Apple Core Storage partition. PR: 196241 Modified: stable/10/sbin/geom/class/part/gpart.8 stable/10/sys/geom/part/g_part.c stable/10/sys/geom/part/g_part.h stable/10/sys/geom/part/g_part_gpt.c stable/10/sys/sys/gpt.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sbin/geom/class/part/gpart.8 ============================================================================== --- stable/10/sbin/geom/class/part/gpart.8 Thu Mar 19 13:57:47 2015 (r280260) +++ stable/10/sbin/geom/class/part/gpart.8 Thu Mar 19 14:09:27 2015 (r280261) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 12, 2014 +.Dd March 12, 2015 .Dt GPART 8 .Os .Sh NAME @@ -659,12 +659,11 @@ Another symbolic names that can be used .Cm gpart utility are: .Bl -tag -width ".Cm dragonfly-disklabel64" -.It Cm apple-boot -An Apple Mac OS X partition dedicated to bootloader. -The scheme-specific types are -.Qq Li "!Apple_Bootstrap" -for APM and -.Qq Li "!426f6f74-0000-11aa-aa11-00306543ecac" +.It Cm apple-core-storage +An Apple Mac OS X partition used by logical volume manager known as +Core Storage. +The scheme-specific type is +.Qq Li "!53746f72-6167-11aa-aa11-00306543ecac" for GPT. .It Cm apple-hfs An Apple Mac OS X partition that contains a HFS or HFS+ filesystem. Modified: stable/10/sys/geom/part/g_part.c ============================================================================== --- stable/10/sys/geom/part/g_part.c Thu Mar 19 13:57:47 2015 (r280260) +++ stable/10/sys/geom/part/g_part.c Thu Mar 19 14:09:27 2015 (r280261) @@ -70,6 +70,7 @@ struct g_part_alias_list { enum g_part_alias alias; } g_part_alias_list[G_PART_ALIAS_COUNT] = { { "apple-boot", G_PART_ALIAS_APPLE_BOOT }, + { "apple-core-storage", G_PART_ALIAS_APPLE_CORE_STORAGE }, { "apple-hfs", G_PART_ALIAS_APPLE_HFS }, { "apple-label", G_PART_ALIAS_APPLE_LABEL }, { "apple-raid", G_PART_ALIAS_APPLE_RAID }, Modified: stable/10/sys/geom/part/g_part.h ============================================================================== --- stable/10/sys/geom/part/g_part.h Thu Mar 19 13:57:47 2015 (r280260) +++ stable/10/sys/geom/part/g_part.h Thu Mar 19 14:09:27 2015 (r280261) @@ -85,6 +85,7 @@ enum g_part_alias { G_PART_ALIAS_DFBSD_HAMMER, /* A DfBSD HAMMER FS partition entry */ G_PART_ALIAS_DFBSD_HAMMER2, /* A DfBSD HAMMER2 FS partition entry */ G_PART_ALIAS_PREP_BOOT, /* A PREP/CHRP boot partition entry. */ + G_PART_ALIAS_APPLE_CORE_STORAGE,/* An Apple Core Storage partition. */ /* Keep the following last */ G_PART_ALIAS_COUNT }; Modified: stable/10/sys/geom/part/g_part_gpt.c ============================================================================== --- stable/10/sys/geom/part/g_part_gpt.c Thu Mar 19 13:57:47 2015 (r280260) +++ stable/10/sys/geom/part/g_part_gpt.c Thu Mar 19 14:09:27 2015 (r280261) @@ -146,6 +146,8 @@ static struct g_part_scheme g_part_gpt_s G_PART_SCHEME_DECLARE(g_part_gpt); static struct uuid gpt_uuid_apple_boot = GPT_ENT_TYPE_APPLE_BOOT; +static struct uuid gpt_uuid_apple_core_storage = + GPT_ENT_TYPE_APPLE_CORE_STORAGE; static struct uuid gpt_uuid_apple_hfs = GPT_ENT_TYPE_APPLE_HFS; static struct uuid gpt_uuid_apple_label = GPT_ENT_TYPE_APPLE_LABEL; static struct uuid gpt_uuid_apple_raid = GPT_ENT_TYPE_APPLE_RAID; @@ -198,6 +200,7 @@ static struct g_part_uuid_alias { int mbrtype; } gpt_uuid_alias_match[] = { { &gpt_uuid_apple_boot, G_PART_ALIAS_APPLE_BOOT, 0xab }, + { &gpt_uuid_apple_core_storage, G_PART_ALIAS_APPLE_CORE_STORAGE, 0 }, { &gpt_uuid_apple_hfs, G_PART_ALIAS_APPLE_HFS, 0xaf }, { &gpt_uuid_apple_label, G_PART_ALIAS_APPLE_LABEL, 0 }, { &gpt_uuid_apple_raid, G_PART_ALIAS_APPLE_RAID, 0 }, Modified: stable/10/sys/sys/gpt.h ============================================================================== --- stable/10/sys/sys/gpt.h Thu Mar 19 13:57:47 2015 (r280260) +++ stable/10/sys/sys/gpt.h Thu Mar 19 14:09:27 2015 (r280261) @@ -150,6 +150,8 @@ struct gpt_ent { {0x4C616265,0x6c00,0x11aa,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}} #define GPT_ENT_TYPE_APPLE_TV_RECOVERY \ {0x5265636f,0x7665,0x11AA,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}} +#define GPT_ENT_TYPE_APPLE_CORE_STORAGE \ + {0x53746f72,0x6167,0x11AA,0xaa,0x11,{0x00,0x30,0x65,0x43,0xec,0xac}} #define GPT_ENT_TYPE_NETBSD_FFS \ {0x49f48d5a,0xb10e,0x11dc,0xb9,0x9b,{0x00,0x19,0xd1,0x87,0x96,0x48}} From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 17:40:47 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 704F44B5; Thu, 19 Mar 2015 17:40:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57A057CA; Thu, 19 Mar 2015 17:40:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JHelBE072322; Thu, 19 Mar 2015 17:40:47 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JHeisK072110; Thu, 19 Mar 2015 17:40:44 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503191740.t2JHeisK072110@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 19 Mar 2015 17:40:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280266 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/pkcs7 10/crypto/openssl/doc/crypto 10/crypto/openssl/ssl 10/secure/lib/libcrypto/man 8/crypto/openssl/crypto/... X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 17:40:47 -0000 Author: delphij Date: Thu Mar 19 17:40:43 2015 New Revision: 280266 URL: https://svnweb.freebsd.org/changeset/base/280266 Log: Fix multiple OpenSSL vulnerabilities. Security: FreeBSD-SA-15:06.openssl Security: CVE-2015-0209 Security: CVE-2015-0286 Security: CVE-2015-0287 Security: CVE-2015-0288 Security: CVE-2015-0289 Security: CVE-2015-0293 Modified: stable/9/crypto/openssl/crypto/asn1/a_type.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/9/crypto/openssl/doc/crypto/d2i_X509.pod stable/9/crypto/openssl/ssl/s2_lib.c stable/9/crypto/openssl/ssl/s2_srvr.c stable/9/secure/lib/libcrypto/man/d2i_X509.3 Changes in other areas also in this revision: Modified: stable/10/crypto/openssl/crypto/asn1/a_type.c stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/10/crypto/openssl/doc/crypto/d2i_X509.pod stable/10/crypto/openssl/ssl/s2_lib.c stable/10/crypto/openssl/ssl/s2_srvr.c stable/10/secure/lib/libcrypto/man/d2i_X509.3 stable/8/crypto/openssl/crypto/asn1/a_type.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/8/crypto/openssl/doc/crypto/d2i_X509.pod stable/8/crypto/openssl/ssl/s2_lib.c stable/8/crypto/openssl/ssl/s2_srvr.c stable/8/secure/lib/libcrypto/man/d2i_X509.3 Modified: stable/9/crypto/openssl/crypto/asn1/a_type.c ============================================================================== --- stable/9/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 17:40:43 2015 (r280266) @@ -121,6 +121,9 @@ int ASN1_TYPE_cmp(const ASN1_TYPE *a, co case V_ASN1_OBJECT: result = OBJ_cmp(a->value.object, b->value.object); break; + case V_ASN1_BOOLEAN: + result = a->value.boolean - b->value.boolean; + break; case V_ASN1_NULL: result = 0; /* They do not have content. */ break; Modified: stable/9/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/9/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 17:40:43 2015 (r280266) @@ -125,16 +125,23 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) - { +{ ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; - if (!pval) - pval = &ptmpval; c.valid = 0; - if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) - return *pval; - return NULL; + if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) + ptmpval = *pval; + + if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { + if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { + if (*pval) + ASN1_item_free(*pval, it); + *pval = ptmpval; + } + return ptmpval; } + return NULL; +} int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) @@ -309,13 +316,20 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it)) goto auxerr; - /* Allocate structure */ - if (!*pval && !ASN1_item_ex_new(pval, it)) - { + if (*pval) { + /* Free up and zero CHOICE value if initialised */ + i = asn1_get_choice_selector(pval, it); + if ((i >= 0) && (i < it->tcount)) { + tt = it->templates + i; + pchptr = asn1_get_field_ptr(pval, tt); + ASN1_template_free(pchptr, tt); + asn1_set_choice_selector(pval, -1, it); + } + } else if (!ASN1_item_ex_new(pval, it)) { ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR); goto err; - } + } /* CHOICE type, try each possibility in turn */ p = *in; for (i = 0, tt=it->templates; i < it->tcount; i++, tt++) @@ -405,6 +419,17 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it)) goto auxerr; + /* Free up and zero any ADB found */ + for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { + if (tt->flags & ASN1_TFLG_ADB_MASK) { + const ASN1_TEMPLATE *seqtt; + ASN1_VALUE **pseqval; + seqtt = asn1_do_adb(pval, tt, 1); + pseqval = asn1_get_field_ptr(pval, seqtt); + ASN1_template_free(pseqval, seqtt); + } + } + /* Get each field entry */ for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { Modified: stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c ============================================================================== --- stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 17:40:43 2015 (r280266) @@ -151,6 +151,25 @@ BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio) EVP_PKEY *pkey; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + /* + * The content field in the PKCS7 ContentInfo is optional, but that really + * only applies to inner content (precisely, detached signatures). + * + * When reading content, missing outer content is therefore treated as an + * error. + * + * When creating content, PKCS7_content_new() must be called before + * calling this method, so a NULL p7->d is always an error. + */ + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -344,6 +363,16 @@ BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKE STACK_OF(PKCS7_RECIP_INFO) *rsk=NULL; PKCS7_RECIP_INFO *ri=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -637,6 +666,16 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) STACK_OF(PKCS7_SIGNER_INFO) *si_sk=NULL; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_NO_CONTENT); + return 0; + } + EVP_MD_CTX_init(&ctx_tmp); i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -668,6 +707,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) /* If detached data then the content is excluded */ if(PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.sign->contents->d.data = NULL; } break; @@ -678,6 +718,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) if(PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.digest->contents->d.data = NULL; } break; @@ -813,8 +854,13 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len); } - if (!PKCS7_is_detached(p7)) - { + if (!PKCS7_is_detached(p7)) { + /* + * NOTE(emilia): I think we only reach os == NULL here because detached + * digested data support is broken. + */ + if (os == NULL) + goto err; btmp=BIO_find_type(bio,BIO_TYPE_MEM); if (btmp == NULL) { @@ -849,6 +895,16 @@ int PKCS7_dataVerify(X509_STORE *cert_st STACK_OF(X509) *cert; X509 *x509; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_NO_CONTENT); + return 0; + } + if (PKCS7_type_is_signed(p7)) { cert=p7->d.sign->cert; Modified: stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c ============================================================================== --- stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -70,6 +70,7 @@ long PKCS7_ctrl(PKCS7 *p7, int cmd, long switch (cmd) { + /* NOTE(emilia): does not support detached digested data. */ case PKCS7_OP_SET_DETACHED_SIGNATURE: if (nid == NID_pkcs7_signed) { @@ -473,6 +474,8 @@ int PKCS7_set_digest(PKCS7 *p7, const EV STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7) { + if (p7 == NULL || p7->d.ptr == NULL) + return NULL; if (PKCS7_type_is_signed(p7)) { return(p7->d.sign->signer_info); Modified: stable/9/crypto/openssl/doc/crypto/d2i_X509.pod ============================================================================== --- stable/9/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 17:40:43 2015 (r280266) @@ -199,6 +199,12 @@ B<*px> is valid is broken and some parts persist if they are not present in the new one. As a result the use of this "reuse" behaviour is strongly discouraged. +Current versions of OpenSSL will not modify B<*px> if an error occurs. +If parsing succeeds then B<*px> is freed (if it is not NULL) and then +set to the value of the newly decoded structure. As a result B<*px> +B be allocated on the stack or an attempt will be made to +free an invalid pointer. + i2d_X509() will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -210,7 +216,9 @@ always succeed. d2i_X509(), d2i_X509_bio() and d2i_X509_fp() return a valid B structure or B if an error occurs. The error code that can be obtained by -L. +L. If the "reuse" capability has been used +with a valid X509 structure being passed in via B then the object is not +modified in the event of error. i2d_X509() returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by Modified: stable/9/crypto/openssl/ssl/s2_lib.c ============================================================================== --- stable/9/crypto/openssl/ssl/s2_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/ssl/s2_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -410,7 +410,7 @@ int ssl2_generate_key_material(SSL *s) OPENSSL_assert(s->session->master_key_length >= 0 && s->session->master_key_length - < (int)sizeof(s->session->master_key)); + <= (int)sizeof(s->session->master_key)); EVP_DigestUpdate(&ctx,s->session->master_key,s->session->master_key_length); EVP_DigestUpdate(&ctx,&c,1); c++; Modified: stable/9/crypto/openssl/ssl/s2_srvr.c ============================================================================== --- stable/9/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 17:40:43 2015 (r280266) @@ -446,9 +446,6 @@ static int get_client_master_key(SSL *s) SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_NO_PRIVATEKEY); return(-1); } - i=ssl_rsa_private_decrypt(s->cert,s->s2->tmp.enc, - &(p[s->s2->tmp.clear]),&(p[s->s2->tmp.clear]), - (s->s2->ssl2_rollback)?RSA_SSLV23_PADDING:RSA_PKCS1_PADDING); is_export=SSL_C_IS_EXPORT(s->session->cipher); @@ -467,23 +464,61 @@ static int get_client_master_key(SSL *s) else ek=5; + /* + * The format of the CLIENT-MASTER-KEY message is + * 1 byte message type + * 3 bytes cipher + * 2-byte clear key length (stored in s->s2->tmp.clear) + * 2-byte encrypted key length (stored in s->s2->tmp.enc) + * 2-byte key args length (IV etc) + * clear key + * encrypted key + * key args + * + * If the cipher is an export cipher, then the encrypted key bytes + * are a fixed portion of the total key (5 or 8 bytes). The size of + * this portion is in |ek|. If the cipher is not an export cipher, + * then the entire key material is encrypted (i.e., clear key length + * must be zero). + */ + if ((!is_export && s->s2->tmp.clear != 0) || + (is_export && s->s2->tmp.clear + ek != EVP_CIPHER_key_length(c))) { + ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_BAD_LENGTH); + return -1; + } + /* + * The encrypted blob must decrypt to the encrypted portion of the key. + * Decryption can't be expanding, so if we don't have enough encrypted + * bytes to fit the key in the buffer, stop now. + */ + if ((is_export && s->s2->tmp.enc < ek) || + (!is_export && s->s2->tmp.enc < EVP_CIPHER_key_length(c))) { + ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_LENGTH_TOO_SHORT); + return -1; + } + + i = ssl_rsa_private_decrypt(s->cert, s->s2->tmp.enc, + &(p[s->s2->tmp.clear]), + &(p[s->s2->tmp.clear]), + (s->s2->ssl2_rollback) ? RSA_SSLV23_PADDING : + RSA_PKCS1_PADDING); + /* bad decrypt */ #if 1 /* If a bad decrypt, continue with protocol but with a * random master secret (Bleichenbacher attack) */ - if ((i < 0) || - ((!is_export && (i != EVP_CIPHER_key_length(c))) - || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i != - (unsigned int)EVP_CIPHER_key_length(c)))))) - { + if ((i < 0) || ((!is_export && i != EVP_CIPHER_key_length(c)) + || (is_export && i != ek))) { ERR_clear_error(); if (is_export) i=ek; else i=EVP_CIPHER_key_length(c); - if (RAND_pseudo_bytes(p,i) <= 0) + if (RAND_pseudo_bytes(&p[s->s2->tmp.clear], i) <= 0) return 0; - } + } #else if (i < 0) { @@ -505,7 +540,8 @@ static int get_client_master_key(SSL *s) } #endif - if (is_export) i+=s->s2->tmp.clear; + if (is_export) + i = EVP_CIPHER_key_length(c); if (i > SSL_MAX_MASTER_KEY_LENGTH) { Modified: stable/9/secure/lib/libcrypto/man/d2i_X509.3 ============================================================================== --- stable/9/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 16:14:27 2015 (r280265) +++ stable/9/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 17:40:43 2015 (r280266) @@ -342,6 +342,12 @@ In some versions of OpenSSL the \*(L"reu persist if they are not present in the new one. As a result the use of this \*(L"reuse\*(R" behaviour is strongly discouraged. .PP +Current versions of OpenSSL will not modify \fB*px\fR if an error occurs. +If parsing succeeds then \fB*px\fR is freed (if it is not \s-1NULL\s0) and then +set to the value of the newly decoded structure. As a result \fB*px\fR +\&\fBmust not\fR be allocated on the stack or an attempt will be made to +free an invalid pointer. +.PP \&\fIi2d_X509()\fR will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -352,7 +358,9 @@ always succeed. .IX Header "RETURN VALUES" \&\fId2i_X509()\fR, \fId2i_X509_bio()\fR and \fId2i_X509_fp()\fR return a valid \fBX509\fR structure or \fB\s-1NULL\s0\fR if an error occurs. The error code that can be obtained by -\&\fIERR_get_error\fR\|(3). +\&\fIERR_get_error\fR\|(3). If the \*(L"reuse\*(R" capability has been used +with a valid X509 structure being passed in via \fBpx\fR then the object is not +modified in the event of error. .PP \&\fIi2d_X509()\fR returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 17:40:50 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCC1758E; Thu, 19 Mar 2015 17:40:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C445C7CB; Thu, 19 Mar 2015 17:40:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JHeonO072343; Thu, 19 Mar 2015 17:40:50 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JHem5H072328; Thu, 19 Mar 2015 17:40:48 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503191740.t2JHem5H072328@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 19 Mar 2015 17:40:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r280266 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/pkcs7 10/crypto/openssl/doc/crypto 10/crypto/openssl/ssl 10/secure/lib/libcrypto/man 8/crypto/openssl/crypto/... X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 17:40:51 -0000 Author: delphij Date: Thu Mar 19 17:40:43 2015 New Revision: 280266 URL: https://svnweb.freebsd.org/changeset/base/280266 Log: Fix multiple OpenSSL vulnerabilities. Security: FreeBSD-SA-15:06.openssl Security: CVE-2015-0209 Security: CVE-2015-0286 Security: CVE-2015-0287 Security: CVE-2015-0288 Security: CVE-2015-0289 Security: CVE-2015-0293 Modified: stable/8/crypto/openssl/crypto/asn1/a_type.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/8/crypto/openssl/doc/crypto/d2i_X509.pod stable/8/crypto/openssl/ssl/s2_lib.c stable/8/crypto/openssl/ssl/s2_srvr.c stable/8/secure/lib/libcrypto/man/d2i_X509.3 Changes in other areas also in this revision: Modified: stable/10/crypto/openssl/crypto/asn1/a_type.c stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/10/crypto/openssl/doc/crypto/d2i_X509.pod stable/10/crypto/openssl/ssl/s2_lib.c stable/10/crypto/openssl/ssl/s2_srvr.c stable/10/secure/lib/libcrypto/man/d2i_X509.3 stable/9/crypto/openssl/crypto/asn1/a_type.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/9/crypto/openssl/doc/crypto/d2i_X509.pod stable/9/crypto/openssl/ssl/s2_lib.c stable/9/crypto/openssl/ssl/s2_srvr.c stable/9/secure/lib/libcrypto/man/d2i_X509.3 Modified: stable/8/crypto/openssl/crypto/asn1/a_type.c ============================================================================== --- stable/8/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 17:40:43 2015 (r280266) @@ -121,6 +121,9 @@ int ASN1_TYPE_cmp(const ASN1_TYPE *a, co case V_ASN1_OBJECT: result = OBJ_cmp(a->value.object, b->value.object); break; + case V_ASN1_BOOLEAN: + result = a->value.boolean - b->value.boolean; + break; case V_ASN1_NULL: result = 0; /* They do not have content. */ break; Modified: stable/8/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/8/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 17:40:43 2015 (r280266) @@ -125,16 +125,23 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) - { +{ ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; - if (!pval) - pval = &ptmpval; c.valid = 0; - if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) - return *pval; - return NULL; + if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) + ptmpval = *pval; + + if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { + if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { + if (*pval) + ASN1_item_free(*pval, it); + *pval = ptmpval; + } + return ptmpval; } + return NULL; +} int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) @@ -309,13 +316,20 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it)) goto auxerr; - /* Allocate structure */ - if (!*pval && !ASN1_item_ex_new(pval, it)) - { + if (*pval) { + /* Free up and zero CHOICE value if initialised */ + i = asn1_get_choice_selector(pval, it); + if ((i >= 0) && (i < it->tcount)) { + tt = it->templates + i; + pchptr = asn1_get_field_ptr(pval, tt); + ASN1_template_free(pchptr, tt); + asn1_set_choice_selector(pval, -1, it); + } + } else if (!ASN1_item_ex_new(pval, it)) { ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR); goto err; - } + } /* CHOICE type, try each possibility in turn */ p = *in; for (i = 0, tt=it->templates; i < it->tcount; i++, tt++) @@ -405,6 +419,17 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it)) goto auxerr; + /* Free up and zero any ADB found */ + for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { + if (tt->flags & ASN1_TFLG_ADB_MASK) { + const ASN1_TEMPLATE *seqtt; + ASN1_VALUE **pseqval; + seqtt = asn1_do_adb(pval, tt, 1); + pseqval = asn1_get_field_ptr(pval, seqtt); + ASN1_template_free(pseqval, seqtt); + } + } + /* Get each field entry */ for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { Modified: stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c ============================================================================== --- stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 17:40:43 2015 (r280266) @@ -151,6 +151,25 @@ BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio) EVP_PKEY *pkey; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + /* + * The content field in the PKCS7 ContentInfo is optional, but that really + * only applies to inner content (precisely, detached signatures). + * + * When reading content, missing outer content is therefore treated as an + * error. + * + * When creating content, PKCS7_content_new() must be called before + * calling this method, so a NULL p7->d is always an error. + */ + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -344,6 +363,16 @@ BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKE STACK_OF(PKCS7_RECIP_INFO) *rsk=NULL; PKCS7_RECIP_INFO *ri=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -637,6 +666,16 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) STACK_OF(PKCS7_SIGNER_INFO) *si_sk=NULL; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_NO_CONTENT); + return 0; + } + EVP_MD_CTX_init(&ctx_tmp); i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -668,6 +707,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) /* If detached data then the content is excluded */ if(PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.sign->contents->d.data = NULL; } break; @@ -678,6 +718,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) if(PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.digest->contents->d.data = NULL; } break; @@ -813,8 +854,13 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len); } - if (!PKCS7_is_detached(p7)) - { + if (!PKCS7_is_detached(p7)) { + /* + * NOTE(emilia): I think we only reach os == NULL here because detached + * digested data support is broken. + */ + if (os == NULL) + goto err; btmp=BIO_find_type(bio,BIO_TYPE_MEM); if (btmp == NULL) { @@ -849,6 +895,16 @@ int PKCS7_dataVerify(X509_STORE *cert_st STACK_OF(X509) *cert; X509 *x509; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_NO_CONTENT); + return 0; + } + if (PKCS7_type_is_signed(p7)) { cert=p7->d.sign->cert; Modified: stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c ============================================================================== --- stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -70,6 +70,7 @@ long PKCS7_ctrl(PKCS7 *p7, int cmd, long switch (cmd) { + /* NOTE(emilia): does not support detached digested data. */ case PKCS7_OP_SET_DETACHED_SIGNATURE: if (nid == NID_pkcs7_signed) { @@ -473,6 +474,8 @@ int PKCS7_set_digest(PKCS7 *p7, const EV STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7) { + if (p7 == NULL || p7->d.ptr == NULL) + return NULL; if (PKCS7_type_is_signed(p7)) { return(p7->d.sign->signer_info); Modified: stable/8/crypto/openssl/doc/crypto/d2i_X509.pod ============================================================================== --- stable/8/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 17:40:43 2015 (r280266) @@ -199,6 +199,12 @@ B<*px> is valid is broken and some parts persist if they are not present in the new one. As a result the use of this "reuse" behaviour is strongly discouraged. +Current versions of OpenSSL will not modify B<*px> if an error occurs. +If parsing succeeds then B<*px> is freed (if it is not NULL) and then +set to the value of the newly decoded structure. As a result B<*px> +B be allocated on the stack or an attempt will be made to +free an invalid pointer. + i2d_X509() will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -210,7 +216,9 @@ always succeed. d2i_X509(), d2i_X509_bio() and d2i_X509_fp() return a valid B structure or B if an error occurs. The error code that can be obtained by -L. +L. If the "reuse" capability has been used +with a valid X509 structure being passed in via B then the object is not +modified in the event of error. i2d_X509() returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by Modified: stable/8/crypto/openssl/ssl/s2_lib.c ============================================================================== --- stable/8/crypto/openssl/ssl/s2_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/ssl/s2_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -410,7 +410,7 @@ int ssl2_generate_key_material(SSL *s) OPENSSL_assert(s->session->master_key_length >= 0 && s->session->master_key_length - < (int)sizeof(s->session->master_key)); + <= (int)sizeof(s->session->master_key)); EVP_DigestUpdate(&ctx,s->session->master_key,s->session->master_key_length); EVP_DigestUpdate(&ctx,&c,1); c++; Modified: stable/8/crypto/openssl/ssl/s2_srvr.c ============================================================================== --- stable/8/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 17:40:43 2015 (r280266) @@ -446,9 +446,6 @@ static int get_client_master_key(SSL *s) SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_NO_PRIVATEKEY); return(-1); } - i=ssl_rsa_private_decrypt(s->cert,s->s2->tmp.enc, - &(p[s->s2->tmp.clear]),&(p[s->s2->tmp.clear]), - (s->s2->ssl2_rollback)?RSA_SSLV23_PADDING:RSA_PKCS1_PADDING); is_export=SSL_C_IS_EXPORT(s->session->cipher); @@ -467,23 +464,61 @@ static int get_client_master_key(SSL *s) else ek=5; + /* + * The format of the CLIENT-MASTER-KEY message is + * 1 byte message type + * 3 bytes cipher + * 2-byte clear key length (stored in s->s2->tmp.clear) + * 2-byte encrypted key length (stored in s->s2->tmp.enc) + * 2-byte key args length (IV etc) + * clear key + * encrypted key + * key args + * + * If the cipher is an export cipher, then the encrypted key bytes + * are a fixed portion of the total key (5 or 8 bytes). The size of + * this portion is in |ek|. If the cipher is not an export cipher, + * then the entire key material is encrypted (i.e., clear key length + * must be zero). + */ + if ((!is_export && s->s2->tmp.clear != 0) || + (is_export && s->s2->tmp.clear + ek != EVP_CIPHER_key_length(c))) { + ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_BAD_LENGTH); + return -1; + } + /* + * The encrypted blob must decrypt to the encrypted portion of the key. + * Decryption can't be expanding, so if we don't have enough encrypted + * bytes to fit the key in the buffer, stop now. + */ + if ((is_export && s->s2->tmp.enc < ek) || + (!is_export && s->s2->tmp.enc < EVP_CIPHER_key_length(c))) { + ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_LENGTH_TOO_SHORT); + return -1; + } + + i = ssl_rsa_private_decrypt(s->cert, s->s2->tmp.enc, + &(p[s->s2->tmp.clear]), + &(p[s->s2->tmp.clear]), + (s->s2->ssl2_rollback) ? RSA_SSLV23_PADDING : + RSA_PKCS1_PADDING); + /* bad decrypt */ #if 1 /* If a bad decrypt, continue with protocol but with a * random master secret (Bleichenbacher attack) */ - if ((i < 0) || - ((!is_export && (i != EVP_CIPHER_key_length(c))) - || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i != - (unsigned int)EVP_CIPHER_key_length(c)))))) - { + if ((i < 0) || ((!is_export && i != EVP_CIPHER_key_length(c)) + || (is_export && i != ek))) { ERR_clear_error(); if (is_export) i=ek; else i=EVP_CIPHER_key_length(c); - if (RAND_pseudo_bytes(p,i) <= 0) + if (RAND_pseudo_bytes(&p[s->s2->tmp.clear], i) <= 0) return 0; - } + } #else if (i < 0) { @@ -505,7 +540,8 @@ static int get_client_master_key(SSL *s) } #endif - if (is_export) i+=s->s2->tmp.clear; + if (is_export) + i = EVP_CIPHER_key_length(c); if (i > SSL_MAX_MASTER_KEY_LENGTH) { Modified: stable/8/secure/lib/libcrypto/man/d2i_X509.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 16:14:27 2015 (r280265) +++ stable/8/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 17:40:43 2015 (r280266) @@ -342,6 +342,12 @@ In some versions of OpenSSL the \*(L"reu persist if they are not present in the new one. As a result the use of this \*(L"reuse\*(R" behaviour is strongly discouraged. .PP +Current versions of OpenSSL will not modify \fB*px\fR if an error occurs. +If parsing succeeds then \fB*px\fR is freed (if it is not \s-1NULL\s0) and then +set to the value of the newly decoded structure. As a result \fB*px\fR +\&\fBmust not\fR be allocated on the stack or an attempt will be made to +free an invalid pointer. +.PP \&\fIi2d_X509()\fR will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -352,7 +358,9 @@ always succeed. .IX Header "RETURN VALUES" \&\fId2i_X509()\fR, \fId2i_X509_bio()\fR and \fId2i_X509_fp()\fR return a valid \fBX509\fR structure or \fB\s-1NULL\s0\fR if an error occurs. The error code that can be obtained by -\&\fIERR_get_error\fR\|(3). +\&\fIERR_get_error\fR\|(3). If the \*(L"reuse\*(R" capability has been used +with a valid X509 structure being passed in via \fBpx\fR then the object is not +modified in the event of error. .PP \&\fIi2d_X509()\fR returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 17:40:54 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DD70594; Thu, 19 Mar 2015 17:40:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 456227CE; Thu, 19 Mar 2015 17:40:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JHeshs072360; Thu, 19 Mar 2015 17:40:54 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JHepOb072349; Thu, 19 Mar 2015 17:40:51 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503191740.t2JHepOb072349@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 19 Mar 2015 17:40:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280266 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/pkcs7 10/crypto/openssl/doc/crypto 10/crypto/openssl/ssl 10/secure/lib/libcrypto/man 8/crypto/openssl/crypto/... X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 17:40:54 -0000 Author: delphij Date: Thu Mar 19 17:40:43 2015 New Revision: 280266 URL: https://svnweb.freebsd.org/changeset/base/280266 Log: Fix multiple OpenSSL vulnerabilities. Security: FreeBSD-SA-15:06.openssl Security: CVE-2015-0209 Security: CVE-2015-0286 Security: CVE-2015-0287 Security: CVE-2015-0288 Security: CVE-2015-0289 Security: CVE-2015-0293 Modified: stable/10/crypto/openssl/crypto/asn1/a_type.c stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/10/crypto/openssl/doc/crypto/d2i_X509.pod stable/10/crypto/openssl/ssl/s2_lib.c stable/10/crypto/openssl/ssl/s2_srvr.c stable/10/secure/lib/libcrypto/man/d2i_X509.3 Changes in other areas also in this revision: Modified: stable/8/crypto/openssl/crypto/asn1/a_type.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/8/crypto/openssl/doc/crypto/d2i_X509.pod stable/8/crypto/openssl/ssl/s2_lib.c stable/8/crypto/openssl/ssl/s2_srvr.c stable/8/secure/lib/libcrypto/man/d2i_X509.3 stable/9/crypto/openssl/crypto/asn1/a_type.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/9/crypto/openssl/doc/crypto/d2i_X509.pod stable/9/crypto/openssl/ssl/s2_lib.c stable/9/crypto/openssl/ssl/s2_srvr.c stable/9/secure/lib/libcrypto/man/d2i_X509.3 Modified: stable/10/crypto/openssl/crypto/asn1/a_type.c ============================================================================== --- stable/10/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/crypto/asn1/a_type.c Thu Mar 19 17:40:43 2015 (r280266) @@ -124,6 +124,9 @@ int ASN1_TYPE_cmp(const ASN1_TYPE *a, co case V_ASN1_OBJECT: result = OBJ_cmp(a->value.object, b->value.object); break; + case V_ASN1_BOOLEAN: + result = a->value.boolean - b->value.boolean; + break; case V_ASN1_NULL: result = 0; /* They do not have content. */ break; Modified: stable/10/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/10/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/crypto/asn1/tasn_dec.c Thu Mar 19 17:40:43 2015 (r280266) @@ -127,16 +127,22 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) - { +{ ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; - if (!pval) - pval = &ptmpval; asn1_tlc_clear_nc(&c); - if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) - return *pval; - return NULL; + if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) + ptmpval = *pval; + if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { + if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { + if (*pval) + ASN1_item_free(*pval, it); + *pval = ptmpval; + } + return ptmpval; } + return NULL; +} int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) @@ -311,13 +317,20 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)) goto auxerr; - /* Allocate structure */ - if (!*pval && !ASN1_item_ex_new(pval, it)) - { + if (*pval) { + /* Free up and zero CHOICE value if initialised */ + i = asn1_get_choice_selector(pval, it); + if ((i >= 0) && (i < it->tcount)) { + tt = it->templates + i; + pchptr = asn1_get_field_ptr(pval, tt); + ASN1_template_free(pchptr, tt); + asn1_set_choice_selector(pval, -1, it); + } + } else if (!ASN1_item_ex_new(pval, it)) { ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR); goto err; - } + } /* CHOICE type, try each possibility in turn */ p = *in; for (i = 0, tt=it->templates; i < it->tcount; i++, tt++) @@ -407,6 +420,17 @@ int ASN1_item_ex_d2i(ASN1_VALUE **pval, if (asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it, NULL)) goto auxerr; + /* Free up and zero any ADB found */ + for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { + if (tt->flags & ASN1_TFLG_ADB_MASK) { + const ASN1_TEMPLATE *seqtt; + ASN1_VALUE **pseqval; + seqtt = asn1_do_adb(pval, tt, 1); + pseqval = asn1_get_field_ptr(pval, seqtt); + ASN1_template_free(pseqval, seqtt); + } + } + /* Get each field entry */ for (i = 0, tt = it->templates; i < it->tcount; i++, tt++) { Modified: stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c ============================================================================== --- stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c Thu Mar 19 17:40:43 2015 (r280266) @@ -272,6 +272,25 @@ BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio) PKCS7_RECIP_INFO *ri=NULL; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + /* + * The content field in the PKCS7 ContentInfo is optional, but that really + * only applies to inner content (precisely, detached signatures). + * + * When reading content, missing outer content is therefore treated as an + * error. + * + * When creating content, PKCS7_content_new() must be called before + * calling this method, so a NULL p7->d is always an error. + */ + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAINIT, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -433,6 +452,16 @@ BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKE unsigned char *ek = NULL, *tkey = NULL; int eklen = 0, tkeylen = 0; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_INVALID_NULL_POINTER); + return NULL; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATADECODE, PKCS7_R_NO_CONTENT); + return NULL; + } + i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -752,6 +781,16 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) STACK_OF(PKCS7_SIGNER_INFO) *si_sk=NULL; ASN1_OCTET_STRING *os=NULL; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_NO_CONTENT); + return 0; + } + EVP_MD_CTX_init(&ctx_tmp); i=OBJ_obj2nid(p7->type); p7->state=PKCS7_S_HEADER; @@ -796,6 +835,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) /* If detached data then the content is excluded */ if(PKCS7_type_is_data(p7->d.sign->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.sign->contents->d.data = NULL; } break; @@ -806,6 +846,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) if(PKCS7_type_is_data(p7->d.digest->contents) && p7->detached) { M_ASN1_OCTET_STRING_free(os); + os = NULL; p7->d.digest->contents->d.data = NULL; } break; @@ -866,8 +907,7 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) } } } - else if (i == NID_pkcs7_digest) - { + else if (i == NID_pkcs7_digest) { unsigned char md_data[EVP_MAX_MD_SIZE]; unsigned int md_len; if (!PKCS7_find_digest(&mdc, bio, @@ -878,24 +918,31 @@ int PKCS7_dataFinal(PKCS7 *p7, BIO *bio) M_ASN1_OCTET_STRING_set(p7->d.digest->digest, md_data, md_len); } - if (!PKCS7_is_detached(p7) && !(os->flags & ASN1_STRING_FLAG_NDEF)) - { - char *cont; - long contlen; - btmp=BIO_find_type(bio,BIO_TYPE_MEM); - if (btmp == NULL) - { - PKCS7err(PKCS7_F_PKCS7_DATAFINAL,PKCS7_R_UNABLE_TO_FIND_MEM_BIO); - goto err; + if (!PKCS7_is_detached(p7)) { + /* + * NOTE(emilia): I think we only reach os == NULL here because detached + * digested data support is broken. + */ + if (os == NULL) + goto err; + if (!(os->flags & ASN1_STRING_FLAG_NDEF)) { + char *cont; + long contlen; + btmp = BIO_find_type(bio, BIO_TYPE_MEM); + if (btmp == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAFINAL, PKCS7_R_UNABLE_TO_FIND_MEM_BIO); + goto err; } - contlen = BIO_get_mem_data(btmp, &cont); - /* Mark the BIO read only then we can use its copy of the data - * instead of making an extra copy. - */ - BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY); - BIO_set_mem_eof_return(btmp, 0); - ASN1_STRING_set0(os, (unsigned char *)cont, contlen); + contlen = BIO_get_mem_data(btmp, &cont); + /* + * Mark the BIO read only then we can use its copy of the data + * instead of making an extra copy. + */ + BIO_set_flags(btmp, BIO_FLAGS_MEM_RDONLY); + BIO_set_mem_eof_return(btmp, 0); + ASN1_STRING_set0(os, (unsigned char *)cont, contlen); } + } ret=1; err: EVP_MD_CTX_cleanup(&ctx_tmp); @@ -971,6 +1018,16 @@ int PKCS7_dataVerify(X509_STORE *cert_st STACK_OF(X509) *cert; X509 *x509; + if (p7 == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_INVALID_NULL_POINTER); + return 0; + } + + if (p7->d.ptr == NULL) { + PKCS7err(PKCS7_F_PKCS7_DATAVERIFY, PKCS7_R_NO_CONTENT); + return 0; + } + if (PKCS7_type_is_signed(p7)) { cert=p7->d.sign->cert; Modified: stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c ============================================================================== --- stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -71,6 +71,7 @@ long PKCS7_ctrl(PKCS7 *p7, int cmd, long switch (cmd) { + /* NOTE(emilia): does not support detached digested data. */ case PKCS7_OP_SET_DETACHED_SIGNATURE: if (nid == NID_pkcs7_signed) { @@ -459,6 +460,8 @@ int PKCS7_set_digest(PKCS7 *p7, const EV STACK_OF(PKCS7_SIGNER_INFO) *PKCS7_get_signer_info(PKCS7 *p7) { + if (p7 == NULL || p7->d.ptr == NULL) + return NULL; if (PKCS7_type_is_signed(p7)) { return(p7->d.sign->signer_info); Modified: stable/10/crypto/openssl/doc/crypto/d2i_X509.pod ============================================================================== --- stable/10/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/doc/crypto/d2i_X509.pod Thu Mar 19 17:40:43 2015 (r280266) @@ -199,6 +199,12 @@ B<*px> is valid is broken and some parts persist if they are not present in the new one. As a result the use of this "reuse" behaviour is strongly discouraged. +Current versions of OpenSSL will not modify B<*px> if an error occurs. +If parsing succeeds then B<*px> is freed (if it is not NULL) and then +set to the value of the newly decoded structure. As a result B<*px> +B be allocated on the stack or an attempt will be made to +free an invalid pointer. + i2d_X509() will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -210,7 +216,9 @@ always succeed. d2i_X509(), d2i_X509_bio() and d2i_X509_fp() return a valid B structure or B if an error occurs. The error code that can be obtained by -L. +L. If the "reuse" capability has been used +with a valid X509 structure being passed in via B then the object is not +modified in the event of error. i2d_X509() returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by Modified: stable/10/crypto/openssl/ssl/s2_lib.c ============================================================================== --- stable/10/crypto/openssl/ssl/s2_lib.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/ssl/s2_lib.c Thu Mar 19 17:40:43 2015 (r280266) @@ -488,7 +488,7 @@ int ssl2_generate_key_material(SSL *s) OPENSSL_assert(s->session->master_key_length >= 0 && s->session->master_key_length - < (int)sizeof(s->session->master_key)); + <= (int)sizeof(s->session->master_key)); EVP_DigestUpdate(&ctx,s->session->master_key,s->session->master_key_length); EVP_DigestUpdate(&ctx,&c,1); c++; Modified: stable/10/crypto/openssl/ssl/s2_srvr.c ============================================================================== --- stable/10/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/crypto/openssl/ssl/s2_srvr.c Thu Mar 19 17:40:43 2015 (r280266) @@ -454,9 +454,6 @@ static int get_client_master_key(SSL *s) SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_NO_PRIVATEKEY); return(-1); } - i=ssl_rsa_private_decrypt(s->cert,s->s2->tmp.enc, - &(p[s->s2->tmp.clear]),&(p[s->s2->tmp.clear]), - (s->s2->ssl2_rollback)?RSA_SSLV23_PADDING:RSA_PKCS1_PADDING); is_export=SSL_C_IS_EXPORT(s->session->cipher); @@ -475,23 +472,61 @@ static int get_client_master_key(SSL *s) else ek=5; + /* + * The format of the CLIENT-MASTER-KEY message is + * 1 byte message type + * 3 bytes cipher + * 2-byte clear key length (stored in s->s2->tmp.clear) + * 2-byte encrypted key length (stored in s->s2->tmp.enc) + * 2-byte key args length (IV etc) + * clear key + * encrypted key + * key args + * + * If the cipher is an export cipher, then the encrypted key bytes + * are a fixed portion of the total key (5 or 8 bytes). The size of + * this portion is in |ek|. If the cipher is not an export cipher, + * then the entire key material is encrypted (i.e., clear key length + * must be zero). + */ + if ((!is_export && s->s2->tmp.clear != 0) || + (is_export && s->s2->tmp.clear + ek != EVP_CIPHER_key_length(c))) { + ssl2_return_error(s, SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_BAD_LENGTH); + return -1; + } + /* + * The encrypted blob must decrypt to the encrypted portion of the key. + * Decryption can't be expanding, so if we don't have enough encrypted + * bytes to fit the key in the buffer, stop now. + */ + if ((is_export && s->s2->tmp.enc < ek) || + (!is_export && s->s2->tmp.enc < EVP_CIPHER_key_length(c))) { + ssl2_return_error(s,SSL2_PE_UNDEFINED_ERROR); + SSLerr(SSL_F_GET_CLIENT_MASTER_KEY,SSL_R_LENGTH_TOO_SHORT); + return -1; + } + + i = ssl_rsa_private_decrypt(s->cert, s->s2->tmp.enc, + &(p[s->s2->tmp.clear]), + &(p[s->s2->tmp.clear]), + (s->s2->ssl2_rollback) ? RSA_SSLV23_PADDING : + RSA_PKCS1_PADDING); + /* bad decrypt */ #if 1 /* If a bad decrypt, continue with protocol but with a * random master secret (Bleichenbacher attack) */ - if ((i < 0) || - ((!is_export && (i != EVP_CIPHER_key_length(c))) - || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i != - (unsigned int)EVP_CIPHER_key_length(c)))))) - { + if ((i < 0) || ((!is_export && i != EVP_CIPHER_key_length(c)) + || (is_export && i != ek))) { ERR_clear_error(); if (is_export) i=ek; else i=EVP_CIPHER_key_length(c); - if (RAND_pseudo_bytes(p,i) <= 0) + if (RAND_pseudo_bytes(&p[s->s2->tmp.clear], i) <= 0) return 0; - } + } #else if (i < 0) { @@ -513,7 +548,8 @@ static int get_client_master_key(SSL *s) } #endif - if (is_export) i+=s->s2->tmp.clear; + if (is_export) + i = EVP_CIPHER_key_length(c); if (i > SSL_MAX_MASTER_KEY_LENGTH) { Modified: stable/10/secure/lib/libcrypto/man/d2i_X509.3 ============================================================================== --- stable/10/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 16:14:27 2015 (r280265) +++ stable/10/secure/lib/libcrypto/man/d2i_X509.3 Thu Mar 19 17:40:43 2015 (r280266) @@ -342,6 +342,12 @@ In some versions of OpenSSL the \*(L"reu persist if they are not present in the new one. As a result the use of this \*(L"reuse\*(R" behaviour is strongly discouraged. .PP +Current versions of OpenSSL will not modify \fB*px\fR if an error occurs. +If parsing succeeds then \fB*px\fR is freed (if it is not \s-1NULL\s0) and then +set to the value of the newly decoded structure. As a result \fB*px\fR +\&\fBmust not\fR be allocated on the stack or an attempt will be made to +free an invalid pointer. +.PP \&\fIi2d_X509()\fR will not return an error in many versions of OpenSSL, if mandatory fields are not initialized due to a programming error then the encoded structure may contain invalid data or omit the @@ -352,7 +358,9 @@ always succeed. .IX Header "RETURN VALUES" \&\fId2i_X509()\fR, \fId2i_X509_bio()\fR and \fId2i_X509_fp()\fR return a valid \fBX509\fR structure or \fB\s-1NULL\s0\fR if an error occurs. The error code that can be obtained by -\&\fIERR_get_error\fR\|(3). +\&\fIERR_get_error\fR\|(3). If the \*(L"reuse\*(R" capability has been used +with a valid X509 structure being passed in via \fBpx\fR then the object is not +modified in the event of error. .PP \&\fIi2d_X509()\fR returns the number of bytes successfully encoded or a negative value if an error occurs. The error code can be obtained by From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 23:06:46 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BB33BCA; Thu, 19 Mar 2015 23:06:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35E3F876; Thu, 19 Mar 2015 23:06:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JN6k7t034246; Thu, 19 Mar 2015 23:06:46 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JN6kL4034245; Thu, 19 Mar 2015 23:06:46 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503192306.t2JN6kL4034245@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Thu, 19 Mar 2015 23:06:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280269 - stable/9/share/man/man9 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 23:06:46 -0000 Author: markj Date: Thu Mar 19 23:06:45 2015 New Revision: 280269 URL: https://svnweb.freebsd.org/changeset/base/280269 Log: MFC r279896: Document m_collapse(). Modified: stable/9/share/man/man9/mbuf.9 Directory Properties: stable/9/share/man/man9/ (props changed) Modified: stable/9/share/man/man9/mbuf.9 ============================================================================== --- stable/9/share/man/man9/mbuf.9 Thu Mar 19 17:42:38 2015 (r280268) +++ stable/9/share/man/man9/mbuf.9 Thu Mar 19 23:06:45 2015 (r280269) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd November 13, 2012 +.Dd March 11, 2015 .Dt MBUF 9 .Os .\" @@ -136,6 +136,8 @@ .Ft struct mbuf * .Fn m_defrag "struct mbuf *m0" "int how" .Ft struct mbuf * +.Fn m_collapse "struct mbuf *m0" "int how" "int maxfrags" +.Ft struct mbuf * .Fn m_unshare "struct mbuf *m0" "int how" .\" .Sh DESCRIPTION @@ -975,6 +977,20 @@ depending on the caller's preference. This function is especially useful in network drivers, where certain long mbuf chains must be shortened before being added to TX descriptor lists. +.It Fn m_collapse m0 how maxfrags +Defragment an mbuf chain, returning a chain of at most +.Fa maxfrags +mbufs and clusters. +If allocation fails or the chain cannot be collapsed as requested, +.Dv NULL +will be returned, with the original chain possibly modified. +As with +.Fn m_defrag , +.Fa how +should be one of +.Dv M_WAITOK +or +.Dv M_NOWAIT . .It Fn m_unshare m0 how Create a version of the specified mbuf chain whose contents can be safely modified without affecting other users. From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 23:07:05 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2E52CFF; Thu, 19 Mar 2015 23:07:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DB7C885; Thu, 19 Mar 2015 23:07:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JN75am034340; Thu, 19 Mar 2015 23:07:05 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JN75Ce034339; Thu, 19 Mar 2015 23:07:05 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503192307.t2JN75Ce034339@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Thu, 19 Mar 2015 23:07:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280270 - stable/10/share/man/man9 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 23:07:05 -0000 Author: markj Date: Thu Mar 19 23:07:04 2015 New Revision: 280270 URL: https://svnweb.freebsd.org/changeset/base/280270 Log: MFC r279896: Document m_collapse(). Modified: stable/10/share/man/man9/mbuf.9 Directory Properties: stable/10/ (props changed) Modified: stable/10/share/man/man9/mbuf.9 ============================================================================== --- stable/10/share/man/man9/mbuf.9 Thu Mar 19 23:06:45 2015 (r280269) +++ stable/10/share/man/man9/mbuf.9 Thu Mar 19 23:07:04 2015 (r280270) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd November 13, 2012 +.Dd March 11, 2015 .Dt MBUF 9 .Os .\" @@ -136,6 +136,8 @@ .Ft struct mbuf * .Fn m_defrag "struct mbuf *m0" "int how" .Ft struct mbuf * +.Fn m_collapse "struct mbuf *m0" "int how" "int maxfrags" +.Ft struct mbuf * .Fn m_unshare "struct mbuf *m0" "int how" .\" .Sh DESCRIPTION @@ -974,6 +976,20 @@ depending on the caller's preference. This function is especially useful in network drivers, where certain long mbuf chains must be shortened before being added to TX descriptor lists. +.It Fn m_collapse m0 how maxfrags +Defragment an mbuf chain, returning a chain of at most +.Fa maxfrags +mbufs and clusters. +If allocation fails or the chain cannot be collapsed as requested, +.Dv NULL +will be returned, with the original chain possibly modified. +As with +.Fn m_defrag , +.Fa how +should be one of +.Dv M_WAITOK +or +.Dv M_NOWAIT . .It Fn m_unshare m0 how Create a version of the specified mbuf chain whose contents can be safely modified without affecting other users. From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 23:12:51 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6737AFA2; Thu, 19 Mar 2015 23:12:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50F9595D; Thu, 19 Mar 2015 23:12:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JNCpkO038707; Thu, 19 Mar 2015 23:12:51 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JNCop5038701; Thu, 19 Mar 2015 23:12:50 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503192312.t2JNCop5038701@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Thu, 19 Mar 2015 23:12:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280271 - in stable/9/sys: amd64/amd64 i386/i386 X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 23:12:51 -0000 Author: markj Date: Thu Mar 19 23:12:49 2015 New Revision: 280271 URL: https://svnweb.freebsd.org/changeset/base/280271 Log: MFC r278655: Add support for decoding multibyte NOPs. Modified: stable/9/sys/amd64/amd64/db_disasm.c stable/9/sys/i386/i386/db_disasm.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/amd64/amd64/db_disasm.c ============================================================================== --- stable/9/sys/amd64/amd64/db_disasm.c Thu Mar 19 23:07:04 2015 (r280270) +++ stable/9/sys/amd64/amd64/db_disasm.c Thu Mar 19 23:12:49 2015 (r280271) @@ -249,6 +249,26 @@ static const struct inst db_inst_0f0x[] /*0f*/ { "", FALSE, NONE, 0, 0 }, }; +static const struct inst db_inst_0f1x[] = { +/*10*/ { "", FALSE, NONE, 0, 0 }, +/*11*/ { "", FALSE, NONE, 0, 0 }, +/*12*/ { "", FALSE, NONE, 0, 0 }, +/*13*/ { "", FALSE, NONE, 0, 0 }, +/*14*/ { "", FALSE, NONE, 0, 0 }, +/*15*/ { "", FALSE, NONE, 0, 0 }, +/*16*/ { "", FALSE, NONE, 0, 0 }, +/*17*/ { "", FALSE, NONE, 0, 0 }, + +/*18*/ { "", FALSE, NONE, 0, 0 }, +/*19*/ { "", FALSE, NONE, 0, 0 }, +/*1a*/ { "", FALSE, NONE, 0, 0 }, +/*1b*/ { "", FALSE, NONE, 0, 0 }, +/*1c*/ { "", FALSE, NONE, 0, 0 }, +/*1d*/ { "", FALSE, NONE, 0, 0 }, +/*1e*/ { "", FALSE, NONE, 0, 0 }, +/*1f*/ { "nopl", TRUE, SDEP, 0, "nopw" }, +}; + static const struct inst db_inst_0f2x[] = { /*20*/ { "mov", TRUE, LONG, op2(CR,El), 0 }, /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 }, @@ -430,7 +450,7 @@ static const struct inst db_inst_0fcx[] static const struct inst * const db_inst_0f[] = { db_inst_0f0x, - 0, + db_inst_0f1x, db_inst_0f2x, db_inst_0f3x, db_inst_0f4x, Modified: stable/9/sys/i386/i386/db_disasm.c ============================================================================== --- stable/9/sys/i386/i386/db_disasm.c Thu Mar 19 23:07:04 2015 (r280270) +++ stable/9/sys/i386/i386/db_disasm.c Thu Mar 19 23:12:49 2015 (r280271) @@ -195,6 +195,26 @@ static const struct inst db_inst_0f0x[] /*0f*/ { "", FALSE, NONE, 0, 0 }, }; +static const struct inst db_inst_0f1x[] = { +/*10*/ { "", FALSE, NONE, 0, 0 }, +/*11*/ { "", FALSE, NONE, 0, 0 }, +/*12*/ { "", FALSE, NONE, 0, 0 }, +/*13*/ { "", FALSE, NONE, 0, 0 }, +/*14*/ { "", FALSE, NONE, 0, 0 }, +/*15*/ { "", FALSE, NONE, 0, 0 }, +/*16*/ { "", FALSE, NONE, 0, 0 }, +/*17*/ { "", FALSE, NONE, 0, 0 }, + +/*18*/ { "", FALSE, NONE, 0, 0 }, +/*19*/ { "", FALSE, NONE, 0, 0 }, +/*1a*/ { "", FALSE, NONE, 0, 0 }, +/*1b*/ { "", FALSE, NONE, 0, 0 }, +/*1c*/ { "", FALSE, NONE, 0, 0 }, +/*1d*/ { "", FALSE, NONE, 0, 0 }, +/*1e*/ { "", FALSE, NONE, 0, 0 }, +/*1f*/ { "nopl", TRUE, SDEP, 0, "nopw" }, +}; + static const struct inst db_inst_0f2x[] = { /*20*/ { "mov", TRUE, LONG, op2(CR,El), 0 }, /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 }, @@ -356,7 +376,7 @@ static const struct inst db_inst_0fcx[] static const struct inst * const db_inst_0f[] = { db_inst_0f0x, - 0, + db_inst_0f1x, db_inst_0f2x, db_inst_0f3x, db_inst_0f4x, From owner-svn-src-stable@FreeBSD.ORG Thu Mar 19 23:13:21 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECD8923C; Thu, 19 Mar 2015 23:13:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7039969; Thu, 19 Mar 2015 23:13:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2JNDKSR038838; Thu, 19 Mar 2015 23:13:20 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2JNDKWM038836; Thu, 19 Mar 2015 23:13:20 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201503192313.t2JNDKWM038836@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Thu, 19 Mar 2015 23:13:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280272 - in stable/10/sys: amd64/amd64 i386/i386 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Mar 2015 23:13:21 -0000 Author: markj Date: Thu Mar 19 23:13:19 2015 New Revision: 280272 URL: https://svnweb.freebsd.org/changeset/base/280272 Log: MFC r278655: Add support for decoding multibyte NOPs. Modified: stable/10/sys/amd64/amd64/db_disasm.c stable/10/sys/i386/i386/db_disasm.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/amd64/amd64/db_disasm.c ============================================================================== --- stable/10/sys/amd64/amd64/db_disasm.c Thu Mar 19 23:12:49 2015 (r280271) +++ stable/10/sys/amd64/amd64/db_disasm.c Thu Mar 19 23:13:19 2015 (r280272) @@ -249,6 +249,26 @@ static const struct inst db_inst_0f0x[] /*0f*/ { "", FALSE, NONE, 0, 0 }, }; +static const struct inst db_inst_0f1x[] = { +/*10*/ { "", FALSE, NONE, 0, 0 }, +/*11*/ { "", FALSE, NONE, 0, 0 }, +/*12*/ { "", FALSE, NONE, 0, 0 }, +/*13*/ { "", FALSE, NONE, 0, 0 }, +/*14*/ { "", FALSE, NONE, 0, 0 }, +/*15*/ { "", FALSE, NONE, 0, 0 }, +/*16*/ { "", FALSE, NONE, 0, 0 }, +/*17*/ { "", FALSE, NONE, 0, 0 }, + +/*18*/ { "", FALSE, NONE, 0, 0 }, +/*19*/ { "", FALSE, NONE, 0, 0 }, +/*1a*/ { "", FALSE, NONE, 0, 0 }, +/*1b*/ { "", FALSE, NONE, 0, 0 }, +/*1c*/ { "", FALSE, NONE, 0, 0 }, +/*1d*/ { "", FALSE, NONE, 0, 0 }, +/*1e*/ { "", FALSE, NONE, 0, 0 }, +/*1f*/ { "nopl", TRUE, SDEP, 0, "nopw" }, +}; + static const struct inst db_inst_0f2x[] = { /*20*/ { "mov", TRUE, LONG, op2(CR,El), 0 }, /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 }, @@ -430,7 +450,7 @@ static const struct inst db_inst_0fcx[] static const struct inst * const db_inst_0f[] = { db_inst_0f0x, - 0, + db_inst_0f1x, db_inst_0f2x, db_inst_0f3x, db_inst_0f4x, Modified: stable/10/sys/i386/i386/db_disasm.c ============================================================================== --- stable/10/sys/i386/i386/db_disasm.c Thu Mar 19 23:12:49 2015 (r280271) +++ stable/10/sys/i386/i386/db_disasm.c Thu Mar 19 23:13:19 2015 (r280272) @@ -195,6 +195,26 @@ static const struct inst db_inst_0f0x[] /*0f*/ { "", FALSE, NONE, 0, 0 }, }; +static const struct inst db_inst_0f1x[] = { +/*10*/ { "", FALSE, NONE, 0, 0 }, +/*11*/ { "", FALSE, NONE, 0, 0 }, +/*12*/ { "", FALSE, NONE, 0, 0 }, +/*13*/ { "", FALSE, NONE, 0, 0 }, +/*14*/ { "", FALSE, NONE, 0, 0 }, +/*15*/ { "", FALSE, NONE, 0, 0 }, +/*16*/ { "", FALSE, NONE, 0, 0 }, +/*17*/ { "", FALSE, NONE, 0, 0 }, + +/*18*/ { "", FALSE, NONE, 0, 0 }, +/*19*/ { "", FALSE, NONE, 0, 0 }, +/*1a*/ { "", FALSE, NONE, 0, 0 }, +/*1b*/ { "", FALSE, NONE, 0, 0 }, +/*1c*/ { "", FALSE, NONE, 0, 0 }, +/*1d*/ { "", FALSE, NONE, 0, 0 }, +/*1e*/ { "", FALSE, NONE, 0, 0 }, +/*1f*/ { "nopl", TRUE, SDEP, 0, "nopw" }, +}; + static const struct inst db_inst_0f2x[] = { /*20*/ { "mov", TRUE, LONG, op2(CR,El), 0 }, /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 }, @@ -356,7 +376,7 @@ static const struct inst db_inst_0fcx[] static const struct inst * const db_inst_0f[] = { db_inst_0f0x, - 0, + db_inst_0f1x, db_inst_0f2x, db_inst_0f3x, db_inst_0f4x, From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 07:11:22 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48AA1F80; Fri, 20 Mar 2015 07:11:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30A61D01; Fri, 20 Mar 2015 07:11:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K7BMvL061823; Fri, 20 Mar 2015 07:11:22 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K7BLd4061820; Fri, 20 Mar 2015 07:11:21 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503200711.t2K7BLd4061820@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 20 Mar 2015 07:11:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280274 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/ec 10/crypto/openssl/crypto/x509 8/crypto/openssl/crypto/asn1 8/crypto/openssl/crypto/ec 8/crypto/openssl/cry... X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 07:11:22 -0000 Author: delphij Date: Fri Mar 20 07:11:20 2015 New Revision: 280274 URL: https://svnweb.freebsd.org/changeset/base/280274 Log: Fix issues with original SA-15:06.openssl commit: - Revert a portion of ASN1 change per suggested by OpenBSD and OpenSSL developers. The change was removed from the formal OpenSSL release and does not solve security issue. - Properly fix CVE-2015-0209 and CVE-2015-0288. Pointy hat to: delphij Modified: stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/ec/ec_asn1.c stable/9/crypto/openssl/crypto/x509/x509_req.c Changes in other areas also in this revision: Modified: stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/ec/ec_asn1.c stable/10/crypto/openssl/crypto/x509/x509_req.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/ec/ec_asn1.c stable/8/crypto/openssl/crypto/x509/x509_req.c Modified: stable/9/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/9/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/9/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 07:11:20 2015 (r280274) @@ -125,23 +125,16 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) -{ + { ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; + if (!pval) + pval = &ptmpval; c.valid = 0; - if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) - ptmpval = *pval; - - if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { - if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { - if (*pval) - ASN1_item_free(*pval, it); - *pval = ptmpval; - } - return ptmpval; - } + if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) + return *pval; return NULL; -} + } int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) Modified: stable/9/crypto/openssl/crypto/ec/ec_asn1.c ============================================================================== --- stable/9/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/9/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 07:11:20 2015 (r280274) @@ -1126,8 +1126,6 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con ERR_R_MALLOC_FAILURE); goto err; } - if (a) - *a = ret; } else ret = *a; @@ -1192,11 +1190,13 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con } } + if (a) + *a = ret; ok = 1; err: if (!ok) { - if (ret) + if (ret && (a == NULL || *a != ret)) EC_KEY_free(ret); ret = NULL; } Modified: stable/9/crypto/openssl/crypto/x509/x509_req.c ============================================================================== --- stable/9/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/9/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 07:11:20 2015 (r280274) @@ -91,6 +91,8 @@ X509_REQ *X509_to_X509_REQ(X509 *x, EVP_ goto err; pktmp = X509_get_pubkey(x); + if (pktmp == NULL) + goto err; i=X509_REQ_set_pubkey(ret,pktmp); EVP_PKEY_free(pktmp); if (!i) goto err; From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 07:11:23 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0F5AF82; Fri, 20 Mar 2015 07:11:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99855D02; Fri, 20 Mar 2015 07:11:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K7BNeL061832; Fri, 20 Mar 2015 07:11:23 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K7BMvD061828; Fri, 20 Mar 2015 07:11:22 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503200711.t2K7BMvD061828@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 20 Mar 2015 07:11:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r280274 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/ec 10/crypto/openssl/crypto/x509 8/crypto/openssl/crypto/asn1 8/crypto/openssl/crypto/ec 8/crypto/openssl/cry... X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 07:11:23 -0000 Author: delphij Date: Fri Mar 20 07:11:20 2015 New Revision: 280274 URL: https://svnweb.freebsd.org/changeset/base/280274 Log: Fix issues with original SA-15:06.openssl commit: - Revert a portion of ASN1 change per suggested by OpenBSD and OpenSSL developers. The change was removed from the formal OpenSSL release and does not solve security issue. - Properly fix CVE-2015-0209 and CVE-2015-0288. Pointy hat to: delphij Modified: stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/ec/ec_asn1.c stable/8/crypto/openssl/crypto/x509/x509_req.c Changes in other areas also in this revision: Modified: stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/ec/ec_asn1.c stable/10/crypto/openssl/crypto/x509/x509_req.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/ec/ec_asn1.c stable/9/crypto/openssl/crypto/x509/x509_req.c Modified: stable/8/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/8/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/8/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 07:11:20 2015 (r280274) @@ -125,23 +125,16 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) -{ + { ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; + if (!pval) + pval = &ptmpval; c.valid = 0; - if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) - ptmpval = *pval; - - if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { - if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { - if (*pval) - ASN1_item_free(*pval, it); - *pval = ptmpval; - } - return ptmpval; - } + if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) + return *pval; return NULL; -} + } int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) Modified: stable/8/crypto/openssl/crypto/ec/ec_asn1.c ============================================================================== --- stable/8/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/8/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 07:11:20 2015 (r280274) @@ -1126,8 +1126,6 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con ERR_R_MALLOC_FAILURE); goto err; } - if (a) - *a = ret; } else ret = *a; @@ -1192,11 +1190,13 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con } } + if (a) + *a = ret; ok = 1; err: if (!ok) { - if (ret) + if (ret && (a == NULL || *a != ret)) EC_KEY_free(ret); ret = NULL; } Modified: stable/8/crypto/openssl/crypto/x509/x509_req.c ============================================================================== --- stable/8/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/8/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 07:11:20 2015 (r280274) @@ -91,6 +91,8 @@ X509_REQ *X509_to_X509_REQ(X509 *x, EVP_ goto err; pktmp = X509_get_pubkey(x); + if (pktmp == NULL) + goto err; i=X509_REQ_set_pubkey(ret,pktmp); EVP_PKEY_free(pktmp); if (!i) goto err; From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 07:11:25 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C71212B; Fri, 20 Mar 2015 07:11:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35390D03; Fri, 20 Mar 2015 07:11:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K7BPtB061845; Fri, 20 Mar 2015 07:11:25 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K7BOrL061840; Fri, 20 Mar 2015 07:11:24 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201503200711.t2K7BOrL061840@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 20 Mar 2015 07:11:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280274 - in stable: 10/crypto/openssl/crypto/asn1 10/crypto/openssl/crypto/ec 10/crypto/openssl/crypto/x509 8/crypto/openssl/crypto/asn1 8/crypto/openssl/crypto/ec 8/crypto/openssl/cry... X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 07:11:25 -0000 Author: delphij Date: Fri Mar 20 07:11:20 2015 New Revision: 280274 URL: https://svnweb.freebsd.org/changeset/base/280274 Log: Fix issues with original SA-15:06.openssl commit: - Revert a portion of ASN1 change per suggested by OpenBSD and OpenSSL developers. The change was removed from the formal OpenSSL release and does not solve security issue. - Properly fix CVE-2015-0209 and CVE-2015-0288. Pointy hat to: delphij Modified: stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/ec/ec_asn1.c stable/10/crypto/openssl/crypto/x509/x509_req.c Changes in other areas also in this revision: Modified: stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/ec/ec_asn1.c stable/8/crypto/openssl/crypto/x509/x509_req.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/ec/ec_asn1.c stable/9/crypto/openssl/crypto/x509/x509_req.c Modified: stable/10/crypto/openssl/crypto/asn1/tasn_dec.c ============================================================================== --- stable/10/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/10/crypto/openssl/crypto/asn1/tasn_dec.c Fri Mar 20 07:11:20 2015 (r280274) @@ -127,22 +127,16 @@ unsigned long ASN1_tag2bit(int tag) ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it) -{ + { ASN1_TLC c; ASN1_VALUE *ptmpval = NULL; + if (!pval) + pval = &ptmpval; asn1_tlc_clear_nc(&c); - if (pval && *pval && it->itype == ASN1_ITYPE_PRIMITIVE) - ptmpval = *pval; - if (ASN1_item_ex_d2i(&ptmpval, in, len, it, -1, 0, 0, &c) > 0) { - if (pval && it->itype != ASN1_ITYPE_PRIMITIVE) { - if (*pval) - ASN1_item_free(*pval, it); - *pval = ptmpval; - } - return ptmpval; - } + if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) + return *pval; return NULL; -} + } int ASN1_template_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_TEMPLATE *tt) Modified: stable/10/crypto/openssl/crypto/ec/ec_asn1.c ============================================================================== --- stable/10/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/10/crypto/openssl/crypto/ec/ec_asn1.c Fri Mar 20 07:11:20 2015 (r280274) @@ -1142,8 +1142,6 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con ERR_R_MALLOC_FAILURE); goto err; } - if (a) - *a = ret; } else ret = *a; @@ -1225,11 +1223,13 @@ EC_KEY *d2i_ECPrivateKey(EC_KEY **a, con ret->enc_flag |= EC_PKEY_NO_PUBKEY; } + if (a) + *a = ret; ok = 1; err: if (!ok) { - if (ret) + if (ret && (a == NULL || *a != ret)) EC_KEY_free(ret); ret = NULL; } Modified: stable/10/crypto/openssl/crypto/x509/x509_req.c ============================================================================== --- stable/10/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 01:07:48 2015 (r280273) +++ stable/10/crypto/openssl/crypto/x509/x509_req.c Fri Mar 20 07:11:20 2015 (r280274) @@ -92,6 +92,8 @@ X509_REQ *X509_to_X509_REQ(X509 *x, EVP_ goto err; pktmp = X509_get_pubkey(x); + if (pktmp == NULL) + goto err; i=X509_REQ_set_pubkey(ret,pktmp); EVP_PKEY_free(pktmp); if (!i) goto err; From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 08:28:14 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E484C4F; Fri, 20 Mar 2015 08:28:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 686DE901; Fri, 20 Mar 2015 08:28:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K8SDU6096128; Fri, 20 Mar 2015 08:28:13 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K8SCCH096124; Fri, 20 Mar 2015 08:28:12 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503200828.t2K8SCCH096124@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Fri, 20 Mar 2015 08:28:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280276 - in stable/10/sys/dev: ahci ata mvs siis X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 08:28:14 -0000 Author: mav Date: Fri Mar 20 08:28:11 2015 New Revision: 280276 URL: https://svnweb.freebsd.org/changeset/base/280276 Log: MFC r279963: Fix SATA Gen3 speed constants. Modified: stable/10/sys/dev/ahci/ahci.h stable/10/sys/dev/ata/ata-all.h stable/10/sys/dev/mvs/mvs.h stable/10/sys/dev/siis/siis.h Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/dev/ahci/ahci.h ============================================================================== --- stable/10/sys/dev/ahci/ahci.h Fri Mar 20 07:12:02 2015 (r280275) +++ stable/10/sys/dev/ahci/ahci.h Fri Mar 20 08:28:11 2015 (r280276) @@ -93,7 +93,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 -#define ATA_SS_SPD_GEN3 0x00000040 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -131,7 +131,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 Modified: stable/10/sys/dev/ata/ata-all.h ============================================================================== --- stable/10/sys/dev/ata/ata-all.h Fri Mar 20 07:12:02 2015 (r280275) +++ stable/10/sys/dev/ata/ata-all.h Fri Mar 20 08:28:11 2015 (r280276) @@ -105,6 +105,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -140,7 +141,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 Modified: stable/10/sys/dev/mvs/mvs.h ============================================================================== --- stable/10/sys/dev/mvs/mvs.h Fri Mar 20 07:12:02 2015 (r280275) +++ stable/10/sys/dev/mvs/mvs.h Fri Mar 20 08:28:11 2015 (r280276) @@ -263,7 +263,7 @@ #define SATA_SS_SPD_NO_SPEED 0x00000000 #define SATA_SS_SPD_GEN1 0x00000010 #define SATA_SS_SPD_GEN2 0x00000020 -#define SATA_SS_SPD_GEN3 0x00000040 +#define SATA_SS_SPD_GEN3 0x00000030 #define SATA_SS_IPM_MASK 0x00000f00 #define SATA_SS_IPM_NO_DEVICE 0x00000000 @@ -298,7 +298,7 @@ #define SATA_SC_SPD_NO_SPEED 0x00000000 #define SATA_SC_SPD_SPEED_GEN1 0x00000010 #define SATA_SC_SPD_SPEED_GEN2 0x00000020 -#define SATA_SC_SPD_SPEED_GEN3 0x00000040 +#define SATA_SC_SPD_SPEED_GEN3 0x00000030 #define SATA_SC_IPM_MASK 0x00000f00 #define SATA_SC_IPM_NONE 0x00000000 Modified: stable/10/sys/dev/siis/siis.h ============================================================================== --- stable/10/sys/dev/siis/siis.h Fri Mar 20 07:12:02 2015 (r280275) +++ stable/10/sys/dev/siis/siis.h Fri Mar 20 08:28:11 2015 (r280276) @@ -92,7 +92,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 -#define ATA_SS_SPD_GEN3 0x00000040 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -128,7 +128,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 08:29:10 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42EC8D8E; Fri, 20 Mar 2015 08:29:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D6E390D; Fri, 20 Mar 2015 08:29:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K8TA4O096324; Fri, 20 Mar 2015 08:29:10 GMT (envelope-from mav@FreeBSD.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K8T86W096320; Fri, 20 Mar 2015 08:29:08 GMT (envelope-from mav@FreeBSD.org) Message-Id: <201503200829.t2K8T86W096320@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mav set sender to mav@FreeBSD.org using -f From: Alexander Motin Date: Fri, 20 Mar 2015 08:29:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280277 - in stable/9/sys/dev: ahci ata mvs siis X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 08:29:10 -0000 Author: mav Date: Fri Mar 20 08:29:07 2015 New Revision: 280277 URL: https://svnweb.freebsd.org/changeset/base/280277 Log: MFC r279963: Fix SATA Gen3 speed constants. Modified: stable/9/sys/dev/ahci/ahci.h stable/9/sys/dev/ata/ata-all.h stable/9/sys/dev/mvs/mvs.h stable/9/sys/dev/siis/siis.h Directory Properties: stable/9/ (props changed) stable/9/sys/ (props changed) stable/9/sys/dev/ (props changed) Modified: stable/9/sys/dev/ahci/ahci.h ============================================================================== --- stable/9/sys/dev/ahci/ahci.h Fri Mar 20 08:28:11 2015 (r280276) +++ stable/9/sys/dev/ahci/ahci.h Fri Mar 20 08:29:07 2015 (r280277) @@ -93,7 +93,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 -#define ATA_SS_SPD_GEN3 0x00000040 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -131,7 +131,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 Modified: stable/9/sys/dev/ata/ata-all.h ============================================================================== --- stable/9/sys/dev/ata/ata-all.h Fri Mar 20 08:28:11 2015 (r280276) +++ stable/9/sys/dev/ata/ata-all.h Fri Mar 20 08:29:07 2015 (r280277) @@ -107,6 +107,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -142,7 +143,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 Modified: stable/9/sys/dev/mvs/mvs.h ============================================================================== --- stable/9/sys/dev/mvs/mvs.h Fri Mar 20 08:28:11 2015 (r280276) +++ stable/9/sys/dev/mvs/mvs.h Fri Mar 20 08:29:07 2015 (r280277) @@ -263,7 +263,7 @@ #define SATA_SS_SPD_NO_SPEED 0x00000000 #define SATA_SS_SPD_GEN1 0x00000010 #define SATA_SS_SPD_GEN2 0x00000020 -#define SATA_SS_SPD_GEN3 0x00000040 +#define SATA_SS_SPD_GEN3 0x00000030 #define SATA_SS_IPM_MASK 0x00000f00 #define SATA_SS_IPM_NO_DEVICE 0x00000000 @@ -298,7 +298,7 @@ #define SATA_SC_SPD_NO_SPEED 0x00000000 #define SATA_SC_SPD_SPEED_GEN1 0x00000010 #define SATA_SC_SPD_SPEED_GEN2 0x00000020 -#define SATA_SC_SPD_SPEED_GEN3 0x00000040 +#define SATA_SC_SPD_SPEED_GEN3 0x00000030 #define SATA_SC_IPM_MASK 0x00000f00 #define SATA_SC_IPM_NONE 0x00000000 Modified: stable/9/sys/dev/siis/siis.h ============================================================================== --- stable/9/sys/dev/siis/siis.h Fri Mar 20 08:28:11 2015 (r280276) +++ stable/9/sys/dev/siis/siis.h Fri Mar 20 08:29:07 2015 (r280277) @@ -92,7 +92,7 @@ #define ATA_SS_SPD_NO_SPEED 0x00000000 #define ATA_SS_SPD_GEN1 0x00000010 #define ATA_SS_SPD_GEN2 0x00000020 -#define ATA_SS_SPD_GEN3 0x00000040 +#define ATA_SS_SPD_GEN3 0x00000030 #define ATA_SS_IPM_MASK 0x00000f00 #define ATA_SS_IPM_NO_DEVICE 0x00000000 @@ -128,7 +128,7 @@ #define ATA_SC_SPD_NO_SPEED 0x00000000 #define ATA_SC_SPD_SPEED_GEN1 0x00000010 #define ATA_SC_SPD_SPEED_GEN2 0x00000020 -#define ATA_SC_SPD_SPEED_GEN3 0x00000040 +#define ATA_SC_SPD_SPEED_GEN3 0x00000030 #define ATA_SC_IPM_MASK 0x00000f00 #define ATA_SC_IPM_NONE 0x00000000 From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 21:54:50 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 757D36F8; Fri, 20 Mar 2015 21:54:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5F814E; Fri, 20 Mar 2015 21:54:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2KLsoZN081170; Fri, 20 Mar 2015 21:54:50 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2KLsl8w081162; Fri, 20 Mar 2015 21:54:47 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201503202154.t2KLsl8w081162@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 20 Mar 2015 21:54:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280304 - in stable/10: crypto/openssl crypto/openssl/apps crypto/openssl/crypto crypto/openssl/crypto/aes crypto/openssl/crypto/asn1 crypto/openssl/crypto/bf crypto/openssl/crypto/bio ... X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 21:54:50 -0000 Author: jkim Date: Fri Mar 20 21:54:45 2015 New Revision: 280304 URL: https://svnweb.freebsd.org/changeset/base/280304 Log: MFC: r280297 Merge OpenSSL 1.0.1m. Relnotes: yes Added: stable/10/crypto/openssl/crypto/evp/evp_extra_test.c - copied unchanged from r280297, head/crypto/openssl/crypto/evp/evp_extra_test.c stable/10/crypto/openssl/doc/crypto/d2i_CMS_ContentInfo.pod - copied unchanged from r280297, head/crypto/openssl/doc/crypto/d2i_CMS_ContentInfo.pod stable/10/crypto/openssl/doc/crypto/d2i_ECPrivateKey.pod - copied unchanged from r280297, head/crypto/openssl/doc/crypto/d2i_ECPrivateKey.pod stable/10/crypto/openssl/doc/ssl/SSL_CTX_set_read_ahead.pod - copied unchanged from r280297, head/crypto/openssl/doc/ssl/SSL_CTX_set_read_ahead.pod stable/10/crypto/openssl/util/indent.pro - copied unchanged from r280297, head/crypto/openssl/util/indent.pro stable/10/crypto/openssl/util/openssl-format-source - copied unchanged from r280297, head/crypto/openssl/util/openssl-format-source stable/10/crypto/openssl/util/su-filter.pl - copied unchanged from r280297, head/crypto/openssl/util/su-filter.pl stable/10/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 - copied unchanged from r280297, head/secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3 stable/10/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 - copied unchanged from r280297, head/secure/lib/libcrypto/man/d2i_ECPrivateKey.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 - copied unchanged from r280297, head/secure/lib/libssl/man/SSL_CTX_set_read_ahead.3 Modified: stable/10/crypto/openssl/CHANGES stable/10/crypto/openssl/Configure stable/10/crypto/openssl/Makefile stable/10/crypto/openssl/NEWS stable/10/crypto/openssl/README stable/10/crypto/openssl/apps/app_rand.c stable/10/crypto/openssl/apps/apps.c stable/10/crypto/openssl/apps/apps.h stable/10/crypto/openssl/apps/asn1pars.c stable/10/crypto/openssl/apps/ca.c stable/10/crypto/openssl/apps/ciphers.c stable/10/crypto/openssl/apps/cms.c stable/10/crypto/openssl/apps/crl.c stable/10/crypto/openssl/apps/crl2p7.c stable/10/crypto/openssl/apps/dgst.c stable/10/crypto/openssl/apps/dh.c stable/10/crypto/openssl/apps/dhparam.c stable/10/crypto/openssl/apps/dsa.c stable/10/crypto/openssl/apps/dsaparam.c stable/10/crypto/openssl/apps/ec.c stable/10/crypto/openssl/apps/ecparam.c stable/10/crypto/openssl/apps/enc.c stable/10/crypto/openssl/apps/engine.c stable/10/crypto/openssl/apps/errstr.c stable/10/crypto/openssl/apps/gendh.c stable/10/crypto/openssl/apps/gendsa.c stable/10/crypto/openssl/apps/genpkey.c stable/10/crypto/openssl/apps/genrsa.c stable/10/crypto/openssl/apps/nseq.c stable/10/crypto/openssl/apps/ocsp.c stable/10/crypto/openssl/apps/openssl.c stable/10/crypto/openssl/apps/passwd.c stable/10/crypto/openssl/apps/pkcs12.c stable/10/crypto/openssl/apps/pkcs7.c stable/10/crypto/openssl/apps/pkcs8.c stable/10/crypto/openssl/apps/pkey.c stable/10/crypto/openssl/apps/pkeyparam.c stable/10/crypto/openssl/apps/pkeyutl.c stable/10/crypto/openssl/apps/prime.c stable/10/crypto/openssl/apps/progs.h stable/10/crypto/openssl/apps/rand.c stable/10/crypto/openssl/apps/req.c stable/10/crypto/openssl/apps/rsa.c stable/10/crypto/openssl/apps/rsautl.c stable/10/crypto/openssl/apps/s_apps.h stable/10/crypto/openssl/apps/s_cb.c stable/10/crypto/openssl/apps/s_client.c stable/10/crypto/openssl/apps/s_server.c stable/10/crypto/openssl/apps/s_socket.c stable/10/crypto/openssl/apps/s_time.c stable/10/crypto/openssl/apps/sess_id.c stable/10/crypto/openssl/apps/smime.c stable/10/crypto/openssl/apps/speed.c stable/10/crypto/openssl/apps/spkac.c stable/10/crypto/openssl/apps/srp.c stable/10/crypto/openssl/apps/testdsa.h stable/10/crypto/openssl/apps/testrsa.h stable/10/crypto/openssl/apps/timeouts.h stable/10/crypto/openssl/apps/ts.c stable/10/crypto/openssl/apps/verify.c stable/10/crypto/openssl/apps/version.c stable/10/crypto/openssl/apps/x509.c stable/10/crypto/openssl/crypto/LPdir_unix.c stable/10/crypto/openssl/crypto/aes/aes.h stable/10/crypto/openssl/crypto/aes/aes_cbc.c stable/10/crypto/openssl/crypto/aes/aes_cfb.c stable/10/crypto/openssl/crypto/aes/aes_core.c stable/10/crypto/openssl/crypto/aes/aes_ctr.c stable/10/crypto/openssl/crypto/aes/aes_ecb.c stable/10/crypto/openssl/crypto/aes/aes_ige.c stable/10/crypto/openssl/crypto/aes/aes_locl.h stable/10/crypto/openssl/crypto/aes/aes_misc.c stable/10/crypto/openssl/crypto/aes/aes_ofb.c stable/10/crypto/openssl/crypto/aes/aes_wrap.c stable/10/crypto/openssl/crypto/aes/aes_x86core.c stable/10/crypto/openssl/crypto/arm_arch.h stable/10/crypto/openssl/crypto/armcap.c stable/10/crypto/openssl/crypto/asn1/a_bitstr.c stable/10/crypto/openssl/crypto/asn1/a_bool.c stable/10/crypto/openssl/crypto/asn1/a_bytes.c stable/10/crypto/openssl/crypto/asn1/a_d2i_fp.c stable/10/crypto/openssl/crypto/asn1/a_digest.c stable/10/crypto/openssl/crypto/asn1/a_dup.c stable/10/crypto/openssl/crypto/asn1/a_enum.c stable/10/crypto/openssl/crypto/asn1/a_gentm.c stable/10/crypto/openssl/crypto/asn1/a_i2d_fp.c stable/10/crypto/openssl/crypto/asn1/a_int.c stable/10/crypto/openssl/crypto/asn1/a_mbstr.c stable/10/crypto/openssl/crypto/asn1/a_object.c stable/10/crypto/openssl/crypto/asn1/a_octet.c stable/10/crypto/openssl/crypto/asn1/a_print.c stable/10/crypto/openssl/crypto/asn1/a_set.c stable/10/crypto/openssl/crypto/asn1/a_sign.c stable/10/crypto/openssl/crypto/asn1/a_strex.c stable/10/crypto/openssl/crypto/asn1/a_strnid.c stable/10/crypto/openssl/crypto/asn1/a_time.c stable/10/crypto/openssl/crypto/asn1/a_type.c stable/10/crypto/openssl/crypto/asn1/a_utctm.c stable/10/crypto/openssl/crypto/asn1/a_utf8.c stable/10/crypto/openssl/crypto/asn1/a_verify.c stable/10/crypto/openssl/crypto/asn1/ameth_lib.c stable/10/crypto/openssl/crypto/asn1/asn1.h stable/10/crypto/openssl/crypto/asn1/asn1_err.c stable/10/crypto/openssl/crypto/asn1/asn1_gen.c stable/10/crypto/openssl/crypto/asn1/asn1_lib.c stable/10/crypto/openssl/crypto/asn1/asn1_locl.h stable/10/crypto/openssl/crypto/asn1/asn1_mac.h stable/10/crypto/openssl/crypto/asn1/asn1_par.c stable/10/crypto/openssl/crypto/asn1/asn1t.h stable/10/crypto/openssl/crypto/asn1/asn_mime.c stable/10/crypto/openssl/crypto/asn1/asn_moid.c stable/10/crypto/openssl/crypto/asn1/asn_pack.c stable/10/crypto/openssl/crypto/asn1/bio_asn1.c stable/10/crypto/openssl/crypto/asn1/bio_ndef.c stable/10/crypto/openssl/crypto/asn1/charmap.h stable/10/crypto/openssl/crypto/asn1/d2i_pr.c stable/10/crypto/openssl/crypto/asn1/d2i_pu.c stable/10/crypto/openssl/crypto/asn1/evp_asn1.c stable/10/crypto/openssl/crypto/asn1/f_enum.c stable/10/crypto/openssl/crypto/asn1/f_int.c stable/10/crypto/openssl/crypto/asn1/f_string.c stable/10/crypto/openssl/crypto/asn1/i2d_pr.c stable/10/crypto/openssl/crypto/asn1/i2d_pu.c stable/10/crypto/openssl/crypto/asn1/n_pkey.c stable/10/crypto/openssl/crypto/asn1/nsseq.c stable/10/crypto/openssl/crypto/asn1/p5_pbe.c stable/10/crypto/openssl/crypto/asn1/p5_pbev2.c stable/10/crypto/openssl/crypto/asn1/p8_pkey.c stable/10/crypto/openssl/crypto/asn1/t_bitst.c stable/10/crypto/openssl/crypto/asn1/t_crl.c stable/10/crypto/openssl/crypto/asn1/t_pkey.c stable/10/crypto/openssl/crypto/asn1/t_req.c stable/10/crypto/openssl/crypto/asn1/t_spki.c stable/10/crypto/openssl/crypto/asn1/t_x509.c stable/10/crypto/openssl/crypto/asn1/t_x509a.c stable/10/crypto/openssl/crypto/asn1/tasn_dec.c stable/10/crypto/openssl/crypto/asn1/tasn_enc.c stable/10/crypto/openssl/crypto/asn1/tasn_fre.c stable/10/crypto/openssl/crypto/asn1/tasn_new.c stable/10/crypto/openssl/crypto/asn1/tasn_prn.c stable/10/crypto/openssl/crypto/asn1/tasn_typ.c stable/10/crypto/openssl/crypto/asn1/tasn_utl.c stable/10/crypto/openssl/crypto/asn1/x_algor.c stable/10/crypto/openssl/crypto/asn1/x_attrib.c stable/10/crypto/openssl/crypto/asn1/x_bignum.c stable/10/crypto/openssl/crypto/asn1/x_crl.c stable/10/crypto/openssl/crypto/asn1/x_exten.c stable/10/crypto/openssl/crypto/asn1/x_info.c stable/10/crypto/openssl/crypto/asn1/x_long.c stable/10/crypto/openssl/crypto/asn1/x_name.c stable/10/crypto/openssl/crypto/asn1/x_nx509.c stable/10/crypto/openssl/crypto/asn1/x_pkey.c stable/10/crypto/openssl/crypto/asn1/x_pubkey.c stable/10/crypto/openssl/crypto/asn1/x_req.c stable/10/crypto/openssl/crypto/asn1/x_sig.c stable/10/crypto/openssl/crypto/asn1/x_spki.c stable/10/crypto/openssl/crypto/asn1/x_val.c stable/10/crypto/openssl/crypto/asn1/x_x509.c stable/10/crypto/openssl/crypto/asn1/x_x509a.c stable/10/crypto/openssl/crypto/bf/bf_cbc.c stable/10/crypto/openssl/crypto/bf/bf_cfb64.c stable/10/crypto/openssl/crypto/bf/bf_ecb.c stable/10/crypto/openssl/crypto/bf/bf_enc.c stable/10/crypto/openssl/crypto/bf/bf_locl.h stable/10/crypto/openssl/crypto/bf/bf_ofb64.c stable/10/crypto/openssl/crypto/bf/bf_opts.c stable/10/crypto/openssl/crypto/bf/bf_pi.h stable/10/crypto/openssl/crypto/bf/bf_skey.c stable/10/crypto/openssl/crypto/bf/bfspeed.c stable/10/crypto/openssl/crypto/bf/bftest.c stable/10/crypto/openssl/crypto/bf/blowfish.h stable/10/crypto/openssl/crypto/bio/b_dump.c stable/10/crypto/openssl/crypto/bio/b_print.c stable/10/crypto/openssl/crypto/bio/b_sock.c stable/10/crypto/openssl/crypto/bio/bf_buff.c stable/10/crypto/openssl/crypto/bio/bf_lbuf.c stable/10/crypto/openssl/crypto/bio/bf_nbio.c stable/10/crypto/openssl/crypto/bio/bf_null.c stable/10/crypto/openssl/crypto/bio/bio.h stable/10/crypto/openssl/crypto/bio/bio_cb.c stable/10/crypto/openssl/crypto/bio/bio_err.c stable/10/crypto/openssl/crypto/bio/bio_lcl.h stable/10/crypto/openssl/crypto/bio/bio_lib.c stable/10/crypto/openssl/crypto/bio/bss_acpt.c stable/10/crypto/openssl/crypto/bio/bss_bio.c stable/10/crypto/openssl/crypto/bio/bss_conn.c stable/10/crypto/openssl/crypto/bio/bss_dgram.c stable/10/crypto/openssl/crypto/bio/bss_fd.c stable/10/crypto/openssl/crypto/bio/bss_file.c stable/10/crypto/openssl/crypto/bio/bss_log.c stable/10/crypto/openssl/crypto/bio/bss_mem.c stable/10/crypto/openssl/crypto/bio/bss_null.c stable/10/crypto/openssl/crypto/bio/bss_rtcp.c stable/10/crypto/openssl/crypto/bio/bss_sock.c stable/10/crypto/openssl/crypto/bn/asm/x86_64-gcc.c stable/10/crypto/openssl/crypto/bn/bn.h stable/10/crypto/openssl/crypto/bn/bn_add.c stable/10/crypto/openssl/crypto/bn/bn_asm.c stable/10/crypto/openssl/crypto/bn/bn_blind.c stable/10/crypto/openssl/crypto/bn/bn_const.c stable/10/crypto/openssl/crypto/bn/bn_ctx.c stable/10/crypto/openssl/crypto/bn/bn_depr.c stable/10/crypto/openssl/crypto/bn/bn_div.c stable/10/crypto/openssl/crypto/bn/bn_err.c stable/10/crypto/openssl/crypto/bn/bn_exp.c stable/10/crypto/openssl/crypto/bn/bn_exp2.c stable/10/crypto/openssl/crypto/bn/bn_gcd.c stable/10/crypto/openssl/crypto/bn/bn_gf2m.c stable/10/crypto/openssl/crypto/bn/bn_kron.c stable/10/crypto/openssl/crypto/bn/bn_lcl.h stable/10/crypto/openssl/crypto/bn/bn_lib.c stable/10/crypto/openssl/crypto/bn/bn_mod.c stable/10/crypto/openssl/crypto/bn/bn_mont.c stable/10/crypto/openssl/crypto/bn/bn_mpi.c stable/10/crypto/openssl/crypto/bn/bn_mul.c stable/10/crypto/openssl/crypto/bn/bn_nist.c stable/10/crypto/openssl/crypto/bn/bn_prime.c stable/10/crypto/openssl/crypto/bn/bn_prime.h stable/10/crypto/openssl/crypto/bn/bn_print.c stable/10/crypto/openssl/crypto/bn/bn_rand.c stable/10/crypto/openssl/crypto/bn/bn_recp.c stable/10/crypto/openssl/crypto/bn/bn_shift.c stable/10/crypto/openssl/crypto/bn/bn_sqr.c stable/10/crypto/openssl/crypto/bn/bn_sqrt.c stable/10/crypto/openssl/crypto/bn/bn_word.c stable/10/crypto/openssl/crypto/bn/bn_x931p.c stable/10/crypto/openssl/crypto/bn/bnspeed.c stable/10/crypto/openssl/crypto/bn/bntest.c stable/10/crypto/openssl/crypto/bn/divtest.c stable/10/crypto/openssl/crypto/bn/exp.c stable/10/crypto/openssl/crypto/bn/expspeed.c stable/10/crypto/openssl/crypto/bn/exptest.c stable/10/crypto/openssl/crypto/buffer/buf_err.c stable/10/crypto/openssl/crypto/buffer/buf_str.c stable/10/crypto/openssl/crypto/buffer/buffer.c stable/10/crypto/openssl/crypto/buffer/buffer.h stable/10/crypto/openssl/crypto/camellia/camellia.c stable/10/crypto/openssl/crypto/camellia/camellia.h stable/10/crypto/openssl/crypto/camellia/cmll_cbc.c stable/10/crypto/openssl/crypto/camellia/cmll_cfb.c stable/10/crypto/openssl/crypto/camellia/cmll_ctr.c stable/10/crypto/openssl/crypto/camellia/cmll_ecb.c stable/10/crypto/openssl/crypto/camellia/cmll_locl.h stable/10/crypto/openssl/crypto/camellia/cmll_misc.c stable/10/crypto/openssl/crypto/camellia/cmll_ofb.c stable/10/crypto/openssl/crypto/camellia/cmll_utl.c stable/10/crypto/openssl/crypto/cast/c_cfb64.c stable/10/crypto/openssl/crypto/cast/c_ecb.c stable/10/crypto/openssl/crypto/cast/c_enc.c stable/10/crypto/openssl/crypto/cast/c_ofb64.c stable/10/crypto/openssl/crypto/cast/c_skey.c stable/10/crypto/openssl/crypto/cast/cast.h stable/10/crypto/openssl/crypto/cast/cast_lcl.h stable/10/crypto/openssl/crypto/cast/cast_s.h stable/10/crypto/openssl/crypto/cast/cast_spd.c stable/10/crypto/openssl/crypto/cast/castopts.c stable/10/crypto/openssl/crypto/cast/casttest.c stable/10/crypto/openssl/crypto/cmac/cm_ameth.c stable/10/crypto/openssl/crypto/cmac/cm_pmeth.c stable/10/crypto/openssl/crypto/cmac/cmac.c stable/10/crypto/openssl/crypto/cmac/cmac.h stable/10/crypto/openssl/crypto/cms/cms.h stable/10/crypto/openssl/crypto/cms/cms_asn1.c stable/10/crypto/openssl/crypto/cms/cms_att.c stable/10/crypto/openssl/crypto/cms/cms_cd.c stable/10/crypto/openssl/crypto/cms/cms_dd.c stable/10/crypto/openssl/crypto/cms/cms_enc.c stable/10/crypto/openssl/crypto/cms/cms_env.c stable/10/crypto/openssl/crypto/cms/cms_err.c stable/10/crypto/openssl/crypto/cms/cms_ess.c stable/10/crypto/openssl/crypto/cms/cms_io.c stable/10/crypto/openssl/crypto/cms/cms_lcl.h stable/10/crypto/openssl/crypto/cms/cms_lib.c stable/10/crypto/openssl/crypto/cms/cms_pwri.c stable/10/crypto/openssl/crypto/cms/cms_sd.c stable/10/crypto/openssl/crypto/cms/cms_smime.c stable/10/crypto/openssl/crypto/comp/c_rle.c stable/10/crypto/openssl/crypto/comp/c_zlib.c stable/10/crypto/openssl/crypto/comp/comp.h stable/10/crypto/openssl/crypto/comp/comp_err.c stable/10/crypto/openssl/crypto/comp/comp_lib.c stable/10/crypto/openssl/crypto/conf/cnf_save.c stable/10/crypto/openssl/crypto/conf/conf.h stable/10/crypto/openssl/crypto/conf/conf_api.c stable/10/crypto/openssl/crypto/conf/conf_api.h stable/10/crypto/openssl/crypto/conf/conf_def.c stable/10/crypto/openssl/crypto/conf/conf_def.h stable/10/crypto/openssl/crypto/conf/conf_err.c stable/10/crypto/openssl/crypto/conf/conf_lib.c stable/10/crypto/openssl/crypto/conf/conf_mall.c stable/10/crypto/openssl/crypto/conf/conf_mod.c stable/10/crypto/openssl/crypto/conf/conf_sap.c stable/10/crypto/openssl/crypto/conf/test.c stable/10/crypto/openssl/crypto/constant_time_locl.h stable/10/crypto/openssl/crypto/constant_time_test.c stable/10/crypto/openssl/crypto/cpt_err.c stable/10/crypto/openssl/crypto/cryptlib.c stable/10/crypto/openssl/crypto/cryptlib.h stable/10/crypto/openssl/crypto/crypto.h stable/10/crypto/openssl/crypto/cversion.c stable/10/crypto/openssl/crypto/des/cbc3_enc.c stable/10/crypto/openssl/crypto/des/cbc_cksm.c stable/10/crypto/openssl/crypto/des/cbc_enc.c stable/10/crypto/openssl/crypto/des/cfb64ede.c stable/10/crypto/openssl/crypto/des/cfb64enc.c stable/10/crypto/openssl/crypto/des/cfb_enc.c stable/10/crypto/openssl/crypto/des/des.c stable/10/crypto/openssl/crypto/des/des.h stable/10/crypto/openssl/crypto/des/des_enc.c stable/10/crypto/openssl/crypto/des/des_locl.h stable/10/crypto/openssl/crypto/des/des_old.c stable/10/crypto/openssl/crypto/des/des_old.h stable/10/crypto/openssl/crypto/des/des_old2.c stable/10/crypto/openssl/crypto/des/des_opts.c stable/10/crypto/openssl/crypto/des/des_ver.h stable/10/crypto/openssl/crypto/des/destest.c stable/10/crypto/openssl/crypto/des/ecb3_enc.c stable/10/crypto/openssl/crypto/des/ecb_enc.c stable/10/crypto/openssl/crypto/des/ede_cbcm_enc.c stable/10/crypto/openssl/crypto/des/enc_read.c stable/10/crypto/openssl/crypto/des/enc_writ.c stable/10/crypto/openssl/crypto/des/fcrypt.c stable/10/crypto/openssl/crypto/des/fcrypt_b.c stable/10/crypto/openssl/crypto/des/ncbc_enc.c stable/10/crypto/openssl/crypto/des/ofb64ede.c stable/10/crypto/openssl/crypto/des/ofb64enc.c stable/10/crypto/openssl/crypto/des/ofb_enc.c stable/10/crypto/openssl/crypto/des/pcbc_enc.c stable/10/crypto/openssl/crypto/des/qud_cksm.c stable/10/crypto/openssl/crypto/des/rand_key.c stable/10/crypto/openssl/crypto/des/read2pwd.c stable/10/crypto/openssl/crypto/des/read_pwd.c stable/10/crypto/openssl/crypto/des/rpc_des.h stable/10/crypto/openssl/crypto/des/rpc_enc.c stable/10/crypto/openssl/crypto/des/rpw.c stable/10/crypto/openssl/crypto/des/set_key.c stable/10/crypto/openssl/crypto/des/speed.c stable/10/crypto/openssl/crypto/des/spr.h stable/10/crypto/openssl/crypto/des/str2key.c stable/10/crypto/openssl/crypto/des/xcbc_enc.c stable/10/crypto/openssl/crypto/dh/dh.h stable/10/crypto/openssl/crypto/dh/dh_ameth.c stable/10/crypto/openssl/crypto/dh/dh_asn1.c stable/10/crypto/openssl/crypto/dh/dh_check.c stable/10/crypto/openssl/crypto/dh/dh_depr.c stable/10/crypto/openssl/crypto/dh/dh_err.c stable/10/crypto/openssl/crypto/dh/dh_gen.c stable/10/crypto/openssl/crypto/dh/dh_key.c stable/10/crypto/openssl/crypto/dh/dh_lib.c stable/10/crypto/openssl/crypto/dh/dh_pmeth.c stable/10/crypto/openssl/crypto/dh/dh_prn.c stable/10/crypto/openssl/crypto/dh/dhtest.c stable/10/crypto/openssl/crypto/dh/p1024.c stable/10/crypto/openssl/crypto/dh/p192.c stable/10/crypto/openssl/crypto/dh/p512.c stable/10/crypto/openssl/crypto/dsa/dsa.h stable/10/crypto/openssl/crypto/dsa/dsa_ameth.c stable/10/crypto/openssl/crypto/dsa/dsa_asn1.c stable/10/crypto/openssl/crypto/dsa/dsa_depr.c stable/10/crypto/openssl/crypto/dsa/dsa_err.c stable/10/crypto/openssl/crypto/dsa/dsa_gen.c stable/10/crypto/openssl/crypto/dsa/dsa_key.c stable/10/crypto/openssl/crypto/dsa/dsa_lib.c stable/10/crypto/openssl/crypto/dsa/dsa_locl.h stable/10/crypto/openssl/crypto/dsa/dsa_ossl.c stable/10/crypto/openssl/crypto/dsa/dsa_pmeth.c stable/10/crypto/openssl/crypto/dsa/dsa_prn.c stable/10/crypto/openssl/crypto/dsa/dsa_sign.c stable/10/crypto/openssl/crypto/dsa/dsa_vrf.c stable/10/crypto/openssl/crypto/dsa/dsagen.c stable/10/crypto/openssl/crypto/dsa/dsatest.c stable/10/crypto/openssl/crypto/dso/dso.h stable/10/crypto/openssl/crypto/dso/dso_beos.c stable/10/crypto/openssl/crypto/dso/dso_dl.c stable/10/crypto/openssl/crypto/dso/dso_dlfcn.c stable/10/crypto/openssl/crypto/dso/dso_err.c stable/10/crypto/openssl/crypto/dso/dso_lib.c stable/10/crypto/openssl/crypto/dso/dso_null.c stable/10/crypto/openssl/crypto/dso/dso_openssl.c stable/10/crypto/openssl/crypto/ebcdic.c stable/10/crypto/openssl/crypto/ebcdic.h stable/10/crypto/openssl/crypto/ec/ec.h stable/10/crypto/openssl/crypto/ec/ec2_mult.c stable/10/crypto/openssl/crypto/ec/ec2_oct.c stable/10/crypto/openssl/crypto/ec/ec2_smpl.c stable/10/crypto/openssl/crypto/ec/ec_ameth.c stable/10/crypto/openssl/crypto/ec/ec_asn1.c stable/10/crypto/openssl/crypto/ec/ec_check.c stable/10/crypto/openssl/crypto/ec/ec_curve.c stable/10/crypto/openssl/crypto/ec/ec_cvt.c stable/10/crypto/openssl/crypto/ec/ec_err.c stable/10/crypto/openssl/crypto/ec/ec_key.c stable/10/crypto/openssl/crypto/ec/ec_lcl.h stable/10/crypto/openssl/crypto/ec/ec_lib.c stable/10/crypto/openssl/crypto/ec/ec_mult.c stable/10/crypto/openssl/crypto/ec/ec_oct.c stable/10/crypto/openssl/crypto/ec/ec_pmeth.c stable/10/crypto/openssl/crypto/ec/ec_print.c stable/10/crypto/openssl/crypto/ec/eck_prn.c stable/10/crypto/openssl/crypto/ec/ecp_mont.c stable/10/crypto/openssl/crypto/ec/ecp_nist.c stable/10/crypto/openssl/crypto/ec/ecp_nistp224.c stable/10/crypto/openssl/crypto/ec/ecp_nistp256.c stable/10/crypto/openssl/crypto/ec/ecp_nistp521.c stable/10/crypto/openssl/crypto/ec/ecp_nistputil.c stable/10/crypto/openssl/crypto/ec/ecp_oct.c stable/10/crypto/openssl/crypto/ec/ecp_smpl.c stable/10/crypto/openssl/crypto/ec/ectest.c stable/10/crypto/openssl/crypto/ecdh/ecdh.h stable/10/crypto/openssl/crypto/ecdh/ecdhtest.c stable/10/crypto/openssl/crypto/ecdh/ech_err.c stable/10/crypto/openssl/crypto/ecdh/ech_key.c stable/10/crypto/openssl/crypto/ecdh/ech_lib.c stable/10/crypto/openssl/crypto/ecdh/ech_locl.h stable/10/crypto/openssl/crypto/ecdh/ech_ossl.c stable/10/crypto/openssl/crypto/ecdsa/ecdsa.h stable/10/crypto/openssl/crypto/ecdsa/ecdsatest.c stable/10/crypto/openssl/crypto/ecdsa/ecs_asn1.c stable/10/crypto/openssl/crypto/ecdsa/ecs_err.c stable/10/crypto/openssl/crypto/ecdsa/ecs_lib.c stable/10/crypto/openssl/crypto/ecdsa/ecs_locl.h stable/10/crypto/openssl/crypto/ecdsa/ecs_ossl.c stable/10/crypto/openssl/crypto/ecdsa/ecs_sign.c stable/10/crypto/openssl/crypto/ecdsa/ecs_vrf.c stable/10/crypto/openssl/crypto/engine/eng_all.c stable/10/crypto/openssl/crypto/engine/eng_cnf.c stable/10/crypto/openssl/crypto/engine/eng_cryptodev.c stable/10/crypto/openssl/crypto/engine/eng_ctrl.c stable/10/crypto/openssl/crypto/engine/eng_dyn.c stable/10/crypto/openssl/crypto/engine/eng_err.c stable/10/crypto/openssl/crypto/engine/eng_fat.c stable/10/crypto/openssl/crypto/engine/eng_init.c stable/10/crypto/openssl/crypto/engine/eng_int.h stable/10/crypto/openssl/crypto/engine/eng_lib.c stable/10/crypto/openssl/crypto/engine/eng_list.c stable/10/crypto/openssl/crypto/engine/eng_openssl.c stable/10/crypto/openssl/crypto/engine/eng_pkey.c stable/10/crypto/openssl/crypto/engine/eng_rdrand.c stable/10/crypto/openssl/crypto/engine/eng_rsax.c stable/10/crypto/openssl/crypto/engine/eng_table.c stable/10/crypto/openssl/crypto/engine/engine.h stable/10/crypto/openssl/crypto/engine/enginetest.c stable/10/crypto/openssl/crypto/engine/tb_asnmth.c stable/10/crypto/openssl/crypto/engine/tb_cipher.c stable/10/crypto/openssl/crypto/engine/tb_dh.c stable/10/crypto/openssl/crypto/engine/tb_digest.c stable/10/crypto/openssl/crypto/engine/tb_dsa.c stable/10/crypto/openssl/crypto/engine/tb_ecdh.c stable/10/crypto/openssl/crypto/engine/tb_ecdsa.c stable/10/crypto/openssl/crypto/engine/tb_pkmeth.c stable/10/crypto/openssl/crypto/engine/tb_rand.c stable/10/crypto/openssl/crypto/engine/tb_rsa.c stable/10/crypto/openssl/crypto/engine/tb_store.c stable/10/crypto/openssl/crypto/err/err.c stable/10/crypto/openssl/crypto/err/err.h stable/10/crypto/openssl/crypto/err/err_all.c stable/10/crypto/openssl/crypto/err/err_prn.c stable/10/crypto/openssl/crypto/evp/Makefile stable/10/crypto/openssl/crypto/evp/bio_b64.c stable/10/crypto/openssl/crypto/evp/bio_enc.c stable/10/crypto/openssl/crypto/evp/bio_md.c stable/10/crypto/openssl/crypto/evp/bio_ok.c stable/10/crypto/openssl/crypto/evp/c_all.c stable/10/crypto/openssl/crypto/evp/c_allc.c stable/10/crypto/openssl/crypto/evp/c_alld.c stable/10/crypto/openssl/crypto/evp/digest.c stable/10/crypto/openssl/crypto/evp/e_aes.c stable/10/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c stable/10/crypto/openssl/crypto/evp/e_bf.c stable/10/crypto/openssl/crypto/evp/e_camellia.c stable/10/crypto/openssl/crypto/evp/e_cast.c stable/10/crypto/openssl/crypto/evp/e_des.c stable/10/crypto/openssl/crypto/evp/e_des3.c stable/10/crypto/openssl/crypto/evp/e_dsa.c stable/10/crypto/openssl/crypto/evp/e_idea.c stable/10/crypto/openssl/crypto/evp/e_null.c stable/10/crypto/openssl/crypto/evp/e_old.c stable/10/crypto/openssl/crypto/evp/e_rc2.c stable/10/crypto/openssl/crypto/evp/e_rc4.c stable/10/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c stable/10/crypto/openssl/crypto/evp/e_rc5.c stable/10/crypto/openssl/crypto/evp/e_seed.c stable/10/crypto/openssl/crypto/evp/e_xcbc_d.c stable/10/crypto/openssl/crypto/evp/encode.c stable/10/crypto/openssl/crypto/evp/evp.h stable/10/crypto/openssl/crypto/evp/evp_acnf.c stable/10/crypto/openssl/crypto/evp/evp_cnf.c stable/10/crypto/openssl/crypto/evp/evp_enc.c stable/10/crypto/openssl/crypto/evp/evp_err.c stable/10/crypto/openssl/crypto/evp/evp_fips.c stable/10/crypto/openssl/crypto/evp/evp_key.c stable/10/crypto/openssl/crypto/evp/evp_lib.c stable/10/crypto/openssl/crypto/evp/evp_locl.h stable/10/crypto/openssl/crypto/evp/evp_pbe.c stable/10/crypto/openssl/crypto/evp/evp_pkey.c stable/10/crypto/openssl/crypto/evp/evp_test.c stable/10/crypto/openssl/crypto/evp/m_dss.c stable/10/crypto/openssl/crypto/evp/m_dss1.c stable/10/crypto/openssl/crypto/evp/m_ecdsa.c stable/10/crypto/openssl/crypto/evp/m_md2.c stable/10/crypto/openssl/crypto/evp/m_md4.c stable/10/crypto/openssl/crypto/evp/m_md5.c stable/10/crypto/openssl/crypto/evp/m_mdc2.c stable/10/crypto/openssl/crypto/evp/m_null.c stable/10/crypto/openssl/crypto/evp/m_ripemd.c stable/10/crypto/openssl/crypto/evp/m_sha.c stable/10/crypto/openssl/crypto/evp/m_sha1.c stable/10/crypto/openssl/crypto/evp/m_sigver.c stable/10/crypto/openssl/crypto/evp/m_wp.c stable/10/crypto/openssl/crypto/evp/names.c stable/10/crypto/openssl/crypto/evp/openbsd_hw.c stable/10/crypto/openssl/crypto/evp/p5_crpt.c stable/10/crypto/openssl/crypto/evp/p5_crpt2.c stable/10/crypto/openssl/crypto/evp/p_dec.c stable/10/crypto/openssl/crypto/evp/p_enc.c stable/10/crypto/openssl/crypto/evp/p_lib.c stable/10/crypto/openssl/crypto/evp/p_open.c stable/10/crypto/openssl/crypto/evp/p_seal.c stable/10/crypto/openssl/crypto/evp/p_sign.c stable/10/crypto/openssl/crypto/evp/p_verify.c stable/10/crypto/openssl/crypto/evp/pmeth_fn.c stable/10/crypto/openssl/crypto/evp/pmeth_gn.c stable/10/crypto/openssl/crypto/evp/pmeth_lib.c stable/10/crypto/openssl/crypto/ex_data.c stable/10/crypto/openssl/crypto/fips_err.h stable/10/crypto/openssl/crypto/fips_ers.c stable/10/crypto/openssl/crypto/hmac/hm_ameth.c stable/10/crypto/openssl/crypto/hmac/hm_pmeth.c stable/10/crypto/openssl/crypto/hmac/hmac.c stable/10/crypto/openssl/crypto/hmac/hmac.h stable/10/crypto/openssl/crypto/hmac/hmactest.c stable/10/crypto/openssl/crypto/idea/i_cbc.c stable/10/crypto/openssl/crypto/idea/i_cfb64.c stable/10/crypto/openssl/crypto/idea/i_ecb.c stable/10/crypto/openssl/crypto/idea/i_ofb64.c stable/10/crypto/openssl/crypto/idea/i_skey.c stable/10/crypto/openssl/crypto/idea/idea.h stable/10/crypto/openssl/crypto/idea/idea_lcl.h stable/10/crypto/openssl/crypto/idea/idea_spd.c stable/10/crypto/openssl/crypto/idea/ideatest.c stable/10/crypto/openssl/crypto/jpake/jpake.c stable/10/crypto/openssl/crypto/jpake/jpake.h stable/10/crypto/openssl/crypto/jpake/jpake_err.c stable/10/crypto/openssl/crypto/jpake/jpaketest.c stable/10/crypto/openssl/crypto/krb5/krb5_asn.c stable/10/crypto/openssl/crypto/krb5/krb5_asn.h stable/10/crypto/openssl/crypto/lhash/lh_stats.c stable/10/crypto/openssl/crypto/lhash/lh_test.c stable/10/crypto/openssl/crypto/lhash/lhash.c stable/10/crypto/openssl/crypto/lhash/lhash.h stable/10/crypto/openssl/crypto/md2/md2.c stable/10/crypto/openssl/crypto/md2/md2.h stable/10/crypto/openssl/crypto/md2/md2_dgst.c stable/10/crypto/openssl/crypto/md2/md2_one.c stable/10/crypto/openssl/crypto/md2/md2test.c stable/10/crypto/openssl/crypto/md32_common.h stable/10/crypto/openssl/crypto/md4/md4.c stable/10/crypto/openssl/crypto/md4/md4.h stable/10/crypto/openssl/crypto/md4/md4_dgst.c stable/10/crypto/openssl/crypto/md4/md4_locl.h stable/10/crypto/openssl/crypto/md4/md4_one.c stable/10/crypto/openssl/crypto/md4/md4test.c stable/10/crypto/openssl/crypto/md5/md5.c stable/10/crypto/openssl/crypto/md5/md5.h stable/10/crypto/openssl/crypto/md5/md5_dgst.c stable/10/crypto/openssl/crypto/md5/md5_locl.h stable/10/crypto/openssl/crypto/md5/md5_one.c stable/10/crypto/openssl/crypto/md5/md5test.c stable/10/crypto/openssl/crypto/mdc2/mdc2.h stable/10/crypto/openssl/crypto/mdc2/mdc2_one.c stable/10/crypto/openssl/crypto/mdc2/mdc2dgst.c stable/10/crypto/openssl/crypto/mdc2/mdc2test.c stable/10/crypto/openssl/crypto/mem.c stable/10/crypto/openssl/crypto/mem_clr.c stable/10/crypto/openssl/crypto/mem_dbg.c stable/10/crypto/openssl/crypto/modes/cbc128.c stable/10/crypto/openssl/crypto/modes/ccm128.c stable/10/crypto/openssl/crypto/modes/cfb128.c stable/10/crypto/openssl/crypto/modes/ctr128.c stable/10/crypto/openssl/crypto/modes/cts128.c stable/10/crypto/openssl/crypto/modes/gcm128.c stable/10/crypto/openssl/crypto/modes/modes.h stable/10/crypto/openssl/crypto/modes/modes_lcl.h stable/10/crypto/openssl/crypto/modes/ofb128.c stable/10/crypto/openssl/crypto/modes/xts128.c stable/10/crypto/openssl/crypto/o_dir.c stable/10/crypto/openssl/crypto/o_dir.h stable/10/crypto/openssl/crypto/o_dir_test.c stable/10/crypto/openssl/crypto/o_fips.c stable/10/crypto/openssl/crypto/o_init.c stable/10/crypto/openssl/crypto/o_str.c stable/10/crypto/openssl/crypto/o_str.h stable/10/crypto/openssl/crypto/o_time.c stable/10/crypto/openssl/crypto/o_time.h stable/10/crypto/openssl/crypto/objects/o_names.c stable/10/crypto/openssl/crypto/objects/obj_dat.c stable/10/crypto/openssl/crypto/objects/obj_err.c stable/10/crypto/openssl/crypto/objects/obj_lib.c stable/10/crypto/openssl/crypto/objects/obj_mac.h stable/10/crypto/openssl/crypto/objects/obj_xref.c stable/10/crypto/openssl/crypto/objects/obj_xref.h stable/10/crypto/openssl/crypto/objects/objects.h stable/10/crypto/openssl/crypto/objects/objects.pl stable/10/crypto/openssl/crypto/objects/objxref.pl stable/10/crypto/openssl/crypto/ocsp/ocsp.h stable/10/crypto/openssl/crypto/ocsp/ocsp_asn.c stable/10/crypto/openssl/crypto/ocsp/ocsp_cl.c stable/10/crypto/openssl/crypto/ocsp/ocsp_err.c stable/10/crypto/openssl/crypto/ocsp/ocsp_ext.c stable/10/crypto/openssl/crypto/ocsp/ocsp_ht.c stable/10/crypto/openssl/crypto/ocsp/ocsp_lib.c stable/10/crypto/openssl/crypto/ocsp/ocsp_prn.c stable/10/crypto/openssl/crypto/ocsp/ocsp_srv.c stable/10/crypto/openssl/crypto/ocsp/ocsp_vfy.c stable/10/crypto/openssl/crypto/opensslv.h stable/10/crypto/openssl/crypto/ossl_typ.h stable/10/crypto/openssl/crypto/pem/pem.h stable/10/crypto/openssl/crypto/pem/pem2.h stable/10/crypto/openssl/crypto/pem/pem_all.c stable/10/crypto/openssl/crypto/pem/pem_err.c stable/10/crypto/openssl/crypto/pem/pem_info.c stable/10/crypto/openssl/crypto/pem/pem_lib.c stable/10/crypto/openssl/crypto/pem/pem_oth.c stable/10/crypto/openssl/crypto/pem/pem_pk8.c stable/10/crypto/openssl/crypto/pem/pem_pkey.c stable/10/crypto/openssl/crypto/pem/pem_seal.c stable/10/crypto/openssl/crypto/pem/pem_sign.c stable/10/crypto/openssl/crypto/pem/pem_x509.c stable/10/crypto/openssl/crypto/pem/pem_xaux.c stable/10/crypto/openssl/crypto/pem/pvkfmt.c stable/10/crypto/openssl/crypto/pkcs12/p12_add.c stable/10/crypto/openssl/crypto/pkcs12/p12_asn.c stable/10/crypto/openssl/crypto/pkcs12/p12_attr.c stable/10/crypto/openssl/crypto/pkcs12/p12_crpt.c stable/10/crypto/openssl/crypto/pkcs12/p12_crt.c stable/10/crypto/openssl/crypto/pkcs12/p12_decr.c stable/10/crypto/openssl/crypto/pkcs12/p12_init.c stable/10/crypto/openssl/crypto/pkcs12/p12_key.c stable/10/crypto/openssl/crypto/pkcs12/p12_kiss.c stable/10/crypto/openssl/crypto/pkcs12/p12_mutl.c stable/10/crypto/openssl/crypto/pkcs12/p12_npas.c stable/10/crypto/openssl/crypto/pkcs12/p12_p8d.c stable/10/crypto/openssl/crypto/pkcs12/p12_p8e.c stable/10/crypto/openssl/crypto/pkcs12/p12_utl.c stable/10/crypto/openssl/crypto/pkcs12/pk12err.c stable/10/crypto/openssl/crypto/pkcs12/pkcs12.h stable/10/crypto/openssl/crypto/pkcs7/bio_pk7.c stable/10/crypto/openssl/crypto/pkcs7/pk7_asn1.c stable/10/crypto/openssl/crypto/pkcs7/pk7_attr.c stable/10/crypto/openssl/crypto/pkcs7/pk7_dgst.c stable/10/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/10/crypto/openssl/crypto/pkcs7/pk7_enc.c stable/10/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/10/crypto/openssl/crypto/pkcs7/pk7_mime.c stable/10/crypto/openssl/crypto/pkcs7/pk7_smime.c stable/10/crypto/openssl/crypto/pkcs7/pkcs7.h stable/10/crypto/openssl/crypto/pkcs7/pkcs7err.c stable/10/crypto/openssl/crypto/ppccap.c stable/10/crypto/openssl/crypto/pqueue/pq_test.c stable/10/crypto/openssl/crypto/pqueue/pqueue.c stable/10/crypto/openssl/crypto/pqueue/pqueue.h stable/10/crypto/openssl/crypto/rand/md_rand.c stable/10/crypto/openssl/crypto/rand/rand.h stable/10/crypto/openssl/crypto/rand/rand_egd.c stable/10/crypto/openssl/crypto/rand/rand_err.c stable/10/crypto/openssl/crypto/rand/rand_lcl.h stable/10/crypto/openssl/crypto/rand/rand_lib.c stable/10/crypto/openssl/crypto/rand/rand_unix.c stable/10/crypto/openssl/crypto/rand/randfile.c stable/10/crypto/openssl/crypto/rand/randtest.c stable/10/crypto/openssl/crypto/rc2/rc2.h stable/10/crypto/openssl/crypto/rc2/rc2_cbc.c stable/10/crypto/openssl/crypto/rc2/rc2_ecb.c stable/10/crypto/openssl/crypto/rc2/rc2_locl.h stable/10/crypto/openssl/crypto/rc2/rc2_skey.c stable/10/crypto/openssl/crypto/rc2/rc2cfb64.c stable/10/crypto/openssl/crypto/rc2/rc2ofb64.c stable/10/crypto/openssl/crypto/rc2/rc2speed.c stable/10/crypto/openssl/crypto/rc2/rc2test.c stable/10/crypto/openssl/crypto/rc2/tab.c stable/10/crypto/openssl/crypto/rc4/rc4.c stable/10/crypto/openssl/crypto/rc4/rc4.h stable/10/crypto/openssl/crypto/rc4/rc4_enc.c stable/10/crypto/openssl/crypto/rc4/rc4_locl.h stable/10/crypto/openssl/crypto/rc4/rc4_skey.c stable/10/crypto/openssl/crypto/rc4/rc4_utl.c stable/10/crypto/openssl/crypto/rc4/rc4speed.c stable/10/crypto/openssl/crypto/rc4/rc4test.c stable/10/crypto/openssl/crypto/rc5/rc5.h stable/10/crypto/openssl/crypto/rc5/rc5_ecb.c stable/10/crypto/openssl/crypto/rc5/rc5_enc.c stable/10/crypto/openssl/crypto/rc5/rc5_locl.h stable/10/crypto/openssl/crypto/rc5/rc5_skey.c stable/10/crypto/openssl/crypto/rc5/rc5cfb64.c stable/10/crypto/openssl/crypto/rc5/rc5ofb64.c stable/10/crypto/openssl/crypto/rc5/rc5speed.c stable/10/crypto/openssl/crypto/rc5/rc5test.c stable/10/crypto/openssl/crypto/ripemd/ripemd.h stable/10/crypto/openssl/crypto/ripemd/rmd160.c stable/10/crypto/openssl/crypto/ripemd/rmd_dgst.c stable/10/crypto/openssl/crypto/ripemd/rmd_locl.h stable/10/crypto/openssl/crypto/ripemd/rmd_one.c stable/10/crypto/openssl/crypto/ripemd/rmdconst.h stable/10/crypto/openssl/crypto/ripemd/rmdtest.c stable/10/crypto/openssl/crypto/rsa/rsa.h stable/10/crypto/openssl/crypto/rsa/rsa_ameth.c stable/10/crypto/openssl/crypto/rsa/rsa_asn1.c stable/10/crypto/openssl/crypto/rsa/rsa_chk.c stable/10/crypto/openssl/crypto/rsa/rsa_crpt.c stable/10/crypto/openssl/crypto/rsa/rsa_depr.c stable/10/crypto/openssl/crypto/rsa/rsa_eay.c stable/10/crypto/openssl/crypto/rsa/rsa_err.c stable/10/crypto/openssl/crypto/rsa/rsa_gen.c stable/10/crypto/openssl/crypto/rsa/rsa_lib.c stable/10/crypto/openssl/crypto/rsa/rsa_locl.h stable/10/crypto/openssl/crypto/rsa/rsa_none.c stable/10/crypto/openssl/crypto/rsa/rsa_null.c stable/10/crypto/openssl/crypto/rsa/rsa_oaep.c stable/10/crypto/openssl/crypto/rsa/rsa_pk1.c stable/10/crypto/openssl/crypto/rsa/rsa_pmeth.c stable/10/crypto/openssl/crypto/rsa/rsa_prn.c stable/10/crypto/openssl/crypto/rsa/rsa_pss.c stable/10/crypto/openssl/crypto/rsa/rsa_saos.c stable/10/crypto/openssl/crypto/rsa/rsa_sign.c stable/10/crypto/openssl/crypto/rsa/rsa_ssl.c stable/10/crypto/openssl/crypto/rsa/rsa_test.c stable/10/crypto/openssl/crypto/rsa/rsa_x931.c stable/10/crypto/openssl/crypto/s390xcap.c stable/10/crypto/openssl/crypto/seed/seed.c stable/10/crypto/openssl/crypto/seed/seed.h stable/10/crypto/openssl/crypto/seed/seed_cbc.c stable/10/crypto/openssl/crypto/seed/seed_cfb.c stable/10/crypto/openssl/crypto/seed/seed_ecb.c stable/10/crypto/openssl/crypto/seed/seed_locl.h stable/10/crypto/openssl/crypto/seed/seed_ofb.c stable/10/crypto/openssl/crypto/sha/sha.c stable/10/crypto/openssl/crypto/sha/sha.h stable/10/crypto/openssl/crypto/sha/sha1.c stable/10/crypto/openssl/crypto/sha/sha1_one.c stable/10/crypto/openssl/crypto/sha/sha1dgst.c stable/10/crypto/openssl/crypto/sha/sha1test.c stable/10/crypto/openssl/crypto/sha/sha256.c stable/10/crypto/openssl/crypto/sha/sha256t.c stable/10/crypto/openssl/crypto/sha/sha512.c stable/10/crypto/openssl/crypto/sha/sha512t.c stable/10/crypto/openssl/crypto/sha/sha_dgst.c stable/10/crypto/openssl/crypto/sha/sha_locl.h stable/10/crypto/openssl/crypto/sha/sha_one.c stable/10/crypto/openssl/crypto/sha/shatest.c stable/10/crypto/openssl/crypto/sparcv9cap.c stable/10/crypto/openssl/crypto/srp/srp.h stable/10/crypto/openssl/crypto/srp/srp_grps.h stable/10/crypto/openssl/crypto/srp/srp_lcl.h stable/10/crypto/openssl/crypto/srp/srp_lib.c stable/10/crypto/openssl/crypto/srp/srp_vfy.c stable/10/crypto/openssl/crypto/srp/srptest.c stable/10/crypto/openssl/crypto/stack/safestack.h stable/10/crypto/openssl/crypto/stack/stack.c stable/10/crypto/openssl/crypto/stack/stack.h stable/10/crypto/openssl/crypto/store/store.h stable/10/crypto/openssl/crypto/store/str_err.c stable/10/crypto/openssl/crypto/store/str_lib.c stable/10/crypto/openssl/crypto/store/str_locl.h stable/10/crypto/openssl/crypto/store/str_mem.c stable/10/crypto/openssl/crypto/store/str_meth.c stable/10/crypto/openssl/crypto/symhacks.h stable/10/crypto/openssl/crypto/threads/mttest.c stable/10/crypto/openssl/crypto/threads/th-lock.c stable/10/crypto/openssl/crypto/ts/ts.h stable/10/crypto/openssl/crypto/ts/ts_asn1.c stable/10/crypto/openssl/crypto/ts/ts_conf.c stable/10/crypto/openssl/crypto/ts/ts_err.c stable/10/crypto/openssl/crypto/ts/ts_lib.c stable/10/crypto/openssl/crypto/ts/ts_req_print.c stable/10/crypto/openssl/crypto/ts/ts_req_utils.c stable/10/crypto/openssl/crypto/ts/ts_rsp_print.c stable/10/crypto/openssl/crypto/ts/ts_rsp_sign.c stable/10/crypto/openssl/crypto/ts/ts_rsp_utils.c stable/10/crypto/openssl/crypto/ts/ts_rsp_verify.c stable/10/crypto/openssl/crypto/ts/ts_verify_ctx.c stable/10/crypto/openssl/crypto/txt_db/txt_db.c stable/10/crypto/openssl/crypto/txt_db/txt_db.h stable/10/crypto/openssl/crypto/ui/ui.h stable/10/crypto/openssl/crypto/ui/ui_compat.c stable/10/crypto/openssl/crypto/ui/ui_compat.h stable/10/crypto/openssl/crypto/ui/ui_err.c stable/10/crypto/openssl/crypto/ui/ui_lib.c stable/10/crypto/openssl/crypto/ui/ui_locl.h stable/10/crypto/openssl/crypto/ui/ui_openssl.c stable/10/crypto/openssl/crypto/ui/ui_util.c stable/10/crypto/openssl/crypto/uid.c stable/10/crypto/openssl/crypto/vms_rms.h stable/10/crypto/openssl/crypto/whrlpool/whrlpool.h stable/10/crypto/openssl/crypto/whrlpool/wp_block.c stable/10/crypto/openssl/crypto/whrlpool/wp_dgst.c stable/10/crypto/openssl/crypto/whrlpool/wp_locl.h stable/10/crypto/openssl/crypto/whrlpool/wp_test.c stable/10/crypto/openssl/crypto/x509/by_dir.c stable/10/crypto/openssl/crypto/x509/by_file.c stable/10/crypto/openssl/crypto/x509/x509.h stable/10/crypto/openssl/crypto/x509/x509_att.c stable/10/crypto/openssl/crypto/x509/x509_cmp.c stable/10/crypto/openssl/crypto/x509/x509_d2.c stable/10/crypto/openssl/crypto/x509/x509_def.c stable/10/crypto/openssl/crypto/x509/x509_err.c stable/10/crypto/openssl/crypto/x509/x509_ext.c stable/10/crypto/openssl/crypto/x509/x509_lu.c stable/10/crypto/openssl/crypto/x509/x509_obj.c stable/10/crypto/openssl/crypto/x509/x509_r2x.c stable/10/crypto/openssl/crypto/x509/x509_req.c stable/10/crypto/openssl/crypto/x509/x509_set.c stable/10/crypto/openssl/crypto/x509/x509_trs.c stable/10/crypto/openssl/crypto/x509/x509_txt.c stable/10/crypto/openssl/crypto/x509/x509_v3.c stable/10/crypto/openssl/crypto/x509/x509_vfy.c stable/10/crypto/openssl/crypto/x509/x509_vfy.h stable/10/crypto/openssl/crypto/x509/x509_vpm.c stable/10/crypto/openssl/crypto/x509/x509cset.c stable/10/crypto/openssl/crypto/x509/x509name.c stable/10/crypto/openssl/crypto/x509/x509rset.c stable/10/crypto/openssl/crypto/x509/x509spki.c stable/10/crypto/openssl/crypto/x509/x509type.c stable/10/crypto/openssl/crypto/x509/x_all.c stable/10/crypto/openssl/crypto/x509v3/ext_dat.h stable/10/crypto/openssl/crypto/x509v3/pcy_cache.c stable/10/crypto/openssl/crypto/x509v3/pcy_data.c stable/10/crypto/openssl/crypto/x509v3/pcy_int.h stable/10/crypto/openssl/crypto/x509v3/pcy_lib.c stable/10/crypto/openssl/crypto/x509v3/pcy_map.c stable/10/crypto/openssl/crypto/x509v3/pcy_node.c stable/10/crypto/openssl/crypto/x509v3/pcy_tree.c stable/10/crypto/openssl/crypto/x509v3/tabtest.c stable/10/crypto/openssl/crypto/x509v3/v3_addr.c stable/10/crypto/openssl/crypto/x509v3/v3_akey.c stable/10/crypto/openssl/crypto/x509v3/v3_akeya.c stable/10/crypto/openssl/crypto/x509v3/v3_alt.c stable/10/crypto/openssl/crypto/x509v3/v3_asid.c stable/10/crypto/openssl/crypto/x509v3/v3_bcons.c stable/10/crypto/openssl/crypto/x509v3/v3_bitst.c stable/10/crypto/openssl/crypto/x509v3/v3_conf.c stable/10/crypto/openssl/crypto/x509v3/v3_cpols.c stable/10/crypto/openssl/crypto/x509v3/v3_crld.c stable/10/crypto/openssl/crypto/x509v3/v3_enum.c stable/10/crypto/openssl/crypto/x509v3/v3_extku.c stable/10/crypto/openssl/crypto/x509v3/v3_genn.c stable/10/crypto/openssl/crypto/x509v3/v3_ia5.c stable/10/crypto/openssl/crypto/x509v3/v3_info.c stable/10/crypto/openssl/crypto/x509v3/v3_int.c stable/10/crypto/openssl/crypto/x509v3/v3_lib.c stable/10/crypto/openssl/crypto/x509v3/v3_ncons.c stable/10/crypto/openssl/crypto/x509v3/v3_ocsp.c stable/10/crypto/openssl/crypto/x509v3/v3_pci.c stable/10/crypto/openssl/crypto/x509v3/v3_pcia.c stable/10/crypto/openssl/crypto/x509v3/v3_pcons.c stable/10/crypto/openssl/crypto/x509v3/v3_pku.c stable/10/crypto/openssl/crypto/x509v3/v3_pmaps.c stable/10/crypto/openssl/crypto/x509v3/v3_prn.c stable/10/crypto/openssl/crypto/x509v3/v3_purp.c stable/10/crypto/openssl/crypto/x509v3/v3_skey.c stable/10/crypto/openssl/crypto/x509v3/v3_sxnet.c stable/10/crypto/openssl/crypto/x509v3/v3_utl.c stable/10/crypto/openssl/crypto/x509v3/v3conf.c stable/10/crypto/openssl/crypto/x509v3/v3err.c stable/10/crypto/openssl/crypto/x509v3/v3prin.c stable/10/crypto/openssl/crypto/x509v3/x509v3.h stable/10/crypto/openssl/doc/apps/ciphers.pod stable/10/crypto/openssl/doc/apps/config.pod stable/10/crypto/openssl/doc/apps/ocsp.pod stable/10/crypto/openssl/doc/crypto/CMS_get0_type.pod stable/10/crypto/openssl/doc/crypto/CONF_modules_load_file.pod stable/10/crypto/openssl/doc/crypto/OPENSSL_config.pod stable/10/crypto/openssl/doc/crypto/d2i_X509.pod stable/10/crypto/openssl/doc/ssl/SSL_pending.pod stable/10/crypto/openssl/doc/ssl/ssl.pod stable/10/crypto/openssl/e_os.h stable/10/crypto/openssl/e_os2.h stable/10/crypto/openssl/engines/ccgost/e_gost_err.c stable/10/crypto/openssl/engines/ccgost/e_gost_err.h stable/10/crypto/openssl/engines/ccgost/gost2001.c stable/10/crypto/openssl/engines/ccgost/gost2001_keyx.c stable/10/crypto/openssl/engines/ccgost/gost2001_keyx.h stable/10/crypto/openssl/engines/ccgost/gost89.c stable/10/crypto/openssl/engines/ccgost/gost89.h stable/10/crypto/openssl/engines/ccgost/gost94_keyx.c stable/10/crypto/openssl/engines/ccgost/gost_ameth.c stable/10/crypto/openssl/engines/ccgost/gost_asn1.c stable/10/crypto/openssl/engines/ccgost/gost_crypt.c stable/10/crypto/openssl/engines/ccgost/gost_ctl.c stable/10/crypto/openssl/engines/ccgost/gost_eng.c stable/10/crypto/openssl/engines/ccgost/gost_keywrap.c stable/10/crypto/openssl/engines/ccgost/gost_keywrap.h stable/10/crypto/openssl/engines/ccgost/gost_lcl.h stable/10/crypto/openssl/engines/ccgost/gost_md.c stable/10/crypto/openssl/engines/ccgost/gost_params.c stable/10/crypto/openssl/engines/ccgost/gost_params.h stable/10/crypto/openssl/engines/ccgost/gost_pmeth.c stable/10/crypto/openssl/engines/ccgost/gost_sign.c stable/10/crypto/openssl/engines/ccgost/gosthash.c stable/10/crypto/openssl/engines/ccgost/gosthash.h stable/10/crypto/openssl/engines/ccgost/gostsum.c stable/10/crypto/openssl/engines/e_4758cca.c stable/10/crypto/openssl/engines/e_4758cca_err.c stable/10/crypto/openssl/engines/e_4758cca_err.h stable/10/crypto/openssl/engines/e_aep.c stable/10/crypto/openssl/engines/e_aep_err.c stable/10/crypto/openssl/engines/e_aep_err.h stable/10/crypto/openssl/engines/e_atalla.c stable/10/crypto/openssl/engines/e_atalla_err.c stable/10/crypto/openssl/engines/e_atalla_err.h stable/10/crypto/openssl/engines/e_capi.c stable/10/crypto/openssl/engines/e_capi_err.c stable/10/crypto/openssl/engines/e_capi_err.h stable/10/crypto/openssl/engines/e_chil.c stable/10/crypto/openssl/engines/e_chil_err.c stable/10/crypto/openssl/engines/e_chil_err.h stable/10/crypto/openssl/engines/e_cswift.c stable/10/crypto/openssl/engines/e_cswift_err.c stable/10/crypto/openssl/engines/e_cswift_err.h stable/10/crypto/openssl/engines/e_gmp.c stable/10/crypto/openssl/engines/e_gmp_err.c stable/10/crypto/openssl/engines/e_gmp_err.h stable/10/crypto/openssl/engines/e_nuron.c stable/10/crypto/openssl/engines/e_nuron_err.c stable/10/crypto/openssl/engines/e_nuron_err.h stable/10/crypto/openssl/engines/e_padlock.c stable/10/crypto/openssl/engines/e_sureware.c stable/10/crypto/openssl/engines/e_sureware_err.c stable/10/crypto/openssl/engines/e_sureware_err.h stable/10/crypto/openssl/engines/e_ubsec.c stable/10/crypto/openssl/engines/e_ubsec_err.c stable/10/crypto/openssl/engines/e_ubsec_err.h stable/10/crypto/openssl/engines/vendor_defns/aep.h stable/10/crypto/openssl/engines/vendor_defns/atalla.h stable/10/crypto/openssl/engines/vendor_defns/cswift.h stable/10/crypto/openssl/engines/vendor_defns/hw_4758_cca.h stable/10/crypto/openssl/engines/vendor_defns/hw_ubsec.h stable/10/crypto/openssl/engines/vendor_defns/hwcryptohook.h stable/10/crypto/openssl/engines/vendor_defns/sureware.h stable/10/crypto/openssl/ssl/bio_ssl.c stable/10/crypto/openssl/ssl/d1_both.c stable/10/crypto/openssl/ssl/d1_clnt.c stable/10/crypto/openssl/ssl/d1_enc.c stable/10/crypto/openssl/ssl/d1_lib.c stable/10/crypto/openssl/ssl/d1_meth.c stable/10/crypto/openssl/ssl/d1_pkt.c stable/10/crypto/openssl/ssl/d1_srtp.c stable/10/crypto/openssl/ssl/d1_srvr.c stable/10/crypto/openssl/ssl/dtls1.h stable/10/crypto/openssl/ssl/heartbeat_test.c stable/10/crypto/openssl/ssl/kssl.c stable/10/crypto/openssl/ssl/kssl.h stable/10/crypto/openssl/ssl/kssl_lcl.h stable/10/crypto/openssl/ssl/s23_clnt.c stable/10/crypto/openssl/ssl/s23_lib.c stable/10/crypto/openssl/ssl/s23_meth.c stable/10/crypto/openssl/ssl/s23_pkt.c stable/10/crypto/openssl/ssl/s23_srvr.c stable/10/crypto/openssl/ssl/s2_clnt.c stable/10/crypto/openssl/ssl/s2_enc.c stable/10/crypto/openssl/ssl/s2_lib.c stable/10/crypto/openssl/ssl/s2_meth.c stable/10/crypto/openssl/ssl/s2_pkt.c stable/10/crypto/openssl/ssl/s2_srvr.c stable/10/crypto/openssl/ssl/s3_both.c stable/10/crypto/openssl/ssl/s3_cbc.c stable/10/crypto/openssl/ssl/s3_clnt.c stable/10/crypto/openssl/ssl/s3_enc.c stable/10/crypto/openssl/ssl/s3_lib.c stable/10/crypto/openssl/ssl/s3_meth.c stable/10/crypto/openssl/ssl/s3_pkt.c stable/10/crypto/openssl/ssl/s3_srvr.c stable/10/crypto/openssl/ssl/srtp.h stable/10/crypto/openssl/ssl/ssl.h stable/10/crypto/openssl/ssl/ssl2.h stable/10/crypto/openssl/ssl/ssl23.h stable/10/crypto/openssl/ssl/ssl3.h stable/10/crypto/openssl/ssl/ssl_algs.c stable/10/crypto/openssl/ssl/ssl_asn1.c stable/10/crypto/openssl/ssl/ssl_cert.c stable/10/crypto/openssl/ssl/ssl_ciph.c stable/10/crypto/openssl/ssl/ssl_err.c stable/10/crypto/openssl/ssl/ssl_err2.c stable/10/crypto/openssl/ssl/ssl_lib.c stable/10/crypto/openssl/ssl/ssl_locl.h stable/10/crypto/openssl/ssl/ssl_rsa.c stable/10/crypto/openssl/ssl/ssl_sess.c stable/10/crypto/openssl/ssl/ssl_stat.c stable/10/crypto/openssl/ssl/ssl_task.c stable/10/crypto/openssl/ssl/ssl_txt.c stable/10/crypto/openssl/ssl/ssl_utst.c stable/10/crypto/openssl/ssl/ssltest.c stable/10/crypto/openssl/ssl/t1_clnt.c stable/10/crypto/openssl/ssl/t1_enc.c stable/10/crypto/openssl/ssl/t1_lib.c stable/10/crypto/openssl/ssl/t1_meth.c stable/10/crypto/openssl/ssl/t1_reneg.c stable/10/crypto/openssl/ssl/t1_srvr.c stable/10/crypto/openssl/ssl/tls1.h stable/10/crypto/openssl/ssl/tls_srp.c stable/10/crypto/openssl/util/ck_errf.pl stable/10/crypto/openssl/util/libeay.num stable/10/crypto/openssl/util/mkerr.pl stable/10/secure/lib/libcrypto/Makefile.inc stable/10/secure/lib/libcrypto/Makefile.man stable/10/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/10/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/10/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/10/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/10/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/10/secure/lib/libcrypto/man/BIO_ctrl.3 stable/10/secure/lib/libcrypto/man/BIO_f_base64.3 stable/10/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/10/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/10/secure/lib/libcrypto/man/BIO_f_md.3 stable/10/secure/lib/libcrypto/man/BIO_f_null.3 stable/10/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/10/secure/lib/libcrypto/man/BIO_find_type.3 stable/10/secure/lib/libcrypto/man/BIO_new.3 stable/10/secure/lib/libcrypto/man/BIO_new_CMS.3 stable/10/secure/lib/libcrypto/man/BIO_push.3 stable/10/secure/lib/libcrypto/man/BIO_read.3 stable/10/secure/lib/libcrypto/man/BIO_s_accept.3 stable/10/secure/lib/libcrypto/man/BIO_s_bio.3 stable/10/secure/lib/libcrypto/man/BIO_s_connect.3 stable/10/secure/lib/libcrypto/man/BIO_s_fd.3 stable/10/secure/lib/libcrypto/man/BIO_s_file.3 stable/10/secure/lib/libcrypto/man/BIO_s_mem.3 stable/10/secure/lib/libcrypto/man/BIO_s_null.3 stable/10/secure/lib/libcrypto/man/BIO_s_socket.3 stable/10/secure/lib/libcrypto/man/BIO_set_callback.3 stable/10/secure/lib/libcrypto/man/BIO_should_retry.3 stable/10/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/10/secure/lib/libcrypto/man/BN_CTX_new.3 stable/10/secure/lib/libcrypto/man/BN_CTX_start.3 stable/10/secure/lib/libcrypto/man/BN_add.3 stable/10/secure/lib/libcrypto/man/BN_add_word.3 stable/10/secure/lib/libcrypto/man/BN_bn2bin.3 stable/10/secure/lib/libcrypto/man/BN_cmp.3 stable/10/secure/lib/libcrypto/man/BN_copy.3 stable/10/secure/lib/libcrypto/man/BN_generate_prime.3 stable/10/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/10/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/10/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/10/secure/lib/libcrypto/man/BN_new.3 stable/10/secure/lib/libcrypto/man/BN_num_bytes.3 stable/10/secure/lib/libcrypto/man/BN_rand.3 stable/10/secure/lib/libcrypto/man/BN_set_bit.3 stable/10/secure/lib/libcrypto/man/BN_swap.3 stable/10/secure/lib/libcrypto/man/BN_zero.3 stable/10/secure/lib/libcrypto/man/CMS_add0_cert.3 stable/10/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 stable/10/secure/lib/libcrypto/man/CMS_add1_signer.3 stable/10/secure/lib/libcrypto/man/CMS_compress.3 stable/10/secure/lib/libcrypto/man/CMS_decrypt.3 stable/10/secure/lib/libcrypto/man/CMS_encrypt.3 stable/10/secure/lib/libcrypto/man/CMS_final.3 stable/10/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 stable/10/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 stable/10/secure/lib/libcrypto/man/CMS_get0_type.3 stable/10/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 stable/10/secure/lib/libcrypto/man/CMS_sign.3 stable/10/secure/lib/libcrypto/man/CMS_sign_receipt.3 stable/10/secure/lib/libcrypto/man/CMS_uncompress.3 stable/10/secure/lib/libcrypto/man/CMS_verify.3 stable/10/secure/lib/libcrypto/man/CMS_verify_receipt.3 stable/10/secure/lib/libcrypto/man/CONF_modules_free.3 stable/10/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/10/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/10/secure/lib/libcrypto/man/DH_generate_key.3 stable/10/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/10/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/10/secure/lib/libcrypto/man/DH_new.3 stable/10/secure/lib/libcrypto/man/DH_set_method.3 stable/10/secure/lib/libcrypto/man/DH_size.3 stable/10/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/10/secure/lib/libcrypto/man/DSA_do_sign.3 stable/10/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/10/secure/lib/libcrypto/man/DSA_generate_key.3 stable/10/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/10/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/10/secure/lib/libcrypto/man/DSA_new.3 stable/10/secure/lib/libcrypto/man/DSA_set_method.3 stable/10/secure/lib/libcrypto/man/DSA_sign.3 stable/10/secure/lib/libcrypto/man/DSA_size.3 stable/10/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/10/secure/lib/libcrypto/man/ERR_clear_error.3 stable/10/secure/lib/libcrypto/man/ERR_error_string.3 stable/10/secure/lib/libcrypto/man/ERR_get_error.3 stable/10/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/10/secure/lib/libcrypto/man/ERR_load_strings.3 stable/10/secure/lib/libcrypto/man/ERR_print_errors.3 stable/10/secure/lib/libcrypto/man/ERR_put_error.3 stable/10/secure/lib/libcrypto/man/ERR_remove_state.3 stable/10/secure/lib/libcrypto/man/ERR_set_mark.3 stable/10/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/10/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/10/secure/lib/libcrypto/man/EVP_DigestSignInit.3 stable/10/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 stable/10/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/10/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_derive.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_sign.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_verify.3 stable/10/secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3 stable/10/secure/lib/libcrypto/man/EVP_SealInit.3 stable/10/secure/lib/libcrypto/man/EVP_SignInit.3 stable/10/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/10/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/10/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/10/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/10/secure/lib/libcrypto/man/OPENSSL_config.3 stable/10/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/10/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/10/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/10/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 stable/10/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 stable/10/secure/lib/libcrypto/man/PKCS12_create.3 stable/10/secure/lib/libcrypto/man/PKCS12_parse.3 stable/10/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/10/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/10/secure/lib/libcrypto/man/PKCS7_sign.3 stable/10/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 stable/10/secure/lib/libcrypto/man/PKCS7_verify.3 stable/10/secure/lib/libcrypto/man/RAND_add.3 stable/10/secure/lib/libcrypto/man/RAND_bytes.3 stable/10/secure/lib/libcrypto/man/RAND_cleanup.3 stable/10/secure/lib/libcrypto/man/RAND_egd.3 stable/10/secure/lib/libcrypto/man/RAND_load_file.3 stable/10/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/10/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/10/secure/lib/libcrypto/man/RSA_check_key.3 stable/10/secure/lib/libcrypto/man/RSA_generate_key.3 stable/10/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/10/secure/lib/libcrypto/man/RSA_new.3 stable/10/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/10/secure/lib/libcrypto/man/RSA_print.3 stable/10/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/10/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/10/secure/lib/libcrypto/man/RSA_set_method.3 stable/10/secure/lib/libcrypto/man/RSA_sign.3 stable/10/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/10/secure/lib/libcrypto/man/RSA_size.3 stable/10/secure/lib/libcrypto/man/SMIME_read_CMS.3 stable/10/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/10/secure/lib/libcrypto/man/SMIME_write_CMS.3 stable/10/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/10/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/10/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/10/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/10/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/10/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 stable/10/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 stable/10/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 stable/10/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 stable/10/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 stable/10/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 stable/10/secure/lib/libcrypto/man/X509_new.3 stable/10/secure/lib/libcrypto/man/X509_verify_cert.3 stable/10/secure/lib/libcrypto/man/bio.3 stable/10/secure/lib/libcrypto/man/blowfish.3 stable/10/secure/lib/libcrypto/man/bn.3 stable/10/secure/lib/libcrypto/man/bn_internal.3 stable/10/secure/lib/libcrypto/man/buffer.3 stable/10/secure/lib/libcrypto/man/crypto.3 stable/10/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/10/secure/lib/libcrypto/man/d2i_DHparams.3 stable/10/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/10/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/10/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/10/secure/lib/libcrypto/man/d2i_X509.3 stable/10/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/10/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/10/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/10/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/10/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/10/secure/lib/libcrypto/man/des.3 stable/10/secure/lib/libcrypto/man/dh.3 stable/10/secure/lib/libcrypto/man/dsa.3 stable/10/secure/lib/libcrypto/man/ecdsa.3 stable/10/secure/lib/libcrypto/man/engine.3 stable/10/secure/lib/libcrypto/man/err.3 stable/10/secure/lib/libcrypto/man/evp.3 stable/10/secure/lib/libcrypto/man/hmac.3 stable/10/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 stable/10/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 stable/10/secure/lib/libcrypto/man/lh_stats.3 stable/10/secure/lib/libcrypto/man/lhash.3 stable/10/secure/lib/libcrypto/man/md5.3 stable/10/secure/lib/libcrypto/man/mdc2.3 stable/10/secure/lib/libcrypto/man/pem.3 stable/10/secure/lib/libcrypto/man/rand.3 stable/10/secure/lib/libcrypto/man/rc4.3 stable/10/secure/lib/libcrypto/man/ripemd.3 stable/10/secure/lib/libcrypto/man/rsa.3 stable/10/secure/lib/libcrypto/man/sha.3 stable/10/secure/lib/libcrypto/man/threads.3 stable/10/secure/lib/libcrypto/man/ui.3 stable/10/secure/lib/libcrypto/man/ui_compat.3 stable/10/secure/lib/libcrypto/man/x509.3 stable/10/secure/lib/libcrypto/opensslconf-arm.h stable/10/secure/lib/libcrypto/opensslconf-mips.h stable/10/secure/lib/libcrypto/opensslconf-powerpc.h stable/10/secure/lib/libcrypto/opensslconf-sparc64.h stable/10/secure/lib/libcrypto/opensslconf-x86.h stable/10/secure/lib/libssl/Makefile.man stable/10/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/10/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/10/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/10/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/10/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/10/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/10/secure/lib/libssl/man/SSL_CTX_free.3 stable/10/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/10/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/10/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/10/secure/lib/libssl/man/SSL_CTX_new.3 stable/10/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/10/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/10/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/10/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/10/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/10/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/10/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 stable/10/secure/lib/libssl/man/SSL_SESSION_free.3 stable/10/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/10/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/10/secure/lib/libssl/man/SSL_accept.3 stable/10/secure/lib/libssl/man/SSL_alert_type_string.3 stable/10/secure/lib/libssl/man/SSL_clear.3 stable/10/secure/lib/libssl/man/SSL_connect.3 stable/10/secure/lib/libssl/man/SSL_do_handshake.3 stable/10/secure/lib/libssl/man/SSL_free.3 stable/10/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/10/secure/lib/libssl/man/SSL_get_ciphers.3 stable/10/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/10/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/10/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/10/secure/lib/libssl/man/SSL_get_error.3 stable/10/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/10/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/10/secure/lib/libssl/man/SSL_get_fd.3 stable/10/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/10/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/10/secure/lib/libssl/man/SSL_get_psk_identity.3 stable/10/secure/lib/libssl/man/SSL_get_rbio.3 stable/10/secure/lib/libssl/man/SSL_get_session.3 stable/10/secure/lib/libssl/man/SSL_get_verify_result.3 stable/10/secure/lib/libssl/man/SSL_get_version.3 stable/10/secure/lib/libssl/man/SSL_library_init.3 stable/10/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/10/secure/lib/libssl/man/SSL_new.3 stable/10/secure/lib/libssl/man/SSL_pending.3 stable/10/secure/lib/libssl/man/SSL_read.3 stable/10/secure/lib/libssl/man/SSL_rstate_string.3 stable/10/secure/lib/libssl/man/SSL_session_reused.3 stable/10/secure/lib/libssl/man/SSL_set_bio.3 stable/10/secure/lib/libssl/man/SSL_set_connect_state.3 stable/10/secure/lib/libssl/man/SSL_set_fd.3 stable/10/secure/lib/libssl/man/SSL_set_session.3 stable/10/secure/lib/libssl/man/SSL_set_shutdown.3 stable/10/secure/lib/libssl/man/SSL_set_verify_result.3 stable/10/secure/lib/libssl/man/SSL_shutdown.3 stable/10/secure/lib/libssl/man/SSL_state_string.3 stable/10/secure/lib/libssl/man/SSL_want.3 stable/10/secure/lib/libssl/man/SSL_write.3 stable/10/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/10/secure/lib/libssl/man/ssl.3 stable/10/secure/usr.bin/openssl/man/CA.pl.1 stable/10/secure/usr.bin/openssl/man/asn1parse.1 stable/10/secure/usr.bin/openssl/man/c_rehash.1 stable/10/secure/usr.bin/openssl/man/ca.1 stable/10/secure/usr.bin/openssl/man/ciphers.1 stable/10/secure/usr.bin/openssl/man/cms.1 stable/10/secure/usr.bin/openssl/man/crl.1 stable/10/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/10/secure/usr.bin/openssl/man/dgst.1 stable/10/secure/usr.bin/openssl/man/dhparam.1 stable/10/secure/usr.bin/openssl/man/dsa.1 stable/10/secure/usr.bin/openssl/man/dsaparam.1 stable/10/secure/usr.bin/openssl/man/ec.1 stable/10/secure/usr.bin/openssl/man/ecparam.1 stable/10/secure/usr.bin/openssl/man/enc.1 stable/10/secure/usr.bin/openssl/man/errstr.1 stable/10/secure/usr.bin/openssl/man/gendsa.1 stable/10/secure/usr.bin/openssl/man/genpkey.1 stable/10/secure/usr.bin/openssl/man/genrsa.1 stable/10/secure/usr.bin/openssl/man/nseq.1 stable/10/secure/usr.bin/openssl/man/ocsp.1 stable/10/secure/usr.bin/openssl/man/openssl.1 stable/10/secure/usr.bin/openssl/man/passwd.1 stable/10/secure/usr.bin/openssl/man/pkcs12.1 stable/10/secure/usr.bin/openssl/man/pkcs7.1 stable/10/secure/usr.bin/openssl/man/pkcs8.1 stable/10/secure/usr.bin/openssl/man/pkey.1 stable/10/secure/usr.bin/openssl/man/pkeyparam.1 stable/10/secure/usr.bin/openssl/man/pkeyutl.1 stable/10/secure/usr.bin/openssl/man/rand.1 stable/10/secure/usr.bin/openssl/man/req.1 stable/10/secure/usr.bin/openssl/man/rsa.1 stable/10/secure/usr.bin/openssl/man/rsautl.1 stable/10/secure/usr.bin/openssl/man/s_client.1 stable/10/secure/usr.bin/openssl/man/s_server.1 stable/10/secure/usr.bin/openssl/man/s_time.1 stable/10/secure/usr.bin/openssl/man/sess_id.1 stable/10/secure/usr.bin/openssl/man/smime.1 stable/10/secure/usr.bin/openssl/man/speed.1 stable/10/secure/usr.bin/openssl/man/spkac.1 stable/10/secure/usr.bin/openssl/man/ts.1 stable/10/secure/usr.bin/openssl/man/tsget.1 stable/10/secure/usr.bin/openssl/man/verify.1 stable/10/secure/usr.bin/openssl/man/version.1 stable/10/secure/usr.bin/openssl/man/x509.1 stable/10/secure/usr.bin/openssl/man/x509v3_config.1 Directory Properties: stable/10/ (props changed) Modified: stable/10/crypto/openssl/CHANGES ============================================================================== --- stable/10/crypto/openssl/CHANGES Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/CHANGES Fri Mar 20 21:54:45 2015 (r280304) @@ -2,6 +2,83 @@ OpenSSL CHANGES _______________ + Changes between 1.0.1l and 1.0.1m [19 Mar 2015] + + *) Segmentation fault in ASN1_TYPE_cmp fix + + The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is + made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check + certificate signature algorithm consistency this can be used to crash any + certificate verification operation and exploited in a DoS attack. Any + application which performs certificate verification is vulnerable including + OpenSSL clients and servers which enable client authentication. + (CVE-2015-0286) + [Stephen Henson] + + *) ASN.1 structure reuse memory corruption fix + + Reusing a structure in ASN.1 parsing may allow an attacker to cause + memory corruption via an invalid write. Such reuse is and has been + strongly discouraged and is believed to be rare. + + Applications that parse structures containing CHOICE or ANY DEFINED BY + components may be affected. Certificate parsing (d2i_X509 and related + functions) are however not affected. OpenSSL clients and servers are + not affected. + (CVE-2015-0287) + [Stephen Henson] + + *) PKCS7 NULL pointer dereferences fix + + The PKCS#7 parsing code does not handle missing outer ContentInfo + correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with + missing content and trigger a NULL pointer dereference on parsing. + + Applications that verify PKCS#7 signatures, decrypt PKCS#7 data or + otherwise parse PKCS#7 structures from untrusted sources are + affected. OpenSSL clients and servers are not affected. + + This issue was reported to OpenSSL by Michal Zalewski (Google). + (CVE-2015-0289) + [Emilia Käsper] + + *) DoS via reachable assert in SSLv2 servers fix + + A malicious client can trigger an OPENSSL_assert (i.e., an abort) in + servers that both support SSLv2 and enable export cipher suites by sending + a specially crafted SSLv2 CLIENT-MASTER-KEY message. + + This issue was discovered by Sean Burford (Google) and Emilia Käsper + (OpenSSL development team). + (CVE-2015-0293) + [Emilia Käsper] + + *) Use After Free following d2i_ECPrivatekey error fix + + A malformed EC private key file consumed via the d2i_ECPrivateKey function + could cause a use after free condition. This, in turn, could cause a double + free in several private key parsing functions (such as d2i_PrivateKey + or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption + for applications that receive EC private keys from untrusted + sources. This scenario is considered rare. + + This issue was discovered by the BoringSSL project and fixed in their + commit 517073cd4b. + (CVE-2015-0209) + [Matt Caswell] + + *) X509_to_X509_REQ NULL pointer deref fix + + The function X509_to_X509_REQ will crash with a NULL pointer dereference if + the certificate key is invalid. This function is rarely used in practice. + + This issue was discovered by Brian Carpenter. + (CVE-2015-0288) + [Stephen Henson] + + *) Removed the export ciphers from the DEFAULT ciphers + [Kurt Roeckx] + Changes between 1.0.1k and 1.0.1l [15 Jan 2015] *) Build fixes for the Windows and OpenVMS platforms @@ -771,63 +848,6 @@ Add command line options to s_client/s_server. [Steve Henson] - Changes between 1.0.0j and 1.0.0k [5 Feb 2013] - - *) Make the decoding of SSLv3, TLS and DTLS CBC records constant time. - - This addresses the flaw in CBC record processing discovered by - Nadhem Alfardan and Kenny Paterson. Details of this attack can be found - at: http://www.isg.rhul.ac.uk/tls/ - - Thanks go to Nadhem Alfardan and Kenny Paterson of the Information - Security Group at Royal Holloway, University of London - (www.isg.rhul.ac.uk) for discovering this flaw and Adam Langley and - Emilia Käsper for the initial patch. - (CVE-2013-0169) - [Emilia Käsper, Adam Langley, Ben Laurie, Andy Polyakov, Steve Henson] - - *) Return an error when checking OCSP signatures when key is NULL. - This fixes a DoS attack. (CVE-2013-0166) - [Steve Henson] - - *) Call OCSP Stapling callback after ciphersuite has been chosen, so - the right response is stapled. Also change SSL_get_certificate() - so it returns the certificate actually sent. - See http://rt.openssl.org/Ticket/Display.html?id=2836. - (This is a backport) - [Rob Stradling ] - - *) Fix possible deadlock when decoding public keys. - [Steve Henson] - - Changes between 1.0.0i and 1.0.0j [10 May 2012] - - [NB: OpenSSL 1.0.0i and later 1.0.0 patch levels were released after - OpenSSL 1.0.1.] - - *) Sanity check record length before skipping explicit IV in DTLS - to fix DoS attack. - - Thanks to Codenomicon for discovering this issue using Fuzz-o-Matic - fuzzing as a service testing platform. - (CVE-2012-2333) - [Steve Henson] - - *) Initialise tkeylen properly when encrypting CMS messages. - Thanks to Solar Designer of Openwall for reporting this issue. - [Steve Henson] - - Changes between 1.0.0h and 1.0.0i [19 Apr 2012] - - *) Check for potentially exploitable overflows in asn1_d2i_read_bio - BUF_mem_grow and BUF_mem_grow_clean. Refuse attempts to shrink buffer - in CRYPTO_realloc_clean. - - Thanks to Tavis Ormandy, Google Security Team, for discovering this - issue and to Adam Langley for fixing it. - (CVE-2012-2110) - [Adam Langley (Google), Tavis Ormandy, Google Security Team] - Changes between 1.0.0g and 1.0.0h [12 Mar 2012] *) Fix MMA (Bleichenbacher's attack on PKCS #1 v1.5 RSA padding) weakness @@ -1818,228 +1838,6 @@ *) Change 'Configure' script to enable Camellia by default. [NTT] - Changes between 0.9.8x and 0.9.8y [5 Feb 2013] - - *) Make the decoding of SSLv3, TLS and DTLS CBC records constant time. - - This addresses the flaw in CBC record processing discovered by - Nadhem Alfardan and Kenny Paterson. Details of this attack can be found - at: http://www.isg.rhul.ac.uk/tls/ - - Thanks go to Nadhem Alfardan and Kenny Paterson of the Information - Security Group at Royal Holloway, University of London - (www.isg.rhul.ac.uk) for discovering this flaw and Adam Langley and - Emilia Käsper for the initial patch. - (CVE-2013-0169) - [Emilia Käsper, Adam Langley, Ben Laurie, Andy Polyakov, Steve Henson] - - *) Return an error when checking OCSP signatures when key is NULL. - This fixes a DoS attack. (CVE-2013-0166) - [Steve Henson] - - *) Call OCSP Stapling callback after ciphersuite has been chosen, so - the right response is stapled. Also change SSL_get_certificate() - so it returns the certificate actually sent. - See http://rt.openssl.org/Ticket/Display.html?id=2836. - (This is a backport) - [Rob Stradling ] - - *) Fix possible deadlock when decoding public keys. - [Steve Henson] - - Changes between 0.9.8w and 0.9.8x [10 May 2012] - - *) Sanity check record length before skipping explicit IV in DTLS - to fix DoS attack. - - Thanks to Codenomicon for discovering this issue using Fuzz-o-Matic - fuzzing as a service testing platform. - (CVE-2012-2333) - [Steve Henson] - - *) Initialise tkeylen properly when encrypting CMS messages. - Thanks to Solar Designer of Openwall for reporting this issue. - [Steve Henson] - - Changes between 0.9.8v and 0.9.8w [23 Apr 2012] - - *) The fix for CVE-2012-2110 did not take into account that the - 'len' argument to BUF_MEM_grow and BUF_MEM_grow_clean is an - int in OpenSSL 0.9.8, making it still vulnerable. Fix by - rejecting negative len parameter. (CVE-2012-2131) - [Tomas Hoger ] - - Changes between 0.9.8u and 0.9.8v [19 Apr 2012] - - *) Check for potentially exploitable overflows in asn1_d2i_read_bio - BUF_mem_grow and BUF_mem_grow_clean. Refuse attempts to shrink buffer - in CRYPTO_realloc_clean. - - Thanks to Tavis Ormandy, Google Security Team, for discovering this - issue and to Adam Langley for fixing it. - (CVE-2012-2110) - [Adam Langley (Google), Tavis Ormandy, Google Security Team] - - Changes between 0.9.8t and 0.9.8u [12 Mar 2012] - - *) Fix MMA (Bleichenbacher's attack on PKCS #1 v1.5 RSA padding) weakness - in CMS and PKCS7 code. When RSA decryption fails use a random key for - content decryption and always return the same error. Note: this attack - needs on average 2^20 messages so it only affects automated senders. The - old behaviour can be reenabled in the CMS code by setting the - CMS_DEBUG_DECRYPT flag: this is useful for debugging and testing where - an MMA defence is not necessary. - Thanks to Ivan Nestlerode for discovering - this issue. (CVE-2012-0884) - [Steve Henson] - - *) Fix CVE-2011-4619: make sure we really are receiving a - client hello before rejecting multiple SGC restarts. Thanks to - Ivan Nestlerode for discovering this bug. - [Steve Henson] - - Changes between 0.9.8s and 0.9.8t [18 Jan 2012] - - *) Fix for DTLS DoS issue introduced by fix for CVE-2011-4109. - Thanks to Antonio Martin, Enterprise Secure Access Research and - Development, Cisco Systems, Inc. for discovering this bug and - preparing a fix. (CVE-2012-0050) - [Antonio Martin] - - Changes between 0.9.8r and 0.9.8s [4 Jan 2012] - - *) Nadhem Alfardan and Kenny Paterson have discovered an extension - of the Vaudenay padding oracle attack on CBC mode encryption - which enables an efficient plaintext recovery attack against - the OpenSSL implementation of DTLS. Their attack exploits timing - differences arising during decryption processing. A research - paper describing this attack can be found at: - http://www.isg.rhul.ac.uk/~kp/dtls.pdf - Thanks go to Nadhem Alfardan and Kenny Paterson of the Information - Security Group at Royal Holloway, University of London - (www.isg.rhul.ac.uk) for discovering this flaw and to Robin Seggelmann - and Michael Tuexen - for preparing the fix. (CVE-2011-4108) - [Robin Seggelmann, Michael Tuexen] - - *) Stop policy check failure freeing same buffer twice. (CVE-2011-4109) - [Ben Laurie, Kasper ] - - *) Clear bytes used for block padding of SSL 3.0 records. - (CVE-2011-4576) - [Adam Langley (Google)] - - *) Only allow one SGC handshake restart for SSL/TLS. Thanks to George - Kadianakis for discovering this issue and - Adam Langley for preparing the fix. (CVE-2011-4619) - [Adam Langley (Google)] - - *) Prevent malformed RFC3779 data triggering an assertion failure. - Thanks to Andrew Chi, BBN Technologies, for discovering the flaw - and Rob Austein for fixing it. (CVE-2011-4577) - [Rob Austein ] - - *) Fix ssl_ciph.c set-up race. - [Adam Langley (Google)] - - *) Fix spurious failures in ecdsatest.c. - [Emilia Käsper (Google)] - - *) Fix the BIO_f_buffer() implementation (which was mixing different - interpretations of the '..._len' fields). - [Adam Langley (Google)] - - *) Fix handling of BN_BLINDING: now BN_BLINDING_invert_ex (rather than - BN_BLINDING_invert_ex) calls BN_BLINDING_update, ensuring that concurrent - threads won't reuse the same blinding coefficients. - - This also avoids the need to obtain the CRYPTO_LOCK_RSA_BLINDING - lock to call BN_BLINDING_invert_ex, and avoids one use of - BN_BLINDING_update for each BN_BLINDING structure (previously, - the last update always remained unused). - [Emilia Käsper (Google)] - - *) Fix SSL memory handling for (EC)DH ciphersuites, in particular - for multi-threaded use of ECDH. - [Adam Langley (Google)] - - *) Fix x509_name_ex_d2i memory leak on bad inputs. - [Bodo Moeller] - - *) Add protection against ECDSA timing attacks as mentioned in the paper - by Billy Bob Brumley and Nicola Tuveri, see: - - http://eprint.iacr.org/2011/232.pdf - - [Billy Bob Brumley and Nicola Tuveri] - - Changes between 0.9.8q and 0.9.8r [8 Feb 2011] - - *) Fix parsing of OCSP stapling ClientHello extension. CVE-2011-0014 - [Neel Mehta, Adam Langley, Bodo Moeller (Google)] - - *) Fix bug in string printing code: if *any* escaping is enabled we must - escape the escape character (backslash) or the resulting string is - ambiguous. - [Steve Henson] - - Changes between 0.9.8p and 0.9.8q [2 Dec 2010] - - *) Disable code workaround for ancient and obsolete Netscape browsers - and servers: an attacker can use it in a ciphersuite downgrade attack. - Thanks to Martin Rex for discovering this bug. CVE-2010-4180 - [Steve Henson] - - *) Fixed J-PAKE implementation error, originally discovered by - Sebastien Martini, further info and confirmation from Stefan - Arentz and Feng Hao. Note that this fix is a security fix. CVE-2010-4252 - [Ben Laurie] - - Changes between 0.9.8o and 0.9.8p [16 Nov 2010] - - *) Fix extension code to avoid race conditions which can result in a buffer - overrun vulnerability: resumed sessions must not be modified as they can - be shared by multiple threads. CVE-2010-3864 - [Steve Henson] - - *) Fix for double free bug in ssl/s3_clnt.c CVE-2010-2939 - [Steve Henson] - - *) Don't reencode certificate when calculating signature: cache and use - the original encoding instead. This makes signature verification of - some broken encodings work correctly. - [Steve Henson] - - *) ec2_GF2m_simple_mul bugfix: compute correct result if the output EC_POINT - is also one of the inputs. - [Emilia Käsper (Google)] - - *) Don't repeatedly append PBE algorithms to table if they already exist. - Sort table on each new add. This effectively makes the table read only - after all algorithms are added and subsequent calls to PKCS12_pbe_add - etc are non-op. - [Steve Henson] - - Changes between 0.9.8n and 0.9.8o [01 Jun 2010] - - [NB: OpenSSL 0.9.8o and later 0.9.8 patch levels were released after - OpenSSL 1.0.0.] - - *) Correct a typo in the CMS ASN1 module which can result in invalid memory - access or freeing data twice (CVE-2010-0742) - [Steve Henson, Ronald Moesbergen ] - - *) Add SHA2 algorithms to SSL_library_init(). SHA2 is becoming far more - common in certificates and some applications which only call - SSL_library_init and not OpenSSL_add_all_algorithms() will fail. - [Steve Henson] - - *) VMS fixes: - Reduce copying into .apps and .test in makevms.com - Don't try to use blank CA certificate in CA.com - Allow use of C files from original directories in maketests.com - [Steven M. Schweda" ] - Changes between 0.9.8m and 0.9.8n [24 Mar 2010] *) When rejecting SSL/TLS records due to an incorrect version number, never Modified: stable/10/crypto/openssl/Configure ============================================================================== --- stable/10/crypto/openssl/Configure Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/Configure Fri Mar 20 21:54:45 2015 (r280304) @@ -185,18 +185,18 @@ my %table=( "debug-steve-opt", "gcc:$gcc_devteam_warn -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -g::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "debug-levitte-linux-elf","gcc:-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -ggdb -g3 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "debug-levitte-linux-noasm","gcc:-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -ggdb -g3 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-levitte-linux-elf-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DL_ENDIAN -DTERMIO -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-levitte-linux-noasm-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-levitte-linux-elf-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-levitte-linux-noasm-extreme","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "debug-geoff32","gcc:-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long::-D_REENTRANT::-ldl:BN_LLONG:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "debug-geoff64","gcc:-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-pentium","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -mcpu=pentium -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", -"debug-linux-ppro","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -mcpu=pentiumpro -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", -"debug-linux-elf","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -march=i486 -Wall::-D_REENTRANT::-lefence -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-elf-noefence","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -g -march=i486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-ia32-aes", "gcc:-DAES_EXPERIMENTAL -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:x86cpuid.o:bn-586.o co-586.o x86-mont.o:des-586.o crypt586.o:aes_x86core.o aes_cbc.o aesni-x86.o:bf-586.o:md5-586.o:sha1-586.o sha256-586.o sha512-586.o:cast-586.o:rc4-586.o:rmd-586.o:rc5-586.o:wp_block.o wp-mmx.o::ghash-x86.o::elf:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-generic32","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DTERMIO -g -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-generic64","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DTERMIO -g -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-linux-x86_64","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -m64 -DL_ENDIAN -DTERMIO -g -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"debug-linux-pentium","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -g -mcpu=pentium -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", +"debug-linux-ppro","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -g -mcpu=pentiumpro -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", +"debug-linux-elf","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -g -march=i486 -Wall::-D_REENTRANT::-lefence -ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-elf-noefence","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -g -march=i486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-ia32-aes", "gcc:-DAES_EXPERIMENTAL -DL_ENDIAN -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:x86cpuid.o:bn-586.o co-586.o x86-mont.o:des-586.o crypt586.o:aes_x86core.o aes_cbc.o aesni-x86.o:bf-586.o:md5-586.o:sha1-586.o sha256-586.o sha512-586.o:cast-586.o:rc4-586.o:rmd-586.o:rc5-586.o:wp_block.o wp-mmx.o::ghash-x86.o::elf:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-generic32","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -g -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-generic64","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -g -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-linux-x86_64","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -m64 -DL_ENDIAN -g -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", "dist", "cc:-O::(unknown)::::::", # Basic configs that should work on any (32 and less bit) box @@ -256,16 +256,16 @@ my %table=( #### IRIX 5.x configs # -mips2 flag is added by ./config when appropriate. -"irix-gcc","gcc:-O3 -DTERMIOS -DB_ENDIAN::(unknown):::BN_LLONG MD2_CHAR RC4_INDEX RC4_CHAR RC4_CHUNK DES_UNROLL DES_RISC2 DES_PTR BF_PTR:${mips32_asm}:o32:dlfcn:irix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"irix-cc", "cc:-O2 -use_readonly_const -DTERMIOS -DB_ENDIAN::(unknown):::BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC2 DES_UNROLL BF_PTR:${mips32_asm}:o32:dlfcn:irix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"irix-gcc","gcc:-O3 -DB_ENDIAN::(unknown):::BN_LLONG MD2_CHAR RC4_INDEX RC4_CHAR RC4_CHUNK DES_UNROLL DES_RISC2 DES_PTR BF_PTR:${mips32_asm}:o32:dlfcn:irix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"irix-cc", "cc:-O2 -use_readonly_const -DB_ENDIAN::(unknown):::BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC2 DES_UNROLL BF_PTR:${mips32_asm}:o32:dlfcn:irix-shared:::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", #### IRIX 6.x configs # Only N32 and N64 ABIs are supported. If you need O32 ABI build, invoke # './Configure irix-cc -o32' manually. -"irix-mips3-gcc","gcc:-mabi=n32 -O3 -DTERMIOS -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::MD2_CHAR RC4_INDEX RC4_CHAR RC4_CHUNK_LL DES_UNROLL DES_RISC2 DES_PTR BF_PTR SIXTY_FOUR_BIT:${mips64_asm}:n32:dlfcn:irix-shared::-mabi=n32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::32", -"irix-mips3-cc", "cc:-n32 -mips3 -O2 -use_readonly_const -G0 -rdata_shared -DTERMIOS -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::DES_PTR RC4_CHAR RC4_CHUNK_LL DES_RISC2 DES_UNROLL BF_PTR SIXTY_FOUR_BIT:${mips64_asm}:n32:dlfcn:irix-shared::-n32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::32", +"irix-mips3-gcc","gcc:-mabi=n32 -O3 -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::MD2_CHAR RC4_INDEX RC4_CHAR RC4_CHUNK_LL DES_UNROLL DES_RISC2 DES_PTR BF_PTR SIXTY_FOUR_BIT:${mips64_asm}:n32:dlfcn:irix-shared::-mabi=n32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::32", +"irix-mips3-cc", "cc:-n32 -mips3 -O2 -use_readonly_const -G0 -rdata_shared -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::DES_PTR RC4_CHAR RC4_CHUNK_LL DES_RISC2 DES_UNROLL BF_PTR SIXTY_FOUR_BIT:${mips64_asm}:n32:dlfcn:irix-shared::-n32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::32", # N64 ABI builds. -"irix64-mips4-gcc","gcc:-mabi=64 -mips4 -O3 -DTERMIOS -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::RC4_CHAR RC4_CHUNK DES_RISC2 DES_UNROLL SIXTY_FOUR_BIT_LONG:${mips64_asm}:64:dlfcn:irix-shared::-mabi=64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", -"irix64-mips4-cc", "cc:-64 -mips4 -O2 -use_readonly_const -G0 -rdata_shared -DTERMIOS -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::RC4_CHAR RC4_CHUNK DES_RISC2 DES_UNROLL SIXTY_FOUR_BIT_LONG:${mips64_asm}:64:dlfcn:irix-shared::-64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"irix64-mips4-gcc","gcc:-mabi=64 -mips4 -O3 -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::RC4_CHAR RC4_CHUNK DES_RISC2 DES_UNROLL SIXTY_FOUR_BIT_LONG:${mips64_asm}:64:dlfcn:irix-shared::-mabi=64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"irix64-mips4-cc", "cc:-64 -mips4 -O2 -use_readonly_const -G0 -rdata_shared -DB_ENDIAN -DBN_DIV3W::-D_SGI_MP_SOURCE:::RC4_CHAR RC4_CHUNK DES_RISC2 DES_UNROLL SIXTY_FOUR_BIT_LONG:${mips64_asm}:64:dlfcn:irix-shared::-64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", #### Unified HP-UX ANSI C configs. # Special notes: @@ -345,23 +345,23 @@ my %table=( #### # *-generic* is endian-neutral target, but ./config is free to # throw in -D[BL]_ENDIAN, whichever appropriate... -"linux-generic32","gcc:-DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-ppc", "gcc:-DB_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${ppc32_asm}:linux32:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-generic32","gcc:-O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-ppc", "gcc:-DB_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${ppc32_asm}:linux32:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # It's believed that majority of ARM toolchains predefine appropriate -march. # If you compiler does not, do complement config command line with one! -"linux-armv4", "gcc:-DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${armv4_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-armv4", "gcc:-O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${armv4_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", #### IA-32 targets... -"linux-ia32-icc", "icc:-DL_ENDIAN -DTERMIO -O2 -no_cpprt::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-KPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-elf", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-aout", "gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -march=i486 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out", +"linux-ia32-icc", "icc:-DL_ENDIAN -O2 -no_cpprt::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-KPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-elf", "gcc:-DL_ENDIAN -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-aout", "gcc:-DL_ENDIAN -O3 -fomit-frame-pointer -march=i486 -Wall::(unknown):::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out", #### -"linux-generic64","gcc:-DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-ppc64", "gcc:-m64 -DB_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${ppc64_asm}:linux64:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", -"linux-ia64", "gcc:-DL_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_UNROLL DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-ia64-ecc","ecc:-DL_ENDIAN -DTERMIO -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-ia64-icc","icc:-DL_ENDIAN -DTERMIO -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_RISC1 DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-x86_64", "gcc:-m64 -DL_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", -"linux64-s390x", "gcc:-m64 -DB_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL:${s390x_asm}:64:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"linux-generic64","gcc:-O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-ppc64", "gcc:-m64 -DB_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${ppc64_asm}:linux64:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"linux-ia64", "gcc:-DL_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_UNROLL DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-ia64-ecc","ecc:-DL_ENDIAN -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-ia64-icc","icc:-DL_ENDIAN -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_RISC1 DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-x86_64", "gcc:-m64 -DL_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"linux64-s390x", "gcc:-m64 -DB_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL:${s390x_asm}:64:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", #### So called "highgprs" target for z/Architecture CPUs # "Highgprs" is kernel feature first implemented in Linux 2.6.32, see # /proc/cpuinfo. The idea is to preserve most significant bits of @@ -375,16 +375,16 @@ my %table=( # ldconfig and run-time linker to autodiscover. Unfortunately it # doesn't work just yet, because of couple of bugs in glibc # sysdeps/s390/dl-procinfo.c affecting ldconfig and ld.so.1... -"linux32-s390x", "gcc:-m31 -Wa,-mzarch -DB_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL:".eval{my $asm=$s390x_asm;$asm=~s/bn\-s390x\.o/bn_asm.o/;$asm}.":31:dlfcn:linux-shared:-fPIC:-m31:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::/highgprs", +"linux32-s390x", "gcc:-m31 -Wa,-mzarch -DB_ENDIAN -O3 -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL:".eval{my $asm=$s390x_asm;$asm=~s/bn\-s390x\.o/bn_asm.o/;$asm}.":31:dlfcn:linux-shared:-fPIC:-m31:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::/highgprs", #### SPARC Linux setups # Ray Miller has patiently # assisted with debugging of following two configs. -"linux-sparcv8","gcc:-mv8 -DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall -DBN_DIV2W::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${sparcv8_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-sparcv8","gcc:-mv8 -DB_ENDIAN -O3 -fomit-frame-pointer -Wall -DBN_DIV2W::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${sparcv8_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # it's a real mess with -mcpu=ultrasparc option under Linux, but # -Wa,-Av8plus should do the trick no matter what. -"linux-sparcv9","gcc:-m32 -mcpu=ultrasparc -DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall -Wa,-Av8plus -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${sparcv9_asm}:dlfcn:linux-shared:-fPIC:-m32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-sparcv9","gcc:-m32 -mcpu=ultrasparc -DB_ENDIAN -O3 -fomit-frame-pointer -Wall -Wa,-Av8plus -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${sparcv9_asm}:dlfcn:linux-shared:-fPIC:-m32:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # GCC 3.1 is a requirement -"linux64-sparcv9","gcc:-m64 -mcpu=ultrasparc -DB_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT:ULTRASPARC:-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR:${sparcv9_asm}:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", +"linux64-sparcv9","gcc:-m64 -mcpu=ultrasparc -DB_ENDIAN -O3 -fomit-frame-pointer -Wall::-D_REENTRANT:ULTRASPARC:-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR:${sparcv9_asm}:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64", #### Alpha Linux with GNU C and Compaq C setups # Special notes: # - linux-alpha+bwx-gcc is ment to be used from ./config only. If you @@ -398,30 +398,30 @@ my %table=( # # # -"linux-alpha-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", -"linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", +"linux-alpha-gcc","gcc:-O3 -DL_ENDIAN::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", +"linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}", -# Android: linux-* but without -DTERMIO and pointers to headers and libs. +# Android: linux-* but without pointers to headers and libs. "android","gcc:-mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "android-x86","gcc:-mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:".eval{my $asm=${x86_elf_asm};$asm=~s/:elf/:android/;$asm}.":dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "android-armv7","gcc:-march=armv7-a -mandroid -I\$(ANDROID_DEV)/include -B\$(ANDROID_DEV)/lib -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${armv4_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", #### *BSD [do see comment about ${BSDthreads} above!] -"BSD-generic32","gcc:-DTERMIOS -O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL:${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-x86", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-x86-elf", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"debug-BSD-x86-elf", "gcc:-DL_ENDIAN -DTERMIOS -O3 -Wall -g::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-sparcv8", "gcc:-DB_ENDIAN -DTERMIOS -O3 -mv8 -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL:${sparcv8_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-generic32","gcc:-O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL:${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-x86", "gcc:-DL_ENDIAN -O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-x86-elf", "gcc:-DL_ENDIAN -O3 -fomit-frame-pointer -Wall::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"debug-BSD-x86-elf", "gcc:-DL_ENDIAN -O3 -Wall -g::${BSDthreads}:::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-sparcv8", "gcc:-DB_ENDIAN -O3 -mv8 -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_INDEX DES_INT DES_UNROLL:${sparcv8_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-generic64","gcc:-DTERMIOS -O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-generic64","gcc:-O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it # simply *happens* to work around a compiler bug in gcc 3.3.3, # triggered by RIPEMD160 code. -"BSD-sparc64", "gcc:-DB_ENDIAN -DTERMIOS -O3 -DMD32_REG_T=int -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC2 BF_PTR:${sparcv9_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-ia64", "gcc:-DL_ENDIAN -DTERMIOS -O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_UNROLL DES_INT:${ia64_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"BSD-x86_64", "gcc:-DL_ENDIAN -DTERMIOS -O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-sparc64", "gcc:-DB_ENDIAN -O3 -DMD32_REG_T=int -Wall::${BSDthreads}:::BN_LLONG RC2_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC2 BF_PTR:${sparcv9_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-ia64", "gcc:-DL_ENDIAN -O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_UNROLL DES_INT:${ia64_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"BSD-x86_64", "gcc:-DL_ENDIAN -O3 -Wall::${BSDthreads}:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", "bsdi-elf-gcc", "gcc:-DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -march=i486 -Wall::(unknown)::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", @@ -433,8 +433,8 @@ my %table=( # QNX "qnx4", "cc:-DL_ENDIAN -DTERMIO::(unknown):::${x86_gcc_des} ${x86_gcc_opts}:", -"QNX6", "gcc:-DTERMIOS::::-lsocket::${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", -"QNX6-i386", "gcc:-DL_ENDIAN -DTERMIOS -O2 -Wall::::-lsocket:${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"QNX6", "gcc:::::-lsocket::${no_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"QNX6-i386", "gcc:-DL_ENDIAN -O2 -Wall::::-lsocket:${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # BeOS "beos-x86-r5", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -mcpu=pentium -Wall::-D_REENTRANT:BEOS:-lbe -lnet:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:beos:beos-shared:-fPIC -DPIC:-shared:.so", @@ -507,7 +507,7 @@ my %table=( "SINIX-N","/usr/ucb/cc:-O2 -misaligned::(unknown)::-lucb:RC4_INDEX RC4_CHAR:::", # SIEMENS BS2000/OSD: an EBCDIC-based mainframe -"BS2000-OSD","c89:-O -XLLML -XLLMK -XL -DB_ENDIAN -DTERMIOS -DCHARSET_EBCDIC::(unknown)::-lsocket -lnsl:THIRTY_TWO_BIT DES_PTR DES_UNROLL MD2_CHAR RC4_INDEX RC4_CHAR BF_PTR:::", +"BS2000-OSD","c89:-O -XLLML -XLLMK -XL -DB_ENDIAN -DCHARSET_EBCDIC::(unknown)::-lsocket -lnsl:THIRTY_TWO_BIT DES_PTR DES_UNROLL MD2_CHAR RC4_INDEX RC4_CHAR BF_PTR:::", # OS/390 Unix an EBCDIC-based Unix system on IBM mainframe # You need to compile using the c89.sh wrapper in the tools directory, because the @@ -567,7 +567,7 @@ my %table=( "netware-libc-bsdsock-gcc", "i586-netware-gcc:-nostdinc -I/ndk/libc/include -DNETWARE_BSDSOCK -DL_ENDIAN -DNETWARE_LIBC -DOPENSSL_SYSNAME_NETWARE -DTERMIO -O2 -Wall:::::BN_LLONG ${x86_gcc_opts}::", # DJGPP -"DJGPP", "gcc:-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O2 -Wall:::MSDOS:-L/dev/env/WATT_ROOT/lib -lwatt:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out:", +"DJGPP", "gcc:-I/dev/env/WATT_ROOT/inc -DTERMIO -DL_ENDIAN -fomit-frame-pointer -O2 -Wall:::MSDOS:-L/dev/env/WATT_ROOT/lib -lwatt:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_asm}:a.out:", # Ultrix from Bernhard Simon "ultrix-cc","cc:-std1 -O -Olimit 2500 -DL_ENDIAN::(unknown):::::::", @@ -593,7 +593,7 @@ my %table=( "newsos4-gcc","gcc:-O -DB_ENDIAN::(unknown):NEWS4:-lmld -liberty:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::", ##### GNU Hurd -"hurd-x86", "gcc:-DL_ENDIAN -DTERMIOS -O3 -fomit-frame-pointer -march=i486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC", +"hurd-x86", "gcc:-DL_ENDIAN -O3 -fomit-frame-pointer -march=i486 -Wall::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC", ##### OS/2 EMX "OS2-EMX", "gcc::::::::", Modified: stable/10/crypto/openssl/Makefile ============================================================================== --- stable/10/crypto/openssl/Makefile Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/Makefile Fri Mar 20 21:54:45 2015 (r280304) @@ -4,7 +4,7 @@ ## Makefile for OpenSSL ## -VERSION=1.0.1l +VERSION=1.0.1m MAJOR=1 MINOR=0.1 SHLIB_VERSION_NUMBER=1.0.0 Modified: stable/10/crypto/openssl/NEWS ============================================================================== --- stable/10/crypto/openssl/NEWS Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/NEWS Fri Mar 20 21:54:45 2015 (r280304) @@ -5,6 +5,16 @@ This file gives a brief overview of the major changes between each OpenSSL release. For more details please read the CHANGES file. + Major changes between OpenSSL 1.0.1l and OpenSSL 1.0.1m [19 Mar 2015] + + o Segmentation fault in ASN1_TYPE_cmp fix (CVE-2015-0286) + o ASN.1 structure reuse memory corruption fix (CVE-2015-0287) + o PKCS7 NULL pointer dereferences fix (CVE-2015-0289) + o DoS via reachable assert in SSLv2 servers fix (CVE-2015-0293) + o Use After Free following d2i_ECPrivatekey error fix (CVE-2015-0209) + o X509_to_X509_REQ NULL pointer deref fix (CVE-2015-0288) + o Removed the export ciphers from the DEFAULT ciphers + Major changes between OpenSSL 1.0.1k and OpenSSL 1.0.1l [15 Jan 2015] o Build fixes for the Windows and OpenVMS platforms @@ -103,19 +113,6 @@ o Preliminary FIPS capability for unvalidated 2.0 FIPS module. o SRP support. - Major changes between OpenSSL 1.0.0j and OpenSSL 1.0.0k [5 Feb 2013]: - - o Fix for SSL/TLS/DTLS CBC plaintext recovery attack CVE-2013-0169 - o Fix OCSP bad key DoS attack CVE-2013-0166 - - Major changes between OpenSSL 1.0.0i and OpenSSL 1.0.0j [10 May 2012]: - - o Fix DTLS record length checking bug CVE-2012-2333 - - Major changes between OpenSSL 1.0.0h and OpenSSL 1.0.0i [19 Apr 2012]: - - o Fix for ASN1 overflow bug CVE-2012-2110 - Major changes between OpenSSL 1.0.0g and OpenSSL 1.0.0h [12 Mar 2012]: o Fix for CMS/PKCS#7 MMA CVE-2012-0884 @@ -188,62 +185,6 @@ o Opaque PRF Input TLS extension support. o Updated time routines to avoid OS limitations. - Major changes between OpenSSL 0.9.8x and OpenSSL 0.9.8y [5 Feb 2013]: - - o Fix for SSL/TLS/DTLS CBC plaintext recovery attack CVE-2013-0169 - o Fix OCSP bad key DoS attack CVE-2013-0166 - - Major changes between OpenSSL 0.9.8w and OpenSSL 0.9.8x [10 May 2012]: - - o Fix DTLS record length checking bug CVE-2012-2333 - - Major changes between OpenSSL 0.9.8v and OpenSSL 0.9.8w [23 Apr 2012]: - - o Fix for CVE-2012-2131 (corrected fix for 0.9.8 and CVE-2012-2110) - - Major changes between OpenSSL 0.9.8u and OpenSSL 0.9.8v [19 Apr 2012]: - - o Fix for ASN1 overflow bug CVE-2012-2110 - - Major changes between OpenSSL 0.9.8t and OpenSSL 0.9.8u [12 Mar 2012]: - - o Fix for CMS/PKCS#7 MMA CVE-2012-0884 - o Corrected fix for CVE-2011-4619 - o Various DTLS fixes. - - Major changes between OpenSSL 0.9.8s and OpenSSL 0.9.8t [18 Jan 2012]: - - o Fix for DTLS DoS issue CVE-2012-0050 - - Major changes between OpenSSL 0.9.8r and OpenSSL 0.9.8s [4 Jan 2012]: - - o Fix for DTLS plaintext recovery attack CVE-2011-4108 - o Fix policy check double free error CVE-2011-4109 - o Clear block padding bytes of SSL 3.0 records CVE-2011-4576 - o Only allow one SGC handshake restart for SSL/TLS CVE-2011-4619 - o Check for malformed RFC3779 data CVE-2011-4577 - - Major changes between OpenSSL 0.9.8q and OpenSSL 0.9.8r [8 Feb 2011]: - - o Fix for security issue CVE-2011-0014 - - Major changes between OpenSSL 0.9.8p and OpenSSL 0.9.8q [2 Dec 2010]: - - o Fix for security issue CVE-2010-4180 - o Fix for CVE-2010-4252 - - Major changes between OpenSSL 0.9.8o and OpenSSL 0.9.8p [16 Nov 2010]: - - o Fix for security issue CVE-2010-3864. - - Major changes between OpenSSL 0.9.8n and OpenSSL 0.9.8o [1 Jun 2010]: - - o Fix for security issue CVE-2010-0742. - o Various DTLS fixes. - o Recognise SHA2 certificates if only SSL algorithms added. - o Fix for no-rc4 compilation. - o Chil ENGINE unload workaround. - Major changes between OpenSSL 0.9.8m and OpenSSL 0.9.8n [24 Mar 2010]: o CFB cipher definition fixes. Modified: stable/10/crypto/openssl/README ============================================================================== --- stable/10/crypto/openssl/README Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/README Fri Mar 20 21:54:45 2015 (r280304) @@ -1,5 +1,5 @@ - OpenSSL 1.0.1l 15 Jan 2015 + OpenSSL 1.0.1m 19 Mar 2015 Copyright (c) 1998-2011 The OpenSSL Project Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson Modified: stable/10/crypto/openssl/apps/app_rand.c ============================================================================== --- stable/10/crypto/openssl/apps/app_rand.c Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/apps/app_rand.c Fri Mar 20 21:54:45 2015 (r280304) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -115,104 +115,106 @@ #include #include - static int seeded = 0; static int egdsocket = 0; int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn) - { - int consider_randfile = (file == NULL); - char buffer[200]; - +{ + int consider_randfile = (file == NULL); + char buffer[200]; + #ifdef OPENSSL_SYS_WINDOWS - BIO_printf(bio_e,"Loading 'screen' into random state -"); - BIO_flush(bio_e); - RAND_screen(); - BIO_printf(bio_e," done\n"); + BIO_printf(bio_e, "Loading 'screen' into random state -"); + BIO_flush(bio_e); + RAND_screen(); + BIO_printf(bio_e, " done\n"); #endif - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - else if (RAND_egd(file) > 0) - { - /* we try if the given filename is an EGD socket. - if it is, we don't write anything back to the file. */ - egdsocket = 1; - return 1; - } - if (file == NULL || !RAND_load_file(file, -1)) - { - if (RAND_status() == 0) - { - if (!dont_warn) - { - BIO_printf(bio_e,"unable to load 'random state'\n"); - BIO_printf(bio_e,"This means that the random number generator has not been seeded\n"); - BIO_printf(bio_e,"with much random data.\n"); - if (consider_randfile) /* explanation does not apply when a file is explicitly named */ - { - BIO_printf(bio_e,"Consider setting the RANDFILE environment variable to point at a file that\n"); - BIO_printf(bio_e,"'random' data can be kept in (the file will be overwritten).\n"); - } - } - return 0; - } - } - seeded = 1; - return 1; - } + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + else if (RAND_egd(file) > 0) { + /* + * we try if the given filename is an EGD socket. if it is, we don't + * write anything back to the file. + */ + egdsocket = 1; + return 1; + } + if (file == NULL || !RAND_load_file(file, -1)) { + if (RAND_status() == 0) { + if (!dont_warn) { + BIO_printf(bio_e, "unable to load 'random state'\n"); + BIO_printf(bio_e, + "This means that the random number generator has not been seeded\n"); + BIO_printf(bio_e, "with much random data.\n"); + if (consider_randfile) { /* explanation does not apply when a + * file is explicitly named */ + BIO_printf(bio_e, + "Consider setting the RANDFILE environment variable to point at a file that\n"); + BIO_printf(bio_e, + "'random' data can be kept in (the file will be overwritten).\n"); + } + } + return 0; + } + } + seeded = 1; + return 1; +} long app_RAND_load_files(char *name) - { - char *p,*n; - int last; - long tot=0; - int egd; - - for (;;) - { - last=0; - for (p=name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++); - if (*p == '\0') last=1; - *p='\0'; - n=name; - name=p+1; - if (*n == '\0') break; - - egd=RAND_egd(n); - if (egd > 0) - tot+=egd; - else - tot+=RAND_load_file(n,-1); - if (last) break; - } - if (tot > 512) - app_RAND_allow_write_file(); - return(tot); - } +{ + char *p, *n; + int last; + long tot = 0; + int egd; + + for (;;) { + last = 0; + for (p = name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++) ; + if (*p == '\0') + last = 1; + *p = '\0'; + n = name; + name = p + 1; + if (*n == '\0') + break; + + egd = RAND_egd(n); + if (egd > 0) + tot += egd; + else + tot += RAND_load_file(n, -1); + if (last) + break; + } + if (tot > 512) + app_RAND_allow_write_file(); + return (tot); +} int app_RAND_write_file(const char *file, BIO *bio_e) - { - char buffer[200]; - - if (egdsocket || !seeded) - /* If we did not manage to read the seed file, - * we should not write a low-entropy seed file back -- - * it would suppress a crucial warning the next time - * we want to use it. */ - return 0; - - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - if (file == NULL || !RAND_write_file(file)) - { - BIO_printf(bio_e,"unable to write 'random state'\n"); - return 0; - } - return 1; - } +{ + char buffer[200]; + + if (egdsocket || !seeded) + /* + * If we did not manage to read the seed file, we should not write a + * low-entropy seed file back -- it would suppress a crucial warning + * the next time we want to use it. + */ + return 0; + + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + if (file == NULL || !RAND_write_file(file)) { + BIO_printf(bio_e, "unable to write 'random state'\n"); + return 0; + } + return 1; +} void app_RAND_allow_write_file(void) - { - seeded = 1; - } +{ + seeded = 1; +} Modified: stable/10/crypto/openssl/apps/apps.c ============================================================================== --- stable/10/crypto/openssl/apps/apps.c Fri Mar 20 21:09:03 2015 (r280303) +++ stable/10/crypto/openssl/apps/apps.c Fri Mar 20 21:54:45 2015 (r280304) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 21:56:56 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59AC3870; Fri, 20 Mar 2015 21:56:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F28B177; Fri, 20 Mar 2015 21:56:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2KLuu5N081685; Fri, 20 Mar 2015 21:56:56 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2KLurE4081641; Fri, 20 Mar 2015 21:56:53 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201503202156.t2KLurE4081641@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 20 Mar 2015 21:56:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280305 - in stable: 8/crypto/openssl 8/crypto/openssl/apps 8/crypto/openssl/bugs 8/crypto/openssl/crypto 8/crypto/openssl/crypto/aes 8/crypto/openssl/crypto/asn1 8/crypto/openssl/crypt... X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 21:56:56 -0000 Author: jkim Date: Fri Mar 20 21:56:48 2015 New Revision: 280305 URL: https://svnweb.freebsd.org/changeset/base/280305 Log: Merge OpenSSL 0.9.8zf. Relnotes: yes Added: stable/9/crypto/openssl/util/indent.pro - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/indent.pro stable/9/crypto/openssl/util/openssl-format-source - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/openssl-format-source stable/9/crypto/openssl/util/su-filter.pl - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/su-filter.pl Modified: stable/9/crypto/openssl/CHANGES stable/9/crypto/openssl/Makefile stable/9/crypto/openssl/NEWS stable/9/crypto/openssl/README stable/9/crypto/openssl/apps/app_rand.c stable/9/crypto/openssl/apps/apps.c stable/9/crypto/openssl/apps/apps.h stable/9/crypto/openssl/apps/asn1pars.c stable/9/crypto/openssl/apps/ca.c stable/9/crypto/openssl/apps/ciphers.c stable/9/crypto/openssl/apps/cms.c stable/9/crypto/openssl/apps/crl.c stable/9/crypto/openssl/apps/crl2p7.c stable/9/crypto/openssl/apps/dgst.c stable/9/crypto/openssl/apps/dh.c stable/9/crypto/openssl/apps/dhparam.c stable/9/crypto/openssl/apps/dsa.c stable/9/crypto/openssl/apps/dsaparam.c stable/9/crypto/openssl/apps/ec.c stable/9/crypto/openssl/apps/ecparam.c stable/9/crypto/openssl/apps/enc.c stable/9/crypto/openssl/apps/engine.c stable/9/crypto/openssl/apps/errstr.c stable/9/crypto/openssl/apps/gendh.c stable/9/crypto/openssl/apps/gendsa.c stable/9/crypto/openssl/apps/genrsa.c stable/9/crypto/openssl/apps/nseq.c stable/9/crypto/openssl/apps/ocsp.c stable/9/crypto/openssl/apps/openssl.c stable/9/crypto/openssl/apps/passwd.c stable/9/crypto/openssl/apps/pkcs12.c stable/9/crypto/openssl/apps/pkcs7.c stable/9/crypto/openssl/apps/pkcs8.c stable/9/crypto/openssl/apps/prime.c stable/9/crypto/openssl/apps/progs.h stable/9/crypto/openssl/apps/rand.c stable/9/crypto/openssl/apps/req.c stable/9/crypto/openssl/apps/rsa.c stable/9/crypto/openssl/apps/rsautl.c stable/9/crypto/openssl/apps/s_apps.h stable/9/crypto/openssl/apps/s_cb.c stable/9/crypto/openssl/apps/s_client.c stable/9/crypto/openssl/apps/s_server.c stable/9/crypto/openssl/apps/s_socket.c stable/9/crypto/openssl/apps/s_time.c stable/9/crypto/openssl/apps/sess_id.c stable/9/crypto/openssl/apps/smime.c stable/9/crypto/openssl/apps/speed.c stable/9/crypto/openssl/apps/spkac.c stable/9/crypto/openssl/apps/testdsa.h stable/9/crypto/openssl/apps/testrsa.h stable/9/crypto/openssl/apps/timeouts.h stable/9/crypto/openssl/apps/verify.c stable/9/crypto/openssl/apps/version.c stable/9/crypto/openssl/apps/winrand.c stable/9/crypto/openssl/apps/x509.c stable/9/crypto/openssl/bugs/alpha.c stable/9/crypto/openssl/bugs/dggccbug.c stable/9/crypto/openssl/bugs/sgiccbug.c stable/9/crypto/openssl/bugs/stream.c stable/9/crypto/openssl/bugs/ultrixcc.c stable/9/crypto/openssl/crypto/LPdir_nyi.c stable/9/crypto/openssl/crypto/LPdir_unix.c stable/9/crypto/openssl/crypto/LPdir_vms.c stable/9/crypto/openssl/crypto/LPdir_win.c stable/9/crypto/openssl/crypto/LPdir_win32.c stable/9/crypto/openssl/crypto/LPdir_wince.c stable/9/crypto/openssl/crypto/aes/aes.h stable/9/crypto/openssl/crypto/aes/aes_cbc.c stable/9/crypto/openssl/crypto/aes/aes_cfb.c stable/9/crypto/openssl/crypto/aes/aes_core.c stable/9/crypto/openssl/crypto/aes/aes_ctr.c stable/9/crypto/openssl/crypto/aes/aes_ecb.c stable/9/crypto/openssl/crypto/aes/aes_ige.c stable/9/crypto/openssl/crypto/aes/aes_locl.h stable/9/crypto/openssl/crypto/aes/aes_misc.c stable/9/crypto/openssl/crypto/aes/aes_ofb.c stable/9/crypto/openssl/crypto/aes/aes_wrap.c stable/9/crypto/openssl/crypto/asn1/a_bitstr.c stable/9/crypto/openssl/crypto/asn1/a_bool.c stable/9/crypto/openssl/crypto/asn1/a_bytes.c stable/9/crypto/openssl/crypto/asn1/a_d2i_fp.c stable/9/crypto/openssl/crypto/asn1/a_digest.c stable/9/crypto/openssl/crypto/asn1/a_dup.c stable/9/crypto/openssl/crypto/asn1/a_enum.c stable/9/crypto/openssl/crypto/asn1/a_gentm.c stable/9/crypto/openssl/crypto/asn1/a_hdr.c stable/9/crypto/openssl/crypto/asn1/a_i2d_fp.c stable/9/crypto/openssl/crypto/asn1/a_int.c stable/9/crypto/openssl/crypto/asn1/a_mbstr.c stable/9/crypto/openssl/crypto/asn1/a_meth.c stable/9/crypto/openssl/crypto/asn1/a_object.c stable/9/crypto/openssl/crypto/asn1/a_octet.c stable/9/crypto/openssl/crypto/asn1/a_print.c stable/9/crypto/openssl/crypto/asn1/a_set.c stable/9/crypto/openssl/crypto/asn1/a_sign.c stable/9/crypto/openssl/crypto/asn1/a_strex.c stable/9/crypto/openssl/crypto/asn1/a_strnid.c stable/9/crypto/openssl/crypto/asn1/a_time.c stable/9/crypto/openssl/crypto/asn1/a_type.c stable/9/crypto/openssl/crypto/asn1/a_utctm.c stable/9/crypto/openssl/crypto/asn1/a_utf8.c stable/9/crypto/openssl/crypto/asn1/a_verify.c stable/9/crypto/openssl/crypto/asn1/asn1.h stable/9/crypto/openssl/crypto/asn1/asn1_err.c stable/9/crypto/openssl/crypto/asn1/asn1_gen.c stable/9/crypto/openssl/crypto/asn1/asn1_lib.c stable/9/crypto/openssl/crypto/asn1/asn1_mac.h stable/9/crypto/openssl/crypto/asn1/asn1_par.c stable/9/crypto/openssl/crypto/asn1/asn1t.h stable/9/crypto/openssl/crypto/asn1/asn_mime.c stable/9/crypto/openssl/crypto/asn1/asn_moid.c stable/9/crypto/openssl/crypto/asn1/asn_pack.c stable/9/crypto/openssl/crypto/asn1/charmap.h stable/9/crypto/openssl/crypto/asn1/d2i_pr.c stable/9/crypto/openssl/crypto/asn1/d2i_pu.c stable/9/crypto/openssl/crypto/asn1/evp_asn1.c stable/9/crypto/openssl/crypto/asn1/f_enum.c stable/9/crypto/openssl/crypto/asn1/f_int.c stable/9/crypto/openssl/crypto/asn1/f_string.c stable/9/crypto/openssl/crypto/asn1/i2d_pr.c stable/9/crypto/openssl/crypto/asn1/i2d_pu.c stable/9/crypto/openssl/crypto/asn1/n_pkey.c stable/9/crypto/openssl/crypto/asn1/nsseq.c stable/9/crypto/openssl/crypto/asn1/p5_pbe.c stable/9/crypto/openssl/crypto/asn1/p5_pbev2.c stable/9/crypto/openssl/crypto/asn1/p8_key.c stable/9/crypto/openssl/crypto/asn1/p8_pkey.c stable/9/crypto/openssl/crypto/asn1/t_bitst.c stable/9/crypto/openssl/crypto/asn1/t_crl.c stable/9/crypto/openssl/crypto/asn1/t_pkey.c stable/9/crypto/openssl/crypto/asn1/t_req.c stable/9/crypto/openssl/crypto/asn1/t_spki.c stable/9/crypto/openssl/crypto/asn1/t_x509.c stable/9/crypto/openssl/crypto/asn1/t_x509a.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/asn1/tasn_enc.c stable/9/crypto/openssl/crypto/asn1/tasn_fre.c stable/9/crypto/openssl/crypto/asn1/tasn_new.c stable/9/crypto/openssl/crypto/asn1/tasn_prn.c stable/9/crypto/openssl/crypto/asn1/tasn_typ.c stable/9/crypto/openssl/crypto/asn1/tasn_utl.c stable/9/crypto/openssl/crypto/asn1/x_algor.c stable/9/crypto/openssl/crypto/asn1/x_attrib.c stable/9/crypto/openssl/crypto/asn1/x_bignum.c stable/9/crypto/openssl/crypto/asn1/x_crl.c stable/9/crypto/openssl/crypto/asn1/x_exten.c stable/9/crypto/openssl/crypto/asn1/x_info.c stable/9/crypto/openssl/crypto/asn1/x_long.c stable/9/crypto/openssl/crypto/asn1/x_name.c stable/9/crypto/openssl/crypto/asn1/x_pkey.c stable/9/crypto/openssl/crypto/asn1/x_pubkey.c stable/9/crypto/openssl/crypto/asn1/x_req.c stable/9/crypto/openssl/crypto/asn1/x_sig.c stable/9/crypto/openssl/crypto/asn1/x_spki.c stable/9/crypto/openssl/crypto/asn1/x_val.c stable/9/crypto/openssl/crypto/asn1/x_x509.c stable/9/crypto/openssl/crypto/asn1/x_x509a.c stable/9/crypto/openssl/crypto/bf/bf_cbc.c stable/9/crypto/openssl/crypto/bf/bf_cfb64.c stable/9/crypto/openssl/crypto/bf/bf_ecb.c stable/9/crypto/openssl/crypto/bf/bf_enc.c stable/9/crypto/openssl/crypto/bf/bf_locl.h stable/9/crypto/openssl/crypto/bf/bf_ofb64.c stable/9/crypto/openssl/crypto/bf/bf_opts.c stable/9/crypto/openssl/crypto/bf/bf_pi.h stable/9/crypto/openssl/crypto/bf/bf_skey.c stable/9/crypto/openssl/crypto/bf/bfspeed.c stable/9/crypto/openssl/crypto/bf/bftest.c stable/9/crypto/openssl/crypto/bf/blowfish.h stable/9/crypto/openssl/crypto/bio/b_dump.c stable/9/crypto/openssl/crypto/bio/b_print.c stable/9/crypto/openssl/crypto/bio/b_sock.c stable/9/crypto/openssl/crypto/bio/bf_buff.c stable/9/crypto/openssl/crypto/bio/bf_lbuf.c stable/9/crypto/openssl/crypto/bio/bf_nbio.c stable/9/crypto/openssl/crypto/bio/bf_null.c stable/9/crypto/openssl/crypto/bio/bio.h stable/9/crypto/openssl/crypto/bio/bio_cb.c stable/9/crypto/openssl/crypto/bio/bio_err.c stable/9/crypto/openssl/crypto/bio/bio_lcl.h stable/9/crypto/openssl/crypto/bio/bio_lib.c stable/9/crypto/openssl/crypto/bio/bss_acpt.c stable/9/crypto/openssl/crypto/bio/bss_bio.c stable/9/crypto/openssl/crypto/bio/bss_conn.c stable/9/crypto/openssl/crypto/bio/bss_dgram.c stable/9/crypto/openssl/crypto/bio/bss_fd.c stable/9/crypto/openssl/crypto/bio/bss_file.c stable/9/crypto/openssl/crypto/bio/bss_log.c stable/9/crypto/openssl/crypto/bio/bss_mem.c stable/9/crypto/openssl/crypto/bio/bss_null.c stable/9/crypto/openssl/crypto/bio/bss_rtcp.c stable/9/crypto/openssl/crypto/bio/bss_sock.c stable/9/crypto/openssl/crypto/bn/asm/x86_64-gcc.c stable/9/crypto/openssl/crypto/bn/bn.h stable/9/crypto/openssl/crypto/bn/bn_add.c stable/9/crypto/openssl/crypto/bn/bn_asm.c stable/9/crypto/openssl/crypto/bn/bn_blind.c stable/9/crypto/openssl/crypto/bn/bn_const.c stable/9/crypto/openssl/crypto/bn/bn_ctx.c stable/9/crypto/openssl/crypto/bn/bn_depr.c stable/9/crypto/openssl/crypto/bn/bn_div.c stable/9/crypto/openssl/crypto/bn/bn_err.c stable/9/crypto/openssl/crypto/bn/bn_exp.c stable/9/crypto/openssl/crypto/bn/bn_exp2.c stable/9/crypto/openssl/crypto/bn/bn_gcd.c stable/9/crypto/openssl/crypto/bn/bn_gf2m.c stable/9/crypto/openssl/crypto/bn/bn_kron.c stable/9/crypto/openssl/crypto/bn/bn_lcl.h stable/9/crypto/openssl/crypto/bn/bn_lib.c stable/9/crypto/openssl/crypto/bn/bn_mod.c stable/9/crypto/openssl/crypto/bn/bn_mont.c stable/9/crypto/openssl/crypto/bn/bn_mpi.c stable/9/crypto/openssl/crypto/bn/bn_mul.c stable/9/crypto/openssl/crypto/bn/bn_nist.c stable/9/crypto/openssl/crypto/bn/bn_opt.c stable/9/crypto/openssl/crypto/bn/bn_prime.c stable/9/crypto/openssl/crypto/bn/bn_prime.h stable/9/crypto/openssl/crypto/bn/bn_print.c stable/9/crypto/openssl/crypto/bn/bn_rand.c stable/9/crypto/openssl/crypto/bn/bn_recp.c stable/9/crypto/openssl/crypto/bn/bn_shift.c stable/9/crypto/openssl/crypto/bn/bn_sqr.c stable/9/crypto/openssl/crypto/bn/bn_sqrt.c stable/9/crypto/openssl/crypto/bn/bn_word.c stable/9/crypto/openssl/crypto/bn/bn_x931p.c stable/9/crypto/openssl/crypto/bn/bnspeed.c stable/9/crypto/openssl/crypto/bn/bntest.c stable/9/crypto/openssl/crypto/bn/divtest.c stable/9/crypto/openssl/crypto/bn/exp.c stable/9/crypto/openssl/crypto/bn/expspeed.c stable/9/crypto/openssl/crypto/bn/exptest.c stable/9/crypto/openssl/crypto/buffer/buf_err.c stable/9/crypto/openssl/crypto/buffer/buf_str.c stable/9/crypto/openssl/crypto/buffer/buffer.c stable/9/crypto/openssl/crypto/buffer/buffer.h stable/9/crypto/openssl/crypto/camellia/camellia.c stable/9/crypto/openssl/crypto/camellia/camellia.h stable/9/crypto/openssl/crypto/camellia/cmll_cbc.c stable/9/crypto/openssl/crypto/camellia/cmll_cfb.c stable/9/crypto/openssl/crypto/camellia/cmll_ctr.c stable/9/crypto/openssl/crypto/camellia/cmll_ecb.c stable/9/crypto/openssl/crypto/camellia/cmll_locl.h stable/9/crypto/openssl/crypto/camellia/cmll_misc.c stable/9/crypto/openssl/crypto/camellia/cmll_ofb.c stable/9/crypto/openssl/crypto/cast/c_cfb64.c stable/9/crypto/openssl/crypto/cast/c_ecb.c stable/9/crypto/openssl/crypto/cast/c_enc.c stable/9/crypto/openssl/crypto/cast/c_ofb64.c stable/9/crypto/openssl/crypto/cast/c_skey.c stable/9/crypto/openssl/crypto/cast/cast.h stable/9/crypto/openssl/crypto/cast/cast_lcl.h stable/9/crypto/openssl/crypto/cast/cast_s.h stable/9/crypto/openssl/crypto/cast/cast_spd.c stable/9/crypto/openssl/crypto/cast/castopts.c stable/9/crypto/openssl/crypto/cast/casttest.c stable/9/crypto/openssl/crypto/cms/cms.h stable/9/crypto/openssl/crypto/cms/cms_asn1.c stable/9/crypto/openssl/crypto/cms/cms_att.c stable/9/crypto/openssl/crypto/cms/cms_cd.c stable/9/crypto/openssl/crypto/cms/cms_dd.c stable/9/crypto/openssl/crypto/cms/cms_enc.c stable/9/crypto/openssl/crypto/cms/cms_env.c stable/9/crypto/openssl/crypto/cms/cms_err.c stable/9/crypto/openssl/crypto/cms/cms_ess.c stable/9/crypto/openssl/crypto/cms/cms_io.c stable/9/crypto/openssl/crypto/cms/cms_lcl.h stable/9/crypto/openssl/crypto/cms/cms_lib.c stable/9/crypto/openssl/crypto/cms/cms_sd.c stable/9/crypto/openssl/crypto/cms/cms_smime.c stable/9/crypto/openssl/crypto/comp/c_rle.c stable/9/crypto/openssl/crypto/comp/c_zlib.c stable/9/crypto/openssl/crypto/comp/comp.h stable/9/crypto/openssl/crypto/comp/comp_err.c stable/9/crypto/openssl/crypto/comp/comp_lib.c stable/9/crypto/openssl/crypto/conf/cnf_save.c stable/9/crypto/openssl/crypto/conf/conf.h stable/9/crypto/openssl/crypto/conf/conf_api.c stable/9/crypto/openssl/crypto/conf/conf_api.h stable/9/crypto/openssl/crypto/conf/conf_def.c stable/9/crypto/openssl/crypto/conf/conf_def.h stable/9/crypto/openssl/crypto/conf/conf_err.c stable/9/crypto/openssl/crypto/conf/conf_lib.c stable/9/crypto/openssl/crypto/conf/conf_mall.c stable/9/crypto/openssl/crypto/conf/conf_mod.c stable/9/crypto/openssl/crypto/conf/conf_sap.c stable/9/crypto/openssl/crypto/conf/test.c stable/9/crypto/openssl/crypto/constant_time_locl.h stable/9/crypto/openssl/crypto/constant_time_test.c stable/9/crypto/openssl/crypto/cpt_err.c stable/9/crypto/openssl/crypto/cryptlib.c stable/9/crypto/openssl/crypto/cryptlib.h stable/9/crypto/openssl/crypto/crypto.h stable/9/crypto/openssl/crypto/cversion.c stable/9/crypto/openssl/crypto/des/cbc3_enc.c stable/9/crypto/openssl/crypto/des/cbc_cksm.c stable/9/crypto/openssl/crypto/des/cbc_enc.c stable/9/crypto/openssl/crypto/des/cfb64ede.c stable/9/crypto/openssl/crypto/des/cfb64enc.c stable/9/crypto/openssl/crypto/des/cfb_enc.c stable/9/crypto/openssl/crypto/des/des.c stable/9/crypto/openssl/crypto/des/des.h stable/9/crypto/openssl/crypto/des/des_enc.c stable/9/crypto/openssl/crypto/des/des_lib.c stable/9/crypto/openssl/crypto/des/des_locl.h stable/9/crypto/openssl/crypto/des/des_old.c stable/9/crypto/openssl/crypto/des/des_old.h stable/9/crypto/openssl/crypto/des/des_old2.c stable/9/crypto/openssl/crypto/des/des_opts.c stable/9/crypto/openssl/crypto/des/des_ver.h stable/9/crypto/openssl/crypto/des/destest.c stable/9/crypto/openssl/crypto/des/ecb3_enc.c stable/9/crypto/openssl/crypto/des/ecb_enc.c stable/9/crypto/openssl/crypto/des/ede_cbcm_enc.c stable/9/crypto/openssl/crypto/des/enc_read.c stable/9/crypto/openssl/crypto/des/enc_writ.c stable/9/crypto/openssl/crypto/des/fcrypt.c stable/9/crypto/openssl/crypto/des/fcrypt_b.c stable/9/crypto/openssl/crypto/des/ncbc_enc.c stable/9/crypto/openssl/crypto/des/ofb64ede.c stable/9/crypto/openssl/crypto/des/ofb64enc.c stable/9/crypto/openssl/crypto/des/ofb_enc.c stable/9/crypto/openssl/crypto/des/pcbc_enc.c stable/9/crypto/openssl/crypto/des/qud_cksm.c stable/9/crypto/openssl/crypto/des/rand_key.c stable/9/crypto/openssl/crypto/des/read2pwd.c stable/9/crypto/openssl/crypto/des/read_pwd.c stable/9/crypto/openssl/crypto/des/rpc_des.h stable/9/crypto/openssl/crypto/des/rpc_enc.c stable/9/crypto/openssl/crypto/des/rpw.c stable/9/crypto/openssl/crypto/des/set_key.c stable/9/crypto/openssl/crypto/des/speed.c stable/9/crypto/openssl/crypto/des/spr.h stable/9/crypto/openssl/crypto/des/str2key.c stable/9/crypto/openssl/crypto/des/xcbc_enc.c stable/9/crypto/openssl/crypto/dh/dh.h stable/9/crypto/openssl/crypto/dh/dh_asn1.c stable/9/crypto/openssl/crypto/dh/dh_check.c stable/9/crypto/openssl/crypto/dh/dh_depr.c stable/9/crypto/openssl/crypto/dh/dh_err.c stable/9/crypto/openssl/crypto/dh/dh_gen.c stable/9/crypto/openssl/crypto/dh/dh_key.c stable/9/crypto/openssl/crypto/dh/dh_lib.c stable/9/crypto/openssl/crypto/dh/dhtest.c stable/9/crypto/openssl/crypto/dh/p1024.c stable/9/crypto/openssl/crypto/dh/p192.c stable/9/crypto/openssl/crypto/dh/p512.c stable/9/crypto/openssl/crypto/dsa/dsa.h stable/9/crypto/openssl/crypto/dsa/dsa_asn1.c stable/9/crypto/openssl/crypto/dsa/dsa_depr.c stable/9/crypto/openssl/crypto/dsa/dsa_err.c stable/9/crypto/openssl/crypto/dsa/dsa_gen.c stable/9/crypto/openssl/crypto/dsa/dsa_key.c stable/9/crypto/openssl/crypto/dsa/dsa_lib.c stable/9/crypto/openssl/crypto/dsa/dsa_ossl.c stable/9/crypto/openssl/crypto/dsa/dsa_sign.c stable/9/crypto/openssl/crypto/dsa/dsa_utl.c stable/9/crypto/openssl/crypto/dsa/dsa_vrf.c stable/9/crypto/openssl/crypto/dsa/dsagen.c stable/9/crypto/openssl/crypto/dsa/dsatest.c stable/9/crypto/openssl/crypto/dso/dso.h stable/9/crypto/openssl/crypto/dso/dso_dl.c stable/9/crypto/openssl/crypto/dso/dso_dlfcn.c stable/9/crypto/openssl/crypto/dso/dso_err.c stable/9/crypto/openssl/crypto/dso/dso_lib.c stable/9/crypto/openssl/crypto/dso/dso_null.c stable/9/crypto/openssl/crypto/dso/dso_openssl.c stable/9/crypto/openssl/crypto/dyn_lck.c stable/9/crypto/openssl/crypto/ebcdic.c stable/9/crypto/openssl/crypto/ebcdic.h stable/9/crypto/openssl/crypto/ec/ec.h stable/9/crypto/openssl/crypto/ec/ec2_mult.c stable/9/crypto/openssl/crypto/ec/ec2_smpl.c stable/9/crypto/openssl/crypto/ec/ec2_smpt.c stable/9/crypto/openssl/crypto/ec/ec_asn1.c stable/9/crypto/openssl/crypto/ec/ec_check.c stable/9/crypto/openssl/crypto/ec/ec_curve.c stable/9/crypto/openssl/crypto/ec/ec_cvt.c stable/9/crypto/openssl/crypto/ec/ec_err.c stable/9/crypto/openssl/crypto/ec/ec_key.c stable/9/crypto/openssl/crypto/ec/ec_lcl.h stable/9/crypto/openssl/crypto/ec/ec_lib.c stable/9/crypto/openssl/crypto/ec/ec_mult.c stable/9/crypto/openssl/crypto/ec/ec_print.c stable/9/crypto/openssl/crypto/ec/ecp_mont.c stable/9/crypto/openssl/crypto/ec/ecp_nist.c stable/9/crypto/openssl/crypto/ec/ecp_smpl.c stable/9/crypto/openssl/crypto/ec/ectest.c stable/9/crypto/openssl/crypto/ecdh/ecdh.h stable/9/crypto/openssl/crypto/ecdh/ecdhtest.c stable/9/crypto/openssl/crypto/ecdh/ech_err.c stable/9/crypto/openssl/crypto/ecdh/ech_key.c stable/9/crypto/openssl/crypto/ecdh/ech_lib.c stable/9/crypto/openssl/crypto/ecdh/ech_locl.h stable/9/crypto/openssl/crypto/ecdh/ech_ossl.c stable/9/crypto/openssl/crypto/ecdsa/Makefile stable/9/crypto/openssl/crypto/ecdsa/ecdsa.h stable/9/crypto/openssl/crypto/ecdsa/ecdsatest.c stable/9/crypto/openssl/crypto/ecdsa/ecs_asn1.c stable/9/crypto/openssl/crypto/ecdsa/ecs_err.c stable/9/crypto/openssl/crypto/ecdsa/ecs_lib.c stable/9/crypto/openssl/crypto/ecdsa/ecs_locl.h stable/9/crypto/openssl/crypto/ecdsa/ecs_ossl.c stable/9/crypto/openssl/crypto/ecdsa/ecs_sign.c stable/9/crypto/openssl/crypto/ecdsa/ecs_vrf.c stable/9/crypto/openssl/crypto/engine/eng_all.c stable/9/crypto/openssl/crypto/engine/eng_cnf.c stable/9/crypto/openssl/crypto/engine/eng_cryptodev.c stable/9/crypto/openssl/crypto/engine/eng_ctrl.c stable/9/crypto/openssl/crypto/engine/eng_dyn.c stable/9/crypto/openssl/crypto/engine/eng_err.c stable/9/crypto/openssl/crypto/engine/eng_fat.c stable/9/crypto/openssl/crypto/engine/eng_init.c stable/9/crypto/openssl/crypto/engine/eng_int.h stable/9/crypto/openssl/crypto/engine/eng_lib.c stable/9/crypto/openssl/crypto/engine/eng_list.c stable/9/crypto/openssl/crypto/engine/eng_openssl.c stable/9/crypto/openssl/crypto/engine/eng_padlock.c stable/9/crypto/openssl/crypto/engine/eng_pkey.c stable/9/crypto/openssl/crypto/engine/eng_table.c stable/9/crypto/openssl/crypto/engine/engine.h stable/9/crypto/openssl/crypto/engine/enginetest.c stable/9/crypto/openssl/crypto/engine/tb_cipher.c stable/9/crypto/openssl/crypto/engine/tb_dh.c stable/9/crypto/openssl/crypto/engine/tb_digest.c stable/9/crypto/openssl/crypto/engine/tb_dsa.c stable/9/crypto/openssl/crypto/engine/tb_ecdh.c stable/9/crypto/openssl/crypto/engine/tb_ecdsa.c stable/9/crypto/openssl/crypto/engine/tb_rand.c stable/9/crypto/openssl/crypto/engine/tb_rsa.c stable/9/crypto/openssl/crypto/engine/tb_store.c stable/9/crypto/openssl/crypto/err/err.c stable/9/crypto/openssl/crypto/err/err.h stable/9/crypto/openssl/crypto/err/err_all.c stable/9/crypto/openssl/crypto/err/err_bio.c stable/9/crypto/openssl/crypto/err/err_def.c stable/9/crypto/openssl/crypto/err/err_prn.c stable/9/crypto/openssl/crypto/err/err_str.c stable/9/crypto/openssl/crypto/evp/bio_b64.c stable/9/crypto/openssl/crypto/evp/bio_enc.c stable/9/crypto/openssl/crypto/evp/bio_md.c stable/9/crypto/openssl/crypto/evp/bio_ok.c stable/9/crypto/openssl/crypto/evp/c_all.c stable/9/crypto/openssl/crypto/evp/c_allc.c stable/9/crypto/openssl/crypto/evp/c_alld.c stable/9/crypto/openssl/crypto/evp/dig_eng.c stable/9/crypto/openssl/crypto/evp/digest.c stable/9/crypto/openssl/crypto/evp/e_aes.c stable/9/crypto/openssl/crypto/evp/e_bf.c stable/9/crypto/openssl/crypto/evp/e_camellia.c stable/9/crypto/openssl/crypto/evp/e_cast.c stable/9/crypto/openssl/crypto/evp/e_des.c stable/9/crypto/openssl/crypto/evp/e_des3.c stable/9/crypto/openssl/crypto/evp/e_dsa.c stable/9/crypto/openssl/crypto/evp/e_idea.c stable/9/crypto/openssl/crypto/evp/e_null.c stable/9/crypto/openssl/crypto/evp/e_old.c stable/9/crypto/openssl/crypto/evp/e_rc2.c stable/9/crypto/openssl/crypto/evp/e_rc4.c stable/9/crypto/openssl/crypto/evp/e_rc5.c stable/9/crypto/openssl/crypto/evp/e_seed.c stable/9/crypto/openssl/crypto/evp/e_xcbc_d.c stable/9/crypto/openssl/crypto/evp/enc_min.c stable/9/crypto/openssl/crypto/evp/encode.c stable/9/crypto/openssl/crypto/evp/evp.h stable/9/crypto/openssl/crypto/evp/evp_acnf.c stable/9/crypto/openssl/crypto/evp/evp_cnf.c stable/9/crypto/openssl/crypto/evp/evp_enc.c stable/9/crypto/openssl/crypto/evp/evp_err.c stable/9/crypto/openssl/crypto/evp/evp_key.c stable/9/crypto/openssl/crypto/evp/evp_lib.c stable/9/crypto/openssl/crypto/evp/evp_locl.h stable/9/crypto/openssl/crypto/evp/evp_pbe.c stable/9/crypto/openssl/crypto/evp/evp_pkey.c stable/9/crypto/openssl/crypto/evp/evp_test.c stable/9/crypto/openssl/crypto/evp/m_dss.c stable/9/crypto/openssl/crypto/evp/m_dss1.c stable/9/crypto/openssl/crypto/evp/m_ecdsa.c stable/9/crypto/openssl/crypto/evp/m_md2.c stable/9/crypto/openssl/crypto/evp/m_md4.c stable/9/crypto/openssl/crypto/evp/m_md5.c stable/9/crypto/openssl/crypto/evp/m_mdc2.c stable/9/crypto/openssl/crypto/evp/m_null.c stable/9/crypto/openssl/crypto/evp/m_ripemd.c stable/9/crypto/openssl/crypto/evp/m_sha.c stable/9/crypto/openssl/crypto/evp/m_sha1.c stable/9/crypto/openssl/crypto/evp/names.c stable/9/crypto/openssl/crypto/evp/openbsd_hw.c stable/9/crypto/openssl/crypto/evp/p5_crpt.c stable/9/crypto/openssl/crypto/evp/p5_crpt2.c stable/9/crypto/openssl/crypto/evp/p_dec.c stable/9/crypto/openssl/crypto/evp/p_enc.c stable/9/crypto/openssl/crypto/evp/p_lib.c stable/9/crypto/openssl/crypto/evp/p_open.c stable/9/crypto/openssl/crypto/evp/p_seal.c stable/9/crypto/openssl/crypto/evp/p_sign.c stable/9/crypto/openssl/crypto/evp/p_verify.c stable/9/crypto/openssl/crypto/ex_data.c stable/9/crypto/openssl/crypto/fips_err.c stable/9/crypto/openssl/crypto/fips_err.h stable/9/crypto/openssl/crypto/hmac/hmac.c stable/9/crypto/openssl/crypto/hmac/hmac.h stable/9/crypto/openssl/crypto/hmac/hmactest.c stable/9/crypto/openssl/crypto/idea/i_cbc.c stable/9/crypto/openssl/crypto/idea/i_cfb64.c stable/9/crypto/openssl/crypto/idea/i_ecb.c stable/9/crypto/openssl/crypto/idea/i_ofb64.c stable/9/crypto/openssl/crypto/idea/i_skey.c stable/9/crypto/openssl/crypto/idea/idea.h stable/9/crypto/openssl/crypto/idea/idea_lcl.h stable/9/crypto/openssl/crypto/idea/idea_spd.c stable/9/crypto/openssl/crypto/idea/ideatest.c stable/9/crypto/openssl/crypto/jpake/jpake.c stable/9/crypto/openssl/crypto/jpake/jpake.h stable/9/crypto/openssl/crypto/jpake/jpake_err.c stable/9/crypto/openssl/crypto/jpake/jpaketest.c stable/9/crypto/openssl/crypto/krb5/krb5_asn.c stable/9/crypto/openssl/crypto/krb5/krb5_asn.h stable/9/crypto/openssl/crypto/lhash/lh_stats.c stable/9/crypto/openssl/crypto/lhash/lh_test.c stable/9/crypto/openssl/crypto/lhash/lhash.c stable/9/crypto/openssl/crypto/lhash/lhash.h stable/9/crypto/openssl/crypto/md2/md2.c stable/9/crypto/openssl/crypto/md2/md2.h stable/9/crypto/openssl/crypto/md2/md2_dgst.c stable/9/crypto/openssl/crypto/md2/md2_one.c stable/9/crypto/openssl/crypto/md2/md2test.c stable/9/crypto/openssl/crypto/md32_common.h stable/9/crypto/openssl/crypto/md4/md4.c stable/9/crypto/openssl/crypto/md4/md4.h stable/9/crypto/openssl/crypto/md4/md4_dgst.c stable/9/crypto/openssl/crypto/md4/md4_locl.h stable/9/crypto/openssl/crypto/md4/md4_one.c stable/9/crypto/openssl/crypto/md4/md4test.c stable/9/crypto/openssl/crypto/md5/md5.c stable/9/crypto/openssl/crypto/md5/md5.h stable/9/crypto/openssl/crypto/md5/md5_dgst.c stable/9/crypto/openssl/crypto/md5/md5_locl.h stable/9/crypto/openssl/crypto/md5/md5_one.c stable/9/crypto/openssl/crypto/md5/md5test.c stable/9/crypto/openssl/crypto/mdc2/mdc2.h stable/9/crypto/openssl/crypto/mdc2/mdc2_one.c stable/9/crypto/openssl/crypto/mdc2/mdc2dgst.c stable/9/crypto/openssl/crypto/mdc2/mdc2test.c stable/9/crypto/openssl/crypto/mem.c stable/9/crypto/openssl/crypto/mem_clr.c stable/9/crypto/openssl/crypto/mem_dbg.c stable/9/crypto/openssl/crypto/o_dir.c stable/9/crypto/openssl/crypto/o_dir.h stable/9/crypto/openssl/crypto/o_dir_test.c stable/9/crypto/openssl/crypto/o_init.c stable/9/crypto/openssl/crypto/o_str.c stable/9/crypto/openssl/crypto/o_str.h stable/9/crypto/openssl/crypto/o_time.c stable/9/crypto/openssl/crypto/o_time.h stable/9/crypto/openssl/crypto/objects/o_names.c stable/9/crypto/openssl/crypto/objects/obj_dat.c stable/9/crypto/openssl/crypto/objects/obj_err.c stable/9/crypto/openssl/crypto/objects/obj_lib.c stable/9/crypto/openssl/crypto/objects/obj_mac.h stable/9/crypto/openssl/crypto/objects/objects.h stable/9/crypto/openssl/crypto/objects/objects.pl stable/9/crypto/openssl/crypto/ocsp/ocsp.h stable/9/crypto/openssl/crypto/ocsp/ocsp_asn.c stable/9/crypto/openssl/crypto/ocsp/ocsp_cl.c stable/9/crypto/openssl/crypto/ocsp/ocsp_err.c stable/9/crypto/openssl/crypto/ocsp/ocsp_ext.c stable/9/crypto/openssl/crypto/ocsp/ocsp_ht.c stable/9/crypto/openssl/crypto/ocsp/ocsp_lib.c stable/9/crypto/openssl/crypto/ocsp/ocsp_prn.c stable/9/crypto/openssl/crypto/ocsp/ocsp_srv.c stable/9/crypto/openssl/crypto/ocsp/ocsp_vfy.c stable/9/crypto/openssl/crypto/opensslv.h stable/9/crypto/openssl/crypto/ossl_typ.h stable/9/crypto/openssl/crypto/pem/pem.h stable/9/crypto/openssl/crypto/pem/pem2.h stable/9/crypto/openssl/crypto/pem/pem_all.c stable/9/crypto/openssl/crypto/pem/pem_err.c stable/9/crypto/openssl/crypto/pem/pem_info.c stable/9/crypto/openssl/crypto/pem/pem_lib.c stable/9/crypto/openssl/crypto/pem/pem_oth.c stable/9/crypto/openssl/crypto/pem/pem_pk8.c stable/9/crypto/openssl/crypto/pem/pem_pkey.c stable/9/crypto/openssl/crypto/pem/pem_seal.c stable/9/crypto/openssl/crypto/pem/pem_sign.c stable/9/crypto/openssl/crypto/pem/pem_x509.c stable/9/crypto/openssl/crypto/pem/pem_xaux.c stable/9/crypto/openssl/crypto/pkcs12/p12_add.c stable/9/crypto/openssl/crypto/pkcs12/p12_asn.c stable/9/crypto/openssl/crypto/pkcs12/p12_attr.c stable/9/crypto/openssl/crypto/pkcs12/p12_crpt.c stable/9/crypto/openssl/crypto/pkcs12/p12_crt.c stable/9/crypto/openssl/crypto/pkcs12/p12_decr.c stable/9/crypto/openssl/crypto/pkcs12/p12_init.c stable/9/crypto/openssl/crypto/pkcs12/p12_key.c stable/9/crypto/openssl/crypto/pkcs12/p12_kiss.c stable/9/crypto/openssl/crypto/pkcs12/p12_mutl.c stable/9/crypto/openssl/crypto/pkcs12/p12_npas.c stable/9/crypto/openssl/crypto/pkcs12/p12_p8d.c stable/9/crypto/openssl/crypto/pkcs12/p12_p8e.c stable/9/crypto/openssl/crypto/pkcs12/p12_utl.c stable/9/crypto/openssl/crypto/pkcs12/pk12err.c stable/9/crypto/openssl/crypto/pkcs12/pkcs12.h stable/9/crypto/openssl/crypto/pkcs7/pk7_asn1.c stable/9/crypto/openssl/crypto/pkcs7/pk7_attr.c stable/9/crypto/openssl/crypto/pkcs7/pk7_dgst.c stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/9/crypto/openssl/crypto/pkcs7/pk7_enc.c stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/9/crypto/openssl/crypto/pkcs7/pk7_mime.c stable/9/crypto/openssl/crypto/pkcs7/pk7_smime.c stable/9/crypto/openssl/crypto/pkcs7/pkcs7.h stable/9/crypto/openssl/crypto/pkcs7/pkcs7err.c stable/9/crypto/openssl/crypto/pqueue/pq_compat.h stable/9/crypto/openssl/crypto/pqueue/pq_test.c stable/9/crypto/openssl/crypto/pqueue/pqueue.c stable/9/crypto/openssl/crypto/pqueue/pqueue.h stable/9/crypto/openssl/crypto/rand/md_rand.c stable/9/crypto/openssl/crypto/rand/rand.h stable/9/crypto/openssl/crypto/rand/rand_egd.c stable/9/crypto/openssl/crypto/rand/rand_eng.c stable/9/crypto/openssl/crypto/rand/rand_err.c stable/9/crypto/openssl/crypto/rand/rand_lcl.h stable/9/crypto/openssl/crypto/rand/rand_lib.c stable/9/crypto/openssl/crypto/rand/rand_nw.c stable/9/crypto/openssl/crypto/rand/rand_os2.c stable/9/crypto/openssl/crypto/rand/rand_unix.c stable/9/crypto/openssl/crypto/rand/rand_vms.c stable/9/crypto/openssl/crypto/rand/rand_win.c stable/9/crypto/openssl/crypto/rand/randfile.c stable/9/crypto/openssl/crypto/rand/randtest.c stable/9/crypto/openssl/crypto/rc2/rc2.h stable/9/crypto/openssl/crypto/rc2/rc2_cbc.c stable/9/crypto/openssl/crypto/rc2/rc2_ecb.c stable/9/crypto/openssl/crypto/rc2/rc2_locl.h stable/9/crypto/openssl/crypto/rc2/rc2_skey.c stable/9/crypto/openssl/crypto/rc2/rc2cfb64.c stable/9/crypto/openssl/crypto/rc2/rc2ofb64.c stable/9/crypto/openssl/crypto/rc2/rc2speed.c stable/9/crypto/openssl/crypto/rc2/rc2test.c stable/9/crypto/openssl/crypto/rc2/tab.c stable/9/crypto/openssl/crypto/rc4/rc4.c stable/9/crypto/openssl/crypto/rc4/rc4.h stable/9/crypto/openssl/crypto/rc4/rc4_enc.c stable/9/crypto/openssl/crypto/rc4/rc4_fblk.c stable/9/crypto/openssl/crypto/rc4/rc4_locl.h stable/9/crypto/openssl/crypto/rc4/rc4_skey.c stable/9/crypto/openssl/crypto/rc4/rc4speed.c stable/9/crypto/openssl/crypto/rc4/rc4test.c stable/9/crypto/openssl/crypto/rc5/rc5.h stable/9/crypto/openssl/crypto/rc5/rc5_ecb.c stable/9/crypto/openssl/crypto/rc5/rc5_enc.c stable/9/crypto/openssl/crypto/rc5/rc5_locl.h stable/9/crypto/openssl/crypto/rc5/rc5_skey.c stable/9/crypto/openssl/crypto/rc5/rc5cfb64.c stable/9/crypto/openssl/crypto/rc5/rc5ofb64.c stable/9/crypto/openssl/crypto/rc5/rc5speed.c stable/9/crypto/openssl/crypto/rc5/rc5test.c stable/9/crypto/openssl/crypto/ripemd/ripemd.h stable/9/crypto/openssl/crypto/ripemd/rmd160.c stable/9/crypto/openssl/crypto/ripemd/rmd_dgst.c stable/9/crypto/openssl/crypto/ripemd/rmd_locl.h stable/9/crypto/openssl/crypto/ripemd/rmd_one.c stable/9/crypto/openssl/crypto/ripemd/rmdconst.h stable/9/crypto/openssl/crypto/ripemd/rmdtest.c stable/9/crypto/openssl/crypto/rsa/rsa.h stable/9/crypto/openssl/crypto/rsa/rsa_asn1.c stable/9/crypto/openssl/crypto/rsa/rsa_chk.c stable/9/crypto/openssl/crypto/rsa/rsa_depr.c stable/9/crypto/openssl/crypto/rsa/rsa_eay.c stable/9/crypto/openssl/crypto/rsa/rsa_eng.c stable/9/crypto/openssl/crypto/rsa/rsa_err.c stable/9/crypto/openssl/crypto/rsa/rsa_gen.c stable/9/crypto/openssl/crypto/rsa/rsa_lib.c stable/9/crypto/openssl/crypto/rsa/rsa_none.c stable/9/crypto/openssl/crypto/rsa/rsa_null.c stable/9/crypto/openssl/crypto/rsa/rsa_oaep.c stable/9/crypto/openssl/crypto/rsa/rsa_pk1.c stable/9/crypto/openssl/crypto/rsa/rsa_pss.c stable/9/crypto/openssl/crypto/rsa/rsa_saos.c stable/9/crypto/openssl/crypto/rsa/rsa_sign.c stable/9/crypto/openssl/crypto/rsa/rsa_ssl.c stable/9/crypto/openssl/crypto/rsa/rsa_test.c stable/9/crypto/openssl/crypto/rsa/rsa_x931.c stable/9/crypto/openssl/crypto/rsa/rsa_x931g.c stable/9/crypto/openssl/crypto/seed/seed.c stable/9/crypto/openssl/crypto/seed/seed.h stable/9/crypto/openssl/crypto/seed/seed_cbc.c stable/9/crypto/openssl/crypto/seed/seed_cfb.c stable/9/crypto/openssl/crypto/seed/seed_ecb.c stable/9/crypto/openssl/crypto/seed/seed_locl.h stable/9/crypto/openssl/crypto/seed/seed_ofb.c stable/9/crypto/openssl/crypto/sha/sha.c stable/9/crypto/openssl/crypto/sha/sha.h stable/9/crypto/openssl/crypto/sha/sha1.c stable/9/crypto/openssl/crypto/sha/sha1_one.c stable/9/crypto/openssl/crypto/sha/sha1dgst.c stable/9/crypto/openssl/crypto/sha/sha1test.c stable/9/crypto/openssl/crypto/sha/sha256.c stable/9/crypto/openssl/crypto/sha/sha256t.c stable/9/crypto/openssl/crypto/sha/sha512.c stable/9/crypto/openssl/crypto/sha/sha512t.c stable/9/crypto/openssl/crypto/sha/sha_dgst.c stable/9/crypto/openssl/crypto/sha/sha_locl.h stable/9/crypto/openssl/crypto/sha/sha_one.c stable/9/crypto/openssl/crypto/sha/shatest.c stable/9/crypto/openssl/crypto/stack/safestack.h stable/9/crypto/openssl/crypto/stack/stack.c stable/9/crypto/openssl/crypto/stack/stack.h stable/9/crypto/openssl/crypto/store/store.h stable/9/crypto/openssl/crypto/store/str_err.c stable/9/crypto/openssl/crypto/store/str_lib.c stable/9/crypto/openssl/crypto/store/str_locl.h stable/9/crypto/openssl/crypto/store/str_mem.c stable/9/crypto/openssl/crypto/store/str_meth.c stable/9/crypto/openssl/crypto/symhacks.h stable/9/crypto/openssl/crypto/threads/mttest.c stable/9/crypto/openssl/crypto/threads/th-lock.c stable/9/crypto/openssl/crypto/tmdiff.c stable/9/crypto/openssl/crypto/tmdiff.h stable/9/crypto/openssl/crypto/txt_db/txt_db.c stable/9/crypto/openssl/crypto/txt_db/txt_db.h stable/9/crypto/openssl/crypto/ui/ui.h stable/9/crypto/openssl/crypto/ui/ui_compat.c stable/9/crypto/openssl/crypto/ui/ui_compat.h stable/9/crypto/openssl/crypto/ui/ui_err.c stable/9/crypto/openssl/crypto/ui/ui_lib.c stable/9/crypto/openssl/crypto/ui/ui_locl.h stable/9/crypto/openssl/crypto/ui/ui_openssl.c stable/9/crypto/openssl/crypto/ui/ui_util.c stable/9/crypto/openssl/crypto/uid.c stable/9/crypto/openssl/crypto/x509/by_dir.c stable/9/crypto/openssl/crypto/x509/by_file.c stable/9/crypto/openssl/crypto/x509/x509.h stable/9/crypto/openssl/crypto/x509/x509_att.c stable/9/crypto/openssl/crypto/x509/x509_cmp.c stable/9/crypto/openssl/crypto/x509/x509_d2.c stable/9/crypto/openssl/crypto/x509/x509_def.c stable/9/crypto/openssl/crypto/x509/x509_err.c stable/9/crypto/openssl/crypto/x509/x509_ext.c stable/9/crypto/openssl/crypto/x509/x509_lu.c stable/9/crypto/openssl/crypto/x509/x509_obj.c stable/9/crypto/openssl/crypto/x509/x509_r2x.c stable/9/crypto/openssl/crypto/x509/x509_req.c stable/9/crypto/openssl/crypto/x509/x509_set.c stable/9/crypto/openssl/crypto/x509/x509_trs.c stable/9/crypto/openssl/crypto/x509/x509_txt.c stable/9/crypto/openssl/crypto/x509/x509_v3.c stable/9/crypto/openssl/crypto/x509/x509_vfy.c stable/9/crypto/openssl/crypto/x509/x509_vfy.h stable/9/crypto/openssl/crypto/x509/x509_vpm.c stable/9/crypto/openssl/crypto/x509/x509cset.c stable/9/crypto/openssl/crypto/x509/x509name.c stable/9/crypto/openssl/crypto/x509/x509rset.c stable/9/crypto/openssl/crypto/x509/x509spki.c stable/9/crypto/openssl/crypto/x509/x509type.c stable/9/crypto/openssl/crypto/x509/x_all.c stable/9/crypto/openssl/crypto/x509v3/ext_dat.h stable/9/crypto/openssl/crypto/x509v3/pcy_cache.c stable/9/crypto/openssl/crypto/x509v3/pcy_data.c stable/9/crypto/openssl/crypto/x509v3/pcy_int.h stable/9/crypto/openssl/crypto/x509v3/pcy_lib.c stable/9/crypto/openssl/crypto/x509v3/pcy_map.c stable/9/crypto/openssl/crypto/x509v3/pcy_node.c stable/9/crypto/openssl/crypto/x509v3/pcy_tree.c stable/9/crypto/openssl/crypto/x509v3/tabtest.c stable/9/crypto/openssl/crypto/x509v3/v3_addr.c stable/9/crypto/openssl/crypto/x509v3/v3_akey.c stable/9/crypto/openssl/crypto/x509v3/v3_akeya.c stable/9/crypto/openssl/crypto/x509v3/v3_alt.c stable/9/crypto/openssl/crypto/x509v3/v3_asid.c stable/9/crypto/openssl/crypto/x509v3/v3_bcons.c stable/9/crypto/openssl/crypto/x509v3/v3_bitst.c stable/9/crypto/openssl/crypto/x509v3/v3_conf.c stable/9/crypto/openssl/crypto/x509v3/v3_cpols.c stable/9/crypto/openssl/crypto/x509v3/v3_crld.c stable/9/crypto/openssl/crypto/x509v3/v3_enum.c stable/9/crypto/openssl/crypto/x509v3/v3_extku.c stable/9/crypto/openssl/crypto/x509v3/v3_genn.c stable/9/crypto/openssl/crypto/x509v3/v3_ia5.c stable/9/crypto/openssl/crypto/x509v3/v3_info.c stable/9/crypto/openssl/crypto/x509v3/v3_int.c stable/9/crypto/openssl/crypto/x509v3/v3_lib.c stable/9/crypto/openssl/crypto/x509v3/v3_ncons.c stable/9/crypto/openssl/crypto/x509v3/v3_ocsp.c stable/9/crypto/openssl/crypto/x509v3/v3_pci.c stable/9/crypto/openssl/crypto/x509v3/v3_pcia.c stable/9/crypto/openssl/crypto/x509v3/v3_pcons.c stable/9/crypto/openssl/crypto/x509v3/v3_pku.c stable/9/crypto/openssl/crypto/x509v3/v3_pmaps.c stable/9/crypto/openssl/crypto/x509v3/v3_prn.c stable/9/crypto/openssl/crypto/x509v3/v3_purp.c stable/9/crypto/openssl/crypto/x509v3/v3_skey.c stable/9/crypto/openssl/crypto/x509v3/v3_sxnet.c stable/9/crypto/openssl/crypto/x509v3/v3_utl.c stable/9/crypto/openssl/crypto/x509v3/v3conf.c stable/9/crypto/openssl/crypto/x509v3/v3err.c stable/9/crypto/openssl/crypto/x509v3/v3prin.c stable/9/crypto/openssl/crypto/x509v3/x509v3.h stable/9/crypto/openssl/demos/asn1/ocsp.c stable/9/crypto/openssl/demos/b64.c stable/9/crypto/openssl/demos/bio/saccept.c stable/9/crypto/openssl/demos/bio/sconnect.c stable/9/crypto/openssl/demos/easy_tls/easy-tls.c stable/9/crypto/openssl/demos/easy_tls/easy-tls.h stable/9/crypto/openssl/demos/easy_tls/test.c stable/9/crypto/openssl/demos/easy_tls/test.h stable/9/crypto/openssl/demos/engines/cluster_labs/cluster_labs.h stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.c stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.c stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.h stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca.c stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.c stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.h stable/9/crypto/openssl/demos/engines/ibmca/ica_openssl_api.h stable/9/crypto/openssl/demos/engines/zencod/hw_zencod.c stable/9/crypto/openssl/demos/engines/zencod/hw_zencod.h stable/9/crypto/openssl/demos/engines/zencod/hw_zencod_err.c stable/9/crypto/openssl/demos/engines/zencod/hw_zencod_err.h stable/9/crypto/openssl/demos/jpake/jpakedemo.c stable/9/crypto/openssl/demos/pkcs12/pkread.c stable/9/crypto/openssl/demos/pkcs12/pkwrite.c stable/9/crypto/openssl/demos/prime/prime.c stable/9/crypto/openssl/demos/selfsign.c stable/9/crypto/openssl/demos/sign/sign.c stable/9/crypto/openssl/demos/spkigen.c stable/9/crypto/openssl/demos/state_machine/state_machine.c stable/9/crypto/openssl/demos/tunala/breakage.c stable/9/crypto/openssl/demos/tunala/buffer.c stable/9/crypto/openssl/demos/tunala/cb.c stable/9/crypto/openssl/demos/tunala/ip.c stable/9/crypto/openssl/demos/tunala/sm.c stable/9/crypto/openssl/demos/tunala/tunala.c stable/9/crypto/openssl/demos/tunala/tunala.h stable/9/crypto/openssl/demos/x509/mkcert.c stable/9/crypto/openssl/demos/x509/mkreq.c stable/9/crypto/openssl/doc/apps/ciphers.pod stable/9/crypto/openssl/doc/crypto/d2i_X509.pod stable/9/crypto/openssl/e_os.h stable/9/crypto/openssl/e_os2.h stable/9/crypto/openssl/engines/e_4758cca.c stable/9/crypto/openssl/engines/e_4758cca_err.c stable/9/crypto/openssl/engines/e_4758cca_err.h stable/9/crypto/openssl/engines/e_aep.c stable/9/crypto/openssl/engines/e_aep_err.c stable/9/crypto/openssl/engines/e_aep_err.h stable/9/crypto/openssl/engines/e_atalla.c stable/9/crypto/openssl/engines/e_atalla_err.c stable/9/crypto/openssl/engines/e_atalla_err.h stable/9/crypto/openssl/engines/e_capi.c stable/9/crypto/openssl/engines/e_capi_err.c stable/9/crypto/openssl/engines/e_capi_err.h stable/9/crypto/openssl/engines/e_chil.c stable/9/crypto/openssl/engines/e_chil_err.c stable/9/crypto/openssl/engines/e_chil_err.h stable/9/crypto/openssl/engines/e_cswift.c stable/9/crypto/openssl/engines/e_cswift_err.c stable/9/crypto/openssl/engines/e_cswift_err.h stable/9/crypto/openssl/engines/e_gmp.c stable/9/crypto/openssl/engines/e_gmp_err.c stable/9/crypto/openssl/engines/e_gmp_err.h stable/9/crypto/openssl/engines/e_nuron.c stable/9/crypto/openssl/engines/e_nuron_err.c stable/9/crypto/openssl/engines/e_nuron_err.h stable/9/crypto/openssl/engines/e_sureware.c stable/9/crypto/openssl/engines/e_sureware_err.c stable/9/crypto/openssl/engines/e_sureware_err.h stable/9/crypto/openssl/engines/e_ubsec.c stable/9/crypto/openssl/engines/e_ubsec_err.c stable/9/crypto/openssl/engines/e_ubsec_err.h stable/9/crypto/openssl/engines/vendor_defns/aep.h stable/9/crypto/openssl/engines/vendor_defns/atalla.h stable/9/crypto/openssl/engines/vendor_defns/cswift.h stable/9/crypto/openssl/engines/vendor_defns/hw_4758_cca.h stable/9/crypto/openssl/engines/vendor_defns/hw_ubsec.h stable/9/crypto/openssl/engines/vendor_defns/hwcryptohook.h stable/9/crypto/openssl/engines/vendor_defns/sureware.h stable/9/crypto/openssl/fips/aes/fips_aes_selftest.c stable/9/crypto/openssl/fips/aes/fips_aesavs.c stable/9/crypto/openssl/fips/des/fips_des_selftest.c stable/9/crypto/openssl/fips/des/fips_desmovs.c stable/9/crypto/openssl/fips/dh/dh_gen.c stable/9/crypto/openssl/fips/dh/fips_dh_check.c stable/9/crypto/openssl/fips/dh/fips_dh_gen.c stable/9/crypto/openssl/fips/dh/fips_dh_key.c stable/9/crypto/openssl/fips/dh/fips_dh_lib.c stable/9/crypto/openssl/fips/dsa/fips_dsa_gen.c stable/9/crypto/openssl/fips/dsa/fips_dsa_key.c stable/9/crypto/openssl/fips/dsa/fips_dsa_lib.c stable/9/crypto/openssl/fips/dsa/fips_dsa_ossl.c stable/9/crypto/openssl/fips/dsa/fips_dsa_selftest.c stable/9/crypto/openssl/fips/dsa/fips_dsa_sign.c stable/9/crypto/openssl/fips/dsa/fips_dsatest.c stable/9/crypto/openssl/fips/dsa/fips_dssvs.c stable/9/crypto/openssl/fips/fips.c stable/9/crypto/openssl/fips/fips.h stable/9/crypto/openssl/fips/fips_canister.c stable/9/crypto/openssl/fips/fips_locl.h stable/9/crypto/openssl/fips/fips_premain.c stable/9/crypto/openssl/fips/fips_test_suite.c stable/9/crypto/openssl/fips/fips_utl.h stable/9/crypto/openssl/fips/hmac/fips_hmac.c stable/9/crypto/openssl/fips/hmac/fips_hmac_selftest.c stable/9/crypto/openssl/fips/hmac/fips_hmactest.c stable/9/crypto/openssl/fips/rand/fips_rand.c stable/9/crypto/openssl/fips/rand/fips_rand.h stable/9/crypto/openssl/fips/rand/fips_rand_selftest.c stable/9/crypto/openssl/fips/rand/fips_randtest.c stable/9/crypto/openssl/fips/rand/fips_rngvs.c stable/9/crypto/openssl/fips/rsa/fips_rsa_eay.c stable/9/crypto/openssl/fips/rsa/fips_rsa_gen.c stable/9/crypto/openssl/fips/rsa/fips_rsa_lib.c stable/9/crypto/openssl/fips/rsa/fips_rsa_selftest.c stable/9/crypto/openssl/fips/rsa/fips_rsa_sign.c stable/9/crypto/openssl/fips/rsa/fips_rsa_x931g.c stable/9/crypto/openssl/fips/rsa/fips_rsagtest.c stable/9/crypto/openssl/fips/rsa/fips_rsastest.c stable/9/crypto/openssl/fips/rsa/fips_rsavtest.c stable/9/crypto/openssl/fips/sha/fips_sha1_selftest.c stable/9/crypto/openssl/fips/sha/fips_shatest.c stable/9/crypto/openssl/fips/sha/fips_standalone_sha1.c stable/9/crypto/openssl/openssl.spec stable/9/crypto/openssl/ssl/bio_ssl.c stable/9/crypto/openssl/ssl/d1_both.c stable/9/crypto/openssl/ssl/d1_clnt.c stable/9/crypto/openssl/ssl/d1_enc.c stable/9/crypto/openssl/ssl/d1_lib.c stable/9/crypto/openssl/ssl/d1_meth.c stable/9/crypto/openssl/ssl/d1_pkt.c stable/9/crypto/openssl/ssl/d1_srvr.c stable/9/crypto/openssl/ssl/dtls1.h stable/9/crypto/openssl/ssl/kssl.c stable/9/crypto/openssl/ssl/kssl.h stable/9/crypto/openssl/ssl/kssl_lcl.h stable/9/crypto/openssl/ssl/s23_clnt.c stable/9/crypto/openssl/ssl/s23_lib.c stable/9/crypto/openssl/ssl/s23_meth.c stable/9/crypto/openssl/ssl/s23_pkt.c stable/9/crypto/openssl/ssl/s23_srvr.c stable/9/crypto/openssl/ssl/s2_clnt.c stable/9/crypto/openssl/ssl/s2_enc.c stable/9/crypto/openssl/ssl/s2_lib.c stable/9/crypto/openssl/ssl/s2_meth.c stable/9/crypto/openssl/ssl/s2_pkt.c stable/9/crypto/openssl/ssl/s2_srvr.c stable/9/crypto/openssl/ssl/s3_both.c stable/9/crypto/openssl/ssl/s3_cbc.c stable/9/crypto/openssl/ssl/s3_clnt.c stable/9/crypto/openssl/ssl/s3_enc.c stable/9/crypto/openssl/ssl/s3_lib.c stable/9/crypto/openssl/ssl/s3_meth.c stable/9/crypto/openssl/ssl/s3_pkt.c stable/9/crypto/openssl/ssl/s3_srvr.c stable/9/crypto/openssl/ssl/ssl.h stable/9/crypto/openssl/ssl/ssl2.h stable/9/crypto/openssl/ssl/ssl23.h stable/9/crypto/openssl/ssl/ssl3.h stable/9/crypto/openssl/ssl/ssl_algs.c stable/9/crypto/openssl/ssl/ssl_asn1.c stable/9/crypto/openssl/ssl/ssl_cert.c stable/9/crypto/openssl/ssl/ssl_ciph.c stable/9/crypto/openssl/ssl/ssl_err.c stable/9/crypto/openssl/ssl/ssl_err2.c stable/9/crypto/openssl/ssl/ssl_lib.c stable/9/crypto/openssl/ssl/ssl_locl.h stable/9/crypto/openssl/ssl/ssl_rsa.c stable/9/crypto/openssl/ssl/ssl_sess.c stable/9/crypto/openssl/ssl/ssl_stat.c stable/9/crypto/openssl/ssl/ssl_task.c stable/9/crypto/openssl/ssl/ssl_txt.c stable/9/crypto/openssl/ssl/ssltest.c stable/9/crypto/openssl/ssl/t1_clnt.c stable/9/crypto/openssl/ssl/t1_enc.c stable/9/crypto/openssl/ssl/t1_lib.c stable/9/crypto/openssl/ssl/t1_meth.c stable/9/crypto/openssl/ssl/t1_reneg.c stable/9/crypto/openssl/ssl/t1_srvr.c stable/9/crypto/openssl/ssl/tls1.h stable/9/crypto/openssl/test/dummytest.c stable/9/crypto/openssl/test/igetest.c stable/9/crypto/openssl/test/methtest.c stable/9/crypto/openssl/test/r160test.c stable/9/crypto/openssl/util/ck_errf.pl stable/9/crypto/openssl/util/mkerr.pl stable/9/secure/lib/libcrypto/Makefile.inc stable/9/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/9/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/9/secure/lib/libcrypto/man/BIO_ctrl.3 stable/9/secure/lib/libcrypto/man/BIO_f_base64.3 stable/9/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/9/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/9/secure/lib/libcrypto/man/BIO_f_md.3 stable/9/secure/lib/libcrypto/man/BIO_f_null.3 stable/9/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/9/secure/lib/libcrypto/man/BIO_find_type.3 stable/9/secure/lib/libcrypto/man/BIO_new.3 stable/9/secure/lib/libcrypto/man/BIO_push.3 stable/9/secure/lib/libcrypto/man/BIO_read.3 stable/9/secure/lib/libcrypto/man/BIO_s_accept.3 stable/9/secure/lib/libcrypto/man/BIO_s_bio.3 stable/9/secure/lib/libcrypto/man/BIO_s_connect.3 stable/9/secure/lib/libcrypto/man/BIO_s_fd.3 stable/9/secure/lib/libcrypto/man/BIO_s_file.3 stable/9/secure/lib/libcrypto/man/BIO_s_mem.3 stable/9/secure/lib/libcrypto/man/BIO_s_null.3 stable/9/secure/lib/libcrypto/man/BIO_s_socket.3 stable/9/secure/lib/libcrypto/man/BIO_set_callback.3 stable/9/secure/lib/libcrypto/man/BIO_should_retry.3 stable/9/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/9/secure/lib/libcrypto/man/BN_CTX_new.3 stable/9/secure/lib/libcrypto/man/BN_CTX_start.3 stable/9/secure/lib/libcrypto/man/BN_add.3 stable/9/secure/lib/libcrypto/man/BN_add_word.3 stable/9/secure/lib/libcrypto/man/BN_bn2bin.3 stable/9/secure/lib/libcrypto/man/BN_cmp.3 stable/9/secure/lib/libcrypto/man/BN_copy.3 stable/9/secure/lib/libcrypto/man/BN_generate_prime.3 stable/9/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/9/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/9/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/9/secure/lib/libcrypto/man/BN_new.3 stable/9/secure/lib/libcrypto/man/BN_num_bytes.3 stable/9/secure/lib/libcrypto/man/BN_rand.3 stable/9/secure/lib/libcrypto/man/BN_set_bit.3 stable/9/secure/lib/libcrypto/man/BN_swap.3 stable/9/secure/lib/libcrypto/man/BN_zero.3 stable/9/secure/lib/libcrypto/man/CONF_modules_free.3 stable/9/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/9/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/9/secure/lib/libcrypto/man/DH_generate_key.3 stable/9/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/9/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/DH_new.3 stable/9/secure/lib/libcrypto/man/DH_set_method.3 stable/9/secure/lib/libcrypto/man/DH_size.3 stable/9/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/9/secure/lib/libcrypto/man/DSA_do_sign.3 stable/9/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/9/secure/lib/libcrypto/man/DSA_generate_key.3 stable/9/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/9/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/DSA_new.3 stable/9/secure/lib/libcrypto/man/DSA_set_method.3 stable/9/secure/lib/libcrypto/man/DSA_sign.3 stable/9/secure/lib/libcrypto/man/DSA_size.3 stable/9/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/9/secure/lib/libcrypto/man/ERR_clear_error.3 stable/9/secure/lib/libcrypto/man/ERR_error_string.3 stable/9/secure/lib/libcrypto/man/ERR_get_error.3 stable/9/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/9/secure/lib/libcrypto/man/ERR_load_strings.3 stable/9/secure/lib/libcrypto/man/ERR_print_errors.3 stable/9/secure/lib/libcrypto/man/ERR_put_error.3 stable/9/secure/lib/libcrypto/man/ERR_remove_state.3 stable/9/secure/lib/libcrypto/man/ERR_set_mark.3 stable/9/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/9/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/9/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/9/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/9/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/9/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/9/secure/lib/libcrypto/man/EVP_SealInit.3 stable/9/secure/lib/libcrypto/man/EVP_SignInit.3 stable/9/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/9/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/9/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/9/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/9/secure/lib/libcrypto/man/OPENSSL_config.3 stable/9/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/9/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/9/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/9/secure/lib/libcrypto/man/PKCS12_create.3 stable/9/secure/lib/libcrypto/man/PKCS12_parse.3 stable/9/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/9/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/9/secure/lib/libcrypto/man/PKCS7_sign.3 stable/9/secure/lib/libcrypto/man/PKCS7_verify.3 stable/9/secure/lib/libcrypto/man/RAND_add.3 stable/9/secure/lib/libcrypto/man/RAND_bytes.3 stable/9/secure/lib/libcrypto/man/RAND_cleanup.3 stable/9/secure/lib/libcrypto/man/RAND_egd.3 stable/9/secure/lib/libcrypto/man/RAND_load_file.3 stable/9/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/9/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/9/secure/lib/libcrypto/man/RSA_check_key.3 stable/9/secure/lib/libcrypto/man/RSA_generate_key.3 stable/9/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/RSA_new.3 stable/9/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/9/secure/lib/libcrypto/man/RSA_print.3 stable/9/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/9/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/9/secure/lib/libcrypto/man/RSA_set_method.3 stable/9/secure/lib/libcrypto/man/RSA_sign.3 stable/9/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/9/secure/lib/libcrypto/man/RSA_size.3 stable/9/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/9/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/9/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/9/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/9/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/9/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/9/secure/lib/libcrypto/man/X509_new.3 stable/9/secure/lib/libcrypto/man/bio.3 stable/9/secure/lib/libcrypto/man/blowfish.3 stable/9/secure/lib/libcrypto/man/bn.3 stable/9/secure/lib/libcrypto/man/bn_internal.3 stable/9/secure/lib/libcrypto/man/buffer.3 stable/9/secure/lib/libcrypto/man/crypto.3 stable/9/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/9/secure/lib/libcrypto/man/d2i_DHparams.3 stable/9/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/9/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/9/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/9/secure/lib/libcrypto/man/d2i_X509.3 stable/9/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/9/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/9/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/9/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/9/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/9/secure/lib/libcrypto/man/des.3 stable/9/secure/lib/libcrypto/man/dh.3 stable/9/secure/lib/libcrypto/man/dsa.3 stable/9/secure/lib/libcrypto/man/ecdsa.3 stable/9/secure/lib/libcrypto/man/engine.3 stable/9/secure/lib/libcrypto/man/err.3 stable/9/secure/lib/libcrypto/man/evp.3 stable/9/secure/lib/libcrypto/man/hmac.3 stable/9/secure/lib/libcrypto/man/lh_stats.3 stable/9/secure/lib/libcrypto/man/lhash.3 stable/9/secure/lib/libcrypto/man/md5.3 stable/9/secure/lib/libcrypto/man/mdc2.3 stable/9/secure/lib/libcrypto/man/pem.3 stable/9/secure/lib/libcrypto/man/rand.3 stable/9/secure/lib/libcrypto/man/rc4.3 stable/9/secure/lib/libcrypto/man/ripemd.3 stable/9/secure/lib/libcrypto/man/rsa.3 stable/9/secure/lib/libcrypto/man/sha.3 stable/9/secure/lib/libcrypto/man/threads.3 stable/9/secure/lib/libcrypto/man/ui.3 stable/9/secure/lib/libcrypto/man/ui_compat.3 stable/9/secure/lib/libcrypto/man/x509.3 stable/9/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/9/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/9/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/9/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/9/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/9/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/9/secure/lib/libssl/man/SSL_CTX_free.3 stable/9/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/9/secure/lib/libssl/man/SSL_CTX_new.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/9/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/9/secure/lib/libssl/man/SSL_SESSION_free.3 stable/9/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/9/secure/lib/libssl/man/SSL_accept.3 stable/9/secure/lib/libssl/man/SSL_alert_type_string.3 stable/9/secure/lib/libssl/man/SSL_clear.3 stable/9/secure/lib/libssl/man/SSL_connect.3 stable/9/secure/lib/libssl/man/SSL_do_handshake.3 stable/9/secure/lib/libssl/man/SSL_free.3 stable/9/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/9/secure/lib/libssl/man/SSL_get_ciphers.3 stable/9/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/9/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/9/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/9/secure/lib/libssl/man/SSL_get_error.3 stable/9/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/9/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_get_fd.3 stable/9/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/9/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/9/secure/lib/libssl/man/SSL_get_rbio.3 stable/9/secure/lib/libssl/man/SSL_get_session.3 stable/9/secure/lib/libssl/man/SSL_get_verify_result.3 stable/9/secure/lib/libssl/man/SSL_get_version.3 stable/9/secure/lib/libssl/man/SSL_library_init.3 stable/9/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/9/secure/lib/libssl/man/SSL_new.3 stable/9/secure/lib/libssl/man/SSL_pending.3 stable/9/secure/lib/libssl/man/SSL_read.3 stable/9/secure/lib/libssl/man/SSL_rstate_string.3 stable/9/secure/lib/libssl/man/SSL_session_reused.3 stable/9/secure/lib/libssl/man/SSL_set_bio.3 stable/9/secure/lib/libssl/man/SSL_set_connect_state.3 stable/9/secure/lib/libssl/man/SSL_set_fd.3 stable/9/secure/lib/libssl/man/SSL_set_session.3 stable/9/secure/lib/libssl/man/SSL_set_shutdown.3 stable/9/secure/lib/libssl/man/SSL_set_verify_result.3 stable/9/secure/lib/libssl/man/SSL_shutdown.3 stable/9/secure/lib/libssl/man/SSL_state_string.3 stable/9/secure/lib/libssl/man/SSL_want.3 stable/9/secure/lib/libssl/man/SSL_write.3 stable/9/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/9/secure/lib/libssl/man/ssl.3 stable/9/secure/usr.bin/openssl/man/CA.pl.1 stable/9/secure/usr.bin/openssl/man/asn1parse.1 stable/9/secure/usr.bin/openssl/man/ca.1 stable/9/secure/usr.bin/openssl/man/ciphers.1 stable/9/secure/usr.bin/openssl/man/crl.1 stable/9/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/9/secure/usr.bin/openssl/man/dgst.1 stable/9/secure/usr.bin/openssl/man/dhparam.1 stable/9/secure/usr.bin/openssl/man/dsa.1 stable/9/secure/usr.bin/openssl/man/dsaparam.1 stable/9/secure/usr.bin/openssl/man/ec.1 stable/9/secure/usr.bin/openssl/man/ecparam.1 stable/9/secure/usr.bin/openssl/man/enc.1 stable/9/secure/usr.bin/openssl/man/errstr.1 stable/9/secure/usr.bin/openssl/man/gendsa.1 stable/9/secure/usr.bin/openssl/man/genrsa.1 stable/9/secure/usr.bin/openssl/man/nseq.1 stable/9/secure/usr.bin/openssl/man/ocsp.1 stable/9/secure/usr.bin/openssl/man/openssl.1 stable/9/secure/usr.bin/openssl/man/passwd.1 stable/9/secure/usr.bin/openssl/man/pkcs12.1 stable/9/secure/usr.bin/openssl/man/pkcs7.1 stable/9/secure/usr.bin/openssl/man/pkcs8.1 stable/9/secure/usr.bin/openssl/man/rand.1 stable/9/secure/usr.bin/openssl/man/req.1 stable/9/secure/usr.bin/openssl/man/rsa.1 stable/9/secure/usr.bin/openssl/man/rsautl.1 stable/9/secure/usr.bin/openssl/man/s_client.1 stable/9/secure/usr.bin/openssl/man/s_server.1 stable/9/secure/usr.bin/openssl/man/s_time.1 stable/9/secure/usr.bin/openssl/man/sess_id.1 stable/9/secure/usr.bin/openssl/man/smime.1 stable/9/secure/usr.bin/openssl/man/speed.1 stable/9/secure/usr.bin/openssl/man/spkac.1 stable/9/secure/usr.bin/openssl/man/verify.1 stable/9/secure/usr.bin/openssl/man/version.1 stable/9/secure/usr.bin/openssl/man/x509.1 stable/9/secure/usr.bin/openssl/man/x509v3_config.1 Directory Properties: stable/9/crypto/openssl/ (props changed) Changes in other areas also in this revision: Added: stable/8/crypto/openssl/util/indent.pro - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/indent.pro stable/8/crypto/openssl/util/openssl-format-source - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/openssl-format-source stable/8/crypto/openssl/util/su-filter.pl - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/su-filter.pl Modified: stable/8/crypto/openssl/CHANGES stable/8/crypto/openssl/Makefile stable/8/crypto/openssl/NEWS stable/8/crypto/openssl/README stable/8/crypto/openssl/apps/app_rand.c stable/8/crypto/openssl/apps/apps.c stable/8/crypto/openssl/apps/apps.h stable/8/crypto/openssl/apps/asn1pars.c stable/8/crypto/openssl/apps/ca.c stable/8/crypto/openssl/apps/ciphers.c stable/8/crypto/openssl/apps/cms.c stable/8/crypto/openssl/apps/crl.c stable/8/crypto/openssl/apps/crl2p7.c stable/8/crypto/openssl/apps/dgst.c stable/8/crypto/openssl/apps/dh.c stable/8/crypto/openssl/apps/dhparam.c stable/8/crypto/openssl/apps/dsa.c stable/8/crypto/openssl/apps/dsaparam.c stable/8/crypto/openssl/apps/ec.c stable/8/crypto/openssl/apps/ecparam.c stable/8/crypto/openssl/apps/enc.c stable/8/crypto/openssl/apps/engine.c stable/8/crypto/openssl/apps/errstr.c stable/8/crypto/openssl/apps/gendh.c stable/8/crypto/openssl/apps/gendsa.c stable/8/crypto/openssl/apps/genrsa.c stable/8/crypto/openssl/apps/nseq.c stable/8/crypto/openssl/apps/ocsp.c stable/8/crypto/openssl/apps/openssl.c stable/8/crypto/openssl/apps/passwd.c stable/8/crypto/openssl/apps/pkcs12.c stable/8/crypto/openssl/apps/pkcs7.c stable/8/crypto/openssl/apps/pkcs8.c stable/8/crypto/openssl/apps/prime.c stable/8/crypto/openssl/apps/progs.h stable/8/crypto/openssl/apps/rand.c stable/8/crypto/openssl/apps/req.c stable/8/crypto/openssl/apps/rsa.c stable/8/crypto/openssl/apps/rsautl.c stable/8/crypto/openssl/apps/s_apps.h stable/8/crypto/openssl/apps/s_cb.c stable/8/crypto/openssl/apps/s_client.c stable/8/crypto/openssl/apps/s_server.c stable/8/crypto/openssl/apps/s_socket.c stable/8/crypto/openssl/apps/s_time.c stable/8/crypto/openssl/apps/sess_id.c stable/8/crypto/openssl/apps/smime.c stable/8/crypto/openssl/apps/speed.c stable/8/crypto/openssl/apps/spkac.c stable/8/crypto/openssl/apps/testdsa.h stable/8/crypto/openssl/apps/testrsa.h stable/8/crypto/openssl/apps/timeouts.h stable/8/crypto/openssl/apps/verify.c stable/8/crypto/openssl/apps/version.c stable/8/crypto/openssl/apps/winrand.c stable/8/crypto/openssl/apps/x509.c stable/8/crypto/openssl/bugs/alpha.c stable/8/crypto/openssl/bugs/dggccbug.c stable/8/crypto/openssl/bugs/sgiccbug.c stable/8/crypto/openssl/bugs/stream.c stable/8/crypto/openssl/bugs/ultrixcc.c stable/8/crypto/openssl/crypto/LPdir_nyi.c stable/8/crypto/openssl/crypto/LPdir_unix.c stable/8/crypto/openssl/crypto/LPdir_vms.c stable/8/crypto/openssl/crypto/LPdir_win.c stable/8/crypto/openssl/crypto/LPdir_win32.c stable/8/crypto/openssl/crypto/LPdir_wince.c stable/8/crypto/openssl/crypto/aes/aes.h stable/8/crypto/openssl/crypto/aes/aes_cbc.c stable/8/crypto/openssl/crypto/aes/aes_cfb.c stable/8/crypto/openssl/crypto/aes/aes_core.c stable/8/crypto/openssl/crypto/aes/aes_ctr.c stable/8/crypto/openssl/crypto/aes/aes_ecb.c stable/8/crypto/openssl/crypto/aes/aes_ige.c stable/8/crypto/openssl/crypto/aes/aes_locl.h stable/8/crypto/openssl/crypto/aes/aes_misc.c stable/8/crypto/openssl/crypto/aes/aes_ofb.c stable/8/crypto/openssl/crypto/aes/aes_wrap.c stable/8/crypto/openssl/crypto/asn1/a_bitstr.c stable/8/crypto/openssl/crypto/asn1/a_bool.c stable/8/crypto/openssl/crypto/asn1/a_bytes.c stable/8/crypto/openssl/crypto/asn1/a_d2i_fp.c stable/8/crypto/openssl/crypto/asn1/a_digest.c stable/8/crypto/openssl/crypto/asn1/a_dup.c stable/8/crypto/openssl/crypto/asn1/a_enum.c stable/8/crypto/openssl/crypto/asn1/a_gentm.c stable/8/crypto/openssl/crypto/asn1/a_hdr.c stable/8/crypto/openssl/crypto/asn1/a_i2d_fp.c stable/8/crypto/openssl/crypto/asn1/a_int.c stable/8/crypto/openssl/crypto/asn1/a_mbstr.c stable/8/crypto/openssl/crypto/asn1/a_meth.c stable/8/crypto/openssl/crypto/asn1/a_object.c stable/8/crypto/openssl/crypto/asn1/a_octet.c stable/8/crypto/openssl/crypto/asn1/a_print.c stable/8/crypto/openssl/crypto/asn1/a_set.c stable/8/crypto/openssl/crypto/asn1/a_sign.c stable/8/crypto/openssl/crypto/asn1/a_strex.c stable/8/crypto/openssl/crypto/asn1/a_strnid.c stable/8/crypto/openssl/crypto/asn1/a_time.c stable/8/crypto/openssl/crypto/asn1/a_type.c stable/8/crypto/openssl/crypto/asn1/a_utctm.c stable/8/crypto/openssl/crypto/asn1/a_utf8.c stable/8/crypto/openssl/crypto/asn1/a_verify.c stable/8/crypto/openssl/crypto/asn1/asn1.h stable/8/crypto/openssl/crypto/asn1/asn1_err.c stable/8/crypto/openssl/crypto/asn1/asn1_gen.c stable/8/crypto/openssl/crypto/asn1/asn1_lib.c stable/8/crypto/openssl/crypto/asn1/asn1_mac.h stable/8/crypto/openssl/crypto/asn1/asn1_par.c stable/8/crypto/openssl/crypto/asn1/asn1t.h stable/8/crypto/openssl/crypto/asn1/asn_mime.c stable/8/crypto/openssl/crypto/asn1/asn_moid.c stable/8/crypto/openssl/crypto/asn1/asn_pack.c stable/8/crypto/openssl/crypto/asn1/charmap.h stable/8/crypto/openssl/crypto/asn1/d2i_pr.c stable/8/crypto/openssl/crypto/asn1/d2i_pu.c stable/8/crypto/openssl/crypto/asn1/evp_asn1.c stable/8/crypto/openssl/crypto/asn1/f_enum.c stable/8/crypto/openssl/crypto/asn1/f_int.c stable/8/crypto/openssl/crypto/asn1/f_string.c stable/8/crypto/openssl/crypto/asn1/i2d_pr.c stable/8/crypto/openssl/crypto/asn1/i2d_pu.c stable/8/crypto/openssl/crypto/asn1/n_pkey.c stable/8/crypto/openssl/crypto/asn1/nsseq.c stable/8/crypto/openssl/crypto/asn1/p5_pbe.c stable/8/crypto/openssl/crypto/asn1/p5_pbev2.c stable/8/crypto/openssl/crypto/asn1/p8_key.c stable/8/crypto/openssl/crypto/asn1/p8_pkey.c stable/8/crypto/openssl/crypto/asn1/t_bitst.c stable/8/crypto/openssl/crypto/asn1/t_crl.c stable/8/crypto/openssl/crypto/asn1/t_pkey.c stable/8/crypto/openssl/crypto/asn1/t_req.c stable/8/crypto/openssl/crypto/asn1/t_spki.c stable/8/crypto/openssl/crypto/asn1/t_x509.c stable/8/crypto/openssl/crypto/asn1/t_x509a.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/asn1/tasn_enc.c stable/8/crypto/openssl/crypto/asn1/tasn_fre.c stable/8/crypto/openssl/crypto/asn1/tasn_new.c stable/8/crypto/openssl/crypto/asn1/tasn_prn.c stable/8/crypto/openssl/crypto/asn1/tasn_typ.c stable/8/crypto/openssl/crypto/asn1/tasn_utl.c stable/8/crypto/openssl/crypto/asn1/x_algor.c stable/8/crypto/openssl/crypto/asn1/x_attrib.c stable/8/crypto/openssl/crypto/asn1/x_bignum.c stable/8/crypto/openssl/crypto/asn1/x_crl.c stable/8/crypto/openssl/crypto/asn1/x_exten.c stable/8/crypto/openssl/crypto/asn1/x_info.c stable/8/crypto/openssl/crypto/asn1/x_long.c stable/8/crypto/openssl/crypto/asn1/x_name.c stable/8/crypto/openssl/crypto/asn1/x_pkey.c stable/8/crypto/openssl/crypto/asn1/x_pubkey.c stable/8/crypto/openssl/crypto/asn1/x_req.c stable/8/crypto/openssl/crypto/asn1/x_sig.c stable/8/crypto/openssl/crypto/asn1/x_spki.c stable/8/crypto/openssl/crypto/asn1/x_val.c stable/8/crypto/openssl/crypto/asn1/x_x509.c stable/8/crypto/openssl/crypto/asn1/x_x509a.c stable/8/crypto/openssl/crypto/bf/bf_cbc.c stable/8/crypto/openssl/crypto/bf/bf_cfb64.c stable/8/crypto/openssl/crypto/bf/bf_ecb.c stable/8/crypto/openssl/crypto/bf/bf_enc.c stable/8/crypto/openssl/crypto/bf/bf_locl.h stable/8/crypto/openssl/crypto/bf/bf_ofb64.c stable/8/crypto/openssl/crypto/bf/bf_opts.c stable/8/crypto/openssl/crypto/bf/bf_pi.h stable/8/crypto/openssl/crypto/bf/bf_skey.c stable/8/crypto/openssl/crypto/bf/bfspeed.c stable/8/crypto/openssl/crypto/bf/bftest.c stable/8/crypto/openssl/crypto/bf/blowfish.h stable/8/crypto/openssl/crypto/bio/b_dump.c stable/8/crypto/openssl/crypto/bio/b_print.c stable/8/crypto/openssl/crypto/bio/b_sock.c stable/8/crypto/openssl/crypto/bio/bf_buff.c stable/8/crypto/openssl/crypto/bio/bf_lbuf.c stable/8/crypto/openssl/crypto/bio/bf_nbio.c stable/8/crypto/openssl/crypto/bio/bf_null.c stable/8/crypto/openssl/crypto/bio/bio.h stable/8/crypto/openssl/crypto/bio/bio_cb.c stable/8/crypto/openssl/crypto/bio/bio_err.c stable/8/crypto/openssl/crypto/bio/bio_lcl.h stable/8/crypto/openssl/crypto/bio/bio_lib.c stable/8/crypto/openssl/crypto/bio/bss_acpt.c stable/8/crypto/openssl/crypto/bio/bss_bio.c stable/8/crypto/openssl/crypto/bio/bss_conn.c stable/8/crypto/openssl/crypto/bio/bss_dgram.c stable/8/crypto/openssl/crypto/bio/bss_fd.c stable/8/crypto/openssl/crypto/bio/bss_file.c stable/8/crypto/openssl/crypto/bio/bss_log.c stable/8/crypto/openssl/crypto/bio/bss_mem.c stable/8/crypto/openssl/crypto/bio/bss_null.c stable/8/crypto/openssl/crypto/bio/bss_rtcp.c stable/8/crypto/openssl/crypto/bio/bss_sock.c stable/8/crypto/openssl/crypto/bn/asm/x86_64-gcc.c stable/8/crypto/openssl/crypto/bn/bn.h stable/8/crypto/openssl/crypto/bn/bn_add.c stable/8/crypto/openssl/crypto/bn/bn_asm.c stable/8/crypto/openssl/crypto/bn/bn_blind.c stable/8/crypto/openssl/crypto/bn/bn_const.c stable/8/crypto/openssl/crypto/bn/bn_ctx.c stable/8/crypto/openssl/crypto/bn/bn_depr.c stable/8/crypto/openssl/crypto/bn/bn_div.c stable/8/crypto/openssl/crypto/bn/bn_err.c stable/8/crypto/openssl/crypto/bn/bn_exp.c stable/8/crypto/openssl/crypto/bn/bn_exp2.c stable/8/crypto/openssl/crypto/bn/bn_gcd.c stable/8/crypto/openssl/crypto/bn/bn_gf2m.c stable/8/crypto/openssl/crypto/bn/bn_kron.c stable/8/crypto/openssl/crypto/bn/bn_lcl.h stable/8/crypto/openssl/crypto/bn/bn_lib.c stable/8/crypto/openssl/crypto/bn/bn_mod.c stable/8/crypto/openssl/crypto/bn/bn_mont.c stable/8/crypto/openssl/crypto/bn/bn_mpi.c stable/8/crypto/openssl/crypto/bn/bn_mul.c stable/8/crypto/openssl/crypto/bn/bn_nist.c stable/8/crypto/openssl/crypto/bn/bn_opt.c stable/8/crypto/openssl/crypto/bn/bn_prime.c stable/8/crypto/openssl/crypto/bn/bn_prime.h stable/8/crypto/openssl/crypto/bn/bn_print.c stable/8/crypto/openssl/crypto/bn/bn_rand.c stable/8/crypto/openssl/crypto/bn/bn_recp.c stable/8/crypto/openssl/crypto/bn/bn_shift.c stable/8/crypto/openssl/crypto/bn/bn_sqr.c stable/8/crypto/openssl/crypto/bn/bn_sqrt.c stable/8/crypto/openssl/crypto/bn/bn_word.c stable/8/crypto/openssl/crypto/bn/bn_x931p.c stable/8/crypto/openssl/crypto/bn/bnspeed.c stable/8/crypto/openssl/crypto/bn/bntest.c stable/8/crypto/openssl/crypto/bn/divtest.c stable/8/crypto/openssl/crypto/bn/exp.c stable/8/crypto/openssl/crypto/bn/expspeed.c stable/8/crypto/openssl/crypto/bn/exptest.c stable/8/crypto/openssl/crypto/buffer/buf_err.c stable/8/crypto/openssl/crypto/buffer/buf_str.c stable/8/crypto/openssl/crypto/buffer/buffer.c stable/8/crypto/openssl/crypto/buffer/buffer.h stable/8/crypto/openssl/crypto/camellia/camellia.c stable/8/crypto/openssl/crypto/camellia/camellia.h stable/8/crypto/openssl/crypto/camellia/cmll_cbc.c stable/8/crypto/openssl/crypto/camellia/cmll_cfb.c stable/8/crypto/openssl/crypto/camellia/cmll_ctr.c stable/8/crypto/openssl/crypto/camellia/cmll_ecb.c stable/8/crypto/openssl/crypto/camellia/cmll_locl.h stable/8/crypto/openssl/crypto/camellia/cmll_misc.c stable/8/crypto/openssl/crypto/camellia/cmll_ofb.c stable/8/crypto/openssl/crypto/cast/c_cfb64.c stable/8/crypto/openssl/crypto/cast/c_ecb.c stable/8/crypto/openssl/crypto/cast/c_enc.c stable/8/crypto/openssl/crypto/cast/c_ofb64.c stable/8/crypto/openssl/crypto/cast/c_skey.c stable/8/crypto/openssl/crypto/cast/cast.h stable/8/crypto/openssl/crypto/cast/cast_lcl.h stable/8/crypto/openssl/crypto/cast/cast_s.h stable/8/crypto/openssl/crypto/cast/cast_spd.c stable/8/crypto/openssl/crypto/cast/castopts.c stable/8/crypto/openssl/crypto/cast/casttest.c stable/8/crypto/openssl/crypto/cms/cms.h stable/8/crypto/openssl/crypto/cms/cms_asn1.c stable/8/crypto/openssl/crypto/cms/cms_att.c stable/8/crypto/openssl/crypto/cms/cms_cd.c stable/8/crypto/openssl/crypto/cms/cms_dd.c stable/8/crypto/openssl/crypto/cms/cms_enc.c stable/8/crypto/openssl/crypto/cms/cms_env.c stable/8/crypto/openssl/crypto/cms/cms_err.c stable/8/crypto/openssl/crypto/cms/cms_ess.c stable/8/crypto/openssl/crypto/cms/cms_io.c stable/8/crypto/openssl/crypto/cms/cms_lcl.h stable/8/crypto/openssl/crypto/cms/cms_lib.c stable/8/crypto/openssl/crypto/cms/cms_sd.c stable/8/crypto/openssl/crypto/cms/cms_smime.c stable/8/crypto/openssl/crypto/comp/c_rle.c stable/8/crypto/openssl/crypto/comp/c_zlib.c stable/8/crypto/openssl/crypto/comp/comp.h stable/8/crypto/openssl/crypto/comp/comp_err.c stable/8/crypto/openssl/crypto/comp/comp_lib.c stable/8/crypto/openssl/crypto/conf/cnf_save.c stable/8/crypto/openssl/crypto/conf/conf.h stable/8/crypto/openssl/crypto/conf/conf_api.c stable/8/crypto/openssl/crypto/conf/conf_api.h stable/8/crypto/openssl/crypto/conf/conf_def.c stable/8/crypto/openssl/crypto/conf/conf_def.h stable/8/crypto/openssl/crypto/conf/conf_err.c stable/8/crypto/openssl/crypto/conf/conf_lib.c stable/8/crypto/openssl/crypto/conf/conf_mall.c stable/8/crypto/openssl/crypto/conf/conf_mod.c stable/8/crypto/openssl/crypto/conf/conf_sap.c stable/8/crypto/openssl/crypto/conf/test.c stable/8/crypto/openssl/crypto/constant_time_locl.h stable/8/crypto/openssl/crypto/constant_time_test.c stable/8/crypto/openssl/crypto/cpt_err.c stable/8/crypto/openssl/crypto/cryptlib.c stable/8/crypto/openssl/crypto/cryptlib.h stable/8/crypto/openssl/crypto/crypto.h stable/8/crypto/openssl/crypto/cversion.c stable/8/crypto/openssl/crypto/des/cbc3_enc.c stable/8/crypto/openssl/crypto/des/cbc_cksm.c stable/8/crypto/openssl/crypto/des/cbc_enc.c stable/8/crypto/openssl/crypto/des/cfb64ede.c stable/8/crypto/openssl/crypto/des/cfb64enc.c stable/8/crypto/openssl/crypto/des/cfb_enc.c stable/8/crypto/openssl/crypto/des/des.c stable/8/crypto/openssl/crypto/des/des.h stable/8/crypto/openssl/crypto/des/des_enc.c stable/8/crypto/openssl/crypto/des/des_lib.c stable/8/crypto/openssl/crypto/des/des_locl.h stable/8/crypto/openssl/crypto/des/des_old.c stable/8/crypto/openssl/crypto/des/des_old.h stable/8/crypto/openssl/crypto/des/des_old2.c stable/8/crypto/openssl/crypto/des/des_opts.c stable/8/crypto/openssl/crypto/des/des_ver.h stable/8/crypto/openssl/crypto/des/destest.c stable/8/crypto/openssl/crypto/des/ecb3_enc.c stable/8/crypto/openssl/crypto/des/ecb_enc.c stable/8/crypto/openssl/crypto/des/ede_cbcm_enc.c stable/8/crypto/openssl/crypto/des/enc_read.c stable/8/crypto/openssl/crypto/des/enc_writ.c stable/8/crypto/openssl/crypto/des/fcrypt.c stable/8/crypto/openssl/crypto/des/fcrypt_b.c stable/8/crypto/openssl/crypto/des/ncbc_enc.c stable/8/crypto/openssl/crypto/des/ofb64ede.c stable/8/crypto/openssl/crypto/des/ofb64enc.c stable/8/crypto/openssl/crypto/des/ofb_enc.c stable/8/crypto/openssl/crypto/des/pcbc_enc.c stable/8/crypto/openssl/crypto/des/qud_cksm.c stable/8/crypto/openssl/crypto/des/rand_key.c stable/8/crypto/openssl/crypto/des/read2pwd.c stable/8/crypto/openssl/crypto/des/read_pwd.c stable/8/crypto/openssl/crypto/des/rpc_des.h stable/8/crypto/openssl/crypto/des/rpc_enc.c stable/8/crypto/openssl/crypto/des/rpw.c stable/8/crypto/openssl/crypto/des/set_key.c stable/8/crypto/openssl/crypto/des/speed.c stable/8/crypto/openssl/crypto/des/spr.h stable/8/crypto/openssl/crypto/des/str2key.c stable/8/crypto/openssl/crypto/des/xcbc_enc.c stable/8/crypto/openssl/crypto/dh/dh.h stable/8/crypto/openssl/crypto/dh/dh_asn1.c stable/8/crypto/openssl/crypto/dh/dh_check.c stable/8/crypto/openssl/crypto/dh/dh_depr.c stable/8/crypto/openssl/crypto/dh/dh_err.c stable/8/crypto/openssl/crypto/dh/dh_gen.c stable/8/crypto/openssl/crypto/dh/dh_key.c stable/8/crypto/openssl/crypto/dh/dh_lib.c stable/8/crypto/openssl/crypto/dh/dhtest.c stable/8/crypto/openssl/crypto/dh/p1024.c stable/8/crypto/openssl/crypto/dh/p192.c stable/8/crypto/openssl/crypto/dh/p512.c stable/8/crypto/openssl/crypto/dsa/dsa.h stable/8/crypto/openssl/crypto/dsa/dsa_asn1.c stable/8/crypto/openssl/crypto/dsa/dsa_depr.c stable/8/crypto/openssl/crypto/dsa/dsa_err.c stable/8/crypto/openssl/crypto/dsa/dsa_gen.c stable/8/crypto/openssl/crypto/dsa/dsa_key.c stable/8/crypto/openssl/crypto/dsa/dsa_lib.c stable/8/crypto/openssl/crypto/dsa/dsa_ossl.c stable/8/crypto/openssl/crypto/dsa/dsa_sign.c stable/8/crypto/openssl/crypto/dsa/dsa_utl.c stable/8/crypto/openssl/crypto/dsa/dsa_vrf.c stable/8/crypto/openssl/crypto/dsa/dsagen.c stable/8/crypto/openssl/crypto/dsa/dsatest.c stable/8/crypto/openssl/crypto/dso/dso.h stable/8/crypto/openssl/crypto/dso/dso_dl.c stable/8/crypto/openssl/crypto/dso/dso_dlfcn.c stable/8/crypto/openssl/crypto/dso/dso_err.c stable/8/crypto/openssl/crypto/dso/dso_lib.c stable/8/crypto/openssl/crypto/dso/dso_null.c stable/8/crypto/openssl/crypto/dso/dso_openssl.c stable/8/crypto/openssl/crypto/dyn_lck.c stable/8/crypto/openssl/crypto/ebcdic.c stable/8/crypto/openssl/crypto/ebcdic.h stable/8/crypto/openssl/crypto/ec/ec.h stable/8/crypto/openssl/crypto/ec/ec2_mult.c stable/8/crypto/openssl/crypto/ec/ec2_smpl.c stable/8/crypto/openssl/crypto/ec/ec2_smpt.c stable/8/crypto/openssl/crypto/ec/ec_asn1.c stable/8/crypto/openssl/crypto/ec/ec_check.c stable/8/crypto/openssl/crypto/ec/ec_curve.c stable/8/crypto/openssl/crypto/ec/ec_cvt.c stable/8/crypto/openssl/crypto/ec/ec_err.c stable/8/crypto/openssl/crypto/ec/ec_key.c stable/8/crypto/openssl/crypto/ec/ec_lcl.h stable/8/crypto/openssl/crypto/ec/ec_lib.c stable/8/crypto/openssl/crypto/ec/ec_mult.c stable/8/crypto/openssl/crypto/ec/ec_print.c stable/8/crypto/openssl/crypto/ec/ecp_mont.c stable/8/crypto/openssl/crypto/ec/ecp_nist.c stable/8/crypto/openssl/crypto/ec/ecp_smpl.c stable/8/crypto/openssl/crypto/ec/ectest.c stable/8/crypto/openssl/crypto/ecdh/ecdh.h stable/8/crypto/openssl/crypto/ecdh/ecdhtest.c stable/8/crypto/openssl/crypto/ecdh/ech_err.c stable/8/crypto/openssl/crypto/ecdh/ech_key.c stable/8/crypto/openssl/crypto/ecdh/ech_lib.c stable/8/crypto/openssl/crypto/ecdh/ech_locl.h stable/8/crypto/openssl/crypto/ecdh/ech_ossl.c stable/8/crypto/openssl/crypto/ecdsa/Makefile stable/8/crypto/openssl/crypto/ecdsa/ecdsa.h stable/8/crypto/openssl/crypto/ecdsa/ecdsatest.c stable/8/crypto/openssl/crypto/ecdsa/ecs_asn1.c stable/8/crypto/openssl/crypto/ecdsa/ecs_err.c stable/8/crypto/openssl/crypto/ecdsa/ecs_lib.c stable/8/crypto/openssl/crypto/ecdsa/ecs_locl.h stable/8/crypto/openssl/crypto/ecdsa/ecs_ossl.c stable/8/crypto/openssl/crypto/ecdsa/ecs_sign.c stable/8/crypto/openssl/crypto/ecdsa/ecs_vrf.c stable/8/crypto/openssl/crypto/engine/eng_all.c stable/8/crypto/openssl/crypto/engine/eng_cnf.c stable/8/crypto/openssl/crypto/engine/eng_cryptodev.c stable/8/crypto/openssl/crypto/engine/eng_ctrl.c stable/8/crypto/openssl/crypto/engine/eng_dyn.c stable/8/crypto/openssl/crypto/engine/eng_err.c stable/8/crypto/openssl/crypto/engine/eng_fat.c stable/8/crypto/openssl/crypto/engine/eng_init.c stable/8/crypto/openssl/crypto/engine/eng_int.h stable/8/crypto/openssl/crypto/engine/eng_lib.c stable/8/crypto/openssl/crypto/engine/eng_list.c stable/8/crypto/openssl/crypto/engine/eng_openssl.c stable/8/crypto/openssl/crypto/engine/eng_padlock.c stable/8/crypto/openssl/crypto/engine/eng_pkey.c stable/8/crypto/openssl/crypto/engine/eng_table.c stable/8/crypto/openssl/crypto/engine/engine.h stable/8/crypto/openssl/crypto/engine/enginetest.c stable/8/crypto/openssl/crypto/engine/tb_cipher.c stable/8/crypto/openssl/crypto/engine/tb_dh.c stable/8/crypto/openssl/crypto/engine/tb_digest.c stable/8/crypto/openssl/crypto/engine/tb_dsa.c stable/8/crypto/openssl/crypto/engine/tb_ecdh.c stable/8/crypto/openssl/crypto/engine/tb_ecdsa.c stable/8/crypto/openssl/crypto/engine/tb_rand.c stable/8/crypto/openssl/crypto/engine/tb_rsa.c stable/8/crypto/openssl/crypto/engine/tb_store.c stable/8/crypto/openssl/crypto/err/err.c stable/8/crypto/openssl/crypto/err/err.h stable/8/crypto/openssl/crypto/err/err_all.c stable/8/crypto/openssl/crypto/err/err_bio.c stable/8/crypto/openssl/crypto/err/err_def.c stable/8/crypto/openssl/crypto/err/err_prn.c stable/8/crypto/openssl/crypto/err/err_str.c stable/8/crypto/openssl/crypto/evp/bio_b64.c stable/8/crypto/openssl/crypto/evp/bio_enc.c stable/8/crypto/openssl/crypto/evp/bio_md.c stable/8/crypto/openssl/crypto/evp/bio_ok.c stable/8/crypto/openssl/crypto/evp/c_all.c stable/8/crypto/openssl/crypto/evp/c_allc.c stable/8/crypto/openssl/crypto/evp/c_alld.c stable/8/crypto/openssl/crypto/evp/dig_eng.c stable/8/crypto/openssl/crypto/evp/digest.c stable/8/crypto/openssl/crypto/evp/e_aes.c stable/8/crypto/openssl/crypto/evp/e_bf.c stable/8/crypto/openssl/crypto/evp/e_camellia.c stable/8/crypto/openssl/crypto/evp/e_cast.c stable/8/crypto/openssl/crypto/evp/e_des.c stable/8/crypto/openssl/crypto/evp/e_des3.c stable/8/crypto/openssl/crypto/evp/e_dsa.c stable/8/crypto/openssl/crypto/evp/e_idea.c stable/8/crypto/openssl/crypto/evp/e_null.c stable/8/crypto/openssl/crypto/evp/e_old.c stable/8/crypto/openssl/crypto/evp/e_rc2.c stable/8/crypto/openssl/crypto/evp/e_rc4.c stable/8/crypto/openssl/crypto/evp/e_rc5.c stable/8/crypto/openssl/crypto/evp/e_seed.c stable/8/crypto/openssl/crypto/evp/e_xcbc_d.c stable/8/crypto/openssl/crypto/evp/enc_min.c stable/8/crypto/openssl/crypto/evp/encode.c stable/8/crypto/openssl/crypto/evp/evp.h stable/8/crypto/openssl/crypto/evp/evp_acnf.c stable/8/crypto/openssl/crypto/evp/evp_cnf.c stable/8/crypto/openssl/crypto/evp/evp_enc.c stable/8/crypto/openssl/crypto/evp/evp_err.c stable/8/crypto/openssl/crypto/evp/evp_key.c stable/8/crypto/openssl/crypto/evp/evp_lib.c stable/8/crypto/openssl/crypto/evp/evp_locl.h stable/8/crypto/openssl/crypto/evp/evp_pbe.c stable/8/crypto/openssl/crypto/evp/evp_pkey.c stable/8/crypto/openssl/crypto/evp/evp_test.c stable/8/crypto/openssl/crypto/evp/m_dss.c stable/8/crypto/openssl/crypto/evp/m_dss1.c stable/8/crypto/openssl/crypto/evp/m_ecdsa.c stable/8/crypto/openssl/crypto/evp/m_md2.c stable/8/crypto/openssl/crypto/evp/m_md4.c stable/8/crypto/openssl/crypto/evp/m_md5.c stable/8/crypto/openssl/crypto/evp/m_mdc2.c stable/8/crypto/openssl/crypto/evp/m_null.c stable/8/crypto/openssl/crypto/evp/m_ripemd.c stable/8/crypto/openssl/crypto/evp/m_sha.c stable/8/crypto/openssl/crypto/evp/m_sha1.c stable/8/crypto/openssl/crypto/evp/names.c stable/8/crypto/openssl/crypto/evp/openbsd_hw.c stable/8/crypto/openssl/crypto/evp/p5_crpt.c stable/8/crypto/openssl/crypto/evp/p5_crpt2.c stable/8/crypto/openssl/crypto/evp/p_dec.c stable/8/crypto/openssl/crypto/evp/p_enc.c stable/8/crypto/openssl/crypto/evp/p_lib.c stable/8/crypto/openssl/crypto/evp/p_open.c stable/8/crypto/openssl/crypto/evp/p_seal.c stable/8/crypto/openssl/crypto/evp/p_sign.c stable/8/crypto/openssl/crypto/evp/p_verify.c stable/8/crypto/openssl/crypto/ex_data.c stable/8/crypto/openssl/crypto/fips_err.c stable/8/crypto/openssl/crypto/fips_err.h stable/8/crypto/openssl/crypto/hmac/hmac.c stable/8/crypto/openssl/crypto/hmac/hmac.h stable/8/crypto/openssl/crypto/hmac/hmactest.c stable/8/crypto/openssl/crypto/idea/i_cbc.c stable/8/crypto/openssl/crypto/idea/i_cfb64.c stable/8/crypto/openssl/crypto/idea/i_ecb.c stable/8/crypto/openssl/crypto/idea/i_ofb64.c stable/8/crypto/openssl/crypto/idea/i_skey.c stable/8/crypto/openssl/crypto/idea/idea.h stable/8/crypto/openssl/crypto/idea/idea_lcl.h stable/8/crypto/openssl/crypto/idea/idea_spd.c stable/8/crypto/openssl/crypto/idea/ideatest.c stable/8/crypto/openssl/crypto/jpake/jpake.c stable/8/crypto/openssl/crypto/jpake/jpake.h stable/8/crypto/openssl/crypto/jpake/jpake_err.c stable/8/crypto/openssl/crypto/jpake/jpaketest.c stable/8/crypto/openssl/crypto/krb5/krb5_asn.c stable/8/crypto/openssl/crypto/krb5/krb5_asn.h stable/8/crypto/openssl/crypto/lhash/lh_stats.c stable/8/crypto/openssl/crypto/lhash/lh_test.c stable/8/crypto/openssl/crypto/lhash/lhash.c stable/8/crypto/openssl/crypto/lhash/lhash.h stable/8/crypto/openssl/crypto/md2/md2.c stable/8/crypto/openssl/crypto/md2/md2.h stable/8/crypto/openssl/crypto/md2/md2_dgst.c stable/8/crypto/openssl/crypto/md2/md2_one.c stable/8/crypto/openssl/crypto/md2/md2test.c stable/8/crypto/openssl/crypto/md32_common.h stable/8/crypto/openssl/crypto/md4/md4.c stable/8/crypto/openssl/crypto/md4/md4.h stable/8/crypto/openssl/crypto/md4/md4_dgst.c stable/8/crypto/openssl/crypto/md4/md4_locl.h stable/8/crypto/openssl/crypto/md4/md4_one.c stable/8/crypto/openssl/crypto/md4/md4test.c stable/8/crypto/openssl/crypto/md5/md5.c stable/8/crypto/openssl/crypto/md5/md5.h stable/8/crypto/openssl/crypto/md5/md5_dgst.c stable/8/crypto/openssl/crypto/md5/md5_locl.h stable/8/crypto/openssl/crypto/md5/md5_one.c stable/8/crypto/openssl/crypto/md5/md5test.c stable/8/crypto/openssl/crypto/mdc2/mdc2.h stable/8/crypto/openssl/crypto/mdc2/mdc2_one.c stable/8/crypto/openssl/crypto/mdc2/mdc2dgst.c stable/8/crypto/openssl/crypto/mdc2/mdc2test.c stable/8/crypto/openssl/crypto/mem.c stable/8/crypto/openssl/crypto/mem_clr.c stable/8/crypto/openssl/crypto/mem_dbg.c stable/8/crypto/openssl/crypto/o_dir.c stable/8/crypto/openssl/crypto/o_dir.h stable/8/crypto/openssl/crypto/o_dir_test.c stable/8/crypto/openssl/crypto/o_init.c stable/8/crypto/openssl/crypto/o_str.c stable/8/crypto/openssl/crypto/o_str.h stable/8/crypto/openssl/crypto/o_time.c stable/8/crypto/openssl/crypto/o_time.h stable/8/crypto/openssl/crypto/objects/o_names.c stable/8/crypto/openssl/crypto/objects/obj_dat.c stable/8/crypto/openssl/crypto/objects/obj_err.c stable/8/crypto/openssl/crypto/objects/obj_lib.c stable/8/crypto/openssl/crypto/objects/obj_mac.h stable/8/crypto/openssl/crypto/objects/objects.h stable/8/crypto/openssl/crypto/objects/objects.pl stable/8/crypto/openssl/crypto/ocsp/ocsp.h stable/8/crypto/openssl/crypto/ocsp/ocsp_asn.c stable/8/crypto/openssl/crypto/ocsp/ocsp_cl.c stable/8/crypto/openssl/crypto/ocsp/ocsp_err.c stable/8/crypto/openssl/crypto/ocsp/ocsp_ext.c stable/8/crypto/openssl/crypto/ocsp/ocsp_ht.c stable/8/crypto/openssl/crypto/ocsp/ocsp_lib.c stable/8/crypto/openssl/crypto/ocsp/ocsp_prn.c stable/8/crypto/openssl/crypto/ocsp/ocsp_srv.c stable/8/crypto/openssl/crypto/ocsp/ocsp_vfy.c stable/8/crypto/openssl/crypto/opensslv.h stable/8/crypto/openssl/crypto/ossl_typ.h stable/8/crypto/openssl/crypto/pem/pem.h stable/8/crypto/openssl/crypto/pem/pem2.h stable/8/crypto/openssl/crypto/pem/pem_all.c stable/8/crypto/openssl/crypto/pem/pem_err.c stable/8/crypto/openssl/crypto/pem/pem_info.c stable/8/crypto/openssl/crypto/pem/pem_lib.c stable/8/crypto/openssl/crypto/pem/pem_oth.c stable/8/crypto/openssl/crypto/pem/pem_pk8.c stable/8/crypto/openssl/crypto/pem/pem_pkey.c stable/8/crypto/openssl/crypto/pem/pem_seal.c stable/8/crypto/openssl/crypto/pem/pem_sign.c stable/8/crypto/openssl/crypto/pem/pem_x509.c stable/8/crypto/openssl/crypto/pem/pem_xaux.c stable/8/crypto/openssl/crypto/pkcs12/p12_add.c stable/8/crypto/openssl/crypto/pkcs12/p12_asn.c stable/8/crypto/openssl/crypto/pkcs12/p12_attr.c stable/8/crypto/openssl/crypto/pkcs12/p12_crpt.c stable/8/crypto/openssl/crypto/pkcs12/p12_crt.c stable/8/crypto/openssl/crypto/pkcs12/p12_decr.c stable/8/crypto/openssl/crypto/pkcs12/p12_init.c stable/8/crypto/openssl/crypto/pkcs12/p12_key.c stable/8/crypto/openssl/crypto/pkcs12/p12_kiss.c stable/8/crypto/openssl/crypto/pkcs12/p12_mutl.c stable/8/crypto/openssl/crypto/pkcs12/p12_npas.c stable/8/crypto/openssl/crypto/pkcs12/p12_p8d.c stable/8/crypto/openssl/crypto/pkcs12/p12_p8e.c stable/8/crypto/openssl/crypto/pkcs12/p12_utl.c stable/8/crypto/openssl/crypto/pkcs12/pk12err.c stable/8/crypto/openssl/crypto/pkcs12/pkcs12.h stable/8/crypto/openssl/crypto/pkcs7/pk7_asn1.c stable/8/crypto/openssl/crypto/pkcs7/pk7_attr.c stable/8/crypto/openssl/crypto/pkcs7/pk7_dgst.c stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/8/crypto/openssl/crypto/pkcs7/pk7_enc.c stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/8/crypto/openssl/crypto/pkcs7/pk7_mime.c stable/8/crypto/openssl/crypto/pkcs7/pk7_smime.c stable/8/crypto/openssl/crypto/pkcs7/pkcs7.h stable/8/crypto/openssl/crypto/pkcs7/pkcs7err.c stable/8/crypto/openssl/crypto/pqueue/pq_compat.h stable/8/crypto/openssl/crypto/pqueue/pq_test.c stable/8/crypto/openssl/crypto/pqueue/pqueue.c stable/8/crypto/openssl/crypto/pqueue/pqueue.h stable/8/crypto/openssl/crypto/rand/md_rand.c stable/8/crypto/openssl/crypto/rand/rand.h stable/8/crypto/openssl/crypto/rand/rand_egd.c stable/8/crypto/openssl/crypto/rand/rand_eng.c stable/8/crypto/openssl/crypto/rand/rand_err.c stable/8/crypto/openssl/crypto/rand/rand_lcl.h stable/8/crypto/openssl/crypto/rand/rand_lib.c stable/8/crypto/openssl/crypto/rand/rand_nw.c stable/8/crypto/openssl/crypto/rand/rand_os2.c stable/8/crypto/openssl/crypto/rand/rand_unix.c stable/8/crypto/openssl/crypto/rand/rand_vms.c stable/8/crypto/openssl/crypto/rand/rand_win.c stable/8/crypto/openssl/crypto/rand/randfile.c stable/8/crypto/openssl/crypto/rand/randtest.c stable/8/crypto/openssl/crypto/rc2/rc2.h stable/8/crypto/openssl/crypto/rc2/rc2_cbc.c stable/8/crypto/openssl/crypto/rc2/rc2_ecb.c stable/8/crypto/openssl/crypto/rc2/rc2_locl.h stable/8/crypto/openssl/crypto/rc2/rc2_skey.c stable/8/crypto/openssl/crypto/rc2/rc2cfb64.c stable/8/crypto/openssl/crypto/rc2/rc2ofb64.c stable/8/crypto/openssl/crypto/rc2/rc2speed.c stable/8/crypto/openssl/crypto/rc2/rc2test.c stable/8/crypto/openssl/crypto/rc2/tab.c stable/8/crypto/openssl/crypto/rc4/rc4.c stable/8/crypto/openssl/crypto/rc4/rc4.h stable/8/crypto/openssl/crypto/rc4/rc4_enc.c stable/8/crypto/openssl/crypto/rc4/rc4_fblk.c stable/8/crypto/openssl/crypto/rc4/rc4_locl.h stable/8/crypto/openssl/crypto/rc4/rc4_skey.c stable/8/crypto/openssl/crypto/rc4/rc4speed.c stable/8/crypto/openssl/crypto/rc4/rc4test.c stable/8/crypto/openssl/crypto/rc5/rc5.h stable/8/crypto/openssl/crypto/rc5/rc5_ecb.c stable/8/crypto/openssl/crypto/rc5/rc5_enc.c stable/8/crypto/openssl/crypto/rc5/rc5_locl.h stable/8/crypto/openssl/crypto/rc5/rc5_skey.c stable/8/crypto/openssl/crypto/rc5/rc5cfb64.c stable/8/crypto/openssl/crypto/rc5/rc5ofb64.c stable/8/crypto/openssl/crypto/rc5/rc5speed.c stable/8/crypto/openssl/crypto/rc5/rc5test.c stable/8/crypto/openssl/crypto/ripemd/ripemd.h stable/8/crypto/openssl/crypto/ripemd/rmd160.c stable/8/crypto/openssl/crypto/ripemd/rmd_dgst.c stable/8/crypto/openssl/crypto/ripemd/rmd_locl.h stable/8/crypto/openssl/crypto/ripemd/rmd_one.c stable/8/crypto/openssl/crypto/ripemd/rmdconst.h stable/8/crypto/openssl/crypto/ripemd/rmdtest.c stable/8/crypto/openssl/crypto/rsa/rsa.h stable/8/crypto/openssl/crypto/rsa/rsa_asn1.c stable/8/crypto/openssl/crypto/rsa/rsa_chk.c stable/8/crypto/openssl/crypto/rsa/rsa_depr.c stable/8/crypto/openssl/crypto/rsa/rsa_eay.c stable/8/crypto/openssl/crypto/rsa/rsa_eng.c stable/8/crypto/openssl/crypto/rsa/rsa_err.c stable/8/crypto/openssl/crypto/rsa/rsa_gen.c stable/8/crypto/openssl/crypto/rsa/rsa_lib.c stable/8/crypto/openssl/crypto/rsa/rsa_none.c stable/8/crypto/openssl/crypto/rsa/rsa_null.c stable/8/crypto/openssl/crypto/rsa/rsa_oaep.c stable/8/crypto/openssl/crypto/rsa/rsa_pk1.c stable/8/crypto/openssl/crypto/rsa/rsa_pss.c stable/8/crypto/openssl/crypto/rsa/rsa_saos.c stable/8/crypto/openssl/crypto/rsa/rsa_sign.c stable/8/crypto/openssl/crypto/rsa/rsa_ssl.c stable/8/crypto/openssl/crypto/rsa/rsa_test.c stable/8/crypto/openssl/crypto/rsa/rsa_x931.c stable/8/crypto/openssl/crypto/rsa/rsa_x931g.c stable/8/crypto/openssl/crypto/seed/seed.c stable/8/crypto/openssl/crypto/seed/seed.h stable/8/crypto/openssl/crypto/seed/seed_cbc.c stable/8/crypto/openssl/crypto/seed/seed_cfb.c stable/8/crypto/openssl/crypto/seed/seed_ecb.c stable/8/crypto/openssl/crypto/seed/seed_locl.h stable/8/crypto/openssl/crypto/seed/seed_ofb.c stable/8/crypto/openssl/crypto/sha/sha.c stable/8/crypto/openssl/crypto/sha/sha.h stable/8/crypto/openssl/crypto/sha/sha1.c stable/8/crypto/openssl/crypto/sha/sha1_one.c stable/8/crypto/openssl/crypto/sha/sha1dgst.c stable/8/crypto/openssl/crypto/sha/sha1test.c stable/8/crypto/openssl/crypto/sha/sha256.c stable/8/crypto/openssl/crypto/sha/sha256t.c stable/8/crypto/openssl/crypto/sha/sha512.c stable/8/crypto/openssl/crypto/sha/sha512t.c stable/8/crypto/openssl/crypto/sha/sha_dgst.c stable/8/crypto/openssl/crypto/sha/sha_locl.h stable/8/crypto/openssl/crypto/sha/sha_one.c stable/8/crypto/openssl/crypto/sha/shatest.c stable/8/crypto/openssl/crypto/stack/safestack.h stable/8/crypto/openssl/crypto/stack/stack.c stable/8/crypto/openssl/crypto/stack/stack.h stable/8/crypto/openssl/crypto/store/store.h stable/8/crypto/openssl/crypto/store/str_err.c stable/8/crypto/openssl/crypto/store/str_lib.c stable/8/crypto/openssl/crypto/store/str_locl.h stable/8/crypto/openssl/crypto/store/str_mem.c stable/8/crypto/openssl/crypto/store/str_meth.c stable/8/crypto/openssl/crypto/symhacks.h stable/8/crypto/openssl/crypto/threads/mttest.c stable/8/crypto/openssl/crypto/threads/th-lock.c stable/8/crypto/openssl/crypto/tmdiff.c stable/8/crypto/openssl/crypto/tmdiff.h stable/8/crypto/openssl/crypto/txt_db/txt_db.c stable/8/crypto/openssl/crypto/txt_db/txt_db.h stable/8/crypto/openssl/crypto/ui/ui.h stable/8/crypto/openssl/crypto/ui/ui_compat.c stable/8/crypto/openssl/crypto/ui/ui_compat.h stable/8/crypto/openssl/crypto/ui/ui_err.c stable/8/crypto/openssl/crypto/ui/ui_lib.c stable/8/crypto/openssl/crypto/ui/ui_locl.h stable/8/crypto/openssl/crypto/ui/ui_openssl.c stable/8/crypto/openssl/crypto/ui/ui_util.c stable/8/crypto/openssl/crypto/uid.c stable/8/crypto/openssl/crypto/x509/by_dir.c stable/8/crypto/openssl/crypto/x509/by_file.c stable/8/crypto/openssl/crypto/x509/x509.h stable/8/crypto/openssl/crypto/x509/x509_att.c stable/8/crypto/openssl/crypto/x509/x509_cmp.c stable/8/crypto/openssl/crypto/x509/x509_d2.c stable/8/crypto/openssl/crypto/x509/x509_def.c stable/8/crypto/openssl/crypto/x509/x509_err.c stable/8/crypto/openssl/crypto/x509/x509_ext.c stable/8/crypto/openssl/crypto/x509/x509_lu.c stable/8/crypto/openssl/crypto/x509/x509_obj.c stable/8/crypto/openssl/crypto/x509/x509_r2x.c stable/8/crypto/openssl/crypto/x509/x509_req.c stable/8/crypto/openssl/crypto/x509/x509_set.c stable/8/crypto/openssl/crypto/x509/x509_trs.c stable/8/crypto/openssl/crypto/x509/x509_txt.c stable/8/crypto/openssl/crypto/x509/x509_v3.c stable/8/crypto/openssl/crypto/x509/x509_vfy.c stable/8/crypto/openssl/crypto/x509/x509_vfy.h stable/8/crypto/openssl/crypto/x509/x509_vpm.c stable/8/crypto/openssl/crypto/x509/x509cset.c stable/8/crypto/openssl/crypto/x509/x509name.c stable/8/crypto/openssl/crypto/x509/x509rset.c stable/8/crypto/openssl/crypto/x509/x509spki.c stable/8/crypto/openssl/crypto/x509/x509type.c stable/8/crypto/openssl/crypto/x509/x_all.c stable/8/crypto/openssl/crypto/x509v3/ext_dat.h stable/8/crypto/openssl/crypto/x509v3/pcy_cache.c stable/8/crypto/openssl/crypto/x509v3/pcy_data.c stable/8/crypto/openssl/crypto/x509v3/pcy_int.h stable/8/crypto/openssl/crypto/x509v3/pcy_lib.c stable/8/crypto/openssl/crypto/x509v3/pcy_map.c stable/8/crypto/openssl/crypto/x509v3/pcy_node.c stable/8/crypto/openssl/crypto/x509v3/pcy_tree.c stable/8/crypto/openssl/crypto/x509v3/tabtest.c stable/8/crypto/openssl/crypto/x509v3/v3_addr.c stable/8/crypto/openssl/crypto/x509v3/v3_akey.c stable/8/crypto/openssl/crypto/x509v3/v3_akeya.c stable/8/crypto/openssl/crypto/x509v3/v3_alt.c stable/8/crypto/openssl/crypto/x509v3/v3_asid.c stable/8/crypto/openssl/crypto/x509v3/v3_bcons.c stable/8/crypto/openssl/crypto/x509v3/v3_bitst.c stable/8/crypto/openssl/crypto/x509v3/v3_conf.c stable/8/crypto/openssl/crypto/x509v3/v3_cpols.c stable/8/crypto/openssl/crypto/x509v3/v3_crld.c stable/8/crypto/openssl/crypto/x509v3/v3_enum.c stable/8/crypto/openssl/crypto/x509v3/v3_extku.c stable/8/crypto/openssl/crypto/x509v3/v3_genn.c stable/8/crypto/openssl/crypto/x509v3/v3_ia5.c stable/8/crypto/openssl/crypto/x509v3/v3_info.c stable/8/crypto/openssl/crypto/x509v3/v3_int.c stable/8/crypto/openssl/crypto/x509v3/v3_lib.c stable/8/crypto/openssl/crypto/x509v3/v3_ncons.c stable/8/crypto/openssl/crypto/x509v3/v3_ocsp.c stable/8/crypto/openssl/crypto/x509v3/v3_pci.c stable/8/crypto/openssl/crypto/x509v3/v3_pcia.c stable/8/crypto/openssl/crypto/x509v3/v3_pcons.c stable/8/crypto/openssl/crypto/x509v3/v3_pku.c stable/8/crypto/openssl/crypto/x509v3/v3_pmaps.c stable/8/crypto/openssl/crypto/x509v3/v3_prn.c stable/8/crypto/openssl/crypto/x509v3/v3_purp.c stable/8/crypto/openssl/crypto/x509v3/v3_skey.c stable/8/crypto/openssl/crypto/x509v3/v3_sxnet.c stable/8/crypto/openssl/crypto/x509v3/v3_utl.c stable/8/crypto/openssl/crypto/x509v3/v3conf.c stable/8/crypto/openssl/crypto/x509v3/v3err.c stable/8/crypto/openssl/crypto/x509v3/v3prin.c stable/8/crypto/openssl/crypto/x509v3/x509v3.h stable/8/crypto/openssl/demos/asn1/ocsp.c stable/8/crypto/openssl/demos/b64.c stable/8/crypto/openssl/demos/bio/saccept.c stable/8/crypto/openssl/demos/bio/sconnect.c stable/8/crypto/openssl/demos/easy_tls/easy-tls.c stable/8/crypto/openssl/demos/easy_tls/easy-tls.h stable/8/crypto/openssl/demos/easy_tls/test.c stable/8/crypto/openssl/demos/easy_tls/test.h stable/8/crypto/openssl/demos/engines/cluster_labs/cluster_labs.h stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.c stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.c stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.h stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca.c stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.c stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.h stable/8/crypto/openssl/demos/engines/ibmca/ica_openssl_api.h stable/8/crypto/openssl/demos/engines/zencod/hw_zencod.c stable/8/crypto/openssl/demos/engines/zencod/hw_zencod.h stable/8/crypto/openssl/demos/engines/zencod/hw_zencod_err.c stable/8/crypto/openssl/demos/engines/zencod/hw_zencod_err.h stable/8/crypto/openssl/demos/jpake/jpakedemo.c stable/8/crypto/openssl/demos/pkcs12/pkread.c stable/8/crypto/openssl/demos/pkcs12/pkwrite.c stable/8/crypto/openssl/demos/prime/prime.c stable/8/crypto/openssl/demos/selfsign.c stable/8/crypto/openssl/demos/sign/sign.c stable/8/crypto/openssl/demos/spkigen.c stable/8/crypto/openssl/demos/state_machine/state_machine.c stable/8/crypto/openssl/demos/tunala/breakage.c stable/8/crypto/openssl/demos/tunala/buffer.c stable/8/crypto/openssl/demos/tunala/cb.c stable/8/crypto/openssl/demos/tunala/ip.c stable/8/crypto/openssl/demos/tunala/sm.c stable/8/crypto/openssl/demos/tunala/tunala.c stable/8/crypto/openssl/demos/tunala/tunala.h stable/8/crypto/openssl/demos/x509/mkcert.c stable/8/crypto/openssl/demos/x509/mkreq.c stable/8/crypto/openssl/doc/apps/ciphers.pod stable/8/crypto/openssl/doc/crypto/d2i_X509.pod stable/8/crypto/openssl/e_os.h stable/8/crypto/openssl/e_os2.h stable/8/crypto/openssl/engines/e_4758cca.c stable/8/crypto/openssl/engines/e_4758cca_err.c stable/8/crypto/openssl/engines/e_4758cca_err.h stable/8/crypto/openssl/engines/e_aep.c stable/8/crypto/openssl/engines/e_aep_err.c stable/8/crypto/openssl/engines/e_aep_err.h stable/8/crypto/openssl/engines/e_atalla.c stable/8/crypto/openssl/engines/e_atalla_err.c stable/8/crypto/openssl/engines/e_atalla_err.h stable/8/crypto/openssl/engines/e_capi.c stable/8/crypto/openssl/engines/e_capi_err.c stable/8/crypto/openssl/engines/e_capi_err.h stable/8/crypto/openssl/engines/e_chil.c stable/8/crypto/openssl/engines/e_chil_err.c stable/8/crypto/openssl/engines/e_chil_err.h stable/8/crypto/openssl/engines/e_cswift.c stable/8/crypto/openssl/engines/e_cswift_err.c stable/8/crypto/openssl/engines/e_cswift_err.h stable/8/crypto/openssl/engines/e_gmp.c stable/8/crypto/openssl/engines/e_gmp_err.c stable/8/crypto/openssl/engines/e_gmp_err.h stable/8/crypto/openssl/engines/e_nuron.c stable/8/crypto/openssl/engines/e_nuron_err.c stable/8/crypto/openssl/engines/e_nuron_err.h stable/8/crypto/openssl/engines/e_sureware.c stable/8/crypto/openssl/engines/e_sureware_err.c stable/8/crypto/openssl/engines/e_sureware_err.h stable/8/crypto/openssl/engines/e_ubsec.c stable/8/crypto/openssl/engines/e_ubsec_err.c stable/8/crypto/openssl/engines/e_ubsec_err.h stable/8/crypto/openssl/engines/vendor_defns/aep.h stable/8/crypto/openssl/engines/vendor_defns/atalla.h stable/8/crypto/openssl/engines/vendor_defns/cswift.h stable/8/crypto/openssl/engines/vendor_defns/hw_4758_cca.h stable/8/crypto/openssl/engines/vendor_defns/hw_ubsec.h stable/8/crypto/openssl/engines/vendor_defns/hwcryptohook.h stable/8/crypto/openssl/engines/vendor_defns/sureware.h stable/8/crypto/openssl/fips/aes/fips_aes_selftest.c stable/8/crypto/openssl/fips/aes/fips_aesavs.c stable/8/crypto/openssl/fips/des/fips_des_selftest.c stable/8/crypto/openssl/fips/des/fips_desmovs.c stable/8/crypto/openssl/fips/dh/dh_gen.c stable/8/crypto/openssl/fips/dh/fips_dh_check.c stable/8/crypto/openssl/fips/dh/fips_dh_gen.c stable/8/crypto/openssl/fips/dh/fips_dh_key.c stable/8/crypto/openssl/fips/dh/fips_dh_lib.c stable/8/crypto/openssl/fips/dsa/fips_dsa_gen.c stable/8/crypto/openssl/fips/dsa/fips_dsa_key.c stable/8/crypto/openssl/fips/dsa/fips_dsa_lib.c stable/8/crypto/openssl/fips/dsa/fips_dsa_ossl.c stable/8/crypto/openssl/fips/dsa/fips_dsa_selftest.c stable/8/crypto/openssl/fips/dsa/fips_dsa_sign.c stable/8/crypto/openssl/fips/dsa/fips_dsatest.c stable/8/crypto/openssl/fips/dsa/fips_dssvs.c stable/8/crypto/openssl/fips/fips.c stable/8/crypto/openssl/fips/fips.h stable/8/crypto/openssl/fips/fips_canister.c stable/8/crypto/openssl/fips/fips_locl.h stable/8/crypto/openssl/fips/fips_premain.c stable/8/crypto/openssl/fips/fips_test_suite.c stable/8/crypto/openssl/fips/fips_utl.h stable/8/crypto/openssl/fips/hmac/fips_hmac.c stable/8/crypto/openssl/fips/hmac/fips_hmac_selftest.c stable/8/crypto/openssl/fips/hmac/fips_hmactest.c stable/8/crypto/openssl/fips/rand/fips_rand.c stable/8/crypto/openssl/fips/rand/fips_rand.h stable/8/crypto/openssl/fips/rand/fips_rand_selftest.c stable/8/crypto/openssl/fips/rand/fips_randtest.c stable/8/crypto/openssl/fips/rand/fips_rngvs.c stable/8/crypto/openssl/fips/rsa/fips_rsa_eay.c stable/8/crypto/openssl/fips/rsa/fips_rsa_gen.c stable/8/crypto/openssl/fips/rsa/fips_rsa_lib.c stable/8/crypto/openssl/fips/rsa/fips_rsa_selftest.c stable/8/crypto/openssl/fips/rsa/fips_rsa_sign.c stable/8/crypto/openssl/fips/rsa/fips_rsa_x931g.c stable/8/crypto/openssl/fips/rsa/fips_rsagtest.c stable/8/crypto/openssl/fips/rsa/fips_rsastest.c stable/8/crypto/openssl/fips/rsa/fips_rsavtest.c stable/8/crypto/openssl/fips/sha/fips_sha1_selftest.c stable/8/crypto/openssl/fips/sha/fips_shatest.c stable/8/crypto/openssl/fips/sha/fips_standalone_sha1.c stable/8/crypto/openssl/openssl.spec stable/8/crypto/openssl/ssl/bio_ssl.c stable/8/crypto/openssl/ssl/d1_both.c stable/8/crypto/openssl/ssl/d1_clnt.c stable/8/crypto/openssl/ssl/d1_enc.c stable/8/crypto/openssl/ssl/d1_lib.c stable/8/crypto/openssl/ssl/d1_meth.c stable/8/crypto/openssl/ssl/d1_pkt.c stable/8/crypto/openssl/ssl/d1_srvr.c stable/8/crypto/openssl/ssl/dtls1.h stable/8/crypto/openssl/ssl/kssl.c stable/8/crypto/openssl/ssl/kssl.h stable/8/crypto/openssl/ssl/kssl_lcl.h stable/8/crypto/openssl/ssl/s23_clnt.c stable/8/crypto/openssl/ssl/s23_lib.c stable/8/crypto/openssl/ssl/s23_meth.c stable/8/crypto/openssl/ssl/s23_pkt.c stable/8/crypto/openssl/ssl/s23_srvr.c stable/8/crypto/openssl/ssl/s2_clnt.c stable/8/crypto/openssl/ssl/s2_enc.c stable/8/crypto/openssl/ssl/s2_lib.c stable/8/crypto/openssl/ssl/s2_meth.c stable/8/crypto/openssl/ssl/s2_pkt.c stable/8/crypto/openssl/ssl/s2_srvr.c stable/8/crypto/openssl/ssl/s3_both.c stable/8/crypto/openssl/ssl/s3_cbc.c stable/8/crypto/openssl/ssl/s3_clnt.c stable/8/crypto/openssl/ssl/s3_enc.c stable/8/crypto/openssl/ssl/s3_lib.c stable/8/crypto/openssl/ssl/s3_meth.c stable/8/crypto/openssl/ssl/s3_pkt.c stable/8/crypto/openssl/ssl/s3_srvr.c stable/8/crypto/openssl/ssl/ssl.h stable/8/crypto/openssl/ssl/ssl2.h stable/8/crypto/openssl/ssl/ssl23.h stable/8/crypto/openssl/ssl/ssl3.h stable/8/crypto/openssl/ssl/ssl_algs.c stable/8/crypto/openssl/ssl/ssl_asn1.c stable/8/crypto/openssl/ssl/ssl_cert.c stable/8/crypto/openssl/ssl/ssl_ciph.c stable/8/crypto/openssl/ssl/ssl_err.c stable/8/crypto/openssl/ssl/ssl_err2.c stable/8/crypto/openssl/ssl/ssl_lib.c stable/8/crypto/openssl/ssl/ssl_locl.h stable/8/crypto/openssl/ssl/ssl_rsa.c stable/8/crypto/openssl/ssl/ssl_sess.c stable/8/crypto/openssl/ssl/ssl_stat.c stable/8/crypto/openssl/ssl/ssl_task.c stable/8/crypto/openssl/ssl/ssl_txt.c stable/8/crypto/openssl/ssl/ssltest.c stable/8/crypto/openssl/ssl/t1_clnt.c stable/8/crypto/openssl/ssl/t1_enc.c stable/8/crypto/openssl/ssl/t1_lib.c stable/8/crypto/openssl/ssl/t1_meth.c stable/8/crypto/openssl/ssl/t1_reneg.c stable/8/crypto/openssl/ssl/t1_srvr.c stable/8/crypto/openssl/ssl/tls1.h stable/8/crypto/openssl/test/dummytest.c stable/8/crypto/openssl/test/igetest.c stable/8/crypto/openssl/test/methtest.c stable/8/crypto/openssl/test/r160test.c stable/8/crypto/openssl/util/ck_errf.pl stable/8/crypto/openssl/util/mkerr.pl stable/8/secure/lib/libcrypto/Makefile.inc stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/8/secure/lib/libcrypto/man/BIO_f_md.3 stable/8/secure/lib/libcrypto/man/BIO_f_null.3 stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/8/secure/lib/libcrypto/man/BIO_find_type.3 stable/8/secure/lib/libcrypto/man/BIO_new.3 stable/8/secure/lib/libcrypto/man/BIO_push.3 stable/8/secure/lib/libcrypto/man/BIO_read.3 stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 stable/8/secure/lib/libcrypto/man/BIO_s_file.3 stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 stable/8/secure/lib/libcrypto/man/BIO_s_null.3 stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 stable/8/secure/lib/libcrypto/man/BN_add.3 stable/8/secure/lib/libcrypto/man/BN_add_word.3 stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 stable/8/secure/lib/libcrypto/man/BN_cmp.3 stable/8/secure/lib/libcrypto/man/BN_copy.3 stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/8/secure/lib/libcrypto/man/BN_new.3 stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 stable/8/secure/lib/libcrypto/man/BN_rand.3 stable/8/secure/lib/libcrypto/man/BN_set_bit.3 stable/8/secure/lib/libcrypto/man/BN_swap.3 stable/8/secure/lib/libcrypto/man/BN_zero.3 stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/8/secure/lib/libcrypto/man/DH_generate_key.3 stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DH_new.3 stable/8/secure/lib/libcrypto/man/DH_set_method.3 stable/8/secure/lib/libcrypto/man/DH_size.3 stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DSA_new.3 stable/8/secure/lib/libcrypto/man/DSA_set_method.3 stable/8/secure/lib/libcrypto/man/DSA_sign.3 stable/8/secure/lib/libcrypto/man/DSA_size.3 stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 stable/8/secure/lib/libcrypto/man/ERR_error_string.3 stable/8/secure/lib/libcrypto/man/ERR_get_error.3 stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 stable/8/secure/lib/libcrypto/man/ERR_put_error.3 stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/8/secure/lib/libcrypto/man/PKCS12_create.3 stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 stable/8/secure/lib/libcrypto/man/RAND_add.3 stable/8/secure/lib/libcrypto/man/RAND_bytes.3 stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 stable/8/secure/lib/libcrypto/man/RAND_egd.3 stable/8/secure/lib/libcrypto/man/RAND_load_file.3 stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/8/secure/lib/libcrypto/man/RSA_check_key.3 stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/RSA_new.3 stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/8/secure/lib/libcrypto/man/RSA_print.3 stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_set_method.3 stable/8/secure/lib/libcrypto/man/RSA_sign.3 stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/8/secure/lib/libcrypto/man/RSA_size.3 stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/8/secure/lib/libcrypto/man/X509_new.3 stable/8/secure/lib/libcrypto/man/bio.3 stable/8/secure/lib/libcrypto/man/blowfish.3 stable/8/secure/lib/libcrypto/man/bn.3 stable/8/secure/lib/libcrypto/man/bn_internal.3 stable/8/secure/lib/libcrypto/man/buffer.3 stable/8/secure/lib/libcrypto/man/crypto.3 stable/8/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/8/secure/lib/libcrypto/man/d2i_DHparams.3 stable/8/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/8/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_X509.3 stable/8/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/8/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/8/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/8/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/8/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/8/secure/lib/libcrypto/man/des.3 stable/8/secure/lib/libcrypto/man/dh.3 stable/8/secure/lib/libcrypto/man/dsa.3 stable/8/secure/lib/libcrypto/man/ecdsa.3 stable/8/secure/lib/libcrypto/man/engine.3 stable/8/secure/lib/libcrypto/man/err.3 stable/8/secure/lib/libcrypto/man/evp.3 stable/8/secure/lib/libcrypto/man/hmac.3 stable/8/secure/lib/libcrypto/man/lh_stats.3 stable/8/secure/lib/libcrypto/man/lhash.3 stable/8/secure/lib/libcrypto/man/md5.3 stable/8/secure/lib/libcrypto/man/mdc2.3 stable/8/secure/lib/libcrypto/man/pem.3 stable/8/secure/lib/libcrypto/man/rand.3 stable/8/secure/lib/libcrypto/man/rc4.3 stable/8/secure/lib/libcrypto/man/ripemd.3 stable/8/secure/lib/libcrypto/man/rsa.3 stable/8/secure/lib/libcrypto/man/sha.3 stable/8/secure/lib/libcrypto/man/threads.3 stable/8/secure/lib/libcrypto/man/ui.3 stable/8/secure/lib/libcrypto/man/ui_compat.3 stable/8/secure/lib/libcrypto/man/x509.3 stable/8/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/8/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/8/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/8/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_free.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/8/secure/lib/libssl/man/SSL_CTX_new.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/8/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/8/secure/lib/libssl/man/SSL_SESSION_free.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/8/secure/lib/libssl/man/SSL_accept.3 stable/8/secure/lib/libssl/man/SSL_alert_type_string.3 stable/8/secure/lib/libssl/man/SSL_clear.3 stable/8/secure/lib/libssl/man/SSL_connect.3 stable/8/secure/lib/libssl/man/SSL_do_handshake.3 stable/8/secure/lib/libssl/man/SSL_free.3 stable/8/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/8/secure/lib/libssl/man/SSL_get_ciphers.3 stable/8/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/8/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/8/secure/lib/libssl/man/SSL_get_error.3 stable/8/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/8/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_get_fd.3 stable/8/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/8/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/8/secure/lib/libssl/man/SSL_get_rbio.3 stable/8/secure/lib/libssl/man/SSL_get_session.3 stable/8/secure/lib/libssl/man/SSL_get_verify_result.3 stable/8/secure/lib/libssl/man/SSL_get_version.3 stable/8/secure/lib/libssl/man/SSL_library_init.3 stable/8/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/8/secure/lib/libssl/man/SSL_new.3 stable/8/secure/lib/libssl/man/SSL_pending.3 stable/8/secure/lib/libssl/man/SSL_read.3 stable/8/secure/lib/libssl/man/SSL_rstate_string.3 stable/8/secure/lib/libssl/man/SSL_session_reused.3 stable/8/secure/lib/libssl/man/SSL_set_bio.3 stable/8/secure/lib/libssl/man/SSL_set_connect_state.3 stable/8/secure/lib/libssl/man/SSL_set_fd.3 stable/8/secure/lib/libssl/man/SSL_set_session.3 stable/8/secure/lib/libssl/man/SSL_set_shutdown.3 stable/8/secure/lib/libssl/man/SSL_set_verify_result.3 stable/8/secure/lib/libssl/man/SSL_shutdown.3 stable/8/secure/lib/libssl/man/SSL_state_string.3 stable/8/secure/lib/libssl/man/SSL_want.3 stable/8/secure/lib/libssl/man/SSL_write.3 stable/8/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/8/secure/lib/libssl/man/ssl.3 stable/8/secure/usr.bin/openssl/man/CA.pl.1 stable/8/secure/usr.bin/openssl/man/asn1parse.1 stable/8/secure/usr.bin/openssl/man/ca.1 stable/8/secure/usr.bin/openssl/man/ciphers.1 stable/8/secure/usr.bin/openssl/man/crl.1 stable/8/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/8/secure/usr.bin/openssl/man/dgst.1 stable/8/secure/usr.bin/openssl/man/dhparam.1 stable/8/secure/usr.bin/openssl/man/dsa.1 stable/8/secure/usr.bin/openssl/man/dsaparam.1 stable/8/secure/usr.bin/openssl/man/ec.1 stable/8/secure/usr.bin/openssl/man/ecparam.1 stable/8/secure/usr.bin/openssl/man/enc.1 stable/8/secure/usr.bin/openssl/man/errstr.1 stable/8/secure/usr.bin/openssl/man/gendsa.1 stable/8/secure/usr.bin/openssl/man/genrsa.1 stable/8/secure/usr.bin/openssl/man/nseq.1 stable/8/secure/usr.bin/openssl/man/ocsp.1 stable/8/secure/usr.bin/openssl/man/openssl.1 stable/8/secure/usr.bin/openssl/man/passwd.1 stable/8/secure/usr.bin/openssl/man/pkcs12.1 stable/8/secure/usr.bin/openssl/man/pkcs7.1 stable/8/secure/usr.bin/openssl/man/pkcs8.1 stable/8/secure/usr.bin/openssl/man/rand.1 stable/8/secure/usr.bin/openssl/man/req.1 stable/8/secure/usr.bin/openssl/man/rsa.1 stable/8/secure/usr.bin/openssl/man/rsautl.1 stable/8/secure/usr.bin/openssl/man/s_client.1 stable/8/secure/usr.bin/openssl/man/s_server.1 stable/8/secure/usr.bin/openssl/man/s_time.1 stable/8/secure/usr.bin/openssl/man/sess_id.1 stable/8/secure/usr.bin/openssl/man/smime.1 stable/8/secure/usr.bin/openssl/man/speed.1 stable/8/secure/usr.bin/openssl/man/spkac.1 stable/8/secure/usr.bin/openssl/man/verify.1 stable/8/secure/usr.bin/openssl/man/version.1 stable/8/secure/usr.bin/openssl/man/x509.1 stable/8/secure/usr.bin/openssl/man/x509v3_config.1 Directory Properties: stable/8/crypto/openssl/ (props changed) Modified: stable/9/crypto/openssl/CHANGES ============================================================================== --- stable/9/crypto/openssl/CHANGES Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/CHANGES Fri Mar 20 21:56:48 2015 (r280305) @@ -2,6 +2,88 @@ OpenSSL CHANGES _______________ + Changes between 0.9.8ze and 0.9.8zf [19 Mar 2015] + + *) Segmentation fault in ASN1_TYPE_cmp fix + + The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is + made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check + certificate signature algorithm consistency this can be used to crash any + certificate verification operation and exploited in a DoS attack. Any + application which performs certificate verification is vulnerable including + OpenSSL clients and servers which enable client authentication. + (CVE-2015-0286) + [Stephen Henson] + + *) ASN.1 structure reuse memory corruption fix + + Reusing a structure in ASN.1 parsing may allow an attacker to cause + memory corruption via an invalid write. Such reuse is and has been + strongly discouraged and is believed to be rare. + + Applications that parse structures containing CHOICE or ANY DEFINED BY + components may be affected. Certificate parsing (d2i_X509 and related + functions) are however not affected. OpenSSL clients and servers are + not affected. + (CVE-2015-0287) + [Stephen Henson] + + *) PKCS7 NULL pointer dereferences fix + + The PKCS#7 parsing code does not handle missing outer ContentInfo + correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with + missing content and trigger a NULL pointer dereference on parsing. + + Applications that verify PKCS#7 signatures, decrypt PKCS#7 data or + otherwise parse PKCS#7 structures from untrusted sources are + affected. OpenSSL clients and servers are not affected. + + This issue was reported to OpenSSL by Michal Zalewski (Google). + (CVE-2015-0289) + [Emilia Käsper] + + *) DoS via reachable assert in SSLv2 servers fix + + A malicious client can trigger an OPENSSL_assert (i.e., an abort) in + servers that both support SSLv2 and enable export cipher suites by sending + a specially crafted SSLv2 CLIENT-MASTER-KEY message. + + This issue was discovered by Sean Burford (Google) and Emilia Käsper + (OpenSSL development team). + (CVE-2015-0293) + [Emilia Käsper] + + *) Use After Free following d2i_ECPrivatekey error fix + + A malformed EC private key file consumed via the d2i_ECPrivateKey function + could cause a use after free condition. This, in turn, could cause a double + free in several private key parsing functions (such as d2i_PrivateKey + or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption + for applications that receive EC private keys from untrusted + sources. This scenario is considered rare. + + This issue was discovered by the BoringSSL project and fixed in their + commit 517073cd4b. + (CVE-2015-0209) + [Matt Caswell] + + *) X509_to_X509_REQ NULL pointer deref fix + + The function X509_to_X509_REQ will crash with a NULL pointer dereference if + the certificate key is invalid. This function is rarely used in practice. + + This issue was discovered by Brian Carpenter. + (CVE-2015-0288) + [Stephen Henson] + + *) Removed the export and SSLv2 ciphers from the DEFAULT ciphers + [Kurt Roeckx] + + Changes between 0.9.8zd and 0.9.8ze [15 Jan 2015] + + *) Build fixes for the Windows and OpenVMS platforms + [Matt Caswell and Richard Levitte] + Changes between 0.9.8zc and 0.9.8zd [8 Jan 2015] *) Fix DTLS segmentation fault in dtls1_get_record. A carefully crafted DTLS Modified: stable/9/crypto/openssl/Makefile ============================================================================== --- stable/9/crypto/openssl/Makefile Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/Makefile Fri Mar 20 21:56:48 2015 (r280305) @@ -4,7 +4,7 @@ ## Makefile for OpenSSL ## -VERSION=0.9.8zd +VERSION=0.9.8zf MAJOR=0 MINOR=9.8 SHLIB_VERSION_NUMBER=0.9.8 Modified: stable/9/crypto/openssl/NEWS ============================================================================== --- stable/9/crypto/openssl/NEWS Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/NEWS Fri Mar 20 21:56:48 2015 (r280305) @@ -5,6 +5,20 @@ This file gives a brief overview of the major changes between each OpenSSL release. For more details please read the CHANGES file. + Major changes between OpenSSL 0.9.8ze and OpenSSL 0.9.8zf [19 Mar 2015] + + o Segmentation fault in ASN1_TYPE_cmp fix (CVE-2015-0286) + o ASN.1 structure reuse memory corruption fix (CVE-2015-0287) + o PKCS7 NULL pointer dereferences fix (CVE-2015-0289) + o DoS via reachable assert in SSLv2 servers fix (CVE-2015-0293) + o Use After Free following d2i_ECPrivatekey error fix (CVE-2015-0209) + o X509_to_X509_REQ NULL pointer deref fix (CVE-2015-0288) + o Removed the export ciphers from the DEFAULT ciphers + + Major changes between OpenSSL 0.9.8zd and OpenSSL 0.9.8ze [15 Jan 2015] + + o Build fixes for the Windows and OpenVMS platforms + Major changes between OpenSSL 0.9.8zc and OpenSSL 0.9.8zd [8 Jan 2015] o Fix for CVE-2014-3571 Modified: stable/9/crypto/openssl/README ============================================================================== --- stable/9/crypto/openssl/README Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/README Fri Mar 20 21:56:48 2015 (r280305) @@ -1,5 +1,5 @@ - OpenSSL 0.9.8zd 8 Jan 2015 + OpenSSL 0.9.8zf 19 Mar 2015 Copyright (c) 1998-2011 The OpenSSL Project Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson Modified: stable/9/crypto/openssl/apps/app_rand.c ============================================================================== --- stable/9/crypto/openssl/apps/app_rand.c Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/apps/app_rand.c Fri Mar 20 21:56:48 2015 (r280305) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -115,104 +115,106 @@ #include #include - static int seeded = 0; static int egdsocket = 0; int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn) - { - int consider_randfile = (file == NULL); - char buffer[200]; - +{ + int consider_randfile = (file == NULL); + char buffer[200]; + #ifdef OPENSSL_SYS_WINDOWS - BIO_printf(bio_e,"Loading 'screen' into random state -"); - BIO_flush(bio_e); - RAND_screen(); - BIO_printf(bio_e," done\n"); + BIO_printf(bio_e, "Loading 'screen' into random state -"); + BIO_flush(bio_e); + RAND_screen(); + BIO_printf(bio_e, " done\n"); #endif - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - else if (RAND_egd(file) > 0) - { - /* we try if the given filename is an EGD socket. - if it is, we don't write anything back to the file. */ - egdsocket = 1; - return 1; - } - if (file == NULL || !RAND_load_file(file, -1)) - { - if (RAND_status() == 0) - { - if (!dont_warn) - { - BIO_printf(bio_e,"unable to load 'random state'\n"); - BIO_printf(bio_e,"This means that the random number generator has not been seeded\n"); - BIO_printf(bio_e,"with much random data.\n"); - if (consider_randfile) /* explanation does not apply when a file is explicitly named */ - { - BIO_printf(bio_e,"Consider setting the RANDFILE environment variable to point at a file that\n"); - BIO_printf(bio_e,"'random' data can be kept in (the file will be overwritten).\n"); - } - } - return 0; - } - } - seeded = 1; - return 1; - } + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + else if (RAND_egd(file) > 0) { + /* + * we try if the given filename is an EGD socket. if it is, we don't + * write anything back to the file. + */ + egdsocket = 1; + return 1; + } + if (file == NULL || !RAND_load_file(file, -1)) { + if (RAND_status() == 0) { + if (!dont_warn) { + BIO_printf(bio_e, "unable to load 'random state'\n"); + BIO_printf(bio_e, + "This means that the random number generator has not been seeded\n"); + BIO_printf(bio_e, "with much random data.\n"); + if (consider_randfile) { /* explanation does not apply when a + * file is explicitly named */ + BIO_printf(bio_e, + "Consider setting the RANDFILE environment variable to point at a file that\n"); + BIO_printf(bio_e, + "'random' data can be kept in (the file will be overwritten).\n"); + } + } + return 0; + } + } + seeded = 1; + return 1; +} long app_RAND_load_files(char *name) - { - char *p,*n; - int last; - long tot=0; - int egd; - - for (;;) - { - last=0; - for (p=name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++); - if (*p == '\0') last=1; - *p='\0'; - n=name; - name=p+1; - if (*n == '\0') break; - - egd=RAND_egd(n); - if (egd > 0) - tot+=egd; - else - tot+=RAND_load_file(n,-1); - if (last) break; - } - if (tot > 512) - app_RAND_allow_write_file(); - return(tot); - } +{ + char *p, *n; + int last; + long tot = 0; + int egd; + + for (;;) { + last = 0; + for (p = name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++) ; + if (*p == '\0') + last = 1; + *p = '\0'; + n = name; + name = p + 1; + if (*n == '\0') + break; + + egd = RAND_egd(n); + if (egd > 0) + tot += egd; + else + tot += RAND_load_file(n, -1); + if (last) + break; + } + if (tot > 512) + app_RAND_allow_write_file(); + return (tot); +} int app_RAND_write_file(const char *file, BIO *bio_e) - { - char buffer[200]; - - if (egdsocket || !seeded) - /* If we did not manage to read the seed file, - * we should not write a low-entropy seed file back -- - * it would suppress a crucial warning the next time - * we want to use it. */ - return 0; - - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - if (file == NULL || !RAND_write_file(file)) - { - BIO_printf(bio_e,"unable to write 'random state'\n"); - return 0; - } - return 1; - } +{ + char buffer[200]; + + if (egdsocket || !seeded) + /* + * If we did not manage to read the seed file, we should not write a + * low-entropy seed file back -- it would suppress a crucial warning + * the next time we want to use it. + */ + return 0; + + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + if (file == NULL || !RAND_write_file(file)) { + BIO_printf(bio_e, "unable to write 'random state'\n"); + return 0; + } + return 1; +} void app_RAND_allow_write_file(void) - { - seeded = 1; - } +{ + seeded = 1; +} Modified: stable/9/crypto/openssl/apps/apps.c ============================================================================== --- stable/9/crypto/openssl/apps/apps.c Fri Mar 20 21:54:45 2015 (r280304) +++ stable/9/crypto/openssl/apps/apps.c Fri Mar 20 21:56:48 2015 (r280305) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -124,14 +124,14 @@ #include #include #ifndef OPENSSL_NO_ENGINE -#include +# include #endif #ifndef OPENSSL_NO_RSA -#include +# include #endif #include #ifndef OPENSSL_NO_JPAKE -#include +# include #endif #define NON_MAIN @@ -139,2449 +139,2309 @@ #undef NON_MAIN typedef struct { - const char *name; - unsigned long flag; - unsigned long mask; + const char *name; + unsigned long flag; + unsigned long mask; } NAME_EX_TBL; static UI_METHOD *ui_method = NULL; -static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl); -static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl); +static int set_table_opts(unsigned long *flags, const char *arg, + const NAME_EX_TBL * in_tbl); +static int set_multi_opts(unsigned long *flags, const char *arg, + const NAME_EX_TBL * in_tbl); #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA) /* Looks like this stuff is worth moving into separate function */ -static EVP_PKEY * -load_netscape_key(BIO *err, BIO *key, const char *file, - const char *key_descrip, int format); +static EVP_PKEY *load_netscape_key(BIO *err, BIO *key, const char *file, + const char *key_descrip, int format); #endif int app_init(long mesgwin); -#ifdef undef /* never finished - probably never will be :-) */ +#ifdef undef /* never finished - probably never will be + * :-) */ int args_from_file(char *file, int *argc, char **argv[]) - { - FILE *fp; - int num,i; - unsigned int len; - static char *buf=NULL; - static char **arg=NULL; - char *p; - struct stat stbuf; - - if (stat(file,&stbuf) < 0) return(0); - - fp=fopen(file,"r"); - if (fp == NULL) - return(0); - - *argc=0; - *argv=NULL; - - len=(unsigned int)stbuf.st_size; - if (buf != NULL) OPENSSL_free(buf); - buf=(char *)OPENSSL_malloc(len+1); - if (buf == NULL) return(0); - - len=fread(buf,1,len,fp); - if (len <= 1) return(0); - buf[len]='\0'; - - i=0; - for (p=buf; *p; p++) - if (*p == '\n') i++; - if (arg != NULL) OPENSSL_free(arg); - arg=(char **)OPENSSL_malloc(sizeof(char *)*(i*2)); - - *argv=arg; - num=0; - p=buf; - for (;;) - { - if (!*p) break; - if (*p == '#') /* comment line */ - { - while (*p && (*p != '\n')) p++; - continue; - } - /* else we have a line */ - *(arg++)=p; - num++; - while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) - p++; - if (!*p) break; - if (*p == '\n') - { - *(p++)='\0'; - continue; - } - /* else it is a tab or space */ - p++; - while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) - p++; - if (!*p) break; - if (*p == '\n') - { - p++; - continue; - } - *(arg++)=p++; - num++; - while (*p && (*p != '\n')) p++; - if (!*p) break; - /* else *p == '\n' */ - *(p++)='\0'; - } - *argc=num; - return(1); - } +{ + FILE *fp; + int num, i; + unsigned int len; + static char *buf = NULL; + static char **arg = NULL; + char *p; + struct stat stbuf; + + if (stat(file, &stbuf) < 0) + return (0); + + fp = fopen(file, "r"); + if (fp == NULL) + return (0); + + *argc = 0; + *argv = NULL; + + len = (unsigned int)stbuf.st_size; + if (buf != NULL) + OPENSSL_free(buf); + buf = (char *)OPENSSL_malloc(len + 1); + if (buf == NULL) + return (0); + + len = fread(buf, 1, len, fp); + if (len <= 1) + return (0); + buf[len] = '\0'; + + i = 0; + for (p = buf; *p; p++) + if (*p == '\n') + i++; + if (arg != NULL) + OPENSSL_free(arg); + arg = (char **)OPENSSL_malloc(sizeof(char *) * (i * 2)); + + *argv = arg; + num = 0; + p = buf; + for (;;) { + if (!*p) + break; + if (*p == '#') { /* comment line */ + while (*p && (*p != '\n')) + p++; + continue; + } + /* else we have a line */ + *(arg++) = p; + num++; + while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) + p++; + if (!*p) + break; + if (*p == '\n') { + *(p++) = '\0'; + continue; + } + /* else it is a tab or space */ + p++; + while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) + p++; + if (!*p) + break; + if (*p == '\n') { + p++; + continue; + } + *(arg++) = p++; + num++; + while (*p && (*p != '\n')) + p++; + if (!*p) + break; + /* else *p == '\n' */ + *(p++) = '\0'; + } + *argc = num; + return (1); +} #endif int str2fmt(char *s) - { - if ((*s == 'D') || (*s == 'd')) - return(FORMAT_ASN1); - else if ((*s == 'T') || (*s == 't')) - return(FORMAT_TEXT); - else if ((*s == 'P') || (*s == 'p')) - return(FORMAT_PEM); - else if ((*s == 'N') || (*s == 'n')) - return(FORMAT_NETSCAPE); - else if ((*s == 'S') || (*s == 's')) - return(FORMAT_SMIME); - else if ((*s == '1') - || (strcmp(s,"PKCS12") == 0) || (strcmp(s,"pkcs12") == 0) - || (strcmp(s,"P12") == 0) || (strcmp(s,"p12") == 0)) - return(FORMAT_PKCS12); - else if ((*s == 'E') || (*s == 'e')) - return(FORMAT_ENGINE); - else - return(FORMAT_UNDEF); - } +{ + if ((*s == 'D') || (*s == 'd')) + return (FORMAT_ASN1); + else if ((*s == 'T') || (*s == 't')) + return (FORMAT_TEXT); + else if ((*s == 'P') || (*s == 'p')) + return (FORMAT_PEM); + else if ((*s == 'N') || (*s == 'n')) + return (FORMAT_NETSCAPE); + else if ((*s == 'S') || (*s == 's')) + return (FORMAT_SMIME); + else if ((*s == '1') + || (strcmp(s, "PKCS12") == 0) || (strcmp(s, "pkcs12") == 0) + || (strcmp(s, "P12") == 0) || (strcmp(s, "p12") == 0)) + return (FORMAT_PKCS12); + else if ((*s == 'E') || (*s == 'e')) + return (FORMAT_ENGINE); + else + return (FORMAT_UNDEF); +} #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_NETWARE) void program_name(char *in, char *out, int size) - { - int i,n; - char *p=NULL; - - n=strlen(in); - /* find the last '/', '\' or ':' */ - for (i=n-1; i>0; i--) - { - if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':')) - { - p= &(in[i+1]); - break; - } - } - if (p == NULL) - p=in; - n=strlen(p); - -#if defined(OPENSSL_SYS_NETWARE) - /* strip off trailing .nlm if present. */ - if ((n > 4) && (p[n-4] == '.') && - ((p[n-3] == 'n') || (p[n-3] == 'N')) && - ((p[n-2] == 'l') || (p[n-2] == 'L')) && - ((p[n-1] == 'm') || (p[n-1] == 'M'))) - n-=4; -#else - /* strip off trailing .exe if present. */ - if ((n > 4) && (p[n-4] == '.') && - ((p[n-3] == 'e') || (p[n-3] == 'E')) && - ((p[n-2] == 'x') || (p[n-2] == 'X')) && - ((p[n-1] == 'e') || (p[n-1] == 'E'))) - n-=4; -#endif - - if (n > size-1) - n=size-1; - - for (i=0; i= 'A') && (p[i] <= 'Z')) - out[i]=p[i]-'A'+'a'; - else - out[i]=p[i]; - } - out[n]='\0'; - } +{ + int i, n; + char *p = NULL; + + n = strlen(in); + /* find the last '/', '\' or ':' */ + for (i = n - 1; i > 0; i--) { + if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':')) { + p = &(in[i + 1]); + break; + } + } + if (p == NULL) + p = in; + n = strlen(p); + +# if defined(OPENSSL_SYS_NETWARE) + /* strip off trailing .nlm if present. */ + if ((n > 4) && (p[n - 4] == '.') && + ((p[n - 3] == 'n') || (p[n - 3] == 'N')) && + ((p[n - 2] == 'l') || (p[n - 2] == 'L')) && + ((p[n - 1] == 'm') || (p[n - 1] == 'M'))) + n -= 4; +# else + /* strip off trailing .exe if present. */ + if ((n > 4) && (p[n - 4] == '.') && + ((p[n - 3] == 'e') || (p[n - 3] == 'E')) && + ((p[n - 2] == 'x') || (p[n - 2] == 'X')) && + ((p[n - 1] == 'e') || (p[n - 1] == 'E'))) + n -= 4; +# endif + + if (n > size - 1) + n = size - 1; + + for (i = 0; i < n; i++) { + if ((p[i] >= 'A') && (p[i] <= 'Z')) + out[i] = p[i] - 'A' + 'a'; + else + out[i] = p[i]; + } + out[n] = '\0'; +} #else -#ifdef OPENSSL_SYS_VMS +# ifdef OPENSSL_SYS_VMS void program_name(char *in, char *out, int size) - { - char *p=in, *q; - char *chars=":]>"; - - while(*chars != '\0') - { - q=strrchr(p,*chars); - if (q > p) - p = q + 1; - chars++; - } - - q=strrchr(p,'.'); - if (q == NULL) - q = p + strlen(p); - strncpy(out,p,size-1); - if (q-p >= size) - { - out[size-1]='\0'; - } - else - { - out[q-p]='\0'; - } - } -#else +{ + char *p = in, *q; + char *chars = ":]>"; + + while (*chars != '\0') { + q = strrchr(p, *chars); + if (q > p) + p = q + 1; + chars++; + } + + q = strrchr(p, '.'); + if (q == NULL) + q = p + strlen(p); + strncpy(out, p, size - 1); + if (q - p >= size) { + out[size - 1] = '\0'; + } else { + out[q - p] = '\0'; + } +} +# else void program_name(char *in, char *out, int size) - { - char *p; +{ + char *p; - p=strrchr(in,'/'); - if (p != NULL) - p++; - else - p=in; - BUF_strlcpy(out,p,size); - } -#endif + p = strrchr(in, '/'); + if (p != NULL) + p++; + else + p = in; + BUF_strlcpy(out, p, size); +} +# endif #endif int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[]) - { - int num,i; - char *p; - - *argc=0; - *argv=NULL; - - i=0; - if (arg->count == 0) - { - arg->count=20; - arg->data=(char **)OPENSSL_malloc(sizeof(char *)*arg->count); - if (arg->data == NULL) - return 0; - } - for (i=0; icount; i++) - arg->data[i]=NULL; - - num=0; - p=buf; - for (;;) - { - /* first scan over white space */ - if (!*p) break; - while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) - p++; - if (!*p) break; - - /* The start of something good :-) */ - if (num >= arg->count) - { - char **tmp_p; - int tlen = arg->count + 20; - tmp_p = (char **)OPENSSL_realloc(arg->data, - sizeof(char *)*tlen); - if (tmp_p == NULL) - return 0; - arg->data = tmp_p; - arg->count = tlen; - /* initialize newly allocated data */ - for (i = num; i < arg->count; i++) - arg->data[i] = NULL; - } - arg->data[num++]=p; - - /* now look for the end of this */ - if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */ - { - i= *(p++); - arg->data[num-1]++; /* jump over quote */ - while (*p && (*p != i)) - p++; - *p='\0'; - } - else - { - while (*p && ((*p != ' ') && - (*p != '\t') && (*p != '\n'))) - p++; - - if (*p == '\0') - p--; - else - *p='\0'; - } - p++; - } - *argc=num; - *argv=arg->data; - return(1); - } +{ + int num, i; + char *p; + + *argc = 0; + *argv = NULL; + + i = 0; + if (arg->count == 0) { + arg->count = 20; + arg->data = (char **)OPENSSL_malloc(sizeof(char *) * arg->count); + if (arg->data == NULL) + return 0; + } + for (i = 0; i < arg->count; i++) + arg->data[i] = NULL; + + num = 0; + p = buf; + for (;;) { + /* first scan over white space */ + if (!*p) + break; + while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) + p++; + if (!*p) + break; + + /* The start of something good :-) */ + if (num >= arg->count) { + char **tmp_p; + int tlen = arg->count + 20; + tmp_p = (char **)OPENSSL_realloc(arg->data, + sizeof(char *) * tlen); + if (tmp_p == NULL) + return 0; + arg->data = tmp_p; + arg->count = tlen; + /* initialize newly allocated data */ + for (i = num; i < arg->count; i++) + arg->data[i] = NULL; + } + arg->data[num++] = p; + + /* now look for the end of this */ + if ((*p == '\'') || (*p == '\"')) { /* scan for closing quote */ + i = *(p++); + arg->data[num - 1]++; /* jump over quote */ + while (*p && (*p != i)) + p++; + *p = '\0'; + } else { + while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) + p++; + + if (*p == '\0') + p--; + else + *p = '\0'; + } + p++; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable@FreeBSD.ORG Fri Mar 20 21:56:53 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C229865; Fri, 20 Mar 2015 21:56:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 20B41172; Fri, 20 Mar 2015 21:56:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2KLurk6081637; Fri, 20 Mar 2015 21:56:53 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2KLuo94081628; Fri, 20 Mar 2015 21:56:50 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201503202156.t2KLuo94081628@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 20 Mar 2015 21:56:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r280305 - in stable: 8/crypto/openssl 8/crypto/openssl/apps 8/crypto/openssl/bugs 8/crypto/openssl/crypto 8/crypto/openssl/crypto/aes 8/crypto/openssl/crypto/asn1 8/crypto/openssl/crypt... X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 21:56:53 -0000 Author: jkim Date: Fri Mar 20 21:56:48 2015 New Revision: 280305 URL: https://svnweb.freebsd.org/changeset/base/280305 Log: Merge OpenSSL 0.9.8zf. Relnotes: yes Added: stable/8/crypto/openssl/util/indent.pro - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/indent.pro stable/8/crypto/openssl/util/openssl-format-source - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/openssl-format-source stable/8/crypto/openssl/util/su-filter.pl - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/su-filter.pl Modified: stable/8/crypto/openssl/CHANGES stable/8/crypto/openssl/Makefile stable/8/crypto/openssl/NEWS stable/8/crypto/openssl/README stable/8/crypto/openssl/apps/app_rand.c stable/8/crypto/openssl/apps/apps.c stable/8/crypto/openssl/apps/apps.h stable/8/crypto/openssl/apps/asn1pars.c stable/8/crypto/openssl/apps/ca.c stable/8/crypto/openssl/apps/ciphers.c stable/8/crypto/openssl/apps/cms.c stable/8/crypto/openssl/apps/crl.c stable/8/crypto/openssl/apps/crl2p7.c stable/8/crypto/openssl/apps/dgst.c stable/8/crypto/openssl/apps/dh.c stable/8/crypto/openssl/apps/dhparam.c stable/8/crypto/openssl/apps/dsa.c stable/8/crypto/openssl/apps/dsaparam.c stable/8/crypto/openssl/apps/ec.c stable/8/crypto/openssl/apps/ecparam.c stable/8/crypto/openssl/apps/enc.c stable/8/crypto/openssl/apps/engine.c stable/8/crypto/openssl/apps/errstr.c stable/8/crypto/openssl/apps/gendh.c stable/8/crypto/openssl/apps/gendsa.c stable/8/crypto/openssl/apps/genrsa.c stable/8/crypto/openssl/apps/nseq.c stable/8/crypto/openssl/apps/ocsp.c stable/8/crypto/openssl/apps/openssl.c stable/8/crypto/openssl/apps/passwd.c stable/8/crypto/openssl/apps/pkcs12.c stable/8/crypto/openssl/apps/pkcs7.c stable/8/crypto/openssl/apps/pkcs8.c stable/8/crypto/openssl/apps/prime.c stable/8/crypto/openssl/apps/progs.h stable/8/crypto/openssl/apps/rand.c stable/8/crypto/openssl/apps/req.c stable/8/crypto/openssl/apps/rsa.c stable/8/crypto/openssl/apps/rsautl.c stable/8/crypto/openssl/apps/s_apps.h stable/8/crypto/openssl/apps/s_cb.c stable/8/crypto/openssl/apps/s_client.c stable/8/crypto/openssl/apps/s_server.c stable/8/crypto/openssl/apps/s_socket.c stable/8/crypto/openssl/apps/s_time.c stable/8/crypto/openssl/apps/sess_id.c stable/8/crypto/openssl/apps/smime.c stable/8/crypto/openssl/apps/speed.c stable/8/crypto/openssl/apps/spkac.c stable/8/crypto/openssl/apps/testdsa.h stable/8/crypto/openssl/apps/testrsa.h stable/8/crypto/openssl/apps/timeouts.h stable/8/crypto/openssl/apps/verify.c stable/8/crypto/openssl/apps/version.c stable/8/crypto/openssl/apps/winrand.c stable/8/crypto/openssl/apps/x509.c stable/8/crypto/openssl/bugs/alpha.c stable/8/crypto/openssl/bugs/dggccbug.c stable/8/crypto/openssl/bugs/sgiccbug.c stable/8/crypto/openssl/bugs/stream.c stable/8/crypto/openssl/bugs/ultrixcc.c stable/8/crypto/openssl/crypto/LPdir_nyi.c stable/8/crypto/openssl/crypto/LPdir_unix.c stable/8/crypto/openssl/crypto/LPdir_vms.c stable/8/crypto/openssl/crypto/LPdir_win.c stable/8/crypto/openssl/crypto/LPdir_win32.c stable/8/crypto/openssl/crypto/LPdir_wince.c stable/8/crypto/openssl/crypto/aes/aes.h stable/8/crypto/openssl/crypto/aes/aes_cbc.c stable/8/crypto/openssl/crypto/aes/aes_cfb.c stable/8/crypto/openssl/crypto/aes/aes_core.c stable/8/crypto/openssl/crypto/aes/aes_ctr.c stable/8/crypto/openssl/crypto/aes/aes_ecb.c stable/8/crypto/openssl/crypto/aes/aes_ige.c stable/8/crypto/openssl/crypto/aes/aes_locl.h stable/8/crypto/openssl/crypto/aes/aes_misc.c stable/8/crypto/openssl/crypto/aes/aes_ofb.c stable/8/crypto/openssl/crypto/aes/aes_wrap.c stable/8/crypto/openssl/crypto/asn1/a_bitstr.c stable/8/crypto/openssl/crypto/asn1/a_bool.c stable/8/crypto/openssl/crypto/asn1/a_bytes.c stable/8/crypto/openssl/crypto/asn1/a_d2i_fp.c stable/8/crypto/openssl/crypto/asn1/a_digest.c stable/8/crypto/openssl/crypto/asn1/a_dup.c stable/8/crypto/openssl/crypto/asn1/a_enum.c stable/8/crypto/openssl/crypto/asn1/a_gentm.c stable/8/crypto/openssl/crypto/asn1/a_hdr.c stable/8/crypto/openssl/crypto/asn1/a_i2d_fp.c stable/8/crypto/openssl/crypto/asn1/a_int.c stable/8/crypto/openssl/crypto/asn1/a_mbstr.c stable/8/crypto/openssl/crypto/asn1/a_meth.c stable/8/crypto/openssl/crypto/asn1/a_object.c stable/8/crypto/openssl/crypto/asn1/a_octet.c stable/8/crypto/openssl/crypto/asn1/a_print.c stable/8/crypto/openssl/crypto/asn1/a_set.c stable/8/crypto/openssl/crypto/asn1/a_sign.c stable/8/crypto/openssl/crypto/asn1/a_strex.c stable/8/crypto/openssl/crypto/asn1/a_strnid.c stable/8/crypto/openssl/crypto/asn1/a_time.c stable/8/crypto/openssl/crypto/asn1/a_type.c stable/8/crypto/openssl/crypto/asn1/a_utctm.c stable/8/crypto/openssl/crypto/asn1/a_utf8.c stable/8/crypto/openssl/crypto/asn1/a_verify.c stable/8/crypto/openssl/crypto/asn1/asn1.h stable/8/crypto/openssl/crypto/asn1/asn1_err.c stable/8/crypto/openssl/crypto/asn1/asn1_gen.c stable/8/crypto/openssl/crypto/asn1/asn1_lib.c stable/8/crypto/openssl/crypto/asn1/asn1_mac.h stable/8/crypto/openssl/crypto/asn1/asn1_par.c stable/8/crypto/openssl/crypto/asn1/asn1t.h stable/8/crypto/openssl/crypto/asn1/asn_mime.c stable/8/crypto/openssl/crypto/asn1/asn_moid.c stable/8/crypto/openssl/crypto/asn1/asn_pack.c stable/8/crypto/openssl/crypto/asn1/charmap.h stable/8/crypto/openssl/crypto/asn1/d2i_pr.c stable/8/crypto/openssl/crypto/asn1/d2i_pu.c stable/8/crypto/openssl/crypto/asn1/evp_asn1.c stable/8/crypto/openssl/crypto/asn1/f_enum.c stable/8/crypto/openssl/crypto/asn1/f_int.c stable/8/crypto/openssl/crypto/asn1/f_string.c stable/8/crypto/openssl/crypto/asn1/i2d_pr.c stable/8/crypto/openssl/crypto/asn1/i2d_pu.c stable/8/crypto/openssl/crypto/asn1/n_pkey.c stable/8/crypto/openssl/crypto/asn1/nsseq.c stable/8/crypto/openssl/crypto/asn1/p5_pbe.c stable/8/crypto/openssl/crypto/asn1/p5_pbev2.c stable/8/crypto/openssl/crypto/asn1/p8_key.c stable/8/crypto/openssl/crypto/asn1/p8_pkey.c stable/8/crypto/openssl/crypto/asn1/t_bitst.c stable/8/crypto/openssl/crypto/asn1/t_crl.c stable/8/crypto/openssl/crypto/asn1/t_pkey.c stable/8/crypto/openssl/crypto/asn1/t_req.c stable/8/crypto/openssl/crypto/asn1/t_spki.c stable/8/crypto/openssl/crypto/asn1/t_x509.c stable/8/crypto/openssl/crypto/asn1/t_x509a.c stable/8/crypto/openssl/crypto/asn1/tasn_dec.c stable/8/crypto/openssl/crypto/asn1/tasn_enc.c stable/8/crypto/openssl/crypto/asn1/tasn_fre.c stable/8/crypto/openssl/crypto/asn1/tasn_new.c stable/8/crypto/openssl/crypto/asn1/tasn_prn.c stable/8/crypto/openssl/crypto/asn1/tasn_typ.c stable/8/crypto/openssl/crypto/asn1/tasn_utl.c stable/8/crypto/openssl/crypto/asn1/x_algor.c stable/8/crypto/openssl/crypto/asn1/x_attrib.c stable/8/crypto/openssl/crypto/asn1/x_bignum.c stable/8/crypto/openssl/crypto/asn1/x_crl.c stable/8/crypto/openssl/crypto/asn1/x_exten.c stable/8/crypto/openssl/crypto/asn1/x_info.c stable/8/crypto/openssl/crypto/asn1/x_long.c stable/8/crypto/openssl/crypto/asn1/x_name.c stable/8/crypto/openssl/crypto/asn1/x_pkey.c stable/8/crypto/openssl/crypto/asn1/x_pubkey.c stable/8/crypto/openssl/crypto/asn1/x_req.c stable/8/crypto/openssl/crypto/asn1/x_sig.c stable/8/crypto/openssl/crypto/asn1/x_spki.c stable/8/crypto/openssl/crypto/asn1/x_val.c stable/8/crypto/openssl/crypto/asn1/x_x509.c stable/8/crypto/openssl/crypto/asn1/x_x509a.c stable/8/crypto/openssl/crypto/bf/bf_cbc.c stable/8/crypto/openssl/crypto/bf/bf_cfb64.c stable/8/crypto/openssl/crypto/bf/bf_ecb.c stable/8/crypto/openssl/crypto/bf/bf_enc.c stable/8/crypto/openssl/crypto/bf/bf_locl.h stable/8/crypto/openssl/crypto/bf/bf_ofb64.c stable/8/crypto/openssl/crypto/bf/bf_opts.c stable/8/crypto/openssl/crypto/bf/bf_pi.h stable/8/crypto/openssl/crypto/bf/bf_skey.c stable/8/crypto/openssl/crypto/bf/bfspeed.c stable/8/crypto/openssl/crypto/bf/bftest.c stable/8/crypto/openssl/crypto/bf/blowfish.h stable/8/crypto/openssl/crypto/bio/b_dump.c stable/8/crypto/openssl/crypto/bio/b_print.c stable/8/crypto/openssl/crypto/bio/b_sock.c stable/8/crypto/openssl/crypto/bio/bf_buff.c stable/8/crypto/openssl/crypto/bio/bf_lbuf.c stable/8/crypto/openssl/crypto/bio/bf_nbio.c stable/8/crypto/openssl/crypto/bio/bf_null.c stable/8/crypto/openssl/crypto/bio/bio.h stable/8/crypto/openssl/crypto/bio/bio_cb.c stable/8/crypto/openssl/crypto/bio/bio_err.c stable/8/crypto/openssl/crypto/bio/bio_lcl.h stable/8/crypto/openssl/crypto/bio/bio_lib.c stable/8/crypto/openssl/crypto/bio/bss_acpt.c stable/8/crypto/openssl/crypto/bio/bss_bio.c stable/8/crypto/openssl/crypto/bio/bss_conn.c stable/8/crypto/openssl/crypto/bio/bss_dgram.c stable/8/crypto/openssl/crypto/bio/bss_fd.c stable/8/crypto/openssl/crypto/bio/bss_file.c stable/8/crypto/openssl/crypto/bio/bss_log.c stable/8/crypto/openssl/crypto/bio/bss_mem.c stable/8/crypto/openssl/crypto/bio/bss_null.c stable/8/crypto/openssl/crypto/bio/bss_rtcp.c stable/8/crypto/openssl/crypto/bio/bss_sock.c stable/8/crypto/openssl/crypto/bn/asm/x86_64-gcc.c stable/8/crypto/openssl/crypto/bn/bn.h stable/8/crypto/openssl/crypto/bn/bn_add.c stable/8/crypto/openssl/crypto/bn/bn_asm.c stable/8/crypto/openssl/crypto/bn/bn_blind.c stable/8/crypto/openssl/crypto/bn/bn_const.c stable/8/crypto/openssl/crypto/bn/bn_ctx.c stable/8/crypto/openssl/crypto/bn/bn_depr.c stable/8/crypto/openssl/crypto/bn/bn_div.c stable/8/crypto/openssl/crypto/bn/bn_err.c stable/8/crypto/openssl/crypto/bn/bn_exp.c stable/8/crypto/openssl/crypto/bn/bn_exp2.c stable/8/crypto/openssl/crypto/bn/bn_gcd.c stable/8/crypto/openssl/crypto/bn/bn_gf2m.c stable/8/crypto/openssl/crypto/bn/bn_kron.c stable/8/crypto/openssl/crypto/bn/bn_lcl.h stable/8/crypto/openssl/crypto/bn/bn_lib.c stable/8/crypto/openssl/crypto/bn/bn_mod.c stable/8/crypto/openssl/crypto/bn/bn_mont.c stable/8/crypto/openssl/crypto/bn/bn_mpi.c stable/8/crypto/openssl/crypto/bn/bn_mul.c stable/8/crypto/openssl/crypto/bn/bn_nist.c stable/8/crypto/openssl/crypto/bn/bn_opt.c stable/8/crypto/openssl/crypto/bn/bn_prime.c stable/8/crypto/openssl/crypto/bn/bn_prime.h stable/8/crypto/openssl/crypto/bn/bn_print.c stable/8/crypto/openssl/crypto/bn/bn_rand.c stable/8/crypto/openssl/crypto/bn/bn_recp.c stable/8/crypto/openssl/crypto/bn/bn_shift.c stable/8/crypto/openssl/crypto/bn/bn_sqr.c stable/8/crypto/openssl/crypto/bn/bn_sqrt.c stable/8/crypto/openssl/crypto/bn/bn_word.c stable/8/crypto/openssl/crypto/bn/bn_x931p.c stable/8/crypto/openssl/crypto/bn/bnspeed.c stable/8/crypto/openssl/crypto/bn/bntest.c stable/8/crypto/openssl/crypto/bn/divtest.c stable/8/crypto/openssl/crypto/bn/exp.c stable/8/crypto/openssl/crypto/bn/expspeed.c stable/8/crypto/openssl/crypto/bn/exptest.c stable/8/crypto/openssl/crypto/buffer/buf_err.c stable/8/crypto/openssl/crypto/buffer/buf_str.c stable/8/crypto/openssl/crypto/buffer/buffer.c stable/8/crypto/openssl/crypto/buffer/buffer.h stable/8/crypto/openssl/crypto/camellia/camellia.c stable/8/crypto/openssl/crypto/camellia/camellia.h stable/8/crypto/openssl/crypto/camellia/cmll_cbc.c stable/8/crypto/openssl/crypto/camellia/cmll_cfb.c stable/8/crypto/openssl/crypto/camellia/cmll_ctr.c stable/8/crypto/openssl/crypto/camellia/cmll_ecb.c stable/8/crypto/openssl/crypto/camellia/cmll_locl.h stable/8/crypto/openssl/crypto/camellia/cmll_misc.c stable/8/crypto/openssl/crypto/camellia/cmll_ofb.c stable/8/crypto/openssl/crypto/cast/c_cfb64.c stable/8/crypto/openssl/crypto/cast/c_ecb.c stable/8/crypto/openssl/crypto/cast/c_enc.c stable/8/crypto/openssl/crypto/cast/c_ofb64.c stable/8/crypto/openssl/crypto/cast/c_skey.c stable/8/crypto/openssl/crypto/cast/cast.h stable/8/crypto/openssl/crypto/cast/cast_lcl.h stable/8/crypto/openssl/crypto/cast/cast_s.h stable/8/crypto/openssl/crypto/cast/cast_spd.c stable/8/crypto/openssl/crypto/cast/castopts.c stable/8/crypto/openssl/crypto/cast/casttest.c stable/8/crypto/openssl/crypto/cms/cms.h stable/8/crypto/openssl/crypto/cms/cms_asn1.c stable/8/crypto/openssl/crypto/cms/cms_att.c stable/8/crypto/openssl/crypto/cms/cms_cd.c stable/8/crypto/openssl/crypto/cms/cms_dd.c stable/8/crypto/openssl/crypto/cms/cms_enc.c stable/8/crypto/openssl/crypto/cms/cms_env.c stable/8/crypto/openssl/crypto/cms/cms_err.c stable/8/crypto/openssl/crypto/cms/cms_ess.c stable/8/crypto/openssl/crypto/cms/cms_io.c stable/8/crypto/openssl/crypto/cms/cms_lcl.h stable/8/crypto/openssl/crypto/cms/cms_lib.c stable/8/crypto/openssl/crypto/cms/cms_sd.c stable/8/crypto/openssl/crypto/cms/cms_smime.c stable/8/crypto/openssl/crypto/comp/c_rle.c stable/8/crypto/openssl/crypto/comp/c_zlib.c stable/8/crypto/openssl/crypto/comp/comp.h stable/8/crypto/openssl/crypto/comp/comp_err.c stable/8/crypto/openssl/crypto/comp/comp_lib.c stable/8/crypto/openssl/crypto/conf/cnf_save.c stable/8/crypto/openssl/crypto/conf/conf.h stable/8/crypto/openssl/crypto/conf/conf_api.c stable/8/crypto/openssl/crypto/conf/conf_api.h stable/8/crypto/openssl/crypto/conf/conf_def.c stable/8/crypto/openssl/crypto/conf/conf_def.h stable/8/crypto/openssl/crypto/conf/conf_err.c stable/8/crypto/openssl/crypto/conf/conf_lib.c stable/8/crypto/openssl/crypto/conf/conf_mall.c stable/8/crypto/openssl/crypto/conf/conf_mod.c stable/8/crypto/openssl/crypto/conf/conf_sap.c stable/8/crypto/openssl/crypto/conf/test.c stable/8/crypto/openssl/crypto/constant_time_locl.h stable/8/crypto/openssl/crypto/constant_time_test.c stable/8/crypto/openssl/crypto/cpt_err.c stable/8/crypto/openssl/crypto/cryptlib.c stable/8/crypto/openssl/crypto/cryptlib.h stable/8/crypto/openssl/crypto/crypto.h stable/8/crypto/openssl/crypto/cversion.c stable/8/crypto/openssl/crypto/des/cbc3_enc.c stable/8/crypto/openssl/crypto/des/cbc_cksm.c stable/8/crypto/openssl/crypto/des/cbc_enc.c stable/8/crypto/openssl/crypto/des/cfb64ede.c stable/8/crypto/openssl/crypto/des/cfb64enc.c stable/8/crypto/openssl/crypto/des/cfb_enc.c stable/8/crypto/openssl/crypto/des/des.c stable/8/crypto/openssl/crypto/des/des.h stable/8/crypto/openssl/crypto/des/des_enc.c stable/8/crypto/openssl/crypto/des/des_lib.c stable/8/crypto/openssl/crypto/des/des_locl.h stable/8/crypto/openssl/crypto/des/des_old.c stable/8/crypto/openssl/crypto/des/des_old.h stable/8/crypto/openssl/crypto/des/des_old2.c stable/8/crypto/openssl/crypto/des/des_opts.c stable/8/crypto/openssl/crypto/des/des_ver.h stable/8/crypto/openssl/crypto/des/destest.c stable/8/crypto/openssl/crypto/des/ecb3_enc.c stable/8/crypto/openssl/crypto/des/ecb_enc.c stable/8/crypto/openssl/crypto/des/ede_cbcm_enc.c stable/8/crypto/openssl/crypto/des/enc_read.c stable/8/crypto/openssl/crypto/des/enc_writ.c stable/8/crypto/openssl/crypto/des/fcrypt.c stable/8/crypto/openssl/crypto/des/fcrypt_b.c stable/8/crypto/openssl/crypto/des/ncbc_enc.c stable/8/crypto/openssl/crypto/des/ofb64ede.c stable/8/crypto/openssl/crypto/des/ofb64enc.c stable/8/crypto/openssl/crypto/des/ofb_enc.c stable/8/crypto/openssl/crypto/des/pcbc_enc.c stable/8/crypto/openssl/crypto/des/qud_cksm.c stable/8/crypto/openssl/crypto/des/rand_key.c stable/8/crypto/openssl/crypto/des/read2pwd.c stable/8/crypto/openssl/crypto/des/read_pwd.c stable/8/crypto/openssl/crypto/des/rpc_des.h stable/8/crypto/openssl/crypto/des/rpc_enc.c stable/8/crypto/openssl/crypto/des/rpw.c stable/8/crypto/openssl/crypto/des/set_key.c stable/8/crypto/openssl/crypto/des/speed.c stable/8/crypto/openssl/crypto/des/spr.h stable/8/crypto/openssl/crypto/des/str2key.c stable/8/crypto/openssl/crypto/des/xcbc_enc.c stable/8/crypto/openssl/crypto/dh/dh.h stable/8/crypto/openssl/crypto/dh/dh_asn1.c stable/8/crypto/openssl/crypto/dh/dh_check.c stable/8/crypto/openssl/crypto/dh/dh_depr.c stable/8/crypto/openssl/crypto/dh/dh_err.c stable/8/crypto/openssl/crypto/dh/dh_gen.c stable/8/crypto/openssl/crypto/dh/dh_key.c stable/8/crypto/openssl/crypto/dh/dh_lib.c stable/8/crypto/openssl/crypto/dh/dhtest.c stable/8/crypto/openssl/crypto/dh/p1024.c stable/8/crypto/openssl/crypto/dh/p192.c stable/8/crypto/openssl/crypto/dh/p512.c stable/8/crypto/openssl/crypto/dsa/dsa.h stable/8/crypto/openssl/crypto/dsa/dsa_asn1.c stable/8/crypto/openssl/crypto/dsa/dsa_depr.c stable/8/crypto/openssl/crypto/dsa/dsa_err.c stable/8/crypto/openssl/crypto/dsa/dsa_gen.c stable/8/crypto/openssl/crypto/dsa/dsa_key.c stable/8/crypto/openssl/crypto/dsa/dsa_lib.c stable/8/crypto/openssl/crypto/dsa/dsa_ossl.c stable/8/crypto/openssl/crypto/dsa/dsa_sign.c stable/8/crypto/openssl/crypto/dsa/dsa_utl.c stable/8/crypto/openssl/crypto/dsa/dsa_vrf.c stable/8/crypto/openssl/crypto/dsa/dsagen.c stable/8/crypto/openssl/crypto/dsa/dsatest.c stable/8/crypto/openssl/crypto/dso/dso.h stable/8/crypto/openssl/crypto/dso/dso_dl.c stable/8/crypto/openssl/crypto/dso/dso_dlfcn.c stable/8/crypto/openssl/crypto/dso/dso_err.c stable/8/crypto/openssl/crypto/dso/dso_lib.c stable/8/crypto/openssl/crypto/dso/dso_null.c stable/8/crypto/openssl/crypto/dso/dso_openssl.c stable/8/crypto/openssl/crypto/dyn_lck.c stable/8/crypto/openssl/crypto/ebcdic.c stable/8/crypto/openssl/crypto/ebcdic.h stable/8/crypto/openssl/crypto/ec/ec.h stable/8/crypto/openssl/crypto/ec/ec2_mult.c stable/8/crypto/openssl/crypto/ec/ec2_smpl.c stable/8/crypto/openssl/crypto/ec/ec2_smpt.c stable/8/crypto/openssl/crypto/ec/ec_asn1.c stable/8/crypto/openssl/crypto/ec/ec_check.c stable/8/crypto/openssl/crypto/ec/ec_curve.c stable/8/crypto/openssl/crypto/ec/ec_cvt.c stable/8/crypto/openssl/crypto/ec/ec_err.c stable/8/crypto/openssl/crypto/ec/ec_key.c stable/8/crypto/openssl/crypto/ec/ec_lcl.h stable/8/crypto/openssl/crypto/ec/ec_lib.c stable/8/crypto/openssl/crypto/ec/ec_mult.c stable/8/crypto/openssl/crypto/ec/ec_print.c stable/8/crypto/openssl/crypto/ec/ecp_mont.c stable/8/crypto/openssl/crypto/ec/ecp_nist.c stable/8/crypto/openssl/crypto/ec/ecp_smpl.c stable/8/crypto/openssl/crypto/ec/ectest.c stable/8/crypto/openssl/crypto/ecdh/ecdh.h stable/8/crypto/openssl/crypto/ecdh/ecdhtest.c stable/8/crypto/openssl/crypto/ecdh/ech_err.c stable/8/crypto/openssl/crypto/ecdh/ech_key.c stable/8/crypto/openssl/crypto/ecdh/ech_lib.c stable/8/crypto/openssl/crypto/ecdh/ech_locl.h stable/8/crypto/openssl/crypto/ecdh/ech_ossl.c stable/8/crypto/openssl/crypto/ecdsa/Makefile stable/8/crypto/openssl/crypto/ecdsa/ecdsa.h stable/8/crypto/openssl/crypto/ecdsa/ecdsatest.c stable/8/crypto/openssl/crypto/ecdsa/ecs_asn1.c stable/8/crypto/openssl/crypto/ecdsa/ecs_err.c stable/8/crypto/openssl/crypto/ecdsa/ecs_lib.c stable/8/crypto/openssl/crypto/ecdsa/ecs_locl.h stable/8/crypto/openssl/crypto/ecdsa/ecs_ossl.c stable/8/crypto/openssl/crypto/ecdsa/ecs_sign.c stable/8/crypto/openssl/crypto/ecdsa/ecs_vrf.c stable/8/crypto/openssl/crypto/engine/eng_all.c stable/8/crypto/openssl/crypto/engine/eng_cnf.c stable/8/crypto/openssl/crypto/engine/eng_cryptodev.c stable/8/crypto/openssl/crypto/engine/eng_ctrl.c stable/8/crypto/openssl/crypto/engine/eng_dyn.c stable/8/crypto/openssl/crypto/engine/eng_err.c stable/8/crypto/openssl/crypto/engine/eng_fat.c stable/8/crypto/openssl/crypto/engine/eng_init.c stable/8/crypto/openssl/crypto/engine/eng_int.h stable/8/crypto/openssl/crypto/engine/eng_lib.c stable/8/crypto/openssl/crypto/engine/eng_list.c stable/8/crypto/openssl/crypto/engine/eng_openssl.c stable/8/crypto/openssl/crypto/engine/eng_padlock.c stable/8/crypto/openssl/crypto/engine/eng_pkey.c stable/8/crypto/openssl/crypto/engine/eng_table.c stable/8/crypto/openssl/crypto/engine/engine.h stable/8/crypto/openssl/crypto/engine/enginetest.c stable/8/crypto/openssl/crypto/engine/tb_cipher.c stable/8/crypto/openssl/crypto/engine/tb_dh.c stable/8/crypto/openssl/crypto/engine/tb_digest.c stable/8/crypto/openssl/crypto/engine/tb_dsa.c stable/8/crypto/openssl/crypto/engine/tb_ecdh.c stable/8/crypto/openssl/crypto/engine/tb_ecdsa.c stable/8/crypto/openssl/crypto/engine/tb_rand.c stable/8/crypto/openssl/crypto/engine/tb_rsa.c stable/8/crypto/openssl/crypto/engine/tb_store.c stable/8/crypto/openssl/crypto/err/err.c stable/8/crypto/openssl/crypto/err/err.h stable/8/crypto/openssl/crypto/err/err_all.c stable/8/crypto/openssl/crypto/err/err_bio.c stable/8/crypto/openssl/crypto/err/err_def.c stable/8/crypto/openssl/crypto/err/err_prn.c stable/8/crypto/openssl/crypto/err/err_str.c stable/8/crypto/openssl/crypto/evp/bio_b64.c stable/8/crypto/openssl/crypto/evp/bio_enc.c stable/8/crypto/openssl/crypto/evp/bio_md.c stable/8/crypto/openssl/crypto/evp/bio_ok.c stable/8/crypto/openssl/crypto/evp/c_all.c stable/8/crypto/openssl/crypto/evp/c_allc.c stable/8/crypto/openssl/crypto/evp/c_alld.c stable/8/crypto/openssl/crypto/evp/dig_eng.c stable/8/crypto/openssl/crypto/evp/digest.c stable/8/crypto/openssl/crypto/evp/e_aes.c stable/8/crypto/openssl/crypto/evp/e_bf.c stable/8/crypto/openssl/crypto/evp/e_camellia.c stable/8/crypto/openssl/crypto/evp/e_cast.c stable/8/crypto/openssl/crypto/evp/e_des.c stable/8/crypto/openssl/crypto/evp/e_des3.c stable/8/crypto/openssl/crypto/evp/e_dsa.c stable/8/crypto/openssl/crypto/evp/e_idea.c stable/8/crypto/openssl/crypto/evp/e_null.c stable/8/crypto/openssl/crypto/evp/e_old.c stable/8/crypto/openssl/crypto/evp/e_rc2.c stable/8/crypto/openssl/crypto/evp/e_rc4.c stable/8/crypto/openssl/crypto/evp/e_rc5.c stable/8/crypto/openssl/crypto/evp/e_seed.c stable/8/crypto/openssl/crypto/evp/e_xcbc_d.c stable/8/crypto/openssl/crypto/evp/enc_min.c stable/8/crypto/openssl/crypto/evp/encode.c stable/8/crypto/openssl/crypto/evp/evp.h stable/8/crypto/openssl/crypto/evp/evp_acnf.c stable/8/crypto/openssl/crypto/evp/evp_cnf.c stable/8/crypto/openssl/crypto/evp/evp_enc.c stable/8/crypto/openssl/crypto/evp/evp_err.c stable/8/crypto/openssl/crypto/evp/evp_key.c stable/8/crypto/openssl/crypto/evp/evp_lib.c stable/8/crypto/openssl/crypto/evp/evp_locl.h stable/8/crypto/openssl/crypto/evp/evp_pbe.c stable/8/crypto/openssl/crypto/evp/evp_pkey.c stable/8/crypto/openssl/crypto/evp/evp_test.c stable/8/crypto/openssl/crypto/evp/m_dss.c stable/8/crypto/openssl/crypto/evp/m_dss1.c stable/8/crypto/openssl/crypto/evp/m_ecdsa.c stable/8/crypto/openssl/crypto/evp/m_md2.c stable/8/crypto/openssl/crypto/evp/m_md4.c stable/8/crypto/openssl/crypto/evp/m_md5.c stable/8/crypto/openssl/crypto/evp/m_mdc2.c stable/8/crypto/openssl/crypto/evp/m_null.c stable/8/crypto/openssl/crypto/evp/m_ripemd.c stable/8/crypto/openssl/crypto/evp/m_sha.c stable/8/crypto/openssl/crypto/evp/m_sha1.c stable/8/crypto/openssl/crypto/evp/names.c stable/8/crypto/openssl/crypto/evp/openbsd_hw.c stable/8/crypto/openssl/crypto/evp/p5_crpt.c stable/8/crypto/openssl/crypto/evp/p5_crpt2.c stable/8/crypto/openssl/crypto/evp/p_dec.c stable/8/crypto/openssl/crypto/evp/p_enc.c stable/8/crypto/openssl/crypto/evp/p_lib.c stable/8/crypto/openssl/crypto/evp/p_open.c stable/8/crypto/openssl/crypto/evp/p_seal.c stable/8/crypto/openssl/crypto/evp/p_sign.c stable/8/crypto/openssl/crypto/evp/p_verify.c stable/8/crypto/openssl/crypto/ex_data.c stable/8/crypto/openssl/crypto/fips_err.c stable/8/crypto/openssl/crypto/fips_err.h stable/8/crypto/openssl/crypto/hmac/hmac.c stable/8/crypto/openssl/crypto/hmac/hmac.h stable/8/crypto/openssl/crypto/hmac/hmactest.c stable/8/crypto/openssl/crypto/idea/i_cbc.c stable/8/crypto/openssl/crypto/idea/i_cfb64.c stable/8/crypto/openssl/crypto/idea/i_ecb.c stable/8/crypto/openssl/crypto/idea/i_ofb64.c stable/8/crypto/openssl/crypto/idea/i_skey.c stable/8/crypto/openssl/crypto/idea/idea.h stable/8/crypto/openssl/crypto/idea/idea_lcl.h stable/8/crypto/openssl/crypto/idea/idea_spd.c stable/8/crypto/openssl/crypto/idea/ideatest.c stable/8/crypto/openssl/crypto/jpake/jpake.c stable/8/crypto/openssl/crypto/jpake/jpake.h stable/8/crypto/openssl/crypto/jpake/jpake_err.c stable/8/crypto/openssl/crypto/jpake/jpaketest.c stable/8/crypto/openssl/crypto/krb5/krb5_asn.c stable/8/crypto/openssl/crypto/krb5/krb5_asn.h stable/8/crypto/openssl/crypto/lhash/lh_stats.c stable/8/crypto/openssl/crypto/lhash/lh_test.c stable/8/crypto/openssl/crypto/lhash/lhash.c stable/8/crypto/openssl/crypto/lhash/lhash.h stable/8/crypto/openssl/crypto/md2/md2.c stable/8/crypto/openssl/crypto/md2/md2.h stable/8/crypto/openssl/crypto/md2/md2_dgst.c stable/8/crypto/openssl/crypto/md2/md2_one.c stable/8/crypto/openssl/crypto/md2/md2test.c stable/8/crypto/openssl/crypto/md32_common.h stable/8/crypto/openssl/crypto/md4/md4.c stable/8/crypto/openssl/crypto/md4/md4.h stable/8/crypto/openssl/crypto/md4/md4_dgst.c stable/8/crypto/openssl/crypto/md4/md4_locl.h stable/8/crypto/openssl/crypto/md4/md4_one.c stable/8/crypto/openssl/crypto/md4/md4test.c stable/8/crypto/openssl/crypto/md5/md5.c stable/8/crypto/openssl/crypto/md5/md5.h stable/8/crypto/openssl/crypto/md5/md5_dgst.c stable/8/crypto/openssl/crypto/md5/md5_locl.h stable/8/crypto/openssl/crypto/md5/md5_one.c stable/8/crypto/openssl/crypto/md5/md5test.c stable/8/crypto/openssl/crypto/mdc2/mdc2.h stable/8/crypto/openssl/crypto/mdc2/mdc2_one.c stable/8/crypto/openssl/crypto/mdc2/mdc2dgst.c stable/8/crypto/openssl/crypto/mdc2/mdc2test.c stable/8/crypto/openssl/crypto/mem.c stable/8/crypto/openssl/crypto/mem_clr.c stable/8/crypto/openssl/crypto/mem_dbg.c stable/8/crypto/openssl/crypto/o_dir.c stable/8/crypto/openssl/crypto/o_dir.h stable/8/crypto/openssl/crypto/o_dir_test.c stable/8/crypto/openssl/crypto/o_init.c stable/8/crypto/openssl/crypto/o_str.c stable/8/crypto/openssl/crypto/o_str.h stable/8/crypto/openssl/crypto/o_time.c stable/8/crypto/openssl/crypto/o_time.h stable/8/crypto/openssl/crypto/objects/o_names.c stable/8/crypto/openssl/crypto/objects/obj_dat.c stable/8/crypto/openssl/crypto/objects/obj_err.c stable/8/crypto/openssl/crypto/objects/obj_lib.c stable/8/crypto/openssl/crypto/objects/obj_mac.h stable/8/crypto/openssl/crypto/objects/objects.h stable/8/crypto/openssl/crypto/objects/objects.pl stable/8/crypto/openssl/crypto/ocsp/ocsp.h stable/8/crypto/openssl/crypto/ocsp/ocsp_asn.c stable/8/crypto/openssl/crypto/ocsp/ocsp_cl.c stable/8/crypto/openssl/crypto/ocsp/ocsp_err.c stable/8/crypto/openssl/crypto/ocsp/ocsp_ext.c stable/8/crypto/openssl/crypto/ocsp/ocsp_ht.c stable/8/crypto/openssl/crypto/ocsp/ocsp_lib.c stable/8/crypto/openssl/crypto/ocsp/ocsp_prn.c stable/8/crypto/openssl/crypto/ocsp/ocsp_srv.c stable/8/crypto/openssl/crypto/ocsp/ocsp_vfy.c stable/8/crypto/openssl/crypto/opensslv.h stable/8/crypto/openssl/crypto/ossl_typ.h stable/8/crypto/openssl/crypto/pem/pem.h stable/8/crypto/openssl/crypto/pem/pem2.h stable/8/crypto/openssl/crypto/pem/pem_all.c stable/8/crypto/openssl/crypto/pem/pem_err.c stable/8/crypto/openssl/crypto/pem/pem_info.c stable/8/crypto/openssl/crypto/pem/pem_lib.c stable/8/crypto/openssl/crypto/pem/pem_oth.c stable/8/crypto/openssl/crypto/pem/pem_pk8.c stable/8/crypto/openssl/crypto/pem/pem_pkey.c stable/8/crypto/openssl/crypto/pem/pem_seal.c stable/8/crypto/openssl/crypto/pem/pem_sign.c stable/8/crypto/openssl/crypto/pem/pem_x509.c stable/8/crypto/openssl/crypto/pem/pem_xaux.c stable/8/crypto/openssl/crypto/pkcs12/p12_add.c stable/8/crypto/openssl/crypto/pkcs12/p12_asn.c stable/8/crypto/openssl/crypto/pkcs12/p12_attr.c stable/8/crypto/openssl/crypto/pkcs12/p12_crpt.c stable/8/crypto/openssl/crypto/pkcs12/p12_crt.c stable/8/crypto/openssl/crypto/pkcs12/p12_decr.c stable/8/crypto/openssl/crypto/pkcs12/p12_init.c stable/8/crypto/openssl/crypto/pkcs12/p12_key.c stable/8/crypto/openssl/crypto/pkcs12/p12_kiss.c stable/8/crypto/openssl/crypto/pkcs12/p12_mutl.c stable/8/crypto/openssl/crypto/pkcs12/p12_npas.c stable/8/crypto/openssl/crypto/pkcs12/p12_p8d.c stable/8/crypto/openssl/crypto/pkcs12/p12_p8e.c stable/8/crypto/openssl/crypto/pkcs12/p12_utl.c stable/8/crypto/openssl/crypto/pkcs12/pk12err.c stable/8/crypto/openssl/crypto/pkcs12/pkcs12.h stable/8/crypto/openssl/crypto/pkcs7/pk7_asn1.c stable/8/crypto/openssl/crypto/pkcs7/pk7_attr.c stable/8/crypto/openssl/crypto/pkcs7/pk7_dgst.c stable/8/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/8/crypto/openssl/crypto/pkcs7/pk7_enc.c stable/8/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/8/crypto/openssl/crypto/pkcs7/pk7_mime.c stable/8/crypto/openssl/crypto/pkcs7/pk7_smime.c stable/8/crypto/openssl/crypto/pkcs7/pkcs7.h stable/8/crypto/openssl/crypto/pkcs7/pkcs7err.c stable/8/crypto/openssl/crypto/pqueue/pq_compat.h stable/8/crypto/openssl/crypto/pqueue/pq_test.c stable/8/crypto/openssl/crypto/pqueue/pqueue.c stable/8/crypto/openssl/crypto/pqueue/pqueue.h stable/8/crypto/openssl/crypto/rand/md_rand.c stable/8/crypto/openssl/crypto/rand/rand.h stable/8/crypto/openssl/crypto/rand/rand_egd.c stable/8/crypto/openssl/crypto/rand/rand_eng.c stable/8/crypto/openssl/crypto/rand/rand_err.c stable/8/crypto/openssl/crypto/rand/rand_lcl.h stable/8/crypto/openssl/crypto/rand/rand_lib.c stable/8/crypto/openssl/crypto/rand/rand_nw.c stable/8/crypto/openssl/crypto/rand/rand_os2.c stable/8/crypto/openssl/crypto/rand/rand_unix.c stable/8/crypto/openssl/crypto/rand/rand_vms.c stable/8/crypto/openssl/crypto/rand/rand_win.c stable/8/crypto/openssl/crypto/rand/randfile.c stable/8/crypto/openssl/crypto/rand/randtest.c stable/8/crypto/openssl/crypto/rc2/rc2.h stable/8/crypto/openssl/crypto/rc2/rc2_cbc.c stable/8/crypto/openssl/crypto/rc2/rc2_ecb.c stable/8/crypto/openssl/crypto/rc2/rc2_locl.h stable/8/crypto/openssl/crypto/rc2/rc2_skey.c stable/8/crypto/openssl/crypto/rc2/rc2cfb64.c stable/8/crypto/openssl/crypto/rc2/rc2ofb64.c stable/8/crypto/openssl/crypto/rc2/rc2speed.c stable/8/crypto/openssl/crypto/rc2/rc2test.c stable/8/crypto/openssl/crypto/rc2/tab.c stable/8/crypto/openssl/crypto/rc4/rc4.c stable/8/crypto/openssl/crypto/rc4/rc4.h stable/8/crypto/openssl/crypto/rc4/rc4_enc.c stable/8/crypto/openssl/crypto/rc4/rc4_fblk.c stable/8/crypto/openssl/crypto/rc4/rc4_locl.h stable/8/crypto/openssl/crypto/rc4/rc4_skey.c stable/8/crypto/openssl/crypto/rc4/rc4speed.c stable/8/crypto/openssl/crypto/rc4/rc4test.c stable/8/crypto/openssl/crypto/rc5/rc5.h stable/8/crypto/openssl/crypto/rc5/rc5_ecb.c stable/8/crypto/openssl/crypto/rc5/rc5_enc.c stable/8/crypto/openssl/crypto/rc5/rc5_locl.h stable/8/crypto/openssl/crypto/rc5/rc5_skey.c stable/8/crypto/openssl/crypto/rc5/rc5cfb64.c stable/8/crypto/openssl/crypto/rc5/rc5ofb64.c stable/8/crypto/openssl/crypto/rc5/rc5speed.c stable/8/crypto/openssl/crypto/rc5/rc5test.c stable/8/crypto/openssl/crypto/ripemd/ripemd.h stable/8/crypto/openssl/crypto/ripemd/rmd160.c stable/8/crypto/openssl/crypto/ripemd/rmd_dgst.c stable/8/crypto/openssl/crypto/ripemd/rmd_locl.h stable/8/crypto/openssl/crypto/ripemd/rmd_one.c stable/8/crypto/openssl/crypto/ripemd/rmdconst.h stable/8/crypto/openssl/crypto/ripemd/rmdtest.c stable/8/crypto/openssl/crypto/rsa/rsa.h stable/8/crypto/openssl/crypto/rsa/rsa_asn1.c stable/8/crypto/openssl/crypto/rsa/rsa_chk.c stable/8/crypto/openssl/crypto/rsa/rsa_depr.c stable/8/crypto/openssl/crypto/rsa/rsa_eay.c stable/8/crypto/openssl/crypto/rsa/rsa_eng.c stable/8/crypto/openssl/crypto/rsa/rsa_err.c stable/8/crypto/openssl/crypto/rsa/rsa_gen.c stable/8/crypto/openssl/crypto/rsa/rsa_lib.c stable/8/crypto/openssl/crypto/rsa/rsa_none.c stable/8/crypto/openssl/crypto/rsa/rsa_null.c stable/8/crypto/openssl/crypto/rsa/rsa_oaep.c stable/8/crypto/openssl/crypto/rsa/rsa_pk1.c stable/8/crypto/openssl/crypto/rsa/rsa_pss.c stable/8/crypto/openssl/crypto/rsa/rsa_saos.c stable/8/crypto/openssl/crypto/rsa/rsa_sign.c stable/8/crypto/openssl/crypto/rsa/rsa_ssl.c stable/8/crypto/openssl/crypto/rsa/rsa_test.c stable/8/crypto/openssl/crypto/rsa/rsa_x931.c stable/8/crypto/openssl/crypto/rsa/rsa_x931g.c stable/8/crypto/openssl/crypto/seed/seed.c stable/8/crypto/openssl/crypto/seed/seed.h stable/8/crypto/openssl/crypto/seed/seed_cbc.c stable/8/crypto/openssl/crypto/seed/seed_cfb.c stable/8/crypto/openssl/crypto/seed/seed_ecb.c stable/8/crypto/openssl/crypto/seed/seed_locl.h stable/8/crypto/openssl/crypto/seed/seed_ofb.c stable/8/crypto/openssl/crypto/sha/sha.c stable/8/crypto/openssl/crypto/sha/sha.h stable/8/crypto/openssl/crypto/sha/sha1.c stable/8/crypto/openssl/crypto/sha/sha1_one.c stable/8/crypto/openssl/crypto/sha/sha1dgst.c stable/8/crypto/openssl/crypto/sha/sha1test.c stable/8/crypto/openssl/crypto/sha/sha256.c stable/8/crypto/openssl/crypto/sha/sha256t.c stable/8/crypto/openssl/crypto/sha/sha512.c stable/8/crypto/openssl/crypto/sha/sha512t.c stable/8/crypto/openssl/crypto/sha/sha_dgst.c stable/8/crypto/openssl/crypto/sha/sha_locl.h stable/8/crypto/openssl/crypto/sha/sha_one.c stable/8/crypto/openssl/crypto/sha/shatest.c stable/8/crypto/openssl/crypto/stack/safestack.h stable/8/crypto/openssl/crypto/stack/stack.c stable/8/crypto/openssl/crypto/stack/stack.h stable/8/crypto/openssl/crypto/store/store.h stable/8/crypto/openssl/crypto/store/str_err.c stable/8/crypto/openssl/crypto/store/str_lib.c stable/8/crypto/openssl/crypto/store/str_locl.h stable/8/crypto/openssl/crypto/store/str_mem.c stable/8/crypto/openssl/crypto/store/str_meth.c stable/8/crypto/openssl/crypto/symhacks.h stable/8/crypto/openssl/crypto/threads/mttest.c stable/8/crypto/openssl/crypto/threads/th-lock.c stable/8/crypto/openssl/crypto/tmdiff.c stable/8/crypto/openssl/crypto/tmdiff.h stable/8/crypto/openssl/crypto/txt_db/txt_db.c stable/8/crypto/openssl/crypto/txt_db/txt_db.h stable/8/crypto/openssl/crypto/ui/ui.h stable/8/crypto/openssl/crypto/ui/ui_compat.c stable/8/crypto/openssl/crypto/ui/ui_compat.h stable/8/crypto/openssl/crypto/ui/ui_err.c stable/8/crypto/openssl/crypto/ui/ui_lib.c stable/8/crypto/openssl/crypto/ui/ui_locl.h stable/8/crypto/openssl/crypto/ui/ui_openssl.c stable/8/crypto/openssl/crypto/ui/ui_util.c stable/8/crypto/openssl/crypto/uid.c stable/8/crypto/openssl/crypto/x509/by_dir.c stable/8/crypto/openssl/crypto/x509/by_file.c stable/8/crypto/openssl/crypto/x509/x509.h stable/8/crypto/openssl/crypto/x509/x509_att.c stable/8/crypto/openssl/crypto/x509/x509_cmp.c stable/8/crypto/openssl/crypto/x509/x509_d2.c stable/8/crypto/openssl/crypto/x509/x509_def.c stable/8/crypto/openssl/crypto/x509/x509_err.c stable/8/crypto/openssl/crypto/x509/x509_ext.c stable/8/crypto/openssl/crypto/x509/x509_lu.c stable/8/crypto/openssl/crypto/x509/x509_obj.c stable/8/crypto/openssl/crypto/x509/x509_r2x.c stable/8/crypto/openssl/crypto/x509/x509_req.c stable/8/crypto/openssl/crypto/x509/x509_set.c stable/8/crypto/openssl/crypto/x509/x509_trs.c stable/8/crypto/openssl/crypto/x509/x509_txt.c stable/8/crypto/openssl/crypto/x509/x509_v3.c stable/8/crypto/openssl/crypto/x509/x509_vfy.c stable/8/crypto/openssl/crypto/x509/x509_vfy.h stable/8/crypto/openssl/crypto/x509/x509_vpm.c stable/8/crypto/openssl/crypto/x509/x509cset.c stable/8/crypto/openssl/crypto/x509/x509name.c stable/8/crypto/openssl/crypto/x509/x509rset.c stable/8/crypto/openssl/crypto/x509/x509spki.c stable/8/crypto/openssl/crypto/x509/x509type.c stable/8/crypto/openssl/crypto/x509/x_all.c stable/8/crypto/openssl/crypto/x509v3/ext_dat.h stable/8/crypto/openssl/crypto/x509v3/pcy_cache.c stable/8/crypto/openssl/crypto/x509v3/pcy_data.c stable/8/crypto/openssl/crypto/x509v3/pcy_int.h stable/8/crypto/openssl/crypto/x509v3/pcy_lib.c stable/8/crypto/openssl/crypto/x509v3/pcy_map.c stable/8/crypto/openssl/crypto/x509v3/pcy_node.c stable/8/crypto/openssl/crypto/x509v3/pcy_tree.c stable/8/crypto/openssl/crypto/x509v3/tabtest.c stable/8/crypto/openssl/crypto/x509v3/v3_addr.c stable/8/crypto/openssl/crypto/x509v3/v3_akey.c stable/8/crypto/openssl/crypto/x509v3/v3_akeya.c stable/8/crypto/openssl/crypto/x509v3/v3_alt.c stable/8/crypto/openssl/crypto/x509v3/v3_asid.c stable/8/crypto/openssl/crypto/x509v3/v3_bcons.c stable/8/crypto/openssl/crypto/x509v3/v3_bitst.c stable/8/crypto/openssl/crypto/x509v3/v3_conf.c stable/8/crypto/openssl/crypto/x509v3/v3_cpols.c stable/8/crypto/openssl/crypto/x509v3/v3_crld.c stable/8/crypto/openssl/crypto/x509v3/v3_enum.c stable/8/crypto/openssl/crypto/x509v3/v3_extku.c stable/8/crypto/openssl/crypto/x509v3/v3_genn.c stable/8/crypto/openssl/crypto/x509v3/v3_ia5.c stable/8/crypto/openssl/crypto/x509v3/v3_info.c stable/8/crypto/openssl/crypto/x509v3/v3_int.c stable/8/crypto/openssl/crypto/x509v3/v3_lib.c stable/8/crypto/openssl/crypto/x509v3/v3_ncons.c stable/8/crypto/openssl/crypto/x509v3/v3_ocsp.c stable/8/crypto/openssl/crypto/x509v3/v3_pci.c stable/8/crypto/openssl/crypto/x509v3/v3_pcia.c stable/8/crypto/openssl/crypto/x509v3/v3_pcons.c stable/8/crypto/openssl/crypto/x509v3/v3_pku.c stable/8/crypto/openssl/crypto/x509v3/v3_pmaps.c stable/8/crypto/openssl/crypto/x509v3/v3_prn.c stable/8/crypto/openssl/crypto/x509v3/v3_purp.c stable/8/crypto/openssl/crypto/x509v3/v3_skey.c stable/8/crypto/openssl/crypto/x509v3/v3_sxnet.c stable/8/crypto/openssl/crypto/x509v3/v3_utl.c stable/8/crypto/openssl/crypto/x509v3/v3conf.c stable/8/crypto/openssl/crypto/x509v3/v3err.c stable/8/crypto/openssl/crypto/x509v3/v3prin.c stable/8/crypto/openssl/crypto/x509v3/x509v3.h stable/8/crypto/openssl/demos/asn1/ocsp.c stable/8/crypto/openssl/demos/b64.c stable/8/crypto/openssl/demos/bio/saccept.c stable/8/crypto/openssl/demos/bio/sconnect.c stable/8/crypto/openssl/demos/easy_tls/easy-tls.c stable/8/crypto/openssl/demos/easy_tls/easy-tls.h stable/8/crypto/openssl/demos/easy_tls/test.c stable/8/crypto/openssl/demos/easy_tls/test.h stable/8/crypto/openssl/demos/engines/cluster_labs/cluster_labs.h stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.c stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.c stable/8/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.h stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca.c stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.c stable/8/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.h stable/8/crypto/openssl/demos/engines/ibmca/ica_openssl_api.h stable/8/crypto/openssl/demos/engines/zencod/hw_zencod.c stable/8/crypto/openssl/demos/engines/zencod/hw_zencod.h stable/8/crypto/openssl/demos/engines/zencod/hw_zencod_err.c stable/8/crypto/openssl/demos/engines/zencod/hw_zencod_err.h stable/8/crypto/openssl/demos/jpake/jpakedemo.c stable/8/crypto/openssl/demos/pkcs12/pkread.c stable/8/crypto/openssl/demos/pkcs12/pkwrite.c stable/8/crypto/openssl/demos/prime/prime.c stable/8/crypto/openssl/demos/selfsign.c stable/8/crypto/openssl/demos/sign/sign.c stable/8/crypto/openssl/demos/spkigen.c stable/8/crypto/openssl/demos/state_machine/state_machine.c stable/8/crypto/openssl/demos/tunala/breakage.c stable/8/crypto/openssl/demos/tunala/buffer.c stable/8/crypto/openssl/demos/tunala/cb.c stable/8/crypto/openssl/demos/tunala/ip.c stable/8/crypto/openssl/demos/tunala/sm.c stable/8/crypto/openssl/demos/tunala/tunala.c stable/8/crypto/openssl/demos/tunala/tunala.h stable/8/crypto/openssl/demos/x509/mkcert.c stable/8/crypto/openssl/demos/x509/mkreq.c stable/8/crypto/openssl/doc/apps/ciphers.pod stable/8/crypto/openssl/doc/crypto/d2i_X509.pod stable/8/crypto/openssl/e_os.h stable/8/crypto/openssl/e_os2.h stable/8/crypto/openssl/engines/e_4758cca.c stable/8/crypto/openssl/engines/e_4758cca_err.c stable/8/crypto/openssl/engines/e_4758cca_err.h stable/8/crypto/openssl/engines/e_aep.c stable/8/crypto/openssl/engines/e_aep_err.c stable/8/crypto/openssl/engines/e_aep_err.h stable/8/crypto/openssl/engines/e_atalla.c stable/8/crypto/openssl/engines/e_atalla_err.c stable/8/crypto/openssl/engines/e_atalla_err.h stable/8/crypto/openssl/engines/e_capi.c stable/8/crypto/openssl/engines/e_capi_err.c stable/8/crypto/openssl/engines/e_capi_err.h stable/8/crypto/openssl/engines/e_chil.c stable/8/crypto/openssl/engines/e_chil_err.c stable/8/crypto/openssl/engines/e_chil_err.h stable/8/crypto/openssl/engines/e_cswift.c stable/8/crypto/openssl/engines/e_cswift_err.c stable/8/crypto/openssl/engines/e_cswift_err.h stable/8/crypto/openssl/engines/e_gmp.c stable/8/crypto/openssl/engines/e_gmp_err.c stable/8/crypto/openssl/engines/e_gmp_err.h stable/8/crypto/openssl/engines/e_nuron.c stable/8/crypto/openssl/engines/e_nuron_err.c stable/8/crypto/openssl/engines/e_nuron_err.h stable/8/crypto/openssl/engines/e_sureware.c stable/8/crypto/openssl/engines/e_sureware_err.c stable/8/crypto/openssl/engines/e_sureware_err.h stable/8/crypto/openssl/engines/e_ubsec.c stable/8/crypto/openssl/engines/e_ubsec_err.c stable/8/crypto/openssl/engines/e_ubsec_err.h stable/8/crypto/openssl/engines/vendor_defns/aep.h stable/8/crypto/openssl/engines/vendor_defns/atalla.h stable/8/crypto/openssl/engines/vendor_defns/cswift.h stable/8/crypto/openssl/engines/vendor_defns/hw_4758_cca.h stable/8/crypto/openssl/engines/vendor_defns/hw_ubsec.h stable/8/crypto/openssl/engines/vendor_defns/hwcryptohook.h stable/8/crypto/openssl/engines/vendor_defns/sureware.h stable/8/crypto/openssl/fips/aes/fips_aes_selftest.c stable/8/crypto/openssl/fips/aes/fips_aesavs.c stable/8/crypto/openssl/fips/des/fips_des_selftest.c stable/8/crypto/openssl/fips/des/fips_desmovs.c stable/8/crypto/openssl/fips/dh/dh_gen.c stable/8/crypto/openssl/fips/dh/fips_dh_check.c stable/8/crypto/openssl/fips/dh/fips_dh_gen.c stable/8/crypto/openssl/fips/dh/fips_dh_key.c stable/8/crypto/openssl/fips/dh/fips_dh_lib.c stable/8/crypto/openssl/fips/dsa/fips_dsa_gen.c stable/8/crypto/openssl/fips/dsa/fips_dsa_key.c stable/8/crypto/openssl/fips/dsa/fips_dsa_lib.c stable/8/crypto/openssl/fips/dsa/fips_dsa_ossl.c stable/8/crypto/openssl/fips/dsa/fips_dsa_selftest.c stable/8/crypto/openssl/fips/dsa/fips_dsa_sign.c stable/8/crypto/openssl/fips/dsa/fips_dsatest.c stable/8/crypto/openssl/fips/dsa/fips_dssvs.c stable/8/crypto/openssl/fips/fips.c stable/8/crypto/openssl/fips/fips.h stable/8/crypto/openssl/fips/fips_canister.c stable/8/crypto/openssl/fips/fips_locl.h stable/8/crypto/openssl/fips/fips_premain.c stable/8/crypto/openssl/fips/fips_test_suite.c stable/8/crypto/openssl/fips/fips_utl.h stable/8/crypto/openssl/fips/hmac/fips_hmac.c stable/8/crypto/openssl/fips/hmac/fips_hmac_selftest.c stable/8/crypto/openssl/fips/hmac/fips_hmactest.c stable/8/crypto/openssl/fips/rand/fips_rand.c stable/8/crypto/openssl/fips/rand/fips_rand.h stable/8/crypto/openssl/fips/rand/fips_rand_selftest.c stable/8/crypto/openssl/fips/rand/fips_randtest.c stable/8/crypto/openssl/fips/rand/fips_rngvs.c stable/8/crypto/openssl/fips/rsa/fips_rsa_eay.c stable/8/crypto/openssl/fips/rsa/fips_rsa_gen.c stable/8/crypto/openssl/fips/rsa/fips_rsa_lib.c stable/8/crypto/openssl/fips/rsa/fips_rsa_selftest.c stable/8/crypto/openssl/fips/rsa/fips_rsa_sign.c stable/8/crypto/openssl/fips/rsa/fips_rsa_x931g.c stable/8/crypto/openssl/fips/rsa/fips_rsagtest.c stable/8/crypto/openssl/fips/rsa/fips_rsastest.c stable/8/crypto/openssl/fips/rsa/fips_rsavtest.c stable/8/crypto/openssl/fips/sha/fips_sha1_selftest.c stable/8/crypto/openssl/fips/sha/fips_shatest.c stable/8/crypto/openssl/fips/sha/fips_standalone_sha1.c stable/8/crypto/openssl/openssl.spec stable/8/crypto/openssl/ssl/bio_ssl.c stable/8/crypto/openssl/ssl/d1_both.c stable/8/crypto/openssl/ssl/d1_clnt.c stable/8/crypto/openssl/ssl/d1_enc.c stable/8/crypto/openssl/ssl/d1_lib.c stable/8/crypto/openssl/ssl/d1_meth.c stable/8/crypto/openssl/ssl/d1_pkt.c stable/8/crypto/openssl/ssl/d1_srvr.c stable/8/crypto/openssl/ssl/dtls1.h stable/8/crypto/openssl/ssl/kssl.c stable/8/crypto/openssl/ssl/kssl.h stable/8/crypto/openssl/ssl/kssl_lcl.h stable/8/crypto/openssl/ssl/s23_clnt.c stable/8/crypto/openssl/ssl/s23_lib.c stable/8/crypto/openssl/ssl/s23_meth.c stable/8/crypto/openssl/ssl/s23_pkt.c stable/8/crypto/openssl/ssl/s23_srvr.c stable/8/crypto/openssl/ssl/s2_clnt.c stable/8/crypto/openssl/ssl/s2_enc.c stable/8/crypto/openssl/ssl/s2_lib.c stable/8/crypto/openssl/ssl/s2_meth.c stable/8/crypto/openssl/ssl/s2_pkt.c stable/8/crypto/openssl/ssl/s2_srvr.c stable/8/crypto/openssl/ssl/s3_both.c stable/8/crypto/openssl/ssl/s3_cbc.c stable/8/crypto/openssl/ssl/s3_clnt.c stable/8/crypto/openssl/ssl/s3_enc.c stable/8/crypto/openssl/ssl/s3_lib.c stable/8/crypto/openssl/ssl/s3_meth.c stable/8/crypto/openssl/ssl/s3_pkt.c stable/8/crypto/openssl/ssl/s3_srvr.c stable/8/crypto/openssl/ssl/ssl.h stable/8/crypto/openssl/ssl/ssl2.h stable/8/crypto/openssl/ssl/ssl23.h stable/8/crypto/openssl/ssl/ssl3.h stable/8/crypto/openssl/ssl/ssl_algs.c stable/8/crypto/openssl/ssl/ssl_asn1.c stable/8/crypto/openssl/ssl/ssl_cert.c stable/8/crypto/openssl/ssl/ssl_ciph.c stable/8/crypto/openssl/ssl/ssl_err.c stable/8/crypto/openssl/ssl/ssl_err2.c stable/8/crypto/openssl/ssl/ssl_lib.c stable/8/crypto/openssl/ssl/ssl_locl.h stable/8/crypto/openssl/ssl/ssl_rsa.c stable/8/crypto/openssl/ssl/ssl_sess.c stable/8/crypto/openssl/ssl/ssl_stat.c stable/8/crypto/openssl/ssl/ssl_task.c stable/8/crypto/openssl/ssl/ssl_txt.c stable/8/crypto/openssl/ssl/ssltest.c stable/8/crypto/openssl/ssl/t1_clnt.c stable/8/crypto/openssl/ssl/t1_enc.c stable/8/crypto/openssl/ssl/t1_lib.c stable/8/crypto/openssl/ssl/t1_meth.c stable/8/crypto/openssl/ssl/t1_reneg.c stable/8/crypto/openssl/ssl/t1_srvr.c stable/8/crypto/openssl/ssl/tls1.h stable/8/crypto/openssl/test/dummytest.c stable/8/crypto/openssl/test/igetest.c stable/8/crypto/openssl/test/methtest.c stable/8/crypto/openssl/test/r160test.c stable/8/crypto/openssl/util/ck_errf.pl stable/8/crypto/openssl/util/mkerr.pl stable/8/secure/lib/libcrypto/Makefile.inc stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/8/secure/lib/libcrypto/man/BIO_f_md.3 stable/8/secure/lib/libcrypto/man/BIO_f_null.3 stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/8/secure/lib/libcrypto/man/BIO_find_type.3 stable/8/secure/lib/libcrypto/man/BIO_new.3 stable/8/secure/lib/libcrypto/man/BIO_push.3 stable/8/secure/lib/libcrypto/man/BIO_read.3 stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 stable/8/secure/lib/libcrypto/man/BIO_s_file.3 stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 stable/8/secure/lib/libcrypto/man/BIO_s_null.3 stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 stable/8/secure/lib/libcrypto/man/BN_add.3 stable/8/secure/lib/libcrypto/man/BN_add_word.3 stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 stable/8/secure/lib/libcrypto/man/BN_cmp.3 stable/8/secure/lib/libcrypto/man/BN_copy.3 stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/8/secure/lib/libcrypto/man/BN_new.3 stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 stable/8/secure/lib/libcrypto/man/BN_rand.3 stable/8/secure/lib/libcrypto/man/BN_set_bit.3 stable/8/secure/lib/libcrypto/man/BN_swap.3 stable/8/secure/lib/libcrypto/man/BN_zero.3 stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/8/secure/lib/libcrypto/man/DH_generate_key.3 stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DH_new.3 stable/8/secure/lib/libcrypto/man/DH_set_method.3 stable/8/secure/lib/libcrypto/man/DH_size.3 stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DSA_new.3 stable/8/secure/lib/libcrypto/man/DSA_set_method.3 stable/8/secure/lib/libcrypto/man/DSA_sign.3 stable/8/secure/lib/libcrypto/man/DSA_size.3 stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 stable/8/secure/lib/libcrypto/man/ERR_error_string.3 stable/8/secure/lib/libcrypto/man/ERR_get_error.3 stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 stable/8/secure/lib/libcrypto/man/ERR_put_error.3 stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/8/secure/lib/libcrypto/man/PKCS12_create.3 stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 stable/8/secure/lib/libcrypto/man/RAND_add.3 stable/8/secure/lib/libcrypto/man/RAND_bytes.3 stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 stable/8/secure/lib/libcrypto/man/RAND_egd.3 stable/8/secure/lib/libcrypto/man/RAND_load_file.3 stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/8/secure/lib/libcrypto/man/RSA_check_key.3 stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/RSA_new.3 stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/8/secure/lib/libcrypto/man/RSA_print.3 stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_set_method.3 stable/8/secure/lib/libcrypto/man/RSA_sign.3 stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/8/secure/lib/libcrypto/man/RSA_size.3 stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/8/secure/lib/libcrypto/man/X509_new.3 stable/8/secure/lib/libcrypto/man/bio.3 stable/8/secure/lib/libcrypto/man/blowfish.3 stable/8/secure/lib/libcrypto/man/bn.3 stable/8/secure/lib/libcrypto/man/bn_internal.3 stable/8/secure/lib/libcrypto/man/buffer.3 stable/8/secure/lib/libcrypto/man/crypto.3 stable/8/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/8/secure/lib/libcrypto/man/d2i_DHparams.3 stable/8/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/8/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_X509.3 stable/8/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/8/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/8/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/8/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/8/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/8/secure/lib/libcrypto/man/des.3 stable/8/secure/lib/libcrypto/man/dh.3 stable/8/secure/lib/libcrypto/man/dsa.3 stable/8/secure/lib/libcrypto/man/ecdsa.3 stable/8/secure/lib/libcrypto/man/engine.3 stable/8/secure/lib/libcrypto/man/err.3 stable/8/secure/lib/libcrypto/man/evp.3 stable/8/secure/lib/libcrypto/man/hmac.3 stable/8/secure/lib/libcrypto/man/lh_stats.3 stable/8/secure/lib/libcrypto/man/lhash.3 stable/8/secure/lib/libcrypto/man/md5.3 stable/8/secure/lib/libcrypto/man/mdc2.3 stable/8/secure/lib/libcrypto/man/pem.3 stable/8/secure/lib/libcrypto/man/rand.3 stable/8/secure/lib/libcrypto/man/rc4.3 stable/8/secure/lib/libcrypto/man/ripemd.3 stable/8/secure/lib/libcrypto/man/rsa.3 stable/8/secure/lib/libcrypto/man/sha.3 stable/8/secure/lib/libcrypto/man/threads.3 stable/8/secure/lib/libcrypto/man/ui.3 stable/8/secure/lib/libcrypto/man/ui_compat.3 stable/8/secure/lib/libcrypto/man/x509.3 stable/8/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/8/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/8/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/8/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_free.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/8/secure/lib/libssl/man/SSL_CTX_new.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/8/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/8/secure/lib/libssl/man/SSL_SESSION_free.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/8/secure/lib/libssl/man/SSL_accept.3 stable/8/secure/lib/libssl/man/SSL_alert_type_string.3 stable/8/secure/lib/libssl/man/SSL_clear.3 stable/8/secure/lib/libssl/man/SSL_connect.3 stable/8/secure/lib/libssl/man/SSL_do_handshake.3 stable/8/secure/lib/libssl/man/SSL_free.3 stable/8/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/8/secure/lib/libssl/man/SSL_get_ciphers.3 stable/8/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/8/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/8/secure/lib/libssl/man/SSL_get_error.3 stable/8/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/8/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_get_fd.3 stable/8/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/8/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/8/secure/lib/libssl/man/SSL_get_rbio.3 stable/8/secure/lib/libssl/man/SSL_get_session.3 stable/8/secure/lib/libssl/man/SSL_get_verify_result.3 stable/8/secure/lib/libssl/man/SSL_get_version.3 stable/8/secure/lib/libssl/man/SSL_library_init.3 stable/8/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/8/secure/lib/libssl/man/SSL_new.3 stable/8/secure/lib/libssl/man/SSL_pending.3 stable/8/secure/lib/libssl/man/SSL_read.3 stable/8/secure/lib/libssl/man/SSL_rstate_string.3 stable/8/secure/lib/libssl/man/SSL_session_reused.3 stable/8/secure/lib/libssl/man/SSL_set_bio.3 stable/8/secure/lib/libssl/man/SSL_set_connect_state.3 stable/8/secure/lib/libssl/man/SSL_set_fd.3 stable/8/secure/lib/libssl/man/SSL_set_session.3 stable/8/secure/lib/libssl/man/SSL_set_shutdown.3 stable/8/secure/lib/libssl/man/SSL_set_verify_result.3 stable/8/secure/lib/libssl/man/SSL_shutdown.3 stable/8/secure/lib/libssl/man/SSL_state_string.3 stable/8/secure/lib/libssl/man/SSL_want.3 stable/8/secure/lib/libssl/man/SSL_write.3 stable/8/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/8/secure/lib/libssl/man/ssl.3 stable/8/secure/usr.bin/openssl/man/CA.pl.1 stable/8/secure/usr.bin/openssl/man/asn1parse.1 stable/8/secure/usr.bin/openssl/man/ca.1 stable/8/secure/usr.bin/openssl/man/ciphers.1 stable/8/secure/usr.bin/openssl/man/crl.1 stable/8/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/8/secure/usr.bin/openssl/man/dgst.1 stable/8/secure/usr.bin/openssl/man/dhparam.1 stable/8/secure/usr.bin/openssl/man/dsa.1 stable/8/secure/usr.bin/openssl/man/dsaparam.1 stable/8/secure/usr.bin/openssl/man/ec.1 stable/8/secure/usr.bin/openssl/man/ecparam.1 stable/8/secure/usr.bin/openssl/man/enc.1 stable/8/secure/usr.bin/openssl/man/errstr.1 stable/8/secure/usr.bin/openssl/man/gendsa.1 stable/8/secure/usr.bin/openssl/man/genrsa.1 stable/8/secure/usr.bin/openssl/man/nseq.1 stable/8/secure/usr.bin/openssl/man/ocsp.1 stable/8/secure/usr.bin/openssl/man/openssl.1 stable/8/secure/usr.bin/openssl/man/passwd.1 stable/8/secure/usr.bin/openssl/man/pkcs12.1 stable/8/secure/usr.bin/openssl/man/pkcs7.1 stable/8/secure/usr.bin/openssl/man/pkcs8.1 stable/8/secure/usr.bin/openssl/man/rand.1 stable/8/secure/usr.bin/openssl/man/req.1 stable/8/secure/usr.bin/openssl/man/rsa.1 stable/8/secure/usr.bin/openssl/man/rsautl.1 stable/8/secure/usr.bin/openssl/man/s_client.1 stable/8/secure/usr.bin/openssl/man/s_server.1 stable/8/secure/usr.bin/openssl/man/s_time.1 stable/8/secure/usr.bin/openssl/man/sess_id.1 stable/8/secure/usr.bin/openssl/man/smime.1 stable/8/secure/usr.bin/openssl/man/speed.1 stable/8/secure/usr.bin/openssl/man/spkac.1 stable/8/secure/usr.bin/openssl/man/verify.1 stable/8/secure/usr.bin/openssl/man/version.1 stable/8/secure/usr.bin/openssl/man/x509.1 stable/8/secure/usr.bin/openssl/man/x509v3_config.1 Directory Properties: stable/8/crypto/openssl/ (props changed) Changes in other areas also in this revision: Added: stable/9/crypto/openssl/util/indent.pro - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/indent.pro stable/9/crypto/openssl/util/openssl-format-source - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/openssl-format-source stable/9/crypto/openssl/util/su-filter.pl - copied unchanged from r280290, vendor-crypto/openssl/dist-0.9.8/util/su-filter.pl Modified: stable/9/crypto/openssl/CHANGES stable/9/crypto/openssl/Makefile stable/9/crypto/openssl/NEWS stable/9/crypto/openssl/README stable/9/crypto/openssl/apps/app_rand.c stable/9/crypto/openssl/apps/apps.c stable/9/crypto/openssl/apps/apps.h stable/9/crypto/openssl/apps/asn1pars.c stable/9/crypto/openssl/apps/ca.c stable/9/crypto/openssl/apps/ciphers.c stable/9/crypto/openssl/apps/cms.c stable/9/crypto/openssl/apps/crl.c stable/9/crypto/openssl/apps/crl2p7.c stable/9/crypto/openssl/apps/dgst.c stable/9/crypto/openssl/apps/dh.c stable/9/crypto/openssl/apps/dhparam.c stable/9/crypto/openssl/apps/dsa.c stable/9/crypto/openssl/apps/dsaparam.c stable/9/crypto/openssl/apps/ec.c stable/9/crypto/openssl/apps/ecparam.c stable/9/crypto/openssl/apps/enc.c stable/9/crypto/openssl/apps/engine.c stable/9/crypto/openssl/apps/errstr.c stable/9/crypto/openssl/apps/gendh.c stable/9/crypto/openssl/apps/gendsa.c stable/9/crypto/openssl/apps/genrsa.c stable/9/crypto/openssl/apps/nseq.c stable/9/crypto/openssl/apps/ocsp.c stable/9/crypto/openssl/apps/openssl.c stable/9/crypto/openssl/apps/passwd.c stable/9/crypto/openssl/apps/pkcs12.c stable/9/crypto/openssl/apps/pkcs7.c stable/9/crypto/openssl/apps/pkcs8.c stable/9/crypto/openssl/apps/prime.c stable/9/crypto/openssl/apps/progs.h stable/9/crypto/openssl/apps/rand.c stable/9/crypto/openssl/apps/req.c stable/9/crypto/openssl/apps/rsa.c stable/9/crypto/openssl/apps/rsautl.c stable/9/crypto/openssl/apps/s_apps.h stable/9/crypto/openssl/apps/s_cb.c stable/9/crypto/openssl/apps/s_client.c stable/9/crypto/openssl/apps/s_server.c stable/9/crypto/openssl/apps/s_socket.c stable/9/crypto/openssl/apps/s_time.c stable/9/crypto/openssl/apps/sess_id.c stable/9/crypto/openssl/apps/smime.c stable/9/crypto/openssl/apps/speed.c stable/9/crypto/openssl/apps/spkac.c stable/9/crypto/openssl/apps/testdsa.h stable/9/crypto/openssl/apps/testrsa.h stable/9/crypto/openssl/apps/timeouts.h stable/9/crypto/openssl/apps/verify.c stable/9/crypto/openssl/apps/version.c stable/9/crypto/openssl/apps/winrand.c stable/9/crypto/openssl/apps/x509.c stable/9/crypto/openssl/bugs/alpha.c stable/9/crypto/openssl/bugs/dggccbug.c stable/9/crypto/openssl/bugs/sgiccbug.c stable/9/crypto/openssl/bugs/stream.c stable/9/crypto/openssl/bugs/ultrixcc.c stable/9/crypto/openssl/crypto/LPdir_nyi.c stable/9/crypto/openssl/crypto/LPdir_unix.c stable/9/crypto/openssl/crypto/LPdir_vms.c stable/9/crypto/openssl/crypto/LPdir_win.c stable/9/crypto/openssl/crypto/LPdir_win32.c stable/9/crypto/openssl/crypto/LPdir_wince.c stable/9/crypto/openssl/crypto/aes/aes.h stable/9/crypto/openssl/crypto/aes/aes_cbc.c stable/9/crypto/openssl/crypto/aes/aes_cfb.c stable/9/crypto/openssl/crypto/aes/aes_core.c stable/9/crypto/openssl/crypto/aes/aes_ctr.c stable/9/crypto/openssl/crypto/aes/aes_ecb.c stable/9/crypto/openssl/crypto/aes/aes_ige.c stable/9/crypto/openssl/crypto/aes/aes_locl.h stable/9/crypto/openssl/crypto/aes/aes_misc.c stable/9/crypto/openssl/crypto/aes/aes_ofb.c stable/9/crypto/openssl/crypto/aes/aes_wrap.c stable/9/crypto/openssl/crypto/asn1/a_bitstr.c stable/9/crypto/openssl/crypto/asn1/a_bool.c stable/9/crypto/openssl/crypto/asn1/a_bytes.c stable/9/crypto/openssl/crypto/asn1/a_d2i_fp.c stable/9/crypto/openssl/crypto/asn1/a_digest.c stable/9/crypto/openssl/crypto/asn1/a_dup.c stable/9/crypto/openssl/crypto/asn1/a_enum.c stable/9/crypto/openssl/crypto/asn1/a_gentm.c stable/9/crypto/openssl/crypto/asn1/a_hdr.c stable/9/crypto/openssl/crypto/asn1/a_i2d_fp.c stable/9/crypto/openssl/crypto/asn1/a_int.c stable/9/crypto/openssl/crypto/asn1/a_mbstr.c stable/9/crypto/openssl/crypto/asn1/a_meth.c stable/9/crypto/openssl/crypto/asn1/a_object.c stable/9/crypto/openssl/crypto/asn1/a_octet.c stable/9/crypto/openssl/crypto/asn1/a_print.c stable/9/crypto/openssl/crypto/asn1/a_set.c stable/9/crypto/openssl/crypto/asn1/a_sign.c stable/9/crypto/openssl/crypto/asn1/a_strex.c stable/9/crypto/openssl/crypto/asn1/a_strnid.c stable/9/crypto/openssl/crypto/asn1/a_time.c stable/9/crypto/openssl/crypto/asn1/a_type.c stable/9/crypto/openssl/crypto/asn1/a_utctm.c stable/9/crypto/openssl/crypto/asn1/a_utf8.c stable/9/crypto/openssl/crypto/asn1/a_verify.c stable/9/crypto/openssl/crypto/asn1/asn1.h stable/9/crypto/openssl/crypto/asn1/asn1_err.c stable/9/crypto/openssl/crypto/asn1/asn1_gen.c stable/9/crypto/openssl/crypto/asn1/asn1_lib.c stable/9/crypto/openssl/crypto/asn1/asn1_mac.h stable/9/crypto/openssl/crypto/asn1/asn1_par.c stable/9/crypto/openssl/crypto/asn1/asn1t.h stable/9/crypto/openssl/crypto/asn1/asn_mime.c stable/9/crypto/openssl/crypto/asn1/asn_moid.c stable/9/crypto/openssl/crypto/asn1/asn_pack.c stable/9/crypto/openssl/crypto/asn1/charmap.h stable/9/crypto/openssl/crypto/asn1/d2i_pr.c stable/9/crypto/openssl/crypto/asn1/d2i_pu.c stable/9/crypto/openssl/crypto/asn1/evp_asn1.c stable/9/crypto/openssl/crypto/asn1/f_enum.c stable/9/crypto/openssl/crypto/asn1/f_int.c stable/9/crypto/openssl/crypto/asn1/f_string.c stable/9/crypto/openssl/crypto/asn1/i2d_pr.c stable/9/crypto/openssl/crypto/asn1/i2d_pu.c stable/9/crypto/openssl/crypto/asn1/n_pkey.c stable/9/crypto/openssl/crypto/asn1/nsseq.c stable/9/crypto/openssl/crypto/asn1/p5_pbe.c stable/9/crypto/openssl/crypto/asn1/p5_pbev2.c stable/9/crypto/openssl/crypto/asn1/p8_key.c stable/9/crypto/openssl/crypto/asn1/p8_pkey.c stable/9/crypto/openssl/crypto/asn1/t_bitst.c stable/9/crypto/openssl/crypto/asn1/t_crl.c stable/9/crypto/openssl/crypto/asn1/t_pkey.c stable/9/crypto/openssl/crypto/asn1/t_req.c stable/9/crypto/openssl/crypto/asn1/t_spki.c stable/9/crypto/openssl/crypto/asn1/t_x509.c stable/9/crypto/openssl/crypto/asn1/t_x509a.c stable/9/crypto/openssl/crypto/asn1/tasn_dec.c stable/9/crypto/openssl/crypto/asn1/tasn_enc.c stable/9/crypto/openssl/crypto/asn1/tasn_fre.c stable/9/crypto/openssl/crypto/asn1/tasn_new.c stable/9/crypto/openssl/crypto/asn1/tasn_prn.c stable/9/crypto/openssl/crypto/asn1/tasn_typ.c stable/9/crypto/openssl/crypto/asn1/tasn_utl.c stable/9/crypto/openssl/crypto/asn1/x_algor.c stable/9/crypto/openssl/crypto/asn1/x_attrib.c stable/9/crypto/openssl/crypto/asn1/x_bignum.c stable/9/crypto/openssl/crypto/asn1/x_crl.c stable/9/crypto/openssl/crypto/asn1/x_exten.c stable/9/crypto/openssl/crypto/asn1/x_info.c stable/9/crypto/openssl/crypto/asn1/x_long.c stable/9/crypto/openssl/crypto/asn1/x_name.c stable/9/crypto/openssl/crypto/asn1/x_pkey.c stable/9/crypto/openssl/crypto/asn1/x_pubkey.c stable/9/crypto/openssl/crypto/asn1/x_req.c stable/9/crypto/openssl/crypto/asn1/x_sig.c stable/9/crypto/openssl/crypto/asn1/x_spki.c stable/9/crypto/openssl/crypto/asn1/x_val.c stable/9/crypto/openssl/crypto/asn1/x_x509.c stable/9/crypto/openssl/crypto/asn1/x_x509a.c stable/9/crypto/openssl/crypto/bf/bf_cbc.c stable/9/crypto/openssl/crypto/bf/bf_cfb64.c stable/9/crypto/openssl/crypto/bf/bf_ecb.c stable/9/crypto/openssl/crypto/bf/bf_enc.c stable/9/crypto/openssl/crypto/bf/bf_locl.h stable/9/crypto/openssl/crypto/bf/bf_ofb64.c stable/9/crypto/openssl/crypto/bf/bf_opts.c stable/9/crypto/openssl/crypto/bf/bf_pi.h stable/9/crypto/openssl/crypto/bf/bf_skey.c stable/9/crypto/openssl/crypto/bf/bfspeed.c stable/9/crypto/openssl/crypto/bf/bftest.c stable/9/crypto/openssl/crypto/bf/blowfish.h stable/9/crypto/openssl/crypto/bio/b_dump.c stable/9/crypto/openssl/crypto/bio/b_print.c stable/9/crypto/openssl/crypto/bio/b_sock.c stable/9/crypto/openssl/crypto/bio/bf_buff.c stable/9/crypto/openssl/crypto/bio/bf_lbuf.c stable/9/crypto/openssl/crypto/bio/bf_nbio.c stable/9/crypto/openssl/crypto/bio/bf_null.c stable/9/crypto/openssl/crypto/bio/bio.h stable/9/crypto/openssl/crypto/bio/bio_cb.c stable/9/crypto/openssl/crypto/bio/bio_err.c stable/9/crypto/openssl/crypto/bio/bio_lcl.h stable/9/crypto/openssl/crypto/bio/bio_lib.c stable/9/crypto/openssl/crypto/bio/bss_acpt.c stable/9/crypto/openssl/crypto/bio/bss_bio.c stable/9/crypto/openssl/crypto/bio/bss_conn.c stable/9/crypto/openssl/crypto/bio/bss_dgram.c stable/9/crypto/openssl/crypto/bio/bss_fd.c stable/9/crypto/openssl/crypto/bio/bss_file.c stable/9/crypto/openssl/crypto/bio/bss_log.c stable/9/crypto/openssl/crypto/bio/bss_mem.c stable/9/crypto/openssl/crypto/bio/bss_null.c stable/9/crypto/openssl/crypto/bio/bss_rtcp.c stable/9/crypto/openssl/crypto/bio/bss_sock.c stable/9/crypto/openssl/crypto/bn/asm/x86_64-gcc.c stable/9/crypto/openssl/crypto/bn/bn.h stable/9/crypto/openssl/crypto/bn/bn_add.c stable/9/crypto/openssl/crypto/bn/bn_asm.c stable/9/crypto/openssl/crypto/bn/bn_blind.c stable/9/crypto/openssl/crypto/bn/bn_const.c stable/9/crypto/openssl/crypto/bn/bn_ctx.c stable/9/crypto/openssl/crypto/bn/bn_depr.c stable/9/crypto/openssl/crypto/bn/bn_div.c stable/9/crypto/openssl/crypto/bn/bn_err.c stable/9/crypto/openssl/crypto/bn/bn_exp.c stable/9/crypto/openssl/crypto/bn/bn_exp2.c stable/9/crypto/openssl/crypto/bn/bn_gcd.c stable/9/crypto/openssl/crypto/bn/bn_gf2m.c stable/9/crypto/openssl/crypto/bn/bn_kron.c stable/9/crypto/openssl/crypto/bn/bn_lcl.h stable/9/crypto/openssl/crypto/bn/bn_lib.c stable/9/crypto/openssl/crypto/bn/bn_mod.c stable/9/crypto/openssl/crypto/bn/bn_mont.c stable/9/crypto/openssl/crypto/bn/bn_mpi.c stable/9/crypto/openssl/crypto/bn/bn_mul.c stable/9/crypto/openssl/crypto/bn/bn_nist.c stable/9/crypto/openssl/crypto/bn/bn_opt.c stable/9/crypto/openssl/crypto/bn/bn_prime.c stable/9/crypto/openssl/crypto/bn/bn_prime.h stable/9/crypto/openssl/crypto/bn/bn_print.c stable/9/crypto/openssl/crypto/bn/bn_rand.c stable/9/crypto/openssl/crypto/bn/bn_recp.c stable/9/crypto/openssl/crypto/bn/bn_shift.c stable/9/crypto/openssl/crypto/bn/bn_sqr.c stable/9/crypto/openssl/crypto/bn/bn_sqrt.c stable/9/crypto/openssl/crypto/bn/bn_word.c stable/9/crypto/openssl/crypto/bn/bn_x931p.c stable/9/crypto/openssl/crypto/bn/bnspeed.c stable/9/crypto/openssl/crypto/bn/bntest.c stable/9/crypto/openssl/crypto/bn/divtest.c stable/9/crypto/openssl/crypto/bn/exp.c stable/9/crypto/openssl/crypto/bn/expspeed.c stable/9/crypto/openssl/crypto/bn/exptest.c stable/9/crypto/openssl/crypto/buffer/buf_err.c stable/9/crypto/openssl/crypto/buffer/buf_str.c stable/9/crypto/openssl/crypto/buffer/buffer.c stable/9/crypto/openssl/crypto/buffer/buffer.h stable/9/crypto/openssl/crypto/camellia/camellia.c stable/9/crypto/openssl/crypto/camellia/camellia.h stable/9/crypto/openssl/crypto/camellia/cmll_cbc.c stable/9/crypto/openssl/crypto/camellia/cmll_cfb.c stable/9/crypto/openssl/crypto/camellia/cmll_ctr.c stable/9/crypto/openssl/crypto/camellia/cmll_ecb.c stable/9/crypto/openssl/crypto/camellia/cmll_locl.h stable/9/crypto/openssl/crypto/camellia/cmll_misc.c stable/9/crypto/openssl/crypto/camellia/cmll_ofb.c stable/9/crypto/openssl/crypto/cast/c_cfb64.c stable/9/crypto/openssl/crypto/cast/c_ecb.c stable/9/crypto/openssl/crypto/cast/c_enc.c stable/9/crypto/openssl/crypto/cast/c_ofb64.c stable/9/crypto/openssl/crypto/cast/c_skey.c stable/9/crypto/openssl/crypto/cast/cast.h stable/9/crypto/openssl/crypto/cast/cast_lcl.h stable/9/crypto/openssl/crypto/cast/cast_s.h stable/9/crypto/openssl/crypto/cast/cast_spd.c stable/9/crypto/openssl/crypto/cast/castopts.c stable/9/crypto/openssl/crypto/cast/casttest.c stable/9/crypto/openssl/crypto/cms/cms.h stable/9/crypto/openssl/crypto/cms/cms_asn1.c stable/9/crypto/openssl/crypto/cms/cms_att.c stable/9/crypto/openssl/crypto/cms/cms_cd.c stable/9/crypto/openssl/crypto/cms/cms_dd.c stable/9/crypto/openssl/crypto/cms/cms_enc.c stable/9/crypto/openssl/crypto/cms/cms_env.c stable/9/crypto/openssl/crypto/cms/cms_err.c stable/9/crypto/openssl/crypto/cms/cms_ess.c stable/9/crypto/openssl/crypto/cms/cms_io.c stable/9/crypto/openssl/crypto/cms/cms_lcl.h stable/9/crypto/openssl/crypto/cms/cms_lib.c stable/9/crypto/openssl/crypto/cms/cms_sd.c stable/9/crypto/openssl/crypto/cms/cms_smime.c stable/9/crypto/openssl/crypto/comp/c_rle.c stable/9/crypto/openssl/crypto/comp/c_zlib.c stable/9/crypto/openssl/crypto/comp/comp.h stable/9/crypto/openssl/crypto/comp/comp_err.c stable/9/crypto/openssl/crypto/comp/comp_lib.c stable/9/crypto/openssl/crypto/conf/cnf_save.c stable/9/crypto/openssl/crypto/conf/conf.h stable/9/crypto/openssl/crypto/conf/conf_api.c stable/9/crypto/openssl/crypto/conf/conf_api.h stable/9/crypto/openssl/crypto/conf/conf_def.c stable/9/crypto/openssl/crypto/conf/conf_def.h stable/9/crypto/openssl/crypto/conf/conf_err.c stable/9/crypto/openssl/crypto/conf/conf_lib.c stable/9/crypto/openssl/crypto/conf/conf_mall.c stable/9/crypto/openssl/crypto/conf/conf_mod.c stable/9/crypto/openssl/crypto/conf/conf_sap.c stable/9/crypto/openssl/crypto/conf/test.c stable/9/crypto/openssl/crypto/constant_time_locl.h stable/9/crypto/openssl/crypto/constant_time_test.c stable/9/crypto/openssl/crypto/cpt_err.c stable/9/crypto/openssl/crypto/cryptlib.c stable/9/crypto/openssl/crypto/cryptlib.h stable/9/crypto/openssl/crypto/crypto.h stable/9/crypto/openssl/crypto/cversion.c stable/9/crypto/openssl/crypto/des/cbc3_enc.c stable/9/crypto/openssl/crypto/des/cbc_cksm.c stable/9/crypto/openssl/crypto/des/cbc_enc.c stable/9/crypto/openssl/crypto/des/cfb64ede.c stable/9/crypto/openssl/crypto/des/cfb64enc.c stable/9/crypto/openssl/crypto/des/cfb_enc.c stable/9/crypto/openssl/crypto/des/des.c stable/9/crypto/openssl/crypto/des/des.h stable/9/crypto/openssl/crypto/des/des_enc.c stable/9/crypto/openssl/crypto/des/des_lib.c stable/9/crypto/openssl/crypto/des/des_locl.h stable/9/crypto/openssl/crypto/des/des_old.c stable/9/crypto/openssl/crypto/des/des_old.h stable/9/crypto/openssl/crypto/des/des_old2.c stable/9/crypto/openssl/crypto/des/des_opts.c stable/9/crypto/openssl/crypto/des/des_ver.h stable/9/crypto/openssl/crypto/des/destest.c stable/9/crypto/openssl/crypto/des/ecb3_enc.c stable/9/crypto/openssl/crypto/des/ecb_enc.c stable/9/crypto/openssl/crypto/des/ede_cbcm_enc.c stable/9/crypto/openssl/crypto/des/enc_read.c stable/9/crypto/openssl/crypto/des/enc_writ.c stable/9/crypto/openssl/crypto/des/fcrypt.c stable/9/crypto/openssl/crypto/des/fcrypt_b.c stable/9/crypto/openssl/crypto/des/ncbc_enc.c stable/9/crypto/openssl/crypto/des/ofb64ede.c stable/9/crypto/openssl/crypto/des/ofb64enc.c stable/9/crypto/openssl/crypto/des/ofb_enc.c stable/9/crypto/openssl/crypto/des/pcbc_enc.c stable/9/crypto/openssl/crypto/des/qud_cksm.c stable/9/crypto/openssl/crypto/des/rand_key.c stable/9/crypto/openssl/crypto/des/read2pwd.c stable/9/crypto/openssl/crypto/des/read_pwd.c stable/9/crypto/openssl/crypto/des/rpc_des.h stable/9/crypto/openssl/crypto/des/rpc_enc.c stable/9/crypto/openssl/crypto/des/rpw.c stable/9/crypto/openssl/crypto/des/set_key.c stable/9/crypto/openssl/crypto/des/speed.c stable/9/crypto/openssl/crypto/des/spr.h stable/9/crypto/openssl/crypto/des/str2key.c stable/9/crypto/openssl/crypto/des/xcbc_enc.c stable/9/crypto/openssl/crypto/dh/dh.h stable/9/crypto/openssl/crypto/dh/dh_asn1.c stable/9/crypto/openssl/crypto/dh/dh_check.c stable/9/crypto/openssl/crypto/dh/dh_depr.c stable/9/crypto/openssl/crypto/dh/dh_err.c stable/9/crypto/openssl/crypto/dh/dh_gen.c stable/9/crypto/openssl/crypto/dh/dh_key.c stable/9/crypto/openssl/crypto/dh/dh_lib.c stable/9/crypto/openssl/crypto/dh/dhtest.c stable/9/crypto/openssl/crypto/dh/p1024.c stable/9/crypto/openssl/crypto/dh/p192.c stable/9/crypto/openssl/crypto/dh/p512.c stable/9/crypto/openssl/crypto/dsa/dsa.h stable/9/crypto/openssl/crypto/dsa/dsa_asn1.c stable/9/crypto/openssl/crypto/dsa/dsa_depr.c stable/9/crypto/openssl/crypto/dsa/dsa_err.c stable/9/crypto/openssl/crypto/dsa/dsa_gen.c stable/9/crypto/openssl/crypto/dsa/dsa_key.c stable/9/crypto/openssl/crypto/dsa/dsa_lib.c stable/9/crypto/openssl/crypto/dsa/dsa_ossl.c stable/9/crypto/openssl/crypto/dsa/dsa_sign.c stable/9/crypto/openssl/crypto/dsa/dsa_utl.c stable/9/crypto/openssl/crypto/dsa/dsa_vrf.c stable/9/crypto/openssl/crypto/dsa/dsagen.c stable/9/crypto/openssl/crypto/dsa/dsatest.c stable/9/crypto/openssl/crypto/dso/dso.h stable/9/crypto/openssl/crypto/dso/dso_dl.c stable/9/crypto/openssl/crypto/dso/dso_dlfcn.c stable/9/crypto/openssl/crypto/dso/dso_err.c stable/9/crypto/openssl/crypto/dso/dso_lib.c stable/9/crypto/openssl/crypto/dso/dso_null.c stable/9/crypto/openssl/crypto/dso/dso_openssl.c stable/9/crypto/openssl/crypto/dyn_lck.c stable/9/crypto/openssl/crypto/ebcdic.c stable/9/crypto/openssl/crypto/ebcdic.h stable/9/crypto/openssl/crypto/ec/ec.h stable/9/crypto/openssl/crypto/ec/ec2_mult.c stable/9/crypto/openssl/crypto/ec/ec2_smpl.c stable/9/crypto/openssl/crypto/ec/ec2_smpt.c stable/9/crypto/openssl/crypto/ec/ec_asn1.c stable/9/crypto/openssl/crypto/ec/ec_check.c stable/9/crypto/openssl/crypto/ec/ec_curve.c stable/9/crypto/openssl/crypto/ec/ec_cvt.c stable/9/crypto/openssl/crypto/ec/ec_err.c stable/9/crypto/openssl/crypto/ec/ec_key.c stable/9/crypto/openssl/crypto/ec/ec_lcl.h stable/9/crypto/openssl/crypto/ec/ec_lib.c stable/9/crypto/openssl/crypto/ec/ec_mult.c stable/9/crypto/openssl/crypto/ec/ec_print.c stable/9/crypto/openssl/crypto/ec/ecp_mont.c stable/9/crypto/openssl/crypto/ec/ecp_nist.c stable/9/crypto/openssl/crypto/ec/ecp_smpl.c stable/9/crypto/openssl/crypto/ec/ectest.c stable/9/crypto/openssl/crypto/ecdh/ecdh.h stable/9/crypto/openssl/crypto/ecdh/ecdhtest.c stable/9/crypto/openssl/crypto/ecdh/ech_err.c stable/9/crypto/openssl/crypto/ecdh/ech_key.c stable/9/crypto/openssl/crypto/ecdh/ech_lib.c stable/9/crypto/openssl/crypto/ecdh/ech_locl.h stable/9/crypto/openssl/crypto/ecdh/ech_ossl.c stable/9/crypto/openssl/crypto/ecdsa/Makefile stable/9/crypto/openssl/crypto/ecdsa/ecdsa.h stable/9/crypto/openssl/crypto/ecdsa/ecdsatest.c stable/9/crypto/openssl/crypto/ecdsa/ecs_asn1.c stable/9/crypto/openssl/crypto/ecdsa/ecs_err.c stable/9/crypto/openssl/crypto/ecdsa/ecs_lib.c stable/9/crypto/openssl/crypto/ecdsa/ecs_locl.h stable/9/crypto/openssl/crypto/ecdsa/ecs_ossl.c stable/9/crypto/openssl/crypto/ecdsa/ecs_sign.c stable/9/crypto/openssl/crypto/ecdsa/ecs_vrf.c stable/9/crypto/openssl/crypto/engine/eng_all.c stable/9/crypto/openssl/crypto/engine/eng_cnf.c stable/9/crypto/openssl/crypto/engine/eng_cryptodev.c stable/9/crypto/openssl/crypto/engine/eng_ctrl.c stable/9/crypto/openssl/crypto/engine/eng_dyn.c stable/9/crypto/openssl/crypto/engine/eng_err.c stable/9/crypto/openssl/crypto/engine/eng_fat.c stable/9/crypto/openssl/crypto/engine/eng_init.c stable/9/crypto/openssl/crypto/engine/eng_int.h stable/9/crypto/openssl/crypto/engine/eng_lib.c stable/9/crypto/openssl/crypto/engine/eng_list.c stable/9/crypto/openssl/crypto/engine/eng_openssl.c stable/9/crypto/openssl/crypto/engine/eng_padlock.c stable/9/crypto/openssl/crypto/engine/eng_pkey.c stable/9/crypto/openssl/crypto/engine/eng_table.c stable/9/crypto/openssl/crypto/engine/engine.h stable/9/crypto/openssl/crypto/engine/enginetest.c stable/9/crypto/openssl/crypto/engine/tb_cipher.c stable/9/crypto/openssl/crypto/engine/tb_dh.c stable/9/crypto/openssl/crypto/engine/tb_digest.c stable/9/crypto/openssl/crypto/engine/tb_dsa.c stable/9/crypto/openssl/crypto/engine/tb_ecdh.c stable/9/crypto/openssl/crypto/engine/tb_ecdsa.c stable/9/crypto/openssl/crypto/engine/tb_rand.c stable/9/crypto/openssl/crypto/engine/tb_rsa.c stable/9/crypto/openssl/crypto/engine/tb_store.c stable/9/crypto/openssl/crypto/err/err.c stable/9/crypto/openssl/crypto/err/err.h stable/9/crypto/openssl/crypto/err/err_all.c stable/9/crypto/openssl/crypto/err/err_bio.c stable/9/crypto/openssl/crypto/err/err_def.c stable/9/crypto/openssl/crypto/err/err_prn.c stable/9/crypto/openssl/crypto/err/err_str.c stable/9/crypto/openssl/crypto/evp/bio_b64.c stable/9/crypto/openssl/crypto/evp/bio_enc.c stable/9/crypto/openssl/crypto/evp/bio_md.c stable/9/crypto/openssl/crypto/evp/bio_ok.c stable/9/crypto/openssl/crypto/evp/c_all.c stable/9/crypto/openssl/crypto/evp/c_allc.c stable/9/crypto/openssl/crypto/evp/c_alld.c stable/9/crypto/openssl/crypto/evp/dig_eng.c stable/9/crypto/openssl/crypto/evp/digest.c stable/9/crypto/openssl/crypto/evp/e_aes.c stable/9/crypto/openssl/crypto/evp/e_bf.c stable/9/crypto/openssl/crypto/evp/e_camellia.c stable/9/crypto/openssl/crypto/evp/e_cast.c stable/9/crypto/openssl/crypto/evp/e_des.c stable/9/crypto/openssl/crypto/evp/e_des3.c stable/9/crypto/openssl/crypto/evp/e_dsa.c stable/9/crypto/openssl/crypto/evp/e_idea.c stable/9/crypto/openssl/crypto/evp/e_null.c stable/9/crypto/openssl/crypto/evp/e_old.c stable/9/crypto/openssl/crypto/evp/e_rc2.c stable/9/crypto/openssl/crypto/evp/e_rc4.c stable/9/crypto/openssl/crypto/evp/e_rc5.c stable/9/crypto/openssl/crypto/evp/e_seed.c stable/9/crypto/openssl/crypto/evp/e_xcbc_d.c stable/9/crypto/openssl/crypto/evp/enc_min.c stable/9/crypto/openssl/crypto/evp/encode.c stable/9/crypto/openssl/crypto/evp/evp.h stable/9/crypto/openssl/crypto/evp/evp_acnf.c stable/9/crypto/openssl/crypto/evp/evp_cnf.c stable/9/crypto/openssl/crypto/evp/evp_enc.c stable/9/crypto/openssl/crypto/evp/evp_err.c stable/9/crypto/openssl/crypto/evp/evp_key.c stable/9/crypto/openssl/crypto/evp/evp_lib.c stable/9/crypto/openssl/crypto/evp/evp_locl.h stable/9/crypto/openssl/crypto/evp/evp_pbe.c stable/9/crypto/openssl/crypto/evp/evp_pkey.c stable/9/crypto/openssl/crypto/evp/evp_test.c stable/9/crypto/openssl/crypto/evp/m_dss.c stable/9/crypto/openssl/crypto/evp/m_dss1.c stable/9/crypto/openssl/crypto/evp/m_ecdsa.c stable/9/crypto/openssl/crypto/evp/m_md2.c stable/9/crypto/openssl/crypto/evp/m_md4.c stable/9/crypto/openssl/crypto/evp/m_md5.c stable/9/crypto/openssl/crypto/evp/m_mdc2.c stable/9/crypto/openssl/crypto/evp/m_null.c stable/9/crypto/openssl/crypto/evp/m_ripemd.c stable/9/crypto/openssl/crypto/evp/m_sha.c stable/9/crypto/openssl/crypto/evp/m_sha1.c stable/9/crypto/openssl/crypto/evp/names.c stable/9/crypto/openssl/crypto/evp/openbsd_hw.c stable/9/crypto/openssl/crypto/evp/p5_crpt.c stable/9/crypto/openssl/crypto/evp/p5_crpt2.c stable/9/crypto/openssl/crypto/evp/p_dec.c stable/9/crypto/openssl/crypto/evp/p_enc.c stable/9/crypto/openssl/crypto/evp/p_lib.c stable/9/crypto/openssl/crypto/evp/p_open.c stable/9/crypto/openssl/crypto/evp/p_seal.c stable/9/crypto/openssl/crypto/evp/p_sign.c stable/9/crypto/openssl/crypto/evp/p_verify.c stable/9/crypto/openssl/crypto/ex_data.c stable/9/crypto/openssl/crypto/fips_err.c stable/9/crypto/openssl/crypto/fips_err.h stable/9/crypto/openssl/crypto/hmac/hmac.c stable/9/crypto/openssl/crypto/hmac/hmac.h stable/9/crypto/openssl/crypto/hmac/hmactest.c stable/9/crypto/openssl/crypto/idea/i_cbc.c stable/9/crypto/openssl/crypto/idea/i_cfb64.c stable/9/crypto/openssl/crypto/idea/i_ecb.c stable/9/crypto/openssl/crypto/idea/i_ofb64.c stable/9/crypto/openssl/crypto/idea/i_skey.c stable/9/crypto/openssl/crypto/idea/idea.h stable/9/crypto/openssl/crypto/idea/idea_lcl.h stable/9/crypto/openssl/crypto/idea/idea_spd.c stable/9/crypto/openssl/crypto/idea/ideatest.c stable/9/crypto/openssl/crypto/jpake/jpake.c stable/9/crypto/openssl/crypto/jpake/jpake.h stable/9/crypto/openssl/crypto/jpake/jpake_err.c stable/9/crypto/openssl/crypto/jpake/jpaketest.c stable/9/crypto/openssl/crypto/krb5/krb5_asn.c stable/9/crypto/openssl/crypto/krb5/krb5_asn.h stable/9/crypto/openssl/crypto/lhash/lh_stats.c stable/9/crypto/openssl/crypto/lhash/lh_test.c stable/9/crypto/openssl/crypto/lhash/lhash.c stable/9/crypto/openssl/crypto/lhash/lhash.h stable/9/crypto/openssl/crypto/md2/md2.c stable/9/crypto/openssl/crypto/md2/md2.h stable/9/crypto/openssl/crypto/md2/md2_dgst.c stable/9/crypto/openssl/crypto/md2/md2_one.c stable/9/crypto/openssl/crypto/md2/md2test.c stable/9/crypto/openssl/crypto/md32_common.h stable/9/crypto/openssl/crypto/md4/md4.c stable/9/crypto/openssl/crypto/md4/md4.h stable/9/crypto/openssl/crypto/md4/md4_dgst.c stable/9/crypto/openssl/crypto/md4/md4_locl.h stable/9/crypto/openssl/crypto/md4/md4_one.c stable/9/crypto/openssl/crypto/md4/md4test.c stable/9/crypto/openssl/crypto/md5/md5.c stable/9/crypto/openssl/crypto/md5/md5.h stable/9/crypto/openssl/crypto/md5/md5_dgst.c stable/9/crypto/openssl/crypto/md5/md5_locl.h stable/9/crypto/openssl/crypto/md5/md5_one.c stable/9/crypto/openssl/crypto/md5/md5test.c stable/9/crypto/openssl/crypto/mdc2/mdc2.h stable/9/crypto/openssl/crypto/mdc2/mdc2_one.c stable/9/crypto/openssl/crypto/mdc2/mdc2dgst.c stable/9/crypto/openssl/crypto/mdc2/mdc2test.c stable/9/crypto/openssl/crypto/mem.c stable/9/crypto/openssl/crypto/mem_clr.c stable/9/crypto/openssl/crypto/mem_dbg.c stable/9/crypto/openssl/crypto/o_dir.c stable/9/crypto/openssl/crypto/o_dir.h stable/9/crypto/openssl/crypto/o_dir_test.c stable/9/crypto/openssl/crypto/o_init.c stable/9/crypto/openssl/crypto/o_str.c stable/9/crypto/openssl/crypto/o_str.h stable/9/crypto/openssl/crypto/o_time.c stable/9/crypto/openssl/crypto/o_time.h stable/9/crypto/openssl/crypto/objects/o_names.c stable/9/crypto/openssl/crypto/objects/obj_dat.c stable/9/crypto/openssl/crypto/objects/obj_err.c stable/9/crypto/openssl/crypto/objects/obj_lib.c stable/9/crypto/openssl/crypto/objects/obj_mac.h stable/9/crypto/openssl/crypto/objects/objects.h stable/9/crypto/openssl/crypto/objects/objects.pl stable/9/crypto/openssl/crypto/ocsp/ocsp.h stable/9/crypto/openssl/crypto/ocsp/ocsp_asn.c stable/9/crypto/openssl/crypto/ocsp/ocsp_cl.c stable/9/crypto/openssl/crypto/ocsp/ocsp_err.c stable/9/crypto/openssl/crypto/ocsp/ocsp_ext.c stable/9/crypto/openssl/crypto/ocsp/ocsp_ht.c stable/9/crypto/openssl/crypto/ocsp/ocsp_lib.c stable/9/crypto/openssl/crypto/ocsp/ocsp_prn.c stable/9/crypto/openssl/crypto/ocsp/ocsp_srv.c stable/9/crypto/openssl/crypto/ocsp/ocsp_vfy.c stable/9/crypto/openssl/crypto/opensslv.h stable/9/crypto/openssl/crypto/ossl_typ.h stable/9/crypto/openssl/crypto/pem/pem.h stable/9/crypto/openssl/crypto/pem/pem2.h stable/9/crypto/openssl/crypto/pem/pem_all.c stable/9/crypto/openssl/crypto/pem/pem_err.c stable/9/crypto/openssl/crypto/pem/pem_info.c stable/9/crypto/openssl/crypto/pem/pem_lib.c stable/9/crypto/openssl/crypto/pem/pem_oth.c stable/9/crypto/openssl/crypto/pem/pem_pk8.c stable/9/crypto/openssl/crypto/pem/pem_pkey.c stable/9/crypto/openssl/crypto/pem/pem_seal.c stable/9/crypto/openssl/crypto/pem/pem_sign.c stable/9/crypto/openssl/crypto/pem/pem_x509.c stable/9/crypto/openssl/crypto/pem/pem_xaux.c stable/9/crypto/openssl/crypto/pkcs12/p12_add.c stable/9/crypto/openssl/crypto/pkcs12/p12_asn.c stable/9/crypto/openssl/crypto/pkcs12/p12_attr.c stable/9/crypto/openssl/crypto/pkcs12/p12_crpt.c stable/9/crypto/openssl/crypto/pkcs12/p12_crt.c stable/9/crypto/openssl/crypto/pkcs12/p12_decr.c stable/9/crypto/openssl/crypto/pkcs12/p12_init.c stable/9/crypto/openssl/crypto/pkcs12/p12_key.c stable/9/crypto/openssl/crypto/pkcs12/p12_kiss.c stable/9/crypto/openssl/crypto/pkcs12/p12_mutl.c stable/9/crypto/openssl/crypto/pkcs12/p12_npas.c stable/9/crypto/openssl/crypto/pkcs12/p12_p8d.c stable/9/crypto/openssl/crypto/pkcs12/p12_p8e.c stable/9/crypto/openssl/crypto/pkcs12/p12_utl.c stable/9/crypto/openssl/crypto/pkcs12/pk12err.c stable/9/crypto/openssl/crypto/pkcs12/pkcs12.h stable/9/crypto/openssl/crypto/pkcs7/pk7_asn1.c stable/9/crypto/openssl/crypto/pkcs7/pk7_attr.c stable/9/crypto/openssl/crypto/pkcs7/pk7_dgst.c stable/9/crypto/openssl/crypto/pkcs7/pk7_doit.c stable/9/crypto/openssl/crypto/pkcs7/pk7_enc.c stable/9/crypto/openssl/crypto/pkcs7/pk7_lib.c stable/9/crypto/openssl/crypto/pkcs7/pk7_mime.c stable/9/crypto/openssl/crypto/pkcs7/pk7_smime.c stable/9/crypto/openssl/crypto/pkcs7/pkcs7.h stable/9/crypto/openssl/crypto/pkcs7/pkcs7err.c stable/9/crypto/openssl/crypto/pqueue/pq_compat.h stable/9/crypto/openssl/crypto/pqueue/pq_test.c stable/9/crypto/openssl/crypto/pqueue/pqueue.c stable/9/crypto/openssl/crypto/pqueue/pqueue.h stable/9/crypto/openssl/crypto/rand/md_rand.c stable/9/crypto/openssl/crypto/rand/rand.h stable/9/crypto/openssl/crypto/rand/rand_egd.c stable/9/crypto/openssl/crypto/rand/rand_eng.c stable/9/crypto/openssl/crypto/rand/rand_err.c stable/9/crypto/openssl/crypto/rand/rand_lcl.h stable/9/crypto/openssl/crypto/rand/rand_lib.c stable/9/crypto/openssl/crypto/rand/rand_nw.c stable/9/crypto/openssl/crypto/rand/rand_os2.c stable/9/crypto/openssl/crypto/rand/rand_unix.c stable/9/crypto/openssl/crypto/rand/rand_vms.c stable/9/crypto/openssl/crypto/rand/rand_win.c stable/9/crypto/openssl/crypto/rand/randfile.c stable/9/crypto/openssl/crypto/rand/randtest.c stable/9/crypto/openssl/crypto/rc2/rc2.h stable/9/crypto/openssl/crypto/rc2/rc2_cbc.c stable/9/crypto/openssl/crypto/rc2/rc2_ecb.c stable/9/crypto/openssl/crypto/rc2/rc2_locl.h stable/9/crypto/openssl/crypto/rc2/rc2_skey.c stable/9/crypto/openssl/crypto/rc2/rc2cfb64.c stable/9/crypto/openssl/crypto/rc2/rc2ofb64.c stable/9/crypto/openssl/crypto/rc2/rc2speed.c stable/9/crypto/openssl/crypto/rc2/rc2test.c stable/9/crypto/openssl/crypto/rc2/tab.c stable/9/crypto/openssl/crypto/rc4/rc4.c stable/9/crypto/openssl/crypto/rc4/rc4.h stable/9/crypto/openssl/crypto/rc4/rc4_enc.c stable/9/crypto/openssl/crypto/rc4/rc4_fblk.c stable/9/crypto/openssl/crypto/rc4/rc4_locl.h stable/9/crypto/openssl/crypto/rc4/rc4_skey.c stable/9/crypto/openssl/crypto/rc4/rc4speed.c stable/9/crypto/openssl/crypto/rc4/rc4test.c stable/9/crypto/openssl/crypto/rc5/rc5.h stable/9/crypto/openssl/crypto/rc5/rc5_ecb.c stable/9/crypto/openssl/crypto/rc5/rc5_enc.c stable/9/crypto/openssl/crypto/rc5/rc5_locl.h stable/9/crypto/openssl/crypto/rc5/rc5_skey.c stable/9/crypto/openssl/crypto/rc5/rc5cfb64.c stable/9/crypto/openssl/crypto/rc5/rc5ofb64.c stable/9/crypto/openssl/crypto/rc5/rc5speed.c stable/9/crypto/openssl/crypto/rc5/rc5test.c stable/9/crypto/openssl/crypto/ripemd/ripemd.h stable/9/crypto/openssl/crypto/ripemd/rmd160.c stable/9/crypto/openssl/crypto/ripemd/rmd_dgst.c stable/9/crypto/openssl/crypto/ripemd/rmd_locl.h stable/9/crypto/openssl/crypto/ripemd/rmd_one.c stable/9/crypto/openssl/crypto/ripemd/rmdconst.h stable/9/crypto/openssl/crypto/ripemd/rmdtest.c stable/9/crypto/openssl/crypto/rsa/rsa.h stable/9/crypto/openssl/crypto/rsa/rsa_asn1.c stable/9/crypto/openssl/crypto/rsa/rsa_chk.c stable/9/crypto/openssl/crypto/rsa/rsa_depr.c stable/9/crypto/openssl/crypto/rsa/rsa_eay.c stable/9/crypto/openssl/crypto/rsa/rsa_eng.c stable/9/crypto/openssl/crypto/rsa/rsa_err.c stable/9/crypto/openssl/crypto/rsa/rsa_gen.c stable/9/crypto/openssl/crypto/rsa/rsa_lib.c stable/9/crypto/openssl/crypto/rsa/rsa_none.c stable/9/crypto/openssl/crypto/rsa/rsa_null.c stable/9/crypto/openssl/crypto/rsa/rsa_oaep.c stable/9/crypto/openssl/crypto/rsa/rsa_pk1.c stable/9/crypto/openssl/crypto/rsa/rsa_pss.c stable/9/crypto/openssl/crypto/rsa/rsa_saos.c stable/9/crypto/openssl/crypto/rsa/rsa_sign.c stable/9/crypto/openssl/crypto/rsa/rsa_ssl.c stable/9/crypto/openssl/crypto/rsa/rsa_test.c stable/9/crypto/openssl/crypto/rsa/rsa_x931.c stable/9/crypto/openssl/crypto/rsa/rsa_x931g.c stable/9/crypto/openssl/crypto/seed/seed.c stable/9/crypto/openssl/crypto/seed/seed.h stable/9/crypto/openssl/crypto/seed/seed_cbc.c stable/9/crypto/openssl/crypto/seed/seed_cfb.c stable/9/crypto/openssl/crypto/seed/seed_ecb.c stable/9/crypto/openssl/crypto/seed/seed_locl.h stable/9/crypto/openssl/crypto/seed/seed_ofb.c stable/9/crypto/openssl/crypto/sha/sha.c stable/9/crypto/openssl/crypto/sha/sha.h stable/9/crypto/openssl/crypto/sha/sha1.c stable/9/crypto/openssl/crypto/sha/sha1_one.c stable/9/crypto/openssl/crypto/sha/sha1dgst.c stable/9/crypto/openssl/crypto/sha/sha1test.c stable/9/crypto/openssl/crypto/sha/sha256.c stable/9/crypto/openssl/crypto/sha/sha256t.c stable/9/crypto/openssl/crypto/sha/sha512.c stable/9/crypto/openssl/crypto/sha/sha512t.c stable/9/crypto/openssl/crypto/sha/sha_dgst.c stable/9/crypto/openssl/crypto/sha/sha_locl.h stable/9/crypto/openssl/crypto/sha/sha_one.c stable/9/crypto/openssl/crypto/sha/shatest.c stable/9/crypto/openssl/crypto/stack/safestack.h stable/9/crypto/openssl/crypto/stack/stack.c stable/9/crypto/openssl/crypto/stack/stack.h stable/9/crypto/openssl/crypto/store/store.h stable/9/crypto/openssl/crypto/store/str_err.c stable/9/crypto/openssl/crypto/store/str_lib.c stable/9/crypto/openssl/crypto/store/str_locl.h stable/9/crypto/openssl/crypto/store/str_mem.c stable/9/crypto/openssl/crypto/store/str_meth.c stable/9/crypto/openssl/crypto/symhacks.h stable/9/crypto/openssl/crypto/threads/mttest.c stable/9/crypto/openssl/crypto/threads/th-lock.c stable/9/crypto/openssl/crypto/tmdiff.c stable/9/crypto/openssl/crypto/tmdiff.h stable/9/crypto/openssl/crypto/txt_db/txt_db.c stable/9/crypto/openssl/crypto/txt_db/txt_db.h stable/9/crypto/openssl/crypto/ui/ui.h stable/9/crypto/openssl/crypto/ui/ui_compat.c stable/9/crypto/openssl/crypto/ui/ui_compat.h stable/9/crypto/openssl/crypto/ui/ui_err.c stable/9/crypto/openssl/crypto/ui/ui_lib.c stable/9/crypto/openssl/crypto/ui/ui_locl.h stable/9/crypto/openssl/crypto/ui/ui_openssl.c stable/9/crypto/openssl/crypto/ui/ui_util.c stable/9/crypto/openssl/crypto/uid.c stable/9/crypto/openssl/crypto/x509/by_dir.c stable/9/crypto/openssl/crypto/x509/by_file.c stable/9/crypto/openssl/crypto/x509/x509.h stable/9/crypto/openssl/crypto/x509/x509_att.c stable/9/crypto/openssl/crypto/x509/x509_cmp.c stable/9/crypto/openssl/crypto/x509/x509_d2.c stable/9/crypto/openssl/crypto/x509/x509_def.c stable/9/crypto/openssl/crypto/x509/x509_err.c stable/9/crypto/openssl/crypto/x509/x509_ext.c stable/9/crypto/openssl/crypto/x509/x509_lu.c stable/9/crypto/openssl/crypto/x509/x509_obj.c stable/9/crypto/openssl/crypto/x509/x509_r2x.c stable/9/crypto/openssl/crypto/x509/x509_req.c stable/9/crypto/openssl/crypto/x509/x509_set.c stable/9/crypto/openssl/crypto/x509/x509_trs.c stable/9/crypto/openssl/crypto/x509/x509_txt.c stable/9/crypto/openssl/crypto/x509/x509_v3.c stable/9/crypto/openssl/crypto/x509/x509_vfy.c stable/9/crypto/openssl/crypto/x509/x509_vfy.h stable/9/crypto/openssl/crypto/x509/x509_vpm.c stable/9/crypto/openssl/crypto/x509/x509cset.c stable/9/crypto/openssl/crypto/x509/x509name.c stable/9/crypto/openssl/crypto/x509/x509rset.c stable/9/crypto/openssl/crypto/x509/x509spki.c stable/9/crypto/openssl/crypto/x509/x509type.c stable/9/crypto/openssl/crypto/x509/x_all.c stable/9/crypto/openssl/crypto/x509v3/ext_dat.h stable/9/crypto/openssl/crypto/x509v3/pcy_cache.c stable/9/crypto/openssl/crypto/x509v3/pcy_data.c stable/9/crypto/openssl/crypto/x509v3/pcy_int.h stable/9/crypto/openssl/crypto/x509v3/pcy_lib.c stable/9/crypto/openssl/crypto/x509v3/pcy_map.c stable/9/crypto/openssl/crypto/x509v3/pcy_node.c stable/9/crypto/openssl/crypto/x509v3/pcy_tree.c stable/9/crypto/openssl/crypto/x509v3/tabtest.c stable/9/crypto/openssl/crypto/x509v3/v3_addr.c stable/9/crypto/openssl/crypto/x509v3/v3_akey.c stable/9/crypto/openssl/crypto/x509v3/v3_akeya.c stable/9/crypto/openssl/crypto/x509v3/v3_alt.c stable/9/crypto/openssl/crypto/x509v3/v3_asid.c stable/9/crypto/openssl/crypto/x509v3/v3_bcons.c stable/9/crypto/openssl/crypto/x509v3/v3_bitst.c stable/9/crypto/openssl/crypto/x509v3/v3_conf.c stable/9/crypto/openssl/crypto/x509v3/v3_cpols.c stable/9/crypto/openssl/crypto/x509v3/v3_crld.c stable/9/crypto/openssl/crypto/x509v3/v3_enum.c stable/9/crypto/openssl/crypto/x509v3/v3_extku.c stable/9/crypto/openssl/crypto/x509v3/v3_genn.c stable/9/crypto/openssl/crypto/x509v3/v3_ia5.c stable/9/crypto/openssl/crypto/x509v3/v3_info.c stable/9/crypto/openssl/crypto/x509v3/v3_int.c stable/9/crypto/openssl/crypto/x509v3/v3_lib.c stable/9/crypto/openssl/crypto/x509v3/v3_ncons.c stable/9/crypto/openssl/crypto/x509v3/v3_ocsp.c stable/9/crypto/openssl/crypto/x509v3/v3_pci.c stable/9/crypto/openssl/crypto/x509v3/v3_pcia.c stable/9/crypto/openssl/crypto/x509v3/v3_pcons.c stable/9/crypto/openssl/crypto/x509v3/v3_pku.c stable/9/crypto/openssl/crypto/x509v3/v3_pmaps.c stable/9/crypto/openssl/crypto/x509v3/v3_prn.c stable/9/crypto/openssl/crypto/x509v3/v3_purp.c stable/9/crypto/openssl/crypto/x509v3/v3_skey.c stable/9/crypto/openssl/crypto/x509v3/v3_sxnet.c stable/9/crypto/openssl/crypto/x509v3/v3_utl.c stable/9/crypto/openssl/crypto/x509v3/v3conf.c stable/9/crypto/openssl/crypto/x509v3/v3err.c stable/9/crypto/openssl/crypto/x509v3/v3prin.c stable/9/crypto/openssl/crypto/x509v3/x509v3.h stable/9/crypto/openssl/demos/asn1/ocsp.c stable/9/crypto/openssl/demos/b64.c stable/9/crypto/openssl/demos/bio/saccept.c stable/9/crypto/openssl/demos/bio/sconnect.c stable/9/crypto/openssl/demos/easy_tls/easy-tls.c stable/9/crypto/openssl/demos/easy_tls/easy-tls.h stable/9/crypto/openssl/demos/easy_tls/test.c stable/9/crypto/openssl/demos/easy_tls/test.h stable/9/crypto/openssl/demos/engines/cluster_labs/cluster_labs.h stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.c stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.c stable/9/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.h stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca.c stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.c stable/9/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.h stable/9/crypto/openssl/demos/engines/ibmca/ica_openssl_api.h stable/9/crypto/openssl/demos/engines/zencod/hw_zencod.c stable/9/crypto/openssl/demos/engines/zencod/hw_zencod.h stable/9/crypto/openssl/demos/engines/zencod/hw_zencod_err.c stable/9/crypto/openssl/demos/engines/zencod/hw_zencod_err.h stable/9/crypto/openssl/demos/jpake/jpakedemo.c stable/9/crypto/openssl/demos/pkcs12/pkread.c stable/9/crypto/openssl/demos/pkcs12/pkwrite.c stable/9/crypto/openssl/demos/prime/prime.c stable/9/crypto/openssl/demos/selfsign.c stable/9/crypto/openssl/demos/sign/sign.c stable/9/crypto/openssl/demos/spkigen.c stable/9/crypto/openssl/demos/state_machine/state_machine.c stable/9/crypto/openssl/demos/tunala/breakage.c stable/9/crypto/openssl/demos/tunala/buffer.c stable/9/crypto/openssl/demos/tunala/cb.c stable/9/crypto/openssl/demos/tunala/ip.c stable/9/crypto/openssl/demos/tunala/sm.c stable/9/crypto/openssl/demos/tunala/tunala.c stable/9/crypto/openssl/demos/tunala/tunala.h stable/9/crypto/openssl/demos/x509/mkcert.c stable/9/crypto/openssl/demos/x509/mkreq.c stable/9/crypto/openssl/doc/apps/ciphers.pod stable/9/crypto/openssl/doc/crypto/d2i_X509.pod stable/9/crypto/openssl/e_os.h stable/9/crypto/openssl/e_os2.h stable/9/crypto/openssl/engines/e_4758cca.c stable/9/crypto/openssl/engines/e_4758cca_err.c stable/9/crypto/openssl/engines/e_4758cca_err.h stable/9/crypto/openssl/engines/e_aep.c stable/9/crypto/openssl/engines/e_aep_err.c stable/9/crypto/openssl/engines/e_aep_err.h stable/9/crypto/openssl/engines/e_atalla.c stable/9/crypto/openssl/engines/e_atalla_err.c stable/9/crypto/openssl/engines/e_atalla_err.h stable/9/crypto/openssl/engines/e_capi.c stable/9/crypto/openssl/engines/e_capi_err.c stable/9/crypto/openssl/engines/e_capi_err.h stable/9/crypto/openssl/engines/e_chil.c stable/9/crypto/openssl/engines/e_chil_err.c stable/9/crypto/openssl/engines/e_chil_err.h stable/9/crypto/openssl/engines/e_cswift.c stable/9/crypto/openssl/engines/e_cswift_err.c stable/9/crypto/openssl/engines/e_cswift_err.h stable/9/crypto/openssl/engines/e_gmp.c stable/9/crypto/openssl/engines/e_gmp_err.c stable/9/crypto/openssl/engines/e_gmp_err.h stable/9/crypto/openssl/engines/e_nuron.c stable/9/crypto/openssl/engines/e_nuron_err.c stable/9/crypto/openssl/engines/e_nuron_err.h stable/9/crypto/openssl/engines/e_sureware.c stable/9/crypto/openssl/engines/e_sureware_err.c stable/9/crypto/openssl/engines/e_sureware_err.h stable/9/crypto/openssl/engines/e_ubsec.c stable/9/crypto/openssl/engines/e_ubsec_err.c stable/9/crypto/openssl/engines/e_ubsec_err.h stable/9/crypto/openssl/engines/vendor_defns/aep.h stable/9/crypto/openssl/engines/vendor_defns/atalla.h stable/9/crypto/openssl/engines/vendor_defns/cswift.h stable/9/crypto/openssl/engines/vendor_defns/hw_4758_cca.h stable/9/crypto/openssl/engines/vendor_defns/hw_ubsec.h stable/9/crypto/openssl/engines/vendor_defns/hwcryptohook.h stable/9/crypto/openssl/engines/vendor_defns/sureware.h stable/9/crypto/openssl/fips/aes/fips_aes_selftest.c stable/9/crypto/openssl/fips/aes/fips_aesavs.c stable/9/crypto/openssl/fips/des/fips_des_selftest.c stable/9/crypto/openssl/fips/des/fips_desmovs.c stable/9/crypto/openssl/fips/dh/dh_gen.c stable/9/crypto/openssl/fips/dh/fips_dh_check.c stable/9/crypto/openssl/fips/dh/fips_dh_gen.c stable/9/crypto/openssl/fips/dh/fips_dh_key.c stable/9/crypto/openssl/fips/dh/fips_dh_lib.c stable/9/crypto/openssl/fips/dsa/fips_dsa_gen.c stable/9/crypto/openssl/fips/dsa/fips_dsa_key.c stable/9/crypto/openssl/fips/dsa/fips_dsa_lib.c stable/9/crypto/openssl/fips/dsa/fips_dsa_ossl.c stable/9/crypto/openssl/fips/dsa/fips_dsa_selftest.c stable/9/crypto/openssl/fips/dsa/fips_dsa_sign.c stable/9/crypto/openssl/fips/dsa/fips_dsatest.c stable/9/crypto/openssl/fips/dsa/fips_dssvs.c stable/9/crypto/openssl/fips/fips.c stable/9/crypto/openssl/fips/fips.h stable/9/crypto/openssl/fips/fips_canister.c stable/9/crypto/openssl/fips/fips_locl.h stable/9/crypto/openssl/fips/fips_premain.c stable/9/crypto/openssl/fips/fips_test_suite.c stable/9/crypto/openssl/fips/fips_utl.h stable/9/crypto/openssl/fips/hmac/fips_hmac.c stable/9/crypto/openssl/fips/hmac/fips_hmac_selftest.c stable/9/crypto/openssl/fips/hmac/fips_hmactest.c stable/9/crypto/openssl/fips/rand/fips_rand.c stable/9/crypto/openssl/fips/rand/fips_rand.h stable/9/crypto/openssl/fips/rand/fips_rand_selftest.c stable/9/crypto/openssl/fips/rand/fips_randtest.c stable/9/crypto/openssl/fips/rand/fips_rngvs.c stable/9/crypto/openssl/fips/rsa/fips_rsa_eay.c stable/9/crypto/openssl/fips/rsa/fips_rsa_gen.c stable/9/crypto/openssl/fips/rsa/fips_rsa_lib.c stable/9/crypto/openssl/fips/rsa/fips_rsa_selftest.c stable/9/crypto/openssl/fips/rsa/fips_rsa_sign.c stable/9/crypto/openssl/fips/rsa/fips_rsa_x931g.c stable/9/crypto/openssl/fips/rsa/fips_rsagtest.c stable/9/crypto/openssl/fips/rsa/fips_rsastest.c stable/9/crypto/openssl/fips/rsa/fips_rsavtest.c stable/9/crypto/openssl/fips/sha/fips_sha1_selftest.c stable/9/crypto/openssl/fips/sha/fips_shatest.c stable/9/crypto/openssl/fips/sha/fips_standalone_sha1.c stable/9/crypto/openssl/openssl.spec stable/9/crypto/openssl/ssl/bio_ssl.c stable/9/crypto/openssl/ssl/d1_both.c stable/9/crypto/openssl/ssl/d1_clnt.c stable/9/crypto/openssl/ssl/d1_enc.c stable/9/crypto/openssl/ssl/d1_lib.c stable/9/crypto/openssl/ssl/d1_meth.c stable/9/crypto/openssl/ssl/d1_pkt.c stable/9/crypto/openssl/ssl/d1_srvr.c stable/9/crypto/openssl/ssl/dtls1.h stable/9/crypto/openssl/ssl/kssl.c stable/9/crypto/openssl/ssl/kssl.h stable/9/crypto/openssl/ssl/kssl_lcl.h stable/9/crypto/openssl/ssl/s23_clnt.c stable/9/crypto/openssl/ssl/s23_lib.c stable/9/crypto/openssl/ssl/s23_meth.c stable/9/crypto/openssl/ssl/s23_pkt.c stable/9/crypto/openssl/ssl/s23_srvr.c stable/9/crypto/openssl/ssl/s2_clnt.c stable/9/crypto/openssl/ssl/s2_enc.c stable/9/crypto/openssl/ssl/s2_lib.c stable/9/crypto/openssl/ssl/s2_meth.c stable/9/crypto/openssl/ssl/s2_pkt.c stable/9/crypto/openssl/ssl/s2_srvr.c stable/9/crypto/openssl/ssl/s3_both.c stable/9/crypto/openssl/ssl/s3_cbc.c stable/9/crypto/openssl/ssl/s3_clnt.c stable/9/crypto/openssl/ssl/s3_enc.c stable/9/crypto/openssl/ssl/s3_lib.c stable/9/crypto/openssl/ssl/s3_meth.c stable/9/crypto/openssl/ssl/s3_pkt.c stable/9/crypto/openssl/ssl/s3_srvr.c stable/9/crypto/openssl/ssl/ssl.h stable/9/crypto/openssl/ssl/ssl2.h stable/9/crypto/openssl/ssl/ssl23.h stable/9/crypto/openssl/ssl/ssl3.h stable/9/crypto/openssl/ssl/ssl_algs.c stable/9/crypto/openssl/ssl/ssl_asn1.c stable/9/crypto/openssl/ssl/ssl_cert.c stable/9/crypto/openssl/ssl/ssl_ciph.c stable/9/crypto/openssl/ssl/ssl_err.c stable/9/crypto/openssl/ssl/ssl_err2.c stable/9/crypto/openssl/ssl/ssl_lib.c stable/9/crypto/openssl/ssl/ssl_locl.h stable/9/crypto/openssl/ssl/ssl_rsa.c stable/9/crypto/openssl/ssl/ssl_sess.c stable/9/crypto/openssl/ssl/ssl_stat.c stable/9/crypto/openssl/ssl/ssl_task.c stable/9/crypto/openssl/ssl/ssl_txt.c stable/9/crypto/openssl/ssl/ssltest.c stable/9/crypto/openssl/ssl/t1_clnt.c stable/9/crypto/openssl/ssl/t1_enc.c stable/9/crypto/openssl/ssl/t1_lib.c stable/9/crypto/openssl/ssl/t1_meth.c stable/9/crypto/openssl/ssl/t1_reneg.c stable/9/crypto/openssl/ssl/t1_srvr.c stable/9/crypto/openssl/ssl/tls1.h stable/9/crypto/openssl/test/dummytest.c stable/9/crypto/openssl/test/igetest.c stable/9/crypto/openssl/test/methtest.c stable/9/crypto/openssl/test/r160test.c stable/9/crypto/openssl/util/ck_errf.pl stable/9/crypto/openssl/util/mkerr.pl stable/9/secure/lib/libcrypto/Makefile.inc stable/9/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/9/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/9/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/9/secure/lib/libcrypto/man/BIO_ctrl.3 stable/9/secure/lib/libcrypto/man/BIO_f_base64.3 stable/9/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/9/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/9/secure/lib/libcrypto/man/BIO_f_md.3 stable/9/secure/lib/libcrypto/man/BIO_f_null.3 stable/9/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/9/secure/lib/libcrypto/man/BIO_find_type.3 stable/9/secure/lib/libcrypto/man/BIO_new.3 stable/9/secure/lib/libcrypto/man/BIO_push.3 stable/9/secure/lib/libcrypto/man/BIO_read.3 stable/9/secure/lib/libcrypto/man/BIO_s_accept.3 stable/9/secure/lib/libcrypto/man/BIO_s_bio.3 stable/9/secure/lib/libcrypto/man/BIO_s_connect.3 stable/9/secure/lib/libcrypto/man/BIO_s_fd.3 stable/9/secure/lib/libcrypto/man/BIO_s_file.3 stable/9/secure/lib/libcrypto/man/BIO_s_mem.3 stable/9/secure/lib/libcrypto/man/BIO_s_null.3 stable/9/secure/lib/libcrypto/man/BIO_s_socket.3 stable/9/secure/lib/libcrypto/man/BIO_set_callback.3 stable/9/secure/lib/libcrypto/man/BIO_should_retry.3 stable/9/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/9/secure/lib/libcrypto/man/BN_CTX_new.3 stable/9/secure/lib/libcrypto/man/BN_CTX_start.3 stable/9/secure/lib/libcrypto/man/BN_add.3 stable/9/secure/lib/libcrypto/man/BN_add_word.3 stable/9/secure/lib/libcrypto/man/BN_bn2bin.3 stable/9/secure/lib/libcrypto/man/BN_cmp.3 stable/9/secure/lib/libcrypto/man/BN_copy.3 stable/9/secure/lib/libcrypto/man/BN_generate_prime.3 stable/9/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/9/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/9/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/9/secure/lib/libcrypto/man/BN_new.3 stable/9/secure/lib/libcrypto/man/BN_num_bytes.3 stable/9/secure/lib/libcrypto/man/BN_rand.3 stable/9/secure/lib/libcrypto/man/BN_set_bit.3 stable/9/secure/lib/libcrypto/man/BN_swap.3 stable/9/secure/lib/libcrypto/man/BN_zero.3 stable/9/secure/lib/libcrypto/man/CONF_modules_free.3 stable/9/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/9/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/9/secure/lib/libcrypto/man/DH_generate_key.3 stable/9/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/9/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/DH_new.3 stable/9/secure/lib/libcrypto/man/DH_set_method.3 stable/9/secure/lib/libcrypto/man/DH_size.3 stable/9/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/9/secure/lib/libcrypto/man/DSA_do_sign.3 stable/9/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/9/secure/lib/libcrypto/man/DSA_generate_key.3 stable/9/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/9/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/DSA_new.3 stable/9/secure/lib/libcrypto/man/DSA_set_method.3 stable/9/secure/lib/libcrypto/man/DSA_sign.3 stable/9/secure/lib/libcrypto/man/DSA_size.3 stable/9/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/9/secure/lib/libcrypto/man/ERR_clear_error.3 stable/9/secure/lib/libcrypto/man/ERR_error_string.3 stable/9/secure/lib/libcrypto/man/ERR_get_error.3 stable/9/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/9/secure/lib/libcrypto/man/ERR_load_strings.3 stable/9/secure/lib/libcrypto/man/ERR_print_errors.3 stable/9/secure/lib/libcrypto/man/ERR_put_error.3 stable/9/secure/lib/libcrypto/man/ERR_remove_state.3 stable/9/secure/lib/libcrypto/man/ERR_set_mark.3 stable/9/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/9/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/9/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/9/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/9/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/9/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/9/secure/lib/libcrypto/man/EVP_SealInit.3 stable/9/secure/lib/libcrypto/man/EVP_SignInit.3 stable/9/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/9/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/9/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/9/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/9/secure/lib/libcrypto/man/OPENSSL_config.3 stable/9/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/9/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/9/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/9/secure/lib/libcrypto/man/PKCS12_create.3 stable/9/secure/lib/libcrypto/man/PKCS12_parse.3 stable/9/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/9/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/9/secure/lib/libcrypto/man/PKCS7_sign.3 stable/9/secure/lib/libcrypto/man/PKCS7_verify.3 stable/9/secure/lib/libcrypto/man/RAND_add.3 stable/9/secure/lib/libcrypto/man/RAND_bytes.3 stable/9/secure/lib/libcrypto/man/RAND_cleanup.3 stable/9/secure/lib/libcrypto/man/RAND_egd.3 stable/9/secure/lib/libcrypto/man/RAND_load_file.3 stable/9/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/9/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/9/secure/lib/libcrypto/man/RSA_check_key.3 stable/9/secure/lib/libcrypto/man/RSA_generate_key.3 stable/9/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/9/secure/lib/libcrypto/man/RSA_new.3 stable/9/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/9/secure/lib/libcrypto/man/RSA_print.3 stable/9/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/9/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/9/secure/lib/libcrypto/man/RSA_set_method.3 stable/9/secure/lib/libcrypto/man/RSA_sign.3 stable/9/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/9/secure/lib/libcrypto/man/RSA_size.3 stable/9/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/9/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/9/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/9/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/9/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/9/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/9/secure/lib/libcrypto/man/X509_new.3 stable/9/secure/lib/libcrypto/man/bio.3 stable/9/secure/lib/libcrypto/man/blowfish.3 stable/9/secure/lib/libcrypto/man/bn.3 stable/9/secure/lib/libcrypto/man/bn_internal.3 stable/9/secure/lib/libcrypto/man/buffer.3 stable/9/secure/lib/libcrypto/man/crypto.3 stable/9/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/9/secure/lib/libcrypto/man/d2i_DHparams.3 stable/9/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/9/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/9/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/9/secure/lib/libcrypto/man/d2i_X509.3 stable/9/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/9/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/9/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/9/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/9/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/9/secure/lib/libcrypto/man/des.3 stable/9/secure/lib/libcrypto/man/dh.3 stable/9/secure/lib/libcrypto/man/dsa.3 stable/9/secure/lib/libcrypto/man/ecdsa.3 stable/9/secure/lib/libcrypto/man/engine.3 stable/9/secure/lib/libcrypto/man/err.3 stable/9/secure/lib/libcrypto/man/evp.3 stable/9/secure/lib/libcrypto/man/hmac.3 stable/9/secure/lib/libcrypto/man/lh_stats.3 stable/9/secure/lib/libcrypto/man/lhash.3 stable/9/secure/lib/libcrypto/man/md5.3 stable/9/secure/lib/libcrypto/man/mdc2.3 stable/9/secure/lib/libcrypto/man/pem.3 stable/9/secure/lib/libcrypto/man/rand.3 stable/9/secure/lib/libcrypto/man/rc4.3 stable/9/secure/lib/libcrypto/man/ripemd.3 stable/9/secure/lib/libcrypto/man/rsa.3 stable/9/secure/lib/libcrypto/man/sha.3 stable/9/secure/lib/libcrypto/man/threads.3 stable/9/secure/lib/libcrypto/man/ui.3 stable/9/secure/lib/libcrypto/man/ui_compat.3 stable/9/secure/lib/libcrypto/man/x509.3 stable/9/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/9/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/9/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/9/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/9/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/9/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/9/secure/lib/libssl/man/SSL_CTX_free.3 stable/9/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/9/secure/lib/libssl/man/SSL_CTX_new.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/9/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/9/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/9/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/9/secure/lib/libssl/man/SSL_SESSION_free.3 stable/9/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/9/secure/lib/libssl/man/SSL_accept.3 stable/9/secure/lib/libssl/man/SSL_alert_type_string.3 stable/9/secure/lib/libssl/man/SSL_clear.3 stable/9/secure/lib/libssl/man/SSL_connect.3 stable/9/secure/lib/libssl/man/SSL_do_handshake.3 stable/9/secure/lib/libssl/man/SSL_free.3 stable/9/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/9/secure/lib/libssl/man/SSL_get_ciphers.3 stable/9/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/9/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/9/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/9/secure/lib/libssl/man/SSL_get_error.3 stable/9/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/9/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/9/secure/lib/libssl/man/SSL_get_fd.3 stable/9/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/9/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/9/secure/lib/libssl/man/SSL_get_rbio.3 stable/9/secure/lib/libssl/man/SSL_get_session.3 stable/9/secure/lib/libssl/man/SSL_get_verify_result.3 stable/9/secure/lib/libssl/man/SSL_get_version.3 stable/9/secure/lib/libssl/man/SSL_library_init.3 stable/9/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/9/secure/lib/libssl/man/SSL_new.3 stable/9/secure/lib/libssl/man/SSL_pending.3 stable/9/secure/lib/libssl/man/SSL_read.3 stable/9/secure/lib/libssl/man/SSL_rstate_string.3 stable/9/secure/lib/libssl/man/SSL_session_reused.3 stable/9/secure/lib/libssl/man/SSL_set_bio.3 stable/9/secure/lib/libssl/man/SSL_set_connect_state.3 stable/9/secure/lib/libssl/man/SSL_set_fd.3 stable/9/secure/lib/libssl/man/SSL_set_session.3 stable/9/secure/lib/libssl/man/SSL_set_shutdown.3 stable/9/secure/lib/libssl/man/SSL_set_verify_result.3 stable/9/secure/lib/libssl/man/SSL_shutdown.3 stable/9/secure/lib/libssl/man/SSL_state_string.3 stable/9/secure/lib/libssl/man/SSL_want.3 stable/9/secure/lib/libssl/man/SSL_write.3 stable/9/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/9/secure/lib/libssl/man/ssl.3 stable/9/secure/usr.bin/openssl/man/CA.pl.1 stable/9/secure/usr.bin/openssl/man/asn1parse.1 stable/9/secure/usr.bin/openssl/man/ca.1 stable/9/secure/usr.bin/openssl/man/ciphers.1 stable/9/secure/usr.bin/openssl/man/crl.1 stable/9/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/9/secure/usr.bin/openssl/man/dgst.1 stable/9/secure/usr.bin/openssl/man/dhparam.1 stable/9/secure/usr.bin/openssl/man/dsa.1 stable/9/secure/usr.bin/openssl/man/dsaparam.1 stable/9/secure/usr.bin/openssl/man/ec.1 stable/9/secure/usr.bin/openssl/man/ecparam.1 stable/9/secure/usr.bin/openssl/man/enc.1 stable/9/secure/usr.bin/openssl/man/errstr.1 stable/9/secure/usr.bin/openssl/man/gendsa.1 stable/9/secure/usr.bin/openssl/man/genrsa.1 stable/9/secure/usr.bin/openssl/man/nseq.1 stable/9/secure/usr.bin/openssl/man/ocsp.1 stable/9/secure/usr.bin/openssl/man/openssl.1 stable/9/secure/usr.bin/openssl/man/passwd.1 stable/9/secure/usr.bin/openssl/man/pkcs12.1 stable/9/secure/usr.bin/openssl/man/pkcs7.1 stable/9/secure/usr.bin/openssl/man/pkcs8.1 stable/9/secure/usr.bin/openssl/man/rand.1 stable/9/secure/usr.bin/openssl/man/req.1 stable/9/secure/usr.bin/openssl/man/rsa.1 stable/9/secure/usr.bin/openssl/man/rsautl.1 stable/9/secure/usr.bin/openssl/man/s_client.1 stable/9/secure/usr.bin/openssl/man/s_server.1 stable/9/secure/usr.bin/openssl/man/s_time.1 stable/9/secure/usr.bin/openssl/man/sess_id.1 stable/9/secure/usr.bin/openssl/man/smime.1 stable/9/secure/usr.bin/openssl/man/speed.1 stable/9/secure/usr.bin/openssl/man/spkac.1 stable/9/secure/usr.bin/openssl/man/verify.1 stable/9/secure/usr.bin/openssl/man/version.1 stable/9/secure/usr.bin/openssl/man/x509.1 stable/9/secure/usr.bin/openssl/man/x509v3_config.1 Directory Properties: stable/9/crypto/openssl/ (props changed) Modified: stable/8/crypto/openssl/CHANGES ============================================================================== --- stable/8/crypto/openssl/CHANGES Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/CHANGES Fri Mar 20 21:56:48 2015 (r280305) @@ -2,6 +2,88 @@ OpenSSL CHANGES _______________ + Changes between 0.9.8ze and 0.9.8zf [19 Mar 2015] + + *) Segmentation fault in ASN1_TYPE_cmp fix + + The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is + made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check + certificate signature algorithm consistency this can be used to crash any + certificate verification operation and exploited in a DoS attack. Any + application which performs certificate verification is vulnerable including + OpenSSL clients and servers which enable client authentication. + (CVE-2015-0286) + [Stephen Henson] + + *) ASN.1 structure reuse memory corruption fix + + Reusing a structure in ASN.1 parsing may allow an attacker to cause + memory corruption via an invalid write. Such reuse is and has been + strongly discouraged and is believed to be rare. + + Applications that parse structures containing CHOICE or ANY DEFINED BY + components may be affected. Certificate parsing (d2i_X509 and related + functions) are however not affected. OpenSSL clients and servers are + not affected. + (CVE-2015-0287) + [Stephen Henson] + + *) PKCS7 NULL pointer dereferences fix + + The PKCS#7 parsing code does not handle missing outer ContentInfo + correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with + missing content and trigger a NULL pointer dereference on parsing. + + Applications that verify PKCS#7 signatures, decrypt PKCS#7 data or + otherwise parse PKCS#7 structures from untrusted sources are + affected. OpenSSL clients and servers are not affected. + + This issue was reported to OpenSSL by Michal Zalewski (Google). + (CVE-2015-0289) + [Emilia Käsper] + + *) DoS via reachable assert in SSLv2 servers fix + + A malicious client can trigger an OPENSSL_assert (i.e., an abort) in + servers that both support SSLv2 and enable export cipher suites by sending + a specially crafted SSLv2 CLIENT-MASTER-KEY message. + + This issue was discovered by Sean Burford (Google) and Emilia Käsper + (OpenSSL development team). + (CVE-2015-0293) + [Emilia Käsper] + + *) Use After Free following d2i_ECPrivatekey error fix + + A malformed EC private key file consumed via the d2i_ECPrivateKey function + could cause a use after free condition. This, in turn, could cause a double + free in several private key parsing functions (such as d2i_PrivateKey + or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption + for applications that receive EC private keys from untrusted + sources. This scenario is considered rare. + + This issue was discovered by the BoringSSL project and fixed in their + commit 517073cd4b. + (CVE-2015-0209) + [Matt Caswell] + + *) X509_to_X509_REQ NULL pointer deref fix + + The function X509_to_X509_REQ will crash with a NULL pointer dereference if + the certificate key is invalid. This function is rarely used in practice. + + This issue was discovered by Brian Carpenter. + (CVE-2015-0288) + [Stephen Henson] + + *) Removed the export and SSLv2 ciphers from the DEFAULT ciphers + [Kurt Roeckx] + + Changes between 0.9.8zd and 0.9.8ze [15 Jan 2015] + + *) Build fixes for the Windows and OpenVMS platforms + [Matt Caswell and Richard Levitte] + Changes between 0.9.8zc and 0.9.8zd [8 Jan 2015] *) Fix DTLS segmentation fault in dtls1_get_record. A carefully crafted DTLS Modified: stable/8/crypto/openssl/Makefile ============================================================================== --- stable/8/crypto/openssl/Makefile Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/Makefile Fri Mar 20 21:56:48 2015 (r280305) @@ -4,7 +4,7 @@ ## Makefile for OpenSSL ## -VERSION=0.9.8zd +VERSION=0.9.8zf MAJOR=0 MINOR=9.8 SHLIB_VERSION_NUMBER=0.9.8 Modified: stable/8/crypto/openssl/NEWS ============================================================================== --- stable/8/crypto/openssl/NEWS Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/NEWS Fri Mar 20 21:56:48 2015 (r280305) @@ -5,6 +5,20 @@ This file gives a brief overview of the major changes between each OpenSSL release. For more details please read the CHANGES file. + Major changes between OpenSSL 0.9.8ze and OpenSSL 0.9.8zf [19 Mar 2015] + + o Segmentation fault in ASN1_TYPE_cmp fix (CVE-2015-0286) + o ASN.1 structure reuse memory corruption fix (CVE-2015-0287) + o PKCS7 NULL pointer dereferences fix (CVE-2015-0289) + o DoS via reachable assert in SSLv2 servers fix (CVE-2015-0293) + o Use After Free following d2i_ECPrivatekey error fix (CVE-2015-0209) + o X509_to_X509_REQ NULL pointer deref fix (CVE-2015-0288) + o Removed the export ciphers from the DEFAULT ciphers + + Major changes between OpenSSL 0.9.8zd and OpenSSL 0.9.8ze [15 Jan 2015] + + o Build fixes for the Windows and OpenVMS platforms + Major changes between OpenSSL 0.9.8zc and OpenSSL 0.9.8zd [8 Jan 2015] o Fix for CVE-2014-3571 Modified: stable/8/crypto/openssl/README ============================================================================== --- stable/8/crypto/openssl/README Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/README Fri Mar 20 21:56:48 2015 (r280305) @@ -1,5 +1,5 @@ - OpenSSL 0.9.8zd 8 Jan 2015 + OpenSSL 0.9.8zf 19 Mar 2015 Copyright (c) 1998-2011 The OpenSSL Project Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson Modified: stable/8/crypto/openssl/apps/app_rand.c ============================================================================== --- stable/8/crypto/openssl/apps/app_rand.c Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/apps/app_rand.c Fri Mar 20 21:56:48 2015 (r280305) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -115,104 +115,106 @@ #include #include - static int seeded = 0; static int egdsocket = 0; int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn) - { - int consider_randfile = (file == NULL); - char buffer[200]; - +{ + int consider_randfile = (file == NULL); + char buffer[200]; + #ifdef OPENSSL_SYS_WINDOWS - BIO_printf(bio_e,"Loading 'screen' into random state -"); - BIO_flush(bio_e); - RAND_screen(); - BIO_printf(bio_e," done\n"); + BIO_printf(bio_e, "Loading 'screen' into random state -"); + BIO_flush(bio_e); + RAND_screen(); + BIO_printf(bio_e, " done\n"); #endif - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - else if (RAND_egd(file) > 0) - { - /* we try if the given filename is an EGD socket. - if it is, we don't write anything back to the file. */ - egdsocket = 1; - return 1; - } - if (file == NULL || !RAND_load_file(file, -1)) - { - if (RAND_status() == 0) - { - if (!dont_warn) - { - BIO_printf(bio_e,"unable to load 'random state'\n"); - BIO_printf(bio_e,"This means that the random number generator has not been seeded\n"); - BIO_printf(bio_e,"with much random data.\n"); - if (consider_randfile) /* explanation does not apply when a file is explicitly named */ - { - BIO_printf(bio_e,"Consider setting the RANDFILE environment variable to point at a file that\n"); - BIO_printf(bio_e,"'random' data can be kept in (the file will be overwritten).\n"); - } - } - return 0; - } - } - seeded = 1; - return 1; - } + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + else if (RAND_egd(file) > 0) { + /* + * we try if the given filename is an EGD socket. if it is, we don't + * write anything back to the file. + */ + egdsocket = 1; + return 1; + } + if (file == NULL || !RAND_load_file(file, -1)) { + if (RAND_status() == 0) { + if (!dont_warn) { + BIO_printf(bio_e, "unable to load 'random state'\n"); + BIO_printf(bio_e, + "This means that the random number generator has not been seeded\n"); + BIO_printf(bio_e, "with much random data.\n"); + if (consider_randfile) { /* explanation does not apply when a + * file is explicitly named */ + BIO_printf(bio_e, + "Consider setting the RANDFILE environment variable to point at a file that\n"); + BIO_printf(bio_e, + "'random' data can be kept in (the file will be overwritten).\n"); + } + } + return 0; + } + } + seeded = 1; + return 1; +} long app_RAND_load_files(char *name) - { - char *p,*n; - int last; - long tot=0; - int egd; - - for (;;) - { - last=0; - for (p=name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++); - if (*p == '\0') last=1; - *p='\0'; - n=name; - name=p+1; - if (*n == '\0') break; - - egd=RAND_egd(n); - if (egd > 0) - tot+=egd; - else - tot+=RAND_load_file(n,-1); - if (last) break; - } - if (tot > 512) - app_RAND_allow_write_file(); - return(tot); - } +{ + char *p, *n; + int last; + long tot = 0; + int egd; + + for (;;) { + last = 0; + for (p = name; ((*p != '\0') && (*p != LIST_SEPARATOR_CHAR)); p++) ; + if (*p == '\0') + last = 1; + *p = '\0'; + n = name; + name = p + 1; + if (*n == '\0') + break; + + egd = RAND_egd(n); + if (egd > 0) + tot += egd; + else + tot += RAND_load_file(n, -1); + if (last) + break; + } + if (tot > 512) + app_RAND_allow_write_file(); + return (tot); +} int app_RAND_write_file(const char *file, BIO *bio_e) - { - char buffer[200]; - - if (egdsocket || !seeded) - /* If we did not manage to read the seed file, - * we should not write a low-entropy seed file back -- - * it would suppress a crucial warning the next time - * we want to use it. */ - return 0; - - if (file == NULL) - file = RAND_file_name(buffer, sizeof buffer); - if (file == NULL || !RAND_write_file(file)) - { - BIO_printf(bio_e,"unable to write 'random state'\n"); - return 0; - } - return 1; - } +{ + char buffer[200]; + + if (egdsocket || !seeded) + /* + * If we did not manage to read the seed file, we should not write a + * low-entropy seed file back -- it would suppress a crucial warning + * the next time we want to use it. + */ + return 0; + + if (file == NULL) + file = RAND_file_name(buffer, sizeof buffer); + if (file == NULL || !RAND_write_file(file)) { + BIO_printf(bio_e, "unable to write 'random state'\n"); + return 0; + } + return 1; +} void app_RAND_allow_write_file(void) - { - seeded = 1; - } +{ + seeded = 1; +} Modified: stable/8/crypto/openssl/apps/apps.c ============================================================================== --- stable/8/crypto/openssl/apps/apps.c Fri Mar 20 21:54:45 2015 (r280304) +++ stable/8/crypto/openssl/apps/apps.c Fri Mar 20 21:56:48 2015 (r280305) @@ -5,21 +5,21 @@ * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. - * + * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * + * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. - * + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -34,10 +34,10 @@ * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * + * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -49,7 +49,7 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * + * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence @@ -63,7 +63,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in @@ -124,14 +124,14 @@ #include #include #ifndef OPENSSL_NO_ENGINE -#include +# include #endif #ifndef OPENSSL_NO_RSA -#include +# include #endif #include #ifndef OPENSSL_NO_JPAKE -#include +# include #endif #define NON_MAIN @@ -139,2449 +139,2309 @@ #undef NON_MAIN typedef struct { - const char *name; - unsigned long flag; - unsigned long mask; + const char *name; + unsigned long flag; + unsigned long mask; } NAME_EX_TBL; static UI_METHOD *ui_method = NULL; -static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl); -static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl); +static int set_table_opts(unsigned long *flags, const char *arg, + const NAME_EX_TBL * in_tbl); +static int set_multi_opts(unsigned long *flags, const char *arg, + const NAME_EX_TBL * in_tbl); #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA) /* Looks like this stuff is worth moving into separate function */ -static EVP_PKEY * -load_netscape_key(BIO *err, BIO *key, const char *file, - const char *key_descrip, int format); +static EVP_PKEY *load_netscape_key(BIO *err, BIO *key, const char *file, + const char *key_descrip, int format); #endif int app_init(long mesgwin); -#ifdef undef /* never finished - probably never will be :-) */ +#ifdef undef /* never finished - probably never will be + * :-) */ int args_from_file(char *file, int *argc, char **argv[]) - { - FILE *fp; - int num,i; - unsigned int len; - static char *buf=NULL; - static char **arg=NULL; - char *p; - struct stat stbuf; - - if (stat(file,&stbuf) < 0) return(0); - - fp=fopen(file,"r"); - if (fp == NULL) - return(0); - - *argc=0; - *argv=NULL; - - len=(unsigned int)stbuf.st_size; - if (buf != NULL) OPENSSL_free(buf); - buf=(char *)OPENSSL_malloc(len+1); - if (buf == NULL) return(0); - - len=fread(buf,1,len,fp); - if (len <= 1) return(0); - buf[len]='\0'; - - i=0; - for (p=buf; *p; p++) - if (*p == '\n') i++; - if (arg != NULL) OPENSSL_free(arg); - arg=(char **)OPENSSL_malloc(sizeof(char *)*(i*2)); - - *argv=arg; - num=0; - p=buf; - for (;;) - { - if (!*p) break; - if (*p == '#') /* comment line */ - { - while (*p && (*p != '\n')) p++; - continue; - } - /* else we have a line */ - *(arg++)=p; - num++; - while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) - p++; - if (!*p) break; - if (*p == '\n') - { - *(p++)='\0'; - continue; - } - /* else it is a tab or space */ - p++; - while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) - p++; - if (!*p) break; - if (*p == '\n') - { - p++; - continue; - } - *(arg++)=p++; - num++; - while (*p && (*p != '\n')) p++; - if (!*p) break; - /* else *p == '\n' */ - *(p++)='\0'; - } - *argc=num; - return(1); - } +{ + FILE *fp; + int num, i; + unsigned int len; + static char *buf = NULL; + static char **arg = NULL; + char *p; + struct stat stbuf; + + if (stat(file, &stbuf) < 0) + return (0); + + fp = fopen(file, "r"); + if (fp == NULL) + return (0); + + *argc = 0; + *argv = NULL; + + len = (unsigned int)stbuf.st_size; + if (buf != NULL) + OPENSSL_free(buf); + buf = (char *)OPENSSL_malloc(len + 1); + if (buf == NULL) + return (0); + + len = fread(buf, 1, len, fp); + if (len <= 1) + return (0); + buf[len] = '\0'; + + i = 0; + for (p = buf; *p; p++) + if (*p == '\n') + i++; + if (arg != NULL) + OPENSSL_free(arg); + arg = (char **)OPENSSL_malloc(sizeof(char *) * (i * 2)); + + *argv = arg; + num = 0; + p = buf; + for (;;) { + if (!*p) + break; + if (*p == '#') { /* comment line */ + while (*p && (*p != '\n')) + p++; + continue; + } + /* else we have a line */ + *(arg++) = p; + num++; + while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) + p++; + if (!*p) + break; + if (*p == '\n') { + *(p++) = '\0'; + continue; + } + /* else it is a tab or space */ + p++; + while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) + p++; + if (!*p) + break; + if (*p == '\n') { + p++; + continue; + } + *(arg++) = p++; + num++; + while (*p && (*p != '\n')) + p++; + if (!*p) + break; + /* else *p == '\n' */ + *(p++) = '\0'; + } + *argc = num; + return (1); +} #endif int str2fmt(char *s) - { - if ((*s == 'D') || (*s == 'd')) - return(FORMAT_ASN1); - else if ((*s == 'T') || (*s == 't')) - return(FORMAT_TEXT); - else if ((*s == 'P') || (*s == 'p')) - return(FORMAT_PEM); - else if ((*s == 'N') || (*s == 'n')) - return(FORMAT_NETSCAPE); - else if ((*s == 'S') || (*s == 's')) - return(FORMAT_SMIME); - else if ((*s == '1') - || (strcmp(s,"PKCS12") == 0) || (strcmp(s,"pkcs12") == 0) - || (strcmp(s,"P12") == 0) || (strcmp(s,"p12") == 0)) - return(FORMAT_PKCS12); - else if ((*s == 'E') || (*s == 'e')) - return(FORMAT_ENGINE); - else - return(FORMAT_UNDEF); - } +{ + if ((*s == 'D') || (*s == 'd')) + return (FORMAT_ASN1); + else if ((*s == 'T') || (*s == 't')) + return (FORMAT_TEXT); + else if ((*s == 'P') || (*s == 'p')) + return (FORMAT_PEM); + else if ((*s == 'N') || (*s == 'n')) + return (FORMAT_NETSCAPE); + else if ((*s == 'S') || (*s == 's')) + return (FORMAT_SMIME); + else if ((*s == '1') + || (strcmp(s, "PKCS12") == 0) || (strcmp(s, "pkcs12") == 0) + || (strcmp(s, "P12") == 0) || (strcmp(s, "p12") == 0)) + return (FORMAT_PKCS12); + else if ((*s == 'E') || (*s == 'e')) + return (FORMAT_ENGINE); + else + return (FORMAT_UNDEF); +} #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_NETWARE) void program_name(char *in, char *out, int size) - { - int i,n; - char *p=NULL; - - n=strlen(in); - /* find the last '/', '\' or ':' */ - for (i=n-1; i>0; i--) - { - if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':')) - { - p= &(in[i+1]); - break; - } - } - if (p == NULL) - p=in; - n=strlen(p); - -#if defined(OPENSSL_SYS_NETWARE) - /* strip off trailing .nlm if present. */ - if ((n > 4) && (p[n-4] == '.') && - ((p[n-3] == 'n') || (p[n-3] == 'N')) && - ((p[n-2] == 'l') || (p[n-2] == 'L')) && - ((p[n-1] == 'm') || (p[n-1] == 'M'))) - n-=4; -#else - /* strip off trailing .exe if present. */ - if ((n > 4) && (p[n-4] == '.') && - ((p[n-3] == 'e') || (p[n-3] == 'E')) && - ((p[n-2] == 'x') || (p[n-2] == 'X')) && - ((p[n-1] == 'e') || (p[n-1] == 'E'))) - n-=4; -#endif - - if (n > size-1) - n=size-1; - - for (i=0; i= 'A') && (p[i] <= 'Z')) - out[i]=p[i]-'A'+'a'; - else - out[i]=p[i]; - } - out[n]='\0'; - } +{ + int i, n; + char *p = NULL; + + n = strlen(in); + /* find the last '/', '\' or ':' */ + for (i = n - 1; i > 0; i--) { + if ((in[i] == '/') || (in[i] == '\\') || (in[i] == ':')) { + p = &(in[i + 1]); + break; + } + } + if (p == NULL) + p = in; + n = strlen(p); + +# if defined(OPENSSL_SYS_NETWARE) + /* strip off trailing .nlm if present. */ + if ((n > 4) && (p[n - 4] == '.') && + ((p[n - 3] == 'n') || (p[n - 3] == 'N')) && + ((p[n - 2] == 'l') || (p[n - 2] == 'L')) && + ((p[n - 1] == 'm') || (p[n - 1] == 'M'))) + n -= 4; +# else + /* strip off trailing .exe if present. */ + if ((n > 4) && (p[n - 4] == '.') && + ((p[n - 3] == 'e') || (p[n - 3] == 'E')) && + ((p[n - 2] == 'x') || (p[n - 2] == 'X')) && + ((p[n - 1] == 'e') || (p[n - 1] == 'E'))) + n -= 4; +# endif + + if (n > size - 1) + n = size - 1; + + for (i = 0; i < n; i++) { + if ((p[i] >= 'A') && (p[i] <= 'Z')) + out[i] = p[i] - 'A' + 'a'; + else + out[i] = p[i]; + } + out[n] = '\0'; +} #else -#ifdef OPENSSL_SYS_VMS +# ifdef OPENSSL_SYS_VMS void program_name(char *in, char *out, int size) - { - char *p=in, *q; - char *chars=":]>"; - - while(*chars != '\0') - { - q=strrchr(p,*chars); - if (q > p) - p = q + 1; - chars++; - } - - q=strrchr(p,'.'); - if (q == NULL) - q = p + strlen(p); - strncpy(out,p,size-1); - if (q-p >= size) - { - out[size-1]='\0'; - } - else - { - out[q-p]='\0'; - } - } -#else +{ + char *p = in, *q; + char *chars = ":]>"; + + while (*chars != '\0') { + q = strrchr(p, *chars); + if (q > p) + p = q + 1; + chars++; + } + + q = strrchr(p, '.'); + if (q == NULL) + q = p + strlen(p); + strncpy(out, p, size - 1); + if (q - p >= size) { + out[size - 1] = '\0'; + } else { + out[q - p] = '\0'; + } +} +# else void program_name(char *in, char *out, int size) - { - char *p; +{ + char *p; - p=strrchr(in,'/'); - if (p != NULL) - p++; - else - p=in; - BUF_strlcpy(out,p,size); - } -#endif + p = strrchr(in, '/'); + if (p != NULL) + p++; + else + p = in; + BUF_strlcpy(out, p, size); +} +# endif #endif int chopup_args(ARGS *arg, char *buf, int *argc, char **argv[]) - { - int num,i; - char *p; - - *argc=0; - *argv=NULL; - - i=0; - if (arg->count == 0) - { - arg->count=20; - arg->data=(char **)OPENSSL_malloc(sizeof(char *)*arg->count); - if (arg->data == NULL) - return 0; - } - for (i=0; icount; i++) - arg->data[i]=NULL; - - num=0; - p=buf; - for (;;) - { - /* first scan over white space */ - if (!*p) break; - while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) - p++; - if (!*p) break; - - /* The start of something good :-) */ - if (num >= arg->count) - { - char **tmp_p; - int tlen = arg->count + 20; - tmp_p = (char **)OPENSSL_realloc(arg->data, - sizeof(char *)*tlen); - if (tmp_p == NULL) - return 0; - arg->data = tmp_p; - arg->count = tlen; - /* initialize newly allocated data */ - for (i = num; i < arg->count; i++) - arg->data[i] = NULL; - } - arg->data[num++]=p; - - /* now look for the end of this */ - if ((*p == '\'') || (*p == '\"')) /* scan for closing quote */ - { - i= *(p++); - arg->data[num-1]++; /* jump over quote */ - while (*p && (*p != i)) - p++; - *p='\0'; - } - else - { - while (*p && ((*p != ' ') && - (*p != '\t') && (*p != '\n'))) - p++; - - if (*p == '\0') - p--; - else - *p='\0'; - } - p++; - } - *argc=num; - *argv=arg->data; - return(1); - } +{ + int num, i; + char *p; + + *argc = 0; + *argv = NULL; + + i = 0; + if (arg->count == 0) { + arg->count = 20; + arg->data = (char **)OPENSSL_malloc(sizeof(char *) * arg->count); + if (arg->data == NULL) + return 0; + } + for (i = 0; i < arg->count; i++) + arg->data[i] = NULL; + + num = 0; + p = buf; + for (;;) { + /* first scan over white space */ + if (!*p) + break; + while (*p && ((*p == ' ') || (*p == '\t') || (*p == '\n'))) + p++; + if (!*p) + break; + + /* The start of something good :-) */ + if (num >= arg->count) { + char **tmp_p; + int tlen = arg->count + 20; + tmp_p = (char **)OPENSSL_realloc(arg->data, + sizeof(char *) * tlen); + if (tmp_p == NULL) + return 0; + arg->data = tmp_p; + arg->count = tlen; + /* initialize newly allocated data */ + for (i = num; i < arg->count; i++) + arg->data[i] = NULL; + } + arg->data[num++] = p; + + /* now look for the end of this */ + if ((*p == '\'') || (*p == '\"')) { /* scan for closing quote */ + i = *(p++); + arg->data[num - 1]++; /* jump over quote */ + while (*p && (*p != i)) + p++; + *p = '\0'; + } else { + while (*p && ((*p != ' ') && (*p != '\t') && (*p != '\n'))) + p++; + + if (*p == '\0') + p--; + else + *p = '\0'; + } + p++; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable@FreeBSD.ORG Sat Mar 21 01:39:47 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0BE7E49; Sat, 21 Mar 2015 01:39:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91A14C16; Sat, 21 Mar 2015 01:39:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2L1dl14085388; Sat, 21 Mar 2015 01:39:47 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2L1dj0R085381; Sat, 21 Mar 2015 01:39:45 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201503210139.t2L1dj0R085381@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sat, 21 Mar 2015 01:39:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280309 - stable/10/sys/kern X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2015 01:39:47 -0000 Author: kib Date: Sat Mar 21 01:39:44 2015 New Revision: 280309 URL: https://svnweb.freebsd.org/changeset/base/280309 Log: MFC r279390: Change umtx_lock to be the sleepable mutex. Modified: stable/10/sys/kern/kern_exit.c stable/10/sys/kern/kern_kthread.c stable/10/sys/kern/kern_thr.c stable/10/sys/kern/kern_thread.c stable/10/sys/kern/kern_umtx.c stable/10/sys/kern/subr_witness.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/kern/kern_exit.c ============================================================================== --- stable/10/sys/kern/kern_exit.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/kern_exit.c Sat Mar 21 01:39:44 2015 (r280309) @@ -73,6 +73,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #ifdef KTRACE #include #endif @@ -637,6 +638,7 @@ exit1(struct thread *td, int rv) wakeup(p->p_pptr); cv_broadcast(&p->p_pwait); sched_exit(p->p_pptr, td); + umtx_thread_exit(td); PROC_SLOCK(p); p->p_state = PRS_ZOMBIE; PROC_UNLOCK(p->p_pptr); Modified: stable/10/sys/kern/kern_kthread.c ============================================================================== --- stable/10/sys/kern/kern_kthread.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/kern_kthread.c Sat Mar 21 01:39:44 2015 (r280309) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -339,6 +340,7 @@ kthread_exit(void) } LIST_REMOVE(curthread, td_hash); rw_wunlock(&tidhash_lock); + umtx_thread_exit(curthread); PROC_SLOCK(p); thread_exit(); } Modified: stable/10/sys/kern/kern_thr.c ============================================================================== --- stable/10/sys/kern/kern_thr.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/kern_thr.c Sat Mar 21 01:39:44 2015 (r280309) @@ -322,6 +322,7 @@ sys_thr_exit(struct thread *td, struct t LIST_REMOVE(td, td_hash); rw_wunlock(&tidhash_lock); tdsigcleanup(td); + umtx_thread_exit(td); PROC_SLOCK(p); thread_stopped(p); thread_exit(); Modified: stable/10/sys/kern/kern_thread.c ============================================================================== --- stable/10/sys/kern/kern_thread.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/kern_thread.c Sat Mar 21 01:39:44 2015 (r280309) @@ -414,7 +414,6 @@ thread_exit(void) #ifdef AUDIT AUDIT_SYSCALL_EXIT(0, td); #endif - umtx_thread_exit(td); /* * drop FPU & debug register state storage, or any other * architecture specific resources that @@ -863,6 +862,7 @@ thread_suspend_check(int return_instead) tidhash_remove(td); PROC_LOCK(p); tdsigcleanup(td); + umtx_thread_exit(td); PROC_SLOCK(p); thread_stopped(p); thread_exit(); Modified: stable/10/sys/kern/kern_umtx.c ============================================================================== --- stable/10/sys/kern/kern_umtx.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/kern_umtx.c Sat Mar 21 01:39:44 2015 (r280309) @@ -396,7 +396,7 @@ umtxq_sysinit(void *arg __unused) #ifdef UMTX_PROFILING umtx_init_profiling(); #endif - mtx_init(&umtx_lock, "umtx lock", NULL, MTX_SPIN); + mtx_init(&umtx_lock, "umtx lock", NULL, MTX_DEF); EVENTHANDLER_REGISTER(process_exec, umtx_exec_hook, NULL, EVENTHANDLER_PRI_ANY); } @@ -1832,9 +1832,9 @@ umtx_pi_claim(struct umtx_pi *pi, struct struct umtx_q *uq, *uq_owner; uq_owner = owner->td_umtxq; - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (pi->pi_owner == owner) { - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); return (0); } @@ -1842,7 +1842,7 @@ umtx_pi_claim(struct umtx_pi *pi, struct /* * userland may have already messed the mutex, sigh. */ - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); return (EPERM); } umtx_pi_setowner(pi, owner); @@ -1856,7 +1856,7 @@ umtx_pi_claim(struct umtx_pi *pi, struct sched_lend_user_prio(owner, pri); thread_unlock(owner); } - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); return (0); } @@ -1871,7 +1871,7 @@ umtx_pi_adjust(struct thread *td, u_char struct umtx_pi *pi; uq = td->td_umtxq; - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); /* * Pick up the lock that td is blocked on. */ @@ -1880,7 +1880,7 @@ umtx_pi_adjust(struct thread *td, u_char umtx_pi_adjust_thread(pi, td); umtx_repropagate_priority(pi); } - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); } /* @@ -1902,12 +1902,12 @@ umtxq_sleep_pi(struct umtx_q *uq, struct UMTXQ_LOCKED_ASSERT(uc); KASSERT(uc->uc_busy != 0, ("umtx chain is not busy")); umtxq_insert(uq); - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (pi->pi_owner == NULL) { - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); /* XXX Only look up thread in current process. */ td1 = tdfind(owner, curproc->p_pid); - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (td1 != NULL) { if (pi->pi_owner == NULL) umtx_pi_setowner(pi, td1); @@ -1931,20 +1931,20 @@ umtxq_sleep_pi(struct umtx_q *uq, struct td->td_flags |= TDF_UPIBLOCKED; thread_unlock(td); umtx_propagate_priority(td); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); umtxq_unbusy(&uq->uq_key); error = umtxq_sleep(uq, wmesg, timo); umtxq_remove(uq); - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); uq->uq_pi_blocked = NULL; thread_lock(td); td->td_flags &= ~TDF_UPIBLOCKED; thread_unlock(td); TAILQ_REMOVE(&pi->pi_blocked, uq, uq_lockq); umtx_repropagate_priority(pi); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); umtxq_unlock(&uq->uq_key); return (error); @@ -1976,7 +1976,7 @@ umtx_pi_unref(struct umtx_pi *pi) UMTXQ_LOCKED_ASSERT(uc); KASSERT(pi->pi_refcount > 0, ("invalid reference count")); if (--pi->pi_refcount == 0) { - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (pi->pi_owner != NULL) { TAILQ_REMOVE(&pi->pi_owner->td_umtxq->uq_pi_contested, pi, pi_link); @@ -1984,7 +1984,7 @@ umtx_pi_unref(struct umtx_pi *pi) } KASSERT(TAILQ_EMPTY(&pi->pi_blocked), ("blocked queue not empty")); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); TAILQ_REMOVE(&uc->uc_pi_list, pi, pi_hashlink); umtx_pi_free(pi); } @@ -2238,11 +2238,11 @@ do_unlock_pi(struct thread *td, struct u umtxq_busy(&key); count = umtxq_count_pi(&key, &uq_first); if (uq_first != NULL) { - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); pi = uq_first->uq_pi_blocked; KASSERT(pi != NULL, ("pi == NULL?")); if (pi->pi_owner != curthread) { - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); umtxq_unbusy(&key); umtxq_unlock(&key); umtx_key_release(&key); @@ -2268,7 +2268,7 @@ do_unlock_pi(struct thread *td, struct u thread_lock(curthread); sched_lend_user_prio(curthread, pri); thread_unlock(curthread); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); if (uq_first) umtxq_signal_thread(uq_first); } else { @@ -2285,10 +2285,10 @@ do_unlock_pi(struct thread *td, struct u * umtx_pi, and unlocked the umtxq. * If the current thread owns it, it must disown it. */ - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (pi->pi_owner == td) umtx_pi_disown(pi); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); } } umtxq_unlock(&key); @@ -2351,9 +2351,9 @@ do_lock_pp(struct thread *td, struct umu goto out; } - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (UPRI(td) < PRI_MIN_REALTIME + ceiling) { - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); error = EINVAL; goto out; } @@ -2364,7 +2364,7 @@ do_lock_pp(struct thread *td, struct umu sched_lend_user_prio(td, uq->uq_inherited_pri); thread_unlock(td); } - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); rv = casueword32(&m->m_owner, UMUTEX_CONTESTED, &owner, id | UMUTEX_CONTESTED); @@ -2405,7 +2405,7 @@ do_lock_pp(struct thread *td, struct umu umtxq_remove(uq); umtxq_unlock(&uq->uq_key); - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); uq->uq_inherited_pri = old_inherited_pri; pri = PRI_MAX; TAILQ_FOREACH(pi, &uq->uq_pi_contested, pi_link) { @@ -2420,11 +2420,11 @@ do_lock_pp(struct thread *td, struct umu thread_lock(td); sched_lend_user_prio(td, pri); thread_unlock(td); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); } if (error != 0) { - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); uq->uq_inherited_pri = old_inherited_pri; pri = PRI_MAX; TAILQ_FOREACH(pi, &uq->uq_pi_contested, pi_link) { @@ -2439,7 +2439,7 @@ do_lock_pp(struct thread *td, struct umu thread_lock(td); sched_lend_user_prio(td, pri); thread_unlock(td); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); } out: @@ -2511,7 +2511,7 @@ do_unlock_pp(struct thread *td, struct u if (error == -1) error = EFAULT; else { - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); if (su != 0) uq->uq_inherited_pri = new_inherited_pri; pri = PRI_MAX; @@ -2527,7 +2527,7 @@ do_unlock_pp(struct thread *td, struct u thread_lock(td); sched_lend_user_prio(td, pri); thread_unlock(td); - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); } umtx_key_release(&key); return (error); @@ -4102,13 +4102,13 @@ umtx_thread_cleanup(struct thread *td) if ((uq = td->td_umtxq) == NULL) return; - mtx_lock_spin(&umtx_lock); + mtx_lock(&umtx_lock); uq->uq_inherited_pri = PRI_MAX; while ((pi = TAILQ_FIRST(&uq->uq_pi_contested)) != NULL) { pi->pi_owner = NULL; TAILQ_REMOVE(&uq->uq_pi_contested, pi, pi_link); } - mtx_unlock_spin(&umtx_lock); + mtx_unlock(&umtx_lock); thread_lock(td); sched_lend_user_prio(td, PRI_MAX); thread_unlock(td); Modified: stable/10/sys/kern/subr_witness.c ============================================================================== --- stable/10/sys/kern/subr_witness.c Sat Mar 21 01:14:11 2015 (r280308) +++ stable/10/sys/kern/subr_witness.c Sat Mar 21 01:39:44 2015 (r280309) @@ -491,6 +491,11 @@ static struct witness_order_list_entry o { "time lock", &lock_class_mtx_sleep }, { NULL, NULL }, /* + * umtx + */ + { "umtx lock", &lock_class_mtx_sleep }, + { NULL, NULL }, + /* * Sockets */ { "accept", &lock_class_mtx_sleep }, @@ -642,7 +647,6 @@ static struct witness_order_list_entry o #endif { "process slock", &lock_class_mtx_spin }, { "sleepq chain", &lock_class_mtx_spin }, - { "umtx lock", &lock_class_mtx_spin }, { "rm_spinlock", &lock_class_mtx_spin }, { "turnstile chain", &lock_class_mtx_spin }, { "turnstile lock", &lock_class_mtx_spin }, From owner-svn-src-stable@FreeBSD.ORG Sat Mar 21 19:20:18 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70BFA806; Sat, 21 Mar 2015 19:20:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52712D1B; Sat, 21 Mar 2015 19:20:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2LJKISj074204; Sat, 21 Mar 2015 19:20:18 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2LJKHs5074202; Sat, 21 Mar 2015 19:20:17 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201503211920.t2LJKHs5074202@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 21 Mar 2015 19:20:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r280329 - in stable: 10/share/mk 9/share/mk X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2015 19:20:18 -0000 Author: dim Date: Sat Mar 21 19:20:15 2015 New Revision: 280329 URL: https://svnweb.freebsd.org/changeset/base/280329 Log: MFC r279980: Allow relative pathnames in SRCS, so as to enable building software which includes more than one file with the same name, in different directories. For example, setting: SRCS+= foo/foo.c bar/foo.c baz/foo.c will now create separate objdirs 'foo', 'bar' and 'baz' for each of the sources in the list, and use those objdirs for the corresponding object files. Reviewed by: brooks, imp Differential Revision: https://reviews.freebsd.org/D1984 Modified: stable/10/share/mk/bsd.obj.mk stable/10/share/mk/sys.mk Directory Properties: stable/10/ (props changed) Changes in other areas also in this revision: Modified: stable/9/share/mk/bsd.obj.mk stable/9/share/mk/sys.mk Directory Properties: stable/9/ (props changed) stable/9/share/ (props changed) stable/9/share/mk/ (props changed) Modified: stable/10/share/mk/bsd.obj.mk ============================================================================== --- stable/10/share/mk/bsd.obj.mk Sat Mar 21 19:13:13 2015 (r280328) +++ stable/10/share/mk/bsd.obj.mk Sat Mar 21 19:20:15 2015 (r280329) @@ -89,6 +89,16 @@ obj: .PHONY fi; \ ${ECHO} "${CANONICALOBJDIR} created for ${.CURDIR}"; \ fi +.for dir in ${SRCS:H:O:u} + @if ! test -d ${CANONICALOBJDIR}/${dir}/; then \ + mkdir -p ${CANONICALOBJDIR}/${dir}; \ + if ! test -d ${CANONICALOBJDIR}/${dir}/; then \ + ${ECHO} "Unable to create ${CANONICALOBJDIR}/${dir}."; \ + exit 1; \ + fi; \ + ${ECHO} "${CANONICALOBJDIR}/${dir} created for ${.CURDIR}"; \ + fi +.endfor .endif .if !target(objlink) Modified: stable/10/share/mk/sys.mk ============================================================================== --- stable/10/share/mk/sys.mk Sat Mar 21 19:13:13 2015 (r280328) +++ stable/10/share/mk/sys.mk Sat Mar 21 19:20:15 2015 (r280329) @@ -244,21 +244,21 @@ YFLAGS ?= -d ${CTFCONVERT_CMD} .c.o: - ${CC} ${CFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .cc .cpp .cxx .C: ${CXX} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET} .cc.o .cpp.o .cxx.o .C.o: - ${CXX} ${CXXFLAGS} -c ${.IMPSRC} + ${CXX} ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET} .m.o: - ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} + ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .p.o: - ${PC} ${PFLAGS} -c ${.IMPSRC} + ${PC} ${PFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .e .r .F .f: @@ -266,14 +266,15 @@ YFLAGS ?= -d -o ${.TARGET} .e.o .r.o .F.o .f.o: - ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} + ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} -o ${.TARGET} .S.o: - ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .asm.o: - ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} \ + -o ${.TARGET} ${CTFCONVERT_CMD} .s.o: From owner-svn-src-stable@FreeBSD.ORG Sat Mar 21 19:20:17 2015 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5557F805; Sat, 21 Mar 2015 19:20:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36F6ED1A; Sat, 21 Mar 2015 19:20:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2LJKHm0074197; Sat, 21 Mar 2015 19:20:17 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2LJKGt8074195; Sat, 21 Mar 2015 19:20:16 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201503211920.t2LJKGt8074195@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 21 Mar 2015 19:20:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r280329 - in stable: 10/share/mk 9/share/mk X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Mar 2015 19:20:17 -0000 Author: dim Date: Sat Mar 21 19:20:15 2015 New Revision: 280329 URL: https://svnweb.freebsd.org/changeset/base/280329 Log: MFC r279980: Allow relative pathnames in SRCS, so as to enable building software which includes more than one file with the same name, in different directories. For example, setting: SRCS+= foo/foo.c bar/foo.c baz/foo.c will now create separate objdirs 'foo', 'bar' and 'baz' for each of the sources in the list, and use those objdirs for the corresponding object files. Reviewed by: brooks, imp Differential Revision: https://reviews.freebsd.org/D1984 Modified: stable/9/share/mk/bsd.obj.mk stable/9/share/mk/sys.mk Directory Properties: stable/9/ (props changed) stable/9/share/ (props changed) stable/9/share/mk/ (props changed) Changes in other areas also in this revision: Modified: stable/10/share/mk/bsd.obj.mk stable/10/share/mk/sys.mk Directory Properties: stable/10/ (props changed) Modified: stable/9/share/mk/bsd.obj.mk ============================================================================== --- stable/9/share/mk/bsd.obj.mk Sat Mar 21 19:13:13 2015 (r280328) +++ stable/9/share/mk/bsd.obj.mk Sat Mar 21 19:20:15 2015 (r280329) @@ -89,6 +89,16 @@ obj: .PHONY fi; \ ${ECHO} "${CANONICALOBJDIR} created for ${.CURDIR}"; \ fi +.for dir in ${SRCS:H:O:u} + @if ! test -d ${CANONICALOBJDIR}/${dir}/; then \ + mkdir -p ${CANONICALOBJDIR}/${dir}; \ + if ! test -d ${CANONICALOBJDIR}/${dir}/; then \ + ${ECHO} "Unable to create ${CANONICALOBJDIR}/${dir}."; \ + exit 1; \ + fi; \ + ${ECHO} "${CANONICALOBJDIR}/${dir} created for ${.CURDIR}"; \ + fi +.endfor .endif .if !target(objlink) Modified: stable/9/share/mk/sys.mk ============================================================================== --- stable/9/share/mk/sys.mk Sat Mar 21 19:13:13 2015 (r280328) +++ stable/9/share/mk/sys.mk Sat Mar 21 19:20:15 2015 (r280329) @@ -231,21 +231,21 @@ YFLAGS ?= -d ${CTFCONVERT_CMD} .c.o: - ${CC} ${CFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .cc .cpp .cxx .C: ${CXX} ${CXXFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET} .cc.o .cpp.o .cxx.o .C.o: - ${CXX} ${CXXFLAGS} -c ${.IMPSRC} + ${CXX} ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET} .m.o: - ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} + ${OBJC} ${OBJCFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .p.o: - ${PC} ${PFLAGS} -c ${.IMPSRC} + ${PC} ${PFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .e .r .F .f: @@ -253,14 +253,15 @@ YFLAGS ?= -d -o ${.TARGET} .e.o .r.o .F.o .f.o: - ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} + ${FC} ${RFLAGS} ${EFLAGS} ${FFLAGS} -c ${.IMPSRC} -o ${.TARGET} .S.o: - ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} -o ${.TARGET} ${CTFCONVERT_CMD} .asm.o: - ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} + ${CC} -x assembler-with-cpp ${CFLAGS} ${ACFLAGS} -c ${.IMPSRC} \ + -o ${.TARGET} ${CTFCONVERT_CMD} .s.o: