getnetent.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *   notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *   notice, this list of conditions and the following disclaimer in the
  12.  *   documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *   must display the following acknowledgement:
  15.  * This product includes software developed by the University of
  16.  * California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *   may be used to endorse or promote products derived from this software
  19.  *   without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33. #if defined(LIBC_SCCS) && !defined(lint)
  34. /*static char *sccsid = "from: @(#)getnetent.c 5.8 (Berkeley) 2/24/91";*/
  35. static char *rcsid = "$Id$";
  36. #endif /* LIBC_SCCS and not lint */
  37. #include <pthread.h>
  38. #include <sys/types.h>
  39. #include <sys/socket.h>
  40. #include <netinet/in.h>
  41. #include <arpa/inet.h>
  42. #include <netdb.h>
  43. #include <stdio.h>
  44. #include <string.h>
  45. #include <errno.h>
  46. #include "net_internal.h"
  47. static pthread_mutex_t net_file_lock = PTHREAD_MUTEX_INITIALIZER;
  48. static int net_file_stayopen;
  49. static FILE *net_file;
  50. void setnetent(int stayopen)
  51. {
  52. pthread_mutex_lock(&net_file_lock);
  53. net_file_stayopen |= stayopen;
  54. if (net_file)
  55. rewind(net_file);
  56. else
  57. net_file = fopen(_PATH_NETWORKS, "r");
  58. pthread_mutex_unlock(&net_file_lock);
  59. }
  60. void endnetent()
  61. {
  62. pthread_mutex_lock(&net_file_lock);
  63. if (net_file)
  64. fclose(net_file);
  65. pthread_mutex_unlock(&net_file_lock);
  66. }
  67. struct netent *getnetent()
  68. {
  69. char *buf = _net_buf();
  70. return getnetent_r((struct netent *) buf, buf + sizeof(struct netent),
  71.    NET_BUFSIZE);
  72. }
  73. struct netent *getnetent_r(struct netent *result, char *buf, int bufsize)
  74. {
  75. char *p, *q, **alias;
  76. int l;
  77. errno = 0;
  78. pthread_mutex_lock(&net_file_lock);
  79. if (net_file == NULL && (net_file = fopen(_PATH_NETWORKS, "r")) == NULL) {
  80. pthread_mutex_unlock(&net_file_lock);
  81. return NULL;
  82. }
  83. while (fgets(buf, bufsize, net_file)) {
  84. if (*buf == '#')
  85. continue;
  86. p = strpbrk(buf, "#n");
  87. if (p == NULL)
  88. continue;
  89. *p = '';
  90. l = strlen(buf) + 1;
  91. result->n_name = buf;
  92. p = strpbrk(buf, " t");
  93. if (p == NULL)
  94. continue;
  95. *p++ = '';
  96. while (*p == ' ' || *p == 't')
  97. p++;
  98. q = strpbrk(p, " t");
  99. if (q != NULL)
  100. *q++ = '';
  101. if (SP(SP(buf, char, l), char *, 1) > buf + bufsize) {
  102. errno = ERANGE;
  103. break;
  104. }
  105. result->n_net = inet_network(p);
  106. result->n_addrtype = AF_INET;
  107. result->n_aliases = (char **) ALIGN(buf + l, char *);
  108. alias = result->n_aliases;
  109. if (q != NULL) {
  110. p = q;
  111. while (p && *p) {
  112. if (*p == ' ' || *p == 't') {
  113. p++;
  114. continue;
  115. }
  116. if ((char *) &alias[2] > buf + bufsize) {
  117. errno = ERANGE;
  118. break;
  119. }
  120. *alias++ = p;
  121. p = strpbrk(p, " t");
  122. if (p != NULL)
  123. *p++ = '';
  124. }
  125. if (p && *p)
  126. break;
  127. }
  128. *alias = NULL;
  129. pthread_mutex_unlock(&net_file_lock);
  130. return result;
  131. }
  132. pthread_mutex_unlock(&net_file_lock);
  133. return NULL;
  134. }