summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/transport/third_party/nICEr/src/stun/nr_socket_turn.c
blob: 1a0162b13e1b350f059ed831b506f4d95d4c8efd (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
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
/*
Copyright (c) 2007, Adobe Systems, Incorporated
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.

* Neither the name of Adobe Systems, Network Resonance nor the names of its
  contributors may be used to endorse or promote products derived from
  this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifdef USE_TURN

#include <csi_platform.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <assert.h>

#include "stun.h"
#include "turn_client_ctx.h"
#include "nr_socket_turn.h"


static char *nr_socket_turn_magic_cookie = "nr_socket_turn";

typedef struct nr_socket_turn_ {
  char *magic_cookie;
  nr_turn_client_ctx *turn;
} nr_socket_turn;


static int nr_socket_turn_destroy(void **objp);
static int nr_socket_turn_sendto(void *obj,const void *msg, size_t len,
  int flags, const nr_transport_addr *to);
static int nr_socket_turn_recvfrom(void *obj,void * restrict buf,
  size_t maxlen, size_t *len, int flags, nr_transport_addr *from);
static int nr_socket_turn_getfd(void *obj, NR_SOCKET *fd);
static int nr_socket_turn_getaddr(void *obj, nr_transport_addr *addrp);
static int nr_socket_turn_close(void *obj);

static nr_socket_vtbl nr_socket_turn_vtbl={
  2,
  nr_socket_turn_destroy,
  nr_socket_turn_sendto,
  nr_socket_turn_recvfrom,
  nr_socket_turn_getfd,
  nr_socket_turn_getaddr,
  0,
  0,
  0,
  nr_socket_turn_close,
  0,
  0
};

int nr_socket_turn_create(nr_socket **sockp)
  {
    int r,_status;
    nr_socket_turn *sturn=0;

    if(!(sturn=RCALLOC(sizeof(nr_socket_turn))))
      ABORT(R_NO_MEMORY);

    sturn->magic_cookie = nr_socket_turn_magic_cookie;

    if(r=nr_socket_create_int(sturn, &nr_socket_turn_vtbl, sockp))
      ABORT(r);

    _status=0;
  abort:
    if(_status){
      nr_socket_turn_destroy((void **)&sturn);
    }
    return(_status);
  }

static int nr_socket_turn_destroy(void **objp)
  {
    int _status;
    nr_socket_turn *sturn;

    if(!objp || !*objp)
      return(0);

    sturn=*objp;
    *objp=0;

    assert(sturn->magic_cookie == nr_socket_turn_magic_cookie);

    /* we don't own the socket, so don't destroy it */

    RFREE(sturn);

    _status=0;
    return(_status);
  }

static int nr_socket_turn_sendto(void *obj,const void *msg, size_t len,
  int flags, const nr_transport_addr *addr)
  {
    int r,_status;
    nr_socket_turn *sturn=obj;

    assert(sturn->magic_cookie == nr_socket_turn_magic_cookie);
    assert(sturn->turn);

    if ((r = nr_turn_client_send_indication(sturn->turn, msg, len, flags,
                                            addr)))
      ABORT(r);

    _status=0;
  abort:
    return(_status);
  }

static int nr_socket_turn_recvfrom(void *obj,void * restrict buf,
  size_t maxlen, size_t *len, int flags, nr_transport_addr *addr)
  {
    /* Reading from TURN sockets is done by the indication
       processing code in turn_client_ctx. */
    assert(0);

    return(R_INTERNAL);
  }

static int nr_socket_turn_getfd(void *obj, NR_SOCKET *fd)
  {
    /* You should never directly be touching this fd. */
    assert(0);

    return(R_INTERNAL);
  }

static int nr_socket_turn_getaddr(void *obj, nr_transport_addr *addrp)
  {
    nr_socket_turn *sturn=obj;
    int r, _status;

    assert(sturn->magic_cookie == nr_socket_turn_magic_cookie);
    assert(sturn->turn);

    /* This returns the relayed address */
    if ((r=nr_turn_client_get_relayed_address(sturn->turn, addrp)))
      ABORT(r);

    _status=0;
 abort:
    return(_status);
  }

static int nr_socket_turn_close(void *obj)
  {
    /* No-op */
#ifndef NDEBUG
    nr_socket_turn *sturn=obj;
    assert(sturn->magic_cookie == nr_socket_turn_magic_cookie);
#endif

    return 0;
  }

int nr_socket_turn_set_ctx(nr_socket *sock, nr_turn_client_ctx *ctx)
{
  nr_socket_turn *sturn=(nr_socket_turn*)sock->obj;
  assert(sturn->magic_cookie == nr_socket_turn_magic_cookie);
  assert(!sturn->turn);

  sturn->turn = ctx;

  return 0;
}

#endif /* USE_TURN */