netutils.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /******************************************************************************
  2. *
  3. * Nagios plugins net utilities include file
  4. *
  5. * License: GPL
  6. * Copyright (c) 1999 Ethan Galstad (nagios@nagios.org)
  7. *
  8. * Last Modified: $Date$
  9. *
  10. * Description:
  11. *
  12. * This file contains common include files and function definitions
  13. * used in many of the plugins.
  14. *
  15. * License Information:
  16. *
  17. * This program is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License as published by
  19. * the Free Software Foundation; either version 2 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with this program; if not, write to the Free Software
  29. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  30. *
  31. * $Id$
  32. *
  33. ******************************************************************************/
  34. #ifndef _NETUTILS_H_
  35. #define _NETUTILS_H_
  36. #include "common.h"
  37. #include "utils.h"
  38. #include <netinet/in.h>
  39. #include <arpa/inet.h>
  40. #include "getaddrinfo.h"
  41. #ifdef HAVE_SYS_UN_H
  42. # include <sys/un.h>
  43. # ifndef UNIX_PATH_MAX
  44. /* linux uses this, on sun it's hard-coded at 108 without a define */
  45. # define UNIX_PATH_MAX 108
  46. # endif /* UNIX_PATH_MAX */
  47. #endif /* HAVE_SYS_UN_H */
  48. RETSIGTYPE socket_timeout_alarm_handler (int) __attribute__((noreturn));
  49. /* process_request and wrapper macros */
  50. #define process_tcp_request(addr, port, sbuf, rbuf, rsize) \
  51. process_request(addr, port, IPPROTO_TCP, sbuf, rbuf, rsize)
  52. #define process_udp_request(addr, port, sbuf, rbuf, rsize) \
  53. process_request(addr, port, IPPROTO_UDP, sbuf, rbuf, rsize)
  54. int process_tcp_request2 (const char *address, int port,
  55. const char *sbuffer, char *rbuffer, int rsize);
  56. int process_request (const char *address, int port, int proto,
  57. const char *sbuffer, char *rbuffer, int rsize);
  58. /* my_connect and wrapper macros */
  59. #define my_tcp_connect(addr, port, s) np_net_connect(addr, port, s, IPPROTO_TCP)
  60. #define my_udp_connect(addr, port, s) np_net_connect(addr, port, s, IPPROTO_UDP)
  61. int np_net_connect(const char *address, int port, int *sd, int proto);
  62. /* send_request and wrapper macros */
  63. #define send_tcp_request(s, sbuf, rbuf, rsize) \
  64. send_request(s, IPPROTO_TCP, sbuf, rbuf, rsize)
  65. #define send_udp_request(s, sbuf, rbuf, rsize) \
  66. send_request(s, IPPROTO_UDP, sbuf, rbuf, rsize)
  67. int send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int recv_size);
  68. /* "is_*" wrapper macros and functions */
  69. int is_host (const char *);
  70. int is_addr (const char *);
  71. int resolve_host_or_addr (const char *, int);
  72. void host_or_die(const char *str);
  73. #define is_inet_addr(addr) resolve_host_or_addr(addr, AF_INET)
  74. #ifdef USE_IPV6
  75. # define is_inet6_addr(addr) resolve_host_or_addr(addr, AF_INET6)
  76. # define is_hostname(addr) resolve_host_or_addr(addr, address_family)
  77. #else
  78. # define is_hostname(addr) resolve_host_or_addr(addr, AF_INET)
  79. #endif
  80. extern unsigned int socket_timeout;
  81. extern int econn_refuse_state;
  82. extern int was_refused;
  83. extern int address_family;
  84. /* SSL-Related functionality */
  85. #ifdef HAVE_SSL
  86. /* maybe this could be merged with the above np_net_connect, via some flags */
  87. int np_net_ssl_init(int sd);
  88. void np_net_ssl_cleanup();
  89. int np_net_ssl_write(const void *buf, int num);
  90. int np_net_ssl_read(void *buf, int num);
  91. int np_net_ssl_check_cert(int days_till_exp);
  92. #endif /* HAVE_SSL */
  93. #endif /* _NETUTILS_H_ */