LCOV - code coverage report
Current view: top level - src - iobuf.c (source / functions) Hit Total Coverage
Test: burp-coverage-clean.info Lines: 85 93 91.4 %
Date: 2018-06-21 07:06:30 Functions: 21 22 95.5 %

          Line data    Source code
       1             : #include "burp.h"
       2             : #include "alloc.h"
       3             : #include "cmd.h"
       4             : #include "iobuf.h"
       5             : #include "log.h"
       6             : #include "msg.h"
       7             : #include "pathcmp.h"
       8             : 
       9         376 : struct iobuf *iobuf_alloc(void)
      10             : {
      11             :         struct iobuf *iobuf;
      12         376 :         if(!(iobuf=(struct iobuf *)calloc_w(1, sizeof(struct iobuf), __func__)))
      13             :                 return NULL;
      14         376 :         iobuf_init(iobuf);
      15         376 :         return iobuf;
      16             : }
      17             : 
      18      364653 : void iobuf_set(struct iobuf *iobuf, enum cmd cmd, char *buf, size_t len)
      19             : {
      20     3082306 :         iobuf->cmd=cmd;
      21     3082306 :         iobuf->buf=buf;
      22     3082306 :         iobuf->len=len;
      23      364653 : }
      24             : 
      25      549671 : void iobuf_init(struct iobuf *iobuf)
      26             : {
      27     2296401 :         iobuf_set(iobuf, CMD_ERROR, NULL, 0);
      28      549671 : }
      29             : 
      30     1745979 : void iobuf_free_content(struct iobuf *iobuf)
      31             : {
      32     1745979 :         if(!iobuf) return;
      33     1746354 :         free_w(&iobuf->buf);
      34             :         iobuf_init(iobuf);
      35             : }
      36             : 
      37         378 : void iobuf_free(struct iobuf **iobuf)
      38             : {
      39         378 :         if(!iobuf || !*iobuf) return;
      40         752 :         iobuf_free_content(*iobuf);
      41         376 :         free_v((void **)iobuf);
      42             : }
      43             : 
      44          12 : void iobuf_log_unexpected(struct iobuf *iobuf, const char *func)
      45             : {
      46          12 :         logp("unexpected command in %s(): %s\n",
      47             :                 func, iobuf_to_printable(iobuf));
      48          12 : }
      49             : 
      50       17208 : void iobuf_copy(struct iobuf *dst, struct iobuf *src)
      51             : {
      52      611468 :         iobuf_set(dst, src->cmd, src->buf, src->len);
      53       17208 : }
      54             : 
      55      288526 : void iobuf_move(struct iobuf *dst, struct iobuf *src)
      56             : {
      57      288526 :         iobuf_copy(dst, src);
      58      288526 :         src->buf=NULL;
      59      288526 : }
      60             : 
      61      115518 : void iobuf_from_str(struct iobuf *iobuf, enum cmd cmd, char *str)
      62             : {
      63      231036 :         iobuf_set(iobuf, cmd, str, strlen(str));
      64      115518 : }
      65             : 
      66      382107 : int iobuf_send_msg_fzp(struct iobuf *iobuf, struct fzp *fzp)
      67             : {
      68      382107 :         return send_msg_fzp(fzp, iobuf->cmd, iobuf->buf, iobuf->len);
      69             : }
      70             : 
      71      150824 : int iobuf_pathcmp(struct iobuf *a, struct iobuf *b)
      72             : {
      73             :         int r;
      74      150824 :         if((r=pathcmp(a->buf, b->buf))) return r;
      75      144431 :         if(a->cmd==CMD_METADATA || a->cmd==CMD_ENC_METADATA)
      76             :         {
      77          51 :                 if(b->cmd==CMD_METADATA || b->cmd==CMD_ENC_METADATA) return 0;
      78           9 :                 else return 1;
      79             :         }
      80      144380 :         else if(a->cmd==CMD_VSS || a->cmd==CMD_ENC_VSS)
      81             :         {
      82          40 :                 if(b->cmd==CMD_VSS || b->cmd==CMD_ENC_VSS) return 0;
      83           0 :                 else return -1;
      84             :         }
      85      144340 :         else if(a->cmd==CMD_VSS_T || a->cmd==CMD_ENC_VSS_T)
      86             :         {
      87           8 :                 if(b->cmd==CMD_VSS_T || b->cmd==CMD_ENC_VSS_T) return 0;
      88           0 :                 else return 1;
      89             :         }
      90             :         else
      91             :         {
      92      144332 :                 if(b->cmd==CMD_METADATA || b->cmd==CMD_ENC_METADATA) return -1;
      93      144324 :                 else if(b->cmd==CMD_VSS || b->cmd==CMD_ENC_VSS) return 1;
      94      144324 :                 else if(b->cmd==CMD_VSS_T || b->cmd==CMD_ENC_VSS_T) return -1;
      95      144324 :                 else return 0;
      96             :         }
      97             : }
      98             : 
      99      261246 : int iobuf_is_filedata(struct iobuf *iobuf)
     100             : {
     101      261246 :         return cmd_is_filedata(iobuf->cmd);
     102             : }
     103             : 
     104       10832 : int iobuf_is_vssdata(struct iobuf *iobuf)
     105             : {
     106       10832 :         return cmd_is_vssdata(iobuf->cmd);
     107             : }
     108             : 
     109         110 : int iobuf_is_link(struct iobuf *iobuf)
     110             : {
     111         110 :         return cmd_is_link(iobuf->cmd);
     112             : }
     113             : 
     114       85249 : int iobuf_is_encrypted(struct iobuf *iobuf)
     115             : {
     116       85249 :         return cmd_is_encrypted(iobuf->cmd);
     117             : }
     118             : 
     119         115 : int iobuf_is_metadata(struct iobuf *iobuf)
     120             : {
     121         115 :         return cmd_is_metadata(iobuf->cmd);
     122             : }
     123             : 
     124           0 : int iobuf_is_estimatable(struct iobuf *iobuf)
     125             : {
     126           0 :         return cmd_is_estimatable(iobuf->cmd);
     127             : }
     128             : 
     129      368396 : static int do_iobuf_fill_from_fzp(struct iobuf *iobuf, struct fzp *fzp,
     130             :         int extra_bytes)
     131             : {
     132             :         unsigned int s;
     133      368396 :         char lead[5]="";
     134             :         char command;
     135             : 
     136      368396 :         switch(fzp_read_ensure(fzp, lead, sizeof(lead), __func__))
     137             :         {
     138             :                 case 0: break; // OK.
     139             :                 case 1: return 1; // Finished OK.
     140             :                 default:
     141             :                 {
     142          14 :                         logp("Error reading lead in %s\n", __func__);
     143          14 :                         return -1; // Error.
     144             :                 }
     145             :         }
     146      367830 :         if((sscanf(lead, "%c%04X", &command, &s))!=2)
     147             :         {
     148           0 :                 logp("sscanf failed reading manifest: %s\n", lead);
     149           0 :                 return -1;
     150             :         }
     151      367830 :         iobuf->cmd=(enum cmd)command;
     152      367830 :         iobuf->len=(size_t)s;
     153      367830 :         if(!(iobuf->buf=(char *)malloc_w(
     154      367830 :                 iobuf->len+extra_bytes+1, __func__)))
     155             :                         return -1;
     156      367830 :         switch(fzp_read_ensure(fzp,
     157      367830 :                 iobuf->buf, iobuf->len+extra_bytes, __func__))
     158             :         {
     159             :                 case 0: break; // OK.
     160             :                 case 1: return 1; // Finished OK.
     161             :                 default:
     162          45 :                         logp("Error attempting to read after %s in %s (%c:%u)\n", lead, __func__, iobuf->cmd, s);
     163          45 :                         return -1;
     164             :         }
     165      367785 :         iobuf->buf[iobuf->len]='\0';
     166      367785 :         return 0;
     167             : }
     168             : 
     169      368080 : int iobuf_fill_from_fzp(struct iobuf *iobuf, struct fzp *fzp)
     170             : {
     171      368080 :         return do_iobuf_fill_from_fzp(iobuf, fzp, 1 /*newline*/);
     172             : }
     173             : 
     174         316 : int iobuf_fill_from_fzp_data(struct iobuf *iobuf, struct fzp *fzp)
     175             : {
     176         316 :         return do_iobuf_fill_from_fzp(iobuf, fzp, 0 /*no newline*/);
     177             : }
     178             : 
     179          71 : static int is_printable(struct iobuf *iobuf)
     180             : {
     181             :         size_t l;
     182         834 :         for(l=0; l<iobuf->len; l++)
     183         834 :                 if(!isprint(iobuf->buf[l]) && iobuf->buf[l]!='\n')
     184             :                         return 0;
     185             :         return 1;
     186             : }
     187             : 
     188          71 : const char *iobuf_to_printable(struct iobuf *iobuf)
     189             : {
     190             :         static char str[256]="";
     191          71 :         if(is_printable(iobuf))
     192         142 :                 snprintf(str, sizeof(str),
     193          71 :                         "%c:%04X:%s", iobuf->cmd, (int)iobuf->len, iobuf->buf);
     194             :         else
     195           0 :                 snprintf(str, sizeof(str),
     196           0 :                         "%c:%04X:(binary data)", iobuf->cmd, (int)iobuf->len);
     197          71 :         return str;
     198             : }

Generated by: LCOV version 1.13