LCOV - code coverage report
Current view: top level - strace_git - execve.c (source / functions) Hit Total Coverage
Test: strace-4.16.0.69.f1ea-dirty Code Coverage Lines: 56 56 100.0 %
Date: 2017-03-18 00:38:52 Functions: 5 5 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 38 40 95.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl>
       3                 :            :  * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
       4                 :            :  * Copyright (c) 1993-1996 Rick Sladkey <jrs@world.std.com>
       5                 :            :  * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
       6                 :            :  * Copyright (c) 2007 Roland McGrath <roland@redhat.com>
       7                 :            :  * Copyright (c) 2011-2012 Denys Vlasenko <vda.linux@googlemail.com>
       8                 :            :  * Copyright (c) 2010-2015 Dmitry V. Levin <ldv@altlinux.org>
       9                 :            :  * All rights reserved.
      10                 :            :  *
      11                 :            :  * Redistribution and use in source and binary forms, with or without
      12                 :            :  * modification, are permitted provided that the following conditions
      13                 :            :  * are met:
      14                 :            :  * 1. Redistributions of source code must retain the above copyright
      15                 :            :  *    notice, this list of conditions and the following disclaimer.
      16                 :            :  * 2. Redistributions in binary form must reproduce the above copyright
      17                 :            :  *    notice, this list of conditions and the following disclaimer in the
      18                 :            :  *    documentation and/or other materials provided with the distribution.
      19                 :            :  * 3. The name of the author may not be used to endorse or promote products
      20                 :            :  *    derived from this software without specific prior written permission.
      21                 :            :  *
      22                 :            :  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
      23                 :            :  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
      24                 :            :  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
      25                 :            :  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
      26                 :            :  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
      27                 :            :  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
      28                 :            :  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      29                 :            :  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      30                 :            :  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
      31                 :            :  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      32                 :            :  */
      33                 :            : 
      34                 :            : #include "defs.h"
      35                 :            : 
      36                 :            : static void
      37                 :        834 : printargv(struct tcb *const tcp, kernel_ulong_t addr)
      38                 :            : {
      39 [ +  + ][ +  + ]:        834 :         if (!addr || !verbose(tcp)) {
      40                 :        108 :                 printaddr(addr);
      41                 :        108 :                 return;
      42                 :            :         }
      43                 :            : 
      44                 :        726 :         const char *const start_sep = "[";
      45                 :        726 :         const char *sep = start_sep;
      46                 :        726 :         const unsigned int wordsize = current_wordsize;
      47                 :            :         unsigned int n;
      48                 :            : 
      49         [ +  - ]:       7632 :         for (n = 0; addr; sep = ", ", addr += wordsize, ++n) {
      50                 :            :                 union {
      51                 :            :                         unsigned int p32;
      52                 :            :                         kernel_ulong_t p64;
      53                 :            :                         char data[sizeof(kernel_ulong_t)];
      54                 :            :                 } cp;
      55                 :            : 
      56         [ +  + ]:       7632 :                 if (umoven(tcp, addr, wordsize, cp.data)) {
      57         [ +  + ]:         72 :                         if (sep == start_sep)
      58                 :         36 :                                 printaddr(addr);
      59                 :            :                         else
      60                 :         36 :                                 tprints(", ???]");
      61                 :         72 :                         return;
      62                 :            :                 }
      63 [ +  + ][ +  + ]:       7560 :                 if (!(wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64)) {
      64         [ +  + ]:        642 :                         if (sep == start_sep)
      65                 :         42 :                                 tprints(start_sep);
      66                 :        654 :                         break;
      67                 :            :                 }
      68 [ +  + ][ +  + ]:       6918 :                 if (abbrev(tcp) && n >= max_strlen) {
      69                 :         12 :                         tprintf("%s...", sep);
      70                 :         12 :                         break;
      71                 :            :                 }
      72                 :       6906 :                 tprints(sep);
      73         [ +  + ]:       6906 :                 printstr(tcp, wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64);
      74                 :            :         }
      75                 :        654 :         tprints("]");
      76                 :            : }
      77                 :            : 
      78                 :            : static void
      79                 :        450 : printargc(struct tcb *const tcp, kernel_ulong_t addr)
      80                 :            : {
      81 [ +  + ][ +  + ]:        450 :         if (!addr || !verbose(tcp)) {
      82                 :         84 :                 printaddr(addr);
      83                 :         96 :                 return;
      84                 :            :         }
      85                 :            : 
      86                 :        366 :         bool unterminated = false;
      87                 :        366 :         unsigned int count = 0;
      88                 :        366 :         char *cp = NULL;
      89                 :            : 
      90         [ +  - ]:      13086 :         for (; addr; addr += current_wordsize, ++count) {
      91         [ +  + ]:      13086 :                 if (umoven(tcp, addr, current_wordsize, &cp)) {
      92         [ +  + ]:         24 :                         if (count) {
      93                 :         12 :                                 unterminated = true;
      94                 :         12 :                                 break;
      95                 :            :                         }
      96                 :         12 :                         printaddr(addr);
      97                 :         12 :                         return;
      98                 :            :                 }
      99         [ +  + ]:      13062 :                 if (!cp)
     100                 :        342 :                         break;
     101                 :            :         }
     102 [ +  + ][ +  + ]:        354 :         tprintf("[/* %u var%s%s */]",
     103                 :            :                 count, count == 1 ? "" : "s",
     104                 :            :                 unterminated ? ", unterminated" : "");
     105                 :            : }
     106                 :            : 
     107                 :            : static void
     108                 :        642 : decode_execve(struct tcb *tcp, const unsigned int index)
     109                 :            : {
     110                 :        642 :         printpath(tcp, tcp->u_arg[index + 0]);
     111                 :        642 :         tprints(", ");
     112                 :            : 
     113                 :        642 :         printargv(tcp, tcp->u_arg[index + 1]);
     114                 :        642 :         tprints(", ");
     115                 :            : 
     116         [ +  + ]:        642 :         (abbrev(tcp) ? printargc : printargv) (tcp, tcp->u_arg[index + 2]);
     117                 :        642 : }
     118                 :            : 
     119                 :        546 : SYS_FUNC(execve)
     120                 :            : {
     121                 :        546 :         decode_execve(tcp, 0);
     122                 :            : 
     123                 :        546 :         return RVAL_DECODED;
     124                 :            : }
     125                 :            : 
     126                 :         96 : SYS_FUNC(execveat)
     127                 :            : {
     128                 :         96 :         print_dirfd(tcp, tcp->u_arg[0]);
     129                 :         96 :         decode_execve(tcp, 1);
     130                 :         96 :         tprints(", ");
     131                 :         96 :         printflags(at_flags, tcp->u_arg[4], "AT_???");
     132                 :            : 
     133                 :         96 :         return RVAL_DECODED;
     134                 :            : }
     135                 :            : 
     136                 :            : #if defined(SPARC) || defined(SPARC64)
     137                 :            : SYS_FUNC(execv)
     138                 :            : {
     139                 :            :         printpath(tcp, tcp->u_arg[0]);
     140                 :            :         tprints(", ");
     141                 :            :         printargv(tcp, tcp->u_arg[1]);
     142                 :            : 
     143                 :            :         return RVAL_DECODED;
     144                 :            : }
     145                 :            : #endif /* SPARC || SPARC64 */

Generated by: LCOV version 1.12