summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/include/md/_unixos.h
blob: 7d444cda16aa7894b5661fb6a6cdd85989b409cd (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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef prunixos_h___
#define prunixos_h___

/*
 * If FD_SETSIZE is not defined on the command line, set the default value
 * before include select.h
 */
/*
 * Linux: FD_SETSIZE is defined in /usr/include/sys/select.h and should
 * not be redefined.
 */
#if !defined(LINUX) && !defined(__GNU__) && !defined(__GLIBC__) \
    && !defined(DARWIN)
#ifndef FD_SETSIZE
#define FD_SETSIZE  4096
#endif
#endif

#include <unistd.h>
#include <stddef.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>

#include "prio.h"
#include "prmem.h"
#include "prclist.h"

/*
 * For select(), fd_set, and struct timeval.
 *
 * In The Single UNIX(R) Specification, Version 2,
 * the header file for select() is <sys/time.h>.
 * In Version 3, the header file for select() is
 * changed to <sys/select.h>.
 *
 * fd_set is defined in <sys/types.h>.  Usually
 * <sys/time.h> includes <sys/types.h>, but on some
 * older systems <sys/time.h> does not include
 * <sys/types.h>, so we include it explicitly.
 */
#include <sys/time.h>
#include <sys/types.h>
#if defined(AIX)
#include <sys/select.h>
#endif

#define HAVE_NETINET_TCP_H

#define _PR_HAVE_O_APPEND

#define PR_DIRECTORY_SEPARATOR      '/'
#define PR_DIRECTORY_SEPARATOR_STR  "/"
#define PR_PATH_SEPARATOR       ':'
#define PR_PATH_SEPARATOR_STR       ":"
typedef int (*FARPROC)();

/*
 * intervals at which GLOBAL threads wakeup to check for pending interrupt
 */
#define _PR_INTERRUPT_CHECK_INTERVAL_SECS 5
extern PRIntervalTime intr_timeout_ticks;

/*
 * The bit flags for the in_flags and out_flags fields
 * of _PR_UnixPollDesc
 */
#ifdef _PR_USE_POLL
#define _PR_UNIX_POLL_READ    POLLIN
#define _PR_UNIX_POLL_WRITE   POLLOUT
#define _PR_UNIX_POLL_EXCEPT  POLLPRI
#define _PR_UNIX_POLL_ERR     POLLERR
#define _PR_UNIX_POLL_NVAL    POLLNVAL
#define _PR_UNIX_POLL_HUP     POLLHUP
#else /* _PR_USE_POLL */
#define _PR_UNIX_POLL_READ    0x1
#define _PR_UNIX_POLL_WRITE   0x2
#define _PR_UNIX_POLL_EXCEPT  0x4
#define _PR_UNIX_POLL_ERR     0x8
#define _PR_UNIX_POLL_NVAL    0x10
#define _PR_UNIX_POLL_HUP     0x20
#endif /* _PR_USE_POLL */

typedef struct _PRUnixPollDesc {
    PRInt32 osfd;
    PRInt16 in_flags;
    PRInt16 out_flags;
} _PRUnixPollDesc;

typedef struct PRPollQueue {
    PRCList links;        /* for linking PRPollQueue's together */
    _PRUnixPollDesc *pds;        /* array of poll descriptors */
    PRUintn npds;            /* length of the array */
    PRPackedBool on_ioq;    /* is this on the async i/o work q? */
    PRIntervalTime timeout;        /* timeout, in ticks */
    struct PRThread *thr;
} PRPollQueue;

#define _PR_POLLQUEUE_PTR(_qp) \
    ((PRPollQueue*) ((char*) (_qp) - offsetof(PRPollQueue,links)))


extern PRInt32 _PR_WaitForMultipleFDs(
    _PRUnixPollDesc *unixpds,
    PRInt32 pdcnt,
    PRIntervalTime timeout);
extern void _PR_Unblock_IO_Wait(struct PRThread *thr);

#if defined(_PR_LOCAL_THREADS_ONLY) || defined(_PR_GLOBAL_THREADS_ONLY)
#define _MD_CHECK_FOR_EXIT()
#endif

extern fd_set _pr_md_read_set, _pr_md_write_set, _pr_md_exception_set;
extern PRInt16 _pr_md_read_cnt[], _pr_md_write_cnt[], _pr_md_exception_cnt[];
extern PRInt32 _pr_md_ioq_max_osfd;
extern PRUint32 _pr_md_ioq_timeout;

struct _MDFileDesc {
    int osfd;
#if defined(LINUX) && defined(_PR_PTHREADS)
    int tcp_nodelay;  /* used by pt_LinuxSendFile */
#endif
};

struct _MDDir {
    DIR *d;
};

struct _PRCPU;
extern void _MD_unix_init_running_cpu(struct _PRCPU *cpu);

/*
** Make a redzone at both ends of the stack segment. Disallow access
** to those pages of memory. It's ok if the mprotect call's don't
** work - it just means that we don't really have a functional
** redzone.
*/
#include <sys/mman.h>
#ifndef PROT_NONE
#define PROT_NONE 0x0
#endif

#if defined(DEBUG) && !defined(DARWIN)
#if !defined(SOLARIS)
#include <string.h>  /* for memset() */
#define _MD_INIT_STACK(ts,REDZONE)                  \
    PR_BEGIN_MACRO                                  \
    (void) mprotect((void*)ts->seg->vaddr, REDZONE, PROT_NONE); \
    (void) mprotect((void*) ((char*)ts->seg->vaddr + REDZONE + ts->stackSize),\
            REDZONE, PROT_NONE);                \
    /*                                  \
    ** Fill stack memory with something that turns into an illegal  \
    ** pointer value. This will sometimes find runtime references to    \
    ** uninitialized pointers. We don't do this for solaris because we  \
    ** can use purify instead.                      \
    */                                  \
    if (_pr_debugStacks) {                      \
    memset(ts->allocBase + REDZONE, 0xf7, ts->stackSize);       \
    }                                   \
    PR_END_MACRO
#else   /* !SOLARIS */
#define _MD_INIT_STACK(ts,REDZONE)                  \
    PR_BEGIN_MACRO                                  \
    (void) mprotect((void*)ts->seg->vaddr, REDZONE, PROT_NONE); \
    (void) mprotect((void*) ((char*)ts->seg->vaddr + REDZONE + ts->stackSize),\
            REDZONE, PROT_NONE);                \
    PR_END_MACRO
#endif  /* !SOLARIS */

/*
 * _MD_CLEAR_STACK
 *  Allow access to the redzone pages; the access was turned off in
 *  _MD_INIT_STACK.
 */
#define _MD_CLEAR_STACK(ts)                     \
    PR_BEGIN_MACRO                                  \
    (void) mprotect((void*)ts->seg->vaddr, REDZONE, PROT_READ|PROT_WRITE);\
    (void) mprotect((void*) ((char*)ts->seg->vaddr + REDZONE + ts->stackSize),\
            REDZONE, PROT_READ|PROT_WRITE);         \
    PR_END_MACRO

#else   /* DEBUG */

#define _MD_INIT_STACK(ts,REDZONE)
#define _MD_CLEAR_STACK(ts)

#endif  /* DEBUG */

#if !defined(SOLARIS)

#define PR_SET_INTSOFF(newval)

#endif

/************************************************************************/

extern void _PR_UnixInit(void);

extern void _PR_UnixCleanup(void);
#define _MD_EARLY_CLEANUP _PR_UnixCleanup

/************************************************************************/

struct _MDProcess {
    pid_t pid;
};

struct PRProcess;
struct PRProcessAttr;

/* Create a new process (fork() + exec()) */
#define _MD_CREATE_PROCESS _MD_CreateUnixProcess
extern struct PRProcess * _MD_CreateUnixProcess(
    const char *path,
    char *const *argv,
    char *const *envp,
    const struct PRProcessAttr *attr
);

#define _MD_DETACH_PROCESS _MD_DetachUnixProcess
extern PRStatus _MD_DetachUnixProcess(struct PRProcess *process);

/* Wait for a child process to terminate */
#define _MD_WAIT_PROCESS _MD_WaitUnixProcess
extern PRStatus _MD_WaitUnixProcess(struct PRProcess *process,
                                    PRInt32 *exitCode);

#define _MD_KILL_PROCESS _MD_KillUnixProcess
extern PRStatus _MD_KillUnixProcess(struct PRProcess *process);

/************************************************************************/

extern void _MD_EnableClockInterrupts(void);
extern void _MD_DisableClockInterrupts(void);

#define _MD_START_INTERRUPTS            _MD_StartInterrupts
#define _MD_STOP_INTERRUPTS             _MD_StopInterrupts
#define _MD_DISABLE_CLOCK_INTERRUPTS    _MD_DisableClockInterrupts
#define _MD_ENABLE_CLOCK_INTERRUPTS     _MD_EnableClockInterrupts
#define _MD_BLOCK_CLOCK_INTERRUPTS      _MD_BlockClockInterrupts
#define _MD_UNBLOCK_CLOCK_INTERRUPTS    _MD_UnblockClockInterrupts

/************************************************************************/

extern void     _MD_InitCPUS(void);
#define _MD_INIT_CPUS           _MD_InitCPUS

extern void     _MD_Wakeup_CPUs(void);
#define _MD_WAKEUP_CPUS _MD_Wakeup_CPUs

#define _MD_PAUSE_CPU           _MD_PauseCPU

#if defined(_PR_LOCAL_THREADS_ONLY) || defined(_PR_GLOBAL_THREADS_ONLY)
#define _MD_CLEANUP_BEFORE_EXIT()
#endif

#define _MD_EXIT(status)        _exit(status)

/************************************************************************/

#define _MD_GET_ENV             getenv
#define _MD_PUT_ENV             putenv

/************************************************************************/

#define _MD_INIT_FILEDESC(fd)

extern void     _MD_MakeNonblock(PRFileDesc *fd);
#define _MD_MAKE_NONBLOCK           _MD_MakeNonblock

/************************************************************************/

#if !defined(_PR_PTHREADS)

extern void     _MD_InitSegs(void);
extern PRStatus _MD_AllocSegment(PRSegment *seg, PRUint32 size,
                                 void *vaddr);
extern void     _MD_FreeSegment(PRSegment *seg);

#define _MD_INIT_SEGS           _MD_InitSegs
#define _MD_ALLOC_SEGMENT       _MD_AllocSegment
#define _MD_FREE_SEGMENT        _MD_FreeSegment

#endif /* !defined(_PR_PTHREADS) */

/************************************************************************/

#ifdef _MD_INTERVAL_USE_GTOD
extern PRIntervalTime   _PR_UNIX_GetInterval(void);
extern PRIntervalTime   _PR_UNIX_TicksPerSecond(void);
#define _MD_INTERVAL_INIT()
#define _MD_GET_INTERVAL        _PR_UNIX_GetInterval
#define _MD_INTERVAL_PER_SEC        _PR_UNIX_TicksPerSecond
#endif

#ifdef _PR_HAVE_CLOCK_MONOTONIC
extern PRIntervalTime   _PR_UNIX_GetInterval2(void);
extern PRIntervalTime   _PR_UNIX_TicksPerSecond2(void);
#define _MD_INTERVAL_INIT()
#define _MD_GET_INTERVAL        _PR_UNIX_GetInterval2
#define _MD_INTERVAL_PER_SEC        _PR_UNIX_TicksPerSecond2
#endif

#define _MD_INTERVAL_PER_MILLISEC() (_PR_MD_INTERVAL_PER_SEC() / 1000)
#define _MD_INTERVAL_PER_MICROSEC() (_PR_MD_INTERVAL_PER_SEC() / 1000000)

/************************************************************************/

#define _MD_ERRNO()                 (errno)
#define _MD_GET_SOCKET_ERROR()      (errno)

/************************************************************************/

extern PRInt32 _MD_AvailableSocket(PRInt32 osfd);

extern void _MD_StartInterrupts(void);
extern void _MD_StopInterrupts(void);
extern void _MD_DisableClockInterrupts(void);
extern void _MD_BlockClockInterrupts(void);
extern void _MD_UnblockClockInterrupts(void);
extern void _MD_PauseCPU(PRIntervalTime timeout);

extern PRStatus _MD_open_dir(struct _MDDir *, const char *);
extern PRInt32  _MD_close_dir(struct _MDDir *);
extern char *   _MD_read_dir(struct _MDDir *, PRIntn);
extern PRInt32  _MD_open(const char *name, PRIntn osflags, PRIntn mode);
extern PRInt32  _MD_delete(const char *name);
extern PRInt32  _MD_getfileinfo(const char *fn, PRFileInfo *info);
extern PRInt32  _MD_getfileinfo64(const char *fn, PRFileInfo64 *info);
extern PRInt32  _MD_getopenfileinfo(const PRFileDesc *fd, PRFileInfo *info);
extern PRInt32  _MD_getopenfileinfo64(const PRFileDesc *fd, PRFileInfo64 *info);
extern PRInt32  _MD_rename(const char *from, const char *to);
extern PRInt32  _MD_access(const char *name, PRAccessHow how);
extern PRInt32  _MD_mkdir(const char *name, PRIntn mode);
extern PRInt32  _MD_rmdir(const char *name);
extern PRInt32  _MD_accept_read(PRInt32 sock, PRInt32 *newSock,
                                PRNetAddr **raddr, void *buf, PRInt32 amount);
extern PRInt32  _PR_UnixSendFile(PRFileDesc *sd, PRSendFileData *sfd,
                                 PRTransmitFileFlags flags, PRIntervalTime timeout);

extern PRStatus _MD_LockFile(PRInt32 osfd);
extern PRStatus _MD_TLockFile(PRInt32 osfd);
extern PRStatus _MD_UnlockFile(PRInt32 osfd);

#define _MD_OPEN_DIR(dir, name)         _MD_open_dir(dir, name)
#define _MD_CLOSE_DIR(dir)              _MD_close_dir(dir)
#define _MD_READ_DIR(dir, flags)        _MD_read_dir(dir, flags)
#define _MD_OPEN(name, osflags, mode)   _MD_open(name, osflags, mode)
#define _MD_OPEN_FILE(name, osflags, mode)  _MD_open(name, osflags, mode)
extern PRInt32 _MD_read(PRFileDesc *fd, void *buf, PRInt32 amount);
#define _MD_READ(fd,buf,amount)         _MD_read(fd,buf,amount)
extern PRInt32 _MD_write(PRFileDesc *fd, const void *buf, PRInt32 amount);
#define _MD_WRITE(fd,buf,amount)        _MD_write(fd,buf,amount)
#define _MD_DELETE(name)                _MD_delete(name)
#define _MD_GETFILEINFO(fn, info)       _MD_getfileinfo(fn, info)
#define _MD_GETFILEINFO64(fn, info)     _MD_getfileinfo64(fn, info)
#define _MD_GETOPENFILEINFO(fd, info)   _MD_getopenfileinfo(fd, info)
#define _MD_GETOPENFILEINFO64(fd, info) _MD_getopenfileinfo64(fd, info)
#define _MD_RENAME(from, to)            _MD_rename(from, to)
#define _MD_ACCESS(name, how)           _MD_access(name, how)
#define _MD_MKDIR(name, mode)           _MD_mkdir(name, mode)
#define _MD_MAKE_DIR(name, mode)        _MD_mkdir(name, mode)
#define _MD_RMDIR(name)                 _MD_rmdir(name)
#define _MD_ACCEPT_READ(sock, newSock, raddr, buf, amount)  _MD_accept_read(sock, newSock, raddr, buf, amount)

#define _MD_LOCKFILE _MD_LockFile
#define _MD_TLOCKFILE _MD_TLockFile
#define _MD_UNLOCKFILE _MD_UnlockFile


extern PRInt32      _MD_socket(int af, int type, int flags);
#define _MD_SOCKET  _MD_socket
extern PRInt32      _MD_connect(PRFileDesc *fd, const PRNetAddr *addr,
                                PRUint32 addrlen, PRIntervalTime timeout);
#define _MD_CONNECT _MD_connect
extern PRInt32      _MD_accept(PRFileDesc *fd, PRNetAddr *addr, PRUint32 *addrlen,
                               PRIntervalTime timeout);
#define _MD_ACCEPT  _MD_accept
extern PRInt32      _MD_bind(PRFileDesc *fd, const PRNetAddr *addr, PRUint32 addrlen);
#define _MD_BIND    _MD_bind
extern PRInt32      _MD_listen(PRFileDesc *fd, PRIntn backlog);
#define _MD_LISTEN  _MD_listen
extern PRInt32      _MD_shutdown(PRFileDesc *fd, PRIntn how);
#define _MD_SHUTDOWN    _MD_shutdown

extern PRInt32      _MD_recv(PRFileDesc *fd, void *buf, PRInt32 amount,
                             PRIntn flags, PRIntervalTime timeout);
#define _MD_RECV    _MD_recv
extern PRInt32      _MD_send(PRFileDesc *fd, const void *buf, PRInt32 amount,
                             PRIntn flags, PRIntervalTime timeout);
#define _MD_SEND    _MD_send
extern PRInt32      _MD_recvfrom(PRFileDesc *fd, void *buf, PRInt32 amount,
                                 PRIntn flags, PRNetAddr *addr, PRUint32 *addrlen,
                                 PRIntervalTime timeout);
#define _MD_RECVFROM    _MD_recvfrom
extern PRInt32 _MD_sendto(PRFileDesc *fd, const void *buf, PRInt32 amount,
                          PRIntn flags, const PRNetAddr *addr, PRUint32 addrlen,
                          PRIntervalTime timeout);
#define _MD_SENDTO  _MD_sendto
extern PRInt32      _MD_writev(PRFileDesc *fd, const struct PRIOVec *iov,
                               PRInt32 iov_size, PRIntervalTime timeout);
#define _MD_WRITEV  _MD_writev

extern PRInt32      _MD_socketavailable(PRFileDesc *fd);
#define _MD_SOCKETAVAILABLE     _MD_socketavailable
extern PRInt64      _MD_socketavailable64(PRFileDesc *fd);
#define _MD_SOCKETAVAILABLE64       _MD_socketavailable64

#define _MD_PIPEAVAILABLE       _MD_socketavailable

extern PRInt32 _MD_pr_poll(PRPollDesc *pds, PRIntn npds,
                           PRIntervalTime timeout);
#define _MD_PR_POLL     _MD_pr_poll

extern PRInt32      _MD_close(PRInt32 osfd);
#define _MD_CLOSE_FILE  _MD_close
extern PRInt32      _MD_lseek(PRFileDesc*, PRInt32, PRSeekWhence);
#define _MD_LSEEK   _MD_lseek
extern PRInt64      _MD_lseek64(PRFileDesc*, PRInt64, PRSeekWhence);
#define _MD_LSEEK64 _MD_lseek64
extern PRInt32      _MD_fsync(PRFileDesc *fd);
#define _MD_FSYNC   _MD_fsync

extern PRInt32 _MD_socketpair(int af, int type, int flags, PRInt32 *osfd);
#define _MD_SOCKETPAIR      _MD_socketpair

#define _MD_CLOSE_SOCKET    _MD_close

#ifndef NO_NSPR_10_SUPPORT
#define _MD_STAT    stat
#endif

extern PRStatus _MD_getpeername(PRFileDesc *fd, PRNetAddr *addr,
                                PRUint32 *addrlen);
#define _MD_GETPEERNAME _MD_getpeername
extern PRStatus _MD_getsockname(PRFileDesc *fd, PRNetAddr *addr,
                                PRUint32 *addrlen);
#define _MD_GETSOCKNAME _MD_getsockname

extern PRStatus _MD_getsockopt(PRFileDesc *fd, PRInt32 level,
                               PRInt32 optname, char* optval, PRInt32* optlen);
#define _MD_GETSOCKOPT      _MD_getsockopt
extern PRStatus _MD_setsockopt(PRFileDesc *fd, PRInt32 level,
                               PRInt32 optname, const char* optval, PRInt32 optlen);
#define _MD_SETSOCKOPT      _MD_setsockopt

extern PRStatus _MD_set_fd_inheritable(PRFileDesc *fd, PRBool inheritable);
#define _MD_SET_FD_INHERITABLE _MD_set_fd_inheritable

extern void _MD_init_fd_inheritable(PRFileDesc *fd, PRBool imported);
#define _MD_INIT_FD_INHERITABLE _MD_init_fd_inheritable

extern void _MD_query_fd_inheritable(PRFileDesc *fd);
#define _MD_QUERY_FD_INHERITABLE _MD_query_fd_inheritable

extern PRStatus _MD_gethostname(char *name, PRUint32 namelen);
#define _MD_GETHOSTNAME     _MD_gethostname

extern PRStatus _MD_getsysinfo(PRSysInfo cmd, char *name, PRUint32 namelen);
#define _MD_GETSYSINFO      _MD_getsysinfo

extern int _MD_unix_get_nonblocking_connect_error(int osfd);

/* Memory-mapped files */

struct _MDFileMap {
    PRIntn prot;
    PRIntn flags;
    PRBool isAnonFM; /* when true, PR_CloseFileMap() must close the related fd */
};

extern PRStatus _MD_CreateFileMap(struct PRFileMap *fmap, PRInt64 size);
#define _MD_CREATE_FILE_MAP _MD_CreateFileMap

#define _MD_GET_MEM_MAP_ALIGNMENT() PR_GetPageSize()

extern void * _MD_MemMap(struct PRFileMap *fmap, PRInt64 offset,
                         PRUint32 len);
#define _MD_MEM_MAP _MD_MemMap

extern PRStatus _MD_MemUnmap(void *addr, PRUint32 size);
#define _MD_MEM_UNMAP _MD_MemUnmap

extern PRStatus _MD_CloseFileMap(struct PRFileMap *fmap);
#define _MD_CLOSE_FILE_MAP _MD_CloseFileMap

extern PRStatus _MD_SyncMemMap(
    PRFileDesc *fd,
    void *addr,
    PRUint32 len);
#define _MD_SYNC_MEM_MAP _MD_SyncMemMap

/*
 * The standard (XPG4) gettimeofday() (from BSD) takes two arguments.
 * On some SVR4 derivatives, gettimeofday() takes only one argument.
 * The GETTIMEOFDAY macro is intended to hide this difference.
 */
#ifdef HAVE_SVID_GETTOD
#define GETTIMEOFDAY(tp) gettimeofday(tp)
#else
#define GETTIMEOFDAY(tp) gettimeofday((tp), NULL)
#endif

#if defined(_PR_PTHREADS) && !defined(_PR_POLL_AVAILABLE)
#define _PR_NEED_FAKE_POLL
#endif

#if defined(_PR_NEED_FAKE_POLL)

/*
 * Some platforms don't have poll(), but our pthreads code calls poll().
 * As a temporary measure, I implemented a fake poll() using select().
 * Here are the struct and macro definitions copied from sys/poll.h
 * on Solaris 2.5.
 */

struct pollfd {
    int fd;
    short events;
    short revents;
};

/* poll events */

#define POLLIN      0x0001      /* fd is readable */
#define POLLPRI     0x0002      /* high priority info at fd */
#define POLLOUT     0x0004      /* fd is writeable (won't block) */
#define POLLRDNORM  0x0040      /* normal data is readable */
#define POLLWRNORM  POLLOUT
#define POLLRDBAND  0x0080      /* out-of-band data is readable */
#define POLLWRBAND  0x0100      /* out-of-band data is writeable */

#define POLLNORM    POLLRDNORM

#define POLLERR     0x0008      /* fd has error condition */
#define POLLHUP     0x0010      /* fd has been hung up on */
#define POLLNVAL    0x0020      /* invalid pollfd entry */

extern int poll(struct pollfd *, unsigned long, int);

#endif /* _PR_NEED_FAKE_POLL */

/*
** A vector of the UNIX I/O calls we use. These are here to smooth over
** the rough edges needed for large files. All of NSPR's implmentaions
** go through this vector using syntax of the form
**      result = _md_iovector.xxx64(args);
*/

#if defined(SOLARIS2_5)
/*
** Special case: Solaris 2.5.1
** Solaris starts to have 64-bit file I/O in 2.6.  We build on Solaris
** 2.5.1 so that we can use the same binaries on both Solaris 2.5.1 and
** 2.6.  At run time, we detect whether 64-bit file I/O is available by
** looking up the 64-bit file function symbols in libc.  At build time,
** we need to define the 64-bit file I/O datatypes that are compatible
** with their definitions on Solaris 2.6.
*/
typedef PRInt64 off64_t;
typedef PRUint64 ino64_t;
typedef PRInt64 blkcnt64_t;
struct stat64 {
    dev_t st_dev;
    long st_pad1[3];
    ino64_t st_ino;
    mode_t st_mode;
    nlink_t st_nlink;
    uid_t st_uid;
    gid_t st_gid;
    dev_t st_rdev;
    long t_pad2[2];
    off64_t st_size;
    timestruc_t st_atim;
    timestruc_t st_mtim;
    timestruc_t st_ctim;
    long st_blksize;
    blkcnt64_t st_blocks;
    char st_fstype[_ST_FSTYPSZ];
    long st_pad4[8];
};
typedef struct stat64 _MDStat64;
typedef off64_t _MDOff64_t;

#elif defined(_PR_HAVE_OFF64_T)
typedef struct stat64 _MDStat64;
typedef off64_t _MDOff64_t;
#elif defined(_PR_HAVE_LARGE_OFF_T)
typedef struct stat _MDStat64;
typedef off_t _MDOff64_t;
#elif defined(_PR_NO_LARGE_FILES)
typedef struct stat _MDStat64;
typedef PRInt64 _MDOff64_t;
#else
#error "I don't know yet"
#endif

typedef PRIntn (*_MD_Fstat64)(PRIntn osfd, _MDStat64 *buf);
typedef PRIntn (*_MD_Open64)(const char *path, int oflag, ...);
typedef PRIntn (*_MD_Stat64)(const char *path, _MDStat64 *buf);
typedef _MDOff64_t (*_MD_Lseek64)(PRIntn osfd, _MDOff64_t, PRIntn whence);
typedef void* (*_MD_Mmap64)(
    void *addr, PRSize len, PRIntn prot, PRIntn flags,
    PRIntn fildes, _MDOff64_t offset);
struct _MD_IOVector
{
    _MD_Open64 _open64;
    _MD_Mmap64 _mmap64;
    _MD_Stat64 _stat64;
    _MD_Fstat64 _fstat64;
    _MD_Lseek64 _lseek64;
};
extern struct _MD_IOVector _md_iovector;

#endif /* prunixos_h___ */