http_active.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:23k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2. http_active
  3. Copyright July 5, 2001, The University of North Carolina at Chapel Hill
  4. Redistribution and use in source and binary forms, with or without 
  5. modification, are permitted provided that the following conditions are met:
  6.   1. Redistributions of source code must retain the above copyright notice, 
  7.      this list of conditions and the following disclaimer.
  8.   2. Redistributions in binary form must reproduce the above copyright 
  9.      notice, this list of conditions and the following disclaimer in the 
  10.      documentation and/or other materials provided with the distribution.
  11.   3. The name of the author may not be used to endorse or promote products 
  12.      derived from this software without specific prior written permission.
  13. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
  14. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
  15. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
  16. EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
  17. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
  18. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
  19. OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  20. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
  21. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
  22. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  23. Contact person:
  24.     Frank D. Smith, University of North Carolina at Chapel Hill
  25.         email: smithfd@cs.unc.edu
  26. phone: 919-962-1884
  27. fax:   919-962-1799
  28. */
  29. /* Program to create an activity trace (summary form) of web browsing clients
  30.    with respect to three types of activity: client sending request data, 
  31.    server sending response data, client is idle (no request or response).
  32.    Identification of idle periods is used to infer user "think" times 
  33.    between requests for new top-level pages.    A client is defined by
  34.     a single IP address. 
  35.   
  36.    "Idle" is defined as a period of time greater than a threshold value
  37.    ("idle_limit" with a default of 2 seconds) during which a client has no
  38.    requests outstanding.  A request is outstanding from the
  39.    start time of a request until the end time (normal or terminated) of
  40.    the corresponding response.
  41.    The input to this program is the SORTed output from http_connect.  
  42.    The sort to be applied is produced with the following shell script:
  43.       sort -s -o $1.sort +1 -2 +0 -1 -T /tmp $1
  44.    This sorts all the records for a given client IP address in timestamp 
  45.    order.  
  46.    The output is also time ordered with respect to a single client (IP
  47.    address) and consists only of client request entries (in the same format
  48.    as the input) and ordered by start time, server responses (in the same 
  49.    format as the input) and ordered by end time, and client idle periods 
  50.    giving the elapsed idle time and ordered by the end of the idle period.  
  51.    The output file has extension ".activity" added by the program.
  52.    To get usage information, invoke the program with the -h switch.
  53. */
  54. #include <stdlib.h>
  55. #include <stdio.h>
  56. #include <math.h>
  57. #include <sys/time.h>
  58. #define min(a,b) ((a) <= (b) ? (a) : (b))
  59. #define max(a,b) ((a) >= (b) ? (a) : (b))
  60. void Usage(char *s)
  61. {
  62.   fprintf (stderr,"nUsage: %sn", s);
  63.   fprintf (stderr,"    [-w file_name] (name for output file)n");
  64.   fprintf (stderr,"    [-r file_name] (name for input file)n");
  65.   fprintf (stderr,"    [-I idle_limit] (min inactivity interval)n");
  66.   fprintf (stderr,"n");
  67.   exit(-1);
  68. }
  69.   FILE *dumpFP, *outFP;
  70.   struct timeval time_stamp = {0,0};
  71.   int req;
  72.   int rsp;
  73.   char ts[20]; 
  74.   char sh[25]; 
  75.   char sp[10];
  76.   char gt[3]; 
  77.   char dh[25]; 
  78.   char dp[10];
  79.   char fl[5]; 
  80.   char current_src[25] = "";
  81.   enum client_states 
  82.              {PENDING_ACTIVE, ACTIVE, PENDING_IDLE, IDLE};
  83.   enum client_states client_state = PENDING_ACTIVE;
  84.   enum event_types {SYN, ACT_REQ, ACT_RSP, END, REQ, RSP};
  85.   enum event_types event_type;
  86.   char idle_begin[20];
  87.   char earliest_end[20];
  88.   char last_client_ts[20];
  89. /* For each client (IP address) maintain a table of HTTP connections
  90.    that are "active" with the following information about each connection:
  91.      id (host/port 4-tuple identifying the connection 
  92.      activity (1 if a request has been sent and the response is not
  93.                yet complete; 0 otherwise)
  94.      state (like activity)
  95.    A connection is "active" (in the table) from the time a connection
  96.    start (SYN, ACT-REQ or ACT-RSP) is seen in the input until a 
  97.    connection end (FIN, RST, TRM) is also seen in the input
  98. */
  99.      
  100. int active_connections = 0;
  101. #define MAX_CONNECTIONS 1000
  102.   struct connect
  103.     {
  104.      char id[50];
  105.      int  activity;
  106.      enum event_types state;
  107.     }connections[MAX_CONNECTIONS];
  108.   char new_line[500];
  109. void error_line(char *s);
  110. void error_state(char *s);
  111. void log_REQ(void);
  112. void log_RSP(void);
  113. void log_IDLE(char *s);
  114. void set_connection(char *sp, char *dh, char *dp, enum event_types type);
  115. void ClearConnections(void);
  116. int ConnectionsActive(void);
  117. int FindConnection(char *sp, char *dh, char *dp);
  118. int AddConnection(char *sp, char *dh, char *dp);
  119. int RemoveConnection(char *sp, char *dh, char *dp);
  120. long elapsed_ms(char *end, char *start);
  121. void main (int argc, char* argv[])
  122. {
  123.   int i;
  124.   char input_name[256] = "";
  125.   char output_name[256] = "";
  126.   long idle_limit = 2000;  /* default threshold for idleness in millisec. */ 
  127.   long elapsed;
  128.   char parse_line[500];
  129.   char discard[50];
  130.   char *cursor;
  131.   char *vp;
  132.   /* Parse the command line */
  133.   i = 1;
  134.   while (i < argc) {
  135.     if (strcmp (argv[i], "-r") == 0) {
  136.       if (++i >= argc) Usage (argv[0]);
  137.       strcpy (input_name, argv[i]);
  138.     }
  139.     else if (strcmp (argv[i], "-w") == 0) {
  140.       if (++i >= argc) Usage (argv[0]);
  141.       strcpy (output_name, argv[i]);
  142.     }
  143.     else if (strcmp (argv[i], "-I") == 0) {
  144.       if (++i >= argc) Usage (argv[0]);
  145.       idle_limit = (long)atoi(argv[i]);
  146.     }
  147.     else 
  148.       Usage (argv[0]);
  149.     i++;
  150.   }
  151.   /* Open files */
  152.   if (strcmp(output_name, "") == 0)
  153.      outFP = stdout;
  154.   else 
  155.      {
  156.       strcat(output_name, ".activity");
  157.       if ((outFP = fopen (output_name, "w")) == NULL) {
  158.           fprintf (stderr, "error opening %sn", output_name);
  159.           exit (-1);
  160.           }
  161.      }
  162.   if (strcmp(input_name, "") == 0)
  163.      dumpFP = stdin;
  164.   else 
  165.      {
  166.       if ((dumpFP = fopen (input_name, "r")) == NULL) {
  167.           fprintf (stderr, "error opening %sn", input_name);
  168.           exit (-1);
  169.          }
  170.      }
  171.   /* Read each record in the input file.  Look for a change in the 
  172.      source IP address (which indicates a new client).  If a new
  173.      client, log the end of an idle period (if any) for the old
  174.      client and initialize the connection table for the new client.
  175.      If a record for the current client has been read, classify the
  176.      type of event it represent and process it to update the client
  177.      and connection state.
  178.   */
  179.   while (!feof (dumpFP)) {
  180.     /* Get and parse line of data */
  181.     if (fgets (new_line, sizeof(new_line), dumpFP) == NULL)
  182.        break;
  183.     /* get first line pieces */
  184.     sscanf (new_line, "%s %s %s %s %s %s %s",
  185.                       &ts, &sh, &sp, &gt, &dh, &dp, &fl);
  186.     /* if an ERR line, just show it */
  187.     if (strcmp(fl, "ERR:") == 0)
  188.        {
  189.         error_line(new_line);
  190.         continue;
  191.        }
  192.     /* now get variable part starting with the ":" considering that */
  193.     /* interpretation of the remaining fields depends on the flag value */ 
  194.     /* This is necessary to find the ending timestamp for FIN, RST, and 
  195.        TRM events.
  196.     */
  197.     strcpy(parse_line, new_line);
  198.     cursor = parse_line;
  199.     vp = (char *)strsep(&cursor, ":" );
  200.     if ((cursor == (char *)NULL) ||
  201.         (vp == (char *)NULL))
  202.         {
  203.          error_line(new_line);
  204.          continue;
  205.         }
  206.     /* Classify the event type by looking at the flag field from input
  207.        records */
  208.     if ((strcmp(fl, "REQ") == 0) || 
  209.         (strcmp(fl, "REQ-") == 0))
  210.        event_type = REQ;
  211.     else
  212.       {
  213.        if ((strcmp(fl, "RSP") == 0) ||
  214.            (strcmp(fl, "RSP-") == 0))
  215.           event_type = RSP;
  216.        else
  217.  {
  218.           if ((strcmp(fl, "FIN") == 0) ||
  219.               (strcmp(fl, "TRM") == 0) ||
  220.               (strcmp(fl, "RST") == 0))
  221.      {
  222.        /* need the ending timestamp from these record types */
  223.               sscanf(cursor, "%s %s", &discard, &earliest_end);
  224.               event_type = END;
  225.              }
  226.            else 
  227.              {
  228.               if (strcmp(fl, "SYN") == 0)
  229.                  event_type = SYN;
  230.               else
  231. {
  232.                  if (strcmp(fl, "ACT-REQ") == 0)
  233.                     event_type = ACT_REQ;
  234.                  else
  235.                      if (strcmp(fl, "ACT-RSP") == 0)
  236.                         event_type = ACT_RSP;
  237.                 }
  238.              }
  239.  }
  240.       }
  241.    /* now use data from new trace record to update status */  
  242.    /* first check to see if this is the same client host */
  243.    if (strcmp(current_src, sh) != 0)
  244.        {
  245.         if (client_state == IDLE)
  246.             log_IDLE(last_client_ts);  
  247.         ClearConnections();
  248.         client_state = PENDING_ACTIVE;
  249.         strcpy(current_src, sh);
  250.        }
  251.    /* update the connection status for this client's connection */
  252.    set_connection(sp, dh, dp, event_type);
  253.    
  254.    /* The main processing for idle periods is done by maintaining a state
  255.       variable (client_status) for the client and looking for specific input 
  256.       record types at different values of the state variable.  The 
  257.       values of client_state and their implications are:
  258.       PENDING_ACTIVE   - A new client is started and remains PENDING_ACTIVE
  259.                          until an activity indication such as ACT-REQ,
  260.                          ACT-RSP, or REQ is seen in which case it enters
  261.                          the ACTIVE state.  If there is an initial response,
  262.                          PENDING_IDLE is entered.
  263.       ACTIVE           - At least one request is outstanding and the state
  264.                          can only change if there is a response completion
  265.                          or connection termination.
  266.       PENDING_IDLE     - There are no requests outstanding but the idle
  267.                          period threshold has not elapsed since it entered
  268.                          the PENDING_IDLE state.
  269.       IDLE             - No outstanding requests for a period greater than
  270.                          the idle threshold.  The IDLE (and PENDING_IDLE)
  271.                          states are exited on activity indication such as 
  272.                          ACT-REQ, ACT-RSP, or REQ
  273.    */
  274.    switch (client_state)
  275.       {
  276.        case PENDING_ACTIVE:
  277.             switch (event_type)
  278.        {
  279.         case SYN:
  280.                     break;
  281.         case ACT_REQ:
  282.         case ACT_RSP:
  283.                     client_state = ACTIVE;
  284.                     break;
  285.         case REQ:
  286.                     client_state = ACTIVE;
  287.                     log_REQ();
  288.                     break;
  289.         case RSP:
  290.                     client_state = PENDING_IDLE;
  291.                     strcpy(idle_begin, ts);
  292.                     log_RSP();
  293.                     break;
  294.         case END:
  295.                     break;
  296.                }
  297.             break;
  298.        case ACTIVE:
  299.             switch (event_type)
  300.        {
  301.         case SYN:
  302.         case ACT_REQ:
  303.         case ACT_RSP:
  304.                     break;
  305.         case REQ:
  306.                     log_REQ();
  307.                     break;
  308.         case RSP:
  309.                     log_RSP(); 
  310.                     if (ConnectionsActive() == 0) /* Any active connections?*/
  311.        {
  312.                         client_state = PENDING_IDLE;
  313.                         strcpy(idle_begin, ts);
  314.                        }
  315.                     break;
  316.         case END:
  317.                     if (ConnectionsActive() == 0) /* Any active connections?*/
  318.        {
  319.                         client_state = PENDING_IDLE;
  320.                         strcpy(idle_begin, earliest_end);
  321.                        }
  322.                     break;
  323.                }
  324.             break;
  325.        case PENDING_IDLE:
  326.     /* must start checking time, if > n seconds elapse since
  327.                entering PENDING_IDLE state, enter IDLE state */
  328.             elapsed = elapsed_ms(ts, idle_begin);
  329.             if (elapsed < idle_limit)
  330.        {
  331.                 switch (event_type)
  332.    {
  333.     case SYN:
  334.     case END:
  335.                         break;
  336.             case ACT_REQ:
  337.             case ACT_RSP:
  338.                         client_state = ACTIVE;
  339.                         break;
  340.     case REQ:
  341.                         client_state = ACTIVE;
  342.                         log_REQ();
  343.                         break;
  344.     case RSP:
  345.                         log_RSP();
  346.                         break;
  347.                    }
  348.                 break;  /* ends case PENDING_IDLE */
  349.                }
  350.             else          /* it has crossed the idle threshold */ 
  351.                 client_state = IDLE;
  352.        /* NOTE: drop through to IDLE to handle the current event */
  353.        case IDLE:
  354.             switch (event_type)
  355.        {
  356. case SYN:
  357. case END:
  358.                     break;
  359.         case ACT_REQ:
  360.         case ACT_RSP:
  361.                     client_state = ACTIVE;
  362.                     log_IDLE(ts);
  363.                     break;
  364. case REQ:
  365.                     client_state = ACTIVE;
  366.                     log_IDLE(ts);
  367.                     log_REQ();
  368.                     break;
  369. case RSP:
  370.                     log_RSP();
  371.                     break;
  372.                 break;  /* ends case PENDING_IDLE */
  373.                }
  374.              break;
  375.        default:
  376.              break;
  377.       } /* end switch */
  378.     strcpy(last_client_ts, ts);
  379.    } /* end while (!feof ....) */ 
  380.   close (dumpFP);
  381.   close (outFP);
  382. }
  383. /* updates the status of connections for each interesting event */
  384. void set_connection(char *sp, char *dh, char *dp, enum event_types type)
  385. {
  386.   int cx;
  387.   /* A connection is identified by the host/port 3-tuple (the source IP
  388.      address is not needed because only one client is handled at a time).
  389.      The connection's status depends on the type of the event that caused
  390.      the update.  The following event type are defined with their effect
  391.      on the connection's status:
  392.            SYN, ACT-REQ, - The connection has begun (is an "active"
  393.            ACT-RSP         connection.  Add it to the table as idle
  394.                            (activity == 0) if a SYN or with request/
  395.                            response activity (activity == 1) for ACT-REQ
  396.                            or ACT-RSP.
  397.            REQ           - Find the connection in the table and mark it with
  398.                            an outstanding request (activity == 1).
  399.            RSP           - Find the connection in the table and mark it with
  400.                            a completed request (activity == 0).
  401.            END           - The connection has ended (is no longer an "active"
  402.                            connection).  Remove it from the table.
  403.   */
  404.   switch (type)
  405.      {   
  406.       case SYN:
  407.       case ACT_REQ:
  408.       case ACT_RSP:
  409.  {
  410.           cx = AddConnection(sp, dh, dp);
  411.           if (cx < 0)  /* already there */
  412.      {
  413.               error_state("Add for existing connection");
  414.               return;
  415.              }            
  416.           if (cx > MAX_CONNECTIONS)  /* table overflow */
  417.      {
  418.               error_state("Active connections exceeds maximum");
  419.               exit (-1);
  420.              } 
  421.           connections[cx].state = type;
  422.           if (type == SYN)
  423.              connections[cx].activity = 0;
  424.           else
  425.              connections[cx].activity = 1;
  426.           break;
  427.  }    
  428.       case REQ:
  429.  {
  430.           cx = FindConnection(sp, dh, dp);
  431.           if (cx < 0)  /* not there */
  432.      {
  433.               error_state("REQ for non-existent connection");
  434.               return;
  435.              }
  436.           if ((connections[cx].state == RSP) ||
  437.               (connections[cx].state == ACT_REQ) ||
  438.               (connections[cx].state == SYN))
  439.      {
  440.               connections[cx].activity = 1; 
  441.               connections[cx].state = REQ;
  442.              }       
  443.           else
  444.               error_state("REQ in invalid connection state");
  445.           break;
  446.          }
  447.       case RSP:
  448.  {
  449.           cx = FindConnection(sp, dh, dp);
  450.           if (cx < 0)  /* not there */
  451.      {
  452.               error_state("RSP for non-existent connection");
  453.               return;
  454.              }
  455.           if ((connections[cx].state == REQ) ||
  456.               (connections[cx].state == ACT_RSP) ||
  457.               (connections[cx].state == SYN))
  458.      {
  459.               connections[cx].activity = 0; 
  460.               connections[cx].state = RSP;
  461.              }      
  462.           else
  463.               error_state("RSP in invalid connection state");
  464.           break;
  465.          }
  466.       case END:
  467.  {
  468.           cx = FindConnection(sp, dh, dp);
  469.           if (cx < 0)  /* not there */
  470.      {
  471.               error_state("End for non-existent connection");
  472.               return;
  473.              }
  474.           connections[cx].activity = 0; 
  475.           connections[cx].state = END;
  476.           cx = RemoveConnection(sp, dh, dp);
  477.           break;
  478.  }
  479.       default:
  480.       break;
  481.      }
  482. }
  483. /* A set of functions to maintain the table of "active" connections for the
  484.    current client (IP address). All of these use simple linear scans of the
  485.    table because we expect the number of concurrently active connections 
  486.    from a client to be small (< 100) */
  487. /* Clears the active connections from the connection table and 
  488.    resets the count of active connections to zero */
  489. void ClearConnections(void)
  490. {
  491.   int i;
  492.   for (i = 0; i < active_connections; i++)
  493.       {
  494.        strcpy(connections[i].id, "");
  495.        connections[i].activity = 0;
  496.        connections[i].state = END;
  497.       }
  498.   active_connections = 0;
  499. }
  500. /* Count the number of active connections that have an outstanding
  501.    request (activity == 1) */
  502. int ConnectionsActive(void)
  503. {
  504.   int count = 0; 
  505.   int i;
  506.   for (i = 0; i < active_connections; i++)
  507.       count = count + connections[i].activity;
  508.   return (count);
  509. }
  510. /* Find a connection in the table by its identifying host/port 3-tuple
  511.    and return its index (or -1 if not found).  Note that the source IP
  512.    address is not necessary since the table is used for one client
  513.    at a time.
  514. */
  515. int FindConnection(char *sp, char *dh, char *dp)
  516. {
  517.   char connection[50];
  518.   int i;
  519.   strcpy(connection, sp);
  520.   strcat(connection, dh);
  521.   strcat(connection, dp);
  522.   /* find the connection in the table */
  523.   for (i = 0; i < active_connections; i++)
  524.       {
  525.        if (strcmp(connections[i].id, connection) == 0)
  526.            break;
  527.       }
  528.   if (i == active_connections) /* not there */
  529.      return(-1);
  530.   else
  531.      return (i);
  532. }
  533. /* Add a new connection to the table identified by its host/port
  534.    3-tuple (source IP is not needed because the table is for one
  535.    client (IP address) only).  Return the index of the added 
  536.    connection or -1 if it is already in the table.  Increase the
  537.    count of active connections by 1 if added.  Initialize the
  538.    state of the added connection to the reset state.
  539. */  
  540. int AddConnection(char *sp, char *dh, char *dp)
  541. {
  542.   char connection[50];
  543.   int i;
  544.   strcpy(connection, sp);
  545.   strcat(connection, dh);
  546.   strcat(connection, dp);
  547.   /* check to see if connection already in the table; if not there, add it */
  548.   for (i = 0; i < active_connections; i++)
  549.       {
  550.        if (strcmp(connections[i].id, connection) == 0)
  551.            break;
  552.       }
  553.   if (i < active_connections)
  554.      return(-1);   /* already there */
  555.   else
  556.      {
  557.       active_connections += 1;
  558.       if (active_connections > MAX_CONNECTIONS)
  559.          return (active_connections);    /* table overflow */
  560.       strcpy(connections[i].id, connection);
  561.       connections[i].activity = 0;
  562.       connections[i].state = END;
  563.       return (i);
  564.      }
  565. }
  566. /* Remove a connection from the table and compact the table by shifting
  567.    all connections above the "hole" down by one index value.  Return 0
  568.    if all is OK or -1 if the connection was not there.  Decrease the 
  569.    count of active connections by one if one was removed.  Reset the 
  570.    vacated table entry to the reset state
  571. */
  572. int RemoveConnection(char *sp, char *dh, char *dp)
  573. {
  574.   char connection[50];
  575.   int i, j;
  576.   strcpy(connection, sp);
  577.   strcat(connection, dh);
  578.   strcat(connection, dp);
  579.   /* find the connection in the table; if not there, error */
  580.   for (i = 0; i < active_connections; i++)
  581.       {
  582.        if (strcmp(connections[i].id, connection) == 0)
  583.            break;
  584.       }
  585.   if (i == active_connections)
  586.       return (-1);
  587.   /* move all active connections above this down by one with overwriting */ 
  588.   for (j = i + 1; j < active_connections; j++)
  589.       {
  590.        strcpy(connections[j-1].id, connections[j].id);
  591.        connections[j-1].activity = connections[j].activity;
  592.        connections[j-1].state = connections[j].state;
  593.       }
  594.   /* clearing the top vacated slot is not strictly necessary but it may
  595.      help with debugging */
  596.   strcpy(connections[active_connections - 1].id, "");
  597.   connections[active_connections - 1].activity = 0;
  598.   connections[active_connections - 1].state = END;
  599.   active_connections -= 1;
  600.   return (0);
  601. }
  602. /* Copy the input line to the output file */
  603. void log_REQ(void)
  604. {
  605.   fprintf(outFP, "%s", new_line);
  606. }
  607. /* Copy the input line to the output file */
  608. void log_RSP(void)
  609. {
  610.   fprintf(outFP, "%s", new_line);
  611. }
  612. /* create a line in the output for the idle period */
  613. void log_IDLE(char *ts)
  614. {
  615.   int elapsed;
  616.   elapsed = (int) elapsed_ms(ts, idle_begin);
  617.   fprintf(outFP, "%s %-15s %5s > %-15s %5s IDLE%12d  %sn", 
  618.                   ts, current_src, "*", "*", "*", elapsed, idle_begin);
  619.                             
  620. }
  621. void error_line(char * s)
  622. {
  623.   fprintf(outFP, "%s", s);
  624. }
  625. void error_state(char * s)
  626. {
  627.   fprintf(outFP, "%s %-15s %5s > %-15s %5s ERROR %sn", 
  628.                   ts, current_src, "*", "*", "*", s);
  629. }
  630. /*--------------------------------------------------------------*/ 
  631. /* subtract two timevals (t1 - t0) with result in tdiff         */
  632. /* tdiff, t1 and t0 are all pointers to struct timeval          */
  633. /*--------------------------------------------------------------*/ 
  634. static void
  635. tvsub(tdiff, t1, t0)
  636. struct timeval *tdiff, *t1, *t0;
  637. {
  638.         tdiff->tv_sec = t1->tv_sec - t0->tv_sec;
  639.         tdiff->tv_usec = t1->tv_usec - t0->tv_usec;
  640.         if (tdiff->tv_usec < 0)
  641.            {
  642.             tdiff->tv_sec--;
  643.             tdiff->tv_usec += 1000000;
  644.            }
  645. }
  646. /*--------------------------------------------------------------*/ 
  647. /* compute the elapsed time in milliseconds to end_time         */
  648. /* from some past time given by start_time (both formatted timevals) */
  649. /*--------------------------------------------------------------*/ 
  650. long elapsed_ms(char *end, char *start)
  651. {
  652.  struct timeval delta, end_time, start_time;
  653.  long elapsed_time;
  654.  char end_tmp[20];
  655.  char start_tmp[20];
  656.  char *cursor;
  657.  char *cp;
  658.  strcpy(end_tmp, end);
  659.  cursor = end_tmp;
  660.  cp = (char *)strsep(&cursor, "." );
  661.  end_time.tv_sec = atoi(end_tmp);
  662.  end_time.tv_usec = atoi(cursor);
  663.  strcpy(start_tmp, start);
  664.  cursor = start_tmp;
  665.  cp = (char *)strsep(&cursor, "." );
  666.  start_time.tv_sec = atoi(start_tmp);
  667.  start_time.tv_usec = atoi(cursor);
  668.  tvsub(&delta, &end_time, &start_time);
  669.  /* express as milliseconds */
  670.  elapsed_time = (delta.tv_sec * 1000) + (delta.tv_usec/1000);
  671.  return (elapsed_time);
  672. }