home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / talkd / announce.c next >
C/C++ Source or Header  |  1996-09-28  |  6KB  |  202 lines

  1. /*
  2.  * Copyright (c) 1983, 1993
  3.  *    The Regents of the University of California.  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.  
  34. #ifndef lint
  35. static char sccsid[] = "@(#)announce.c    8.3 (Berkeley) 4/28/95";
  36. #endif /* not lint */
  37.  
  38. #ifdef HAVE_CONFIG_H
  39. #include <config.h>
  40. #endif
  41.  
  42. #include <sys/types.h>
  43. #include <sys/uio.h>
  44. #include <sys/stat.h>
  45. #include <sys/time.h>
  46. #include <sys/wait.h>
  47. #include <sys/socket.h>
  48. #ifdef HAVE_OSOCKADDR_H
  49. #include <osockaddr.h>
  50. #endif
  51. #include <protocols/talkd.h>
  52. #include <errno.h>
  53. #include <syslog.h>
  54. #include <unistd.h>
  55. #include <stdio.h>
  56. #include <string.h>
  57. #ifdef HAVE_VIS_H
  58. #include <vis.h>
  59. #endif
  60.  
  61. extern char *hostname;
  62.  
  63. extern char *ttymsg ();
  64.  
  65. /*
  66.  * Announce an invitation to talk.
  67.  */
  68.     
  69. #ifndef HAVE_VIS_H
  70.  
  71. #define VIS_CSTYLE 0        /* dummy value */
  72.  
  73. /* A simpler version of bsd's vis function.  */
  74. static void
  75. strvis (dst, src, ignored)
  76.      char *dst, *src;
  77.      int ignored;
  78. {
  79.   int ch;
  80.   while (*src)
  81.     switch (ch = *src++)
  82.       {
  83.       case '\b': *dst++ = '\\'; *dst++ = 'b'; break;
  84.       case '\n': *dst++ = '\\'; *dst++ = 'n'; break;
  85.       case '\t': *dst++ = '\\'; *dst++ = 't'; break;
  86.       case '\a': *dst++ = '\\'; *dst++ = 'a'; break;
  87.       case '\f': *dst++ = '\\'; *dst++ = 'f'; break;
  88.       case '\\': *dst++ = '\\'; *dst++ = '\\'; break;
  89.       default:
  90.     if (isgraph (ch))
  91.       *dst++ = ch;
  92.     else
  93.       dst += sprintf (dst, "\\%03o", ch);
  94.       }
  95.   *dst = 0;
  96. }
  97. #endif /* !HAVE_VIS_H */
  98.  
  99. /*
  100.  * See if the user is accepting messages. If so, announce that 
  101.  * a talk is requested.
  102.  */
  103. announce(request, remote_machine)
  104.     CTL_MSG *request;
  105.     char *remote_machine;
  106. {
  107.     char full_tty[32];
  108.     FILE *tf;
  109.     struct stat stbuf;
  110.  
  111.     (void)snprintf(full_tty, sizeof(full_tty),
  112.         "%s%s", _PATH_DEV, request->r_tty);
  113.     if (stat(full_tty, &stbuf) < 0 || (stbuf.st_mode&020) == 0)
  114.         return (PERMISSION_DENIED);
  115.     return (print_mesg(request->r_tty, tf, request, remote_machine));
  116. }
  117.  
  118. #define max(a,b) ( (a) > (b) ? (a) : (b) )
  119. #define N_LINES 5
  120. #define N_CHARS 256
  121.  
  122. /*
  123.  * Build a block of characters containing the message. 
  124.  * It is sent blank filled and in a single block to
  125.  * try to keep the message in one piece if the recipient
  126.  * in in vi at the time
  127.  */
  128. print_mesg(tty, tf, request, remote_machine)
  129.     char *tty;
  130.     FILE *tf;
  131.     CTL_MSG *request;
  132.     char *remote_machine;
  133. {
  134.     struct timeval clock;
  135.     struct timezone zone;
  136.     struct tm *localtime();
  137.     struct tm *localclock;
  138.     struct iovec iovec;
  139.     char line_buf[N_LINES][N_CHARS];
  140.     int sizes[N_LINES];
  141.     char big_buf[N_LINES*N_CHARS];
  142.     char *bptr, *lptr, *vis_user;
  143.     int i, j, max_size;
  144.  
  145.     i = 0;
  146.     max_size = 0;
  147.     gettimeofday(&clock, &zone);
  148.     localclock = localtime( &clock.tv_sec );
  149.     (void)sprintf(line_buf[i], " ");
  150.     sizes[i] = strlen(line_buf[i]);
  151.     max_size = max(max_size, sizes[i]);
  152.     i++;
  153.     (void)sprintf(line_buf[i], "Message from Talk_Daemon@%s at %d:%02d ...",
  154.     hostname, localclock->tm_hour , localclock->tm_min );
  155.     sizes[i] = strlen(line_buf[i]);
  156.     max_size = max(max_size, sizes[i]);
  157.     i++;
  158.     vis_user = (char *) malloc(strlen(request->l_name) * 4 + 1);
  159.     strvis(vis_user, request->l_name, VIS_CSTYLE);
  160.     (void)sprintf(line_buf[i], "talk: connection requested by %s@%s",
  161.         vis_user, remote_machine);
  162.     sizes[i] = strlen(line_buf[i]);
  163.     max_size = max(max_size, sizes[i]);
  164.     i++;
  165.     (void)sprintf(line_buf[i], "talk: respond with:  talk %s@%s",
  166.         vis_user, remote_machine);
  167.     sizes[i] = strlen(line_buf[i]);
  168.     max_size = max(max_size, sizes[i]);
  169.     i++;
  170.     (void)sprintf(line_buf[i], " ");
  171.     sizes[i] = strlen(line_buf[i]);
  172.     max_size = max(max_size, sizes[i]);
  173.     i++;
  174.     bptr = big_buf;
  175.     *bptr++ = ''; /* send something to wake them up */
  176.     *bptr++ = '\r';    /* add a \r in case of raw mode */
  177.     *bptr++ = '\n';
  178.     for (i = 0; i < N_LINES; i++) {
  179.         /* copy the line into the big buffer */
  180.         lptr = line_buf[i];
  181.         while (*lptr != '\0')
  182.             *(bptr++) = *(lptr++);
  183.         /* pad out the rest of the lines with blanks */
  184.         for (j = sizes[i]; j < max_size + 2; j++)
  185.             *(bptr++) = ' ';
  186.         *(bptr++) = '\r';    /* add a \r in case of raw mode */
  187.         *(bptr++) = '\n';
  188.     }
  189.     *bptr = '\0';
  190.     iovec.iov_base = big_buf;
  191.     iovec.iov_len = bptr - big_buf;
  192.     /*
  193.      * we choose a timeout of RING_WAIT-5 seconds so that we don't
  194.      * stack up processes trying to write messages to a tty
  195.      * that is permanently blocked.
  196.      */
  197.     if (ttymsg(&iovec, 1, tty, RING_WAIT - 5) != NULL)
  198.         return (FAILED);
  199.  
  200.     return (SUCCESS);
  201. }
  202.