Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The Chromium OS Authors. |
| 3 | * Written by Mike Frysinger <vapier@gentoo.org>. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 17 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 18 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 19 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 21 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 22 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 23 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 25 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | #include "defs.h" |
| 29 | |
| 30 | #include <sys/ioctl.h> |
| 31 | |
| 32 | #include <linux/loop.h> |
| 33 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 34 | #include "xlat/loop_flags_options.h" |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 35 | #include "xlat/loop_crypt_type_options.h" |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 36 | |
Dmitry V. Levin | c7afb48 | 2015-01-19 18:44:21 +0000 | [diff] [blame] | 37 | int |
| 38 | loop_ioctl(struct tcb *tcp, const unsigned int code, long arg) |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 39 | { |
| 40 | struct loop_info info; |
| 41 | struct loop_info64 info64; |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 42 | |
| 43 | if (entering(tcp)) |
| 44 | return 0; |
| 45 | |
| 46 | switch (code) { |
| 47 | |
| 48 | case LOOP_SET_STATUS: |
| 49 | case LOOP_GET_STATUS: |
| 50 | if (!verbose(tcp) || umove(tcp, arg, &info) < 0) |
| 51 | return 0; |
| 52 | |
Denys Vlasenko | 318a273 | 2012-05-16 12:29:09 +0200 | [diff] [blame] | 53 | tprintf(", {number=%d", info.lo_number); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 54 | |
| 55 | if (!abbrev(tcp)) { |
| 56 | tprintf(", device=%#lx, inode=%lu, rdevice=%#lx", |
| 57 | (unsigned long) info.lo_device, |
| 58 | info.lo_inode, |
| 59 | (unsigned long) info.lo_rdevice); |
| 60 | } |
| 61 | |
| 62 | tprintf(", offset=%#x", info.lo_offset); |
| 63 | |
| 64 | if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) { |
| 65 | tprints(", encrypt_type="); |
| 66 | printxval(loop_crypt_type_options, info.lo_encrypt_type, |
| 67 | "LO_CRYPT_???"); |
Denys Vlasenko | 318a273 | 2012-05-16 12:29:09 +0200 | [diff] [blame] | 68 | tprintf(", encrypt_key_size=%d", info.lo_encrypt_key_size); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | tprints(", flags="); |
| 72 | printflags(loop_flags_options, info.lo_flags, "LO_FLAGS_???"); |
| 73 | |
Dmitry V. Levin | 513e96e | 2015-01-26 01:17:08 +0000 | [diff] [blame] | 74 | tprints(", name="); |
| 75 | print_quoted_string(info.lo_name, LO_NAME_SIZE, |
| 76 | QUOTE_0_TERMINATED); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 77 | |
| 78 | if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) { |
Dmitry V. Levin | 513e96e | 2015-01-26 01:17:08 +0000 | [diff] [blame] | 79 | tprints(", encrypt_key="); |
| 80 | print_quoted_string((void *) info.lo_encrypt_key, |
| 81 | LO_KEY_SIZE, 0); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | if (!abbrev(tcp)) |
| 85 | tprintf(", init={%#lx, %#lx}" |
| 86 | ", reserved={%#x, %#x, %#x, %#x}}", |
| 87 | info.lo_init[0], info.lo_init[1], |
| 88 | info.reserved[0], info.reserved[1], |
| 89 | info.reserved[2], info.reserved[3]); |
| 90 | else |
| 91 | tprints(", ...}"); |
| 92 | |
| 93 | return 1; |
| 94 | |
| 95 | case LOOP_SET_STATUS64: |
| 96 | case LOOP_GET_STATUS64: |
| 97 | if (!verbose(tcp) || umove(tcp, arg, &info64) < 0) |
| 98 | return 0; |
| 99 | |
| 100 | tprints(", {"); |
| 101 | |
| 102 | if (!abbrev(tcp)) { |
| 103 | tprintf("device=%" PRIu64 ", inode=%" PRIu64 ", " |
| 104 | "rdevice=%" PRIu64 ", offset=%#" PRIx64 ", " |
| 105 | "sizelimit=%" PRIu64 ", number=%" PRIu32, |
| 106 | (uint64_t) info64.lo_device, |
| 107 | (uint64_t) info64.lo_inode, |
| 108 | (uint64_t) info64.lo_rdevice, |
| 109 | (uint64_t) info64.lo_offset, |
| 110 | (uint64_t) info64.lo_sizelimit, |
| 111 | (uint32_t) info64.lo_number); |
| 112 | } else { |
| 113 | tprintf("offset=%#" PRIx64 ", number=%" PRIu32, |
| 114 | (uint64_t) info64.lo_offset, |
| 115 | (uint32_t) info64.lo_number); |
| 116 | } |
| 117 | |
| 118 | if (!abbrev(tcp) || info64.lo_encrypt_type != LO_CRYPT_NONE) { |
| 119 | tprints(", encrypt_type="); |
| 120 | printxval(loop_crypt_type_options, info64.lo_encrypt_type, |
| 121 | "LO_CRYPT_???"); |
| 122 | tprintf(", encrypt_key_size=%" PRIu32, |
| 123 | info64.lo_encrypt_key_size); |
| 124 | } |
| 125 | |
| 126 | tprints(", flags="); |
| 127 | printflags(loop_flags_options, info64.lo_flags, "LO_FLAGS_???"); |
| 128 | |
Dmitry V. Levin | 513e96e | 2015-01-26 01:17:08 +0000 | [diff] [blame] | 129 | tprints(", file_name="); |
| 130 | print_quoted_string((void *) info64.lo_file_name, |
| 131 | LO_NAME_SIZE, QUOTE_0_TERMINATED); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 132 | |
| 133 | if (!abbrev(tcp) || info64.lo_encrypt_type != LO_CRYPT_NONE) { |
Dmitry V. Levin | 513e96e | 2015-01-26 01:17:08 +0000 | [diff] [blame] | 134 | tprints(", crypt_name="); |
| 135 | print_quoted_string((void *) info64.lo_crypt_name, |
| 136 | LO_NAME_SIZE, QUOTE_0_TERMINATED); |
| 137 | tprints(", encrypt_key="); |
| 138 | print_quoted_string((void *) info64.lo_encrypt_key, |
| 139 | LO_KEY_SIZE, 0); |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | if (!abbrev(tcp)) |
| 143 | tprintf(", init={%#" PRIx64 ", %#" PRIx64 "}}", |
| 144 | (uint64_t) info64.lo_init[0], |
| 145 | (uint64_t) info64.lo_init[1]); |
| 146 | else |
| 147 | tprints(", ...}"); |
| 148 | |
| 149 | return 1; |
| 150 | |
| 151 | case LOOP_CLR_FD: |
Dmitry V. Levin | cf050db | 2012-05-02 10:21:49 +0000 | [diff] [blame] | 152 | #ifdef LOOP_SET_CAPACITY |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 153 | case LOOP_SET_CAPACITY: |
Dmitry V. Levin | cf050db | 2012-05-02 10:21:49 +0000 | [diff] [blame] | 154 | #endif |
Mike Frysinger | ebee04c | 2012-04-17 22:19:31 -0400 | [diff] [blame] | 155 | #ifdef LOOP_CTL_GET_FREE |
| 156 | /* newer loop-control stuff */ |
| 157 | case LOOP_CTL_GET_FREE: |
| 158 | #endif |
| 159 | /* Takes no arguments */ |
| 160 | return 1; |
| 161 | |
| 162 | case LOOP_SET_FD: |
| 163 | case LOOP_CHANGE_FD: |
| 164 | #ifdef LOOP_CTL_ADD |
| 165 | /* newer loop-control stuff */ |
| 166 | case LOOP_CTL_ADD: |
| 167 | case LOOP_CTL_REMOVE: |
| 168 | #endif |
| 169 | /* These take simple args, so let default printer handle it */ |
| 170 | |
| 171 | default: |
| 172 | return 0; |
| 173 | } |
| 174 | } |