Skip to content

Commit

Permalink
mipush fake
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyZhang023 committed Jan 19, 2020
1 parent 437cb32 commit 8a2714e
Show file tree
Hide file tree
Showing 26 changed files with 4,207 additions and 4 deletions.
2 changes: 1 addition & 1 deletion module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {

def moduleId = "mipush_fake"
def moduleProp = [
name : "MiPushFakeForRiru",
name : "MiPushFake",
version : "v12.0",
versionCode: "12",
author : "Timothy",
Expand Down
34 changes: 31 additions & 3 deletions module/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
cmake_minimum_required(VERSION 3.4.1)

set(MODULE_NAME "mipush_fake")
set(MODULE_NAME "riru_mipush_fake")

SET(XHOOK_PATH ${CMAKE_CURRENT_SOURCE_DIR}/external/xhook/)


INCLUDE_DIRECTORIES(
${CMAKE_CURRENT_SOURCE_DIR}/include
${XHOOK_PATH}/include
)

LINK_DIRECTORIES(
${XHOOK_PATH}/lib/
)

message("Build type: ${CMAKE_BUILD_TYPE}")

Expand All @@ -22,6 +34,22 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${C_FLAGS}")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${LINKER_FLAGS}")
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${LINKER_FLAGS}")

add_library(${MODULE_NAME} SHARED main.cpp)
target_link_libraries(${MODULE_NAME} log)

SET(XHOOK_OBJS
external/xhook/xhook.c
external/xhook/xh_core.c
external/xhook/xh_elf.c
external/xhook/xh_jni.c
external/xhook/xh_log.c
external/xhook/xh_util.c
external/xhook/xh_version.c
)
ADD_LIBRARY(libxhook STATIC ${XHOOK_OBJS})
set_target_properties(libxhook PROPERTIES LINKER_LANGUAGE CXX C_STANDARD 11 OUTPUT_NAME "xhook")


add_library(${MODULE_NAME} SHARED hook.cpp riru.c main.cpp)
target_link_libraries(${MODULE_NAME} log libxhook)
set_target_properties(${MODULE_NAME} PROPERTIES LINK_FLAGS_RELEASE -s)


15 changes: 15 additions & 0 deletions module/src/main/cpp/external/Android.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := xhook
LOCAL_SRC_FILES := xhook/xhook.c \
xhook/xh_core.c \
xhook/xh_elf.c \
xhook/xh_jni.c \
xhook/xh_log.c \
xhook/xh_util.c \
xhook/xh_version.c
LOCAL_C_INCLUDES := $(LOCAL_PATH)
LOCAL_CFLAGS := -Wall -Wextra -Werror -fvisibility=hidden
LOCAL_CONLYFLAGS := -std=c11
include $(BUILD_STATIC_LIBRARY)
50 changes: 50 additions & 0 deletions module/src/main/cpp/external/xhook/include/xhook.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright (c) 2018-present, iQIYI, Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//

// Created by caikelun on 2018-04-11.

#ifndef XHOOK_H
#define XHOOK_H 1

#ifdef __cplusplus
extern "C" {
#endif

#define XHOOK_EXPORT __attribute__((visibility("default")))

int xhook_register(const char *pathname_regex_str, const char *symbol,
void *new_func, void **old_func) XHOOK_EXPORT;

int xhook_ignore(const char *pathname_regex_str, const char *symbol) XHOOK_EXPORT;

int xhook_refresh(int async) XHOOK_EXPORT;

void xhook_clear() XHOOK_EXPORT;

void xhook_enable_debug(int flag) XHOOK_EXPORT;

void xhook_enable_sigsegv_protection(int flag) XHOOK_EXPORT;

#ifdef __cplusplus
}
#endif

#endif
Loading

0 comments on commit 8a2714e

Please sign in to comment.