]> andersk Git - openssh.git/blame - defines.h
- (djm) Make scp work on systems without 64-bit ints
[openssh.git] / defines.h
CommitLineData
76a8e733 1#ifndef _DEFINES_H
2#define _DEFINES_H
3
0b202697 4/* $Id$ */
5
4a8e6ec5 6/* Some platforms need this for the _r() functions */
8dcda1e3 7#if !defined(_REENTRANT) && !defined(SNI)
4a8e6ec5 8# define _REENTRANT 1
9#endif
10
ea1970a3 11/* Necessary headers */
12
a8ed9fd9 13#include <sys/types.h> /* For [u]intxx_t */
cb807f40 14#include <sys/socket.h> /* For SHUT_XXXX */
0ae4fe1d 15#include <sys/param.h> /* For MAXPATHLEN and roundup() */
509b1f88 16#include <netinet/in_systm.h> /* For typedefs */
a8ed9fd9 17#include <netinet/in.h> /* For IPv6 macros */
18e92801 18#include <netinet/ip.h> /* For IPTOS macros */
77bb0bca 19#ifdef HAVE_SYS_UN_H
20# include <sys/un.h> /* For SUN_LEN */
21#endif
5cdfe03f 22#ifdef HAVE_SYS_BITYPES_H
23# include <sys/bitypes.h> /* For u_intXX_t */
2b87da3b 24#endif
cb807f40 25#ifdef HAVE_PATHS_H
26# include <paths.h> /* For _PATH_XXX */
2b87da3b 27#endif
509b1f88 28#ifdef HAVE_LIMITS_H
29# include <limits.h> /* For PATH_MAX */
2b87da3b 30#endif
cb807f40 31#ifdef HAVE_SYS_TIME_H
32# include <sys/time.h> /* For timersub */
33#endif
cb807f40 34#ifdef HAVE_MAILLOCK_H
d94aa2ae 35# include <maillock.h> /* For _PATH_MAILDIR */
cb807f40 36#endif
d94aa2ae 37#ifdef HAVE_SYS_CDEFS_H
38# include <sys/cdefs.h> /* For __P() */
2b87da3b 39#endif
d468fc76 40#ifdef HAVE_SYS_SYSMACROS_H
41# include <sys/sysmacros.h> /* For MIN, MAX, etc */
42#endif
729bfe59 43#ifdef HAVE_SYS_STAT_H
44# include <sys/stat.h> /* For S_* constants and macros */
45#endif
e79b44e1 46#ifdef HAVE_NEXT
47# include <libc.h>
48#endif
729bfe59 49
50#include <unistd.h> /* For STDIN_FILENO, etc */
77bb0bca 51#include <termios.h> /* Struct winsize */
f1c4659d 52#include <fcntl.h> /* For O_NONBLOCK */
d468fc76 53
ea1970a3 54/* Constants */
55
cb807f40 56#ifndef SHUT_RDWR
57enum
58{
59 SHUT_RD = 0, /* No more receptions. */
60 SHUT_WR, /* No more transmissions. */
61 SHUT_RDWR /* No more receptions or transmissions. */
62};
63# define SHUT_RD SHUT_RD
64# define SHUT_WR SHUT_WR
65# define SHUT_RDWR SHUT_RDWR
66#endif
67
18e92801 68#ifndef IPTOS_LOWDELAY
69# define IPTOS_LOWDELAY 0x10
70# define IPTOS_THROUGHPUT 0x08
71# define IPTOS_RELIABILITY 0x04
72# define IPTOS_LOWCOST 0x02
73# define IPTOS_MINCOST IPTOS_LOWCOST
74#endif /* IPTOS_LOWDELAY */
75
509b1f88 76#ifndef MAXPATHLEN
77# ifdef PATH_MAX
78# define MAXPATHLEN PATH_MAX
79# else /* PATH_MAX */
80# define MAXPATHLEN 64 /* Should be safe */
81# endif /* PATH_MAX */
82#endif /* MAXPATHLEN */
83
2b87da3b 84#ifndef STDIN_FILENO
729bfe59 85# define STDIN_FILENO 0
2b87da3b 86#endif
87#ifndef STDOUT_FILENO
729bfe59 88# define STDOUT_FILENO 1
2b87da3b 89#endif
90#ifndef STDERR_FILENO
729bfe59 91# define STDERR_FILENO 2
2b87da3b 92#endif
729bfe59 93
99286dc8 94#ifndef NGROUPS_MAX /* Disable groupaccess if NGROUP_MAX is not set */
95#define NGROUPS_MAX 0
1fc243d1 96#endif
97
f1c4659d 98#ifndef O_NONBLOCK /* Non Blocking Open */
2b87da3b 99# define O_NONBLOCK 00004
f1c4659d 100#endif
101
729bfe59 102#ifndef S_ISREG
103# define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
104# define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
105#endif /* S_ISREG */
106
107#ifndef S_IXUSR
108# define S_IXUSR 0000100 /* execute/search permission, */
109# define S_IXGRP 0000010 /* execute/search permission, */
110# define S_IXOTH 0000001 /* execute/search permission, */
111# define _S_IWUSR 0000200 /* write permission, */
112# define S_IWUSR _S_IWUSR /* write permission, owner */
113# define S_IWGRP 0000020 /* write permission, group */
114# define S_IWOTH 0000002 /* write permission, other */
115# define S_IRUSR 0000400 /* read permission, owner */
116# define S_IRGRP 0000040 /* read permission, group */
117# define S_IROTH 0000004 /* read permission, other */
118# define S_IRWXU 0000700 /* read, write, execute */
119# define S_IRWXG 0000070 /* read, write, execute */
120# define S_IRWXO 0000007 /* read, write, execute */
121#endif /* S_IXUSR */
122
ea1970a3 123/* Types */
124
cb807f40 125/* If sys/types.h does not supply intXX_t, supply them ourselves */
126/* (or die trying) */
14a9a859 127
128#ifndef HAVE_U_INT
129typedef unsigned int u_int;
130#endif
131
cb807f40 132#ifndef HAVE_INTXX_T
976f7e19 133# if (SIZEOF_CHAR == 1)
134typedef char int8_t;
135# else
136# error "8 bit int type not found."
137# endif
cb807f40 138# if (SIZEOF_SHORT_INT == 2)
ea1970a3 139typedef short int int16_t;
cb807f40 140# else
3d114925 141# ifdef _CRAY
142typedef long int16_t;
143# else
144# error "16 bit int type not found."
145# endif /* _CRAY */
cb807f40 146# endif
147# if (SIZEOF_INT == 4)
ea1970a3 148typedef int int32_t;
cb807f40 149# else
3d114925 150# ifdef _CRAY
151typedef long int32_t;
152# else
153# error "32 bit int type not found."
154# endif /* _CRAY */
cb807f40 155# endif
cb807f40 156#endif
157
158/* If sys/types.h does not supply u_intXX_t, supply them ourselves */
159#ifndef HAVE_U_INTXX_T
160# ifdef HAVE_UINTXX_T
976f7e19 161typedef uint8_t u_int8_t;
ea1970a3 162typedef uint16_t u_int16_t;
163typedef uint32_t u_int32_t;
76a8e733 164# define HAVE_U_INTXX_T 1
cb807f40 165# else
976f7e19 166# if (SIZEOF_CHAR == 1)
167typedef unsigned char u_int8_t;
168# else
169# error "8 bit int type not found."
170# endif
cb807f40 171# if (SIZEOF_SHORT_INT == 2)
ea1970a3 172typedef unsigned short int u_int16_t;
cb807f40 173# else
3d114925 174# ifdef _CRAY
175typedef unsigned long u_int16_t;
176# else
177# error "16 bit int type not found."
178# endif
cb807f40 179# endif
180# if (SIZEOF_INT == 4)
ea1970a3 181typedef unsigned int u_int32_t;
cb807f40 182# else
3d114925 183# ifdef _CRAY
184typedef unsigned long u_int32_t;
185# else
186# error "32 bit int type not found."
187# endif
cb807f40 188# endif
bd590612 189# endif
190#endif
191
192/* 64-bit types */
193#ifndef HAVE_INT64_T
194# if (SIZEOF_LONG_INT == 8)
195typedef long int int64_t;
afecff1d 196# define HAVE_INT64_T 1
bd590612 197# else
198# if (SIZEOF_LONG_LONG_INT == 8)
199typedef long long int int64_t;
afecff1d 200# define HAVE_INT64_T 1
bd590612 201# endif
202# endif
203#endif
204#ifndef HAVE_U_INT64_T
205# if (SIZEOF_LONG_INT == 8)
206typedef unsigned long int u_int64_t;
afecff1d 207# define HAVE_U_INT64_T 1
bd590612 208# else
209# if (SIZEOF_LONG_LONG_INT == 8)
ea1970a3 210typedef unsigned long long int u_int64_t;
afecff1d 211# define HAVE_U_INT64_T 1
cb807f40 212# endif
213# endif
214#endif
215
ea1970a3 216#ifndef HAVE_SOCKLEN_T
217typedef unsigned int socklen_t;
a6ddc88b 218# define HAVE_SOCKLEN_T
ea1970a3 219#endif /* HAVE_SOCKLEN_T */
220
e3a93db0 221#ifndef HAVE_SIZE_T
222typedef unsigned int size_t;
a6ddc88b 223# define HAVE_SIZE_T
e3a93db0 224#endif /* HAVE_SIZE_T */
225
c04f75f1 226#ifndef HAVE_SSIZE_T
227typedef int ssize_t;
228# define HAVE_SSIZE_T
229#endif /* HAVE_SSIZE_T */
230
f1c4659d 231#ifndef HAVE_CLOCK_T
232typedef long clock_t;
233# define HAVE_CLOCK_T
4f771a33 234#endif /* HAVE_CLOCK_T */
f1c4659d 235
1c04b088 236#ifndef HAVE_SA_FAMILY_T
237typedef int sa_family_t;
238# define HAVE_SA_FAMILY_T
239#endif /* HAVE_SA_FAMILY_T */
240
729bfe59 241#ifndef HAVE_PID_T
242typedef int pid_t;
243# define HAVE_PID_T
244#endif /* HAVE_PID_T */
245
246#ifndef HAVE_MODE_T
247typedef int mode_t;
248# define HAVE_MODE_T
249#endif /* HAVE_MODE_T */
250
48e671d5 251#if !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE___SS_FAMILY_IN_SS)
252# define ss_family __ss_family
253#endif /* !defined(HAVE_SS_FAMILY_IN_SS) && defined(HAVE_SA_FAMILY_IN_SS) */
254
77bb0bca 255#ifndef HAVE_SYS_UN_H
256struct sockaddr_un {
257 short sun_family; /* AF_UNIX */
258 char sun_path[108]; /* path name (gag) */
259};
260#endif /* HAVE_SYS_UN_H */
261
262#if defined(BROKEN_SYS_TERMIO_H) && !defined(_STRUCT_WINSIZE)
263#define _STRUCT_WINSIZE
264struct winsize {
265 unsigned short ws_row; /* rows, in characters */
266 unsigned short ws_col; /* columns, in character */
267 unsigned short ws_xpixel; /* horizontal size, pixels */
268 unsigned short ws_ypixel; /* vertical size, pixels */
269};
270#endif
271
ea1970a3 272/* Paths */
273
cb807f40 274#ifndef _PATH_BSHELL
275# define _PATH_BSHELL "/bin/sh"
276#endif
7cdb79d4 277#ifndef _PATH_CSHELL
278# define _PATH_CSHELL "/bin/csh"
279#endif
280#ifndef _PATH_SHELLS
281# define _PATH_SHELLS "/etc/shells"
282#endif
cb807f40 283
284#ifdef USER_PATH
285# ifdef _PATH_STDPATH
286# undef _PATH_STDPATH
287# endif
288# define _PATH_STDPATH USER_PATH
289#endif
290
291#ifndef _PATH_STDPATH
292# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin"
293#endif
294
295#ifndef _PATH_DEVNULL
296# define _PATH_DEVNULL "/dev/null"
297#endif
298
c04f75f1 299#ifndef MAIL_DIRECTORY
300# define MAIL_DIRECTORY "/var/spool/mail"
301#endif
302
cb807f40 303#ifndef MAILDIR
304# define MAILDIR MAIL_DIRECTORY
305#endif
306
307#if !defined(_PATH_MAILDIR) && defined(MAILDIR)
308# define _PATH_MAILDIR MAILDIR
309#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
310
ea1970a3 311#ifndef _PATH_RSH
312# ifdef RSH_PATH
313# define _PATH_RSH RSH_PATH
2f125ca1 314# else /* RSH_PATH */
315# define _PATH_RSH "/usr/bin/rsh"
ea1970a3 316# endif /* RSH_PATH */
317#endif /* _PATH_RSH */
318
2e73a022 319#ifndef _PATH_NOLOGIN
320# define _PATH_NOLOGIN "/etc/nologin"
321#endif
322
2f125ca1 323/* Define this to be the path of the xauth program. */
324#ifndef XAUTH_PATH
325#define XAUTH_PATH "/usr/X11R6/bin/xauth"
326#endif /* XAUTH_PATH */
327
bc79ed5c 328#ifndef _PATH_TTY
329# define _PATH_TTY "/dev/tty"
330#endif
331
ea1970a3 332/* Macros */
333
2e73a022 334#if defined(HAVE_LOGIN_GETCAPBOOL) && defined(HAVE_LOGIN_CAP_H)
335# define HAVE_LOGIN_CAP
336#endif
337
cb807f40 338#ifndef MAX
339# define MAX(a,b) (((a)>(b))?(a):(b))
340# define MIN(a,b) (((a)<(b))?(a):(b))
341#endif
342
0ae4fe1d 343#ifndef roundup
344# define roundup(x, y) ((((x)+((y)-1))/(y))*(y))
345#endif
346
cb807f40 347#ifndef timersub
0ae4fe1d 348#define timersub(a, b, result) \
349 do { \
350 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
351 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
352 if ((result)->tv_usec < 0) { \
353 --(result)->tv_sec; \
354 (result)->tv_usec += 1000000; \
355 } \
cb807f40 356 } while (0)
357#endif
358
cb807f40 359#ifndef __P
360# define __P(x) x
361#endif
362
a8ed9fd9 363#if !defined(IN6_IS_ADDR_V4MAPPED)
364# define IN6_IS_ADDR_V4MAPPED(a) \
84afc958 365 ((((u_int32_t *) (a))[0] == 0) && (((u_int32_t *) (a))[1] == 0) && \
366 (((u_int32_t *) (a))[2] == htonl (0xffff)))
a8ed9fd9 367#endif /* !defined(IN6_IS_ADDR_V4MAPPED) */
368
cb807f40 369#if !defined(__GNUC__) || (__GNUC__ < 2)
976f7e19 370# define __attribute__(x)
cb807f40 371#endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
372
ba606eb2 373#ifndef SUN_LEN
374#define SUN_LEN(su) \
2b87da3b 375 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
ba606eb2 376#endif /* SUN_LEN */
377
ea1970a3 378/* Function replacement / compatibility hacks */
379
380/* In older versions of libpam, pam_strerror takes a single argument */
381#ifdef HAVE_OLD_PAM
382# define PAM_STRERROR(a,b) pam_strerror((b))
383#else
384# define PAM_STRERROR(a,b) pam_strerror((a),(b))
385#endif
386
adeebd37 387#ifdef PAM_SUN_CODEBASE
388# define PAM_MSG_MEMBER(msg, n, member) ((*(msg))[(n)].member)
389#else
390# define PAM_MSG_MEMBER(msg, n, member) ((msg)[(n)]->member)
391#endif
392
4c8ef3fb 393#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GETADDRINFO)
394# undef HAVE_GETADDRINFO
488c06c8 395#endif
396#if defined(BROKEN_GETADDRINFO) && defined(HAVE_FREEADDRINFO)
397# undef HAVE_FREEADDRINFO
398#endif
399#if defined(BROKEN_GETADDRINFO) && defined(HAVE_GAI_STRERROR)
400# undef HAVE_GAI_STRERROR
401#endif
4c8ef3fb 402
c04f75f1 403#if !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY)
404# define memmove(s1, s2, n) bcopy((s2), (s1), (n))
405#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
406
b9f446d1 407#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
408# define atexit(a) on_exit(a)
66d6c27e 409#else
410# if defined(HAVE_XATEXIT)
411# define atexit(a) xatexit(a)
412# endif /* defined(HAVE_XATEXIT) */
b9f446d1 413#endif /* !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) */
414
3c62e7eb 415#if defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP)
416# define USE_VHANGUP
417#endif /* defined(HAVE_VHANGUP) && !defined(BROKEN_VHANGUP) */
418
7f8f5e00 419#ifndef GETPGRP_VOID
420# define getpgrp() getpgrp(0)
421#endif
422
2f125ca1 423/*
424 * Define this to use pipes instead of socketpairs for communicating with the
425 * client program. Socketpairs do not seem to work on all systems.
426 *
427 * configure.in sets this for a few OS's which are known to have problems
428 * but you may need to set it yourself
429 */
430/* #define USE_PIPES 1 */
431
1d7b9b20 432/**
433 ** login recorder definitions
434 **/
435
436/* preprocess */
437
438#ifdef HAVE_UTMP_H
439# ifdef HAVE_TIME_IN_UTMP
440# include <time.h>
441# endif
442# include <utmp.h>
443#endif
444#ifdef HAVE_UTMPX_H
445# ifdef HAVE_TV_IN_UTMPX
446# include <sys/time.h>
447# endif
448# include <utmpx.h>
449#endif
450#ifdef HAVE_LASTLOG_H
451# include <lastlog.h>
452#endif
453#ifdef HAVE_PATHS_H
454# include <paths.h>
455#endif
456
457/* FIXME: put default paths back in */
32eec038 458#ifndef UTMP_FILE
459# ifdef _PATH_UTMP
460# define UTMP_FILE _PATH_UTMP
461# else
462# ifdef CONF_UTMP_FILE
463# define UTMP_FILE CONF_UTMP_FILE
464# endif
465# endif
1d7b9b20 466#endif
32eec038 467#ifndef WTMP_FILE
468# ifdef _PATH_WTMP
469# define WTMP_FILE _PATH_WTMP
470# else
471# ifdef CONF_WTMP_FILE
472# define WTMP_FILE CONF_WTMP_FILE
473# endif
474# endif
1d7b9b20 475#endif
476/* pick up the user's location for lastlog if given */
32eec038 477#ifndef LASTLOG_FILE
478# ifdef _PATH_LASTLOG
479# define LASTLOG_FILE _PATH_LASTLOG
480# else
481# ifdef CONF_LASTLOG_FILE
482# define LASTLOG_FILE CONF_LASTLOG_FILE
483# endif
484# endif
d7c0f3d5 485#endif
1d7b9b20 486
487
488/* The login() library function in libutil is first choice */
489#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
490# define USE_LOGIN
491
492#else
493/* Simply select your favourite login types. */
494/* Can't do if-else because some systems use several... <sigh> */
495# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
496# define USE_UTMPX
497# endif
498# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
499# define USE_UTMP
500# endif
501# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
502# define USE_WTMPX
503# endif
504# if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
505# define USE_WTMP
506# endif
507
508#endif
509
510/* I hope that the presence of LASTLOG_FILE is enough to detect this */
511#if defined(LASTLOG_FILE) && !defined(DISABLE_LASTLOG)
512# define USE_LASTLOG
513#endif
514
515/* which type of time to use? (api.c) */
516#ifdef HAVE_SYS_TIME_H
517# define USE_TIMEVAL
518#endif
519
520/** end of login recorder definitions */
521
76a8e733 522#endif /* _DEFINES_H */
This page took 0.268868 seconds and 5 git commands to generate.