LCOV - code coverage report
Current view: top level - strace_git - ubi.c (source / functions) Hit Total Coverage
Test: strace-4.16.0.69.f1ea-dirty Code Coverage Lines: 0 81 0.0 %
Date: 2017-03-18 00:38:52 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 49 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (c) 2012 Mike Frysinger <vapier@gentoo.org>
       3                 :            :  *
       4                 :            :  * Redistribution and use in source and binary forms, with or without
       5                 :            :  * modification, are permitted provided that the following conditions
       6                 :            :  * are met:
       7                 :            :  * 1. Redistributions of source code must retain the above copyright
       8                 :            :  *    notice, this list of conditions and the following disclaimer.
       9                 :            :  * 2. Redistributions in binary form must reproduce the above copyright
      10                 :            :  *    notice, this list of conditions and the following disclaimer in the
      11                 :            :  *    documentation and/or other materials provided with the distribution.
      12                 :            :  * 3. The name of the author may not be used to endorse or promote products
      13                 :            :  *    derived from this software without specific prior written permission.
      14                 :            :  *
      15                 :            :  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
      16                 :            :  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
      17                 :            :  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
      18                 :            :  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
      19                 :            :  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
      20                 :            :  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
      21                 :            :  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      22                 :            :  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      23                 :            :  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
      24                 :            :  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      25                 :            :  */
      26                 :            : 
      27                 :            : #include "defs.h"
      28                 :            : 
      29                 :            : #include <linux/ioctl.h>
      30                 :            : 
      31                 :            : /* The UBI api changes, so we have to keep a local copy */
      32                 :            : #include <linux/version.h>
      33                 :            : #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 7, 0)
      34                 :            : # include "ubi-user.h"
      35                 :            : #else
      36                 :            : # include <mtd/ubi-user.h>
      37                 :            : #endif
      38                 :            : 
      39                 :            : #include "xlat/ubi_volume_types.h"
      40                 :            : #include "xlat/ubi_volume_props.h"
      41                 :            : 
      42                 :            : int
      43                 :          0 : ubi_ioctl(struct tcb *const tcp, const unsigned int code,
      44                 :            :           const kernel_ulong_t arg)
      45                 :            : {
      46         [ #  # ]:          0 :         if (!verbose(tcp))
      47                 :          0 :                 return RVAL_DECODED;
      48                 :            : 
      49   [ #  #  #  #  :          0 :         switch (code) {
          #  #  #  #  #  
                   #  # ]
      50                 :            :         case UBI_IOCMKVOL:
      51         [ #  # ]:          0 :                 if (entering(tcp)) {
      52                 :            :                         struct ubi_mkvol_req mkvol;
      53                 :            : 
      54                 :          0 :                         tprints(", ");
      55         [ #  # ]:          0 :                         if (umove_or_printaddr(tcp, arg, &mkvol))
      56                 :          0 :                                 break;
      57                 :            : 
      58                 :          0 :                         tprintf("{vol_id=%" PRIi32 ", alignment=%" PRIi32
      59                 :            :                                 ", bytes=%" PRIi64 ", vol_type=", mkvol.vol_id,
      60                 :          0 :                                 mkvol.alignment, (int64_t)mkvol.bytes);
      61                 :          0 :                         printxval(ubi_volume_types,
      62                 :          0 :                                     (uint8_t) mkvol.vol_type, "UBI_???_VOLUME");
      63                 :          0 :                         tprintf(", name_len=%" PRIi16 ", name=", mkvol.name_len);
      64 [ #  # ][ #  # ]:          0 :                         if (print_quoted_string(mkvol.name,
      65                 :          0 :                                         CLAMP(mkvol.name_len, 0, UBI_MAX_VOLUME_NAME),
      66                 :            :                                         QUOTE_0_TERMINATED) > 0) {
      67                 :          0 :                                 tprints("...");
      68                 :            :                         }
      69                 :          0 :                         tprints("}");
      70                 :          0 :                         return 1;
      71                 :            :                 }
      72         [ #  # ]:          0 :                 if (!syserror(tcp)) {
      73                 :          0 :                         tprints(" => ");
      74                 :          0 :                         printnum_int(tcp, arg, "%d");
      75                 :            :                 }
      76                 :          0 :                 break;
      77                 :            : 
      78                 :            :         case UBI_IOCRSVOL: {
      79                 :            :                 struct ubi_rsvol_req rsvol;
      80                 :            : 
      81                 :          0 :                 tprints(", ");
      82         [ #  # ]:          0 :                 if (umove_or_printaddr(tcp, arg, &rsvol))
      83                 :          0 :                         break;
      84                 :            : 
      85                 :          0 :                 tprintf("{vol_id=%" PRIi32 ", bytes=%" PRIi64 "}",
      86                 :          0 :                         rsvol.vol_id, (int64_t)rsvol.bytes);
      87                 :          0 :                 break;
      88                 :            :         }
      89                 :            : 
      90                 :            :         case UBI_IOCRNVOL: {
      91                 :            :                 struct ubi_rnvol_req rnvol;
      92                 :            :                 int c;
      93                 :            : 
      94                 :          0 :                 tprints(", ");
      95         [ #  # ]:          0 :                 if (umove_or_printaddr(tcp, arg, &rnvol))
      96                 :          0 :                         break;
      97                 :            : 
      98                 :          0 :                 tprintf("{count=%" PRIi32 ", ents=[", rnvol.count);
      99 [ #  # ][ #  # ]:          0 :                 for (c = 0; c < CLAMP(rnvol.count, 0, UBI_MAX_RNVOL); ++c) {
     100         [ #  # ]:          0 :                         if (c)
     101                 :          0 :                                 tprints(", ");
     102                 :          0 :                         tprintf("{vol_id=%" PRIi32 ", name_len=%" PRIi16
     103                 :            :                                 ", name=", rnvol.ents[c].vol_id,
     104                 :          0 :                                 rnvol.ents[c].name_len);
     105 [ #  # ][ #  # ]:          0 :                         if (print_quoted_string(rnvol.ents[c].name,
     106                 :          0 :                                         CLAMP(rnvol.ents[c].name_len, 0, UBI_MAX_VOLUME_NAME),
     107                 :            :                                         QUOTE_0_TERMINATED) > 0) {
     108                 :          0 :                                 tprints("...");
     109                 :            :                         }
     110                 :          0 :                         tprints("}");
     111                 :            :                 }
     112                 :          0 :                 tprints("]}");
     113                 :          0 :                 break;
     114                 :            :         }
     115                 :            : 
     116                 :            :         case UBI_IOCEBCH: {
     117                 :            :                 struct ubi_leb_change_req leb;
     118                 :            : 
     119                 :          0 :                 tprints(", ");
     120         [ #  # ]:          0 :                 if (umove_or_printaddr(tcp, arg, &leb))
     121                 :          0 :                         break;
     122                 :            : 
     123                 :          0 :                 tprintf("{lnum=%d, bytes=%d}", leb.lnum, leb.bytes);
     124                 :          0 :                 break;
     125                 :            :         }
     126                 :            : 
     127                 :            :         case UBI_IOCATT:
     128         [ #  # ]:          0 :                 if (entering(tcp)) {
     129                 :            :                         struct ubi_attach_req attach;
     130                 :            : 
     131                 :          0 :                         tprints(", ");
     132         [ #  # ]:          0 :                         if (umove_or_printaddr(tcp, arg, &attach))
     133                 :          0 :                                 break;
     134                 :            : 
     135                 :          0 :                         tprintf("{ubi_num=%" PRIi32 ", mtd_num=%" PRIi32
     136                 :            :                                 ", vid_hdr_offset=%" PRIi32
     137                 :            :                                 ", max_beb_per1024=%" PRIi16 "}",
     138                 :            :                                 attach.ubi_num, attach.mtd_num,
     139                 :          0 :                                 attach.vid_hdr_offset, attach.max_beb_per1024);
     140                 :          0 :                         return 1;
     141                 :            :                 }
     142         [ #  # ]:          0 :                 if (!syserror(tcp)) {
     143                 :          0 :                         tprints(" => ");
     144                 :          0 :                         printnum_int(tcp, arg, "%d");
     145                 :            :                 }
     146                 :          0 :                 break;
     147                 :            : 
     148                 :            :         case UBI_IOCEBMAP: {
     149                 :            :                 struct ubi_map_req map;
     150                 :            : 
     151                 :          0 :                 tprints(", ");
     152         [ #  # ]:          0 :                 if (umove_or_printaddr(tcp, arg, &map))
     153                 :          0 :                         break;
     154                 :            : 
     155                 :          0 :                 tprintf("{lnum=%" PRIi32 ", dtype=%" PRIi8 "}",
     156                 :          0 :                         map.lnum, map.dtype);
     157                 :          0 :                 break;
     158                 :            :         }
     159                 :            : 
     160                 :            :         case UBI_IOCSETVOLPROP: {
     161                 :            :                 struct ubi_set_vol_prop_req prop;
     162                 :            : 
     163                 :          0 :                 tprints(", ");
     164         [ #  # ]:          0 :                 if (umove_or_printaddr(tcp, arg, &prop))
     165                 :          0 :                         break;
     166                 :            : 
     167                 :          0 :                 tprints("{property=");
     168                 :          0 :                 printxval(ubi_volume_props, prop.property, "UBI_VOL_PROP_???");
     169                 :          0 :                 tprintf(", value=%#" PRIx64 "}", (uint64_t)prop.value);
     170                 :          0 :                 break;
     171                 :            :         }
     172                 :            : 
     173                 :            : 
     174                 :            :         case UBI_IOCVOLUP:
     175                 :          0 :                 tprints(", ");
     176                 :          0 :                 printnum_int64(tcp, arg, "%" PRIi64);
     177                 :          0 :                 break;
     178                 :            : 
     179                 :            :         case UBI_IOCDET:
     180                 :            :         case UBI_IOCEBER:
     181                 :            :         case UBI_IOCEBISMAP:
     182                 :            :         case UBI_IOCEBUNMAP:
     183                 :            :         case UBI_IOCRMVOL:
     184                 :          0 :                 tprints(", ");
     185                 :          0 :                 printnum_int(tcp, arg, "%d");
     186                 :          0 :                 break;
     187                 :            : 
     188                 :            : #ifdef UBI_IOCVOLCRBLK
     189                 :            :         case UBI_IOCVOLCRBLK:
     190                 :            : #endif
     191                 :            : #ifdef UBI_IOCVOLRMBLK
     192                 :            :         case UBI_IOCVOLRMBLK:
     193                 :            : #endif
     194                 :            :                 /* no arguments */
     195                 :          0 :                 break;
     196                 :            : 
     197                 :            :         default:
     198                 :          0 :                 return RVAL_DECODED;
     199                 :            :         }
     200                 :            : 
     201                 :          0 :         return RVAL_DECODED | 1;
     202                 :            : }

Generated by: LCOV version 1.12