()
| 378 | } |
| 379 | |
| 380 | func (this *MSyscall) updateFilter() (err error) { |
| 381 | this.update_base_config() |
| 382 | this.update_common_filter() |
| 383 | this.update_child_parent() |
| 384 | this.update_thread_filter() |
| 385 | this.update_arg_filter() |
| 386 | this.update_sysenter_point_args() |
| 387 | this.update_sysexit_point_args() |
| 388 | this.update_op_list() |
| 389 | this.update_common_list(this.mconf.SysCallConf.SysWhitelist, util.SYS_WHITELIST_START) |
| 390 | this.update_common_list(this.mconf.SysCallConf.SysBlacklist, util.SYS_BLACKLIST_START) |
| 391 | if this.mconf.Debug { |
| 392 | this.logger.Printf("SysCallConf:%s", this.mconf.SysCallConf.Info()) |
| 393 | } |
| 394 | |
| 395 | return nil |
| 396 | } |
| 397 | |
| 398 | func (this *MSyscall) initDecodeFun() error { |
| 399 |
no test coverage detected