主頁(yè) > 知識(shí)庫(kù) > 減少 golang 二進(jìn)制文件大小操作

減少 golang 二進(jìn)制文件大小操作

熱門標(biāo)簽:杭州人工智能電銷機(jī)器人費(fèi)用 400開頭電話怎樣申請(qǐng) 貴州電話智能外呼系統(tǒng) 利用地圖標(biāo)注位置 江蘇呼叫中心外呼系統(tǒng)有效果嗎 官渡電銷外呼管理系統(tǒng)怎么收費(fèi) 谷歌美發(fā)店地圖標(biāo)注 赤峰電銷 地圖區(qū)域圖標(biāo)注后導(dǎo)出

環(huán)境:

$ go version
go version go1.11.2 linux/amd64

$ gcc --version
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609

一. Go VS C 二進(jìn)制

hello.go

package main
import "fmt"
func main() {
 fmt.Println("hello world")
}

hello.c

#include stdio.h>
int main() {
 printf("hello world\n");
 return 0;
}
$ go build -o hello hello.go
$ go build -ldflags "-s -w" -o hello2 hello.go
$ gcc hello.c
$ ls -l
-rwxrwxr-x 1 zengxl zengxl 1902849 11月 27 15:40 hello
-rwxrwxr-x 1 zengxl zengxl 1353824 11月 27 15:43 hello2
-rwxrwxr-x 1 zengxl zengxl 8600 11月 27 15:44 a.out

golang 連接的參數(shù):

$ go tool link -h

usage: link [options] main.o
-s disable symbol table  # 去掉符號(hào)表
-w disable DWARF generation # 去掉調(diào)試信息

ELF

先來看下 C 的:

$ readelf -h a.out 
ELF 頭:
 Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 
 類別:        ELF64
 數(shù)據(jù):        2 補(bǔ)碼,小端序 (little endian)
 版本:        1 (current)
 OS/ABI:       UNIX - System V
 ABI 版本:       0
 類型:        EXEC (可執(zhí)行文件)
 系統(tǒng)架構(gòu):       Advanced Micro Devices X86-64
 版本:        0x1
 入口點(diǎn)地址:    0x400430
 程序頭起點(diǎn):   64 (bytes into file)
 Start of section headers:   6616 (bytes into file)
 標(biāo)志:    0x0
 本頭的大小:  64 (字節(jié))
 程序頭大?。? 56 (字節(jié))
 Number of program headers:   9
 節(jié)頭大?。?  64 (字節(jié))
 節(jié)頭數(shù)量:   31
 字符串表索引節(jié)頭: 28
$ readelf -d a.out 

Dynamic section at offset 0xe28 contains 24 entries:
 標(biāo)記  類型       名稱/值
 0x0000000000000001 (NEEDED)    共享庫(kù):[libc.so.6]
 0x000000000000000c (INIT)    0x4003c8
 0x000000000000000d (FINI)    0x4005b4
 0x0000000000000019 (INIT_ARRAY)   0x600e10
 0x000000000000001b (INIT_ARRAYSZ)  8 (bytes)
 0x000000000000001a (FINI_ARRAY)   0x600e18
 0x000000000000001c (FINI_ARRAYSZ)  8 (bytes)
 0x000000006ffffef5 (GNU_HASH)   0x400298
 0x0000000000000005 (STRTAB)    0x400318
 0x0000000000000006 (SYMTAB)    0x4002b8
 0x000000000000000a (STRSZ)    61 (bytes)
 0x000000000000000b (SYMENT)    24 (bytes)
 0x0000000000000015 (DEBUG)    0x0
 0x0000000000000003 (PLTGOT)    0x601000
 0x0000000000000002 (PLTRELSZ)   48 (bytes)
 0x0000000000000014 (PLTREL)    RELA
 0x0000000000000017 (JMPREL)    0x400398
 0x0000000000000007 (RELA)    0x400380
 0x0000000000000008 (RELASZ)    24 (bytes)
 0x0000000000000009 (RELAENT)   24 (bytes)
 0x000000006ffffffe (VERNEED)   0x400360
 0x000000006fffffff (VERNEEDNUM)   1
 0x000000006ffffff0 (VERSYM)    0x400356
 0x0000000000000000 (NULL)    0x0

再來看下 go 的:

$ readelf -h hello
ELF 頭:
 Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 
 類別:        ELF64
 數(shù)據(jù):        2 補(bǔ)碼,小端序 (little endian)
 版本:        1 (current)
 OS/ABI:       UNIX - System V
 ABI 版本:       0
 類型:        EXEC (可執(zhí)行文件)
 系統(tǒng)架構(gòu):       Advanced Micro Devices X86-64
 版本:        0x1
 入口點(diǎn)地址:    0x451fa0
 程序頭起點(diǎn):   64 (bytes into file)
 Start of section headers:   456 (bytes into file)
 標(biāo)志:    0x0
 本頭的大?。? 64 (字節(jié))
 程序頭大小:  56 (字節(jié))
 Number of program headers:   7
 節(jié)頭大?。?  64 (字節(jié))
 節(jié)頭數(shù)量:   13
 字符串表索引節(jié)頭: 3

$ readelf -d hello

There is no dynamic section in this file.

The linker in the gc toolchain creates statically-linked binaries by default. All Go binaries therefore include the Go runtime, along with the run-time type information necessary to support dynamic type checks, reflection, and even panic-time stack traces.

A simple C “hello, world” program compiled and linked statically using gcc on Linux is around 750 kB, including an implementation of printf. An equivalent Go program using fmt.Printf weighs a couple of megabytes, but that includes more powerful run-time support and type and debugging information.

所以,為什么 go 二進(jìn)制比 C 大很多就比較明顯了。

golang 靜態(tài)編譯,不依賴動(dòng)態(tài)庫(kù)。

二. 如何減小 go 二進(jìn)制文件大小

2.1. -ldflags

上面已經(jīng)提到了過了。

$ go build -ldflags "-s -w" xxx.go

2.2. UPX

https://github.com/upx/upx

Commands:
 -1  compress faster     -9 compress better
 -d  decompress      -l list compressed file
 -t  test compressed file    -V display version number
 -h  give more help     -L display software license
Options:
 -q  be quiet       -v be verbose
 -oFILE write output to 'FILE'
 -f  force compression of suspicious files
 -k  keep backup files
file.. executables to (de)compress

Compression tuning options:
 --brute    try all available compression methods  filters [slow]
 --ultra-brute  try even more compression variants [very slow]

$ upx --brute binaryfile

IDA 逆向分析簡(jiǎn)單看下:

https://www.hex-rays.com/products/ida/support/download.shtml

下面是支持 Go 的 IDA helper

https://github.com/sibears/IDAGolangHelper

原始的 go 二進(jìn)制文件:

可以看到 go 的一些函數(shù)名。

去掉符號(hào)表和調(diào)試信息的 go 二進(jìn)制文件:

已經(jīng)看不到函數(shù)名信息,只有類似 sub_47BF70 這樣。

經(jīng)過 upx 壓縮的 go 二進(jìn)制文件:

信息已經(jīng)比較少了,入口點(diǎn)也發(fā)生了變化。

2.3. 壓縮結(jié)果對(duì)比

$ go build -o hello hello.go
$ go build -ldflags "-s -w" -o hello-strip hello.go
$ upx --brute hello
$ ll -h
-rwxr-xr-x 1 aland aland 1.9M Dec 6 13:06 hello
-rwxr-xr-x 1 aland aland 809K Dec 6 13:07 hello-upx
-rwxr-xr-x 1 aland aland 1.3M Dec 6 13:06 hello-strip

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • golang中struct和[]byte的相互轉(zhuǎn)換示例
  • Golang二進(jìn)制文件混淆保護(hù)操作
  • 淺談golang二進(jìn)制bit位的常用操作
  • Golang如何交叉編譯各個(gè)平臺(tái)的二進(jìn)制文件詳解
  • Golang如何實(shí)現(xiàn)任意進(jìn)制轉(zhuǎn)換的方法示例
  • golang 將[]byte轉(zhuǎn)成16進(jìn)制的實(shí)現(xiàn)

標(biāo)簽:鷹潭 松原 泰安 河池 黔西 宜春 武漢 保定

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《減少 golang 二進(jìn)制文件大小操作》,本文關(guān)鍵詞  減少,golang,二進(jìn)制,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《減少 golang 二進(jìn)制文件大小操作》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于減少 golang 二進(jìn)制文件大小操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章