/ proc / modules에서 (F)로 표시된 모듈


9

3.10 시스템에서 / proc / modules에 나열된 일부 모듈은 (F)로 표시됩니다. 이것의 원인을 찾고 싶습니다 (F). 모듈이 강제로로드되지 않고 커널로 빌드되었다고 확신합니다. 어떤 커널 코드가 / proc / modules를 생성하는지 알려 주시겠습니까?

usb_storage 56610 0 - Live 0xffffffffa005d000 (F)

이 모듈을 언로드했다가 다시로드하면 (F)가 사라집니다.


코드 (여전히 그 비트를 찾고 있음) 외에도 지금까지 찾은 다음 최고의 리소스는 다음과 같습니다. unixhelp.ed.ac.uk/CGI/man-cgi?proc+5 & tldp.org/HOWTO/html_single/ 모듈-하우투 . 이 역시 다소 유용 centos.org/docs/5/html/Deployment_Guide-en-US/...
SLM

고마워요. / proc / modules 섹션에서 세 번째 포인터는 메모리 오프셋 인 여섯 번째 열을 설명합니다. 그것은이 정보가 프로파일 러에 의해 사용된다고 말합니다-이것은 내 문제입니다. 모듈이 표시되어 있으면 (F) 프로파일 러가 자동으로 작동을 거부합니다.
Stephan T.

답변:


11

출력의 열은 /proc/modules다음과 같습니다.

usb_storage 56610 0    -   Live 0xffffffffa005d000 (F)
  (1)        (2) (3)  (4)  (5)         (6)         (7)

참고 : 나는 7 번째 열로 보이는 것에 대해 언급하지 않았지만 6 번째 열에 대한 설명 (아래 참조)에 표시되는 정보를 다루지 않으므로 레이블을 붙입니다.

발췌-http: //www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-proc-topfiles.html

  • 첫 번째 열에는 모듈 이름이 포함되어 있습니다.
  • 두 번째 열은 모듈의 메모리 크기 (바이트)를 나타냅니다.
  • 세 번째 열은 현재로드 된 모듈의 인스턴스 수를 나타냅니다. 값이 0이면 언로드 된 모듈을 나타냅니다.
  • 네 번째 열은 모듈이 작동하기 위해 존재하는 다른 모듈에 의존하는지 여부를 나타내며 다른 모듈을 나열합니다.
  • 다섯 번째 열에는 모듈의로드 상태가 표시됩니다. 라이브,로드 또는 언로드가 유일하게 가능한 값입니다.
  • 여섯 번째 열에는로드 된 모듈의 현재 커널 메모리 오프셋이 나열됩니다. 이 정보는 디버깅 목적 또는 oprofile과 같은 프로파일 링 도구에 유용 할 수 있습니다.

나는 (F)(즉, 7 번째 열) 로 표시된 열이 여기에서 온다고 생각합니다- panic.c.

/**
 *  print_tainted - return a string to represent the kernel taint state.
 *
 *  'P' - Proprietary module has been loaded.
 *  'F' - Module has been forcibly loaded.
 *  'S' - SMP with CPUs not designed for SMP.
 *  'R' - User forced a module unload.
 *  'M' - System experienced a machine check exception.
 *  'B' - System has hit bad_page.
 *  'U' - Userspace-defined naughtiness.
 *  'D' - Kernel has oopsed before
 *  'A' - ACPI table overridden.
 *  'W' - Taint on warning.
 *  'C' - modules from drivers/staging are loaded.
 *  'I' - Working around severe firmware bug.
 *  'O' - Out-of-tree module has been loaded.
 *  'E' - Unsigned module has been loaded.
 *
 *  The string is overwritten by the next call to print_tainted().
 */

이 코드는 kernel.txt참조 설명서에도 있는 비트 마스크를 나타냅니다 .

tainted:

 Non-zero if the kernel has been tainted.  Numeric values, which
 can be ORed together:

    1 - A module with a non-GPL license has been loaded, this
        includes modules with no license.
        Set by modutils >= 2.4.9 and module-init-tools.
    2 - A module was force loaded by insmod -f.
        Set by modutils >= 2.4.9 and module-init-tools.
    4 - Unsafe SMP processors: SMP with CPUs not designed for SMP.
    8 - A module was forcibly unloaded from the system by rmmod -f.
   16 - A hardware machine check error occurred on the system.
   32 - A bad page was discovered on the system.
   64 - The user has asked that the system be marked "tainted".  This
        could be because they are running software that directly modifies
        the hardware, or for other reasons.
  128 - The system has died.
  256 - The ACPI DSDT has been overridden with one supplied by the user
         instead of using the one provided by the hardware.
  512 - A kernel warning has occurred.
 1024 - A module from drivers/staging was loaded.
 2048 - The system is working around a severe firmware bug.
 4096 - An out-of-tree module has been loaded.
 8192 - An unsigned module has been loaded in a kernel supporting module
        signature.

참고 문헌

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.