LCOV - code coverage report
Current view: top level - strace - execve.c (source / functions) Hit Total Coverage
Test: strace-4.18.0.129.97bbb Code Coverage Lines: 51 51 100.0 %
Date: 2017-07-31 03:46:08 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                 :            :  * Copyright (c) 2014-2017 The strace developers.
      10                 :            :  * All rights reserved.
      11                 :            :  *
      12                 :            :  * Redistribution and use in source and binary forms, with or without
      13                 :            :  * modification, are permitted provided that the following conditions
      14                 :            :  * are met:
      15                 :            :  * 1. Redistributions of source code must retain the above copyright
      16                 :            :  *    notice, this list of conditions and the following disclaimer.
      17                 :            :  * 2. Redistributions in binary form must reproduce the above copyright
      18                 :            :  *    notice, this list of conditions and the following disclaimer in the
      19                 :            :  *    documentation and/or other materials provided with the distribution.
      20                 :            :  * 3. The name of the author may not be used to endorse or promote products
      21                 :            :  *    derived from this software without specific prior written permission.
      22                 :            :  *
      23                 :            :  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
      24                 :            :  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
      25                 :            :  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
      26                 :            :  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
      27                 :            :  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
      28                 :            :  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
      29                 :            :  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      30                 :            :  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      31                 :            :  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
      32                 :            :  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      33                 :            :  */
      34                 :            : 
      35                 :            : #include "defs.h"
      36                 :            : 
      37                 :            : static void
      38                 :        292 : printargv(struct tcb *const tcp, kernel_ulong_t addr)
      39                 :            : {
      40 [ +  + ][ +  + ]:        292 :         if (!addr || !verbose(tcp)) {
      41                 :         38 :                 printaddr(addr);
      42                 :         38 :                 return;
      43                 :            :         }
      44                 :            : 
      45                 :        254 :         const char *const start_sep = "[";
      46                 :        254 :         const char *sep = start_sep;
      47                 :        254 :         const unsigned int wordsize = current_wordsize;
      48                 :            :         unsigned int n;
      49                 :            : 
      50         [ +  - ]:       2586 :         for (n = 0; addr; sep = ", ", addr += wordsize, ++n) {
      51                 :            :                 union {
      52                 :            :                         unsigned int p32;
      53                 :            :                         kernel_ulong_t p64;
      54                 :            :                         char data[sizeof(kernel_ulong_t)];
      55                 :            :                 } cp;
      56                 :            : 
      57         [ +  + ]:       2586 :                 if (umoven(tcp, addr, wordsize, cp.data)) {
      58         [ +  + ]:         24 :                         if (sep == start_sep)
      59                 :         12 :                                 printaddr(addr);
      60                 :            :                         else
      61                 :         12 :                                 tprints(", ???]");
      62                 :         24 :                         return;
      63                 :            :                 }
      64 [ +  + ][ +  + ]:       2562 :                 if (!(wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64)) {
      65         [ +  + ]:        226 :                         if (sep == start_sep)
      66                 :         14 :                                 tprints(start_sep);
      67                 :        230 :                         break;
      68                 :            :                 }
      69 [ +  + ][ +  + ]:       2336 :                 if (abbrev(tcp) && n >= max_strlen) {
      70                 :          4 :                         tprintf("%s...", sep);
      71                 :          4 :                         break;
      72                 :            :                 }
      73                 :       2332 :                 tprints(sep);
      74         [ +  + ]:       2332 :                 printstr(tcp, wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64);
      75                 :            :         }
      76                 :        230 :         tprints("]");
      77                 :            : }
      78                 :            : 
      79                 :            : static void
      80                 :        160 : printargc(struct tcb *const tcp, kernel_ulong_t addr)
      81                 :            : {
      82                 :        160 :         printaddr(addr);
      83                 :            : 
      84 [ +  + ][ +  + ]:        160 :         if (!addr || !verbose(tcp))
      85                 :         34 :                 return;
      86                 :            : 
      87                 :        130 :         bool unterminated = false;
      88                 :        130 :         unsigned int count = 0;
      89                 :        130 :         char *cp = NULL;
      90                 :            : 
      91         [ +  - ]:       4502 :         for (; addr; addr += current_wordsize, ++count) {
      92         [ +  + ]:       4502 :                 if (umoven(tcp, addr, current_wordsize, &cp)) {
      93         [ +  + ]:          8 :                         if (!count)
      94                 :            :                                 return;
      95                 :            : 
      96                 :            :                         unterminated = true;
      97                 :            :                         break;
      98                 :            :                 }
      99         [ +  + ]:       4494 :                 if (!cp)
     100                 :            :                         break;
     101                 :            :         }
     102 [ +  + ][ +  + ]:        126 :         tprintf_comment("%u var%s%s",
     103                 :            :                 count, count == 1 ? "" : "s",
     104                 :            :                 unterminated ? ", unterminated" : "");
     105                 :            : }
     106                 :            : 
     107                 :            : static void
     108                 :        226 : decode_execve(struct tcb *tcp, const unsigned int index)
     109                 :            : {
     110                 :        226 :         printpath(tcp, tcp->u_arg[index + 0]);
     111                 :        226 :         tprints(", ");
     112                 :            : 
     113                 :        226 :         printargv(tcp, tcp->u_arg[index + 1]);
     114                 :        226 :         tprints(", ");
     115                 :            : 
     116         [ +  + ]:        226 :         (abbrev(tcp) ? printargc : printargv) (tcp, tcp->u_arg[index + 2]);
     117                 :        226 : }
     118                 :            : 
     119                 :        194 : SYS_FUNC(execve)
     120                 :            : {
     121                 :        194 :         decode_execve(tcp, 0);
     122                 :            : 
     123                 :        194 :         return RVAL_DECODED;
     124                 :            : }
     125                 :            : 
     126                 :         32 : SYS_FUNC(execveat)
     127                 :            : {
     128                 :         32 :         print_dirfd(tcp, tcp->u_arg[0]);
     129                 :         32 :         decode_execve(tcp, 1);
     130                 :         32 :         tprints(", ");
     131                 :         32 :         printflags(at_flags, tcp->u_arg[4], "AT_???");
     132                 :            : 
     133                 :         32 :         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.11