]> granicus.if.org Git - strace/blobdiff - bjm.c
Include <sys/uio.h> unconditionally
[strace] / bjm.c
diff --git a/bjm.c b/bjm.c
index 6f1ee57a4fdf56444a9a5a090292bb66e5a36ea3..b34c6ed71ecfae7eee8cea10188b7b2418e576f1 100644 (file)
--- a/bjm.c
+++ b/bjm.c
@@ -69,26 +69,9 @@ struct module_info
        long usecount;
 };
 
-static const struct xlat which[] = {
-       XLAT(0),
-       XLAT(QM_MODULES),
-       XLAT(QM_DEPS),
-       XLAT(QM_REFS),
-       XLAT(QM_SYMBOLS),
-       XLAT(QM_INFO),
-       XLAT_END
-};
-
-static const struct xlat modflags[] = {
-       XLAT(MOD_UNINITIALIZED),
-       XLAT(MOD_RUNNING),
-       XLAT(MOD_DELETED),
-       XLAT(MOD_AUTOCLEAN),
-       XLAT(MOD_VISITED),
-       XLAT(MOD_USED_ONCE),
-       XLAT(MOD_JUST_FREED),
-       XLAT_END
-};
+#include "xlat/qm_which.h"
+#include "xlat/modflags.h"
+#include "xlat/delete_module_flags.h"
 
 int
 sys_query_module(struct tcb *tcp)
@@ -96,7 +79,7 @@ sys_query_module(struct tcb *tcp)
        if (entering(tcp)) {
                printstr(tcp, tcp->u_arg[0], -1);
                tprints(", ");
-               printxval(which, tcp->u_arg[1], "QM_???");
+               printxval(qm_which, tcp->u_arg[1], "QM_???");
                tprints(", ");
        } else {
                size_t ret;
@@ -191,6 +174,17 @@ sys_create_module(struct tcb *tcp)
        return RVAL_HEX;
 }
 
+int
+sys_delete_module(struct tcb *tcp)
+{
+       if (entering(tcp)) {
+               printstr(tcp, tcp->u_arg[0], -1);
+               tprints(", ");
+               printflags(delete_module_flags, tcp->u_arg[1], "O_???");
+       }
+       return 0;
+}
+
 int
 sys_init_module(struct tcb *tcp)
 {
@@ -200,3 +194,26 @@ sys_init_module(struct tcb *tcp)
        }
        return 0;
 }
+
+#define MODULE_INIT_IGNORE_MODVERSIONS  1
+#define MODULE_INIT_IGNORE_VERMAGIC     2
+
+#include "xlat/module_init_flags.h"
+
+int
+sys_finit_module(struct tcb *tcp)
+{
+       if (exiting(tcp))
+               return 0;
+
+       /* file descriptor */
+       printfd(tcp, tcp->u_arg[0]);
+       tprints(", ");
+       /* param_values */
+       printstr(tcp, tcp->u_arg[1], -1);
+       tprints(", ");
+       /* flags */
+       printflags(module_init_flags, tcp->u_arg[2], "MODULE_INIT_???");
+
+       return 0;
+}