daemon.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* vi: set sw=4 ts=4: */
  2. /* daemon implementation for uClibc
  3. *
  4. * Copyright (c) 1991, 1993
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * Modified for uClibc by Erik Andersen <andersee@debian.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU Library General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful, but WITHOUT
  15. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  16. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  17. * for more details.
  18. *
  19. * You should have received a copy of the GNU Library General Public License
  20. * along with this program; if not, write to the Free Software Foundation,
  21. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. * Original copyright notice is retained at the end of this file.
  24. */
  25. #define dup2 __dup2
  26. #define setsid __setsid
  27. #define chdir __chdir
  28. #include <stdio.h>
  29. #include <features.h>
  30. #include <fcntl.h>
  31. #include <paths.h>
  32. #include <unistd.h>
  33. #if defined __ARCH_HAS_MMU__
  34. int daemon( int nochdir, int noclose )
  35. {
  36. int fd;
  37. switch (fork()) {
  38. case -1:
  39. return(-1);
  40. case 0:
  41. break;
  42. default:
  43. _exit(0);
  44. }
  45. if (setsid() == -1)
  46. return(-1);
  47. /* Make certain we are not a session leader, or else we
  48. * might reacquire a controlling terminal */
  49. if (fork())
  50. _exit(0);
  51. if (!nochdir)
  52. chdir("/");
  53. if (!noclose && (fd = __open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
  54. dup2(fd, STDIN_FILENO);
  55. dup2(fd, STDOUT_FILENO);
  56. dup2(fd, STDERR_FILENO);
  57. if (fd > 2)
  58. __close(fd);
  59. }
  60. return(0);
  61. }
  62. #endif
  63. /*-
  64. * Copyright (c) 1990, 1993
  65. * The Regents of the University of California. All rights reserved.
  66. *
  67. * Redistribution and use in source and binary forms, with or without
  68. * modification, are permitted provided that the following conditions
  69. * are met:
  70. * 1. Redistributions of source code must retain the above copyright
  71. * notice, this list of conditions and the following disclaimer.
  72. * 2. Redistributions in binary form must reproduce the above copyright
  73. * notice, this list of conditions and the following disclaimer in the
  74. * documentation and/or other materials provided with the distribution.
  75. *
  76. * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
  77. * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
  78. *
  79. * 4. Neither the name of the University nor the names of its contributors
  80. * may be used to endorse or promote products derived from this software
  81. * without specific prior written permission.
  82. *
  83. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  84. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  85. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  86. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  87. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  88. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  89. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  90. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  91. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  92. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  93. * SUCH DAMAGE.
  94. */