This file is indexed.

/usr/include/sofia-sip-1.12/sofia-sip/stun_common.h is in libsofia-sip-ua-dev 1.12.11+20110422-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * This file is part of the Sofia-SIP package
 *
 * Copyright (C) 2005 Nokia Corporation.
 *
 * Contact: Pekka Pessi <pekka.pessi@nokia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef STUN_COMMON_H
/** Defined when <sofia-sip/stun_common.h> has been included. */
#define STUN_COMMON_H

/**
 * @file sofia-sip/stun_common.h
 * @brief
 *
 * @author Tat Chan <Tat.Chan@nokia.com>
 *
 * @date Created: Fri Oct  3 13:39:55 2003 ppessi
 *
 */

#include <sofia-sip/su_localinfo.h>

SOFIA_BEGIN_DECLS

/* Define Message Types */
#define BINDING_REQUEST               0x0001
#define BINDING_RESPONSE              0x0101
#define BINDING_ERROR_RESPONSE        0x0111
#define SHARED_SECRET_REQUEST         0x0002
#define SHARED_SECRET_RESPONSE        0x0102
#define SHARED_SECRET_ERROR_RESPONSE  0x0112

/* Define Attribute Types */
#define MAPPED_ADDRESS                0x0001
#define RESPONSE_ADDRESS              0x0002
#define CHANGE_REQUEST                0x0003
#define SOURCE_ADDRESS                0x0004
#define CHANGED_ADDRESS               0x0005
#define USERNAME                      0x0006
#define PASSWORD                      0x0007
#define MESSAGE_INTEGRITY             0x0008
#define ERROR_CODE                    0x0009
#define UNKNOWN_ATTRIBUTES            0x000a
#define REFLECTED_FROM                0x000b
#define STUN_A_REALM                  0x0014 /* XXX: check value in 3489bis-05+ */
#define STUN_A_NONCE                  0x0015 /* XXX: check value in 3489bis-05+ */
#define STUN_A_XOR_MAPPED_ADDRESS     0x0020
#define STUN_A_FINGERPRINT            0x0023
#define STUN_A_SERVER                 0x8022
#define STUN_A_ALTERNATE_SERVER       0x8023
#define STUN_A_REFRESH_INTERVAL       0x8024

/* Defines for mandatory and optional attributes */
#define STUN_A_LAST_MANDATORY         0x0023 /**< largest attribute in the current
						spec (see above for exceptions
						for buggy servers) */
#define STUN_A_OPTIONAL               0x7fff

/* Compability attribute types */
#define STUN_A_ALTERNATE_SERVER_DEP   0x000e /**< historic from early fc3489bis drafts */
#define STUN_A_BUGGYSERVER_XORONLY    0x0021 /**< workaround for stund-0.94 and older */
#define STUN_A_BUGGYSERVER_SERVER     0x0022 /**< workaround for stund-0.94 and older */
#define LARGEST_ATTRIBUTE             STUN_A_LAST_MANDATORY /**< deprecated API */
#define OPTIONAL_ATTRIBUTE            STUN_A_OPTIONAL /**< deprecated API */

/* Stun response codes */
#define STUN_400_BAD_REQUEST             400
#define STUN_401_UNAUTHORIZED            401
#define STUN_420_UNKNOWN_ATTRIBUTE       420
#define STUN_430_STALE_CREDENTIALS       430
#define STUN_431_INTEGRITY_CHECK_FAILURE 431
#define STUN_432_MISSING_USERNAME        432
#define STUN_433_USE_TLS                 433
#define STUN_500_SERVER_ERROR            500
#define STUN_600_GLOBAL_FAILURE          600

/* flags for CHANGE_REQUEST */
#define STUN_CR_CHANGE_IP               0x0004
#define STUN_CR_CHANGE_PORT             0x0002

/* mask for ERROR_CODE */
#define STUN_EC_CLASS                   0x0070
#define STUN_EC_NUM                     0x000F

#define RAND_MAX_16                     65535

#define STUN_TID_BYTES                  16

/* other protocol specific parameters */
#define STUN_MAX_RETRX                  5 /* should be 8? */
#define STUN_MAX_RETRX_INT              1600  /**< max retrx interval in
						   millisec */
#define STUN_DEFAULT_PORT               3478  /**< from RFC3489 */

/*
 * STUN header format
 */
  /*
    0                   1                   2                   3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |         message type          |       message length          |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
   |                                                               |
   |                       Transaction ID                          |
   |                                                               |
   |                                                               |
   +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  */
struct stun_buffer_s {
  unsigned char *data;      /**< Pointer to data */
  unsigned size;            /**< Size of buffer */
};

typedef struct stun_buffer_s stun_buffer_t;

typedef struct {
  uint16_t msg_type;        /**< message type */
  uint16_t msg_len;         /**< message length */
  uint8_t tran_id[16];      /**< transaction id, 128 bits */
} stun_hdr_t;

typedef struct stun_attr_s {
  uint16_t attr_type;       /**< attribute type */
  void *pattr;              /**< pointer to corresponding attribute */
  stun_buffer_t enc_buf;    /**< encoded attribue */
  struct stun_attr_s *next; /**< next attribute */
} stun_attr_t;

typedef struct {
  stun_hdr_t stun_hdr;
  stun_attr_t *stun_attr;
  stun_buffer_t enc_buf;    /**< to store already encoded stun msg */
} stun_msg_t;

/* stun attribute definition */
/* stun_sockaddr_t is used for:
   MAPPED_ADDRESS
   RESPONSE_ADDRESS
   SOURCE_ADDRESS
   CHANGED_ADDRESS
   REFLECTED_FROM
*/
typedef struct sockaddr_in stun_attr_sockaddr_t;

/* CHANGE_REQUEST attribute */
typedef struct stun_attr_uint32_s {
  uint32_t value;
} stun_attr_uint32_t;

typedef stun_attr_uint32_t stun_attr_changerequest_t;

/* ERROR_CODE attribute */
typedef struct {
  int code;
  char *phrase;
} stun_attr_errorcode_t;

/* USERNAME attribute */
/* typedef struct {
  stun_buffer_t *uname;
} stun_attr_username_t;
*/
typedef stun_buffer_t stun_attr_username_t;

/* PASSWORD attribute */
typedef stun_buffer_t stun_attr_password_t;

/* UNKNOWN_ATTRIBUTES attribute */
typedef struct stun_attr_unknownattributes_s{
  uint16_t attr_type[2];
  struct stun_attr_unknownattributes_s *next;
} stun_attr_unknownattributes_t;

/* Common functions */
int stun_parse_message(stun_msg_t *msg);
int stun_parse_attribute(stun_msg_t *msg, unsigned char *p);
int stun_parse_attr_address(stun_attr_t *attr, const unsigned char *p, unsigned len);
int stun_parse_attr_error_code(stun_attr_t *attr, const unsigned char *p, unsigned len);
int stun_parse_attr_unknown_attributes(stun_attr_t *attr, const unsigned char *p, unsigned len);
int stun_parse_attr_uint32(stun_attr_t *attr, const unsigned char *p, unsigned len);
int stun_parse_attr_buffer(stun_attr_t *attr, const unsigned char *p, unsigned len);

stun_attr_t *stun_get_attr(stun_attr_t *attr, uint16_t attr_type);

int stun_encode_address(stun_attr_t *attr);
int stun_encode_uint32(stun_attr_t *attr);
int stun_encode_buffer(stun_attr_t *attr);
int stun_encode_error_code(stun_attr_t *attr);
int stun_encode_message_integrity(stun_attr_t *attr, unsigned char *buf, int len, stun_buffer_t *pwd);
int stun_encode_type_len(stun_attr_t *attr, uint16_t len);
int stun_encode_response_address(stun_attr_t *attr);

int stun_validate_message_integrity(stun_msg_t *msg, stun_buffer_t *pwd);

int stun_copy_buffer(stun_buffer_t *p, stun_buffer_t *p2);
void stun_init_buffer(stun_buffer_t *p);
int stun_free_buffer(stun_buffer_t *p);
int stun_free_message(stun_msg_t *msg);

int stun_init_message(stun_msg_t *msg);
/* int stun_send_message(int sockfd, struct sockaddr_in *to_addr, stun_msg_t *msg, stun_buffer_t *pwd); */
int stun_encode_message(stun_msg_t *msg, stun_buffer_t *pwd);

char const *stun_response_phrase(int status);
void debug_print(stun_buffer_t *buf);
char const *stun_attr_phrase(uint16_t type);

/**Determines and returns local IP address
 *
 * Address is determined using su_getlocalinfo() function.
 *
 * @param family        network address family in use
 * @return local ip address
 */
char *stun_determine_ip_address(int family);

SOFIA_END_DECLS

#endif /* !defined STUN_COMMON_H */