root/usr.sbin/ypserv/ypserv/ypserv_proc.c
/*      $NetBSD: ypserv_proc.c,v 1.18 2018/01/17 03:16:10 christos Exp $        */

/*
 * Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se>
 * 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.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
 */

#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: ypserv_proc.c,v 1.18 2018/01/17 03:16:10 christos Exp $");
#endif

#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/param.h>
#include <netinet/in.h>
#include <netdb.h>
#include <fcntl.h>
#include <dirent.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#ifdef LIBWRAP
#include <syslog.h>
#endif

#include <rpc/rpc.h>
#include <rpc/xdr.h>
#include <rpcsvc/yp_prot.h>
#include <rpcsvc/ypclnt.h>

#include "ypserv.h"
#include "ypdb.h"
#include "ypdef.h"

#ifdef LIBWRAP
#define YPLOG(x)        if (lflag) syslog x
static const char *True = "TRUE";
static const char *False = "FALSE";
#define TORF(x) (x) ? True : False
#else
#define YPLOG(x)        /* nothing */
#endif

static int
securecheck(struct sockaddr *caller)
{
        char sbuf[NI_MAXSERV];

        if (getnameinfo(caller, (socklen_t)caller->sa_len, NULL, 0, sbuf,
            sizeof(sbuf), NI_NUMERICSERV))
                return (1);

        return (atoi(sbuf) >= IPPORT_RESERVED);
}

void *
/*ARGSUSED*/
ypproc_null_2_svc(void *argp, struct svc_req *rqstp)
{
        static char result;

        YPLOG((allow_severity, "null_2: request from %.500s", clientstr));

        (void)memset(&result, 0, sizeof(result));
        return ((void *)&result);
}

void *
ypproc_domain_2_svc(void *argp, struct svc_req *rqstp)
{
        static bool_t result;           /* is domain_served? */
        char *domain = *(char **)argp;
        char domain_path[MAXPATHLEN];
        struct stat finfo;

        if (_yp_invalid_domain(domain)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }
        (void)snprintf(domain_path, sizeof(domain_path), "%s/%s",
            YP_DB_PATH, domain);
        if ((stat(domain_path, &finfo) == 0) && S_ISDIR(finfo.st_mode))
                result = TRUE;
        else
                result = FALSE;

        YPLOG((allow_severity,
            "domain_2: request from %.500s, domain %s, served %s",
            clientstr, domain, TORF(result)));

        return ((void *)&result);
}

void *
ypproc_domain_nonack_2_svc(void *argp, struct svc_req *rqstp)
{
        static bool_t result;           /* is domain served? */
        char *domain = *(char **)argp;
        char domain_path[MAXPATHLEN];
        struct stat finfo;

        if (_yp_invalid_domain(domain)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }
        (void)snprintf(domain_path, sizeof(domain_path), "%s/%s",
            YP_DB_PATH, domain);
        if ((stat(domain_path, &finfo) == 0) && S_ISDIR(finfo.st_mode))
                result = TRUE;
        else
                result = FALSE;

        YPLOG((allow_severity,
            "domain_nonack_2: request from %.500s, domain %s, served %s",
            clientstr, domain, TORF(result)));

        if (!result)
                return (NULL);  /* don't send nack */

        return ((void *)&result);
}

void *
ypproc_match_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_val res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_key *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain) || _yp_invalid_map(k->map)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "match_2: request from %.500s, secure %s, domain %s, map %s, "
            "key %.*s", clientstr, TORF(secure), k->domain, k->map,
            k->keydat.dsize, k->keydat.dptr));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_YPERR;
        } else
                res = ypdb_get_record(k->domain, k->map, k->keydat, secure);

        return ((void *)&res);
}

void *
ypproc_first_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_key_val res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_nokey *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain) || _yp_invalid_map(k->map)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "first_2: request from %.500s, secure %s, domain %s, map %s",
            clientstr, TORF(secure), k->domain, k->map));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_YPERR;
        } else
                res = ypdb_get_first(k->domain, k->map, FALSE);

        return ((void *)&res);
}

void *
ypproc_next_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_key_val res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_key *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain) || _yp_invalid_map(k->map)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "next_2: request from %.500s, secure %s, domain %s, map %s, "
            "key %.*s", clientstr, TORF(secure), k->domain, k->map,
            k->keydat.dsize, k->keydat.dptr));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_YPERR;
        } else
                res = ypdb_get_next(k->domain, k->map, k->keydat, FALSE);

        return ((void *)&res);
}

void *
ypproc_xfr_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_xfr res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_xfr *ypx = argp;
        char tid[11], prog[11], port[11];
        char hbuf[NI_MAXHOST];
        char ypxfr_proc[] = YPXFR_PROC;

        (void)memset(&res, 0, sizeof(res));

        YPLOG((allow_severity,
            "xfr_2: request from %.500s, domain %s, tid %d, prog %d, port %d, "
            "map %s", clientstr, ypx->map_parms.domain, ypx->transid,
            ypx->proto, ypx->port, ypx->map_parms.map));

        if (_yp_invalid_domain(ypx->map_parms.domain) ||
            _yp_invalid_map(ypx->map_parms.map) ||
            securecheck(caller)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        switch (vfork()) {
        case -1:
                svcerr_systemerr(rqstp->rq_xprt);
                return (NULL);

        case 0:
                (void)snprintf(tid, sizeof(tid), "%d", ypx->transid);
                (void)snprintf(prog, sizeof(prog), "%d", ypx->proto);
                (void)snprintf(port, sizeof(port), "%d", ypx->port);
                if (getnameinfo(caller, (socklen_t)caller->sa_len, hbuf,
                    sizeof(hbuf), NULL, 0, 0))
                        _exit(1);       /* XXX report error ? */

                (void)execl(ypxfr_proc, "ypxfr", "-d", ypx->map_parms.domain,
                    "-C", tid, prog, hbuf, port, ypx->map_parms.map, NULL);
                _exit(1);               /* XXX report error? */
        }

        /*
         * XXX: fill in res
         */

        return ((void *)&res);
}

void *
/*ARGSUSED*/
ypproc_clear_2_svc(void *argp, struct svc_req *rqstp)
{
        static char res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
#ifdef OPTIMIZE_DB
        const char *optdbstr = True;
#else
        const char *optdbstr = False;
#endif

        YPLOG((allow_severity,
            "clear_2: request from %.500s, optimize_db %s",
            clientstr, optdbstr));

        if (securecheck(caller)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

#ifdef OPTIMIZE_DB
        ypdb_close_all();
#endif

        (void)memset(&res, 0, sizeof(res));
        return ((void *)&res);
}

void *
ypproc_all_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_all res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_nokey *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain) || _yp_invalid_map(k->map)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "all_2: request from %.500s, secure %s, domain %s, map %s",
            clientstr, TORF(secure), k->domain, k->map));

        (void)memset(&res, 0, sizeof(res));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.ypresp_all_u.val.status = YP_YPERR;
                return (&res);
        }
        
        switch (fork()) {
        case -1:
                /* XXXCDC An error has occurred */
                return (NULL);

        case 0:
                /* CHILD: send result, then exit */
                if (!svc_sendreply(rqstp->rq_xprt, (xdrproc_t)ypdb_xdr_get_all, (void *)k))
                        svcerr_systemerr(rqstp->rq_xprt);

                /* Note: no need to free args; we're exiting. */
                exit(0);
        }

        /* PARENT: just continue */
        return (NULL);
}

void *
ypproc_master_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_master res;
        static const char *nopeer = "";
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_nokey *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain) || _yp_invalid_map(k->map)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "master_2: request from %.500s, secure %s, domain %s, map %s",
            clientstr, TORF(secure), k->domain, k->map));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_YPERR;
        } else
                res = ypdb_get_master(k->domain, k->map);

        /*
         * This code was added because a yppoll <unknown-domain>
         * from a sun crashed the server in xdr_string, trying
         * to access the peer through a NULL-pointer. yppoll in
         * this server start asking for order. If order is ok
         * then it will ask for master. SunOS 4 asks for both
         * always. I'm not sure this is the best place for the
         * fix, but for now it will do. xdr_peername or
         * xdr_string in ypserv_xdr.c may be a better place?
         */
        if (res.master == NULL)
                res.master = __UNCONST(nopeer);

        return ((void *)&res);
}


void *
ypproc_order_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_order res;
        struct sockaddr *caller = svc_getrpccaller(rqstp->rq_xprt)->buf;
        struct ypreq_nokey *k = argp;
        int secure;

        if (_yp_invalid_domain(k->domain)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        secure = ypdb_secure(k->domain, k->map);

        YPLOG((allow_severity,
            "order_2: request from %.500s, secure %s, domain %s, map %s",
            clientstr, TORF(secure), k->domain, k->map));

        if (secure && securecheck(caller)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_YPERR;
        } else if (_yp_invalid_map(k->map)) {
                memset(&res, 0, sizeof(res));
                res.status = YP_NOMAP;
        } else {
                res = ypdb_get_order(k->domain, k->map);
        }

        return ((void *)&res);
}

void *
ypproc_maplist_2_svc(void *argp, struct svc_req *rqstp)
{
        static struct ypresp_maplist res;
        char domain_path[MAXPATHLEN];
        char *domain = *(char **)argp;
        struct stat finfo;
        DIR *dirp = NULL;
        struct dirent *dp;
        char *suffix;
        u_int status;
        struct ypmaplist *m;

        if (_yp_invalid_domain(domain)) {
                svcerr_auth(rqstp->rq_xprt, AUTH_FAILED);
                return (NULL);
        }

        YPLOG((allow_severity,
            "maplist_2: request from %.500s, domain %s",
            clientstr, domain));

        (void)memset(&res, 0, sizeof(res));

        (void)snprintf(domain_path, sizeof(domain_path), "%s/%s", YP_DB_PATH,
            domain);

        memset(&res, 0, sizeof(res));
        status = YP_TRUE;

        if ((stat(domain_path, &finfo) != 0) || !S_ISDIR(finfo.st_mode)) {
                status = YP_NODOM;
                goto out;
        }

        if ((dirp = opendir(domain_path)) == NULL) {
                status = YP_NODOM;
                goto out;
        }

        /*
         * Look for the .db files; they're the maps.
         *
         * XXX This might need some re-thinking for supporting
         * XXX alternate password databases.
         */
        for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp)) {
                /* Eliminate impossible names. */
                if ((strcmp(dp->d_name, ".") == 0) ||
                    ((strcmp(dp->d_name, "..") == 0)) ||
                    (dp->d_namlen < 4) || (dp->d_namlen > YPMAXMAP + 3))
                        continue;

                /* Check the file suffix. */
                suffix = (char *)&dp->d_name[dp->d_namlen - 3];
                if (strcmp(suffix, ".db") == 0) {
                        /* Found one. */
                        m = calloc(1, sizeof(struct ypmaplist));
                        if (m == NULL) {
                                status = YP_YPERR;
                                goto out;
                        }

                        (void)strlcpy(m->ypml_name, dp->d_name,
                            (size_t)(dp->d_namlen - 2));
                        m->ypml_next = res.list;
                        res.list = m;
                }
        }

 out:
        if (dirp != NULL)
                (void)closedir(dirp);

        res.status = status;
        
        return ((void *)&res);
}