]> granicus.if.org Git - strace/commitdiff
Move parser of 'X' type ioctls to a separate file
authorDmitry V. Levin <ldv@altlinux.org>
Thu, 26 May 2016 00:37:26 +0000 (00:37 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Thu, 26 May 2016 14:44:13 +0000 (14:44 +0000)
* fs_x_ioctl.c: New file.
* Makefile.am (strace_SOURCES): Add it.
* block.c: (block_ioctl): Move parser of FITRIM, FIFREEZE, and FITHAW
to fs_x_ioctl.c.
* defs.h (fs_x_ioctl): New prototype.
* ioctl.c (ioctl_decode): Call fs_x_ioctl for ioctl type 'X'.

Makefile.am
block.c
defs.h
fs_x_ioctl.c [new file with mode: 0644]
ioctl.c

index 5783ab1ff9b780284ac1d878412b180c6b26974c..052cb21fadc3ff795efa37e475d9d68057b56e18 100644 (file)
@@ -112,6 +112,7 @@ strace_SOURCES =    \
        file.c          \
        file_handle.c   \
        file_ioctl.c    \
+       fs_x_ioctl.c    \
        flock.c         \
        flock.h         \
        futex.c         \
diff --git a/block.c b/block.c
index 70c2cc984bbba30e2e4f451c0e07f240503767e3..f4fefe2840009b219d5a6294acf2e0af9b273339 100644 (file)
--- a/block.c
+++ b/block.c
@@ -240,33 +240,12 @@ block_ioctl(struct tcb *tcp, const unsigned int code, const long arg)
                        break;
                }
 
-#ifdef FITRIM
-       /* First seen in linux-2.6.37 */
-       case FITRIM: {
-               struct fstrim_range fstrim;
-
-               tprints(", ");
-               if (!umove_or_printaddr(tcp, arg, &fstrim))
-                       tprintf("{start=%#" PRIx64 ", "
-                               "len=%#" PRIx64 ", "
-                               "minlen=%#" PRIx64 "}",
-                               (uint64_t) fstrim.start,
-                               (uint64_t) fstrim.len,
-                               (uint64_t) fstrim.minlen);
-               break;
-       }
-#endif
-
        /* No arguments */
        case BLKRRPART:
        case BLKFLSBUF:
        case BLKTRACESTART:
        case BLKTRACESTOP:
        case BLKTRACETEARDOWN:
-#ifdef FIFREEZE
-       case FIFREEZE:
-       case FITHAW:
-#endif
                break;
        default:
                return RVAL_DECODED;
diff --git a/defs.h b/defs.h
index 4cc31bd3d117ee00ebaf0a331ac2f2dee7547084..3918087711469d074ed7c4276b703d0459d231b9 100644 (file)
--- a/defs.h
+++ b/defs.h
@@ -662,6 +662,7 @@ extern void print_struct_statfs64(struct tcb *tcp, long, unsigned long);
 extern int block_ioctl(struct tcb *, const unsigned int, long);
 extern int evdev_ioctl(struct tcb *, const unsigned int, long);
 extern int file_ioctl(struct tcb *, const unsigned int, long);
+extern int fs_x_ioctl(struct tcb *, const unsigned int, long);
 extern int hdio_ioctl(struct tcb *, const unsigned int, long);
 extern int loop_ioctl(struct tcb *, const unsigned int, long);
 extern int mtd_ioctl(struct tcb *, const unsigned int, long);
diff --git a/fs_x_ioctl.c b/fs_x_ioctl.c
new file mode 100644 (file)
index 0000000..7403e6b
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2014 Mike Frysinger <vapier@gentoo.org>
+ * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    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 the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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.
+ */
+
+#include "defs.h"
+#include <linux/fs.h>
+
+int
+fs_x_ioctl(struct tcb *tcp, const unsigned int code, const long arg)
+{
+       switch (code) {
+#ifdef FITRIM
+       /* First seen in linux-2.6.37 */
+       case FITRIM: {
+               struct fstrim_range fstrim;
+
+               tprints(", ");
+               if (!umove_or_printaddr(tcp, arg, &fstrim))
+                       tprintf("{start=%#" PRIx64
+                               ", len=%#" PRIx64
+                               ", minlen=%#" PRIx64 "}",
+                               (uint64_t) fstrim.start,
+                               (uint64_t) fstrim.len,
+                               (uint64_t) fstrim.minlen);
+               break;
+       }
+#endif
+
+       /* No arguments */
+#ifdef FIFREEZE
+       case FIFREEZE:
+       case FITHAW:
+               break;
+#endif
+
+       default:
+               return RVAL_DECODED;
+       }
+
+       return RVAL_DECODED | 1;
+}
diff --git a/ioctl.c b/ioctl.c
index c51833323ba1905d3c27f3dbbac61c7f5b0b08d1..495fb3c7914ab9a87a2b84729bc40ff39c14ad5e 100644 (file)
--- a/ioctl.c
+++ b/ioctl.c
@@ -252,8 +252,9 @@ ioctl_decode(struct tcb *tcp)
        case 0x03:
                return hdio_ioctl(tcp, code, arg);
        case 0x12:
-       case 'X':
                return block_ioctl(tcp, code, arg);
+       case 'X':
+               return fs_x_ioctl(tcp, code, arg);
 #ifdef HAVE_SCSI_SG_H
        case 0x22:
                return scsi_ioctl(tcp, code, arg);