Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2002-2005 Roland McGrath <roland@redhat.com> |
| 3 | * Copyright (c) 2004 Ulrich Drepper <drepper@redhat.com> |
Dmitry V. Levin | ec9c317 | 2016-05-10 18:52:06 +0000 | [diff] [blame] | 4 | * Copyright (c) 2005-2016 Dmitry V. Levin <ldv@altlinux.org> |
Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 5 | * All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * 1. Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer in the |
| 14 | * documentation and/or other materials provided with the distribution. |
| 15 | * 3. The name of the author may not be used to endorse or promote products |
| 16 | * derived from this software without specific prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 30 | #include "defs.h" |
| 31 | |
Dmitry V. Levin | 0c56195 | 2015-06-17 19:54:21 +0000 | [diff] [blame] | 32 | #ifdef HAVE_SYS_XATTR_H |
| 33 | # include <sys/xattr.h> |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 34 | #endif |
| 35 | |
| 36 | #include "xlat/xattrflags.h" |
| 37 | |
Dmitry V. Levin | ec9c317 | 2016-05-10 18:52:06 +0000 | [diff] [blame] | 38 | #ifndef XATTR_SIZE_MAX |
| 39 | # define XATTR_SIZE_MAX 65536 |
| 40 | #endif |
| 41 | |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 42 | static void |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 43 | print_xattr_val(struct tcb *const tcp, |
| 44 | const kernel_ulong_t addr, |
| 45 | const kernel_ulong_t insize, |
| 46 | const kernel_ulong_t size) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 47 | { |
Dmitry V. Levin | 105c35b | 2015-07-14 23:34:06 +0000 | [diff] [blame] | 48 | tprints(", "); |
| 49 | |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 50 | if (size > XATTR_SIZE_MAX) |
Dmitry V. Levin | 105c35b | 2015-07-14 23:34:06 +0000 | [diff] [blame] | 51 | printaddr(addr); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 52 | else |
| 53 | printstr_ex(tcp, addr, size, QUOTE_OMIT_TRAILING_0); |
| 54 | tprintf(", %" PRI_klu, insize); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 57 | SYS_FUNC(setxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 58 | { |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 59 | printpath(tcp, tcp->u_arg[0]); |
| 60 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 61 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 62 | print_xattr_val(tcp, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]); |
| 63 | tprints(", "); |
| 64 | printflags(xattrflags, tcp->u_arg[4], "XATTR_???"); |
| 65 | return RVAL_DECODED; |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 68 | SYS_FUNC(fsetxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 69 | { |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 70 | printfd(tcp, tcp->u_arg[0]); |
| 71 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 72 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 73 | print_xattr_val(tcp, tcp->u_arg[2], tcp->u_arg[3], tcp->u_arg[3]); |
| 74 | tprints(", "); |
| 75 | printflags(xattrflags, tcp->u_arg[4], "XATTR_???"); |
| 76 | return RVAL_DECODED; |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 79 | SYS_FUNC(getxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 80 | { |
| 81 | if (entering(tcp)) { |
| 82 | printpath(tcp, tcp->u_arg[0]); |
| 83 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 84 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 85 | } else { |
Dmitry V. Levin | d45548d | 2015-07-14 23:25:15 +0000 | [diff] [blame] | 86 | print_xattr_val(tcp, tcp->u_arg[2], tcp->u_arg[3], tcp->u_rval); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 87 | } |
| 88 | return 0; |
| 89 | } |
| 90 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 91 | SYS_FUNC(fgetxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 92 | { |
| 93 | if (entering(tcp)) { |
| 94 | printfd(tcp, tcp->u_arg[0]); |
| 95 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 96 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 97 | } else { |
Dmitry V. Levin | d45548d | 2015-07-14 23:25:15 +0000 | [diff] [blame] | 98 | print_xattr_val(tcp, tcp->u_arg[2], tcp->u_arg[3], tcp->u_rval); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 99 | } |
| 100 | return 0; |
| 101 | } |
| 102 | |
| 103 | static void |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 104 | print_xattr_list(struct tcb *const tcp, const kernel_ulong_t addr, |
| 105 | const kernel_ulong_t size) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 106 | { |
Dmitry V. Levin | ec9c317 | 2016-05-10 18:52:06 +0000 | [diff] [blame] | 107 | if (!size || syserror(tcp)) { |
Dmitry V. Levin | 8ae9c09 | 2015-07-14 23:31:35 +0000 | [diff] [blame] | 108 | printaddr(addr); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 109 | } else { |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 110 | printstrn(tcp, addr, tcp->u_rval); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 111 | } |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 112 | tprintf(", %" PRI_klu, size); |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 115 | SYS_FUNC(listxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 116 | { |
| 117 | if (entering(tcp)) { |
| 118 | printpath(tcp, tcp->u_arg[0]); |
| 119 | tprints(", "); |
| 120 | } else { |
| 121 | print_xattr_list(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 122 | } |
| 123 | return 0; |
| 124 | } |
| 125 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 126 | SYS_FUNC(flistxattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 127 | { |
| 128 | if (entering(tcp)) { |
| 129 | printfd(tcp, tcp->u_arg[0]); |
| 130 | tprints(", "); |
| 131 | } else { |
| 132 | print_xattr_list(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 133 | } |
| 134 | return 0; |
| 135 | } |
| 136 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 137 | SYS_FUNC(removexattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 138 | { |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 139 | printpath(tcp, tcp->u_arg[0]); |
| 140 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 141 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 142 | return RVAL_DECODED; |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 145 | SYS_FUNC(fremovexattr) |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 146 | { |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 147 | printfd(tcp, tcp->u_arg[0]); |
| 148 | tprints(", "); |
Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 149 | printstr(tcp, tcp->u_arg[1]); |
Dmitry V. Levin | 6156d81 | 2015-07-14 23:38:58 +0000 | [diff] [blame] | 150 | return RVAL_DECODED; |
Dmitry V. Levin | 769ffe9 | 2014-12-06 03:53:16 +0000 | [diff] [blame] | 151 | } |