Microsoft MVP성태의 닷넷 이야기
닷넷: 2361. C# - Linux 환경의 readlink 호출 [링크 복사], [링크+제목 복사],
조회: 386
글쓴 사람
정성태 (seongtaejeong at gmail.com)
홈페이지
첨부 파일
 

C# - Linux 환경의 readlink 호출

리눅스 쪽은 API보다는 파일 시스템을 기반으로 한 정보들이 많습니다. 심지어 파일 자체의 내용뿐만 아니라 링크에서도 정보를 구하게 되는 경우가 종종 있는데요, 예를 들어 프로세스의 pid 네임스페이스에 대한 것도,

pid 네임스페이스 구성으로 본 WSL 2 배포본의 계층 관계
; https://www.sysnet.pe.kr/2/0/13772

링크로 연결이 됩니다.

$ ls -l /proc/4419/ns/pid
lrwxrwxrwx 1 testusr testusr 0 Oct 17 14:46 /proc/4419/ns/pid -> 'pid:[4026532257]'

리눅스 시스템에서 이 값을 코드로 구하기 위해서는 readlink 또는 realpath를 사용할 수 있는데,

readlink(1) - Linux man page
; https://linux.die.net/man/1/readlink

readlink(2) — Linux man page
; https://linux.die.net/man/2/readlink

realpath(1) - Linux man page
; https://linux.die.net/man/1/realpath

realpath(3) - Linux man page
; https://linux.die.net/man/3/realpath

$ realpath /proc/self/ns/pid
/proc/683623/ns/pid:[4026531836]

$ readlink -f /proc/self/ns/pid
/proc/683762/ns/pid:[4026531836]

$ readlink /proc/self/ns/pid
pid:[4026531836]

그렇다면 C#으로는 어떻게 구할 수 있을까요? 아쉽게도 .NET 5까지의 기본 라이브러리에는 이를 위한 배려가 없었기 때문에 libc를 interop하는 식으로 구해야만 했습니다.

public class Program
{
    [DllImport("libc.so.6", CharSet = CharSet.Ansi)]
    internal static extern int readlink(string path, byte[] buf, ulong bufsiz);

    public static void Main(string[] args)
    {
        byte[] buf = new byte[1024];
        readlink("/proc/self/ns/pid", buf, 1024);
        Console.WriteLine($"{Encoding.ASCII.GetString(buf)}"); // 출력 결과: pid:[4026531836]
    }
}

// 또는, shell을 경유해 readlink(1) 명령어를 Process.Start로 실행한 결과로 받아도 됩니다.

그러다가, 마이크로소프트도 이에 대한 필요성을 인식했는지 .NET 6부터는 File과 Directory 타입에 각각 ResolveLinkTarget 정적 메서드를 추가했고,

File.ResolveLinkTarget(String, Boolean) Method
; https://learn.microsoft.com/en-us/dotnet/api/system.io.file.resolvelinktarget

Directory.ResolveLinkTarget(String, Boolean) Method
; https://learn.microsoft.com/en-us/dotnet/api/system.io.directory.resolvelinktarget

이를 이용해 다음과 같이 readlink/realpath에 해당하는 기능을 호출할 수 있습니다.

string path = "...";
FileSystemInfo? fsi = null;

if (File.Exists(path))
{
    FileAttributes attrs = File.GetAttributes(path);
    Console.WriteLine(attrs);
    if ((attrs & FileAttributes.ReparsePoint) == FileAttributes.ReparsePoint)
    {
        fsi = File.ResolveLinkTarget(path, true);
    }
}
else if (Directory.Exists(path))
{
    FileAttributes attrs = File.GetAttributes(path);
    Console.WriteLine(attrs);
    if ((attrs & FileAttributes.ReparsePoint) == FileAttributes.ReparsePoint)
    {
        fsi = Directory.ResolveLinkTarget(path, true);
    }
}

if (fsi != null)
{
    Console.WriteLine($"{fsi.FullName}");
    Console.WriteLine($"{fsi.Name}");
}

예를 들어, path == "/proc/self/ns/pid"와 같은 파일인 경우 다음과 같은 출력을 얻고,

ReadOnly, ReparsePoint
/proc/self/ns/pid:[4026531836]
pid:[4026531836]

"/bin"과 같은 디렉터리라면 이렇게 나옵니다.

ReadOnly, Directory, ReparsePoint
/usr/bin
bin

참고로, ResolveLinkTarget 메서드는 윈도우 파일 시스템의 링크에도 사용할 수 있습니다.




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







[최초 등록일: ]
[최종 수정일: 9/7/2025]

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

비밀번호

댓글 작성자
 




1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13787정성태10/26/20249294개발 환경 구성: 730. github - Linux 커널 repo를 윈도우 환경에서 git clone하는 방법 [1]
13786정성태10/26/20248498Windows: 266. Windows - 대소문자 구분이 가능한 파일 시스템
13785정성태10/23/20247409C/C++: 182. 윈도우가 운영하는 2개의 Code Page파일 다운로드1
13784정성태10/23/20248380Linux: 95. eBPF - kprobe를 이용한 트레이스
13783정성태10/23/20247926Linux: 94. eBPF - vmlinux.h 헤더 포함하는 방법 (bpf2go에서 사용)
13782정성태10/23/20247309Linux: 93. Ubuntu 22.04 - 커널 이미지로부터 커널 함수 역어셈블
13781정성태10/22/20248187오류 유형: 930. WSL + eBPF: modprobe: FATAL: Module kheaders not found in directory
13780정성태10/22/20249741Linux: 92. WSL 2 - 커널 이미지로부터 커널 함수 역어셈블
13779정성태10/22/20247468개발 환경 구성: 729. WSL 2 - Mariner VM 커널 이미지 업데이트 방법
13778정성태10/21/20249996C/C++: 181. C/C++ - 소스코드 파일의 인코딩, 바이너리 모듈 상태의 인코딩
13777정성태10/20/20247691Windows: 265. Win32 API의 W(유니코드) 버전은 UCS-2일까요? UTF-16 인코딩일까요?
13776정성태10/19/20249105C/C++: 180. C++ - 고수준 FILE I/O 함수에서의 Unicode stream 모드(_O_WTEXT, _O_U16TEXT, _O_U8TEXT)파일 다운로드1
13775정성태10/19/20249370개발 환경 구성: 728. 윈도우 환경의 개발자를 위한 UTF-8 환경 설정
13774정성태10/18/20248345Linux: 91. Container 환경에서 출력하는 eBPF bpf_get_current_pid_tgid의 pid가 존재하지 않는 이유
13773정성태10/18/20248037Linux: 90. pid 네임스페이스 구성으로 본 WSL 2 + docker-desktop
13772정성태10/17/20248372Linux: 89. pid 네임스페이스 구성으로 본 WSL 2 배포본의 계층 관계
13771정성태10/17/20248169Linux: 88. WSL 2 리눅스 배포본 내에서의 pid 네임스페이스 구성
13770정성태10/17/20248836Linux: 87. ps + grep 조합에서 grep 명령어를 사용한 프로세스를 출력에서 제거하는 방법
13769정성태10/15/202410521Linux: 86. Golang + bpf2go를 사용한 eBPF 기본 예제파일 다운로드1
13768정성태10/15/20249377C/C++: 179. C++ - _O_WTEXT, _O_U16TEXT, _O_U8TEXT의 Unicode stream 모드파일 다운로드2
13767정성태10/14/20247585오류 유형: 929. bpftrace 수행 시 "ERROR: Could not resolve symbol: /proc/self/exe:BEGIN_trigger"
13766정성태10/14/20246662C/C++: 178. C++ - 파일에 대한 Text 모드의 "translated" 동작파일 다운로드1
13765정성태10/12/20249034오류 유형: 928. go build 시 "package maps is not in GOROOT" 오류
13764정성태10/11/202410141Linux: 85. Ubuntu - 원하는 golang 버전 설치
13763정성태10/11/20247967Linux: 84. WSL / Ubuntu 20.04 - bpftool 설치
13762정성태10/11/20248269Linux: 83. WSL / Ubuntu 22.04 - bpftool 설치
1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...