mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
146 lines
4.1 KiB
C
146 lines
4.1 KiB
C
/*
|
|
* Copyright (c) 1983 Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
/*static char *sccsid = "from: @(#)getservent.c 5.9 (Berkeley) 2/24/91";*/
|
|
static char *rcsid = "$Id$";
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
#include <pthread.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netdb.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include "serv_internal.h"
|
|
|
|
static pthread_mutex_t serv_file_lock = PTHREAD_MUTEX_INITIALIZER;
|
|
static int serv_file_stayopen=0;
|
|
static FILE *serv_file=NULL;
|
|
|
|
void setservent(int stayopen)
|
|
{
|
|
pthread_mutex_lock(&serv_file_lock);
|
|
serv_file_stayopen |= stayopen;
|
|
if (serv_file)
|
|
rewind(serv_file);
|
|
else
|
|
serv_file = fopen(_PATH_SERVICES, "r");
|
|
pthread_mutex_unlock(&serv_file_lock);
|
|
}
|
|
|
|
void endservent()
|
|
{
|
|
pthread_mutex_lock(&serv_file_lock);
|
|
if (serv_file)
|
|
{
|
|
fclose(serv_file);
|
|
serv_file=NULL;
|
|
}
|
|
pthread_mutex_unlock(&serv_file_lock);
|
|
}
|
|
|
|
struct servent *getservent()
|
|
{
|
|
char *buf = _serv_buf();
|
|
|
|
return getservent_r((struct servent *) buf, buf + sizeof(struct servent),
|
|
SERV_BUFSIZE);
|
|
}
|
|
|
|
struct servent *getservent_r(struct servent *result, char *buf, int bufsize)
|
|
{
|
|
char *p, *q, **alias;
|
|
int l;
|
|
|
|
errno = 0;
|
|
pthread_mutex_lock(&serv_file_lock);
|
|
if (serv_file == NULL && !(serv_file = fopen(_PATH_SERVICES, "r"))) {
|
|
pthread_mutex_unlock(&serv_file_lock);
|
|
return NULL;
|
|
}
|
|
while (fgets(buf, bufsize, serv_file)) {
|
|
if (*buf == '#')
|
|
continue;
|
|
p = strpbrk(buf, "#\n");
|
|
if (p == NULL)
|
|
continue;
|
|
*p = '\0';
|
|
l = strlen(buf) + 1;
|
|
result->s_name = buf;
|
|
q = strpbrk(buf, " \t");
|
|
if (q == NULL)
|
|
continue;
|
|
*q++ = '\0';
|
|
while (*q == ' ' || *q == '\t')
|
|
q++;
|
|
p = strpbrk(q, ",/");
|
|
if (p == NULL)
|
|
continue;
|
|
*p++ = '\0';
|
|
if (SP(SP(buf, char, l), char *, 1) > buf + bufsize) {
|
|
errno = ERANGE;
|
|
break;
|
|
}
|
|
result->s_port = htons((u_short)atoi(q));
|
|
result->s_proto = p;
|
|
result->s_aliases = (char **) ALIGN(buf + l, char *);
|
|
alias = result->s_aliases;
|
|
p = strpbrk(p, " \t");
|
|
if (p != NULL)
|
|
*p++ = '\0';
|
|
while (p && *p) {
|
|
if (*p == ' ' || *p == '\t') {
|
|
p++;
|
|
continue;
|
|
}
|
|
if ((char *) &alias[2] > buf + bufsize) {
|
|
errno = ERANGE;
|
|
break;
|
|
}
|
|
*alias++ = p;
|
|
p = strpbrk(p, " \t");
|
|
if (p != NULL)
|
|
*p++ = '\0';
|
|
}
|
|
*alias = NULL;
|
|
pthread_mutex_unlock(&serv_file_lock);
|
|
return result;
|
|
}
|
|
|
|
pthread_mutex_unlock(&serv_file_lock);
|
|
return NULL;
|
|
}
|
|
|