Fix PowerSaveBlocker crash in Android WebView
[chromium-blink-merge.git] / third_party / usrsctp / localchanges.patch
blob83029a8cbe70ed4766c95b5467aa42b475a376cb
1 Binary files usrsctplib/.DS_Store and overrides/usrsctplib/.DS_Store differ
2 Only in usrsctplib: .cvsignore
3 Only in usrsctplib: .git
4 Only in usrsctplib: Makefile.am
5 Only in usrsctplib: Makefile.nmake
6 Only in usrsctplib/netinet: sctp.h
7 Only in usrsctplib/netinet: sctp_asconf.c
8 Only in usrsctplib/netinet: sctp_asconf.h
9 Only in usrsctplib/netinet: sctp_auth.c
10 diff -PcrB usrsctplib/netinet/sctp_auth.h overrides/usrsctplib/netinet/sctp_auth.h
11 *** usrsctplib/netinet/sctp_auth.h 2013-07-26 05:00:15.000000000 -0400
12 --- overrides/usrsctplib/netinet/sctp_auth.h 2013-06-18 11:40:34.000000000 -0400
13 ***************
14 *** 38,43 ****
15 --- 38,44 ----
16 #ifndef _NETINET_SCTP_AUTH_H_
17 #define _NETINET_SCTP_AUTH_H_
19 + #include <netinet/sctp_sha1.h>
21 /* digest lengths */
22 #define SCTP_AUTH_DIGEST_LEN_SHA1 20
23 Only in usrsctplib/netinet: sctp_bsd_addr.c
24 Only in usrsctplib/netinet: sctp_bsd_addr.h
25 Only in usrsctplib/netinet: sctp_callout.c
26 Only in usrsctplib/netinet: sctp_callout.h
27 Only in usrsctplib/netinet: sctp_cc_functions.c
28 Only in usrsctplib/netinet: sctp_constants.h
29 Only in usrsctplib/netinet: sctp_crc32.c
30 Only in usrsctplib/netinet: sctp_crc32.h
31 Only in usrsctplib/netinet: sctp_dtrace_declare.h
32 Only in usrsctplib/netinet: sctp_dtrace_define.h
33 Only in usrsctplib/netinet: sctp_hashdriver.c
34 Only in usrsctplib/netinet: sctp_hashdriver.h
35 Only in usrsctplib/netinet: sctp_header.h
36 Only in usrsctplib/netinet: sctp_indata.c
37 Only in usrsctplib/netinet: sctp_indata.h
38 Only in usrsctplib/netinet: sctp_input.c
39 Only in usrsctplib/netinet: sctp_input.h
40 Only in usrsctplib/netinet: sctp_lock_userspace.h
41 diff -PcrB usrsctplib/netinet/sctp_nss_sha1.c overrides/usrsctplib/netinet/sctp_nss_sha1.c
42 *** usrsctplib/netinet/sctp_nss_sha1.c 1969-12-31 19:00:00.000000000 -0500
43 --- overrides/usrsctplib/netinet/sctp_nss_sha1.c 2013-07-29 21:32:35.000000000 -0400
44 ***************
45 *** 0 ****
46 --- 1,64 ----
47 + /*-
48 + * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
49 + * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
50 + * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
51 + *
52 + * Redistribution and use in source and binary forms, with or without
53 + * modification, are permitted provided that the following conditions are met:
54 + *
55 + * a) Redistributions of source code must retain the above copyright notice,
56 + * this list of conditions and the following disclaimer.
57 + *
58 + * b) Redistributions in binary form must reproduce the above copyright
59 + * notice, this list of conditions and the following disclaimer in
60 + * the documentation and/or other materials provided with the distribution.
61 + *
62 + * c) Neither the name of Cisco Systems, Inc. nor the names of its
63 + * contributors may be used to endorse or promote products derived
64 + * from this software without specific prior written permission.
65 + *
66 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
67 + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
68 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
69 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
70 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
71 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
72 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
73 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
74 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
75 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
76 + * THE POSSIBILITY OF SUCH DAMAGE.
77 + */
79 + #ifdef __FreeBSD__
80 + #include <sys/cdefs.h>
81 + __FBSDID("$FreeBSD$");
82 + #endif
84 + #ifdef SCTP_USE_NSS_SHA1
85 + #include <netinet/sctp_nss_sha1.h>
87 + /* A SHA-1 Digest is 160 bits, or 20 bytes */
88 + #define SHA_DIGEST_LENGTH (20)
90 + void
91 + SCTP_NSS_SHA1_Init(struct sha1_context *ctx)
92 + {
93 + ctx->pk11_ctx = PK11_CreateDigestContext(SEC_OID_SHA1);
94 + PK11_DigestBegin(ctx->pk11_ctx);
95 + }
97 + void
98 + SCTP_NSS_SHA1_Update(struct sha1_context *ctx, const unsigned char *ptr, int siz)
99 + {
100 + PK11_DigestOp(ctx->pk11_ctx, ptr, siz);
103 + void
104 + SCTP_NSS_SHA1_Final(unsigned char *digest, struct sha1_context *ctx)
106 + unsigned int output_len = 0;
107 + PK11_DigestFinal(ctx->pk11_ctx, digest, &output_len, SHA_DIGEST_LENGTH);
108 + PK11_DestroyContext(ctx->pk11_ctx, PR_TRUE);
110 + #endif
111 diff -PcrB usrsctplib/netinet/sctp_nss_sha1.h overrides/usrsctplib/netinet/sctp_nss_sha1.h
112 *** usrsctplib/netinet/sctp_nss_sha1.h 1969-12-31 19:00:00.000000000 -0500
113 --- overrides/usrsctplib/netinet/sctp_nss_sha1.h 2013-07-26 03:58:48.000000000 -0400
114 ***************
115 *** 0 ****
116 --- 1,64 ----
117 + /*-
118 + * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
119 + * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
120 + * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
122 + * Redistribution and use in source and binary forms, with or without
123 + * modification, are permitted provided that the following conditions are met:
125 + * a) Redistributions of source code must retain the above copyright notice,
126 + * this list of conditions and the following disclaimer.
128 + * b) Redistributions in binary form must reproduce the above copyright
129 + * notice, this list of conditions and the following disclaimer in
130 + * the documentation and/or other materials provided with the distribution.
132 + * c) Neither the name of Cisco Systems, Inc. nor the names of its
133 + * contributors may be used to endorse or promote products derived
134 + * from this software without specific prior written permission.
136 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
137 + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
138 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
139 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
140 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
141 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
142 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
143 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
144 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
145 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
146 + * THE POSSIBILITY OF SUCH DAMAGE.
147 + */
149 + #ifdef __FreeBSD__
150 + #include <sys/cdefs.h>
151 + __FBSDID("$FreeBSD$");
152 + #endif
154 + #ifndef __SCTP_NSS_SHA1_h__
155 + #define __SCTP_NSS_SHA1_h__
157 + #ifdef __Userspace_os_Darwin
158 + #define __APPLE__
159 + #endif
161 + #include <sys/types.h>
162 + #include <pk11pub.h>
164 + #ifdef __Userspace_os_Darwin
165 + #undef __APPLE__
166 + #endif
168 + struct sha1_context {
169 + struct PK11Context *pk11_ctx;
170 + }; // Opaque structure.
172 + typedef struct sha1_context SHA1_CTX;
174 + #if defined(_KERNEL) || defined(__Userspace__)
175 + #define SHA1_Init SCTP_NSS_SHA1_Init
176 + #define SHA1_Update SCTP_NSS_SHA1_Update
177 + #define SHA1_Final SCTP_NSS_SHA1_Final
179 + #endif /* _KERNEL */
180 + #endif /* __SCTP_NSS_SHA1_h__ */
181 diff -PcrB usrsctplib/netinet/sctp_openssl_sha1.h overrides/usrsctplib/netinet/sctp_openssl_sha1.h
182 *** usrsctplib/netinet/sctp_openssl_sha1.h 1969-12-31 19:00:00.000000000 -0500
183 --- overrides/usrsctplib/netinet/sctp_openssl_sha1.h 2013-06-18 11:40:34.000000000 -0400
184 ***************
185 *** 0 ****
186 --- 1,48 ----
187 + /*-
188 + * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
189 + * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
190 + * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
192 + * Redistribution and use in source and binary forms, with or without
193 + * modification, are permitted provided that the following conditions are met:
195 + * a) Redistributions of source code must retain the above copyright notice,
196 + * this list of conditions and the following disclaimer.
198 + * b) Redistributions in binary form must reproduce the above copyright
199 + * notice, this list of conditions and the following disclaimer in
200 + * the documentation and/or other materials provided with the distribution.
202 + * c) Neither the name of Cisco Systems, Inc. nor the names of its
203 + * contributors may be used to endorse or promote products derived
204 + * from this software without specific prior written permission.
206 + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
207 + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
208 + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
209 + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
210 + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
211 + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
212 + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
213 + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
214 + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
215 + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
216 + * THE POSSIBILITY OF SUCH DAMAGE.
217 + */
219 + #ifdef __FreeBSD__
220 + #include <sys/cdefs.h>
221 + __FBSDID("$FreeBSD$");
222 + #endif
224 + #ifndef __SCTP_OPENSSL_SHA1_h__
225 + #define __SCTP_OPENSSL_SHA1_h__
227 + #include <openssl/md5.h>
228 + #include <openssl/sha.h>
229 + /* libssl-dev calls this SHA_CTX, but it's refered to as SHA1_CTX within the
230 + * SCTP stack code so here we typedef (or macro?) to equate the two.
231 + */
232 + typedef SHA_CTX SHA1_CTX;
234 + #endif
235 diff -PcrB usrsctplib/netinet/sctp_os.h overrides/usrsctplib/netinet/sctp_os.h
236 *** usrsctplib/netinet/sctp_os.h 2013-07-26 05:00:15.000000000 -0400
237 --- overrides/usrsctplib/netinet/sctp_os.h 2013-06-18 11:40:34.000000000 -0400
238 ***************
239 *** 73,79 ****
240 #endif
242 #if defined(__APPLE__)
243 ! #include <netinet/sctp_os_macosx.h>
244 #endif
246 #if defined(__Panda__)
247 --- 73,80 ----
248 #endif
250 #if defined(__APPLE__)
251 ! #undef __APPLE__
252 ! // #include <netinet/sctp_os_macosx.h>
253 #endif
255 #if defined(__Panda__)
256 diff -PcrB usrsctplib/netinet/sctp_os_userspace.h overrides/usrsctplib/netinet/sctp_os_userspace.h
257 *** usrsctplib/netinet/sctp_os_userspace.h 2013-07-26 05:03:12.000000000 -0400
258 --- overrides/usrsctplib/netinet/sctp_os_userspace.h 2013-07-26 04:46:41.000000000 -0400
259 ***************
260 *** 996,1012 ****
261 #define SCTP_READ_RANDOM(buf, len) read_random(buf, len)
264 - #ifdef USE_SCTP_SHA1
265 #include <netinet/sctp_sha1.h>
266 ! #else
267 ! #if 0 /*this was old _KERNEL code... */
268 ! #include <crypto/sha1.h>
269 ! /* map standard crypto API names */
270 ! #define SHA1_Init SHA1Init
271 ! #define SHA1_Update SHA1Update
272 ! #define SHA1_Final(x,y) SHA1Final((caddr_t)x, y)
273 ! #endif
274 ! #endif
276 #if defined(HAVE_SHA2)
277 #include <crypto/sha2/sha2.h>
278 --- 996,1003 ----
279 #define SCTP_READ_RANDOM(buf, len) read_random(buf, len)
282 #include <netinet/sctp_sha1.h>
285 #if defined(HAVE_SHA2)
286 #include <crypto/sha2/sha2.h>
287 Only in usrsctplib/netinet: sctp_output.c
288 Only in usrsctplib/netinet: sctp_output.h
289 Only in usrsctplib/netinet: sctp_pcb.c
290 Only in usrsctplib/netinet: sctp_pcb.h
291 Only in usrsctplib/netinet: sctp_peeloff.c
292 Only in usrsctplib/netinet: sctp_peeloff.h
293 Only in usrsctplib/netinet: sctp_process_lock.h
294 Only in usrsctplib/netinet: sctp_sha1.c
295 diff -PcrB usrsctplib/netinet/sctp_sha1.h overrides/usrsctplib/netinet/sctp_sha1.h
296 *** usrsctplib/netinet/sctp_sha1.h 2013-07-26 05:00:15.000000000 -0400
297 --- overrides/usrsctplib/netinet/sctp_sha1.h 2013-07-29 23:00:51.000000000 -0400
298 ***************
299 *** 36,46 ****
300 #endif
303 ! #ifndef __SCTP_SLA1_h__
304 ! #define __SCTP_SLA1_h__
306 #include <sys/types.h>
308 struct sha1_context {
309 unsigned int A;
310 unsigned int B;
311 --- 36,69 ----
312 #endif
315 ! #ifndef __SCTP_SHA1_h__
316 ! #define __SCTP_SHA1_h__
318 #include <sys/types.h>
320 + #if !defined(SSL_USE_OPENSSL) && !defined(SSL_USE_NSS)
321 + #if defined(WIN32)
323 + #define SCTP_USE_SCTP_SHA1 1
325 + #else // defined(WIN32)
327 + #if defined(HAVE_OPENSSL_SSL_H)
328 + #define SSL_USE_OPENSSL 1
329 + #elif defined(HAVE_NSS_SSL_H)
330 + #define SSL_USE_NSS 1
331 + #else
332 + #define SCTP_USE_SCTP_SHA1
333 + #endif
335 + #endif // !defined(WIN32)
336 + #endif
338 + #if defined(SSL_USE_NSS)
339 + #include <netinet/sctp_nss_sha1.h>
340 + #elif defined(SSL_USE_OPENSSL)
341 + #include <netinet/sctp_openssl_sha1.h>
342 + #else // SCTP_USE_SCTP_SHA1
343 struct sha1_context {
344 unsigned int A;
345 unsigned int B;
346 ***************
347 *** 95,98 ****
348 void SHA1_Final(unsigned char *, struct sha1_context *);
350 #endif /* _KERNEL */
351 ! #endif
352 --- 118,122 ----
353 void SHA1_Final(unsigned char *, struct sha1_context *);
355 #endif /* _KERNEL */
356 ! #endif /* !defined(SSL_USE_OPENSSL) && !defined(SSL_USE_NSS) */
357 ! #endif /* __SCTP_SHA1_h__ */
358 Only in usrsctplib/netinet: sctp_ss_functions.c
359 Only in usrsctplib/netinet: sctp_structs.h
360 Only in usrsctplib/netinet: sctp_sysctl.c
361 Only in usrsctplib/netinet: sctp_sysctl.h
362 Only in usrsctplib/netinet: sctp_timer.c
363 Only in usrsctplib/netinet: sctp_timer.h
364 Only in usrsctplib/netinet: sctp_uio.h
365 Only in usrsctplib/netinet: sctp_userspace.c
366 Only in usrsctplib/netinet: sctp_usrreq.c
367 Only in usrsctplib/netinet: sctp_var.h
368 Only in usrsctplib/netinet: sctputil.c
369 Only in usrsctplib/netinet: sctputil.h
370 Only in usrsctplib: netinet6
371 Only in usrsctplib: user_atomic.h
372 Only in usrsctplib: user_environment.c
373 Only in usrsctplib: user_environment.h
374 Only in usrsctplib: user_inpcb.h
375 Only in usrsctplib: user_ip6_var.h
376 Only in usrsctplib: user_ip_icmp.h
377 Only in usrsctplib: user_malloc.h
378 Only in usrsctplib: user_mbuf.c
379 Only in usrsctplib: user_mbuf.h
380 Only in usrsctplib: user_queue.h
381 Only in usrsctplib: user_recv_thread.c
382 Only in usrsctplib: user_recv_thread.h
383 Only in usrsctplib: user_route.h
384 Only in usrsctplib: user_sctp_timer_iterate.c
385 Only in usrsctplib: user_socket.c
386 Only in usrsctplib: user_socketvar.h
387 Only in usrsctplib: user_uma.h
388 Only in usrsctplib: usrsctp.h