tun2socks 0.1.10

High performance tun2socks
Documentation
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
/*
 ============================================================================
 Name        : hev-task-cio.h
 Author      : hev <r@hev.cc>
 Copyright   : Copyright (c) 2024 hev.
 Description : Task Chain I/O
 ============================================================================
 */

#ifndef __HEV_TASK_CIO_H__
#define __HEV_TASK_CIO_H__

#include <sys/uio.h>

#include <hev-object.h>

#ifdef __cplusplus
extern "C" {
#endif

#define HEV_TASK_CIO(p) ((HevTaskCIO *)p)
#define HEV_TASK_CIO_CLASS(p) ((HevTaskCIOClass *)p)
#define HEV_TASK_CIO_TYPE (hev_task_cio_class ())

typedef struct _HevTaskCIO HevTaskCIO;
typedef struct _HevTaskCIOClass HevTaskCIOClass;
typedef enum _HevTaskCIOCtrl HevTaskCIOCtrl;

struct _HevTaskCIO
{
    HevObject base;

    int err;
    HevTaskCIO *next;
};

struct _HevTaskCIOClass
{
    HevObjectClass base;

    ssize_t (*read) (HevTaskCIO *, void *, size_t);
    ssize_t (*write) (HevTaskCIO *, const void *, size_t);
    ssize_t (*readv) (HevTaskCIO *, const struct iovec *, int);
    ssize_t (*writev) (HevTaskCIO *, const struct iovec *, int);
    ssize_t (*read_dgram) (HevTaskCIO *, void *, size_t, void *);
    ssize_t (*write_dgram) (HevTaskCIO *, const void *, size_t, const void *);
    ssize_t (*readv_dgram) (HevTaskCIO *, const struct iovec *, int, void *);
    ssize_t (*writev_dgram) (HevTaskCIO *, const struct iovec *, int,
                             const void *);
    long (*ctrl) (HevTaskCIO *, int, long, void *);
};

enum _HevTaskCIOCtrl
{
    HEV_TASK_CIO_CTRL_FLUSH,
    HEV_TASK_CIO_CTRL_GET_FD,
    HEV_TASK_CIO_CTRL_SHUTDOWN,
};

/**
 * hev_task_cio_class:
 *
 * Get the class of #HevTaskCIO.
 *
 * Returns: a new #HeObjectClass.
 *
 * Since: 5.3
 */
HevObjectClass *hev_task_cio_class (void);

/**
 * hev_task_cio_construct:
 * @self: a #HevTaskCIO
 *
 * Construct a new #HevTaskCIO.
 *
 * Returns: When successful, returns zero. otherwise, returns -1.
 *
 * Since: 5.3
 */
int hev_task_cio_construct (HevTaskCIO *self);

/**
 * hev_task_cio_push:
 * @self: a #HevTaskCIO
 * @next: (transfer full): a #HevTaskCIO
 *
 * Push the @next into chain.
 *
 * Returns: a #HevTaskCIO
 *
 * Since: 5.3
 */
HevTaskCIO *hev_task_cio_push (HevTaskCIO *self, HevTaskCIO *next);

/**
 * hev_task_cio_pop:
 * @self: a #HevTaskCIO
 * @next: a #HevTaskCIO
 *
 * Pop and unref the first CIO in chain, return the second CIO.
 *
 * Returns: a #HevTaskCIO
 *
 * Since: 5.3
 */
HevTaskCIO *hev_task_cio_pop (HevTaskCIO *self);

/**
 * hev_task_cio_get_fd:
 * @self: a #HevTaskCIO
 * @dir: direction of fd: 0 for read, 1 for write
 *
 * Get file descriptor of this #HevTaskCIO.
 *
 * Returns: the new file descriptor, or -1 if not exist.
 *
 * Since: 5.3
 */
int hev_task_cio_get_fd (HevTaskCIO *self, int dir);

/**
 * hev_task_cio_read:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The read function shall attempt to read @count bytes from @self,
 * into the buffer pointed to by @buf.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_read (HevTaskCIO *self, void *buf, size_t count,
                           HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_read_exact:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The read_exact function shall attempt to read exactly @count bytes
 * from @self, into the buffer pointed to by @buf.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_read_exact (HevTaskCIO *self, void *buf, size_t count,
                                 HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_readv:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The readv function shall attempt to read @count bytes from @self,
 * into the buffers pointed to by @iov.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_readv (HevTaskCIO *self, const struct iovec *iov,
                            int iovcnt, HevTaskIOYielder yielder,
                            void *yielder_data);

/**
 * hev_task_cio_readv_exact:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The read_exact function shall attempt to read exactly bytes from @self,
 * into the buffer pointed to by @buf.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_readv_exact (HevTaskCIO *self, const struct iovec *iov,
                                  int iovcnt, HevTaskIOYielder yielder,
                                  void *yielder_data);

/**
 * hev_task_cio_write:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The write function shall attempt to write @count bytes from the buffer
 * pointed to by @buf to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_write (HevTaskCIO *self, const void *buf, size_t count,
                            HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_write_exact:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The write_exact function shall attempt to write exactly @count bytes
 * from the buffer pointed to by @buf to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_write_exact (HevTaskCIO *self, const void *buf,
                                  size_t count, HevTaskIOYielder yielder,
                                  void *yielder_data);

/**
 * hev_task_cio_writev:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The writev function shall attempt to write bytes from the buffer
 * pointed to by @iov to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_writev (HevTaskCIO *self, const struct iovec *iov,
                             int iovcnt, HevTaskIOYielder yielder,
                             void *yielder_data);

/**
 * hev_task_cio_writev_exact:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The writev_exact function shall attempt to write exactly bytes
 * from the buffer pointed to by @iov to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_writev_exact (HevTaskCIO *self, const struct iovec *iov,
                                   int iovcnt, HevTaskIOYielder yielder,
                                   void *yielder_data);

/**
 * hev_task_cio_read_dgram:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @addr: (out): address
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The read_dgram function shall attempt to read @count bytes from @self,
 * into the buffer pointed to by @buf.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_read_dgram (HevTaskCIO *self, void *buf, size_t count,
                                 void *addr, HevTaskIOYielder yielder,
                                 void *yielder_data);

/**
 * hev_task_cio_readv_dgram:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @addr: (out): address
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The readv_dgram function shall attempt to read bytes from @self,
 * into the buffer pointed to by @iov.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_readv_dgram (HevTaskCIO *self, const struct iovec *iov,
                                  int iovcnt, void *addr,
                                  HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_write_dgram:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @addr: address
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The write_dgram function shall attempt to write @count bytes from
 * the buffer pointed to by @buf to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_write_dgram (HevTaskCIO *self, const void *buf,
                                  size_t count, const void *addr,
                                  HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_writev_dgram:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @addr: address
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The writev_dgram function shall attempt to write bytes from the buffer
 * pointed to by @iov to @self.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
ssize_t hev_task_cio_writev_dgram (HevTaskCIO *self, const struct iovec *iov,
                                   int iovcnt, const void *addr,
                                   HevTaskIOYielder yielder,
                                   void *yielder_data);

/**
 * hev_task_cio_flush:
 * @self: a #HevTaskCIO
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The flush function normally writes out any internally buffered data.
 *
 * Returns: When successful, returns zero. otherwise, returns -1.
 *
 * Since: 5.3
 */
int hev_task_cio_flush (HevTaskCIO *self, HevTaskIOYielder yielder,
                        void *yielder_data);

/**
 * hev_task_cio_splice:
 * @a: a #HevTaskCIO
 * @b: a #HevTaskCIO
 * @buf_size: buffer length
 * @yielder: a #HevTaskIOYielder
 * @yielder_data: user data
 *
 * The splice moves data between two CIOs until one error or closed.
 *
 * Since: 5.3
 */
void hev_task_cio_splice (HevTaskCIO *a, HevTaskCIO *b, size_t buf_size,
                          HevTaskIOYielder yielder, void *yielder_data);

/**
 * hev_task_cio_next_read:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 *
 * Call next #HevTaskCIO read.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_read (HevTaskCIO *self, void *buf, size_t count)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->read (next, buf, count);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_readv:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 *
 * Call next #HevTaskCIO readv.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_readv (HevTaskCIO *self, const struct iovec *iov, int iovcnt)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->readv (next, iov, iovcnt);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_write:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 *
 * Call next #HevTaskCIO write.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_write (HevTaskCIO *self, const void *buf, size_t count)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->write (next, buf, count);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_writev:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 *
 * Call next #HevTaskCIO writev.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_writev (HevTaskCIO *self, const struct iovec *iov, int iovcnt)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->writev (next, iov, iovcnt);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_read_dgram:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @addr: (out): address
 *
 * Call next #HevTaskCIO read.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_read_dgram (HevTaskCIO *self, void *buf, size_t count,
                              void *addr)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->read_dgram (next, buf, count, addr);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_readv_dgram:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @addr: (out): address
 *
 * Call next #HevTaskCIO readv.
 *
 * Returns: the number of bytes actually read
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_readv_dgram (HevTaskCIO *self, const struct iovec *iov,
                               int iovcnt, void *addr)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->readv_dgram (next, iov, iovcnt, addr);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_write_dgram:
 * @self: a #HevTaskCIO
 * @buf: buffer
 * @count: buffer length
 * @addr: address
 *
 * Call next #HevTaskCIO write.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_write_dgram (HevTaskCIO *self, const void *buf, size_t count,
                               const void *addr)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->write_dgram (next, buf, count, addr);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_writev_dgram:
 * @self: a #HevTaskCIO
 * @iov: io vector
 * @iovcnt: io vector count
 * @addr: address
 *
 * Call next #HevTaskCIO writev.
 *
 * Returns: the number of bytes actually write
 *
 * Since: 5.3
 */
static inline ssize_t
hev_task_cio_next_writev_dgram (HevTaskCIO *self, const struct iovec *iov,
                                int iovcnt, const void *addr)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    ssize_t res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->writev_dgram (next, iov, iovcnt, addr);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_ctrl:
 * @self: a #HevTaskCIO
 * @ctrl: a #HevTaskCIOCtrl
 * @larg: argument
 * @parg: argument
 *
 * Call next #HevTaskCIO ctrl.
 *
 * Returns: When successful, returns zero. otherwise, returns -1.
 *
 * Since: 5.3
 */
static inline long
hev_task_cio_next_ctrl (HevTaskCIO *self, int ctrl, long larg, void *parg)
{
    HevTaskCIO *next = self->next;
    HevTaskCIOClass *nkptr;
    long res;

    if (!next) {
        self->err = 0;
        return -1;
    }

    nkptr = HEV_OBJECT_GET_CLASS (next);
    res = nkptr->ctrl (next, ctrl, larg, parg);
    self->err = next->err;

    return res;
}

/**
 * hev_task_cio_next_destruct:
 * @self: a #HevTaskCIO
 *
 * Call next #HevTaskCIO destruct.
 *
 * Since: 5.3
 */
static inline void
hev_task_cio_next_destruct (HevTaskCIO *self)
{
    HevTaskCIO *next = self->next;
    HevObjectClass *nkptr;

    if (!next)
        return;

    nkptr = HEV_OBJECT_GET_CLASS (next);
    nkptr->destruct (HEV_OBJECT (next));
}

#ifdef __cplusplus
}
#endif

#endif /* __HEV_TASK_CIO_H__ */