pwntools 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 03accad444e614bc79ec41ce5e4340d32058a3e0
4
+ data.tar.gz: 827fd60a5aded02428f145da00345acaeb9d42b3
5
+ SHA512:
6
+ metadata.gz: f13058f95608bfd3444f2c99dde3d62b4d35d59a35ae3aed8b12a12fb016129fd8de2ed339feb0f6a9d36f798244e33970e91fbee94923b40da46bbe8150f082
7
+ data.tar.gz: 11ce79df711489bda139e77f9c02002a9e992c03be35dd06af760a2580a0fc3864462a1c292abf99a09a52a45fff1554f4001a65bc99154307821f6817740e88
@@ -0,0 +1,49 @@
1
+ [![GitHub stars](https://img.shields.io/github/stars/peter50216/pwntools-ruby.svg)](https://github.com/peter50216/pwntools-ruby/stargazers)
2
+ [![Dependency Status](https://img.shields.io/gemnasium/peter50216/pwntools-ruby.svg)](https://gemnasium.com/peter50216/pwntools-ruby)
3
+ [![Build Status](https://img.shields.io/travis/peter50216/pwntools-ruby.svg)](https://travis-ci.org/peter50216/pwntools-ruby)
4
+ [![Test Coverage](https://img.shields.io/codeclimate/coverage/github/peter50216/pwntools-ruby.svg)](https://codeclimate.com/github/peter50216/pwntools-ruby/coverage)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/peter50216/pwntools-ruby.svg)](https://codeclimate.com/github/peter50216/pwntools-ruby)
6
+ [![Inline docs](https://inch-ci.org/github/peter50216/pwntools-ruby.svg)](https://inch-ci.org/github/peter50216/pwntools-ruby)
7
+ [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)
8
+
9
+ # pwntools-ruby
10
+
11
+ Always sad when playing CTF that there's nothing equivalent to pwntools in Python.
12
+ While pwntools is awesome, I always love Ruby far more than Python...
13
+ So this is an attempt to create such library.
14
+
15
+ There's almost NOTHING here now.
16
+ (Edit: there's something here now, but not much :wink:)
17
+ Going to implement important things (socket, tubes, asm/disasm, pack/unpack utilities) first.
18
+ Would try to have consistent naming with original pwntools, and do things in Ruby style.
19
+
20
+ # Example Usage
21
+ ```ruby
22
+ # encoding: ASCII-8BIT
23
+ # The encoding line is important most time, or you'll get "\u0000" when using "\x00" in code,
24
+ # which is NOT what we want when doing pwn...
25
+
26
+ require 'pwn'
27
+
28
+ p pack(0x41424344) # 'DCBA'
29
+ context.endian = 'big'
30
+ p pack(0x41424344) # 'ABCD'
31
+
32
+ context.local(bits: 16) do
33
+ p pack(0x4142) # 'AB'
34
+ end
35
+ ```
36
+
37
+ # Development
38
+ ```sh
39
+ git clone git@github.com:peter50216/pwntools-ruby.git
40
+ cd pwntools-ruby
41
+ rake
42
+ ```
43
+
44
+ # Note to irb users
45
+ irb defines `main.context`.
46
+
47
+ For the ease of exploit development in irb, that method would be removed if you use `require 'pwn'`.
48
+
49
+ You can still get the `IRB::Context` by `irb_context`.
@@ -0,0 +1,40 @@
1
+ require 'fileutils'
2
+ require 'pathname'
3
+
4
+ require 'bundler/gem_tasks'
5
+ require 'rainbow'
6
+ require 'rake/testtask'
7
+ require 'rubocop/rake_task'
8
+
9
+ RuboCop::RakeTask.new(:rubocop) do |task|
10
+ task.patterns = ['lib/**/*.rb', 'test/**/*.rb']
11
+ task.formatters = ['files']
12
+ end
13
+
14
+ task default: %i(install_git_hooks rubocop test)
15
+
16
+ Rake::TestTask.new(:test) do |test|
17
+ test.libs << 'lib'
18
+ test.libs << 'test'
19
+ test.pattern = 'test/**/*_test.rb'
20
+ test.verbose = true
21
+ end
22
+
23
+ task :install_git_hooks do
24
+ hooks = %w(pre-push)
25
+ git_hook_dir = Pathname.new('.git/hooks/')
26
+ hook_dir = Pathname.new('git-hooks/')
27
+ hooks.each do |hook|
28
+ src = hook_dir + hook
29
+ target = git_hook_dir + hook
30
+ next if target.symlink? && (target.dirname + target.readlink).realpath == src.realpath
31
+ puts "Installing git hook #{hook}..."
32
+ target.unlink if target.exist? || target.symlink?
33
+ target.make_symlink(src.relative_path_from(target.dirname))
34
+ end
35
+ git_version = `git version`[/\Agit version (.*)\Z/, 1]
36
+ if Gem::Version.new(git_version) < Gem::Version.new('1.8.2')
37
+ puts Rainbow("Your git is older than 1.8.2, and doesn't support pre-push hook...").bright.red
38
+ puts Rainbow('Please make sure test passed before pushing!!!!!!').bright.red
39
+ end
40
+ end
@@ -0,0 +1,24 @@
1
+ # encoding: ASCII-8BIT
2
+
3
+ # require this file for easy exploit development, but would pollute main Object
4
+ # and some built-in objects (String, Integer, ...)
5
+
6
+ require 'pwnlib/pwn'
7
+
8
+ require 'pwnlib/ext/string'
9
+ require 'pwnlib/ext/integer'
10
+ require 'pwnlib/ext/array'
11
+
12
+ extend Pwn
13
+
14
+ include Pwnlib
15
+
16
+ # Small "fix" for irb context problem.
17
+ # irb defines main.context for IRB::Context, which overrides our
18
+ # Pwnlib::Context :(
19
+ # Since our "context" should be more important for someone requiring 'pwn',
20
+ # and the IRB::Context can still be accessible from irb_context, we should be
21
+ # fine removing context.
22
+ class << self
23
+ remove_method(:context) if method_defined?(:context)
24
+ end
@@ -0,0 +1,45 @@
1
+ # encoding: ASCII-8BIT
2
+
3
+ require 'pwnlib/util/fiddling'
4
+
5
+ module Pwnlib
6
+ module Constants
7
+ # A class that includes name and value
8
+ class Constant < Numeric
9
+ attr_reader :str, :val
10
+ def initialize(str, val)
11
+ @str = str
12
+ @val = val
13
+ end
14
+
15
+ # We don't need to fall back to super for this, so just disable the lint.
16
+ def method_missing(method, *args, &block) # rubocop:disable Style/MethodMissing
17
+ @val.__send__(method, *args, &block)
18
+ end
19
+
20
+ def respond_to_missing?(method, include_all)
21
+ @val.respond_to?(method, include_all)
22
+ end
23
+
24
+ def coerce(other)
25
+ [other.to_i, to_i]
26
+ end
27
+
28
+ def to_i
29
+ @val
30
+ end
31
+
32
+ def to_s
33
+ @str
34
+ end
35
+
36
+ def inspect
37
+ format('Constant(%p, %s)', @str, ::Pwnlib::Util::Fiddling.hex(@val))
38
+ end
39
+
40
+ def <=>(other)
41
+ to_i <=> other.to_i
42
+ end
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,82 @@
1
+ # encoding: ASCII-8BIT
2
+
3
+ require 'pwnlib/context'
4
+ require 'pwnlib/constants/constant'
5
+
6
+ module Pwnlib
7
+ # Module containing constants
8
+ # @example
9
+ # context.arch = 'amd64'
10
+ # Pwnlib::Constants.SYS_read
11
+ # # => Constant('SYS_read', 0x0)
12
+ module Constants
13
+ # @note Do not create and call instance method here. Instead, call module method on {Constants}.
14
+ module ClassMethods
15
+ include ::Pwnlib::Context
16
+ ENV_STORE = {} # rubocop:disable Style/MutableConstant
17
+ # Try getting constants when method missing
18
+ def method_missing(method, *args, &block)
19
+ args.empty? && block.nil? && get_constant(method) || super
20
+ end
21
+
22
+ def respond_to_missing?(method, _include_all)
23
+ !get_constant(method).nil?
24
+ end
25
+
26
+ # Eval for Constants
27
+ #
28
+ # @param [String] str
29
+ # The string to be evaluate.
30
+ #
31
+ # @return [Constant]
32
+ # The evaluate result.
33
+ #
34
+ # @example
35
+ # eval('O_CREAT')
36
+ # => Constant('(O_CREAT)', 0x40)
37
+ #
38
+ # @todo(david942j): Support eval('O_CREAT | O_APPEND') (i.e. safeeval)
39
+ def eval(str)
40
+ return str unless str.instance_of?(String)
41
+ const = get_constant(str.strip.to_sym)
42
+ ::Pwnlib::Constants::Constant.new("(#{str})", const.val)
43
+ end
44
+
45
+ private
46
+
47
+ def current_arch_key
48
+ [context.os, context.arch]
49
+ end
50
+
51
+ def current_store
52
+ ENV_STORE[current_arch_key] ||= load_constants(current_arch_key)
53
+ end
54
+
55
+ def get_constant(symbol)
56
+ current_store[symbol]
57
+ end
58
+
59
+ # Small class for instance_eval loaded file
60
+ class ConstantBuilder
61
+ attr_reader :tbl
62
+ def initialize
63
+ @tbl = {}
64
+ end
65
+
66
+ def const(sym, val)
67
+ @tbl[sym.to_sym] = Constant.new(sym.to_s, val)
68
+ end
69
+ end
70
+
71
+ def load_constants((os, arch))
72
+ filename = File.join(__dir__, os, "#{arch}.rb")
73
+ return {} unless File.exist?(filename)
74
+ builder = ConstantBuilder.new
75
+ builder.instance_eval(IO.read(filename))
76
+ builder.tbl
77
+ end
78
+ end
79
+
80
+ extend ClassMethods
81
+ end
82
+ end
@@ -0,0 +1,1558 @@
1
+ const :__NR_read, 0
2
+ const :__NR_write, 1
3
+ const :__NR_open, 2
4
+ const :__NR_close, 3
5
+ const :__NR_stat, 4
6
+ const :__NR_fstat, 5
7
+ const :__NR_lstat, 6
8
+ const :__NR_poll, 7
9
+ const :__NR_lseek, 8
10
+ const :__NR_mmap, 9
11
+ const :__NR_mprotect, 10
12
+ const :__NR_munmap, 11
13
+ const :__NR_brk, 12
14
+ const :__NR_rt_sigaction, 13
15
+ const :__NR_rt_sigprocmask, 14
16
+ const :__NR_rt_sigreturn, 15
17
+ const :__NR_ioctl, 16
18
+ const :__NR_pread, 17
19
+ const :__NR_pwrite, 18
20
+ const :__NR_readv, 19
21
+ const :__NR_writev, 20
22
+ const :__NR_access, 21
23
+ const :__NR_pipe, 22
24
+ const :__NR_select, 23
25
+ const :__NR_sched_yield, 24
26
+ const :__NR_mremap, 25
27
+ const :__NR_msync, 26
28
+ const :__NR_mincore, 27
29
+ const :__NR_madvise, 28
30
+ const :__NR_shmget, 29
31
+ const :__NR_shmat, 30
32
+ const :__NR_shmctl, 31
33
+ const :__NR_dup, 32
34
+ const :__NR_dup2, 33
35
+ const :__NR_pause, 34
36
+ const :__NR_nanosleep, 35
37
+ const :__NR_getitimer, 36
38
+ const :__NR_alarm, 37
39
+ const :__NR_setitimer, 38
40
+ const :__NR_getpid, 39
41
+ const :__NR_sendfile, 40
42
+ const :__NR_socket, 41
43
+ const :__NR_connect, 42
44
+ const :__NR_accept, 43
45
+ const :__NR_sendto, 44
46
+ const :__NR_recvfrom, 45
47
+ const :__NR_sendmsg, 46
48
+ const :__NR_recvmsg, 47
49
+ const :__NR_shutdown, 48
50
+ const :__NR_bind, 49
51
+ const :__NR_listen, 50
52
+ const :__NR_getsockname, 51
53
+ const :__NR_getpeername, 52
54
+ const :__NR_socketpair, 53
55
+ const :__NR_setsockopt, 54
56
+ const :__NR_getsockopt, 55
57
+ const :__NR_clone, 56
58
+ const :__NR_fork, 57
59
+ const :__NR_vfork, 58
60
+ const :__NR_execve, 59
61
+ const :__NR_exit, 60
62
+ const :__NR_wait4, 61
63
+ const :__NR_kill, 62
64
+ const :__NR_uname, 63
65
+ const :__NR_semget, 64
66
+ const :__NR_semop, 65
67
+ const :__NR_semctl, 66
68
+ const :__NR_shmdt, 67
69
+ const :__NR_msgget, 68
70
+ const :__NR_msgsnd, 69
71
+ const :__NR_msgrcv, 70
72
+ const :__NR_msgctl, 71
73
+ const :__NR_fcntl, 72
74
+ const :__NR_flock, 73
75
+ const :__NR_fsync, 74
76
+ const :__NR_fdatasync, 75
77
+ const :__NR_truncate, 76
78
+ const :__NR_ftruncate, 77
79
+ const :__NR_getdents, 78
80
+ const :__NR_getcwd, 79
81
+ const :__NR_chdir, 80
82
+ const :__NR_fchdir, 81
83
+ const :__NR_rename, 82
84
+ const :__NR_mkdir, 83
85
+ const :__NR_rmdir, 84
86
+ const :__NR_creat, 85
87
+ const :__NR_link, 86
88
+ const :__NR_unlink, 87
89
+ const :__NR_symlink, 88
90
+ const :__NR_readlink, 89
91
+ const :__NR_chmod, 90
92
+ const :__NR_fchmod, 91
93
+ const :__NR_chown, 92
94
+ const :__NR_fchown, 93
95
+ const :__NR_lchown, 94
96
+ const :__NR_umask, 95
97
+ const :__NR_gettimeofday, 96
98
+ const :__NR_getrlimit, 97
99
+ const :__NR_getrusage, 98
100
+ const :__NR_sysinfo, 99
101
+ const :__NR_times, 100
102
+ const :__NR_ptrace, 101
103
+ const :__NR_getuid, 102
104
+ const :__NR_syslog, 103
105
+ const :__NR_getgid, 104
106
+ const :__NR_setuid, 105
107
+ const :__NR_setgid, 106
108
+ const :__NR_geteuid, 107
109
+ const :__NR_getegid, 108
110
+ const :__NR_setpgid, 109
111
+ const :__NR_getppid, 110
112
+ const :__NR_getpgrp, 111
113
+ const :__NR_setsid, 112
114
+ const :__NR_setreuid, 113
115
+ const :__NR_setregid, 114
116
+ const :__NR_getgroups, 115
117
+ const :__NR_setgroups, 116
118
+ const :__NR_setresuid, 117
119
+ const :__NR_getresuid, 118
120
+ const :__NR_setresgid, 119
121
+ const :__NR_getresgid, 120
122
+ const :__NR_getpgid, 121
123
+ const :__NR_setfsuid, 122
124
+ const :__NR_setfsgid, 123
125
+ const :__NR_getsid, 124
126
+ const :__NR_capget, 125
127
+ const :__NR_capset, 126
128
+ const :__NR_rt_sigpending, 127
129
+ const :__NR_rt_sigtimedwait, 128
130
+ const :__NR_rt_sigqueueinfo, 129
131
+ const :__NR_rt_sigsuspend, 130
132
+ const :__NR_sigaltstack, 131
133
+ const :__NR_utime, 132
134
+ const :__NR_mknod, 133
135
+ const :__NR_uselib, 134
136
+ const :__NR_personality, 135
137
+ const :__NR_ustat, 136
138
+ const :__NR_statfs, 137
139
+ const :__NR_fstatfs, 138
140
+ const :__NR_sysfs, 139
141
+ const :__NR_getpriority, 140
142
+ const :__NR_setpriority, 141
143
+ const :__NR_sched_setparam, 142
144
+ const :__NR_sched_getparam, 143
145
+ const :__NR_sched_setscheduler, 144
146
+ const :__NR_sched_getscheduler, 145
147
+ const :__NR_sched_get_priority_max, 146
148
+ const :__NR_sched_get_priority_min, 147
149
+ const :__NR_sched_rr_get_interval, 148
150
+ const :__NR_mlock, 149
151
+ const :__NR_munlock, 150
152
+ const :__NR_mlockall, 151
153
+ const :__NR_munlockall, 152
154
+ const :__NR_vhangup, 153
155
+ const :__NR_modify_ldt, 154
156
+ const :__NR_pivot_root, 155
157
+ const :__NR__sysctl, 156
158
+ const :__NR_prctl, 157
159
+ const :__NR_arch_prctl, 158
160
+ const :__NR_adjtimex, 159
161
+ const :__NR_setrlimit, 160
162
+ const :__NR_chroot, 161
163
+ const :__NR_sync, 162
164
+ const :__NR_acct, 163
165
+ const :__NR_settimeofday, 164
166
+ const :__NR_mount, 165
167
+ const :__NR_umount2, 166
168
+ const :__NR_swapon, 167
169
+ const :__NR_swapoff, 168
170
+ const :__NR_reboot, 169
171
+ const :__NR_sethostname, 170
172
+ const :__NR_setdomainname, 171
173
+ const :__NR_iopl, 172
174
+ const :__NR_ioperm, 173
175
+ const :__NR_create_module, 174
176
+ const :__NR_init_module, 175
177
+ const :__NR_delete_module, 176
178
+ const :__NR_get_kernel_syms, 177
179
+ const :__NR_query_module, 178
180
+ const :__NR_quotactl, 179
181
+ const :__NR_nfsservctl, 180
182
+ const :__NR_getpmsg, 181
183
+ const :__NR_putpmsg, 182
184
+ const :__NR_afs_syscall, 183
185
+ const :__NR_tuxcall, 184
186
+ const :__NR_security, 185
187
+ const :__NR_gettid, 186
188
+ const :__NR_readahead, 187
189
+ const :__NR_setxattr, 188
190
+ const :__NR_lsetxattr, 189
191
+ const :__NR_fsetxattr, 190
192
+ const :__NR_getxattr, 191
193
+ const :__NR_lgetxattr, 192
194
+ const :__NR_fgetxattr, 193
195
+ const :__NR_listxattr, 194
196
+ const :__NR_llistxattr, 195
197
+ const :__NR_flistxattr, 196
198
+ const :__NR_removexattr, 197
199
+ const :__NR_lremovexattr, 198
200
+ const :__NR_fremovexattr, 199
201
+ const :__NR_tkill, 200
202
+ const :__NR_time, 201
203
+ const :__NR_futex, 202
204
+ const :__NR_sched_setaffinity, 203
205
+ const :__NR_sched_getaffinity, 204
206
+ const :__NR_set_thread_area, 205
207
+ const :__NR_io_setup, 206
208
+ const :__NR_io_destroy, 207
209
+ const :__NR_io_getevents, 208
210
+ const :__NR_io_submit, 209
211
+ const :__NR_io_cancel, 210
212
+ const :__NR_get_thread_area, 211
213
+ const :__NR_lookup_dcookie, 212
214
+ const :__NR_epoll_create, 213
215
+ const :__NR_epoll_ctl_old, 214
216
+ const :__NR_epoll_wait_old, 215
217
+ const :__NR_remap_file_pages, 216
218
+ const :__NR_getdents64, 217
219
+ const :__NR_set_tid_address, 218
220
+ const :__NR_restart_syscall, 219
221
+ const :__NR_semtimedop, 220
222
+ const :__NR_fadvise64, 221
223
+ const :__NR_timer_create, 222
224
+ const :__NR_timer_settime, 223
225
+ const :__NR_timer_gettime, 224
226
+ const :__NR_timer_getoverrun, 225
227
+ const :__NR_timer_delete, 226
228
+ const :__NR_clock_settime, 227
229
+ const :__NR_clock_gettime, 228
230
+ const :__NR_clock_getres, 229
231
+ const :__NR_clock_nanosleep, 230
232
+ const :__NR_exit_group, 231
233
+ const :__NR_epoll_wait, 232
234
+ const :__NR_epoll_ctl, 233
235
+ const :__NR_tgkill, 234
236
+ const :__NR_utimes, 235
237
+ const :__NR_vserver, 236
238
+ const :__NR_vserver, 236
239
+ const :__NR_mbind, 237
240
+ const :__NR_set_mempolicy, 238
241
+ const :__NR_get_mempolicy, 239
242
+ const :__NR_mq_open, 240
243
+ const :__NR_mq_unlink, 241
244
+ const :__NR_mq_timedsend, 242
245
+ const :__NR_mq_timedreceive, 243
246
+ const :__NR_mq_notify, 244
247
+ const :__NR_mq_getsetattr, 245
248
+ const :__NR_kexec_load, 246
249
+ const :__NR_waitid, 247
250
+ const :__NR_add_key, 248
251
+ const :__NR_request_key, 249
252
+ const :__NR_keyctl, 250
253
+ const :__NR_ioprio_set, 251
254
+ const :__NR_ioprio_get, 252
255
+ const :__NR_inotify_init, 253
256
+ const :__NR_inotify_add_watch, 254
257
+ const :__NR_inotify_rm_watch, 255
258
+ const :__NR_migrate_pages, 256
259
+ const :__NR_openat, 257
260
+ const :__NR_mkdirat, 258
261
+ const :__NR_mknodat, 259
262
+ const :__NR_fchownat, 260
263
+ const :__NR_futimesat, 261
264
+ const :__NR_newfstatat, 262
265
+ const :__NR_unlinkat, 263
266
+ const :__NR_renameat, 264
267
+ const :__NR_linkat, 265
268
+ const :__NR_symlinkat, 266
269
+ const :__NR_readlinkat, 267
270
+ const :__NR_fchmodat, 268
271
+ const :__NR_faccessat, 269
272
+ const :__NR_pselect6, 270
273
+ const :__NR_ppoll, 271
274
+ const :__NR_unshare, 272
275
+ const :__NR_set_robust_list, 273
276
+ const :__NR_get_robust_list, 274
277
+ const :__NR_splice, 275
278
+ const :__NR_tee, 276
279
+ const :__NR_sync_file_range, 277
280
+ const :__NR_vmsplice, 278
281
+ const :__NR_move_pages, 279
282
+ const :__NR_utimensat, 280
283
+ const :__NR_epoll_pwait, 281
284
+ const :__NR_signalfd, 282
285
+ const :__NR_timerfd, 283
286
+ const :__NR_eventfd, 284
287
+ const :__NR_fallocate, 285
288
+ const :__NR_timerfd_settime, 286
289
+ const :__NR_timerfd_gettime, 287
290
+ const :__NR_accept4, 288
291
+ const :__NR_signalfd4, 289
292
+ const :__NR_eventfd2, 290
293
+ const :__NR_epoll_create1, 291
294
+ const :__NR_dup3, 292
295
+ const :__NR_pipe2, 293
296
+ const :__NR_inotify_init1, 294
297
+ const :__NR_preadv, 295
298
+ const :__NR_pwritev, 296
299
+ const :__NR_rt_tgsigqueueinfo, 297
300
+ const :__NR_perf_event_open, 298
301
+ const :__NR_recvmmsg, 299
302
+ const :__NR_fanotify_init, 300
303
+ const :__NR_fanotify_mark, 301
304
+ const :__NR_prlimit64, 302
305
+ const :SYS32_restart_syscall, 0
306
+ const :SYS32_exit, 1
307
+ const :SYS32_fork, 2
308
+ const :SYS32_read, 3
309
+ const :SYS32_write, 4
310
+ const :SYS32_open, 5
311
+ const :SYS32_close, 6
312
+ const :SYS32_waitpid, 7
313
+ const :SYS32_creat, 8
314
+ const :SYS32_link, 9
315
+ const :SYS32_unlink, 10
316
+ const :SYS32_execve, 11
317
+ const :SYS32_chdir, 12
318
+ const :SYS32_time, 13
319
+ const :SYS32_mknod, 14
320
+ const :SYS32_chmod, 15
321
+ const :SYS32_lchown, 16
322
+ const :SYS32_break, 17
323
+ const :SYS32_oldstat, 18
324
+ const :SYS32_lseek, 19
325
+ const :SYS32_getpid, 20
326
+ const :SYS32_mount, 21
327
+ const :SYS32_umount, 22
328
+ const :SYS32_setuid, 23
329
+ const :SYS32_getuid, 24
330
+ const :SYS32_stime, 25
331
+ const :SYS32_ptrace, 26
332
+ const :SYS32_alarm, 27
333
+ const :SYS32_oldfstat, 28
334
+ const :SYS32_pause, 29
335
+ const :SYS32_utime, 30
336
+ const :SYS32_stty, 31
337
+ const :SYS32_gtty, 32
338
+ const :SYS32_access, 33
339
+ const :SYS32_nice, 34
340
+ const :SYS32_ftime, 35
341
+ const :SYS32_sync, 36
342
+ const :SYS32_kill, 37
343
+ const :SYS32_rename, 38
344
+ const :SYS32_mkdir, 39
345
+ const :SYS32_rmdir, 40
346
+ const :SYS32_dup, 41
347
+ const :SYS32_pipe, 42
348
+ const :SYS32_times, 43
349
+ const :SYS32_prof, 44
350
+ const :SYS32_brk, 45
351
+ const :SYS32_setgid, 46
352
+ const :SYS32_getgid, 47
353
+ const :SYS32_signal, 48
354
+ const :SYS32_geteuid, 49
355
+ const :SYS32_getegid, 50
356
+ const :SYS32_acct, 51
357
+ const :SYS32_umount2, 52
358
+ const :SYS32_lock, 53
359
+ const :SYS32_ioctl, 54
360
+ const :SYS32_fcntl, 55
361
+ const :SYS32_mpx, 56
362
+ const :SYS32_setpgid, 57
363
+ const :SYS32_ulimit, 58
364
+ const :SYS32_oldolduname, 59
365
+ const :SYS32_umask, 60
366
+ const :SYS32_chroot, 61
367
+ const :SYS32_ustat, 62
368
+ const :SYS32_dup2, 63
369
+ const :SYS32_getppid, 64
370
+ const :SYS32_getpgrp, 65
371
+ const :SYS32_setsid, 66
372
+ const :SYS32_sigaction, 67
373
+ const :SYS32_sgetmask, 68
374
+ const :SYS32_ssetmask, 69
375
+ const :SYS32_setreuid, 70
376
+ const :SYS32_setregid, 71
377
+ const :SYS32_sigsuspend, 72
378
+ const :SYS32_sigpending, 73
379
+ const :SYS32_sethostname, 74
380
+ const :SYS32_setrlimit, 75
381
+ const :SYS32_getrlimit, 76
382
+ const :SYS32_getrusage, 77
383
+ const :SYS32_gettimeofday, 78
384
+ const :SYS32_settimeofday, 79
385
+ const :SYS32_getgroups, 80
386
+ const :SYS32_setgroups, 81
387
+ const :SYS32_select, 82
388
+ const :SYS32_symlink, 83
389
+ const :SYS32_oldlstat, 84
390
+ const :SYS32_readlink, 85
391
+ const :SYS32_uselib, 86
392
+ const :SYS32_swapon, 87
393
+ const :SYS32_reboot, 88
394
+ const :SYS32_readdir, 89
395
+ const :SYS32_mmap, 90
396
+ const :SYS32_munmap, 91
397
+ const :SYS32_truncate, 92
398
+ const :SYS32_ftruncate, 93
399
+ const :SYS32_fchmod, 94
400
+ const :SYS32_fchown, 95
401
+ const :SYS32_getpriority, 96
402
+ const :SYS32_setpriority, 97
403
+ const :SYS32_profil, 98
404
+ const :SYS32_statfs, 99
405
+ const :SYS32_fstatfs, 100
406
+ const :SYS32_ioperm, 101
407
+ const :SYS32_socketcall, 102
408
+ const :SYS32_syslog, 103
409
+ const :SYS32_setitimer, 104
410
+ const :SYS32_getitimer, 105
411
+ const :SYS32_stat, 106
412
+ const :SYS32_lstat, 107
413
+ const :SYS32_fstat, 108
414
+ const :SYS32_olduname, 109
415
+ const :SYS32_iopl, 110
416
+ const :SYS32_vhangup, 111
417
+ const :SYS32_idle, 112
418
+ const :SYS32_vm86old, 113
419
+ const :SYS32_wait4, 114
420
+ const :SYS32_swapoff, 115
421
+ const :SYS32_sysinfo, 116
422
+ const :SYS32_ipc, 117
423
+ const :SYS32_fsync, 118
424
+ const :SYS32_sigreturn, 119
425
+ const :SYS32_clone, 120
426
+ const :SYS32_setdomainname, 121
427
+ const :SYS32_uname, 122
428
+ const :SYS32_modify_ldt, 123
429
+ const :SYS32_adjtimex, 124
430
+ const :SYS32_mprotect, 125
431
+ const :SYS32_sigprocmask, 126
432
+ const :SYS32_create_module, 127
433
+ const :SYS32_init_module, 128
434
+ const :SYS32_delete_module, 129
435
+ const :SYS32_get_kernel_syms, 130
436
+ const :SYS32_quotactl, 131
437
+ const :SYS32_getpgid, 132
438
+ const :SYS32_fchdir, 133
439
+ const :SYS32_bdflush, 134
440
+ const :SYS32_sysfs, 135
441
+ const :SYS32_personality, 136
442
+ const :SYS32_afs_syscall, 137
443
+ const :SYS32_setfsuid, 138
444
+ const :SYS32_setfsgid, 139
445
+ const :SYS32__llseek, 140
446
+ const :SYS32_getdents, 141
447
+ const :SYS32__newselect, 142
448
+ const :SYS32_flock, 143
449
+ const :SYS32_msync, 144
450
+ const :SYS32_readv, 145
451
+ const :SYS32_writev, 146
452
+ const :SYS32_getsid, 147
453
+ const :SYS32_fdatasync, 148
454
+ const :SYS32__sysctl, 149
455
+ const :SYS32_mlock, 150
456
+ const :SYS32_munlock, 151
457
+ const :SYS32_mlockall, 152
458
+ const :SYS32_munlockall, 153
459
+ const :SYS32_sched_setparam, 154
460
+ const :SYS32_sched_getparam, 155
461
+ const :SYS32_sched_setscheduler, 156
462
+ const :SYS32_sched_getscheduler, 157
463
+ const :SYS32_sched_yield, 158
464
+ const :SYS32_sched_get_priority_max, 159
465
+ const :SYS32_sched_get_priority_min, 160
466
+ const :SYS32_sched_rr_get_interval, 161
467
+ const :SYS32_nanosleep, 162
468
+ const :SYS32_mremap, 163
469
+ const :SYS32_setresuid, 164
470
+ const :SYS32_getresuid, 165
471
+ const :SYS32_vm86, 166
472
+ const :SYS32_query_module, 167
473
+ const :SYS32_poll, 168
474
+ const :SYS32_nfsservctl, 169
475
+ const :SYS32_setresgid, 170
476
+ const :SYS32_getresgid, 171
477
+ const :SYS32_prctl, 172
478
+ const :SYS32_rt_sigreturn, 173
479
+ const :SYS32_rt_sigaction, 174
480
+ const :SYS32_rt_sigprocmask, 175
481
+ const :SYS32_rt_sigpending, 176
482
+ const :SYS32_rt_sigtimedwait, 177
483
+ const :SYS32_rt_sigqueueinfo, 178
484
+ const :SYS32_rt_sigsuspend, 179
485
+ const :SYS32_pread64, 180
486
+ const :SYS32_pwrite64, 181
487
+ const :SYS32_chown, 182
488
+ const :SYS32_getcwd, 183
489
+ const :SYS32_capget, 184
490
+ const :SYS32_capset, 185
491
+ const :SYS32_sigaltstack, 186
492
+ const :SYS32_sendfile, 187
493
+ const :SYS32_getpmsg, 188
494
+ const :SYS32_putpmsg, 189
495
+ const :SYS32_vfork, 190
496
+ const :SYS32_ugetrlimit, 191
497
+ const :SYS32_mmap2, 192
498
+ const :SYS32_truncate64, 193
499
+ const :SYS32_ftruncate64, 194
500
+ const :SYS32_stat64, 195
501
+ const :SYS32_lstat64, 196
502
+ const :SYS32_fstat64, 197
503
+ const :SYS32_lchown32, 198
504
+ const :SYS32_getuid32, 199
505
+ const :SYS32_getgid32, 200
506
+ const :SYS32_geteuid32, 201
507
+ const :SYS32_getegid32, 202
508
+ const :SYS32_setreuid32, 203
509
+ const :SYS32_setregid32, 204
510
+ const :SYS32_getgroups32, 205
511
+ const :SYS32_setgroups32, 206
512
+ const :SYS32_fchown32, 207
513
+ const :SYS32_setresuid32, 208
514
+ const :SYS32_getresuid32, 209
515
+ const :SYS32_setresgid32, 210
516
+ const :SYS32_getresgid32, 211
517
+ const :SYS32_chown32, 212
518
+ const :SYS32_setuid32, 213
519
+ const :SYS32_setgid32, 214
520
+ const :SYS32_setfsuid32, 215
521
+ const :SYS32_setfsgid32, 216
522
+ const :SYS32_pivot_root, 217
523
+ const :SYS32_mincore, 218
524
+ const :SYS32_madvise, 219
525
+ const :SYS32_madvise1, 219
526
+ const :SYS32_getdents64, 220
527
+ const :SYS32_fcntl64, 221
528
+ const :SYS32_gettid, 224
529
+ const :SYS32_readahead, 225
530
+ const :SYS32_setxattr, 226
531
+ const :SYS32_lsetxattr, 227
532
+ const :SYS32_fsetxattr, 228
533
+ const :SYS32_getxattr, 229
534
+ const :SYS32_lgetxattr, 230
535
+ const :SYS32_fgetxattr, 231
536
+ const :SYS32_listxattr, 232
537
+ const :SYS32_llistxattr, 233
538
+ const :SYS32_flistxattr, 234
539
+ const :SYS32_removexattr, 235
540
+ const :SYS32_lremovexattr, 236
541
+ const :SYS32_fremovexattr, 237
542
+ const :SYS32_tkill, 238
543
+ const :SYS32_sendfile64, 239
544
+ const :SYS32_futex, 240
545
+ const :SYS32_sched_setaffinity, 241
546
+ const :SYS32_sched_getaffinity, 242
547
+ const :SYS32_set_thread_area, 243
548
+ const :SYS32_get_thread_area, 244
549
+ const :SYS32_io_setup, 245
550
+ const :SYS32_io_destroy, 246
551
+ const :SYS32_io_getevents, 247
552
+ const :SYS32_io_submit, 248
553
+ const :SYS32_io_cancel, 249
554
+ const :SYS32_fadvise64, 250
555
+ const :SYS32_exit_group, 252
556
+ const :SYS32_lookup_dcookie, 253
557
+ const :SYS32_epoll_create, 254
558
+ const :SYS32_epoll_ctl, 255
559
+ const :SYS32_epoll_wait, 256
560
+ const :SYS32_remap_file_pages, 257
561
+ const :SYS32_set_tid_address, 258
562
+ const :SYS32_timer_create, 259
563
+ const :SYS32_timer_settime, (222 + 1)
564
+ const :SYS32_timer_gettime, (222 + 2)
565
+ const :SYS32_timer_getoverrun, (222 + 3)
566
+ const :SYS32_timer_delete, (222 + 4)
567
+ const :SYS32_clock_settime, (222 + 5)
568
+ const :SYS32_clock_gettime, (222 + 6)
569
+ const :SYS32_clock_getres, (222 + 7)
570
+ const :SYS32_clock_nanosleep, (222 + 8)
571
+ const :SYS32_statfs64, 268
572
+ const :SYS32_fstatfs64, 269
573
+ const :SYS32_tgkill, 270
574
+ const :SYS32_utimes, 271
575
+ const :SYS32_fadvise64_64, 272
576
+ const :SYS32_vserver, 273
577
+ const :SYS32_mbind, 274
578
+ const :SYS32_get_mempolicy, 275
579
+ const :SYS32_set_mempolicy, 276
580
+ const :SYS32_mq_open, 277
581
+ const :SYS32_mq_unlink, (240 + 1)
582
+ const :SYS32_mq_timedsend, (240 + 2)
583
+ const :SYS32_mq_timedreceive, (240 + 3)
584
+ const :SYS32_mq_notify, (240 + 4)
585
+ const :SYS32_mq_getsetattr, (240 + 5)
586
+ const :SYS32_kexec_load, 283
587
+ const :SYS32_waitid, 284
588
+ const :SYS32_add_key, 286
589
+ const :SYS32_request_key, 287
590
+ const :SYS32_keyctl, 288
591
+ const :SYS32_ioprio_set, 289
592
+ const :SYS32_ioprio_get, 290
593
+ const :SYS32_inotify_init, 291
594
+ const :SYS32_inotify_add_watch, 292
595
+ const :SYS32_inotify_rm_watch, 293
596
+ const :SYS32_migrate_pages, 294
597
+ const :SYS32_openat, 295
598
+ const :SYS32_mkdirat, 296
599
+ const :SYS32_mknodat, 297
600
+ const :SYS32_fchownat, 298
601
+ const :SYS32_futimesat, 299
602
+ const :SYS32_fstatat64, 300
603
+ const :SYS32_unlinkat, 301
604
+ const :SYS32_renameat, 302
605
+ const :SYS32_linkat, 303
606
+ const :SYS32_symlinkat, 304
607
+ const :SYS32_readlinkat, 305
608
+ const :SYS32_fchmodat, 306
609
+ const :SYS32_faccessat, 307
610
+ const :SYS32_pselect6, 308
611
+ const :SYS32_ppoll, 309
612
+ const :SYS32_unshare, 310
613
+ const :SYS32_set_robust_list, 311
614
+ const :SYS32_get_robust_list, 312
615
+ const :SYS32_splice, 313
616
+ const :SYS32_sync_file_range, 314
617
+ const :SYS32_tee, 315
618
+ const :SYS32_vmsplice, 316
619
+ const :SYS32_move_pages, 317
620
+ const :SYS32_getcpu, 318
621
+ const :SYS32_epoll_pwait, 319
622
+ const :SYS32_utimensat, 320
623
+ const :SYS32_signalfd, 321
624
+ const :SYS32_timerfd_create, 322
625
+ const :SYS32_eventfd, 323
626
+ const :SYS32_fallocate, 324
627
+ const :SYS32_timerfd_settime, 325
628
+ const :SYS32_timerfd_gettime, 326
629
+ const :SYS32_signalfd4, 327
630
+ const :SYS32_eventfd2, 328
631
+ const :SYS32_epoll_create1, 329
632
+ const :SYS32_dup3, 330
633
+ const :SYS32_pipe2, 331
634
+ const :SYS32_inotify_init1, 332
635
+ const :SYS32_preadv, 333
636
+ const :SYS32_pwritev, 334
637
+ const :SYS32_rt_tgsigqueueinfo, 335
638
+ const :SYS32_perf_event_open, 336
639
+ const :SYS32_recvmmsg, 337
640
+ const :SYS32_fanotify_init, 338
641
+ const :SYS32_fanotify_mark, 339
642
+ const :SYS32_prlimit64, 340
643
+ const :SYS32_name_to_handle_at, 341
644
+ const :SYS32_open_by_handle_at, 342
645
+ const :SYS32_clock_adjtime, 343
646
+ const :SYS32_syncfs, 344
647
+ const :SYS32_sendmmsg, 345
648
+ const :SYS32_setns, 346
649
+ const :SYS32_process_vm_readv, 347
650
+ const :SYS32_process_vm_writev, 348
651
+ const :MAP_32BIT, 0x40
652
+ const :INADDR_ANY, 0
653
+ const :INADDR_BROADCAST, 0xffffffff
654
+ const :INADDR_NONE, 0xffffffff
655
+ const :INADDR_LOOPBACK, 0x7f000001
656
+ const :EPERM, 1
657
+ const :ENOENT, 2
658
+ const :ESRCH, 3
659
+ const :EINTR, 4
660
+ const :EIO, 5
661
+ const :ENXIO, 6
662
+ const :E2BIG, 7
663
+ const :ENOEXEC, 8
664
+ const :EBADF, 9
665
+ const :ECHILD, 10
666
+ const :EAGAIN, 11
667
+ const :ENOMEM, 12
668
+ const :EACCES, 13
669
+ const :EFAULT, 14
670
+ const :ENOTBLK, 15
671
+ const :EBUSY, 16
672
+ const :EEXIST, 17
673
+ const :EXDEV, 18
674
+ const :ENODEV, 19
675
+ const :ENOTDIR, 20
676
+ const :EISDIR, 21
677
+ const :EINVAL, 22
678
+ const :ENFILE, 23
679
+ const :EMFILE, 24
680
+ const :ENOTTY, 25
681
+ const :ETXTBSY, 26
682
+ const :EFBIG, 27
683
+ const :ENOSPC, 28
684
+ const :ESPIPE, 29
685
+ const :EROFS, 30
686
+ const :EMLINK, 31
687
+ const :EPIPE, 32
688
+ const :EDOM, 33
689
+ const :ERANGE, 34
690
+ const :EDEADLK, 35
691
+ const :ENAMETOOLONG, 36
692
+ const :ENOLCK, 37
693
+ const :ENOSYS, 38
694
+ const :ENOTEMPTY, 39
695
+ const :ELOOP, 40
696
+ const :EWOULDBLOCK, 11
697
+ const :ENOMSG, 42
698
+ const :EIDRM, 43
699
+ const :ECHRNG, 44
700
+ const :EL2NSYNC, 45
701
+ const :EL3HLT, 46
702
+ const :EL3RST, 47
703
+ const :ELNRNG, 48
704
+ const :EUNATCH, 49
705
+ const :ENOCSI, 50
706
+ const :EL2HLT, 51
707
+ const :EBADE, 52
708
+ const :EBADR, 53
709
+ const :EXFULL, 54
710
+ const :ENOANO, 55
711
+ const :EBADRQC, 56
712
+ const :EBADSLT, 57
713
+ const :EDEADLOCK, 35
714
+ const :EBFONT, 59
715
+ const :ENOSTR, 60
716
+ const :ENODATA, 61
717
+ const :ETIME, 62
718
+ const :ENOSR, 63
719
+ const :ENONET, 64
720
+ const :ENOPKG, 65
721
+ const :EREMOTE, 66
722
+ const :ENOLINK, 67
723
+ const :EADV, 68
724
+ const :ESRMNT, 69
725
+ const :ECOMM, 70
726
+ const :EPROTO, 71
727
+ const :EMULTIHOP, 72
728
+ const :EDOTDOT, 73
729
+ const :EBADMSG, 74
730
+ const :EOVERFLOW, 75
731
+ const :ENOTUNIQ, 76
732
+ const :EBADFD, 77
733
+ const :EREMCHG, 78
734
+ const :ELIBACC, 79
735
+ const :ELIBBAD, 80
736
+ const :ELIBSCN, 81
737
+ const :ELIBMAX, 82
738
+ const :ELIBEXEC, 83
739
+ const :EILSEQ, 84
740
+ const :ERESTART, 85
741
+ const :ESTRPIPE, 86
742
+ const :EUSERS, 87
743
+ const :ENOTSOCK, 88
744
+ const :EDESTADDRREQ, 89
745
+ const :EMSGSIZE, 90
746
+ const :EPROTOTYPE, 91
747
+ const :ENOPROTOOPT, 92
748
+ const :EPROTONOSUPPORT, 93
749
+ const :ESOCKTNOSUPPORT, 94
750
+ const :EOPNOTSUPP, 95
751
+ const :ENOTSUP, 95
752
+ const :EPFNOSUPPORT, 96
753
+ const :EAFNOSUPPORT, 97
754
+ const :EADDRINUSE, 98
755
+ const :EADDRNOTAVAIL, 99
756
+ const :ENETDOWN, 100
757
+ const :ENETUNREACH, 101
758
+ const :ENETRESET, 102
759
+ const :ECONNABORTED, 103
760
+ const :ECONNRESET, 104
761
+ const :ENOBUFS, 105
762
+ const :EISCONN, 106
763
+ const :ENOTCONN, 107
764
+ const :ESHUTDOWN, 108
765
+ const :ETOOMANYREFS, 109
766
+ const :ETIMEDOUT, 110
767
+ const :ECONNREFUSED, 111
768
+ const :EHOSTDOWN, 112
769
+ const :EHOSTUNREACH, 113
770
+ const :EALREADY, 114
771
+ const :EINPROGRESS, 115
772
+ const :ESTALE, 116
773
+ const :EUCLEAN, 117
774
+ const :ENOTNAM, 118
775
+ const :ENAVAIL, 119
776
+ const :EISNAM, 120
777
+ const :EREMOTEIO, 121
778
+ const :EDQUOT, 122
779
+ const :ENOMEDIUM, 123
780
+ const :EMEDIUMTYPE, 124
781
+ const :ECANCELED, 125
782
+ const :ENOKEY, 126
783
+ const :EKEYEXPIRED, 127
784
+ const :EKEYREVOKED, 128
785
+ const :EKEYREJECTED, 129
786
+ const :__SYS_NERR, (129 + 1)
787
+ const :__LITTLE_ENDIAN, 1234
788
+ const :__BIG_ENDIAN, 4321
789
+ const :__BYTE_ORDER, 1234
790
+ const :__FLOAT_WORD_ORDER, 1234
791
+ const :LITTLE_ENDIAN, 1234
792
+ const :BIG_ENDIAN, 4321
793
+ const :BYTE_ORDER, 1234
794
+ const :__WORDSIZE, 64
795
+ const :__WORDSIZE_COMPAT32, 1
796
+ const :__FSUID_H, 1
797
+ const :NSIG, 32
798
+ const :_NSIG, 64
799
+ const :SIGHUP, 1
800
+ const :SIGINT, 2
801
+ const :SIGQUIT, 3
802
+ const :SIGILL, 4
803
+ const :SIGTRAP, 5
804
+ const :SIGABRT, 6
805
+ const :SIGIOT, 6
806
+ const :SIGFPE, 8
807
+ const :SIGKILL, 9
808
+ const :SIGSEGV, 11
809
+ const :SIGPIPE, 13
810
+ const :SIGALRM, 14
811
+ const :SIGTERM, 15
812
+ const :SIGUNUSED, 31
813
+ const :SIGBUS, 7
814
+ const :SIGUSR1, 10
815
+ const :SIGUSR2, 12
816
+ const :SIGSTKFLT, 16
817
+ const :SIGCHLD, 17
818
+ const :SIGCONT, 18
819
+ const :SIGSTOP, 19
820
+ const :SIGTSTP, 20
821
+ const :SIGTTIN, 21
822
+ const :SIGTTOU, 22
823
+ const :SIGURG, 23
824
+ const :SIGXCPU, 24
825
+ const :SIGXFSZ, 25
826
+ const :SIGVTALRM, 26
827
+ const :SIGPROF, 27
828
+ const :SIGWINCH, 28
829
+ const :SIGIO, 29
830
+ const :SIGPWR, 30
831
+ const :SIGSYS, 31
832
+ const :SIGCLD, 17
833
+ const :SIGPOLL, 29
834
+ const :SIGLOST, 30
835
+ const :SIGRTMIN, 32
836
+ const :SIGRTMAX, (64 - 1)
837
+ const :SA_NOCLDSTOP, 0x00000001
838
+ const :SA_NOCLDWAIT, 0x00000002
839
+ const :SA_SIGINFO, 0x00000004
840
+ const :SA_RESTORER, 0x04000000
841
+ const :SA_ONSTACK, 0x08000000
842
+ const :SA_RESTART, 0x10000000
843
+ const :SA_INTERRUPT, 0x20000000
844
+ const :SA_NODEFER, 0x40000000
845
+ const :SA_RESETHAND, 0x80000000
846
+ const :SA_NOMASK, 0x40000000
847
+ const :SA_ONESHOT, 0x80000000
848
+ const :SS_ONSTACK, 1
849
+ const :SS_DISABLE, 2
850
+ const :MINSIGSTKSZ, 2048
851
+ const :SIGSTKSZ, 8192
852
+ const :SIG_BLOCK, 0
853
+ const :SIG_UNBLOCK, 1
854
+ const :SIG_SETMASK, 2
855
+ const :SI_MAX_SIZE, 128
856
+ const :SIGEV_SIGNAL, 0
857
+ const :SIGEV_NONE, 1
858
+ const :SIGEV_THREAD, 2
859
+ const :SIGEV_THREAD_ID, 4
860
+ const :SIGEV_MAX_SIZE, 64
861
+ const :_SYS_TIME_H, 1
862
+ const :ITIMER_REAL, 0
863
+ const :ITIMER_VIRTUAL, 1
864
+ const :ITIMER_PROF, 2
865
+ const :FD_SETSIZE, 1024
866
+ const :R_OK, 4
867
+ const :W_OK, 2
868
+ const :X_OK, 1
869
+ const :F_OK, 0
870
+ const :SEEK_SET, 0
871
+ const :SEEK_CUR, 1
872
+ const :SEEK_END, 2
873
+ const :STDIN_FILENO, 0
874
+ const :STDOUT_FILENO, 1
875
+ const :STDERR_FILENO, 2
876
+ const :_CS_PATH, 1
877
+ const :_SC_CLK_TCK, 1
878
+ const :_SC_ARG_MAX, 2
879
+ const :_SC_NGROUPS_MAX, 3
880
+ const :_SC_OPEN_MAX, 4
881
+ const :_SC_PAGESIZE, 5
882
+ const :_SC_NPROCESSORS_ONLN, 6
883
+ const :_SC_NPROCESSORS_CONF, 6
884
+ const :_SC_PHYS_PAGES, 7
885
+ const :_PC_PATH_MAX, 1
886
+ const :_PC_VDISABLE, 2
887
+ const :L_cuserid, 17
888
+ const :_POSIX_VERSION, 199_506
889
+ const :F_ULOCK, 0
890
+ const :F_LOCK, 1
891
+ const :F_TLOCK, 2
892
+ const :F_TEST, 3
893
+ const :S_IFMT, 0o0170000
894
+ const :S_IFSOCK, 0o140000
895
+ const :S_IFLNK, 0o120000
896
+ const :S_IFREG, 0o100000
897
+ const :S_IFBLK, 0o060000
898
+ const :S_IFDIR, 0o040000
899
+ const :S_IFCHR, 0o020000
900
+ const :S_IFIFO, 0o010000
901
+ const :S_ISUID, 0o004000
902
+ const :S_ISGID, 0o002000
903
+ const :S_ISVTX, 0o001000
904
+ const :S_IRWXU, 0o0700
905
+ const :S_IRUSR, 0o0400
906
+ const :S_IWUSR, 0o0200
907
+ const :S_IXUSR, 0o0100
908
+ const :S_IRWXG, 0o0070
909
+ const :S_IRGRP, 0o0040
910
+ const :S_IWGRP, 0o0020
911
+ const :S_IXGRP, 0o0010
912
+ const :S_IRWXO, 0o0007
913
+ const :S_IROTH, 0o0004
914
+ const :S_IWOTH, 0o0002
915
+ const :S_IXOTH, 0o0001
916
+ const :S_IREAD, 0o0400
917
+ const :S_IWRITE, 0o0200
918
+ const :S_IEXEC, 0o0100
919
+ const :F_LINUX_SPECIFIC_BASE, 1024
920
+ const :O_ACCMODE, 0o003
921
+ const :O_RDONLY, 0o0
922
+ const :O_WRONLY, 0o1
923
+ const :O_RDWR, 0o2
924
+ const :O_CREAT, 0o100
925
+ const :O_EXCL, 0o200
926
+ const :O_NOCTTY, 0o400
927
+ const :O_TRUNC, 0o1000
928
+ const :O_APPEND, 0o2000
929
+ const :O_NONBLOCK, 0o4000
930
+ const :O_NDELAY, 0o4000
931
+ const :O_SYNC, 0o10000
932
+ const :FASYNC, 0o20000
933
+ const :O_DIRECT, 0o40000
934
+ const :O_LARGEFILE, 0o100000
935
+ const :O_DIRECTORY, 0o200000
936
+ const :O_NOFOLLOW, 0o400000
937
+ const :O_NOATIME, 0o1000000
938
+ const :F_DUPFD, 0
939
+ const :F_GETFD, 1
940
+ const :F_SETFD, 2
941
+ const :F_GETFL, 3
942
+ const :F_SETFL, 4
943
+ const :F_GETLK, 5
944
+ const :F_SETLK, 6
945
+ const :F_SETLKW, 7
946
+ const :F_SETOWN, 8
947
+ const :F_GETOWN, 9
948
+ const :F_SETSIG, 10
949
+ const :F_GETSIG, 11
950
+ const :F_GETLK64, 12
951
+ const :F_SETLK64, 13
952
+ const :F_SETLKW64, 14
953
+ const :FD_CLOEXEC, 1
954
+ const :F_RDLCK, 0
955
+ const :F_WRLCK, 1
956
+ const :F_UNLCK, 2
957
+ const :F_EXLCK, 4
958
+ const :F_SHLCK, 8
959
+ const :F_INPROGRESS, 16
960
+ const :LOCK_SH, 1
961
+ const :LOCK_EX, 2
962
+ const :LOCK_NB, 4
963
+ const :LOCK_UN, 8
964
+ const :LOCK_MAND, 32
965
+ const :LOCK_READ, 64
966
+ const :LOCK_WRITE, 128
967
+ const :LOCK_RW, 192
968
+ const :O_ASYNC, 0o20000
969
+ const :MREMAP_MAYMOVE, 1
970
+ const :MREMAP_FIXED, 2
971
+ const :PROT_READ, 0x1
972
+ const :PROT_WRITE, 0x2
973
+ const :PROT_EXEC, 0x4
974
+ const :PROT_NONE, 0x0
975
+ const :MAP_SHARED, 0x01
976
+ const :MAP_PRIVATE, 0x02
977
+ const :MAP_FIXED, 0x10
978
+ const :MAP_ANONYMOUS, 0x20
979
+ const :MAP_GROWSDOWN, 0x0100
980
+ const :MAP_DENYWRITE, 0x0800
981
+ const :MAP_EXECUTABLE, 0x1000
982
+ const :MAP_LOCKED, 0x2000
983
+ const :MAP_NORESERVE, 0x4000
984
+ const :MAP_POPULATE, 0x8000
985
+ const :MS_ASYNC, 1
986
+ const :MS_INVALIDATE, 2
987
+ const :MS_SYNC, 4
988
+ const :MCL_CURRENT, 1
989
+ const :MCL_FUTURE, 2
990
+ const :MADV_NORMAL, 0x0
991
+ const :MADV_RANDOM, 0x1
992
+ const :MADV_SEQUENTIAL, 0x2
993
+ const :MADV_WILLNEED, 0x3
994
+ const :MADV_DONTNEED, 0x4
995
+ const :MAP_ANON, 0x20
996
+ const :MAP_FILE, 0
997
+ const :SOL_SOCKET, 1
998
+ const :SO_DEBUG, 1
999
+ const :SO_REUSEADDR, 2
1000
+ const :SO_TYPE, 3
1001
+ const :SO_ERROR, 4
1002
+ const :SO_DONTROUTE, 5
1003
+ const :SO_BROADCAST, 6
1004
+ const :SO_SNDBUF, 7
1005
+ const :SO_RCVBUF, 8
1006
+ const :SO_KEEPALIVE, 9
1007
+ const :SO_OOBINLINE, 10
1008
+ const :SO_NO_CHECK, 11
1009
+ const :SO_PRIORITY, 12
1010
+ const :SO_LINGER, 13
1011
+ const :SO_BSDCOMPAT, 14
1012
+ const :SO_PASSCRED, 16
1013
+ const :SO_PEERCRED, 17
1014
+ const :SO_RCVLOWAT, 18
1015
+ const :SO_SNDLOWAT, 19
1016
+ const :SO_RCVTIMEO, 20
1017
+ const :SO_SNDTIMEO, 21
1018
+ const :SO_ACCEPTCONN, 30
1019
+ const :SO_SNDBUFFORCE, 32
1020
+ const :SO_RCVBUFFORCE, 33
1021
+ const :SO_SECURITY_AUTHENTICATION, 22
1022
+ const :SO_SECURITY_ENCRYPTION_TRANSPORT, 23
1023
+ const :SO_SECURITY_ENCRYPTION_NETWORK, 24
1024
+ const :SO_BINDTODEVICE, 25
1025
+ const :SO_ATTACH_FILTER, 26
1026
+ const :SO_DETACH_FILTER, 27
1027
+ const :SO_PEERNAME, 28
1028
+ const :SO_TIMESTAMP, 29
1029
+ const :SCM_TIMESTAMP, 29
1030
+ const :SOCK_STREAM, 1
1031
+ const :SOCK_DGRAM, 2
1032
+ const :SOCK_RAW, 3
1033
+ const :SOCK_RDM, 4
1034
+ const :SOCK_SEQPACKET, 5
1035
+ const :SOCK_PACKET, 10
1036
+ const :UIO_FASTIOV, 8
1037
+ const :UIO_MAXIOV, 1024
1038
+ const :SCM_RIGHTS, 0x01
1039
+ const :SCM_CREDENTIALS, 0x02
1040
+ const :SCM_CONNECT, 0x03
1041
+ const :AF_UNSPEC, 0
1042
+ const :AF_UNIX, 1
1043
+ const :AF_LOCAL, 1
1044
+ const :AF_INET, 2
1045
+ const :AF_AX25, 3
1046
+ const :AF_IPX, 4
1047
+ const :AF_APPLETALK, 5
1048
+ const :AF_NETROM, 6
1049
+ const :AF_BRIDGE, 7
1050
+ const :AF_ATMPVC, 8
1051
+ const :AF_X25, 9
1052
+ const :AF_INET6, 10
1053
+ const :AF_ROSE, 11
1054
+ const :AF_DECnet, 12
1055
+ const :AF_NETBEUI, 13
1056
+ const :AF_SECURITY, 14
1057
+ const :AF_KEY, 15
1058
+ const :AF_NETLINK, 16
1059
+ const :AF_ROUTE, 16
1060
+ const :AF_PACKET, 17
1061
+ const :AF_ASH, 18
1062
+ const :AF_ECONET, 19
1063
+ const :AF_ATMSVC, 20
1064
+ const :AF_SNA, 22
1065
+ const :AF_IRDA, 23
1066
+ const :AF_PPPOX, 24
1067
+ const :AF_WANPIPE, 25
1068
+ const :AF_MAX, 32
1069
+ const :PF_UNSPEC, 0
1070
+ const :PF_UNIX, 1
1071
+ const :PF_LOCAL, 1
1072
+ const :PF_INET, 2
1073
+ const :PF_AX25, 3
1074
+ const :PF_IPX, 4
1075
+ const :PF_APPLETALK, 5
1076
+ const :PF_NETROM, 6
1077
+ const :PF_BRIDGE, 7
1078
+ const :PF_ATMPVC, 8
1079
+ const :PF_X25, 9
1080
+ const :PF_INET6, 10
1081
+ const :PF_ROSE, 11
1082
+ const :PF_DECnet, 12
1083
+ const :PF_NETBEUI, 13
1084
+ const :PF_SECURITY, 14
1085
+ const :PF_KEY, 15
1086
+ const :PF_NETLINK, 16
1087
+ const :PF_ROUTE, 16
1088
+ const :PF_PACKET, 17
1089
+ const :PF_ASH, 18
1090
+ const :PF_ECONET, 19
1091
+ const :PF_ATMSVC, 20
1092
+ const :PF_SNA, 22
1093
+ const :PF_IRDA, 23
1094
+ const :PF_PPPOX, 24
1095
+ const :PF_WANPIPE, 25
1096
+ const :PF_MAX, 32
1097
+ const :SOMAXCONN, 128
1098
+ const :MSG_OOB, 1
1099
+ const :MSG_PEEK, 2
1100
+ const :MSG_DONTROUTE, 4
1101
+ const :MSG_TRYHARD, 4
1102
+ const :MSG_CTRUNC, 8
1103
+ const :MSG_PROBE, 0x10
1104
+ const :MSG_TRUNC, 0x20
1105
+ const :MSG_DONTWAIT, 0x40
1106
+ const :MSG_EOR, 0x80
1107
+ const :MSG_WAITALL, 0x100
1108
+ const :MSG_FIN, 0x200
1109
+ const :MSG_EOF, 0x200
1110
+ const :MSG_SYN, 0x400
1111
+ const :MSG_CONFIRM, 0x800
1112
+ const :MSG_RST, 0x1000
1113
+ const :MSG_ERRQUEUE, 0x2000
1114
+ const :MSG_NOSIGNAL, 0x4000
1115
+ const :MSG_MORE, 0x8000
1116
+ const :SOL_IP, 0
1117
+ const :SOL_TCP, 6
1118
+ const :SOL_UDP, 17
1119
+ const :SOL_IPV6, 41
1120
+ const :SOL_ICMPV6, 58
1121
+ const :SOL_RAW, 255
1122
+ const :SOL_IPX, 256
1123
+ const :SOL_AX25, 257
1124
+ const :SOL_ATALK, 258
1125
+ const :SOL_NETROM, 259
1126
+ const :SOL_ROSE, 260
1127
+ const :SOL_DECNET, 261
1128
+ const :SOL_X25, 262
1129
+ const :SOL_PACKET, 263
1130
+ const :SOL_ATM, 264
1131
+ const :SOL_AAL, 265
1132
+ const :SOL_IRDA, 266
1133
+ const :IPX_TYPE, 1
1134
+ const :SHUT_RD, 0
1135
+ const :SHUT_WR, 1
1136
+ const :SHUT_RDWR, 2
1137
+ const :NI_NOFQDN, 1
1138
+ const :NI_NUMERICHOST, 2
1139
+ const :NI_NAMEREQD, 4
1140
+ const :NI_NUMERICSERV, 8
1141
+ const :NI_DGRAM, 16
1142
+ const :EAI_FAMILY, -1
1143
+ const :EAI_SOCKTYPE, -2
1144
+ const :EAI_BADFLAGS, -3
1145
+ const :EAI_NONAME, -4
1146
+ const :EAI_SERVICE, -5
1147
+ const :EAI_ADDRFAMILY, -6
1148
+ const :EAI_NODATA, -7
1149
+ const :EAI_MEMORY, -8
1150
+ const :EAI_FAIL, -9
1151
+ const :EAI_AGAIN, -10
1152
+ const :EAI_SYSTEM, -11
1153
+ const :AI_NUMERICHOST, 1
1154
+ const :AI_CANONNAME, 2
1155
+ const :AI_PASSIVE, 4
1156
+ const :SIOCADDRT, 0x890B
1157
+ const :SIOCDELRT, 0x890C
1158
+ const :SIOCRTMSG, 0x890D
1159
+ const :SIOCGIFNAME, 0x8910
1160
+ const :SIOCSIFLINK, 0x8911
1161
+ const :SIOCGIFCONF, 0x8912
1162
+ const :SIOCGIFFLAGS, 0x8913
1163
+ const :SIOCSIFFLAGS, 0x8914
1164
+ const :SIOCGIFADDR, 0x8915
1165
+ const :SIOCSIFADDR, 0x8916
1166
+ const :SIOCGIFDSTADDR, 0x8917
1167
+ const :SIOCSIFDSTADDR, 0x8918
1168
+ const :SIOCGIFBRDADDR, 0x8919
1169
+ const :SIOCSIFBRDADDR, 0x891a
1170
+ const :SIOCGIFNETMASK, 0x891b
1171
+ const :SIOCSIFNETMASK, 0x891c
1172
+ const :SIOCGIFMETRIC, 0x891d
1173
+ const :SIOCSIFMETRIC, 0x891e
1174
+ const :SIOCGIFMEM, 0x891f
1175
+ const :SIOCSIFMEM, 0x8920
1176
+ const :SIOCGIFMTU, 0x8921
1177
+ const :SIOCSIFMTU, 0x8922
1178
+ const :SIOCSIFNAME, 0x8923
1179
+ const :SIOCSIFHWADDR, 0x8924
1180
+ const :SIOCGIFENCAP, 0x8925
1181
+ const :SIOCSIFENCAP, 0x8926
1182
+ const :SIOCGIFHWADDR, 0x8927
1183
+ const :SIOCGIFSLAVE, 0x8929
1184
+ const :SIOCSIFSLAVE, 0x8930
1185
+ const :SIOCADDMULTI, 0x8931
1186
+ const :SIOCDELMULTI, 0x8932
1187
+ const :SIOCGIFINDEX, 0x8933
1188
+ const :SIOGIFINDEX, 0x8933
1189
+ const :SIOCSIFPFLAGS, 0x8934
1190
+ const :SIOCGIFPFLAGS, 0x8935
1191
+ const :SIOCDIFADDR, 0x8936
1192
+ const :SIOCSIFHWBROADCAST, 0x8937
1193
+ const :SIOCGIFCOUNT, 0x8938
1194
+ const :SIOCGIFBR, 0x8940
1195
+ const :SIOCSIFBR, 0x8941
1196
+ const :SIOCGIFTXQLEN, 0x8942
1197
+ const :SIOCSIFTXQLEN, 0x8943
1198
+ const :SIOCGIFDIVERT, 0x8944
1199
+ const :SIOCSIFDIVERT, 0x8945
1200
+ const :SIOCETHTOOL, 0x8946
1201
+ const :SIOCDARP, 0x8953
1202
+ const :SIOCGARP, 0x8954
1203
+ const :SIOCSARP, 0x8955
1204
+ const :SIOCDRARP, 0x8960
1205
+ const :SIOCGRARP, 0x8961
1206
+ const :SIOCSRARP, 0x8962
1207
+ const :SIOCGIFMAP, 0x8970
1208
+ const :SIOCSIFMAP, 0x8971
1209
+ const :SIOCADDDLCI, 0x8980
1210
+ const :SIOCDELDLCI, 0x8981
1211
+ const :SIOCDEVPRIVATE, 0x89F0
1212
+ const :PTRACE_TRACEME, 0
1213
+ const :PTRACE_PEEKTEXT, 1
1214
+ const :PTRACE_PEEKDATA, 2
1215
+ const :PTRACE_PEEKUSR, 3
1216
+ const :PTRACE_PEEKUSER, 3
1217
+ const :PTRACE_POKETEXT, 4
1218
+ const :PTRACE_POKEDATA, 5
1219
+ const :PTRACE_POKEUSR, 6
1220
+ const :PTRACE_POKEUSER, 6
1221
+ const :PTRACE_CONT, 7
1222
+ const :PTRACE_KILL, 8
1223
+ const :PTRACE_SINGLESTEP, 9
1224
+ const :PTRACE_ATTACH, 0x10
1225
+ const :PTRACE_DETACH, 0x11
1226
+ const :PTRACE_SYSCALL, 24
1227
+ const :PTRACE_GETEVENTMSG, 0x4201
1228
+ const :PTRACE_GETSIGINFO, 0x4202
1229
+ const :PTRACE_SETSIGINFO, 0x4203
1230
+ const :PTRACE_O_TRACESYSGOOD, 0x00000001
1231
+ const :PTRACE_O_TRACEFORK, 0x00000002
1232
+ const :PTRACE_O_TRACEVFORK, 0x00000004
1233
+ const :PTRACE_O_TRACECLONE, 0x00000008
1234
+ const :PTRACE_O_TRACEEXEC, 0x00000010
1235
+ const :PTRACE_O_TRACEVFORKDONE, 0x00000020
1236
+ const :PTRACE_O_TRACEEXIT, 0x00000040
1237
+ const :PTRACE_O_MASK, 0x0000007f
1238
+ const :PTRACE_EVENT_FORK, 1
1239
+ const :PTRACE_EVENT_VFORK, 2
1240
+ const :PTRACE_EVENT_CLONE, 3
1241
+ const :PTRACE_EVENT_EXEC, 4
1242
+ const :PTRACE_EVENT_VFORK_DONE, 5
1243
+ const :PTRACE_EVENT_EXIT, 6
1244
+ const :PT_TRACE_ME, 0
1245
+ const :PT_READ_I, 1
1246
+ const :PT_READ_D, 2
1247
+ const :PT_READ_U, 3
1248
+ const :PT_WRITE_I, 4
1249
+ const :PT_WRITE_D, 5
1250
+ const :PT_WRITE_U, 6
1251
+ const :PT_CONTINUE, 7
1252
+ const :PT_KILL, 8
1253
+ const :PT_STEP, 9
1254
+ const :PT_ATTACH, 0x10
1255
+ const :PT_DETACH, 0x11
1256
+ const :SYS_accept, 43
1257
+ const :SYS_accept4, 288
1258
+ const :SYS_access, 21
1259
+ const :SYS_acct, 163
1260
+ const :SYS_add_key, 248
1261
+ const :SYS_adjtimex, 159
1262
+ const :SYS_afs_syscall, 183
1263
+ const :SYS_alarm, 37
1264
+ const :SYS_arch_prctl, 158
1265
+ const :SYS_bind, 49
1266
+ const :SYS_brk, 12
1267
+ const :SYS_capget, 125
1268
+ const :SYS_capset, 126
1269
+ const :SYS_chdir, 80
1270
+ const :SYS_chmod, 90
1271
+ const :SYS_chown, 92
1272
+ const :SYS_chroot, 161
1273
+ const :SYS_clock_getres, 229
1274
+ const :SYS_clock_gettime, 228
1275
+ const :SYS_clock_nanosleep, 230
1276
+ const :SYS_clock_settime, 227
1277
+ const :SYS_clone, 56
1278
+ const :SYS_close, 3
1279
+ const :SYS_connect, 42
1280
+ const :SYS_creat, 85
1281
+ const :SYS_create_module, 174
1282
+ const :SYS_delete_module, 176
1283
+ const :SYS_dup, 32
1284
+ const :SYS_dup2, 33
1285
+ const :SYS_dup3, 292
1286
+ const :SYS_epoll_create, 213
1287
+ const :SYS_epoll_create1, 291
1288
+ const :SYS_epoll_ctl, 233
1289
+ const :SYS_epoll_ctl_old, 214
1290
+ const :SYS_epoll_pwait, 281
1291
+ const :SYS_epoll_wait, 232
1292
+ const :SYS_epoll_wait_old, 215
1293
+ const :SYS_eventfd, 284
1294
+ const :SYS_eventfd2, 290
1295
+ const :SYS_execve, 59
1296
+ const :SYS_exit, 60
1297
+ const :SYS_exit_group, 231
1298
+ const :SYS_faccessat, 269
1299
+ const :SYS_fadvise64, 221
1300
+ const :SYS_fallocate, 285
1301
+ const :SYS_fanotify_init, 300
1302
+ const :SYS_fanotify_mark, 301
1303
+ const :SYS_fchdir, 81
1304
+ const :SYS_fchmod, 91
1305
+ const :SYS_fchmodat, 268
1306
+ const :SYS_fchown, 93
1307
+ const :SYS_fchownat, 260
1308
+ const :SYS_fcntl, 72
1309
+ const :SYS_fdatasync, 75
1310
+ const :SYS_fgetxattr, 193
1311
+ const :SYS_flistxattr, 196
1312
+ const :SYS_flock, 73
1313
+ const :SYS_fork, 57
1314
+ const :SYS_fremovexattr, 199
1315
+ const :SYS_fsetxattr, 190
1316
+ const :SYS_fstat, 5
1317
+ const :SYS_fstatfs, 138
1318
+ const :SYS_fsync, 74
1319
+ const :SYS_ftruncate, 77
1320
+ const :SYS_futex, 202
1321
+ const :SYS_futimesat, 261
1322
+ const :SYS_getcwd, 79
1323
+ const :SYS_getdents, 78
1324
+ const :SYS_getdents64, 217
1325
+ const :SYS_getegid, 108
1326
+ const :SYS_geteuid, 107
1327
+ const :SYS_getgid, 104
1328
+ const :SYS_getgroups, 115
1329
+ const :SYS_getitimer, 36
1330
+ const :SYS_get_kernel_syms, 177
1331
+ const :SYS_get_mempolicy, 239
1332
+ const :SYS_getpeername, 52
1333
+ const :SYS_getpgid, 121
1334
+ const :SYS_getpgrp, 111
1335
+ const :SYS_getpid, 39
1336
+ const :SYS_getpmsg, 181
1337
+ const :SYS_getppid, 110
1338
+ const :SYS_getpriority, 140
1339
+ const :SYS_getresgid, 120
1340
+ const :SYS_getresuid, 118
1341
+ const :SYS_getrlimit, 97
1342
+ const :SYS_get_robust_list, 274
1343
+ const :SYS_getrusage, 98
1344
+ const :SYS_getsid, 124
1345
+ const :SYS_getsockname, 51
1346
+ const :SYS_getsockopt, 55
1347
+ const :SYS_get_thread_area, 211
1348
+ const :SYS_gettid, 186
1349
+ const :SYS_gettimeofday, 96
1350
+ const :SYS_getuid, 102
1351
+ const :SYS_getxattr, 191
1352
+ const :SYS_init_module, 175
1353
+ const :SYS_inotify_add_watch, 254
1354
+ const :SYS_inotify_init, 253
1355
+ const :SYS_inotify_init1, 294
1356
+ const :SYS_inotify_rm_watch, 255
1357
+ const :SYS_io_cancel, 210
1358
+ const :SYS_ioctl, 16
1359
+ const :SYS_io_destroy, 207
1360
+ const :SYS_io_getevents, 208
1361
+ const :SYS_ioperm, 173
1362
+ const :SYS_iopl, 172
1363
+ const :SYS_ioprio_get, 252
1364
+ const :SYS_ioprio_set, 251
1365
+ const :SYS_io_setup, 206
1366
+ const :SYS_io_submit, 209
1367
+ const :SYS_kexec_load, 246
1368
+ const :SYS_keyctl, 250
1369
+ const :SYS_kill, 62
1370
+ const :SYS_lchown, 94
1371
+ const :SYS_lgetxattr, 192
1372
+ const :SYS_link, 86
1373
+ const :SYS_linkat, 265
1374
+ const :SYS_listen, 50
1375
+ const :SYS_listxattr, 194
1376
+ const :SYS_llistxattr, 195
1377
+ const :SYS_lookup_dcookie, 212
1378
+ const :SYS_lremovexattr, 198
1379
+ const :SYS_lseek, 8
1380
+ const :SYS_lsetxattr, 189
1381
+ const :SYS_lstat, 6
1382
+ const :SYS_madvise, 28
1383
+ const :SYS_mbind, 237
1384
+ const :SYS_migrate_pages, 256
1385
+ const :SYS_mincore, 27
1386
+ const :SYS_mkdir, 83
1387
+ const :SYS_mkdirat, 258
1388
+ const :SYS_mknod, 133
1389
+ const :SYS_mknodat, 259
1390
+ const :SYS_mlock, 149
1391
+ const :SYS_mlockall, 151
1392
+ const :SYS_mmap, 9
1393
+ const :SYS_modify_ldt, 154
1394
+ const :SYS_mount, 165
1395
+ const :SYS_move_pages, 279
1396
+ const :SYS_mprotect, 10
1397
+ const :SYS_mq_getsetattr, 245
1398
+ const :SYS_mq_notify, 244
1399
+ const :SYS_mq_open, 240
1400
+ const :SYS_mq_timedreceive, 243
1401
+ const :SYS_mq_timedsend, 242
1402
+ const :SYS_mq_unlink, 241
1403
+ const :SYS_mremap, 25
1404
+ const :SYS_msgctl, 71
1405
+ const :SYS_msgget, 68
1406
+ const :SYS_msgrcv, 70
1407
+ const :SYS_msgsnd, 69
1408
+ const :SYS_msync, 26
1409
+ const :SYS_munlock, 150
1410
+ const :SYS_munlockall, 152
1411
+ const :SYS_munmap, 11
1412
+ const :SYS_nanosleep, 35
1413
+ const :SYS_newfstatat, 262
1414
+ const :SYS_nfsservctl, 180
1415
+ const :SYS_open, 2
1416
+ const :SYS_openat, 257
1417
+ const :SYS_pause, 34
1418
+ const :SYS_perf_event_open, 298
1419
+ const :SYS_personality, 135
1420
+ const :SYS_pipe, 22
1421
+ const :SYS_pipe2, 293
1422
+ const :SYS_pivot_root, 155
1423
+ const :SYS_poll, 7
1424
+ const :SYS_ppoll, 271
1425
+ const :SYS_prctl, 157
1426
+ const :SYS_pread, 17
1427
+ const :SYS_preadv, 295
1428
+ const :SYS_prlimit64, 302
1429
+ const :SYS_pselect6, 270
1430
+ const :SYS_ptrace, 101
1431
+ const :SYS_putpmsg, 182
1432
+ const :SYS_pwrite, 18
1433
+ const :SYS_pwritev, 296
1434
+ const :SYS_query_module, 178
1435
+ const :SYS_quotactl, 179
1436
+ const :SYS_read, 0
1437
+ const :SYS_readahead, 187
1438
+ const :SYS_readlink, 89
1439
+ const :SYS_readlinkat, 267
1440
+ const :SYS_readv, 19
1441
+ const :SYS_reboot, 169
1442
+ const :SYS_recvfrom, 45
1443
+ const :SYS_recvmmsg, 299
1444
+ const :SYS_recvmsg, 47
1445
+ const :SYS_remap_file_pages, 216
1446
+ const :SYS_removexattr, 197
1447
+ const :SYS_rename, 82
1448
+ const :SYS_renameat, 264
1449
+ const :SYS_request_key, 249
1450
+ const :SYS_restart_syscall, 219
1451
+ const :SYS_rmdir, 84
1452
+ const :SYS_rt_sigaction, 13
1453
+ const :SYS_rt_sigpending, 127
1454
+ const :SYS_rt_sigprocmask, 14
1455
+ const :SYS_rt_sigqueueinfo, 129
1456
+ const :SYS_rt_sigreturn, 15
1457
+ const :SYS_rt_sigsuspend, 130
1458
+ const :SYS_rt_sigtimedwait, 128
1459
+ const :SYS_rt_tgsigqueueinfo, 297
1460
+ const :SYS_sched_getaffinity, 204
1461
+ const :SYS_sched_getparam, 143
1462
+ const :SYS_sched_get_priority_max, 146
1463
+ const :SYS_sched_get_priority_min, 147
1464
+ const :SYS_sched_getscheduler, 145
1465
+ const :SYS_sched_rr_get_interval, 148
1466
+ const :SYS_sched_setaffinity, 203
1467
+ const :SYS_sched_setparam, 142
1468
+ const :SYS_sched_setscheduler, 144
1469
+ const :SYS_sched_yield, 24
1470
+ const :SYS_security, 185
1471
+ const :SYS_select, 23
1472
+ const :SYS_semctl, 66
1473
+ const :SYS_semget, 64
1474
+ const :SYS_semop, 65
1475
+ const :SYS_semtimedop, 220
1476
+ const :SYS_sendfile, 40
1477
+ const :SYS_sendmsg, 46
1478
+ const :SYS_sendto, 44
1479
+ const :SYS_setdomainname, 171
1480
+ const :SYS_setfsgid, 123
1481
+ const :SYS_setfsuid, 122
1482
+ const :SYS_setgid, 106
1483
+ const :SYS_setgroups, 116
1484
+ const :SYS_sethostname, 170
1485
+ const :SYS_setitimer, 38
1486
+ const :SYS_set_mempolicy, 238
1487
+ const :SYS_setpgid, 109
1488
+ const :SYS_setpriority, 141
1489
+ const :SYS_setregid, 114
1490
+ const :SYS_setresgid, 119
1491
+ const :SYS_setresuid, 117
1492
+ const :SYS_setreuid, 113
1493
+ const :SYS_setrlimit, 160
1494
+ const :SYS_set_robust_list, 273
1495
+ const :SYS_setsid, 112
1496
+ const :SYS_setsockopt, 54
1497
+ const :SYS_set_thread_area, 205
1498
+ const :SYS_set_tid_address, 218
1499
+ const :SYS_settimeofday, 164
1500
+ const :SYS_setuid, 105
1501
+ const :SYS_setxattr, 188
1502
+ const :SYS_shmat, 30
1503
+ const :SYS_shmctl, 31
1504
+ const :SYS_shmdt, 67
1505
+ const :SYS_shmget, 29
1506
+ const :SYS_shutdown, 48
1507
+ const :SYS_sigaltstack, 131
1508
+ const :SYS_signalfd, 282
1509
+ const :SYS_signalfd4, 289
1510
+ const :SYS_socket, 41
1511
+ const :SYS_socketpair, 53
1512
+ const :SYS_splice, 275
1513
+ const :SYS_stat, 4
1514
+ const :SYS_statfs, 137
1515
+ const :SYS_swapoff, 168
1516
+ const :SYS_swapon, 167
1517
+ const :SYS_symlink, 88
1518
+ const :SYS_symlinkat, 266
1519
+ const :SYS_sync, 162
1520
+ const :SYS_sync_file_range, 277
1521
+ const :SYS__sysctl, 156
1522
+ const :SYS_sysfs, 139
1523
+ const :SYS_sysinfo, 99
1524
+ const :SYS_syslog, 103
1525
+ const :SYS_tee, 276
1526
+ const :SYS_tgkill, 234
1527
+ const :SYS_time, 201
1528
+ const :SYS_timer_create, 222
1529
+ const :SYS_timer_delete, 226
1530
+ const :SYS_timerfd, 283
1531
+ const :SYS_timerfd_gettime, 287
1532
+ const :SYS_timerfd_settime, 286
1533
+ const :SYS_timer_getoverrun, 225
1534
+ const :SYS_timer_gettime, 224
1535
+ const :SYS_timer_settime, 223
1536
+ const :SYS_times, 100
1537
+ const :SYS_tkill, 200
1538
+ const :SYS_truncate, 76
1539
+ const :SYS_tuxcall, 184
1540
+ const :SYS_umask, 95
1541
+ const :SYS_umount2, 166
1542
+ const :SYS_uname, 63
1543
+ const :SYS_unlink, 87
1544
+ const :SYS_unlinkat, 263
1545
+ const :SYS_unshare, 272
1546
+ const :SYS_uselib, 134
1547
+ const :SYS_ustat, 136
1548
+ const :SYS_utime, 132
1549
+ const :SYS_utimensat, 280
1550
+ const :SYS_utimes, 235
1551
+ const :SYS_vfork, 58
1552
+ const :SYS_vhangup, 153
1553
+ const :SYS_vmsplice, 278
1554
+ const :SYS_vserver, 236
1555
+ const :SYS_wait4, 61
1556
+ const :SYS_waitid, 247
1557
+ const :SYS_write, 1
1558
+ const :SYS_writev, 20