binfmt_misc.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1.      Kernel Support for miscellaneous (your favourite) Binary Formats v1.1
  2.      =====================================================================
  3. This Kernel feature allows you to invoke almost (for restrictions see below)
  4. every program by simply typing its name in the shell.
  5. This includes for example compiled Java(TM), Python or Emacs programs.
  6. To achieve this you must tell binfmt_misc which interpreter has to be invoked
  7. with which binary. Binfmt_misc recognises the binary-type by matching some bytes
  8. at the beginning of the file with a magic byte sequence (masking out specified
  9. bits) you have supplied. Binfmt_misc can also recognise a filename extension
  10. aka '.com' or '.exe'.
  11. To actually register a new binary type, you have to set up a string looking like
  12. :name:type:offset:magic:mask:interpreter: (where you can choose the ':' upon
  13. your needs) and echo it to /proc/sys/fs/binfmt_misc/register.
  14. Here is what the fields mean:
  15.  - 'name' is an identifier string. A new /proc file will be created with this
  16.    name below /proc/sys/fs/binfmt_misc
  17.  - 'type' is the type of recognition. Give 'M' for magic and 'E' for extension.
  18.  - 'offset' is the offset of the magic/mask in the file, counted in bytes. This
  19.    defaults to 0 if you omit it (i.e. you write ':name:type::magic...')
  20.  - 'magic' is the byte sequence binfmt_misc is matching for. The magic string
  21.    may contain hex-encoded characters like x0a or xA4. In a shell environment
  22.    you will have to write \x0a to prevent the shell from eating your .
  23.    If you chose filename extension matching, this is the extension to be
  24.    recognised (without the '.', the x0a specials are not allowed). Extension
  25.    matching is case sensitive!
  26.  - 'mask' is an (optional, defaults to all 0xff) mask. You can mask out some
  27.    bits from matching by supplying a string like magic and as long as magic.
  28.    The mask is anded with the byte sequence of the file.
  29.  - 'interpreter' is the program that should be invoked with the binary as first
  30.    argument (specify the full path)
  31. There are some restrictions:
  32.  - the whole register string may not exceed 255 characters
  33.  - the magic must reside in the first 128 bytes of the file, i.e.
  34.    offset+size(magic) has to be less than 128
  35.  - the interpreter string may not exceed 127 characters
  36. You may want to add the binary formats in one of your /etc/rc scripts during
  37. boot-up. Read the manual of your init program to figure out how to do this
  38. right.
  39. Think about the order of adding entries! Later added entries are matched first!
  40. A few examples (assumed you are in /proc/sys/fs/binfmt_misc):
  41. - enable support for em86 (like binfmt_em86, for Alpha AXP only):
  42.   echo ':i386:M::x7fELFx01x00x00x00x00x00x00x00x00x00x00x00x02x00x03:xffxffxffxffxffxfexfexffxffxffxffxffxffxffxffxffxfbxffxff:/bin/em86:' > register
  43.   echo ':i486:M::x7fELFx01x00x00x00x00x00x00x00x00x00x00x00x02x00x06:xffxffxffxffxffxfexfexffxffxffxffxffxffxffxffxffxfbxffxff:/bin/em86:' > register
  44. - enable support for packed DOS applications (pre-configured dosemu hdimages):
  45.   echo ':DEXE:M::x0eDEX::/usr/bin/dosexec:' > register
  46. - enable support for Windows executables using wine:
  47.   echo ':DOSWin:M::MZ::/usr/local/bin/wine:' > register
  48. For java support see Documentation/java.txt
  49. You can enable/disable binfmt_misc or one binary type by echoing 0 (to disable)
  50. or 1 (to enable) to /proc/sys/fs/binfmt_misc/status or /proc/.../the_name.
  51. Catting the file tells you the current status of binfmt_misc/the entry.
  52. You can remove one entry or all entries by echoing -1 to /proc/.../the_name
  53. or /proc/sys/fs/binfmt_misc/status.
  54. HINTS:
  55. ======
  56. If you want to pass special arguments to your interpreter, you can
  57. write a wrapper script for it. See Documentation/java.txt for an
  58. example.
  59. Your interpreter should NOT look in the PATH for the filename; the
  60. kernel passes it the full filename to use.  Using the PATH can cause
  61. unexpected behaviour and be a security hazard.
  62. There is a web page about binfmt_misc at
  63. http://www.tat.physik.uni-tuebingen.de/~rguenth/linux/binfmt_misc.html
  64. Richard G黱ther <rguenth@tat.physik.uni-tuebingen.de>