-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny_unshare.skel.h
307 lines (278 loc) · 14.1 KB
/
deny_unshare.skel.h
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
/* THIS FILE IS AUTOGENERATED BY BPFTOOL! */
#ifndef __DENY_UNSHARE_BPF_SKEL_H__
#define __DENY_UNSHARE_BPF_SKEL_H__
#include <errno.h>
#include <stdlib.h>
#include <bpf/libbpf.h>
struct deny_unshare_bpf {
struct bpf_object_skeleton *skeleton;
struct bpf_object *obj;
struct {
struct bpf_program *handle_cred_prepare;
} progs;
struct {
struct bpf_link *handle_cred_prepare;
} links;
#ifdef __cplusplus
static inline struct deny_unshare_bpf *open(const struct bpf_object_open_opts *opts = nullptr);
static inline struct deny_unshare_bpf *open_and_load();
static inline int load(struct deny_unshare_bpf *skel);
static inline int attach(struct deny_unshare_bpf *skel);
static inline void detach(struct deny_unshare_bpf *skel);
static inline void destroy(struct deny_unshare_bpf *skel);
static inline const void *elf_bytes(size_t *sz);
#endif /* __cplusplus */
};
static void
deny_unshare_bpf__destroy(struct deny_unshare_bpf *obj)
{
if (!obj)
return;
if (obj->skeleton)
bpf_object__destroy_skeleton(obj->skeleton);
free(obj);
}
static inline int
deny_unshare_bpf__create_skeleton(struct deny_unshare_bpf *obj);
static inline struct deny_unshare_bpf *
deny_unshare_bpf__open_opts(const struct bpf_object_open_opts *opts)
{
struct deny_unshare_bpf *obj;
int err;
obj = (struct deny_unshare_bpf *)calloc(1, sizeof(*obj));
if (!obj) {
errno = ENOMEM;
return NULL;
}
err = deny_unshare_bpf__create_skeleton(obj);
if (err)
goto err_out;
err = bpf_object__open_skeleton(obj->skeleton, opts);
if (err)
goto err_out;
return obj;
err_out:
deny_unshare_bpf__destroy(obj);
errno = -err;
return NULL;
}
static inline struct deny_unshare_bpf *
deny_unshare_bpf__open(void)
{
return deny_unshare_bpf__open_opts(NULL);
}
static inline int
deny_unshare_bpf__load(struct deny_unshare_bpf *obj)
{
return bpf_object__load_skeleton(obj->skeleton);
}
static inline struct deny_unshare_bpf *
deny_unshare_bpf__open_and_load(void)
{
struct deny_unshare_bpf *obj;
int err;
obj = deny_unshare_bpf__open();
if (!obj)
return NULL;
err = deny_unshare_bpf__load(obj);
if (err) {
deny_unshare_bpf__destroy(obj);
errno = -err;
return NULL;
}
return obj;
}
static inline int
deny_unshare_bpf__attach(struct deny_unshare_bpf *obj)
{
return bpf_object__attach_skeleton(obj->skeleton);
}
static inline void
deny_unshare_bpf__detach(struct deny_unshare_bpf *obj)
{
return bpf_object__detach_skeleton(obj->skeleton);
}
static inline const void *deny_unshare_bpf__elf_bytes(size_t *sz);
static inline int
deny_unshare_bpf__create_skeleton(struct deny_unshare_bpf *obj)
{
struct bpf_object_skeleton *s;
int err;
s = (struct bpf_object_skeleton *)calloc(1, sizeof(*s));
if (!s) {
err = -ENOMEM;
goto err;
}
s->sz = sizeof(*s);
s->name = "deny_unshare_bpf";
s->obj = &obj->obj;
/* programs */
s->prog_cnt = 1;
s->prog_skel_sz = sizeof(*s->progs);
s->progs = (struct bpf_prog_skeleton *)calloc(s->prog_cnt, s->prog_skel_sz);
if (!s->progs) {
err = -ENOMEM;
goto err;
}
s->progs[0].name = "handle_cred_prepare";
s->progs[0].prog = &obj->progs.handle_cred_prepare;
s->progs[0].link = &obj->links.handle_cred_prepare;
s->data = (void *)deny_unshare_bpf__elf_bytes(&s->data_sz);
obj->skeleton = s;
return 0;
err:
bpf_object__destroy_skeleton(s);
return err;
}
static inline const void *deny_unshare_bpf__elf_bytes(size_t *sz)
{
*sz = 3416;
return (const void *)"\
\x7f\x45\x4c\x46\x02\x01\x01\0\0\0\0\0\0\0\0\0\x01\0\xf7\0\x01\0\0\0\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\0\x98\x0a\0\0\0\0\0\0\0\0\0\0\x40\0\0\0\0\0\x40\0\x0b\0\
\x0a\0\x79\x16\x18\0\0\0\0\0\xbf\x61\0\0\0\0\0\0\x67\x01\0\0\x20\0\0\0\x77\x01\
\0\0\x20\0\0\0\x55\x01\x22\0\0\0\0\0\x85\0\0\0\x9e\0\0\0\xbf\x06\0\0\0\0\0\0\
\xbf\x61\0\0\0\0\0\0\x85\0\0\0\xaf\0\0\0\x79\x61\x08\0\0\0\0\0\xb7\x02\0\0\0\0\
\0\0\xbf\x13\0\0\0\0\0\0\x0f\x23\0\0\0\0\0\0\x61\x11\0\0\0\0\0\0\x61\x32\x04\0\
\0\0\0\0\x67\x02\0\0\x20\0\0\0\x4f\x12\0\0\0\0\0\0\x79\x01\x08\0\0\0\0\0\x7b\
\x2a\xf8\xff\0\0\0\0\xb7\x06\0\0\0\0\0\0\x67\x01\0\0\x20\0\0\0\x77\x01\0\0\x20\
\0\0\0\x55\x01\x10\0\x10\x01\0\0\xb7\x01\0\0\0\0\0\0\x0f\x10\0\0\0\0\0\0\xbf\
\xa1\0\0\0\0\0\0\x07\x01\0\0\xf0\xff\xff\xff\xb7\x02\0\0\x08\0\0\0\xbf\x03\0\0\
\0\0\0\0\x85\0\0\0\x71\0\0\0\x79\xa1\xf0\xff\0\0\0\0\x57\x01\0\0\0\0\0\x10\x15\
\x01\x06\0\0\0\0\0\xbf\xa1\0\0\0\0\0\0\x07\x01\0\0\xf8\xff\xff\xff\x61\x16\0\0\
\0\0\0\0\x77\x06\0\0\x15\0\0\0\x57\x06\0\0\x01\0\0\0\x07\x06\0\0\xff\xff\xff\
\xff\xbf\x60\0\0\0\0\0\0\x95\0\0\0\0\0\0\0\x47\x50\x4c\0\x9f\xeb\x01\0\x18\0\0\
\0\0\0\0\0\x8c\x01\0\0\x8c\x01\0\0\xff\x02\0\0\0\0\0\0\0\0\0\x02\x02\0\0\0\x01\
\0\0\0\0\0\0\x01\x08\0\0\0\x40\0\0\0\0\0\0\0\x01\0\0\x0d\x04\0\0\0\x18\0\0\0\
\x01\0\0\0\x1c\0\0\0\0\0\0\x01\x04\0\0\0\x20\0\0\x01\x20\0\0\0\x01\0\0\x0c\x03\
\0\0\0\x42\x01\0\0\x02\0\0\x04\x10\0\0\0\x4e\x01\0\0\x07\0\0\0\0\0\0\0\x54\x01\
\0\0\x08\0\0\0\x40\0\0\0\x59\x01\0\0\0\0\0\x01\x04\0\0\0\x20\0\0\0\0\0\0\0\0\0\
\0\x02\x09\0\0\0\0\0\0\0\0\0\0\x0a\x0a\0\0\0\x54\x01\0\0\x01\0\0\x04\x08\0\0\0\
\x93\x01\0\0\x0b\0\0\0\0\0\0\0\xa1\x01\0\0\0\0\0\x08\x0c\0\0\0\xae\x01\0\0\x01\
\0\0\x04\x08\0\0\0\xc0\x01\0\0\x0e\0\0\0\0\0\0\0\xc4\x01\0\0\0\0\0\x08\x07\0\0\
\0\0\0\0\0\0\0\0\x03\0\0\0\0\x0d\0\0\0\x0f\0\0\0\x02\0\0\0\xca\x01\0\0\0\0\0\
\x01\x04\0\0\0\x20\0\0\0\xe2\x01\0\0\x02\0\0\x04\x10\0\0\0\xea\x01\0\0\x11\0\0\
\0\0\0\0\0\xed\x01\0\0\x11\0\0\0\x40\0\0\0\xf5\x01\0\0\0\0\0\x01\x08\0\0\0\x40\
\0\0\0\xea\x02\0\0\0\0\0\x01\x01\0\0\0\x08\0\0\x01\0\0\0\0\0\0\0\x03\0\0\0\0\
\x12\0\0\0\x0f\0\0\0\x04\0\0\0\xef\x02\0\0\0\0\0\x0e\x13\0\0\0\x01\0\0\0\xf7\
\x02\0\0\x01\0\0\x0f\0\0\0\0\x14\0\0\0\0\0\0\0\x04\0\0\0\0\x6c\x6f\x6e\x67\x20\
\x6c\x6f\x6e\x67\x20\x75\x6e\x73\x69\x67\x6e\x65\x64\x20\x69\x6e\x74\0\x63\x74\
\x78\0\x69\x6e\x74\0\x68\x61\x6e\x64\x6c\x65\x5f\x63\x72\x65\x64\x5f\x70\x72\
\x65\x70\x61\x72\x65\0\x6c\x73\x6d\x2f\x63\x72\x65\x64\x5f\x70\x72\x65\x70\x61\
\x72\x65\0\x2f\x68\x6f\x6d\x65\x2f\x6f\x6d\x6b\x6d\x6f\x72\x65\x6e\x64\x68\x61\
\x2f\x44\x65\x73\x6b\x74\x6f\x70\x2f\x69\x64\x6b\x2f\x64\x65\x6e\x79\x5f\x75\
\x6e\x73\x68\x61\x72\x65\x2e\x62\x70\x66\x2e\x63\0\x69\x6e\x74\x20\x42\x50\x46\
\x5f\x50\x52\x4f\x47\x28\x68\x61\x6e\x64\x6c\x65\x5f\x63\x72\x65\x64\x5f\x70\
\x72\x65\x70\x61\x72\x65\x2c\x20\x73\x74\x72\x75\x63\x74\x20\x63\x72\x65\x64\
\x20\x2a\x6e\x65\x77\x2c\x20\x63\x6f\x6e\x73\x74\x20\x73\x74\x72\x75\x63\x74\
\x20\x63\x72\x65\x64\x20\x2a\x6f\x6c\x64\x2c\x20\x67\x66\x70\x5f\x74\x20\x67\
\x66\x70\x2c\x20\x69\x6e\x74\x20\x72\x65\x74\x29\0\x20\x20\x20\x20\x69\x66\x20\
\x28\x72\x65\x74\x29\x20\x7b\0\x20\x20\x20\x20\x74\x61\x73\x6b\x20\x3d\x20\x62\
\x70\x66\x5f\x67\x65\x74\x5f\x63\x75\x72\x72\x65\x6e\x74\x5f\x74\x61\x73\x6b\
\x5f\x62\x74\x66\x28\x29\x3b\0\x20\x20\x20\x20\x72\x65\x67\x73\x20\x3d\x20\x28\
\x73\x74\x72\x75\x63\x74\x20\x70\x74\x5f\x72\x65\x67\x73\x20\x2a\x29\x20\x62\
\x70\x66\x5f\x74\x61\x73\x6b\x5f\x70\x74\x5f\x72\x65\x67\x73\x28\x74\x61\x73\
\x6b\x29\x3b\0\x74\x61\x73\x6b\x5f\x73\x74\x72\x75\x63\x74\0\x66\x6c\x61\x67\
\x73\0\x63\x72\x65\x64\0\x75\x6e\x73\x69\x67\x6e\x65\x64\x20\x69\x6e\x74\0\x30\
\x3a\x31\0\x20\x20\x20\x20\x63\x61\x70\x73\x20\x3d\x20\x74\x61\x73\x6b\x20\x2d\
\x3e\x20\x63\x72\x65\x64\x2d\x3e\x20\x63\x61\x70\x5f\x65\x66\x66\x65\x63\x74\
\x69\x76\x65\x3b\0\x63\x61\x70\x5f\x65\x66\x66\x65\x63\x74\x69\x76\x65\0\x6b\
\x65\x72\x6e\x65\x6c\x5f\x63\x61\x70\x5f\x74\0\x6b\x65\x72\x6e\x65\x6c\x5f\x63\
\x61\x70\x5f\x73\x74\x72\x75\x63\x74\0\x63\x61\x70\0\x5f\x5f\x75\x33\x32\0\x5f\
\x5f\x41\x52\x52\x41\x59\x5f\x53\x49\x5a\x45\x5f\x54\x59\x50\x45\x5f\x5f\0\x30\
\x3a\x30\0\x70\x74\x5f\x72\x65\x67\x73\0\x64\x69\0\x6f\x72\x69\x67\x5f\x61\x78\
\0\x6c\x6f\x6e\x67\x20\x75\x6e\x73\x69\x67\x6e\x65\x64\x20\x69\x6e\x74\0\x20\
\x20\x20\x20\x73\x79\x73\x63\x61\x6c\x6c\x20\x3d\x20\x72\x65\x67\x73\x20\x2d\
\x3e\x20\x6f\x72\x69\x67\x5f\x61\x78\x3b\0\x20\x20\x20\x20\x69\x66\x20\x28\x73\
\x79\x73\x63\x61\x6c\x6c\x20\x21\x3d\x20\x55\x4e\x53\x48\x41\x52\x45\x5f\x53\
\x59\x53\x43\x41\x4c\x4c\x29\x20\x7b\0\x20\x20\x20\x20\x66\x6c\x61\x67\x73\x20\
\x3d\x20\x50\x54\x5f\x52\x45\x47\x53\x5f\x50\x41\x52\x4d\x31\x5f\x43\x4f\x52\
\x45\x28\x72\x65\x67\x73\x29\x3b\0\x20\x20\x20\x20\x69\x66\x20\x28\x21\x28\x66\
\x6c\x61\x67\x73\x20\x26\x20\x43\x4c\x4f\x4e\x45\x5f\x4e\x45\x57\x55\x53\x45\
\x52\x29\x29\x20\x7b\0\x20\x20\x20\x20\x69\x66\x20\x28\x63\x61\x70\x73\x2e\x63\
\x61\x70\x5b\x43\x41\x50\x5f\x54\x4f\x5f\x49\x4e\x44\x45\x58\x28\x43\x41\x50\
\x5f\x53\x59\x53\x5f\x41\x44\x4d\x49\x4e\x29\x5d\x20\x26\x20\x43\x41\x50\x5f\
\x54\x4f\x5f\x4d\x41\x53\x4b\x28\x43\x41\x50\x5f\x53\x59\x53\x5f\x41\x44\x4d\
\x49\x4e\x29\x29\x20\x7b\0\x30\x3a\x30\x3a\x30\0\x63\x68\x61\x72\0\x4c\x49\x43\
\x45\x4e\x53\x45\0\x6c\x69\x63\x65\x6e\x73\x65\0\x9f\xeb\x01\0\x20\0\0\0\0\0\0\
\0\x14\0\0\0\x14\0\0\0\x2c\x01\0\0\x40\x01\0\0\x6c\0\0\0\x08\0\0\0\x34\0\0\0\
\x01\0\0\0\0\0\0\0\x05\0\0\0\x10\0\0\0\x34\0\0\0\x12\0\0\0\0\0\0\0\x45\0\0\0\
\x76\0\0\0\x05\x90\0\0\x20\0\0\0\x45\0\0\0\xd6\0\0\0\x09\xb0\0\0\x28\0\0\0\x45\
\0\0\0\xe5\0\0\0\x0c\xc0\0\0\x38\0\0\0\x45\0\0\0\x0c\x01\0\0\x1f\xc4\0\0\x48\0\
\0\0\x45\0\0\0\x6a\x01\0\0\x14\xd0\0\0\x68\0\0\0\x45\0\0\0\x6a\x01\0\0\x1b\xd0\
\0\0\x88\0\0\0\x45\0\0\0\x07\x02\0\0\x17\xcc\0\0\x90\0\0\0\x45\0\0\0\x6a\x01\0\
\0\x1b\xd0\0\0\xa0\0\0\0\x45\0\0\0\x07\x02\0\0\x0f\xcc\0\0\xb0\0\0\0\x45\0\0\0\
\x26\x02\0\0\x09\xd8\0\0\xd0\0\0\0\x45\0\0\0\0\0\0\0\0\0\0\0\xd8\0\0\0\x45\0\0\
\0\x4c\x02\0\0\x0d\xe8\0\0\xf0\0\0\0\x45\0\0\0\x4c\x02\0\0\x0d\xe8\0\0\xf8\0\0\
\0\x45\0\0\0\x72\x02\0\0\x11\xf0\0\0\0\x01\0\0\x45\0\0\0\x72\x02\0\0\x09\xf0\0\
\0\x10\x01\0\0\x45\0\0\0\x96\x02\0\0\x09\x04\x01\0\x20\x01\0\0\x45\0\0\0\0\0\0\
\0\0\0\0\0\x38\x01\0\0\x45\0\0\0\x76\0\0\0\x05\x90\0\0\x10\0\0\0\x34\0\0\0\x06\
\0\0\0\x48\0\0\0\x06\0\0\0\x66\x01\0\0\0\0\0\0\x50\0\0\0\x0a\0\0\0\xde\x01\0\0\
\0\0\0\0\x68\0\0\0\x0a\0\0\0\xde\x01\0\0\0\0\0\0\x88\0\0\0\x10\0\0\0\x66\x01\0\
\0\0\0\0\0\xb8\0\0\0\x10\0\0\0\xde\x01\0\0\0\0\0\0\x18\x01\0\0\x0b\0\0\0\xe4\
\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
\0\0\x03\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x70\0\0\0\0\0\x02\0\x38\x01\0\
\0\0\0\0\0\0\0\0\0\0\0\0\0\x2a\0\0\0\x12\0\x02\0\0\0\0\0\0\0\0\0\x48\x01\0\0\0\
\0\0\0\x68\0\0\0\x11\0\x03\0\0\0\0\0\0\0\0\0\x04\0\0\0\0\0\0\0\x9c\x01\0\0\0\0\
\0\0\x04\0\0\0\x04\0\0\0\x2c\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x40\0\0\0\0\0\0\
\0\x04\0\0\0\x01\0\0\0\x50\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x60\0\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\x70\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x80\0\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\x90\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\xa0\0\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\xb0\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\xc0\0\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\xd0\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\xe0\0\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\xf0\0\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\0\x01\0\0\0\0\0\0\
\x04\0\0\0\x01\0\0\0\x10\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x20\x01\0\0\0\0\0\
\0\x04\0\0\0\x01\0\0\0\x30\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x40\x01\0\0\0\0\
\0\0\x04\0\0\0\x01\0\0\0\x50\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x6c\x01\0\0\0\
\0\0\0\x04\0\0\0\x01\0\0\0\x7c\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x8c\x01\0\0\
\0\0\0\0\x04\0\0\0\x01\0\0\0\x9c\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\xac\x01\0\
\0\0\0\0\0\x04\0\0\0\x01\0\0\0\xbc\x01\0\0\0\0\0\0\x04\0\0\0\x01\0\0\0\x09\x0a\
\0\x2e\x74\x65\x78\x74\0\x2e\x72\x65\x6c\x2e\x42\x54\x46\x2e\x65\x78\x74\0\x2e\
\x6c\x6c\x76\x6d\x5f\x61\x64\x64\x72\x73\x69\x67\0\x6c\x69\x63\x65\x6e\x73\x65\
\0\x68\x61\x6e\x64\x6c\x65\x5f\x63\x72\x65\x64\x5f\x70\x72\x65\x70\x61\x72\x65\
\0\x6c\x73\x6d\x2f\x63\x72\x65\x64\x5f\x70\x72\x65\x70\x61\x72\x65\0\x2e\x73\
\x74\x72\x74\x61\x62\0\x2e\x73\x79\x6d\x74\x61\x62\0\x2e\x72\x65\x6c\x2e\x42\
\x54\x46\0\x4c\x49\x43\x45\x4e\x53\x45\0\x4c\x42\x42\x30\x5f\x34\0\0\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\x01\0\0\0\x06\0\
\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x40\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x3e\0\0\0\x01\0\0\0\x06\0\0\0\0\0\0\0\0\0\0\
\0\0\0\0\0\x40\0\0\0\0\0\0\0\x48\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x08\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\x22\0\0\0\x01\0\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x88\
\x01\0\0\0\0\0\0\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\
\0\0\0\x63\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x8c\x01\0\0\0\0\0\0\
\xa3\x04\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0b\0\0\
\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2f\x06\0\0\0\0\0\0\xcc\x01\0\0\0\
\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x57\0\0\0\x02\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x08\0\0\0\0\0\0\x78\0\0\0\0\0\0\0\x0a\0\0\0\
\x03\0\0\0\x08\0\0\0\0\0\0\0\x18\0\0\0\0\0\0\0\x5f\0\0\0\x09\0\0\0\0\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\x78\x08\0\0\0\0\0\0\x10\0\0\0\0\0\0\0\x06\0\0\0\x04\0\0\0\
\x08\0\0\0\0\0\0\0\x10\0\0\0\0\0\0\0\x07\0\0\0\x09\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
\0\0\0\0\0\x88\x08\0\0\0\0\0\0\x90\x01\0\0\0\0\0\0\x06\0\0\0\x05\0\0\0\x08\0\0\
\0\0\0\0\0\x10\0\0\0\0\0\0\0\x14\0\0\0\x03\x4c\xff\x6f\0\0\0\x80\0\0\0\0\0\0\0\
\0\0\0\0\0\x18\x0a\0\0\0\0\0\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\
\0\0\0\0\0\0\0\0\0\0\x4f\0\0\0\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1a\
\x0a\0\0\0\0\0\0\x77\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\
\0\0\0";
}
#ifdef __cplusplus
struct deny_unshare_bpf *deny_unshare_bpf::open(const struct bpf_object_open_opts *opts) { return deny_unshare_bpf__open_opts(opts); }
struct deny_unshare_bpf *deny_unshare_bpf::open_and_load() { return deny_unshare_bpf__open_and_load(); }
int deny_unshare_bpf::load(struct deny_unshare_bpf *skel) { return deny_unshare_bpf__load(skel); }
int deny_unshare_bpf::attach(struct deny_unshare_bpf *skel) { return deny_unshare_bpf__attach(skel); }
void deny_unshare_bpf::detach(struct deny_unshare_bpf *skel) { deny_unshare_bpf__detach(skel); }
void deny_unshare_bpf::destroy(struct deny_unshare_bpf *skel) { deny_unshare_bpf__destroy(skel); }
const void *deny_unshare_bpf::elf_bytes(size_t *sz) { return deny_unshare_bpf__elf_bytes(sz); }
#endif /* __cplusplus */
__attribute__((unused)) static void
deny_unshare_bpf__assert(struct deny_unshare_bpf *s __attribute__((unused)))
{
#ifdef __cplusplus
#define _Static_assert static_assert
#endif
#ifdef __cplusplus
#undef _Static_assert
#endif
}
#endif /* __DENY_UNSHARE_BPF_SKEL_H__ */