daemon.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. #include <stdio.h>
  26. #include <features.h>
  27. #include <fcntl.h>
  28. #include <paths.h>
  29. #include <unistd.h>
  30. /* Note that this file should not be compiled in
  31. * unless __UCLIBC_HAS_MMU__ is defined */
  32. int daemon( int nochdir, int noclose )
  33. {
  34. int fd;
  35. switch (fork()) {
  36. case -1:
  37. return(-1);
  38. case 0:
  39. break;
  40. default:
  41. _exit(0);
  42. }
  43. if (setsid() == -1)
  44. return(-1);
  45. if (!nochdir)
  46. chdir("/");
  47. if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
  48. dup2(fd, STDIN_FILENO);
  49. dup2(fd, STDOUT_FILENO);
  50. dup2(fd, STDERR_FILENO);
  51. if (fd > 2)
  52. close(fd);
  53. }
  54. return(0);
  55. }
  56. /*-
  57. * Copyright (c) 1990, 1993
  58. * The Regents of the University of California. All rights reserved.
  59. *
  60. * Redistribution and use in source and binary forms, with or without
  61. * modification, are permitted provided that the following conditions
  62. * are met:
  63. * 1. Redistributions of source code must retain the above copyright
  64. * notice, this list of conditions and the following disclaimer.
  65. * 2. Redistributions in binary form must reproduce the above copyright
  66. * notice, this list of conditions and the following disclaimer in the
  67. * documentation and/or other materials provided with the distribution.
  68. *
  69. * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
  70. * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
  71. *
  72. * 4. Neither the name of the University nor the names of its contributors
  73. * may be used to endorse or promote products derived from this software
  74. * without specific prior written permission.
  75. *
  76. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  77. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  78. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  79. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  80. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  81. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  82. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  83. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  84. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  85. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  86. * SUCH DAMAGE.
  87. */