forked from NEAT-project/neat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
neat_qos.c
89 lines (77 loc) · 2.05 KB
/
neat_qos.c
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
#include <sys/socket.h>
#include <stdint.h>
#include "neat.h"
#include "neat_qos.h"
#if defined(USRSCTP_SUPPORT)
#include "neat_usrsctp_internal.h"
#include <usrsctp.h>
#endif
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
#include "neat_bsd_internal.h"
#endif
uint8_t
nt_map_qos_to_dscp(uint8_t qos)
{
/*
* Mask out the top two bits of the NEAT QoS, the TOS field uses the bottom
* two bits for ECN, shift up to allow for this.
*/
return (0x3F & qos) << 2;
}
neat_error_code
nt_set_tos(struct neat_ctx *ctx, struct neat_flow *flow)
{
uint8_t dscp;
int tos;
dscp = nt_map_qos_to_dscp(flow->qos);
tos = dscp | flow->ecn;
switch (flow->socket->stack) {
#if defined(SCTP_PEER_ADDR_PARAMS)
case NEAT_STACK_SCTP:
{
struct sctp_paddrparams params;
params.spp_dscp = dscp;
params.spp_flags = SPP_DSCP;
#if defined(USRSCTP_SUPPORT)
if(usrsctp_setsockopt(flow->socket->usrsctp_socket,
IPPROTO_SCTP, SCTP_PEER_ADDR_PARAMS, ¶ms, sizeof(params)) == -1) {
return NEAT_ERROR_UNABLE;
}
#else
if(setsockopt(flow->socket->fd,
IPPROTO_SCTP, SCTP_PEER_ADDR_PARAMS, ¶ms, sizeof(params)) == -1) {
return NEAT_ERROR_UNABLE;
}
#endif //USRSCTP
return NEAT_OK;
}
#endif //SCTP_PEER_ADDR_PARAMS
case NEAT_STACK_UDP:
{
if(setsockopt(flow->socket->fd,
IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) == -1) {
return NEAT_ERROR_UNABLE;
}
return NEAT_OK;
}
default:
return NEAT_OK;
}
}
neat_error_code
neat_set_qos(struct neat_ctx *ctx, struct neat_flow *flow, uint8_t qos)
{
flow->qos = qos;
return nt_set_tos(ctx, flow);
}
int
neat_get_qos(struct neat_ctx *ctx, struct neat_flow *flow)
{
return flow->qos;
}
neat_error_code
neat_set_ecn(struct neat_ctx *ctx, struct neat_flow *flow, uint8_t ecn)
{
flow->ecn = 0x03 & ecn;
return nt_set_tos(ctx, flow);
}