X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=io.c;h=eec496ad70d97e70e2fc0fb59751d0819cc7c4fa;hb=044eef21867521a9d0340015dc673f2f5909e804;hp=acc5bb5b4c93994283401ff54596d3a3da2adab9;hpb=d99e48c0f33f5230a743cd91a986edba176db2f8;p=strace diff --git a/io.c b/io.c index acc5bb5b..eec496ad 100644 --- a/io.c +++ b/io.c @@ -26,28 +26,13 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "defs.h" - #include -#if HAVE_SYS_UIO_H #include -#endif -#ifdef HAVE_LONG_LONG_OFF_T -/* - * Hacks for systems that have a long long off_t - */ - -#define sys_pread64 sys_pread -#define sys_pwrite64 sys_pwrite -#endif - -int -sys_read(struct tcb *tcp) +SYS_FUNC(read) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -62,8 +47,7 @@ sys_read(struct tcb *tcp) return 0; } -int -sys_write(struct tcb *tcp) +SYS_FUNC(write) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -74,24 +58,24 @@ sys_write(struct tcb *tcp) return 0; } -#if HAVE_SYS_UIO_H +/* + * data_size limits the cumulative size of printed data. + * Example: recvmsg returing a short read. + */ void -tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) +tprint_iov_upto(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov, unsigned long data_size) { -#if defined(LINUX) && SUPPORTED_PERSONALITIES > 1 +#if SUPPORTED_PERSONALITIES > 1 union { struct { u_int32_t base; u_int32_t len; } iov32; struct { u_int64_t base; u_int64_t len; } iov64; } iov; #define sizeof_iov \ - (personality_wordsize[current_personality] == 4 \ - ? sizeof(iov.iov32) : sizeof(iov.iov64)) + (current_wordsize == 4 ? sizeof(iov.iov32) : sizeof(iov.iov64)) #define iov_iov_base \ - (personality_wordsize[current_personality] == 4 \ - ? (u_int64_t) iov.iov32.base : iov.iov64.base) + (current_wordsize == 4 ? (uint64_t) iov.iov32.base : iov.iov64.base) #define iov_iov_len \ - (personality_wordsize[current_personality] == 4 \ - ? (u_int64_t) iov.iov32.len : iov.iov64.len) + (current_wordsize == 4 ? (uint64_t) iov.iov32.len : iov.iov64.len) #else struct iovec iov; #define sizeof_iov sizeof(iov) @@ -126,15 +110,19 @@ tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_io tprints("..."); break; } - if (umoven(tcp, cur, sizeof_iov, (char *) &iov) < 0) { + if (umoven(tcp, cur, sizeof_iov, &iov) < 0) { tprints("?"); failed = 1; break; } tprints("{"); - if (decode_iov) - printstr(tcp, (long) iov_iov_base, iov_iov_len); - else + if (decode_iov) { + unsigned long len = iov_iov_len; + if (len > data_size) + len = data_size; + data_size -= len; + printstr(tcp, (long) iov_iov_base, len); + } else tprintf("%#lx", (long) iov_iov_base); tprintf(", %lu}", (unsigned long)iov_iov_len); } @@ -146,8 +134,13 @@ tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_io #undef iov_iov_len } -int -sys_readv(struct tcb *tcp) +void +tprint_iov(struct tcb *tcp, unsigned long len, unsigned long addr, int decode_iov) +{ + tprint_iov_upto(tcp, len, addr, decode_iov, (unsigned long) -1L); +} + +SYS_FUNC(readv) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -164,8 +157,7 @@ sys_readv(struct tcb *tcp) return 0; } -int -sys_writev(struct tcb *tcp) +SYS_FUNC(writev) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -175,96 +167,6 @@ sys_writev(struct tcb *tcp) } return 0; } -#endif - -#if defined(SVR4) - -int -sys_pread(struct tcb *tcp) -{ - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - } else { - if (syserror(tcp)) - tprintf("%#lx", tcp->u_arg[1]); - else - printstr(tcp, tcp->u_arg[1], tcp->u_rval); -#if UNIXWARE - /* off_t is signed int */ - tprintf(", %lu, %ld", tcp->u_arg[2], tcp->u_arg[3]); -#else - tprintf(", %lu, %llu", tcp->u_arg[2], - LONG_LONG(tcp->u_arg[3], tcp->u_arg[4])); -#endif - } - return 0; -} - -int -sys_pwrite(struct tcb *tcp) -{ - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); -#if UNIXWARE - /* off_t is signed int */ - tprintf(", %lu, %ld", tcp->u_arg[2], tcp->u_arg[3]); -#else - tprintf(", %lu, %llu", tcp->u_arg[2], - LONG_LONG(tcp->u_arg[3], tcp->u_arg[4])); -#endif - } - return 0; -} -#endif /* SVR4 */ - -#ifdef FREEBSD -#include -#include - -int -sys_sendfile(struct tcb *tcp) -{ - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - printfd(tcp, tcp->u_arg[1]); - tprintf(", %llu, %lu", - LONG_LONG(tcp->u_arg[2], tcp->u_arg[3]), - tcp->u_arg[4]); - } else { - off_t offset; - - if (!tcp->u_arg[5]) - tprints(", NULL"); - else { - struct sf_hdtr hdtr; - - if (umove(tcp, tcp->u_arg[5], &hdtr) < 0) - tprintf(", %#lx", tcp->u_arg[5]); - else { - tprints(", { "); - tprint_iov(tcp, hdtr.hdr_cnt, hdtr.headers, 1); - tprintf(", %u, ", hdtr.hdr_cnt); - tprint_iov(tcp, hdtr.trl_cnt, hdtr.trailers, 1); - tprintf(", %u }", hdtr.hdr_cnt); - } - } - if (!tcp->u_arg[6]) - tprints(", NULL"); - else if (umove(tcp, tcp->u_arg[6], &offset) < 0) - tprintf(", %#lx", tcp->u_arg[6]); - else - tprintf(", [%llu]", offset); - tprintf(", %lu", tcp->u_arg[7]); - } - return 0; -} -#endif /* FREEBSD */ - -#ifdef LINUX /* The SH4 ABI does allow long longs in odd-numbered registers, but does not allow them to be split between registers and memory - and @@ -277,8 +179,7 @@ sys_sendfile(struct tcb *tcp) #define PREAD_OFFSET_ARG 3 #endif -int -sys_pread(struct tcb *tcp) +SYS_FUNC(pread) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -294,8 +195,7 @@ sys_pread(struct tcb *tcp) return 0; } -int -sys_pwrite(struct tcb *tcp) +SYS_FUNC(pwrite) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -307,9 +207,33 @@ sys_pwrite(struct tcb *tcp) return 0; } -#if HAVE_SYS_UIO_H -int -sys_preadv(struct tcb *tcp) +static void +print_llu_from_low_high_val(struct tcb *tcp, int arg) +{ +#if SIZEOF_LONG == SIZEOF_LONG_LONG +# if SUPPORTED_PERSONALITIES > 1 + if (current_wordsize == sizeof(long)) +# endif + tprintf("%lu", (unsigned long) tcp->u_arg[arg]); +# if SUPPORTED_PERSONALITIES > 1 + else + tprintf("%lu", + ((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8) + | (unsigned long) tcp->u_arg[arg]); +# endif +#else +# ifdef X32 + if (current_personality == 0) + tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]); + else +# endif + tprintf("%llu", + ((unsigned long long) (unsigned long) tcp->u_arg[arg + 1] << sizeof(long) * 8) + | (unsigned long long) (unsigned long) tcp->u_arg[arg]); +#endif +} + +SYS_FUNC(preadv) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -321,47 +245,63 @@ sys_preadv(struct tcb *tcp) } tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); tprintf(", %lu, ", tcp->u_arg[2]); - printllval(tcp, "%llu", PREAD_OFFSET_ARG); + print_llu_from_low_high_val(tcp, 3); } return 0; } -int -sys_pwritev(struct tcb *tcp) +SYS_FUNC(pwritev) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); tprints(", "); tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); tprintf(", %lu, ", tcp->u_arg[2]); - printllval(tcp, "%llu", PREAD_OFFSET_ARG); + print_llu_from_low_high_val(tcp, 3); } return 0; } -#endif /* HAVE_SYS_UIO_H */ -int -sys_sendfile(struct tcb *tcp) +static void +print_off_t(struct tcb *tcp, long addr) { - if (entering(tcp)) { - off_t offset; + unsigned long offset; + + if (!addr) { + tprints("NULL"); + return; + } + +#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 + if (current_wordsize == 4) { + uint32_t off; + + if (umove(tcp, addr, &off) < 0) + tprintf("%#lx", addr); + else + tprintf("[%u]", off); + } else +#endif + if (umove(tcp, addr, &offset) < 0) + tprintf("%#lx", addr); + else + tprintf("[%lu]", offset); +} +SYS_FUNC(sendfile) +{ + if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); tprints(", "); printfd(tcp, tcp->u_arg[1]); tprints(", "); - if (!tcp->u_arg[2]) - tprints("NULL"); - else if (umove(tcp, tcp->u_arg[2], &offset) < 0) - tprintf("%#lx", tcp->u_arg[2]); - else - tprintf("[%lu]", offset); + print_off_t(tcp, tcp->u_arg[2]); tprintf(", %lu", tcp->u_arg[3]); } return 0; } -static void +void print_loff_t(struct tcb *tcp, long addr) { loff_t offset; @@ -374,8 +314,7 @@ print_loff_t(struct tcb *tcp, long addr) tprintf("[%llu]", (unsigned long long int) offset); } -int -sys_sendfile64(struct tcb *tcp) +SYS_FUNC(sendfile64) { if (entering(tcp)) { printfd(tcp, tcp->u_arg[0]); @@ -388,24 +327,9 @@ sys_sendfile64(struct tcb *tcp) return 0; } -static const struct xlat splice_flags[] = { -#ifdef SPLICE_F_MOVE - { SPLICE_F_MOVE, "SPLICE_F_MOVE" }, -#endif -#ifdef SPLICE_F_NONBLOCK - { SPLICE_F_NONBLOCK, "SPLICE_F_NONBLOCK" }, -#endif -#ifdef SPLICE_F_MORE - { SPLICE_F_MORE, "SPLICE_F_MORE" }, -#endif -#ifdef SPLICE_F_GIFT - { SPLICE_F_GIFT, "SPLICE_F_GIFT" }, -#endif - { 0, NULL }, -}; +#include "xlat/splice_flags.h" -int -sys_tee(struct tcb *tcp) +SYS_FUNC(tee) { if (entering(tcp)) { /* int fd_in */ @@ -422,8 +346,7 @@ sys_tee(struct tcb *tcp) return 0; } -int -sys_splice(struct tcb *tcp) +SYS_FUNC(splice) { if (entering(tcp)) { /* int fd_in */ @@ -446,8 +369,7 @@ sys_splice(struct tcb *tcp) return 0; } -int -sys_vmsplice(struct tcb *tcp) +SYS_FUNC(vmsplice) { if (entering(tcp)) { /* int fd */ @@ -455,69 +377,9 @@ sys_vmsplice(struct tcb *tcp) tprints(", "); /* const struct iovec *iov, unsigned long nr_segs */ tprint_iov(tcp, tcp->u_arg[2], tcp->u_arg[1], 1); - tprints(", "); + tprintf(", %lu, ", tcp->u_arg[2]); /* unsigned int flags */ printflags(splice_flags, tcp->u_arg[3], "SPLICE_F_???"); } return 0; } -#endif /* LINUX */ - -#if _LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T -int -sys_pread64(struct tcb *tcp) -{ - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - } else { - if (syserror(tcp)) - tprintf("%#lx", tcp->u_arg[1]); - else - printstr(tcp, tcp->u_arg[1], tcp->u_rval); - tprintf(", %lu, ", tcp->u_arg[2]); - printllval(tcp, "%#llx", 3); - } - return 0; -} - -int -sys_pwrite64(struct tcb *tcp) -{ - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]); - tprintf(", %lu, ", tcp->u_arg[2]); - printllval(tcp, "%#llx", 3); - } - return 0; -} -#endif - -int -sys_ioctl(struct tcb *tcp) -{ - const struct ioctlent *iop; - - if (entering(tcp)) { - printfd(tcp, tcp->u_arg[0]); - tprints(", "); - iop = ioctl_lookup(tcp->u_arg[1]); - if (iop) { - tprints(iop->symbol); - while ((iop = ioctl_next_match(iop))) - tprintf(" or %s", iop->symbol); - } else - tprintf("%#lx", tcp->u_arg[1]); - ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]); - } - else { - int ret = ioctl_decode(tcp, tcp->u_arg[1], tcp->u_arg[2]); - if (!ret) - tprintf(", %#lx", tcp->u_arg[2]); - else - return ret - 1; - } - return 0; -}