src/os/unix/ngx_posix_init.c - nginx-1.7.10

Global variables defined

Functions defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>
  7. #include <nginx.h>


  8. ngx_int_t   ngx_ncpu;
  9. ngx_int_t   ngx_max_sockets;
  10. ngx_uint_t  ngx_inherited_nonblocking;
  11. ngx_uint_t  ngx_tcp_nodelay_and_tcp_nopush;


  12. struct rlimit  rlmt;


  13. ngx_os_io_t ngx_os_io = {
  14.     ngx_unix_recv,
  15.     ngx_readv_chain,
  16.     ngx_udp_unix_recv,
  17.     ngx_unix_send,
  18.     ngx_writev_chain,
  19.     0
  20. };


  21. ngx_int_t
  22. ngx_os_init(ngx_log_t *log)
  23. {
  24.     ngx_uint_t  n;

  25. #if (NGX_HAVE_OS_SPECIFIC_INIT)
  26.     if (ngx_os_specific_init(log) != NGX_OK) {
  27.         return NGX_ERROR;
  28.     }
  29. #endif

  30.     if (ngx_init_setproctitle(log) != NGX_OK) {
  31.         return NGX_ERROR;
  32.     }

  33.     ngx_pagesize = getpagesize();
  34.     ngx_cacheline_size = NGX_CPU_CACHE_LINE;

  35.     for (n = ngx_pagesize; n >>= 1; ngx_pagesize_shift++) { /* void */ }

  36. #if (NGX_HAVE_SC_NPROCESSORS_ONLN)
  37.     if (ngx_ncpu == 0) {
  38.         ngx_ncpu = sysconf(_SC_NPROCESSORS_ONLN);
  39.     }
  40. #endif

  41.     if (ngx_ncpu < 1) {
  42.         ngx_ncpu = 1;
  43.     }

  44.     ngx_cpuinfo();

  45.     if (getrlimit(RLIMIT_NOFILE, &rlmt) == -1) {
  46.         ngx_log_error(NGX_LOG_ALERT, log, errno,
  47.                       "getrlimit(RLIMIT_NOFILE) failed)");
  48.         return NGX_ERROR;
  49.     }

  50.     ngx_max_sockets = (ngx_int_t) rlmt.rlim_cur;

  51. #if (NGX_HAVE_INHERITED_NONBLOCK || NGX_HAVE_ACCEPT4)
  52.     ngx_inherited_nonblocking = 1;
  53. #else
  54.     ngx_inherited_nonblocking = 0;
  55. #endif

  56.     srandom(ngx_time());

  57.     return NGX_OK;
  58. }


  59. void
  60. ngx_os_status(ngx_log_t *log)
  61. {
  62.     ngx_log_error(NGX_LOG_NOTICE, log, 0, NGINX_VER_BUILD);

  63. #ifdef NGX_COMPILER
  64.     ngx_log_error(NGX_LOG_NOTICE, log, 0, "built by " NGX_COMPILER);
  65. #endif

  66. #if (NGX_HAVE_OS_SPECIFIC_INIT)
  67.     ngx_os_specific_status(log);
  68. #endif

  69.     ngx_log_error(NGX_LOG_NOTICE, log, 0,
  70.                   "getrlimit(RLIMIT_NOFILE): %r:%r",
  71.                   rlmt.rlim_cur, rlmt.rlim_max);
  72. }


  73. #if 0

  74. ngx_int_t
  75. ngx_posix_post_conf_init(ngx_log_t *log)
  76. {
  77.     ngx_fd_t  pp[2];

  78.     if (pipe(pp) == -1) {
  79.         ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "pipe() failed");
  80.         return NGX_ERROR;
  81.     }

  82.     if (dup2(pp[1], STDERR_FILENO) == -1) {
  83.         ngx_log_error(NGX_LOG_EMERG, log, errno, "dup2(STDERR) failed");
  84.         return NGX_ERROR;
  85.     }

  86.     if (pp[1] > STDERR_FILENO) {
  87.         if (close(pp[1]) == -1) {
  88.             ngx_log_error(NGX_LOG_EMERG, log, errno, "close() failed");
  89.             return NGX_ERROR;
  90.         }
  91.     }

  92.     return NGX_OK;
  93. }

  94. #endif