[BACK]Return to net.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / finger

Annotation of src/usr.bin/finger/net.c, Revision 1.4

1.4     ! millert     1: /*     $OpenBSD: net.c,v 1.3 1997/01/17 07:12:33 millert Exp $ */
1.2       deraadt     2:
1.1       deraadt     3: /*
                      4:  * Copyright (c) 1989 The Regents of the University of California.
                      5:  * All rights reserved.
                      6:  *
                      7:  * This code is derived from software contributed to Berkeley by
                      8:  * Tony Nardo of the Johns Hopkins University/Applied Physics Lab.
                      9:  *
                     10:  * Redistribution and use in source and binary forms, with or without
                     11:  * modification, are permitted provided that the following conditions
                     12:  * are met:
                     13:  * 1. Redistributions of source code must retain the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer.
                     15:  * 2. Redistributions in binary form must reproduce the above copyright
                     16:  *    notice, this list of conditions and the following disclaimer in the
                     17:  *    documentation and/or other materials provided with the distribution.
                     18:  * 3. All advertising materials mentioning features or use of this software
                     19:  *    must display the following acknowledgement:
                     20:  *     This product includes software developed by the University of
                     21:  *     California, Berkeley and its contributors.
                     22:  * 4. Neither the name of the University nor the names of its contributors
                     23:  *    may be used to endorse or promote products derived from this software
                     24:  *    without specific prior written permission.
                     25:  *
                     26:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     27:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     28:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     29:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     30:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     31:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     32:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     33:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     34:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     35:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     36:  * SUCH DAMAGE.
                     37:  */
                     38:
                     39: #ifndef lint
                     40: /*static char sccsid[] = "from: @(#)net.c      5.5 (Berkeley) 6/1/90";*/
1.4     ! millert    41: static char rcsid[] = "$OpenBSD: net.c,v 1.3 1997/01/17 07:12:33 millert Exp $";
1.1       deraadt    42: #endif /* not lint */
                     43:
                     44: #include <sys/types.h>
                     45: #include <sys/socket.h>
                     46: #include <netinet/in.h>
                     47: #include <arpa/inet.h>
                     48: #include <netdb.h>
                     49: #include <stdio.h>
                     50: #include <string.h>
                     51: #include <ctype.h>
                     52:
                     53: netfinger(name)
                     54:        char *name;
                     55: {
                     56:        extern int lflag;
                     57:        register FILE *fp;
                     58:        register int c, lastc;
                     59:        struct hostent *hp, def;
                     60:        struct servent *sp;
                     61:        struct sockaddr_in sin;
                     62:        int s;
1.3       millert    63:        char *alist[1], *host;
1.1       deraadt    64:
1.3       millert    65:        if (!(host = strrchr(name, '@')))
1.1       deraadt    66:                return;
                     67:        *host++ = NULL;
1.4     ! millert    68:        if (*host == NULL)
        !            69:                host = "localhost";
1.1       deraadt    70:        if (inet_aton(host, &sin.sin_addr) == 0) {
                     71:                hp = gethostbyname(host);
                     72:                if (hp == 0) {
                     73:                        (void)fprintf(stderr,
                     74:                            "finger: unknown host: %s\n", host);
                     75:                        return;
                     76:                }
                     77:                sin.sin_family = hp->h_addrtype;
                     78:                bcopy(hp->h_addr, (char *)&sin.sin_addr, hp->h_length);
                     79:                host = hp->h_name;
                     80:        } else
                     81:                sin.sin_family = AF_INET;
                     82:        if (!(sp = getservbyname("finger", "tcp"))) {
                     83:                (void)fprintf(stderr, "finger: tcp/finger: unknown service\n");
                     84:                return;
                     85:        }
                     86:        sin.sin_port = sp->s_port;
                     87:        if ((s = socket(sin.sin_family, SOCK_STREAM, 0)) < 0) {
                     88:                perror("finger: socket");
                     89:                return;
                     90:        }
                     91:
                     92:        /* have network connection; identify the host connected with */
                     93:        (void)printf("[%s]\n", host);
                     94:        if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
                     95:                perror("finger: connect");
                     96:                (void)close(s);
                     97:                return;
                     98:        }
                     99:
                    100:        /* -l flag for remote fingerd  */
                    101:        if (lflag)
                    102:                write(s, "/W ", 3);
                    103:        /* send the name followed by <CR><LF> */
                    104:        (void)write(s, name, strlen(name));
                    105:        (void)write(s, "\r\n", 2);
                    106:
                    107:        /*
                    108:         * Read from the remote system; once we're connected, we assume some
                    109:         * data.  If none arrives, we hang until the user interrupts.
                    110:         *
                    111:         * If we see a <CR> or a <CR> with the high bit set, treat it as
                    112:         * a newline; if followed by a newline character, only output one
                    113:         * newline.
                    114:         *
                    115:         * Otherwise, all high bits are stripped; if it isn't printable and
                    116:         * it isn't a space, we can simply set the 7th bit.  Every ASCII
                    117:         * character with bit 7 set is printable.
                    118:         */
                    119:        if (fp = fdopen(s, "r"))
                    120:                while ((c = getc(fp)) != EOF) {
                    121:                        c &= 0x7f;
                    122:                        if (c == '\r') {
                    123:                                if (lastc == '\r')
                    124:                                        continue;
                    125:                                c = '\n';
                    126:                                lastc = '\r';
                    127:                        } else {
                    128:                                if (!isprint(c) && !isspace(c))
                    129:                                        c |= 0x40;
                    130:                                if (lastc != '\r' || c != '\n')
                    131:                                        lastc = c;
                    132:                                else {
                    133:                                        lastc = '\n';
                    134:                                        continue;
                    135:                                }
                    136:                        }
                    137:                        putchar(c);
                    138:                }
                    139:        if (lastc != '\n')
                    140:                putchar('\n');
                    141:        (void)fclose(fp);
                    142: }