mpatch

package module
v1.0.7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 16, 2023 License: MIT Imports: 7 Imported by: 8

README

go-mpatch

Go library for monkey patching

Compatibility

  • Go version: tested from go1.7 to go1.20
  • Architectures: x86, amd64, arm64 (ARM64 not supported on macos)
  • Operating systems: tested in macos, linux and windows.
ARM64 support

The support for ARM64 have some caveats. For example:

  • On Windows 11 ARM64 works like any other platform, we test it with tiny methods and worked correctly.
  • On Linux ARM64 the minimum target and source method size must be > 24 bytes. This means a simple 1 liner method will silently fail. In our tests we have methods at least with 3 lines and works correctly (beware of the compiler optimizations). This doesn't happen in any other platform because the assembly code we emit is really short (x64: 12 bytes / x86: 7 bytes), but for ARM64 is exactly 24 bytes.
  • On MacOS ARM64 the patching fails with EACCES: permission denied when calling syscall.Mprotect. There's no current workaround for this issue, if you use an Apple Silicon Mac you can use a docker container or docker dev environment.

Features

  • Can patch package functions, instance functions (by pointer or by value), and create new functions from scratch.

Limitations

  • Target functions could be inlined, making those functions unpatcheables. You can use //go:noinline directive or build with the gcflags=-l to disable inlining at compiler level.

  • Write permission to memory pages containing executable code is needed, some operating systems could restrict this access.

  • Not thread safe.

Usage

Patching a func
//go:noinline
func methodA() int { return 1 }

//go:noinline
func methodB() int { return 2 }

func TestPatcher(t *testing.T) {
	patch, err := mpatch.PatchMethod(methodA, methodB)
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 2 {
		t.Fatal("The patch did not work")
	}

	err = patch.Unpatch()
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 1 {
		t.Fatal("The unpatch did not work")
	}
}
Patching using reflect.ValueOf
//go:noinline
func methodA() int { return 1 }

//go:noinline
func methodB() int { return 2 }

func TestPatcherUsingReflect(t *testing.T) {
	reflectA := reflect.ValueOf(methodA)
	patch, err := mPatch.PatchMethodByReflectValue(reflectA, methodB)
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 2 {
		t.Fatal("The patch did not work")
	}

	err = patch.Unpatch()
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 1 {
		t.Fatal("The unpatch did not work")
	}
}
Patching creating a new func at runtime
//go:noinline
func methodA() int { return 1 }

func TestPatcherUsingMakeFunc(t *testing.T) {
	reflectA := reflect.ValueOf(methodA)
	patch, err := PatchMethodWithMakeFuncValue(reflectA,
		func(args []reflect.Value) (results []reflect.Value) {
			return []reflect.Value{reflect.ValueOf(42)}
		})
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 42 {
		t.Fatal("The patch did not work")
	}

	err = patch.Unpatch()
	if err != nil {
		t.Fatal(err)
	}
	if methodA() != 1 {
		t.Fatal("The unpatch did not work")
	}
}
Patching an instance func
type myStruct struct {
}

//go:noinline
func (s *myStruct) Method() int {
	return 1
}

func TestInstancePatcher(t *testing.T) {
	mStruct := myStruct{}

	var patch *Patch
	var err error
	patch, err = PatchInstanceMethodByName(reflect.TypeOf(mStruct), "Method", func(m *myStruct) int {
		patch.Unpatch()
		defer patch.Patch()
		return 41 + m.Method()
	})
	if err != nil {
		t.Fatal(err)
	}

	if mStruct.Method() != 42 {
		t.Fatal("The patch did not work")
	}
	err = patch.Unpatch()
	if err != nil {
		t.Fatal(err)
	}
	if mStruct.Method() != 1 {
		t.Fatal("The unpatch did not work")
	}
}
Patching an instance func by Value
type myStruct struct {
}

//go:noinline
func (s myStruct) ValueMethod() int {
	return 1
}

func TestInstanceValuePatcher(t *testing.T) {
	mStruct := myStruct{}

	var patch *Patch
	var err error
	patch, err = PatchInstanceMethodByName(reflect.TypeOf(mStruct), "ValueMethod", func(m myStruct) int {
		patch.Unpatch()
		defer patch.Patch()
		return 41 + m.Method()
	})
	if err != nil {
		t.Fatal(err)
	}

	if mStruct.ValueMethod() != 42 {
		t.Fatal("The patch did not work")
	}
	err = patch.Unpatch()
	if err != nil {
		t.Fatal(err)
	}
	if mStruct.ValueMethod() != 1 {
		t.Fatal("The unpatch did not work")
	}
}

Library inspired by the blog post: https://bou.ke/blog/monkey-patching-in-go/

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Patch

type Patch struct {
	// contains filtered or unexported fields
}

func PatchInstanceMethodByName

func PatchInstanceMethodByName(target reflect.Type, methodName string, redirection interface{}) (*Patch, error)

Patches an instance func by using two parameters, the target struct type and the method name inside that type, this func will be redirected to the "redirection" func. Note: The first parameter of the redirection func must be the object instance.

func PatchMethod

func PatchMethod(target, redirection interface{}) (*Patch, error)

Patches a target func to redirect calls to "redirection" func. Both function must have same arguments and return types.

func PatchMethodByReflect

func PatchMethodByReflect(target reflect.Method, redirection interface{}) (*Patch, error)

Patches a target func by passing the reflect.Method of the func. The target func will be redirected to the "redirection" func. Both function must have same arguments and return types.

func PatchMethodByReflectValue added in v1.0.5

func PatchMethodByReflectValue(target reflect.Value, redirection interface{}) (*Patch, error)

Patches a target func by passing the reflect.ValueOf of the func. The target func will be redirected to the "redirection" func. Both function must have same arguments and return types.

func PatchMethodWithMakeFunc

func PatchMethodWithMakeFunc(target reflect.Method, fn func(args []reflect.Value) (results []reflect.Value)) (*Patch, error)

Patches a target func with a "redirection" function created at runtime by using "reflect.MakeFunc".

func PatchMethodWithMakeFuncValue added in v1.0.5

func PatchMethodWithMakeFuncValue(target reflect.Value, fn func(args []reflect.Value) (results []reflect.Value)) (*Patch, error)

Patches a target func with a "redirection" function created at runtime by using "reflect.MakeFunc".

func (*Patch) Patch

func (p *Patch) Patch() error

Patch the target func with the redirection func.

func (*Patch) Unpatch

func (p *Patch) Unpatch() error

Unpatch the target func and recover the original func.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL