aboutsummaryrefslogtreecommitdiff
path: root/src/misc.h
blob: 39fe367a67d097a6bc62ce6f821fa8b007391257 (plain)
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
/* SPDX-License-Identifier: BSD-3-Clause */
/*
 * Copyright (c) 1995 Danny Gasparovski.
 */

#ifndef MISC_H
#define MISC_H

#include "libslirp.h"

struct gfwd_list {
    SlirpWriteCb write_cb;
    void *opaque;
    struct in_addr ex_addr; /* Server address */
    int ex_fport; /* Port to telnet to */
    char *ex_exec; /* Command line of what to exec */
    char *ex_unix; /* unix socket */
    struct gfwd_list *ex_next;
};

#define EMU_NONE 0x0

/* TCP emulations */
#define EMU_CTL 0x1
#define EMU_FTP 0x2
#define EMU_KSH 0x3
#define EMU_IRC 0x4
#define EMU_REALAUDIO 0x5
#define EMU_RLOGIN 0x6
#define EMU_IDENT 0x7

#define EMU_NOCONNECT 0x10 /* Don't connect */

struct tos_t {
    uint16_t lport;
    uint16_t fport;
    uint8_t tos;
    uint8_t emu;
};

struct emu_t {
    uint16_t lport;
    uint16_t fport;
    uint8_t tos;
    uint8_t emu;
    struct emu_t *next;
};

struct slirp_quehead {
    struct slirp_quehead *qh_link;
    struct slirp_quehead *qh_rlink;
};

/* Insert element a into queue b */
void slirp_insque(void *a, void *b);

/* Remove element a from its queue */
void slirp_remque(void *a);

/* Run the given command in the background, and expose its output as a socket */
int fork_exec(struct socket *so, const char *ex);

/* Create a Unix socket, and expose it as a socket */
int open_unix(struct socket *so, const char *unixsock);

/* Add a guest forward on the given address and port, with guest data being
 * forwarded by calling write_cb */
struct gfwd_list *add_guestfwd(struct gfwd_list **ex_ptr, SlirpWriteCb write_cb,
                               void *opaque, struct in_addr addr, int port);

/* Run the given command in the backaground, and send its output to the guest on
 * the given address and port */
struct gfwd_list *add_exec(struct gfwd_list **ex_ptr, const char *cmdline,
                           struct in_addr addr, int port);

/* Create a Unix socket, and expose it to the guest on the given address and
 * port */
struct gfwd_list *add_unix(struct gfwd_list **ex_ptr, const char *unixsock,
                           struct in_addr addr, int port);

/* Remove the guest forward bound to the given address and port */
int remove_guestfwd(struct gfwd_list **ex_ptr, struct in_addr addr, int port);

/* Bind the socket to the outbound address specified in the slirp configuration */
int slirp_bind_outbound(struct socket *so, unsigned short af);

#endif