LCOV - code coverage report
Current view: top level - src/utils - uuid.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1393793999 Lines: 32 36 88.9 %
Date: 2014-03-02 Functions: 3 3 100.0 %
Branches: 17 26 65.4 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Universally Unique IDentifier (UUID)
       3                 :            :  * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
       4                 :            :  *
       5                 :            :  * This software may be distributed under the terms of the BSD license.
       6                 :            :  * See README for more details.
       7                 :            :  */
       8                 :            : 
       9                 :            : #include "includes.h"
      10                 :            : 
      11                 :            : #include "common.h"
      12                 :            : #include "uuid.h"
      13                 :            : 
      14                 :        140 : int uuid_str2bin(const char *str, u8 *bin)
      15                 :            : {
      16                 :            :         const char *pos;
      17                 :            :         u8 *opos;
      18                 :            : 
      19                 :        140 :         pos = str;
      20                 :        140 :         opos = bin;
      21                 :            : 
      22         [ +  + ]:        140 :         if (hexstr2bin(pos, opos, 4))
      23                 :          9 :                 return -1;
      24                 :        131 :         pos += 8;
      25                 :        131 :         opos += 4;
      26                 :            : 
      27 [ +  + ][ -  + ]:        131 :         if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
      28                 :          1 :                 return -1;
      29                 :        130 :         pos += 4;
      30                 :        130 :         opos += 2;
      31                 :            : 
      32 [ +  - ][ -  + ]:        130 :         if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
      33                 :          0 :                 return -1;
      34                 :        130 :         pos += 4;
      35                 :        130 :         opos += 2;
      36                 :            : 
      37 [ +  - ][ -  + ]:        130 :         if (*pos++ != '-' || hexstr2bin(pos, opos, 2))
      38                 :          0 :                 return -1;
      39                 :        130 :         pos += 4;
      40                 :        130 :         opos += 2;
      41                 :            : 
      42 [ +  - ][ -  + ]:        130 :         if (*pos++ != '-' || hexstr2bin(pos, opos, 6))
      43                 :          0 :                 return -1;
      44                 :            : 
      45                 :        140 :         return 0;
      46                 :            : }
      47                 :            : 
      48                 :            : 
      49                 :       1887 : int uuid_bin2str(const u8 *bin, char *str, size_t max_len)
      50                 :            : {
      51                 :            :         int len;
      52                 :      30192 :         len = os_snprintf(str, max_len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
      53                 :            :                           "%02x%02x-%02x%02x%02x%02x%02x%02x",
      54                 :       7548 :                           bin[0], bin[1], bin[2], bin[3],
      55                 :       7548 :                           bin[4], bin[5], bin[6], bin[7],
      56                 :       7548 :                           bin[8], bin[9], bin[10], bin[11],
      57                 :       7548 :                           bin[12], bin[13], bin[14], bin[15]);
      58 [ +  - ][ -  + ]:       1887 :         if (len < 0 || (size_t) len >= max_len)
      59                 :          0 :                 return -1;
      60                 :       1887 :         return 0;
      61                 :            : }
      62                 :            : 
      63                 :            : 
      64                 :        262 : int is_nil_uuid(const u8 *uuid)
      65                 :            : {
      66                 :            :         int i;
      67         [ +  + ]:       2822 :         for (i = 0; i < UUID_LEN; i++)
      68         [ +  + ]:       2662 :                 if (uuid[i])
      69                 :        102 :                         return 0;
      70                 :        262 :         return 1;
      71                 :            : }

Generated by: LCOV version 1.9