What prevents device files from being executed?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I'm writing a kernel character device driver for which I've implemented the fops.read, and the FIONREAD (0x541B) ioctl. The data returned by read is an ELF executable. ls -l confirms that the device has r-x permissions, and both of the following commands allow me to execute the contained ELF binary:



# cp /dev/foo0 /tmp/bar && /tmp/bar
-or-
# cat /dev/foo0 > /tmp/bar && /tmp/bar
foo_open
foo_ioctl 0x0000541B
foo_read size=131072 off=0
foo_ioctl 0x0000541B
foo_read size=131072 off=13096
foo_release
Hello from /tmp/bar!
...


Note that the kernel messages indicate the various driver messages that are called. When I try to run the device directly, however, I get an error:



# /dev/foo0
foo_open
foo_release
/bin/sh: 6: /dev/foo0: Permission denied


What check might be causing the permissions error, and is it possible to override it without fundamentally breaking linux? I'm using the 4.18.3 kernel with a minimal sysroot image.









share







New contributor




MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.























    up vote
    0
    down vote

    favorite












    I'm writing a kernel character device driver for which I've implemented the fops.read, and the FIONREAD (0x541B) ioctl. The data returned by read is an ELF executable. ls -l confirms that the device has r-x permissions, and both of the following commands allow me to execute the contained ELF binary:



    # cp /dev/foo0 /tmp/bar && /tmp/bar
    -or-
    # cat /dev/foo0 > /tmp/bar && /tmp/bar
    foo_open
    foo_ioctl 0x0000541B
    foo_read size=131072 off=0
    foo_ioctl 0x0000541B
    foo_read size=131072 off=13096
    foo_release
    Hello from /tmp/bar!
    ...


    Note that the kernel messages indicate the various driver messages that are called. When I try to run the device directly, however, I get an error:



    # /dev/foo0
    foo_open
    foo_release
    /bin/sh: 6: /dev/foo0: Permission denied


    What check might be causing the permissions error, and is it possible to override it without fundamentally breaking linux? I'm using the 4.18.3 kernel with a minimal sysroot image.









    share







    New contributor




    MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm writing a kernel character device driver for which I've implemented the fops.read, and the FIONREAD (0x541B) ioctl. The data returned by read is an ELF executable. ls -l confirms that the device has r-x permissions, and both of the following commands allow me to execute the contained ELF binary:



      # cp /dev/foo0 /tmp/bar && /tmp/bar
      -or-
      # cat /dev/foo0 > /tmp/bar && /tmp/bar
      foo_open
      foo_ioctl 0x0000541B
      foo_read size=131072 off=0
      foo_ioctl 0x0000541B
      foo_read size=131072 off=13096
      foo_release
      Hello from /tmp/bar!
      ...


      Note that the kernel messages indicate the various driver messages that are called. When I try to run the device directly, however, I get an error:



      # /dev/foo0
      foo_open
      foo_release
      /bin/sh: 6: /dev/foo0: Permission denied


      What check might be causing the permissions error, and is it possible to override it without fundamentally breaking linux? I'm using the 4.18.3 kernel with a minimal sysroot image.









      share







      New contributor




      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      I'm writing a kernel character device driver for which I've implemented the fops.read, and the FIONREAD (0x541B) ioctl. The data returned by read is an ELF executable. ls -l confirms that the device has r-x permissions, and both of the following commands allow me to execute the contained ELF binary:



      # cp /dev/foo0 /tmp/bar && /tmp/bar
      -or-
      # cat /dev/foo0 > /tmp/bar && /tmp/bar
      foo_open
      foo_ioctl 0x0000541B
      foo_read size=131072 off=0
      foo_ioctl 0x0000541B
      foo_read size=131072 off=13096
      foo_release
      Hello from /tmp/bar!
      ...


      Note that the kernel messages indicate the various driver messages that are called. When I try to run the device directly, however, I get an error:



      # /dev/foo0
      foo_open
      foo_release
      /bin/sh: 6: /dev/foo0: Permission denied


      What check might be causing the permissions error, and is it possible to override it without fundamentally breaking linux? I'm using the 4.18.3 kernel with a minimal sysroot image.







      permissions linux-kernel devices





      share







      New contributor




      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 6 mins ago









      MooseBoys

      1012




      1012




      New contributor




      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      MooseBoys is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          MooseBoys is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f475175%2fwhat-prevents-device-files-from-being-executed%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          MooseBoys is a new contributor. Be nice, and check out our Code of Conduct.









           

          draft saved


          draft discarded


















          MooseBoys is a new contributor. Be nice, and check out our Code of Conduct.












          MooseBoys is a new contributor. Be nice, and check out our Code of Conduct.











          MooseBoys is a new contributor. Be nice, and check out our Code of Conduct.













           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f475175%2fwhat-prevents-device-files-from-being-executed%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay