Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013-2015 Dmitry V. Levin <ldv@altlinux.org> |
| 3 | * All rights reserved. |
| 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 | |
Dmitry V. Levin | de462cf | 2013-05-07 18:38:01 +0400 | [diff] [blame] | 28 | #ifndef SYS_socket_subcall |
| 29 | # error SYS_socket_subcall is not defined |
| 30 | #endif |
Dmitry V. Levin | 7c524f4 | 2015-01-11 13:56:40 +0000 | [diff] [blame] | 31 | |
Dmitry V. Levin | 3b499ca | 2015-01-10 22:01:35 +0300 | [diff] [blame] | 32 | #define IS TRACE_INDIRECT_SUBCALL |
| 33 | |
Elvira Khabirova | 140ecf8 | 2015-07-10 22:24:48 +0300 | [diff] [blame] | 34 | [SYS_socket_subcall + 0] = { 6, 0, SEN(printargs), "socket_subcall" }, |
| 35 | [SYS_socket_subcall + 1] = { 3, IS|TN, SEN(socket), "socket" }, |
| 36 | [SYS_socket_subcall + 2] = { 3, IS|TN, SEN(bind), "bind" }, |
| 37 | [SYS_socket_subcall + 3] = { 3, IS|TN, SEN(connect), "connect" }, |
| 38 | [SYS_socket_subcall + 4] = { 2, IS|TN, SEN(listen), "listen" }, |
| 39 | [SYS_socket_subcall + 5] = { 3, IS|TN, SEN(accept), "accept" }, |
| 40 | [SYS_socket_subcall + 6] = { 3, IS|TN, SEN(getsockname), "getsockname" }, |
| 41 | [SYS_socket_subcall + 7] = { 3, IS|TN, SEN(getpeername), "getpeername" }, |
| 42 | [SYS_socket_subcall + 8] = { 4, IS|TN, SEN(socketpair), "socketpair" }, |
| 43 | [SYS_socket_subcall + 9] = { 4, IS|TN, SEN(send), "send" }, |
| 44 | [SYS_socket_subcall + 10] = { 4, IS|TN, SEN(recv), "recv" }, |
| 45 | [SYS_socket_subcall + 11] = { 6, IS|TN, SEN(sendto), "sendto" }, |
| 46 | [SYS_socket_subcall + 12] = { 6, IS|TN, SEN(recvfrom), "recvfrom" }, |
| 47 | [SYS_socket_subcall + 13] = { 2, IS|TN, SEN(shutdown), "shutdown" }, |
| 48 | [SYS_socket_subcall + 14] = { 5, IS|TN, SEN(setsockopt), "setsockopt" }, |
| 49 | [SYS_socket_subcall + 15] = { 5, IS|TN, SEN(getsockopt), "getsockopt" }, |
| 50 | [SYS_socket_subcall + 16] = { 3, IS|TN, SEN(sendmsg), "sendmsg" }, |
| 51 | [SYS_socket_subcall + 17] = { 3, IS|TN, SEN(recvmsg), "recvmsg" }, |
| 52 | [SYS_socket_subcall + 18] = { 4, IS|TN, SEN(accept4), "accept4" }, |
| 53 | [SYS_socket_subcall + 19] = { 5, IS|TN, SEN(recvmmsg), "recvmmsg" }, |
| 54 | [SYS_socket_subcall + 20] = { 4, IS|TN, SEN(sendmmsg), "sendmmsg" }, |
Dmitry V. Levin | 7c524f4 | 2015-01-11 13:56:40 +0000 | [diff] [blame] | 55 | |
Dmitry V. Levin | 4cd64fe | 2015-02-26 22:07:14 +0000 | [diff] [blame] | 56 | #define SYS_socket_nsubcalls 21 |
Dmitry V. Levin | 7c524f4 | 2015-01-11 13:56:40 +0000 | [diff] [blame] | 57 | #define SYS_ipc_subcall ((SYS_socket_subcall) + (SYS_socket_nsubcalls)) |
| 58 | |
Elvira Khabirova | 140ecf8 | 2015-07-10 22:24:48 +0300 | [diff] [blame] | 59 | [SYS_ipc_subcall + 0] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 60 | [SYS_ipc_subcall + 1] = { 4, IS|TI, SEN(semop), "semop" }, |
| 61 | [SYS_ipc_subcall + 2] = { 3, IS|TI, SEN(semget), "semget" }, |
| 62 | [SYS_ipc_subcall + 3] = { 4, IS|TI, SEN(semctl), "semctl" }, |
| 63 | [SYS_ipc_subcall + 4] = { 5, IS|TI, SEN(semtimedop), "semtimedop" }, |
| 64 | [SYS_ipc_subcall + 5] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 65 | [SYS_ipc_subcall + 6] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 66 | [SYS_ipc_subcall + 7] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 67 | [SYS_ipc_subcall + 8] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 68 | [SYS_ipc_subcall + 9] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 69 | [SYS_ipc_subcall + 10] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 70 | [SYS_ipc_subcall + 11] = { 4, IS|TI, SEN(msgsnd), "msgsnd" }, |
| 71 | [SYS_ipc_subcall + 12] = { 4, IS|TI, SEN(msgrcv), "msgrcv" }, |
| 72 | [SYS_ipc_subcall + 13] = { 2, IS|TI, SEN(msgget), "msgget" }, |
| 73 | [SYS_ipc_subcall + 14] = { 4, IS|TI, SEN(msgctl), "msgctl" }, |
| 74 | [SYS_ipc_subcall + 15] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 75 | [SYS_ipc_subcall + 16] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 76 | [SYS_ipc_subcall + 17] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 77 | [SYS_ipc_subcall + 18] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 78 | [SYS_ipc_subcall + 19] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 79 | [SYS_ipc_subcall + 20] = { 6, 0, SEN(printargs), "ipc_subcall" }, |
| 80 | [SYS_ipc_subcall + 21] = { 4, IS|TI|TM|SI, SEN(shmat), "shmat" }, |
| 81 | [SYS_ipc_subcall + 22] = { 4, IS|TI|TM|SI, SEN(shmdt), "shmdt" }, |
| 82 | [SYS_ipc_subcall + 23] = { 3, IS|TI, SEN(shmget), "shmget" }, |
| 83 | [SYS_ipc_subcall + 24] = { 4, IS|TI, SEN(shmctl), "shmctl" }, |
Dmitry V. Levin | 7c524f4 | 2015-01-11 13:56:40 +0000 | [diff] [blame] | 84 | |
Dmitry V. Levin | de462cf | 2013-05-07 18:38:01 +0400 | [diff] [blame] | 85 | #define SYS_ipc_nsubcalls 25 |
Dmitry V. Levin | 3b499ca | 2015-01-10 22:01:35 +0300 | [diff] [blame] | 86 | |
| 87 | #undef IS |