This file is indexed.

/usr/include/libr/sflib/common/sfsocketcall.h is in libradare2-dev 0.9.6-3.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
 * sfsocketcall.h -- linux socket implementation
 *                   see http://www.secdev.org/projects/shellforge.html
 *                   for more informations
 *
 * Copyright (C) 2003  Philippe Biondi <biondi@cartel-securite.fr>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 */

/* $Id$ */

#ifndef SFSOCKETCALL_H
#define SFSOCKETCALL_H

int socketcall(int call, unsigned long *args);

#define SYS_socket      1               /* sys_socket(2)                */
#define SYS_bind        2               /* sys_bind(2)                  */
#define SYS_connect     3               /* sys_connect(2)               */
#define SYS_listen      4               /* sys_listen(2)                */
#define SYS_accept      5               /* sys_accept(2)                */
#define SYS_getsockname 6               /* sys_getsockname(2)           */
#define SYS_getpeername 7               /* sys_getpeername(2)           */
#define SYS_socketpair  8               /* sys_socketpair(2)            */
#define SYS_send        9               /* sys_send(2)                  */
#define SYS_recv        10              /* sys_recv(2)                  */
#define SYS_sendto      11              /* sys_sendto(2)                */
#define SYS_recvfrom    12              /* sys_recvfrom(2)              */
#define SYS_shutdown    13              /* sys_shutdown(2)              */
#define SYS_setsockopt  14              /* sys_setsockopt(2)            */
#define SYS_getsockopt  15              /* sys_getsockopt(2)            */
#define SYS_sendmsg     16              /* sys_sendmsg(2)               */
#define SYS_recvmsg     17              /* sys_recvmsg(2)               */


#define __sys_socketcall0(type, name) \
type name(void) \
{ \
        return socketcall(SYS_##name, 0); \
}

#define __sys_socketcall1(type, name, type0, arg0) \
type name(type0 arg0) \
{ \
        unsigned long arr[1];                \
        arr[0] = (long)arg0;                 \
        return socketcall(SYS_##name, arr);  \
}

#define __sys_socketcall2(type, name, type0,arg0, type1,arg1) \
type name(type0 arg0, type1 arg1) \
{ \
        unsigned long arr[2];                \
        arr[0] = (long)arg0;                 \
        arr[1] = (long)arg1;                 \
        return socketcall(SYS_##name, arr);  \
}

#define __sys_socketcall3(type, name, type0,arg0, type1,arg1, type2,arg2) \
type name(type0 arg0, type1 arg1, type2 arg2) \
{ \
        unsigned long arr[3];                \
        arr[0] = (long)arg0;                 \
        arr[1] = (long)arg1;                 \
        arr[2] = (long)arg2;                 \
        return socketcall(SYS_##name, arr);  \
}

#define __sys_socketcall4(type, name, type0,arg0, type1,arg1, type2,arg2, type3,arg3) \
type name(type0 arg0, type1 arg1, type2 arg2, type3 arg3) \
{ \
        unsigned long arr[4];                \
        arr[0] = (long)arg0;                 \
        arr[1] = (long)arg1;                 \
        arr[2] = (long)arg2;                 \
        arr[3] = (long)arg3;                 \
        return socketcall(SYS_##name, arr);  \
}

#define __sys_socketcall5(type, name, type0,arg0, type1,arg1, type2,arg2, type3,arg3, type4,arg4) \
type name(type0 arg0, type1 arg1, type2 arg2, type3 arg3, type4 arg4) \
{ \
        unsigned long arr[5];                \
        arr[0] = (long)arg0;                 \
        arr[1] = (long)arg1;                 \
        arr[2] = (long)arg2;                 \
        arr[3] = (long)arg3;                 \
        arr[4] = (long)arg4;                 \
        return socketcall(SYS_##name, arr);  \
}

#define __sys_socketcall6(type, name, type0,arg0, type1,arg1, type2,arg2, type3,arg3, type4,arg4, type5,arg5) \
type name(type0 arg0, type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \
{ \
        unsigned long arr[6];                \
        arr[0] = (long)arg0;                 \
        arr[1] = (long)arg1;                 \
        arr[2] = (long)arg2;                 \
        arr[3] = (long)arg3;                 \
        arr[4] = (long)arg4;                 \
        arr[5] = (long)arg5;                 \
        return socketcall(SYS_##name, arr);  \
}

inline static __sys_socketcall3(int,socket, int,domain, int,type, int,protocol)
inline static __sys_socketcall3(int,bind, int,sockfd, struct sockaddr *,my_addr, socklen_t,addrlen)
inline static __sys_socketcall3(int,connect, int,sockfd, const struct sockaddr *,serv_addr, socklen_t,addrlen)
inline static __sys_socketcall2(int,listen, int,s, int,backlog)
inline static __sys_socketcall3(int,accept, int,s, struct sockaddr *,addr, socklen_t*,addrlen)

inline static __sys_socketcall4(int,send,  int,s, const void *,msg, size_t,len, int,flags)
inline static __sys_socketcall4(ssize_t,recv, int,s, void *,buf, size_t,len, int,flags)


inline static __sys_socketcall6(ssize_t,recvfrom, int,s, void *,buf, size_t,len, int,flags, struct sockaddr *,from, socklen_t *,fromlen)
inline static __sys_socketcall3(ssize_t,recvmsg, int,s, struct msghdr *,msg, int,flags)
inline static __sys_socketcall6(ssize_t,sendto, int,s,  const void *,buf, size_t,len, int,flags, const struct sockaddr *,to, socklen_t,tolen)
inline static __sys_socketcall3(ssize_t,sendmsg, int,s, const struct msghdr *,msg, int,flags)



#endif /* SFSOCKETCALL_H */