aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fr/fr_test.c
blob: 980259be4b15e5702aead3a95abe053e60074b45 (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
/*
 * (C) 2012 by Holger Hans Peter Freyther <zecke@selfish.org>
 * All Rights Reserved
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#define _GNU_SOURCE
#include <osmocom/core/application.h>

#include <osmocom/gprs/gprs_ns.h>

#include <sys/types.h>
#include <sys/socket.h>

#include <stdio.h>
#include <stdlib.h>

#include <dlfcn.h>

int (*real_socket)(int, int, int);

static int GR_SOCKET = -1;

static void resolve_real(void)
{
	if (real_socket)
		return;
	real_socket = dlsym(RTLD_NEXT, "socket");
}

int socket(int domain, int type, int protocol)
{
	int fd;

	resolve_real();
	if (domain != AF_INET || type != SOCK_RAW || protocol != IPPROTO_GRE)
		return (*real_socket)(domain, type, protocol);

	/* Now call socket with a normal UDP/IP socket and assign to GR_SOCKET */
	fd = (*real_socket)(domain, SOCK_DGRAM, IPPROTO_UDP);
	GR_SOCKET = fd;
	return fd;
}

void bssgp_prim_cb()
{
}

static const struct log_info log_info = {};

int main(int argc, char **argv)
{
	int rc;
	struct gprs_ns_inst *nsi;

	log_init(&log_info, NULL);

	nsi = gprs_ns_instantiate(NULL, NULL);
	nsi->frgre.enabled = 1;

	rc = gprs_ns_frgre_listen(nsi);
	printf("Result: %s\n", rc == GR_SOCKET ? "PASSED" : "FAILED");
	return rc == GR_SOCKET ? EXIT_SUCCESS : EXIT_FAILURE;
}