jk_connect.c
来自「以便Apache与其他服务进行整合 Mod_JK安装」· C语言 代码 · 共 705 行 · 第 1/2 页
C
705 行
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * Description: Socket/Naming manipulation functions * Based on: Various Jserv files *//** * @package jk_connect * @author Gal Shachor <shachor@il.ibm.com> * @author Mladen Turk <mturk@apache.org> * @version $Revision: 555199 $ */#include "jk_connect.h"#include "jk_util.h"#ifdef HAVE_APR#include "apr_network_io.h"#include "apr_errno.h"#include "apr_general.h"#include "apr_pools.h"static apr_pool_t *jk_apr_pool = NULL;#endif#ifdef HAVE_SYS_FILIO_H/* FIONREAD on Solaris et al. */#include <sys/filio.h>#endif#if defined(WIN32) || (defined(NETWARE) && defined(__NOVELL_LIBC__))#define JK_IS_SOCKET_ERROR(x) ((x) == SOCKET_ERROR)#define JK_GET_SOCKET_ERRNO() errno = WSAGetLastError() - WSABASEERR#else#define JK_IS_SOCKET_ERROR(x) ((x) == -1)#define JK_GET_SOCKET_ERRNO() ((void)0)#endif /* WIN32 *//* our compiler cant deal with char* <-> const char* ... */#if defined(NETWARE) && !defined(__NOVELL_LIBC__)typedef char* SET_TYPE;#elsetypedef const char* SET_TYPE;#endifstatic int soblock(jk_sock_t sd){/* BeOS uses setsockopt at present for non blocking... */#ifndef WIN32 int fd_flags; fd_flags = fcntl(sd, F_GETFL, 0);#if defined(O_NONBLOCK) fd_flags &= ~O_NONBLOCK;#elif defined(O_NDELAY) fd_flags &= ~O_NDELAY;#elif defined(FNDELAY) fd_flags &= ~FNDELAY;#else#error Please teach JK how to make sockets blocking on your platform.#endif if (fcntl(sd, F_SETFL, fd_flags) == -1) { return errno; }#else u_long on = 0; if (ioctlsocket(sd, FIONBIO, &on) == SOCKET_ERROR) { errno = WSAGetLastError() - WSABASEERR; return errno; }#endif /* WIN32 */ return 0;}static int sononblock(jk_sock_t sd){#ifndef WIN32 int fd_flags; fd_flags = fcntl(sd, F_GETFL, 0);#if defined(O_NONBLOCK) fd_flags |= O_NONBLOCK;#elif defined(O_NDELAY) fd_flags |= O_NDELAY;#elif defined(FNDELAY) fd_flags |= FNDELAY;#else#error Please teach JK how to make sockets non-blocking on your platform.#endif if (fcntl(sd, F_SETFL, fd_flags) == -1) { return errno; }#else u_long on = 1; if (ioctlsocket(sd, FIONBIO, &on) == SOCKET_ERROR) { errno = WSAGetLastError() - WSABASEERR; return errno; }#endif /* WIN32 */ return 0;}#if defined (WIN32) || (defined(NETWARE) && defined(__NOVELL_LIBC__))/* WIN32 implementation */static int nb_connect(jk_sock_t sock, struct sockaddr *addr, int timeout){ int rc; if (timeout <= 0) return connect(sock, addr, sizeof(struct sockaddr_in)); if ((rc = sononblock(sock))) return -1; if (connect(sock, addr, sizeof(struct sockaddr_in)) == SOCKET_ERROR) { struct timeval tv; fd_set wfdset, efdset; if ((rc = WSAGetLastError()) != WSAEWOULDBLOCK) { soblock(sock); WSASetLastError(rc); return -1; } /* wait for the connect to complete or timeout */ FD_ZERO(&wfdset); FD_SET(sock, &wfdset); FD_ZERO(&efdset); FD_SET(sock, &efdset); tv.tv_sec = timeout; tv.tv_usec = 0; rc = select((int)sock + 1, NULL, &wfdset, &efdset, &tv); if (rc == SOCKET_ERROR || rc == 0) { rc = WSAGetLastError(); soblock(sock); WSASetLastError(rc); return -1; } /* Evaluate the efdset */ if (FD_ISSET(sock, &efdset)) { /* The connect failed. */ int rclen = (int)sizeof(rc); if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (char*) &rc, &rclen)) rc = 0; soblock(sock); if (rc) WSASetLastError(rc); return -1; } } soblock(sock); return 0;}#elif !defined(NETWARE)/* POSIX implementation */static int nb_connect(jk_sock_t sock, struct sockaddr *addr, int timeout){ int rc = 0; if (timeout > 0) { if (sononblock(sock)) return -1; } do { rc = connect(sock, addr, sizeof(struct sockaddr_in)); } while (rc == -1 && errno == EINTR); if ((rc == -1) && (errno == EINPROGRESS || errno == EALREADY) && (timeout > 0)) { fd_set wfdset; struct timeval tv; socklen_t rclen = (socklen_t)sizeof(rc); FD_ZERO(&wfdset); FD_SET(sock, &wfdset); tv.tv_sec = timeout; tv.tv_usec = 0; rc = select(sock + 1, NULL, &wfdset, NULL, &tv); if (rc <= 0) { /* Save errno */ int err = errno; soblock(sock); errno = err; return -1; } rc = 0;#ifdef SO_ERROR if (!FD_ISSET(sock, &wfdset) || (getsockopt(sock, SOL_SOCKET, SO_ERROR, (char *)&rc, &rclen) < 0) || rc) { if (rc) errno = rc; rc = -1; }#endif /* SO_ERROR */ } /* Not sure we can be already connected */ if (rc == -1 && errno == EISCONN) rc = 0; soblock(sock); return rc;}#else/* NETWARE implementation - blocking for now */static int nb_connect(jk_sock_t sock, struct sockaddr *addr, int timeout){ return connect(sock, addr, sizeof(struct sockaddr_in));}#endif#ifdef AS400_UTF8/* * i5/OS V5R4 need EBCDIC for its runtime calls but APR/APACHE works in UTF */in_addr_t jk_inet_addr(const char * addrstr){ in_addr_t addr; char *ptr; ptr = (char *)malloc(strlen(addrstr) + 1); jk_ascii2ebcdic((char *)addrstr, ptr); addr = inet_addr(ptr); free(ptr); return(addr);}#endif/** resolve the host IP */int jk_resolve(const char *host, int port, struct sockaddr_in *rc){ int x; struct in_addr laddr; memset(rc, 0, sizeof(struct sockaddr_in)); rc->sin_port = htons((short)port); rc->sin_family = AF_INET; /* Check if we only have digits in the string */ for (x = 0; host[x] != '\0'; x++) { if (!isdigit((int)(host[x])) && host[x] != '.') { break; } } /* If we found also characters we shoud make name to IP resolution */ if (host[x] != '\0') {#ifdef HAVE_APR apr_sockaddr_t *remote_sa, *temp_sa; char *remote_ipaddr; if (!jk_apr_pool) { if (apr_pool_create(&jk_apr_pool, NULL) != APR_SUCCESS) return JK_FALSE; } if (apr_sockaddr_info_get (&remote_sa, host, APR_UNSPEC, (apr_port_t) port, 0, jk_apr_pool) != APR_SUCCESS) return JK_FALSE; /* Since we are only handling AF_INET (IPV4) address (in_addr_t) */ /* make sure we find one of those. */ temp_sa = remote_sa; while ((NULL != temp_sa) && (AF_INET != temp_sa->family)) temp_sa = temp_sa->next; /* if temp_sa is set, we have a valid address otherwise, just return */ if (NULL != temp_sa) remote_sa = temp_sa; else return JK_FALSE; apr_sockaddr_ip_get(&remote_ipaddr, remote_sa); laddr.s_addr = jk_inet_addr(remote_ipaddr);#else /* HAVE_APR */ /* XXX : WARNING : We should really use gethostbyname_r in multi-threaded env */ /* Fortunatly when APR is available, ie under Apache 2.0, we use it */#if defined(NETWARE) && !defined(__NOVELL_LIBC__) struct hostent *hoste = gethostbyname((char*)host);#else struct hostent *hoste = gethostbyname(host);#endif if (!hoste) { return JK_FALSE; } laddr = *((struct in_addr *)hoste->h_addr_list[0]);#endif /* HAVE_APR */ } else { /* If we found only digits we use inet_addr() */ laddr.s_addr = jk_inet_addr(host); } memcpy(&(rc->sin_addr), &laddr, sizeof(laddr)); return JK_TRUE;}/** connect to Tomcat */jk_sock_t jk_open_socket(struct sockaddr_in *addr, int keepalive, int timeout, int sock_buf, jk_logger_t *l){ char buf[32]; jk_sock_t sock; int set = 1; int ret = 0;#ifdef SO_LINGER struct linger li;#endif JK_TRACE_ENTER(l); sock = socket(AF_INET, SOCK_STREAM, 0); if (!IS_VALID_SOCKET(sock)) { JK_GET_SOCKET_ERRNO(); jk_log(l, JK_LOG_ERROR, "socket() failed (errno=%d)", errno); JK_TRACE_EXIT(l); return JK_INVALID_SOCKET;; } /* Disable Nagle algorithm */ if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (SET_TYPE)&set, sizeof(set))) { jk_log(l, JK_LOG_ERROR, "failed setting TCP_NODELAY (errno=%d)", errno); jk_close_socket(sock); JK_TRACE_EXIT(l);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?