LCOV - code coverage report
Current view: top level - lib - fko_message.c (source / functions) Hit Total Coverage
Test: lcov_coverage_final.info Lines: 114 114 100.0 %
Date: 2015-08-23 Functions: 10 10 100.0 %
Branches: 110 120 91.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *****************************************************************************
       3                 :            :  *
       4                 :            :  * File:    fko_message.c
       5                 :            :  *
       6                 :            :  * Purpose: Set/Get the spa message (access req/command/etc) based
       7                 :            :  *          on the current spa data.
       8                 :            :  *
       9                 :            :  *  Fwknop is developed primarily by the people listed in the file 'AUTHORS'.
      10                 :            :  *  Copyright (C) 2009-2014 fwknop developers and contributors. For a full
      11                 :            :  *  list of contributors, see the file 'CREDITS'.
      12                 :            :  *
      13                 :            :  *  License (GNU General Public License):
      14                 :            :  *
      15                 :            :  *  This program is free software; you can redistribute it and/or
      16                 :            :  *  modify it under the terms of the GNU General Public License
      17                 :            :  *  as published by the Free Software Foundation; either version 2
      18                 :            :  *  of the License, or (at your option) any later version.
      19                 :            :  *
      20                 :            :  *  This program is distributed in the hope that it will be useful,
      21                 :            :  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
      22                 :            :  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      23                 :            :  *  GNU General Public License for more details.
      24                 :            :  *
      25                 :            :  *  You should have received a copy of the GNU General Public License
      26                 :            :  *  along with this program; if not, write to the Free Software
      27                 :            :  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
      28                 :            :  *  USA
      29                 :            :  *
      30                 :            :  *****************************************************************************
      31                 :            : */
      32                 :            : #include "fko_common.h"
      33                 :            : #include "fko_message.h"
      34                 :            : #include "fko.h"
      35                 :            : 
      36                 :            : static int
      37                 :     685918 : have_allow_ip(const char *msg)
      38                 :            : {
      39                 :     685918 :     const char         *ndx     = msg;
      40                 :            :     char                ip_str[MAX_IPV4_STR_LEN];
      41                 :     685918 :     int                 dot_ctr = 0, char_ctr = 0;
      42                 :     685918 :     int                 res     = FKO_SUCCESS;
      43                 :            : 
      44         [ +  + ]:    5434594 :     while(*ndx != ',' && *ndx != '\0')
      45                 :            :     {
      46                 :    4899791 :         ip_str[char_ctr] = *ndx;
      47                 :    4899791 :         char_ctr++;
      48         [ +  + ]:    4899791 :         if(char_ctr >= MAX_IPV4_STR_LEN)
      49                 :            :         {
      50                 :            :             res = FKO_ERROR_INVALID_ALLOW_IP;
      51                 :            :             break;
      52                 :            :         }
      53         [ +  + ]:    4896420 :         if(*ndx == '.')
      54                 :            :             dot_ctr++;
      55         [ +  + ]:    3282731 :         else if(isdigit(*ndx) == 0)
      56                 :            :         {
      57                 :            :             res = FKO_ERROR_INVALID_ALLOW_IP;
      58                 :            :             break;
      59                 :            :         }
      60                 :    4748676 :         ndx++;
      61                 :            :     }
      62                 :            : 
      63         [ +  + ]:     685918 :     if(char_ctr < MAX_IPV4_STR_LEN)
      64                 :     682547 :         ip_str[char_ctr] = '\0';
      65                 :            :     else
      66                 :            :         res = FKO_ERROR_INVALID_ALLOW_IP;
      67                 :            : 
      68         [ +  + ]:     685918 :     if(res == FKO_SUCCESS)
      69         [ +  + ]:     534803 :         if (! is_valid_ipv4_addr(ip_str))
      70                 :      22918 :             res = FKO_ERROR_INVALID_ALLOW_IP;
      71                 :            : 
      72                 :     685918 :     return(res);
      73                 :            : }
      74                 :            : 
      75                 :            : static int
      76                 :     495225 : have_port(const char *msg)
      77                 :            : {
      78                 :     495225 :     const char  *ndx = msg;
      79                 :     495225 :     char        port_str[MAX_PORT_STR_LEN+1] = {0};
      80                 :     495225 :     int         startlen = strnlen(msg, MAX_SPA_MESSAGE_SIZE);
      81                 :     495225 :     int         port_str_len=0, i=0, is_err;
      82                 :            : 
      83         [ +  - ]:     495225 :     if(startlen == MAX_SPA_MESSAGE_SIZE)
      84                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_PORT_MISSING);
      85                 :            : 
      86                 :            :     /* Must have at least one digit for the port number
      87                 :            :     */
      88         [ +  + ]:     495225 :     if(isdigit(*ndx) == 0)
      89                 :            :         return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
      90                 :            : 
      91         [ +  + ]:    1908703 :     while(*ndx != '\0' && *ndx != ',')
      92                 :            :     {
      93                 :    1499321 :         port_str_len++;
      94 [ +  + ][ +  + ]:    1499321 :         if((isdigit(*ndx) == 0) || (port_str_len > MAX_PORT_STR_LEN))
      95                 :            :             return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
      96                 :    1414857 :         port_str[i] = *ndx;
      97                 :    1414857 :         ndx++;
      98                 :    1414857 :         i++;
      99                 :            :     }
     100                 :     409382 :     port_str[i] = '\0';
     101                 :            : 
     102                 :     409382 :     strtol_wrapper(port_str, 1, MAX_PORT, NO_EXIT_UPON_ERR, &is_err);
     103         [ +  + ]:     409382 :     if(is_err != FKO_SUCCESS)
     104                 :            :         return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
     105                 :            : 
     106                 :     409361 :     return FKO_SUCCESS;
     107                 :            : }
     108                 :            : 
     109                 :            : /* Set the SPA message type.
     110                 :            : */
     111                 :            : int
     112                 :     873860 : fko_set_spa_message_type(fko_ctx_t ctx, const short msg_type)
     113                 :            : {
     114                 :            : #if HAVE_LIBFIU
     115         [ +  + ]:     873860 :     fiu_return_on("fko_set_spa_message_type_init",
     116                 :            :             FKO_ERROR_CTX_NOT_INITIALIZED);
     117                 :            : #endif
     118                 :            :     /* Must be initialized
     119                 :            :     */
     120 [ +  + ][ +  - ]:     873857 :     if(!CTX_INITIALIZED(ctx))
     121                 :            :         return FKO_ERROR_CTX_NOT_INITIALIZED;
     122                 :            : 
     123                 :            : #if HAVE_LIBFIU
     124         [ +  + ]:     873023 :     fiu_return_on("fko_set_spa_message_type_val",
     125                 :            :             FKO_ERROR_INVALID_DATA_MESSAGE_TYPE_VALIDFAIL);
     126                 :            : #endif
     127         [ +  + ]:     873020 :     if(msg_type < 0 || msg_type >= FKO_LAST_MSG_TYPE)
     128                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_TYPE_VALIDFAIL);
     129                 :            : 
     130                 :     868976 :     ctx->message_type = msg_type;
     131                 :            : 
     132                 :     868976 :     ctx->state |= FKO_SPA_MSG_TYPE_MODIFIED;
     133                 :            : 
     134                 :     868976 :     return(FKO_SUCCESS);
     135                 :            : }
     136                 :            : 
     137                 :            : /* Return the SPA message type.
     138                 :            : */
     139                 :            : int
     140                 :       6191 : fko_get_spa_message_type(fko_ctx_t ctx, short *msg_type)
     141                 :            : {
     142                 :            : 
     143                 :            : #if HAVE_LIBFIU
     144         [ +  + ]:       6191 :     fiu_return_on("fko_get_spa_message_type_init",
     145                 :            :             FKO_ERROR_CTX_NOT_INITIALIZED);
     146                 :            : #endif
     147                 :            : 
     148                 :            :     /* Must be initialized
     149                 :            :     */
     150 [ +  + ][ +  - ]:       6189 :     if(!CTX_INITIALIZED(ctx))
     151                 :            :         return FKO_ERROR_CTX_NOT_INITIALIZED;
     152                 :            : 
     153         [ +  + ]:       5621 :     if(msg_type == NULL)
     154                 :            :         return(FKO_ERROR_INVALID_DATA);
     155                 :            : 
     156                 :            : #if HAVE_LIBFIU
     157         [ +  + ]:       5553 :     fiu_return_on("fko_get_spa_message_type_val", FKO_ERROR_INVALID_DATA);
     158                 :            : #endif
     159                 :            : 
     160                 :       5551 :     *msg_type = ctx->message_type;
     161                 :            : 
     162                 :       5551 :     return(FKO_SUCCESS);
     163                 :            : }
     164                 :            : 
     165                 :            : /* Set the SPA MESSAGE data
     166                 :            : */
     167                 :            : int
     168                 :       2612 : fko_set_spa_message(fko_ctx_t ctx, const char * const msg)
     169                 :            : {
     170                 :       2612 :     int res = FKO_ERROR_UNKNOWN;
     171                 :            : 
     172                 :            :     /* Context must be initialized.
     173                 :            :     */
     174 [ +  + ][ +  - ]:       2612 :     if(!CTX_INITIALIZED(ctx))
     175                 :            :         return FKO_ERROR_CTX_NOT_INITIALIZED;
     176                 :            : 
     177                 :            :     /* Gotta have a valid string.
     178                 :            :     */
     179 [ +  + ][ +  + ]:       2598 :     if(msg == NULL || strnlen(msg, MAX_SPA_MESSAGE_SIZE) == 0)
     180                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_EMPTY);
     181                 :            : 
     182                 :            :     /* --DSS XXX: Bail out for now.  But consider just
     183                 :            :      *            truncating in the future...
     184                 :            :     */
     185         [ +  + ]:       2581 :     if(strnlen(msg, MAX_SPA_MESSAGE_SIZE) == MAX_SPA_MESSAGE_SIZE)
     186                 :            :         return(FKO_ERROR_DATA_TOO_LARGE);
     187                 :            : 
     188                 :            :     /* Basic message type and format checking...
     189                 :            :     */
     190         [ +  + ]:       2572 :     if(ctx->message_type == FKO_COMMAND_MSG)
     191                 :         55 :         res = validate_cmd_msg(msg);
     192                 :            :     else
     193                 :       2517 :         res = validate_access_msg(msg);
     194                 :            : 
     195         [ +  + ]:       2572 :     if(res != FKO_SUCCESS)
     196                 :            :         return(res);
     197                 :            : 
     198                 :            :     /* Just in case this is a subsquent call to this function.  We
     199                 :            :      * do not want to be leaking memory.
     200                 :            :     */
     201         [ +  + ]:       2490 :     if(ctx->message != NULL)
     202                 :        178 :         free(ctx->message);
     203                 :            : 
     204                 :       2490 :     ctx->message = strdup(msg);
     205                 :            : 
     206                 :       2490 :     ctx->state |= FKO_DATA_MODIFIED;
     207                 :            : 
     208         [ +  - ]:       2490 :     if(ctx->message == NULL)
     209                 :            :         return(FKO_ERROR_MEMORY_ALLOCATION);
     210                 :            : 
     211                 :       2490 :     return(FKO_SUCCESS);
     212                 :            : }
     213                 :            : 
     214                 :            : /* Return the SPA message data.
     215                 :            : */
     216                 :            : int
     217                 :       4607 : fko_get_spa_message(fko_ctx_t ctx, char **msg)
     218                 :            : {
     219                 :            : 
     220                 :            : #if HAVE_LIBFIU
     221         [ +  + ]:       4607 :     fiu_return_on("fko_get_spa_message_init", FKO_ERROR_CTX_NOT_INITIALIZED);
     222                 :            : #endif
     223                 :            : 
     224                 :            :     /* Must be initialized
     225                 :            :     */
     226 [ +  + ][ +  - ]:       4605 :     if(!CTX_INITIALIZED(ctx))
     227                 :            :         return(FKO_ERROR_CTX_NOT_INITIALIZED);
     228                 :            : 
     229         [ +  + ]:       4453 :     if(msg == NULL)
     230                 :            :         return(FKO_ERROR_INVALID_DATA);
     231                 :            : 
     232                 :            : #if HAVE_LIBFIU
     233         [ +  + ]:       4385 :     fiu_return_on("fko_get_spa_message_val", FKO_ERROR_INVALID_DATA);
     234                 :            : #endif
     235                 :            : 
     236                 :       4383 :     *msg = ctx->message;
     237                 :            : 
     238                 :       4383 :     return(FKO_SUCCESS);
     239                 :            : }
     240                 :            : 
     241                 :            : /* Validate a command message format.
     242                 :            : */
     243                 :            : int
     244                 :      38127 : validate_cmd_msg(const char *msg)
     245                 :            : {
     246                 :            :     const char   *ndx;
     247                 :      38127 :     int     res         = FKO_SUCCESS;
     248                 :      38127 :     int     startlen    = strnlen(msg, MAX_SPA_CMD_LEN);
     249                 :            : 
     250         [ +  - ]:      38127 :     if(startlen == MAX_SPA_CMD_LEN)
     251                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_CMD_MISSING);
     252                 :            : 
     253                 :            :     /* Should always have a valid allow IP regardless of message type
     254                 :            :     */
     255         [ +  + ]:      38127 :     if((res = have_allow_ip(msg)) != FKO_SUCCESS)
     256                 :            :         return(FKO_ERROR_INVALID_SPA_COMMAND_MSG);
     257                 :            : 
     258                 :            :     /* Commands are fairly free-form so all we can really verify is
     259                 :            :      * there is something at all. Get past the IP and comma, and make
     260                 :            :      * sure we have some string leftover...
     261                 :            :     */
     262                 :      28987 :     ndx = strchr(msg, ',');
     263 [ +  + ][ +  + ]:      28987 :     if(ndx == NULL || (1+(ndx - msg)) >= startlen)
     264                 :            :         return(FKO_ERROR_INVALID_SPA_COMMAND_MSG);
     265                 :            : 
     266                 :      28851 :     return(FKO_SUCCESS);
     267                 :            : }
     268                 :            : 
     269                 :            : int
     270                 :     455135 : validate_access_msg(const char *msg)
     271                 :            : {
     272                 :            :     const char   *ndx;
     273                 :     455135 :     int     res         = FKO_SUCCESS;
     274                 :     455135 :     int     startlen    = strnlen(msg, MAX_SPA_MESSAGE_SIZE);
     275                 :            : 
     276         [ +  - ]:     455135 :     if(startlen == MAX_SPA_MESSAGE_SIZE)
     277                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_ACCESS_MISSING);
     278                 :            : 
     279                 :            :     /* Should always have a valid allow IP regardless of message type
     280                 :            :     */
     281         [ +  + ]:     455135 :     if((res = have_allow_ip(msg)) != FKO_SUCCESS)
     282                 :            :         return(res);
     283                 :            : 
     284                 :            :     /* Position ourselves beyond the allow IP and make sure we are
     285                 :            :      * still good.
     286                 :            :     */
     287                 :     345682 :     ndx = strchr(msg, ',');
     288 [ +  + ][ +  + ]:     345682 :     if(ndx == NULL || (1+(ndx - msg)) >= startlen)
     289                 :            :         return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
     290                 :            : 
     291                 :            :     /* Look for a comma to see if this is a multi-part access request.
     292                 :            :     */
     293                 :            :     do {
     294                 :     366289 :         ndx++;
     295                 :     366289 :         res = validate_proto_port_spec(ndx);
     296         [ +  + ]:     366289 :         if(res != FKO_SUCCESS)
     297                 :            :             break;
     298         [ +  + ]:     300987 :     } while((ndx = strchr(ndx, ',')));
     299                 :            : 
     300                 :     344309 :     return(res);
     301                 :            : }
     302                 :            : 
     303                 :            : int
     304                 :     192656 : validate_nat_access_msg(const char *msg)
     305                 :            : {
     306                 :            :     const char   *ndx;
     307                 :     192656 :     int     res         = FKO_SUCCESS;
     308                 :     192656 :     int     startlen    = strnlen(msg, MAX_SPA_MESSAGE_SIZE);
     309                 :            : 
     310         [ +  - ]:     192656 :     if(startlen == MAX_SPA_MESSAGE_SIZE)
     311                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_NAT_MISSING);
     312                 :            : 
     313                 :            :     /* Should always have a valid allow IP regardless of message type
     314                 :            :     */
     315         [ +  + ]:     192656 :     if((res = have_allow_ip(msg)) != FKO_SUCCESS)
     316                 :            :         return(FKO_ERROR_INVALID_SPA_NAT_ACCESS_MSG);
     317                 :            : 
     318                 :            :     /* Position ourselves beyond the allow IP and make sure we have
     319                 :            :      * a single port value
     320                 :            :     */
     321                 :     137216 :     ndx = strchr(msg, ',');
     322 [ +  + ][ +  + ]:     137216 :     if(ndx == NULL || (1+(ndx - msg)) >= startlen)
     323                 :            :         return(FKO_ERROR_INVALID_SPA_NAT_ACCESS_MSG);
     324                 :            : 
     325                 :     136111 :     ndx++;
     326                 :            : 
     327         [ +  + ]:     136111 :     if((res = have_port(ndx)) != FKO_SUCCESS)
     328                 :            :         return(FKO_ERROR_INVALID_SPA_NAT_ACCESS_MSG);
     329                 :            : 
     330         [ +  + ]:     108374 :     if(msg[startlen-1] == ',')
     331                 :            :         return(FKO_ERROR_INVALID_SPA_NAT_ACCESS_MSG);
     332                 :            : 
     333                 :     107991 :     return(res);
     334                 :            : }
     335                 :            : 
     336                 :            : int
     337                 :     366289 : validate_proto_port_spec(const char *msg)
     338                 :            : {
     339                 :     366289 :     int     startlen    = strnlen(msg, MAX_SPA_MESSAGE_SIZE);
     340                 :     366289 :     const char   *ndx   = msg;
     341                 :            : 
     342         [ +  - ]:     366289 :     if(startlen == MAX_SPA_MESSAGE_SIZE)
     343                 :            :         return(FKO_ERROR_INVALID_DATA_MESSAGE_PORTPROTO_MISSING);
     344                 :            : 
     345                 :            :     /* Now check for proto/port string.
     346                 :            :     */
     347         [ +  + ]:     366289 :     if(strncmp(ndx, "tcp", 3)
     348         [ +  + ]:      26107 :       && strncmp(ndx, "udp", 3)
     349         [ +  + ]:       5672 :       && strncmp(ndx, "icmp", 4)
     350         [ +  + ]:       5662 :       && strncmp(ndx, "none", 4))
     351                 :            :         return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
     352                 :            : 
     353                 :     360628 :     ndx = strchr(ndx, '/');
     354 [ +  + ][ +  + ]:     360628 :     if(ndx == NULL || ((1+(ndx - msg)) > MAX_PROTO_STR_LEN))
     355                 :            :         return(FKO_ERROR_INVALID_SPA_ACCESS_MSG);
     356                 :            : 
     357                 :            :     /* Skip over the '/' and make sure we only have digits.
     358                 :            :     */
     359                 :     359114 :     ndx++;
     360                 :            : 
     361                 :     359114 :     return have_port(ndx);
     362                 :            : }
     363                 :            : 
     364                 :            : /***EOF***/

Generated by: LCOV version 1.10