home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / inetutil.1 / inetutil / inetutils-1.1 / talkd / table.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-22  |  6.2 KB  |  242 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[] = "@(#)table.c    8.1 (Berkeley) 6/4/93";
  36. #endif /* not lint */
  37.  
  38. /*
  39.  * Routines to handle insertion, deletion, etc on the table
  40.  * of requests kept by the daemon. Nothing fancy here, linear
  41.  * search on a double-linked list. A time is kept with each 
  42.  * entry so that overly old invitations can be eliminated.
  43.  *
  44.  * Consider this a mis-guided attempt at modularity
  45.  */
  46.  
  47. #ifdef HAVE_CONFIG_H
  48. #include <config.h>
  49. #endif
  50.  
  51. #include <sys/param.h>
  52. #include <sys/time.h>
  53. #include <sys/socket.h>
  54. #ifndef HAVE_OSOCKADDR
  55. #include <osockaddr.h>
  56. #endif
  57. #include <protocols/talkd.h>
  58. #include <syslog.h>
  59. #include <unistd.h>
  60. #include <stdio.h>
  61. #include <stdlib.h>
  62. #include <string.h>
  63.  
  64. #define MAX_ID 16000    /* << 2^15 so I don't have sign troubles */
  65.  
  66. #define NIL ((TABLE_ENTRY *)0)
  67.  
  68. extern    int debug;
  69. struct    timeval tp;
  70. struct    timezone txp;
  71.  
  72. typedef struct table_entry TABLE_ENTRY;
  73.  
  74. struct table_entry {
  75.     CTL_MSG request;
  76.     long    time;
  77.     TABLE_ENTRY *next;
  78.     TABLE_ENTRY *last;
  79. };
  80.  
  81. TABLE_ENTRY *table = NIL;
  82. CTL_MSG *find_request();
  83. CTL_MSG *find_match();
  84.  
  85. /*
  86.  * Look in the table for an invitation that matches the current
  87.  * request looking for an invitation
  88.  */
  89. CTL_MSG *
  90. find_match(request)
  91.     register CTL_MSG *request;
  92. {
  93.     register TABLE_ENTRY *ptr;
  94.     time_t current_time;
  95.  
  96.     gettimeofday(&tp, &txp);
  97.     current_time = tp.tv_sec;
  98.     if (debug)
  99.         print_request("find_match", request);
  100.     for (ptr = table; ptr != NIL; ptr = ptr->next) {
  101.         if ((ptr->time - current_time) > MAX_LIFE) {
  102.             /* the entry is too old */
  103.             if (debug)
  104.                 print_request("deleting expired entry",
  105.                     &ptr->request);
  106.             delete(ptr);
  107.             continue;
  108.         }
  109.         if (debug)
  110.             print_request("", &ptr->request);
  111.         if (strcmp(request->l_name, ptr->request.r_name) == 0 &&
  112.             strcmp(request->r_name, ptr->request.l_name) == 0 &&
  113.              ptr->request.type == LEAVE_INVITE)
  114.             return (&ptr->request);
  115.     }
  116.     return ((CTL_MSG *)0);
  117. }
  118.  
  119. /*
  120.  * Look for an identical request, as opposed to a complimentary
  121.  * one as find_match does 
  122.  */
  123. CTL_MSG *
  124. find_request(request)
  125.     register CTL_MSG *request;
  126. {
  127.     register TABLE_ENTRY *ptr;
  128.     time_t current_time;
  129.  
  130.     gettimeofday(&tp, &txp);
  131.     current_time = tp.tv_sec;
  132.     /*
  133.      * See if this is a repeated message, and check for
  134.      * out of date entries in the table while we are it.
  135.      */
  136.     if (debug)
  137.         print_request("find_request", request);
  138.     for (ptr = table; ptr != NIL; ptr = ptr->next) {
  139.         if ((ptr->time - current_time) > MAX_LIFE) {
  140.             /* the entry is too old */
  141.             if (debug)
  142.                 print_request("deleting expired entry",
  143.                     &ptr->request);
  144.             delete(ptr);
  145.             continue;
  146.         }
  147.         if (debug)
  148.             print_request("", &ptr->request);
  149.         if (strcmp(request->r_name, ptr->request.r_name) == 0 &&
  150.             strcmp(request->l_name, ptr->request.l_name) == 0 &&
  151.             request->type == ptr->request.type &&
  152.             request->pid == ptr->request.pid) {
  153.             /* update the time if we 'touch' it */
  154.             ptr->time = current_time;
  155.             return (&ptr->request);
  156.         }
  157.     }
  158.     return ((CTL_MSG *)0);
  159. }
  160.  
  161. insert_table(request, response)
  162.     CTL_MSG *request;
  163.     CTL_RESPONSE *response;
  164. {
  165.     register TABLE_ENTRY *ptr;
  166.     time_t current_time;
  167.  
  168.     gettimeofday(&tp, &txp);
  169.     current_time = tp.tv_sec;
  170.     request->id_num = new_id();
  171.     response->id_num = htonl(request->id_num);
  172.     /* insert a new entry into the top of the list */
  173.     ptr = (TABLE_ENTRY *)malloc(sizeof(TABLE_ENTRY));
  174.     if (ptr == NIL) {
  175.         syslog(LOG_ERR, "insert_table: Out of memory");
  176.         _exit(1);
  177.     }
  178.     ptr->time = current_time;
  179.     ptr->request = *request;
  180.     ptr->next = table;
  181.     if (ptr->next != NIL)
  182.         ptr->next->last = ptr;
  183.     ptr->last = NIL;
  184.     table = ptr;
  185. }
  186.  
  187. /*
  188.  * Generate a unique non-zero sequence number
  189.  */
  190. new_id()
  191. {
  192.     static int current_id = 0;
  193.  
  194.     current_id = (current_id + 1) % MAX_ID;
  195.     /* 0 is reserved, helps to pick up bugs */
  196.     if (current_id == 0)
  197.         current_id = 1;
  198.     return (current_id);
  199. }
  200.  
  201. /*
  202.  * Delete the invitation with id 'id_num'
  203.  */
  204. delete_invite(id_num)
  205.     int id_num;
  206. {
  207.     register TABLE_ENTRY *ptr;
  208.  
  209.     ptr = table;
  210.     if (debug)
  211.         syslog(LOG_DEBUG, "delete_invite(%d)", id_num);
  212.     for (ptr = table; ptr != NIL; ptr = ptr->next) {
  213.         if (ptr->request.id_num == id_num)
  214.             break;
  215.         if (debug)
  216.             print_request("", &ptr->request);
  217.     }
  218.     if (ptr != NIL) {
  219.         delete(ptr);
  220.         return (SUCCESS);
  221.     }
  222.     return (NOT_HERE);
  223. }
  224.  
  225. /*
  226.  * Classic delete from a double-linked list
  227.  */
  228. delete(ptr)
  229.     register TABLE_ENTRY *ptr;
  230. {
  231.  
  232.     if (debug)
  233.         print_request("delete", &ptr->request);
  234.     if (table == ptr)
  235.         table = ptr->next;
  236.     else if (ptr->last != NIL)
  237.         ptr->last->next = ptr->next;
  238.     if (ptr->next != NIL)
  239.         ptr->next->last = ptr->last;
  240.     free((char *)ptr);
  241. }
  242.