<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>a6dbe3721eb3b5990707fc3e378c95e505dd8ab5 - update Intel copyright notices</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#a6dbe3721eb3b5990707fc3e378c95e505dd8ab5</link>
        <description>update Intel copyright noticesper Intel policy to include file commit date using git cmdbelow.  The policy does not apply to non-Intel (C) notices.git log --follow -C90% --format=%ad --date default &lt;file&gt; | tail -1and then pull just the 4 digit year from the result.Intel copyrights were not added to files where Intel either hadno contribution ot the contribution lacked substance (ie licenseheader updates, formatting changes, etc).  Contribution date used&quot;--follow -C95%&quot; to get the most accurate date.Note that several files in this patch didn&apos;t end the license/(c)block with a blank comment line so these were added as the vastmajority of files do have this last blank line.  Simply there forconsistency.Signed-off-by: paul luse &lt;paul.e.luse@intel.com&gt;Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Community-CI: Mellanox Build Bot

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Tue, 01 Nov 2022 20:26:26 +0000</pubDate>
        <dc:creator>paul luse &lt;paul.e.luse@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ce57899f2d00d02c0a1545e1eca4dfa6b5e7af17 - test/llvm_vfio_fuzz: initial commit for vfio-user fuzzer</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#ce57899f2d00d02c0a1545e1eca4dfa6b5e7af17</link>
        <description>test/llvm_vfio_fuzz: initial commit for vfio-user fuzzerThis patch add tests that focus on fuzzing the control path ofvfio-user by imitate a misbehaving virtual machine. Test versionnegotiationChange-Id: I7179aad85d9181a1eb4d7f8805d030fcc775ed2cSigned-off-by: Sebastian Brzezinka &lt;sebastian.brzezinka@intel.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13819Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Fri, 29 Jul 2022 06:57:35 +0000</pubDate>
        <dc:creator>Sebastian Brzezinka &lt;sebastian.brzezinka@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>488570ebd418ba07c9e69e65106dcc964f3bb41b - Replace most BSD 3-clause license text with SPDX identifier.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#488570ebd418ba07c9e69e65106dcc964f3bb41b</link>
        <description>Replace most BSD 3-clause license text with SPDX identifier.Many open source projects have moved to using SPDX identifiersto specify license information, reducing the amount ofboilerplate code in every source file.  This patch replacesthe bulk of SPDK .c, .cpp and Makefiles with the BSD-3-Clauseidentifier.Almost all of these files share the exact same license text,and this patch only modifies the files that contain themost common license text.  There can be slight variationsbecause the third clause contains company names - most say&quot;Intel Corporation&quot;, but there are instances for Nvidia,Samsung, Eideticom and even &quot;the copyright holder&quot;.Used a bash script to automate replacement of the license textwith SPDX identifier which is checked into scripts/spdx.sh.Signed-off-by: Jim Harris &lt;james.r.harris@intel.com&gt;Change-Id: Iaa88ab5e92ea471691dc298cfe41ebfb5d169780Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12904Community-CI: Broadcom CI &lt;spdk-ci.pdl@broadcom.com&gt;Community-CI: Mellanox Build BotTested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Aleksey Marchuk &lt;alexeymar@nvidia.com&gt;Reviewed-by: Changpeng Liu &lt;changpeng.liu@intel.com&gt;Reviewed-by: Dong Yi &lt;dongx.yi@intel.com&gt;Reviewed-by: Konrad Sztyber &lt;konrad.sztyber@intel.com&gt;Reviewed-by: Paul Luse &lt;paul.e.luse@intel.com&gt;Reviewed-by: &lt;qun.wan@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Fri, 03 Jun 2022 19:15:11 +0000</pubDate>
        <dc:creator>Jim Harris &lt;james.r.harris@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>050565e5abeb1073d8777a329df385598b1a8953 - test/nvmf: fuzz nvmf target using LLVM&apos;s libFuzzer</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#050565e5abeb1073d8777a329df385598b1a8953</link>
        <description>test/nvmf: fuzz nvmf target using LLVM&apos;s libFuzzerLLVM provides libFuzzer which does coverage-guidedfuzzing of a library or application under test.  ForSPDK, we can use this as a new and better way togenerate random commands to the SPDK nvmf target.By default, libFuzzer provides the main() and yoursource file just provides the function called byLLVM for each iteration of random data.  But thisdoesn&apos;t really work for SPDK since we need to startthe app framework and the nvmf target.  So wespecify -fsanitizer=fuzzer-no-link, explicitlyspecify the location of the fuzzer_no_main libraryand then call LLVMFuzzerRunDriver to start thefuzzing process once we are ready.Since this is all coverage-guided, we invoke thefuzzer inside the nvmf target application.  So thispatch creates a new target application called&apos;llvm_nvme_fuzz&apos;. One core is needed to run thenvmf target, then we spawn a pthread to run thefuzzer against it.Currently there are two fuzzers defined.  Fuzzer 0does random testing of admin commands.  Fuzzer 1is focused solely on GET_LOG_PAGE and fuzzes asmaller subset of the bytes in the spdk_nvme_cmd.Additional fuzzers can be added in the future forother commands, testing I/O queues, data payloads,etc.You do need to specify CC and CXX when runningconfigure, as well as specify the location of thespecial clang_rt.fuzz_no_main library. The path ofthat library is dependent on your clang version andarchitecture. If using clang-12 on x86_64 platform,it will look like:CC=clang-12 CXX=clang++-12 ./configure --with-fuzzer= \  /usr/lib/llvm-12/lib/clang/12.0.0/lib/linux/libclang_rt.fuzzer_no_main-x86_64.aThen just do the following to demonstrate the fuzzertool.maketest/nvmf/target/llvm_nvme_fuzz.sh --time=60 --fuzzer=0Signed-off-by: Jim Harris &lt;james.r.harris@intel.com&gt;Change-Id: Iee0997501893ac284a3947a1db7a155c5ceb7849Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10038Reviewed-by: Changpeng Liu &lt;changpeng.liu@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Fri, 15 Oct 2021 21:54:52 +0000</pubDate>
        <dc:creator>Jim Harris &lt;james.r.harris@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>bb5567496fcb3a8b3430d82e014f0e6c71feba4c - test/iscsi: add application for target fuzz testing.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#bb5567496fcb3a8b3430d82e014f0e6c71feba4c</link>
        <description>test/iscsi: add application for target fuzz testing.Enables us to test randomized data against the iSCSI target interface.Change-Id: I56bd5bcd936b92ba152d4d5678d7124b3165c03cSigned-off-by: Hailiang Wang &lt;hailiangx.e.wang@intel.com&gt;Signed-off-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/509Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Thu, 10 Oct 2019 09:38:49 +0000</pubDate>
        <dc:creator>Hailiang Wang &lt;hailiangx.e.wang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>12ae64f863cb112fa39bfb31586e729c777e6631 - Revert &quot;test/iscsi: add application for target fuzz testing.&quot;</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#12ae64f863cb112fa39bfb31586e729c777e6631</link>
        <description>Revert &quot;test/iscsi: add application for target fuzz testing.&quot;This reverts commit 4700ef0fa654c17c9161e0fe0a8d4c7d30db9bea.This has merge conflicts with the iSCSI async write patchseries that was merged.Signed-off-by: Jim Harris &lt;james.r.harris@intel.com&gt;Change-Id: I5a27460a369ef5f13bf490a287603e566071be40Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/482482

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Wed, 22 Jan 2020 21:38:44 +0000</pubDate>
        <dc:creator>Jim Harris &lt;james.r.harris@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4700ef0fa654c17c9161e0fe0a8d4c7d30db9bea - test/iscsi: add application for target fuzz testing.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#4700ef0fa654c17c9161e0fe0a8d4c7d30db9bea</link>
        <description>test/iscsi: add application for target fuzz testing.Enables us to test randomized data against the iSCSI target interface.Change-Id: I9ff9a06c11bb16b315686156b27855664f21bd48Signed-off-by: Hailiang Wang &lt;hailiangx.e.wang@intel.com&gt;Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/470925Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Reviewed-by: Seth Howell &lt;seth.howell@intel.com&gt;Reviewed-by: Jim Harris &lt;james.r.harris@intel.com&gt;Community-CI: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Thu, 10 Oct 2019 09:38:49 +0000</pubDate>
        <dc:creator>Hailiang Wang &lt;hailiangx.e.wang@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>66203a88d649a2411e851f8f82941a72445c3cf6 - test: add a fuzzer for the vhost API</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#66203a88d649a2411e851f8f82941a72445c3cf6</link>
        <description>test: add a fuzzer for the vhost APIUsing the vhost_user API on the initiator side, we can craft arbitraryrequests to fuzz the vhost target APIs. This script currently supportsvhost_blk, but will support both vhost_blk and vhost_scsi.Change-Id: I7f0af6ca2adabbc18b7029ea77b33f47fce9c16bSigned-off-by: Seth Howell &lt;seth.howell@intel.com&gt;Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/454682Reviewed-by: Darek Stojaczyk &lt;dariusz.stojaczyk@intel.com&gt;Reviewed-by: Shuhei Matsumoto &lt;shuhei.matsumoto.xt@hitachi.com&gt;Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Wed, 15 May 2019 22:49:30 +0000</pubDate>
        <dc:creator>Seth Howell &lt;seth.howell@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>733262359af5aefa866c3da01736802c6469174f - test/nvmf: add application for target fuzz testing.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/spdk/test/app/fuzz/Makefile#733262359af5aefa866c3da01736802c6469174f</link>
        <description>test/nvmf: add application for target fuzz testing.Enables us to test randomized data against the NVMe-oF target interface.Change-Id: Ie7ab46949ccd89f74b10b79a24256aeae2df89abSigned-off-by: Seth Howell &lt;seth.howell@intel.com&gt;Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/431571Tested-by: SPDK CI Jenkins &lt;sys_sgci@intel.com&gt;Reviewed-by: Hailiang Wang &lt;hailiangx.e.wang@intel.com&gt;Reviewed-by: Ben Walker &lt;benjamin.walker@intel.com&gt;Reviewed-by: qun wan &lt;qun.wan@intel.com&gt;Reviewed-by: Darek Stojaczyk &lt;dariusz.stojaczyk@intel.com&gt;

            List of files:
            /spdk/test/app/fuzz/Makefile</description>
        <pubDate>Wed, 31 Oct 2018 21:53:50 +0000</pubDate>
        <dc:creator>Seth Howell &lt;seth.howell@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
