C 파일의 SELinux 컨텍스트를 얻을 수 있는 방법이 있나요?
답변1
응, 그렇지getfilecon(3)
존재하다 libselinux
:
char * context;
int easize = getfilecon("/path/to/your/file", &context);
반환된 크기가 음수가 아닌 경우 context
파일의 컨텍스트가 포함됩니다.
C 파일의 SELinux 컨텍스트를 얻을 수 있는 방법이 있나요?
응, 그렇지getfilecon(3)
존재하다 libselinux
:
char * context;
int easize = getfilecon("/path/to/your/file", &context);
반환된 크기가 음수가 아닌 경우 context
파일의 컨텍스트가 포함됩니다.