summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper/fortify2-example.c
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/cc-wrapper/fortify2-example.c')
-rw-r--r--pkgs/test/cc-wrapper/fortify2-example.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/test/cc-wrapper/fortify2-example.c b/pkgs/test/cc-wrapper/fortify2-example.c
new file mode 100644
index 00000000000..dfb5a8e8729
--- /dev/null
+++ b/pkgs/test/cc-wrapper/fortify2-example.c
@@ -0,0 +1,16 @@
+/* an example that should be protected by FORTIFY_SOURCE=2 but
+ * not FORTIFY_SOURCE=1 */
+#include <stdio.h>
+#include <string.h>
+
+struct buffer_with_pad {
+    char buffer[7];
+    char pad[25];
+};
+
+int main(int argc, char *argv[]) {
+    struct buffer_with_pad b;
+    strcpy(b.buffer, argv[1]);
+    puts(b.buffer);
+    return 0;
+}