Doxyfy ircd_osdep.h and os_generic.c.
authorMichael Poole <mdpoole@troilus.org>
Thu, 30 Sep 2004 03:18:15 +0000 (03:18 +0000)
committerMichael Poole <mdpoole@troilus.org>
Thu, 30 Sep 2004 03:18:15 +0000 (03:18 +0000)
Define IPV6 in Doxyfile, to pull in IPv6-only functions.

git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1200 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

Doxyfile
include/ircd_osdep.h
ircd/os_generic.c

index 6d08d4a92f9105758ffd5b9ceb06b652d0c1010f..f8a3afb496931921cd2c9d008a64f1fe640f3e74 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -875,7 +875,7 @@ INCLUDE_FILE_PATTERNS  =
 # or name=definition (no spaces). If the definition and the = are
 # omitted =1 is assumed.
 
-PREDEFINED             = DEBUGMODE FORCEINLINE
+PREDEFINED             = DEBUGMODE FORCEINLINE IPV6
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
 # this tag can be used to specify a list of macro names that should be expanded.
index 87a443a87a64541974816ba6dd28d30ce000a9cc..4eeb66f2298260820c43f053dd722eaed032bff5 100644 (file)
@@ -1,7 +1,6 @@
-/*
- * ircd_osdep.h
- *
- * $Id$
+/** @file ircd_osdep.h
+ * @brief Public definitions and APIs for OS-dependent operations.
+ * @version $Id$
  */
 #ifndef INCLUDED_ircd_osdep_h
 #define INCLUDED_ircd_osdep_h
@@ -10,10 +9,11 @@ struct Client;
 struct irc_sockaddr;
 struct MsgQ;
 
+/** Result of an input/output operation. */
 typedef enum IOResult {
-  IO_FAILURE = -1,
-  IO_BLOCKED = 0,
-  IO_SUCCESS = 1
+  IO_FAILURE = -1, /**< Serious I/O error (not due to blocking). */
+  IO_BLOCKED = 0,  /**< I/O could not start because it would block. */
+  IO_SUCCESS = 1   /**< I/O succeeded. */
 } IOResult;
 
 /*
@@ -21,7 +21,11 @@ typedef enum IOResult {
  * Client struct. When passed as a parameter, the pointer just needs
  * to be forwarded to the enumeration function.
  */
-typedef void (*EnumFn)(struct Client*, const char* msg);
+/** Callback function to show rusage information.
+ * @param cptr Client to receive the message.
+ * @param msg Text message to send to user.
+ */
+typedef void (*EnumFn)(struct Client* cptr, const char* msg);
 
 extern int os_disable_options(int fd);
 extern int os_get_rusage(struct Client* cptr, int uptime, EnumFn enumerator);
index 7b4fe0f01fd9d87d7bb69538bd4571918447deea..203c107ab3d2e0ec8a4d2f3825476434ccc030cf 100644 (file)
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * $Id$
- *
+ */
+/* @file
+ * @brief Implementation of OS-dependent operations.
+ * @version $Id$
  */
 #include "config.h"
 
-#define _XOPEN_SOURCE  500 /* make limits.h #define IOV_MAX */
-#define __EXTENSIONS__  1   /* make Solaris netinet/in.h know IPv6 */
+#define _XOPEN_SOURCE  500 /**< make limits.h #define IOV_MAX */
+#define __EXTENSIONS__  1   /**< make Solaris netinet/in.h know IPv6 */
 
 #include "ircd_osdep.h"
 #include "msgq.h"
@@ -59,7 +60,7 @@
 #endif
 
 #ifndef IOV_MAX
-#define IOV_MAX 16     /* minimum required */
+#define IOV_MAX 16     /**< minimum required length of an iovec array */
 #endif
 
 #ifdef HPUX
 #endif
 
 #ifdef IPV6
+/** Native socket address type. */
 #define sockaddr_native sockaddr_in6
+/** Field name inside sockaddr_native to find address family. */
 #define sn_family sin6_family
 
+/** Convert native socket address to IRC format.
+ * @param[in] v6 Native socket address.
+ * @param[out] irc IRC format socket address.
+ */
 void sockaddr_to_irc(const struct sockaddr_in6 *v6, struct irc_sockaddr *irc)
 {
     if (v6->sin6_family == AF_INET6) {
@@ -87,6 +94,13 @@ void sockaddr_to_irc(const struct sockaddr_in6 *v6, struct irc_sockaddr *irc)
     else assert(0 && "Unhandled native address family");
 }
 
+/** Convert IRC socket address to native format.
+ * @param[out] v6 Native socket address.
+ * @param[in] irc IRC socket address.
+ * @param[in] persist If non-zero, and \a irc is an IPv4 address,
+ * create an AF_INET size address.
+ * @return Length of address written to \a v6.
+ */
 int sockaddr_from_irc(struct sockaddr_in6 *v6, const struct irc_sockaddr *irc, int persist)
 {
     memset(v6, 0, sizeof(*v6));
@@ -145,6 +159,12 @@ int sockaddr_from_irc(struct sockaddr_in *v4, const struct irc_sockaddr *irc, in
  * different field names for "struct rusage".
  * -avalon
  */
+/** Send resource usage information to a client.
+ * @param[in] cptr Client requesting information.
+ * @param[in] uptime Wall time in seconds since the server started.
+ * @param[in] enumerator Function to call to send a line to \a cptr.
+ * @return Zero if some usage reports could not be sent, non-zero on success.
+ */
 int os_get_rusage(struct Client *cptr, int uptime, EnumFn enumerator)
 {
 #ifdef HAVE_GETRUSAGE
@@ -233,6 +253,10 @@ int os_get_rusage(struct Client *cptr, int uptime, EnumFn enumerator)
   return 1;
 }
 
+/** Look up the most recent socket error for a socket file descriptor.
+ * @param[in] fd File descriptor to check.
+ * @return Error code from the socket, or 0 if the OS does not support this.
+ */
 int os_get_sockerr(int fd)
 {
   int    err = 0;
@@ -243,14 +267,9 @@ int os_get_sockerr(int fd)
   return err;
 }
 
-/*
- * set_non_blocking
- *
- * Set the client connection into non-blocking mode. If your
- * system doesn't support this, you can make this a dummy
- * function (and get all the old problems that plagued the
- * blocking version of IRC--not a problem if you are a
- * lightly loaded node...)
+/** Set a file descriptor to non-blocking mode.
+ * @param[in] fd %Socket file descriptor.
+ * @return Non-zero on success, or zero on failure.
  */
 int os_set_nonblocking(int fd)
 {
@@ -286,9 +305,9 @@ int os_set_nonblocking(int fd)
   return 1;
 }
 
-
-/*
- *  set_sock_opts
+/** Mark a socket's address as reusable.
+ * @param[in] fd %Socket file descriptor to manipulate.
+ * @return Non-zero on success, or zero on failure.
  */
 int os_set_reuseaddr(int fd)
 {
@@ -297,6 +316,12 @@ int os_set_reuseaddr(int fd)
                           (const char*) &opt, sizeof(opt)));
 }
 
+/** Set a socket's send and receive buffer sizes.
+ * @param[in] fd %Socket file descriptor to manipulate.
+ * @param[in] ssize New send buffer size.
+ * @param[in] rsize New receive buffer size.
+ * @return Non-zero on success, or zero on failure.
+ */
 int os_set_sockbufs(int fd, unsigned int ssize, unsigned int rsize)
 {
   unsigned int sopt = ssize;
@@ -307,6 +332,11 @@ int os_set_sockbufs(int fd, unsigned int ssize, unsigned int rsize)
                           (const char*) &sopt, sizeof(sopt)));
 }
 
+/** Set a socket's "type of service" value.
+ * @param[in] fd %Socket file descriptor to manipulate.
+ * @param[in] tos New type of service value to use.
+ * @return Non-zero on success, or zero on failure.
+ */
 int os_set_tos(int fd,int tos)
 {
 #if defined(IP_TOS) && defined(IPPROTO_IP)
@@ -317,6 +347,10 @@ int os_set_tos(int fd,int tos)
 #endif
 }
 
+/** Disable IP options on a socket.
+ * @param[in] fd %Socket file descriptor to manipulate.
+ * @return Non-zero on success, or zero on failure.
+ */
 int os_disable_options(int fd)
 {
 #if defined(IP_OPTIONS) && defined(IPPROTO_IP)
@@ -344,13 +378,18 @@ int os_disable_options(int fd)
 #endif
 #endif
 
+/** Set file descriptor limit for the process.
+ * @param[in] max_descriptors Ideal number of file descriptors.
+ * @return Zero on success; -1 on error; positive number of possible
+ * file descriptors if \a max_descriptors is too high.
+ */
 int os_set_fdlimit(unsigned int max_descriptors)
 {
 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_FD_MAX)
   struct rlimit limit;
 
   if (!getrlimit(RLIMIT_FD_MAX, &limit)) {
-    if (limit.rlim_max < MAXCONNECTIONS)
+    if (limit.rlim_max < max_descriptors)
       return limit.rlim_max;
     limit.rlim_cur = limit.rlim_max;    /* make soft limit the max */
     return setrlimit(RLIMIT_FD_MAX, &limit);
@@ -359,14 +398,12 @@ int os_set_fdlimit(unsigned int max_descriptors)
   return 0;
 }
 
-/*
- * os_recv_nonb - non blocking read of a connection
- * returns:
- *  1  if data was read or socket is blocked (recoverable error)
- *    count_out > 0 if data was read
- *
- *  0  if socket closed from other end
- *  -1 if an unrecoverable error occurred
+/** Attempt to read from a non-blocking socket.
+ * @param[in] fd File descriptor to read from.
+ * @param[out] buf Output buffer to read into.
+ * @param[in] length Number of bytes to read.
+ * @param[out] count_out Receives number of bytes actually read.
+ * @return An IOResult value indicating status.
  */
 IOResult os_recv_nonb(int fd, char* buf, unsigned int length,
                  unsigned int* count_out)
@@ -401,6 +438,14 @@ IOResult os_recv_nonb(int fd, char* buf, unsigned int length,
   return IO_FAILURE;
 }
 
+/** Attempt to read from a non-blocking UDP socket.
+ * @param[in] fd File descriptor to read from.
+ * @param[out] buf Output buffer to read into.
+ * @param[in] length Number of bytes to read.
+ * @param[out] length_out Receives number of bytes actually read.
+ * @param[out] addr_out Peer address that sent the message.
+ * @return An IOResult value indicating status.
+ */
 IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length,
                           unsigned int* length_out,
                           struct irc_sockaddr* addr_out)
@@ -432,12 +477,14 @@ IOResult os_recvfrom_nonb(int fd, char* buf, unsigned int length,
   return IO_SUCCESS;
 }
 
-/*
- * os_sendto_nonb - non blocking send to a UDP socket
- * returns:
- *  1  if data was written, *count_out contains number of bytes
- *  0  if sendto call blocked
- *  -1 if an unrecoverable error occurred
+/** Attempt to write on a non-blocking UDP socket.
+ * @param[in] fd File descriptor to write to.
+ * @param[in] buf Output buffer to send from.
+ * @param[in] length Number of bytes to write.
+ * @param[out] count_out Receives number of bytes actually written.
+ * @param[in] flags Flags for call to sendto().
+ * @param[in] peer Destination address of the message.
+ * @return An IOResult value indicating status.
  */
 IOResult os_sendto_nonb(int fd, const char* buf, unsigned int length,
                         unsigned int* count_out, unsigned int flags,
@@ -468,14 +515,12 @@ IOResult os_sendto_nonb(int fd, const char* buf, unsigned int length,
   return IO_FAILURE;
 }
 
-/*
- * os_send_nonb - non blocking read of a connection
- * returns:
- *  1  if data was written
- *    count_out contains amount written
- *
- *  0  if write call blocked, recoverable error
- *  -1 if an unrecoverable error occurred
+/** Attempt to write on a connected socket.
+ * @param[in] fd File descriptor to write to.
+ * @param[in] buf Output buffer to send from.
+ * @param[in] length Number of bytes to write.
+ * @param[out] count_out Receives number of bytes actually written.
+ * @return An IOResult value indicating status.
  */
 IOResult os_send_nonb(int fd, const char* buf, unsigned int length, 
                  unsigned int* count_out)
@@ -502,6 +547,13 @@ IOResult os_send_nonb(int fd, const char* buf, unsigned int length,
   return IO_FAILURE;
 }
 
+/** Attempt a vectored write on a connected socket.
+ * @param[in] fd File descriptor to write to.
+ * @param[in] buf Message queue to send from.
+ * @param[out] count_in Number of bytes mapped from \a buf.
+ * @param[out] count_out Receives number of bytes actually written.
+ * @return An IOResult value indicating status.
+ */
 IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
                       unsigned int* count_out)
 {
@@ -536,6 +588,12 @@ IOResult os_sendv_nonb(int fd, struct MsgQ* buf, unsigned int* count_in,
   return IO_FAILURE;
 }
 
+/** Open a TCP or UDP socket on a particular address.
+ * @param[in] local Local address to bind to.
+ * @param[in] type SOCK_STREAM or SOCK_DGRAM.
+ * @param[in] port_name Port name (used in error diagnostics).
+ * @return Bound descriptor, or -1 on error.
+ */
 int os_socket(const struct irc_sockaddr* local, int type, const char* port_name)
 {
   struct sockaddr_native addr;
@@ -572,6 +630,11 @@ int os_socket(const struct irc_sockaddr* local, int type, const char* port_name)
   return fd;
 }
 
+/** Accept a connection on a socket.
+ * @param[in] fd Listening file descriptor.
+ * @param[out] peer Peer address of connection.
+ * @return File descriptor for accepted connection.
+ */
 int os_accept(int fd, struct irc_sockaddr* peer)
 {
   struct sockaddr_native addr;
@@ -587,6 +650,11 @@ int os_accept(int fd, struct irc_sockaddr* peer)
   return new_fd;
 }
 
+/** Start a non-blocking connection.
+ * @param[in] fd Disconnected file descriptor.
+ * @param[in] sin Target address for connection.
+ * @return IOResult code indicating status.
+ */
 IOResult os_connect_nonb(int fd, const struct irc_sockaddr* sin)
 {
   struct sockaddr_native addr;
@@ -598,6 +666,11 @@ IOResult os_connect_nonb(int fd, const struct irc_sockaddr* sin)
   return IO_SUCCESS;
 }
 
+/** Get local address of a socket.
+ * @param[in] fd File descriptor to operate on.
+ * @param[out] sin_out Receives local socket address.
+ * @return Non-zero on success; zero on error.
+ */
 int os_get_sockname(int fd, struct irc_sockaddr* sin_out)
 {
   struct sockaddr_native addr;
@@ -610,6 +683,11 @@ int os_get_sockname(int fd, struct irc_sockaddr* sin_out)
   return 1;
 }
 
+/** Get remote address of a socket.
+ * @param[in] fd File descriptor to operate on.
+ * @param[out] sin_out Receives remote socket address.
+ * @return Non-zero on success; zero on error.
+ */
 int os_get_peername(int fd, struct irc_sockaddr* sin_out)
 {
   struct sockaddr_native addr;
@@ -622,6 +700,11 @@ int os_get_peername(int fd, struct irc_sockaddr* sin_out)
   return 1;
 }
 
+/** Start listening on a socket.
+ * @param[in] fd Disconnected file descriptor.
+ * @param[in] backlog Maximum number of un-accept()ed connections to keep.
+ * @return Non-zero on success; zero on error.
+ */
 int os_set_listen(int fd, int backlog)
 {
   return (0 == listen(fd, backlog));