LCOV - code coverage report
Current view: top level - server - fwknopd_errors.c (source / functions) Hit Total Coverage
Test: lcov_coverage_final.info Lines: 29 30 96.7 %
Date: 2014-11-16 Functions: 3 3 100.0 %
Branches: 22 24 91.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *****************************************************************************
       3                 :            :  *
       4                 :            :  * File:    errors.c
       5                 :            :  *
       6                 :            :  * Purpose: Error message functions for fwknopd
       7                 :            :  *
       8                 :            :  *  Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
       9                 :            :  *  Copyright (C) 2009-2014 fwknop developers and contributors. For a full
      10                 :            :  *  list of contributors, see the file 'CREDITS'.
      11                 :            :  *
      12                 :            :  *  License (GNU General Public License):
      13                 :            :  *
      14                 :            :  *  This program is free software; you can redistribute it and/or
      15                 :            :  *  modify it under the terms of the GNU General Public License
      16                 :            :  *  as published by the Free Software Foundation; either version 2
      17                 :            :  *  of the License, or (at your option) any later version.
      18                 :            :  *
      19                 :            :  *  This program is distributed in the hope that it will be useful,
      20                 :            :  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      21                 :            :  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      22                 :            :  *  GNU General Public License for more details.
      23                 :            :  *
      24                 :            :  *  You should have received a copy of the GNU General Public License
      25                 :            :  *  along with this program; if not, write to the Free Software
      26                 :            :  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
      27                 :            :  *  USA
      28                 :            :  *
      29                 :            :  *****************************************************************************
      30                 :            : */
      31                 :            : #include "fwknopd_common.h"
      32                 :            : #include "fwknopd_errors.h"
      33                 :            : 
      34                 :            : /* Return a string describing the meaning of the given error code.
      35                 :            : */
      36                 :            : static const char*
      37                 :        162 : fwknopd_errstr(const int err_code)
      38                 :            : {
      39   [ +  +  +  +  :        162 :     switch (err_code)
          +  +  +  +  +  
          +  +  +  +  +  
             +  +  +  - ]
      40                 :            :     {
      41                 :            :         case 0:
      42                 :            :             return("Success");
      43                 :            : 
      44                 :            :         case SPA_MSG_BAD_DATA:
      45                 :        112 :             return("Data is not a valid SPA message format");
      46                 :            : 
      47                 :            :         case SPA_MSG_LEN_TOO_SMALL:
      48                 :          1 :             return("Not enough data to be a valid SPA message");
      49                 :            : 
      50                 :            :         case SPA_MSG_NOT_SPA_DATA:
      51                 :         35 :             return("Data is not an SPA message");
      52                 :            : 
      53                 :            :         case SPA_MSG_HTTP_NOT_ENABLED:
      54                 :          1 :             return("SPA via HTTP request, but ENABLE_SPA_OVER_HTTP is not set");
      55                 :            : 
      56                 :            :         case SPA_MSG_FKO_CTX_ERROR:
      57                 :          1 :             return("Error creating FKO context for incoming data.");
      58                 :            : 
      59                 :            :         case SPA_MSG_DIGEST_ERROR:
      60                 :          1 :             return("Unable to retrieve digest from the SPA data.");
      61                 :            : 
      62                 :            :         case SPA_MSG_DIGEST_CACHE_ERROR:
      63                 :          1 :             return("Error trying to access the digest.cache file");
      64                 :            : 
      65                 :            :         case SPA_MSG_REPLAY:
      66                 :          1 :             return("Detected SPA message replay");
      67                 :            : 
      68                 :            :         case SPA_MSG_TOO_OLD:
      69                 :          1 :             return("SPA message timestamp is outside the allowable window");
      70                 :            : 
      71                 :            :         case SPA_MSG_ACCESS_DENIED:
      72                 :          1 :             return("SPA message did not pass access checks");
      73                 :            : 
      74                 :            :         case SPA_MSG_COMMAND_ERROR:
      75                 :          1 :             return("An error occurred while executing an SPA command message");
      76                 :            : 
      77                 :            :         case SPA_MSG_NOT_SUPPORTED:
      78                 :          1 :             return("Unsupported SPA message operation");
      79                 :            : 
      80                 :            :         case SPA_MSG_ERROR:
      81                 :          1 :             return("General SPA message processing error");
      82                 :            : 
      83                 :            :         case FW_RULE_ADD_ERROR:
      84                 :          1 :             return("An error occurred while tring to add a firewall rule");
      85                 :            : 
      86                 :            :         case FW_RULE_DELETE_ERROR:
      87                 :          1 :             return("An error occurred while tring to delete a firewall rule");
      88                 :            : 
      89                 :            :         case FW_RULE_UNKNOWN_ERROR:
      90                 :          1 :             return("Unknown/unclassified firewall rule processing error");
      91                 :            :     }
      92                 :            : 
      93                 :          1 :     return("Undefined/unknown fwknopd Error");
      94                 :            : }
      95                 :            : 
      96                 :            : /* Attempt to determine the error code type and send the appropriate
      97                 :            :  * response. Basically assume it is a libfko error if it is not an fwknopd
      98                 :            :  * error code.
      99                 :            : */
     100                 :            : const char*
     101                 :        145 : get_errstr(const int err_code)
     102                 :            : {
     103         [ -  + ]:        145 :     if(! IS_FWKNOPD_ERROR(err_code))
     104                 :          0 :         return(fko_errstr(err_code));
     105                 :            : 
     106                 :        145 :     return(fwknopd_errstr(err_code));
     107                 :            : }
     108                 :            : 
     109                 :            : /* print all server errors (from server/fwknopd_errors.c) to stdout
     110                 :            : */
     111                 :            : void
     112                 :          1 : dump_server_errors(void)
     113                 :            : {
     114                 :            :     int i;
     115         [ +  + ]:         15 :     for (i=SPA_MSG_BAD_DATA; i<=SPA_MSG_ERROR; i++)
     116                 :            :     {
     117                 :         14 :         fprintf(stdout, "err code: %d, err string: '%s'\n",
     118                 :            :                 i, fwknopd_errstr(i));
     119                 :            :     }
     120         [ +  + ]:          4 :     for (i=FW_RULE_ADD_ERROR; i<=FW_RULE_UNKNOWN_ERROR; i++)
     121                 :            :     {
     122                 :          3 :         fprintf(stdout, "err code: %d, err string: '%s'\n",
     123                 :            :                 i, fwknopd_errstr(i));
     124                 :            :     }
     125                 :          1 :     fflush(stdout);
     126                 :          1 :     return;
     127                 :            : }
     128                 :            : 
     129                 :            : /***EOF***/

Generated by: LCOV version 1.10