OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [net/] [rexec.c] - Diff between revs 148 and 158

Only display areas with differences | Details | Blame | View Log

Rev 148 Rev 158
/*
/*
 * Copyright (c) 1980, 1993
 * Copyright (c) 1980, 1993
 *      The Regents of the University of California.  All rights reserved.
 *      The Regents of the University of California.  All rights reserved.
 *
 *
 * Redistribution and use in source and binary forms, with or without
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * modification, are permitted provided that the following conditions
 * are met:
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *    documentation and/or other materials provided with the distribution.
 * 4. Neither the name of the University nor the names of 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
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *    without specific prior written permission.
 *
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * 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
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * SUCH DAMAGE.
 */
 */
 
 
#if defined(LIBC_SCCS) && !defined(lint)
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)rexec.c     8.1 (Berkeley) 6/4/93";
static char sccsid[] = "@(#)rexec.c     8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
#endif /* LIBC_SCCS and not lint */
 
 
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
 
 
#include <netinet/in.h>
#include <netinet/in.h>
 
 
#include <alloca.h>
#include <alloca.h>
#include <stdio.h>
#include <stdio.h>
#include <netdb.h>
#include <netdb.h>
#include <errno.h>
#include <errno.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <unistd.h>
#include <unistd.h>
#include <sys/uio.h>
#include <sys/uio.h>
#include "libc-symbols.h"
#include "libc-symbols.h"
 
 
int     rexecoptions;
int     rexecoptions;
libc_freeres_ptr (static char *ahostbuf);
libc_freeres_ptr (static char *ahostbuf);
 
 
int
int
rexec_af(ahost, rport, name, pass, cmd, fd2p, af)
rexec_af(ahost, rport, name, pass, cmd, fd2p, af)
        char **ahost;
        char **ahost;
        int rport;
        int rport;
        const char *name, *pass, *cmd;
        const char *name, *pass, *cmd;
        int *fd2p;
        int *fd2p;
        sa_family_t af;
        sa_family_t af;
{
{
        struct sockaddr_storage sa2, from;
        struct sockaddr_storage sa2, from;
        struct addrinfo hints, *res0;
        struct addrinfo hints, *res0;
        const char *orig_name = name;
        const char *orig_name = name;
        const char *orig_pass = pass;
        const char *orig_pass = pass;
        u_short port = 0;
        u_short port = 0;
        int s, timo = 1, s3;
        int s, timo = 1, s3;
        char c;
        char c;
        int gai;
        int gai;
        char servbuff[NI_MAXSERV];
        char servbuff[NI_MAXSERV];
 
 
        snprintf(servbuff, sizeof(servbuff), "%d", ntohs(rport));
        snprintf(servbuff, sizeof(servbuff), "%d", ntohs(rport));
        servbuff[sizeof(servbuff) - 1] = '\0';
        servbuff[sizeof(servbuff) - 1] = '\0';
 
 
        memset(&hints, '\0', sizeof(hints));
        memset(&hints, '\0', sizeof(hints));
        hints.ai_family = af;
        hints.ai_family = af;
        hints.ai_socktype = SOCK_STREAM;
        hints.ai_socktype = SOCK_STREAM;
        hints.ai_flags = AI_CANONNAME;
        hints.ai_flags = AI_CANONNAME;
        gai = getaddrinfo(*ahost, servbuff, &hints, &res0);
        gai = getaddrinfo(*ahost, servbuff, &hints, &res0);
        if (gai){
        if (gai){
                /* XXX: set errno? */
                /* XXX: set errno? */
                return -1;
                return -1;
        }
        }
 
 
        if (res0->ai_canonname){
        if (res0->ai_canonname){
                free (ahostbuf);
                free (ahostbuf);
                ahostbuf = strdup (res0->ai_canonname);
                ahostbuf = strdup (res0->ai_canonname);
                if (ahostbuf == NULL) {
                if (ahostbuf == NULL) {
                        perror ("rexec: strdup");
                        perror ("rexec: strdup");
                        return (-1);
                        return (-1);
                }
                }
                *ahost = ahostbuf;
                *ahost = ahostbuf;
        } else
        } else
                *ahost = NULL;
                *ahost = NULL;
        ruserpass(res0->ai_canonname, &name, &pass);
        ruserpass(res0->ai_canonname, &name, &pass);
retry:
retry:
        s = socket(res0->ai_family, res0->ai_socktype, 0);
        s = socket(res0->ai_family, res0->ai_socktype, 0);
        if (s < 0) {
        if (s < 0) {
                perror("rexec: socket");
                perror("rexec: socket");
                return (-1);
                return (-1);
        }
        }
        if (connect(s, res0->ai_addr, res0->ai_addrlen) < 0) {
        if (connect(s, res0->ai_addr, res0->ai_addrlen) < 0) {
                if (errno == ECONNREFUSED && timo <= 16) {
                if (errno == ECONNREFUSED && timo <= 16) {
                        (void) __close(s);
                        (void) __close(s);
                        sleep(timo);
                        sleep(timo);
                        timo *= 2;
                        timo *= 2;
                        goto retry;
                        goto retry;
                }
                }
                perror(res0->ai_canonname);
                perror(res0->ai_canonname);
                return (-1);
                return (-1);
        }
        }
        if (fd2p == 0) {
        if (fd2p == 0) {
                (void) write(s, "", 1);
                (void) write(s, "", 1);
                port = 0;
                port = 0;
        } else {
        } else {
                char num[32];
                char num[32];
                int s2, sa2len;
                int s2, sa2len;
 
 
                s2 = socket(res0->ai_family, res0->ai_socktype, 0);
                s2 = socket(res0->ai_family, res0->ai_socktype, 0);
                if (s2 < 0) {
                if (s2 < 0) {
                        (void) __close(s);
                        (void) __close(s);
                        return (-1);
                        return (-1);
                }
                }
                listen(s2, 1);
                listen(s2, 1);
                sa2len = sizeof (sa2);
                sa2len = sizeof (sa2);
                if (getsockname(s2, (struct sockaddr *)&sa2, &sa2len) < 0) {
                if (getsockname(s2, (struct sockaddr *)&sa2, &sa2len) < 0) {
                        perror("getsockname");
                        perror("getsockname");
                        (void) __close(s2);
                        (void) __close(s2);
                        goto bad;
                        goto bad;
#ifdef SA_LEN
#ifdef SA_LEN
                } else if (sa2len != SA_LEN((struct sockaddr *)&sa2)) {
                } else if (sa2len != SA_LEN((struct sockaddr *)&sa2)) {
                        __set_errno(EINVAL);
                        __set_errno(EINVAL);
                        (void) __close(s2);
                        (void) __close(s2);
                        goto bad;
                        goto bad;
#endif
#endif
                }
                }
                port = 0;
                port = 0;
                if (!getnameinfo((struct sockaddr *)&sa2, sa2len,
                if (!getnameinfo((struct sockaddr *)&sa2, sa2len,
                                 NULL, 0, servbuff, sizeof(servbuff),
                                 NULL, 0, servbuff, sizeof(servbuff),
                                 NI_NUMERICSERV))
                                 NI_NUMERICSERV))
                        port = atoi(servbuff);
                        port = atoi(servbuff);
                (void) sprintf(num, "%u", port);
                (void) sprintf(num, "%u", port);
                (void) __write(s, num, strlen(num)+1);
                (void) __write(s, num, strlen(num)+1);
                { int len = sizeof (from);
                { int len = sizeof (from);
                  s3 = TEMP_FAILURE_RETRY (accept(s2, (struct sockaddr *)&from,
                  s3 = TEMP_FAILURE_RETRY (accept(s2, (struct sockaddr *)&from,
                                                  &len));
                                                  &len));
                  __close(s2);
                  __close(s2);
                  if (s3 < 0) {
                  if (s3 < 0) {
                        perror("accept");
                        perror("accept");
                        port = 0;
                        port = 0;
                        goto bad;
                        goto bad;
                  }
                  }
                }
                }
                *fd2p = s3;
                *fd2p = s3;
        }
        }
 
 
        struct iovec iov[3] =
        struct iovec iov[3] =
          {
          {
            [0] = { .iov_base = (void *) name, .iov_len = strlen (name) + 1 },
            [0] = { .iov_base = (void *) name, .iov_len = strlen (name) + 1 },
            /* should public key encypt the password here */
            /* should public key encypt the password here */
            [1] = { .iov_base = (void *) pass, .iov_len = strlen (pass) + 1 },
            [1] = { .iov_base = (void *) pass, .iov_len = strlen (pass) + 1 },
            [2] = { .iov_base = (void *) cmd, .iov_len = strlen (cmd) + 1 }
            [2] = { .iov_base = (void *) cmd, .iov_len = strlen (cmd) + 1 }
          };
          };
        (void) TEMP_FAILURE_RETRY (writev (s, iov, 3));
        (void) TEMP_FAILURE_RETRY (writev (s, iov, 3));
 
 
        /* We don't need the memory allocated for the name and the password
        /* We don't need the memory allocated for the name and the password
           in ruserpass anymore.  */
           in ruserpass anymore.  */
        if (name != orig_name)
        if (name != orig_name)
          free ((char *) name);
          free ((char *) name);
        if (pass != orig_pass)
        if (pass != orig_pass)
          free ((char *) pass);
          free ((char *) pass);
 
 
        if (__read(s, &c, 1) != 1) {
        if (__read(s, &c, 1) != 1) {
                perror(*ahost);
                perror(*ahost);
                goto bad;
                goto bad;
        }
        }
        if (c != 0) {
        if (c != 0) {
                while (__read(s, &c, 1) == 1) {
                while (__read(s, &c, 1) == 1) {
                        (void) __write(2, &c, 1);
                        (void) __write(2, &c, 1);
                        if (c == '\n')
                        if (c == '\n')
                                break;
                                break;
                }
                }
                goto bad;
                goto bad;
        }
        }
        freeaddrinfo(res0);
        freeaddrinfo(res0);
        return (s);
        return (s);
bad:
bad:
        if (port)
        if (port)
                (void) __close(*fd2p);
                (void) __close(*fd2p);
        (void) __close(s);
        (void) __close(s);
        freeaddrinfo(res0);
        freeaddrinfo(res0);
        return (-1);
        return (-1);
}
}
libc_hidden_def (rexec_af)
libc_hidden_def (rexec_af)
 
 
int
int
rexec(ahost, rport, name, pass, cmd, fd2p)
rexec(ahost, rport, name, pass, cmd, fd2p)
        char **ahost;
        char **ahost;
        int rport;
        int rport;
        const char *name, *pass, *cmd;
        const char *name, *pass, *cmd;
        int *fd2p;
        int *fd2p;
{
{
        return rexec_af(ahost, rport, name, pass, cmd, fd2p, AF_INET);
        return rexec_af(ahost, rport, name, pass, cmd, fd2p, AF_INET);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.