2003-06-05 01:28:33 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
static ngx_int_t ngx_linux_procfs(char *name, char *buf, size_t len,
|
|
|
|
ngx_log_t *log);
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
|
|
|
|
char ngx_linux_kern_ostype[50];
|
2006-12-26 19:50:56 +08:00
|
|
|
char ngx_linux_kern_osrelease[50];
|
2006-08-14 23:09:38 +08:00
|
|
|
|
|
|
|
int ngx_linux_rtsig_max;
|
2004-07-15 00:01:42 +08:00
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
static ngx_os_io_t ngx_linux_io = {
|
2003-06-05 01:28:33 +08:00
|
|
|
ngx_unix_recv,
|
2004-04-13 13:27:03 +08:00
|
|
|
ngx_readv_chain,
|
2004-09-07 23:29:22 +08:00
|
|
|
ngx_unix_send,
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_SENDFILE)
|
2003-11-26 23:42:18 +08:00
|
|
|
ngx_linux_sendfile_chain,
|
|
|
|
NGX_IO_SENDFILE
|
2004-04-13 13:27:03 +08:00
|
|
|
#else
|
|
|
|
ngx_writev_chain,
|
|
|
|
0
|
|
|
|
#endif
|
2003-06-05 01:28:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-02-22 22:40:13 +08:00
|
|
|
ngx_int_t
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_specific_init(ngx_log_t *log)
|
2003-06-05 01:28:33 +08:00
|
|
|
{
|
2004-11-21 03:52:20 +08:00
|
|
|
int name[2];
|
|
|
|
size_t len;
|
|
|
|
ngx_err_t err;
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
if (ngx_linux_procfs("/proc/sys/kernel/ostype",
|
|
|
|
ngx_linux_kern_ostype,
|
|
|
|
sizeof(ngx_linux_kern_ostype), log)
|
|
|
|
== -1)
|
|
|
|
{
|
2003-06-05 01:28:33 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
if (ngx_linux_procfs("/proc/sys/kernel/osrelease",
|
|
|
|
ngx_linux_kern_osrelease,
|
|
|
|
sizeof(ngx_linux_kern_osrelease), log)
|
|
|
|
== -1)
|
|
|
|
{
|
2003-06-05 01:28:33 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
name[0] = CTL_KERN;
|
2004-07-15 00:01:42 +08:00
|
|
|
name[1] = KERN_RTSIGMAX;
|
2004-10-04 23:04:06 +08:00
|
|
|
len = sizeof(ngx_linux_rtsig_max);
|
2005-02-22 22:40:13 +08:00
|
|
|
|
|
|
|
if (sysctl(name, 2, &ngx_linux_rtsig_max, &len, NULL, 0) == -1) {
|
2004-11-21 03:52:20 +08:00
|
|
|
err = ngx_errno;
|
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
if (err != NGX_ENOTDIR && err != NGX_ENOSYS) {
|
2004-11-21 03:52:20 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, err,
|
|
|
|
"sysctl(KERN_RTSIGMAX) failed");
|
2004-10-04 04:02:06 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_linux_rtsig_max = 0;
|
2004-07-15 00:01:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_io = ngx_linux_io;
|
|
|
|
|
|
|
|
return NGX_OK;
|
2003-06-05 01:28:33 +08:00
|
|
|
}
|
2004-10-04 04:02:06 +08:00
|
|
|
|
|
|
|
|
2005-02-22 22:40:13 +08:00
|
|
|
void
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_specific_status(ngx_log_t *log)
|
2004-10-04 04:02:06 +08:00
|
|
|
{
|
2005-07-25 17:41:38 +08:00
|
|
|
ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s",
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_linux_kern_ostype, ngx_linux_kern_osrelease);
|
|
|
|
|
2005-07-25 17:41:38 +08:00
|
|
|
ngx_log_error(NGX_LOG_NOTICE, log, 0, "sysctl(KERN_RTSIGMAX): %d",
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_linux_rtsig_max);
|
|
|
|
}
|
2006-08-14 23:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
static ngx_int_t
|
|
|
|
ngx_linux_procfs(char *name, char *buf, size_t len, ngx_log_t *log)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
ngx_fd_t fd;
|
|
|
|
|
|
|
|
fd = open(name, O_RDONLY);
|
|
|
|
|
|
|
|
if (fd == NGX_INVALID_FILE) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
|
|
|
"open(\"%s\") failed", name);
|
|
|
|
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = read(fd, buf, len);
|
|
|
|
|
|
|
|
if (n == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
|
|
|
"read(\"%s\") failed", name);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (buf[n - 1] == '\n') {
|
|
|
|
buf[--n] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_close_file(fd);
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|