~ubuntu-branches/ubuntu/lucid/seamonkey/lucid-security

« back to all changes in this revision

Viewing changes to security/nss-fips/lib/ssl/sslmutex.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-07-29 21:29:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729212902-spm9kpvchp9udwbw
Tags: 1.1.11+nobinonly-0ubuntu1
* New security upstream release: 1.1.11 (LP: #218534)
  Fixes USN-602-1, USN-619-1, USN-623-1 and USN-629-1
* Refresh diverged patch:
  - update debian/patches/80_security_build.patch
* Fix FTBFS with missing -lfontconfig
  - add debian/patches/11_fix_ftbfs_with_fontconfig.patch
  - update debian/patches/series
* Build with default gcc (hardy: 4.2, intrepid: 4.3)
  - update debian/rules
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ***** BEGIN LICENSE BLOCK *****
 
2
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
3
 *
 
4
 * The contents of this file are subject to the Mozilla Public License Version
 
5
 * 1.1 (the "License"); you may not use this file except in compliance with
 
6
 * the License. You may obtain a copy of the License at
 
7
 * http://www.mozilla.org/MPL/
 
8
 *
 
9
 * Software distributed under the License is distributed on an "AS IS" basis,
 
10
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
11
 * for the specific language governing rights and limitations under the
 
12
 * License.
 
13
 *
 
14
 * The Original Code is the Netscape security libraries.
 
15
 *
 
16
 * The Initial Developer of the Original Code is
 
17
 * Netscape Communications Corporation.
 
18
 * Portions created by the Initial Developer are Copyright (C) 2001
 
19
 * the Initial Developer. All Rights Reserved.
 
20
 *
 
21
 * Contributor(s):
 
22
 *
 
23
 * Alternatively, the contents of this file may be used under the terms of
 
24
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
25
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
26
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
27
 * of those above. If you wish to allow use of your version of this file only
 
28
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
29
 * use your version of this file under the terms of the MPL, indicate your
 
30
 * decision by deleting the provisions above and replace them with the notice
 
31
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
32
 * the provisions above, a recipient may use your version of this file under
 
33
 * the terms of any one of the MPL, the GPL or the LGPL.
 
34
 *
 
35
 * ***** END LICENSE BLOCK ***** */
 
36
/* $Id: sslmutex.h,v 1.10 2004/04/27 23:04:39 gerv%gerv.net Exp $ */
 
37
#ifndef __SSLMUTEX_H_
 
38
#define __SSLMUTEX_H_ 1
 
39
 
 
40
/* What SSL really wants is portable process-shared unnamed mutexes in 
 
41
 * shared memory, that have the property that if the process that holds
 
42
 * them dies, they are released automatically, and that (unlike fcntl 
 
43
 * record locking) lock to the thread, not to the process.  
 
44
 * NSPR doesn't provide that.  
 
45
 * Windows has mutexes that meet that description, but they're not portable.  
 
46
 * POSIX mutexes are not automatically released when the holder dies, 
 
47
 * and other processes/threads cannot release the mutex on behalf of the 
 
48
 * dead holder.  
 
49
 * POSIX semaphores can be used to accomplish this on systems that implement 
 
50
 * process-shared unnamed POSIX semaphores, because a watchdog thread can 
 
51
 * discover and release semaphores that were held by a dead process.  
 
52
 * On systems that do not support process-shared POSIX unnamed semaphores, 
 
53
 * they can be emulated using pipes.  
 
54
 * The performance cost of doing that is not yet measured.
 
55
 *
 
56
 * So, this API looks a lot like POSIX pthread mutexes.
 
57
 */
 
58
 
 
59
#include "prtypes.h"
 
60
#include "prlock.h"
 
61
 
 
62
#if defined(WIN32)
 
63
 
 
64
#include <wtypes.h>
 
65
 
 
66
typedef struct 
 
67
{
 
68
    PRBool isMultiProcess;
 
69
#ifdef WINNT
 
70
    /* on WINNT we need both the PRLock and the Win32 mutex for fibers */
 
71
    struct {
 
72
#else
 
73
    union {
 
74
#endif
 
75
        PRLock* sslLock;
 
76
        HANDLE sslMutx;
 
77
    } u;
 
78
} sslMutex;
 
79
 
 
80
typedef int    sslPID;
 
81
 
 
82
#elif defined(LINUX) || defined(AIX) || defined(VMS) || defined(BEOS) || defined(BSDI) || defined(NETBSD) || defined(OPENBSD)
 
83
 
 
84
#include <sys/types.h>
 
85
#include "prtypes.h"
 
86
 
 
87
typedef struct { 
 
88
    PRBool isMultiProcess;
 
89
    union {
 
90
        PRLock* sslLock;
 
91
        struct {
 
92
            int      mPipes[3]; 
 
93
            PRInt32  nWaiters;
 
94
        } pipeStr;
 
95
    } u;
 
96
} sslMutex;
 
97
typedef pid_t sslPID;
 
98
 
 
99
#elif defined(XP_UNIX) /* other types of Unix */
 
100
 
 
101
#include <sys/types.h>  /* for pid_t */
 
102
#include <semaphore.h>  /* for sem_t, and sem_* functions */
 
103
 
 
104
typedef struct
 
105
{
 
106
    PRBool isMultiProcess;
 
107
    union {
 
108
        PRLock* sslLock;
 
109
        sem_t  sem;
 
110
    } u;
 
111
} sslMutex;
 
112
 
 
113
typedef pid_t sslPID;
 
114
 
 
115
#else
 
116
 
 
117
/* what platform is this ?? */
 
118
 
 
119
typedef struct { 
 
120
    PRBool isMultiProcess;
 
121
    union {
 
122
        PRLock* sslLock;
 
123
        /* include cross-process locking mechanism here */
 
124
    } u;
 
125
} sslMutex;
 
126
 
 
127
typedef int sslPID;
 
128
 
 
129
#endif
 
130
 
 
131
#include "seccomon.h"
 
132
 
 
133
SEC_BEGIN_PROTOS
 
134
 
 
135
extern SECStatus sslMutex_Init(sslMutex *sem, int shared);
 
136
 
 
137
extern SECStatus sslMutex_Destroy(sslMutex *sem);
 
138
 
 
139
extern SECStatus sslMutex_Unlock(sslMutex *sem);
 
140
 
 
141
extern SECStatus sslMutex_Lock(sslMutex *sem);
 
142
 
 
143
#ifdef WINNT
 
144
 
 
145
extern SECStatus sslMutex_2LevelInit(sslMutex *sem);
 
146
 
 
147
#endif
 
148
 
 
149
SEC_END_PROTOS
 
150
 
 
151
#endif