Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

리눅스 - (윈도우라면 DLL에 속하는) .so 파일이 텍스트로 구성된 사례

재미있군요. so 파일이 윈도우라면 DLL이라고 할 수 있는데, 그렇다면 당연히 ELF 포맷으로 된 바이너리 파일일 것입니다. 그런데, docker 이미지에서 libc.so에 대한 경로를 찾던 중,

~ find / -name libc.so 2> /dev/null
/usr/lib/x86_64-linux-gnu/libc.so
...[생략]...

원본 libc.so 파일의,

~ ls /usr/lib/x86_64-linux-gnu/libc* -l
-rw-r--r-- 1 root root 5477660 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libc.a
lrwxrwxrwx 1 root root      21 Jan 22  2019 /usr/lib/x86_64-linux-gnu/libcairo.so.2 -> libcairo.so.2.11510.0
-rw-r--r-- 1 root root 1161648 Jan 22  2019 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11510.0
lrwxrwxrwx 1 root root      15 Dec  4 23:45 /usr/lib/x86_64-linux-gnu/libcc1.so.0 -> libcc1.so.0.0.0
-rw-r--r-- 1 root root  118320 Dec  4 23:45 /usr/lib/x86_64-linux-gnu/libcc1.so.0.0.0
lrwxrwxrwx 1 root root      34 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libcidn.so -> /lib/x86_64-linux-gnu/libcidn.so.1
lrwxrwxrwx 1 root root      19 Dec  4 23:25 /usr/lib/x86_64-linux-gnu/libcilkrts.so.5 -> libcilkrts.so.5.0.0
-rw-r--r-- 1 root root  118824 Dec  4 23:25 /usr/lib/x86_64-linux-gnu/libcilkrts.so.5.0.0
-rw-r--r-- 1 root root   20108 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libc_nonshared.a
lrwxrwxrwx 1 root root      21 Dec 17  2017 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3 -> libcroco-0.6.so.3.0.1
-rw-r--r-- 1 root root  239712 Dec 17  2017 /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3.0.1
-rw-r--r-- 1 root root   61488 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libcrypt.a
-rw-r--r-- 1 root root 2357760 Feb 27  2019 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0
-rw-r--r-- 1 root root 2917216 Nov 13 01:58 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
lrwxrwxrwx 1 root root      35 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libcrypt.so -> /lib/x86_64-linux-gnu/libcrypt.so.1
-rw-r--r-- 1 root root     298 Apr 17  2018 /usr/lib/x86_64-linux-gnu/libc.so
-rw-r--r-- 1 root root  571352 Aug 16  2019 /usr/lib/x86_64-linux-gnu/libcups.so.2
lrwxrwxrwx 1 root root      19 Sep  6  2019 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.3 -> libcurl-gnutls.so.4
lrwxrwxrwx 1 root root      23 Sep  6  2019 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4 -> libcurl-gnutls.so.4.5.0
-rw-r--r-- 1 root root  510408 Sep  6  2019 /usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.5.0
lrwxrwxrwx 1 root root      16 Sep  6  2019 /usr/lib/x86_64-linux-gnu/libcurl.so.4 -> libcurl.so.4.5.0
-rw-r--r-- 1 root root  518600 Sep  6  2019 /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0

내용이 텍스트 파일입니다.

~ cat /usr/lib/x86_64-linux-gnu/libc.so
/* GNU ld script
   Use the shared library, but some functions are only in
   the static library, so try that secondarily.  */
OUTPUT_FORMAT(elf64-x86-64)
GROUP ( /lib/x86_64-linux-gnu/libc.so.6 /usr/lib/x86_64-linux-gnu/libc_nonshared.a  AS_NEEDED ( /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 ) )

~ file /usr/lib/x86_64-linux-gnu/libc.so
/usr/lib/x86_64-linux-gnu/libc.so: ASCII text

검색해 보니, "링커 스크립트"라고 하는군요. ^^

3 Linker Scripts
; http://docs.adacore.com/live/wave/binutils-stable/html/ld/ld.html#Scripts

이런 경우도 있으니, so 파일을 ELF 파일 분석하려고 할 때 고려를 해야 합니다. ^^




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 5/6/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2023-06-29 08시45분
정성태

1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13667정성태7/7/20246621닷넷: 2273. C# - 리눅스 환경에서의 Hyper-V Socket 연동 (AF_VSOCK)파일 다운로드1
13666정성태7/7/20247700Linux: 74. C++ - Vsock 예제 (Hyper-V Socket 연동)파일 다운로드1
13665정성태7/6/20247878Linux: 73. Linux 측의 socat을 이용한 Hyper-V 호스트와의 vsock 테스트파일 다운로드1
13663정성태7/5/20247472닷넷: 2272. C# - Hyper-V Socket 통신(AF_HYPERV, AF_VSOCK)의 VMID Wildcards 유형파일 다운로드1
13662정성태7/4/20247490닷넷: 2271. C# - WSL 2 VM의 VM ID를 알아내는 방법 - Host Compute System API파일 다운로드1
13661정성태7/3/20247413Linux: 72. g++ - 다른 버전의 GLIBC로 소스코드 빌드
13660정성태7/3/20247520오류 유형: 912. Visual C++ - Linux 프로젝트 빌드 오류
13659정성태7/1/20247858개발 환경 구성: 715. Windows - WSL 2 환경의 Docker Desktop 네트워크
13658정성태6/28/20248235개발 환경 구성: 714. WSL 2 인스턴스와 호스트 측의 Hyper-V에 운영 중인 VM과 네트워크 연결을 하는 방법 - 두 번째 이야기
13657정성태6/27/20247911닷넷: 2270. C# - Hyper-V Socket 통신(AF_HYPERV, AF_VSOCK)을 위한 EndPoint 사용자 정의
13656정성태6/27/20248074Windows: 264. WSL 2 VM의 swap 파일 위치
13655정성태6/24/20247846닷넷: 2269. C# - Win32 Resource 포맷 해석파일 다운로드1
13654정성태6/24/20247787오류 유형: 911. shutdown - The entered computer name is not valid or remote shutdown is not supported on the target computer.
13653정성태6/22/20247937닷넷: 2268. C# 코드에서 MAKEINTREOURCE 매크로 처리
13652정성태6/21/20249245닷넷: 2267. C# - Linux 환경에서 (Reflection 없이) DLL AssemblyFileVersion 구하는 방법파일 다운로드2
13651정성태6/19/20248487닷넷: 2266. C# - (Reflection 없이) DLL AssemblyFileVersion 구하는 방법파일 다운로드1
13650정성태6/18/20248410개발 환경 구성: 713. "WSL --debug-shell"로 살펴보는 WSL 2 VM의 리눅스 환경
13649정성태6/18/20247957오류 유형: 910. windbg - !py 확장 명령어 실행 시 "failed to find python interpreter" (2)
13648정성태6/17/20248278오류 유형: 909. C# - DynamicMethod 사용 시 System.TypeAccessException
13647정성태6/16/20249343개발 환경 구성: 712. Windows - WSL 2의 네트워크 통신 방법 - 세 번째 이야기 (같은 IP를 공유하는 WSL 2 인스턴스) [1]
13646정성태6/14/20247758오류 유형: 908. Process Explorer - "Error configuring dump resources: The system cannot find the file specified."
13645정성태6/13/20248197개발 환경 구성: 711. Visual Studio로 개발 시 기본 등록하는 dev tag 이미지로 Docker Desktop k8s에서 실행하는 방법
13644정성태6/12/20248868닷넷: 2265. C# - System.Text.Json의 기본적인 (한글 등에서의) escape 처리 [1]
13643정성태6/12/20248306오류 유형: 907. MySqlConnector 사용 시 System.IO.FileLoadException 오류
13642정성태6/11/20248198스크립트: 65. 파이썬 - asgi 버전(2, 3)에 따라 달라지는 uvicorn 호스팅
13641정성태6/11/20248673Linux: 71. Ubuntu 20.04를 22.04로 업데이트
1  2  3  4  5  6  7  8  9  10  [11]  12  13  14  15  ...