Home | History | Annotate | Line # | Download | only in dist
      1  1.17  christos /*	$NetBSD: misc.h,v 1.33 2026/04/08 18:58:40 christos Exp $	*/
      2  1.33  christos /* $OpenBSD: misc.h,v 1.116 2026/03/11 09:10:59 dtucker Exp $ */
      3   1.1  christos 
      4   1.1  christos /*
      5   1.1  christos  * Author: Tatu Ylonen <ylo (at) cs.hut.fi>
      6   1.1  christos  * Copyright (c) 1995 Tatu Ylonen <ylo (at) cs.hut.fi>, Espoo, Finland
      7   1.1  christos  *                    All rights reserved
      8   1.1  christos  *
      9   1.1  christos  * As far as I am concerned, the code I have written for this software
     10   1.1  christos  * can be used freely for any purpose.  Any derived versions of this
     11   1.1  christos  * software must be clearly marked as such, and if the derived work is
     12   1.1  christos  * incompatible with the protocol description in the RFC file, it must be
     13   1.1  christos  * called by a name other than "ssh" or "Secure Shell".
     14   1.1  christos  */
     15   1.1  christos 
     16   1.1  christos #ifndef _MISC_H
     17   1.1  christos #define _MISC_H
     18   1.1  christos 
     19  1.11  christos #include <sys/time.h>
     20  1.13  christos #include <sys/types.h>
     21  1.16  christos #include <sys/socket.h>
     22  1.21  christos #include <stdio.h>
     23  1.26  christos #include <signal.h>
     24  1.11  christos 
     25  1.29  christos /* special-case port number meaning allow any port */
     26  1.29  christos #define FWD_PERMIT_ANY_PORT	0
     27  1.29  christos 
     28  1.29  christos /* special-case wildcard meaning allow any host */
     29  1.29  christos #define FWD_PERMIT_ANY_HOST	"*"
     30  1.29  christos 
     31   1.7  christos /* Data structure for representing a forwarding request. */
     32   1.7  christos struct Forward {
     33   1.7  christos 	char	 *listen_host;		/* Host (address) to listen on. */
     34   1.7  christos 	int	  listen_port;		/* Port to forward. */
     35   1.7  christos 	char	 *listen_path;		/* Path to bind domain socket. */
     36   1.7  christos 	char	 *connect_host;		/* Host to connect. */
     37   1.7  christos 	int	  connect_port;		/* Port to connect on connect_host. */
     38   1.7  christos 	char	 *connect_path;		/* Path to connect domain socket. */
     39   1.7  christos 	int	  allocated_port;	/* Dynamically allocated listen port */
     40   1.7  christos 	int	  handle;		/* Handle for dynamic listen ports */
     41   1.7  christos };
     42   1.7  christos 
     43  1.10  christos int forward_equals(const struct Forward *, const struct Forward *);
     44  1.29  christos int permitopen_port(const char *p);
     45  1.29  christos 
     46  1.11  christos int daemonized(void);
     47  1.10  christos 
     48   1.7  christos /* Common server and client forwarding options. */
     49   1.7  christos struct ForwardOptions {
     50   1.7  christos 	int	 gateway_ports; /* Allow remote connects to forwarded ports. */
     51   1.7  christos 	mode_t	 streamlocal_bind_mask; /* umask for streamlocal binds */
     52   1.7  christos 	int	 streamlocal_bind_unlink; /* unlink socket before bind */
     53   1.7  christos };
     54   1.7  christos 
     55   1.1  christos /* misc.c */
     56   1.1  christos 
     57   1.1  christos char	*chop(char *);
     58  1.22  christos void	 rtrim(char *);
     59  1.17  christos void	skip_space(char **);
     60  1.30  christos const char *strprefix(const char *, const char *, int);
     61   1.1  christos char	*strdelim(char **);
     62  1.15  christos char	*strdelimw(char **);
     63  1.33  christos void	 stringlist_append(char ***listp, const char *s);
     64  1.33  christos void	 stringlist_free(char **list);
     65   1.1  christos int	 set_nonblock(int);
     66   1.1  christos int	 unset_nonblock(int);
     67   1.1  christos void	 set_nodelay(int);
     68  1.14  christos int	 set_reuseaddr(int);
     69  1.14  christos char	*get_rdomain(int);
     70  1.14  christos int	 set_rdomain(int, const char *);
     71  1.20  christos int	 get_sock_af(int);
     72  1.20  christos void	 set_sock_tos(int, int);
     73  1.26  christos int	 waitrfd(int, int *, volatile sig_atomic_t *);
     74  1.16  christos int	 timeout_connect(int, const struct sockaddr *, socklen_t, int *);
     75   1.1  christos int	 a2port(const char *);
     76   1.1  christos int	 a2tun(const char *, int *);
     77   1.1  christos char	*put_host_port(const char *, u_short);
     78  1.16  christos char	*hpdelim2(char **, char *);
     79   1.1  christos char	*hpdelim(char **);
     80   1.1  christos char	*cleanhostname(char *);
     81   1.1  christos char	*colon(char *);
     82  1.20  christos int	 parse_user_host_path(const char *, char **, char **, char **);
     83  1.10  christos int	 parse_user_host_port(const char *, char **, char **, int *);
     84  1.20  christos int	 parse_uri(const char *, const char *, char **, char **, int *, char **);
     85  1.33  christos double	 convtime_double(const char *);
     86  1.20  christos int	 convtime(const char *);
     87  1.33  christos double	 convtime_double(const char *);
     88  1.19  christos const char *fmt_timeframe(time_t t);
     89  1.22  christos int	 tilde_expand(const char *, uid_t, char **);
     90   1.1  christos char	*tilde_expand_filename(const char *, uid_t);
     91  1.19  christos 
     92  1.19  christos char	*dollar_expand(int *, const char *string, ...);
     93  1.19  christos char	*percent_expand(const char *, ...) __attribute__((__sentinel__));
     94  1.19  christos char	*percent_dollar_expand(const char *, ...) __attribute__((__sentinel__));
     95   1.1  christos char	*tohex(const void *, size_t);
     96  1.18  christos void	 xextendf(char **s, const char *sep, const char *fmt, ...)
     97  1.18  christos     __attribute__((__format__ (printf, 3, 4))) __attribute__((__nonnull__ (3)));
     98   1.1  christos void	 sanitise_stdfd(void);
     99   1.7  christos struct timeval;
    100   1.1  christos void	 ms_subtract_diff(struct timeval *, int *);
    101  1.23  christos void	 ms_to_timespec(struct timespec *, int);
    102  1.14  christos void	 monotime_ts(struct timespec *);
    103  1.14  christos void	 monotime_tv(struct timeval *);
    104   1.6  christos time_t	 monotime(void);
    105  1.10  christos double	 monotime_double(void);
    106   1.7  christos void	 lowercase(char *s);
    107   1.7  christos int	 unix_listener(const char *, int, int);
    108  1.14  christos int	 valid_domain(char *, int, const char **);
    109  1.16  christos int	 valid_env_name(const char *);
    110  1.14  christos const char *atoi_err(const char *, int *);
    111  1.14  christos int	 parse_absolute_time(const char *, uint64_t *);
    112  1.14  christos void	 format_absolute_time(uint64_t, char *, size_t);
    113  1.27  christos int	 parse_pattern_interval(const char *, char **, int *);
    114  1.16  christos int	 path_absolute(const char *);
    115  1.20  christos int	 stdfd_devnull(int, int, int);
    116  1.26  christos int	 lib_contains_symbol(const char *, const char *);
    117  1.32  christos char	*get_homedir(void);
    118   1.4  christos 
    119   1.7  christos int	bcrypt_pbkdf(const char *, size_t, const u_int8_t *, size_t,
    120   1.7  christos     u_int8_t *, size_t, unsigned int);
    121   1.2  christos 
    122   1.1  christos struct passwd *pwcopy(struct passwd *);
    123  1.32  christos void	 pwfree(struct passwd *); /* NB. only use with pwcopy */
    124  1.32  christos 
    125   1.1  christos const char *ssh_gai_strerror(int);
    126   1.1  christos 
    127  1.20  christos typedef void privdrop_fn(struct passwd *);
    128  1.20  christos typedef void privrestore_fn(void);
    129  1.20  christos #define	SSH_SUBPROCESS_STDOUT_DISCARD	(1)     /* Discard stdout */
    130  1.20  christos #define	SSH_SUBPROCESS_STDOUT_CAPTURE	(1<<1)  /* Redirect stdout */
    131  1.20  christos #define	SSH_SUBPROCESS_STDERR_DISCARD	(1<<2)  /* Discard stderr */
    132  1.20  christos #define	SSH_SUBPROCESS_UNSAFE_PATH	(1<<3)	/* Don't check for safe cmd */
    133  1.20  christos #define	SSH_SUBPROCESS_PRESERVE_ENV	(1<<4)	/* Keep parent environment */
    134  1.20  christos pid_t subprocess(const char *, const char *, int, char **, FILE **, u_int,
    135  1.20  christos     struct passwd *, privdrop_fn *, privrestore_fn *);
    136  1.20  christos 
    137   1.1  christos typedef struct arglist arglist;
    138   1.1  christos struct arglist {
    139   1.1  christos 	char    **list;
    140   1.1  christos 	u_int   num;
    141   1.1  christos 	u_int   nalloc;
    142   1.1  christos };
    143   1.4  christos void	 addargs(arglist *, const char *, ...)
    144   1.1  christos 	     __attribute__((format(printf, 2, 3)));
    145   1.4  christos void	 replacearg(arglist *, u_int, const char *, ...)
    146   1.1  christos 	     __attribute__((format(printf, 3, 4)));
    147   1.1  christos void	 freeargs(arglist *);
    148   1.1  christos 
    149  1.14  christos int	 tun_open(int, int, char **);
    150   1.1  christos 
    151   1.1  christos /* Common definitions for ssh tunnel device forwarding */
    152   1.1  christos #define SSH_TUNMODE_NO		0x00
    153   1.1  christos #define SSH_TUNMODE_POINTOPOINT	0x01
    154   1.1  christos #define SSH_TUNMODE_ETHERNET	0x02
    155   1.1  christos #define SSH_TUNMODE_DEFAULT	SSH_TUNMODE_POINTOPOINT
    156   1.1  christos #define SSH_TUNMODE_YES		(SSH_TUNMODE_POINTOPOINT|SSH_TUNMODE_ETHERNET)
    157   1.1  christos 
    158   1.1  christos #define SSH_TUNID_ANY		0x7fffffff
    159   1.1  christos #define SSH_TUNID_ERR		(SSH_TUNID_ANY - 1)
    160   1.1  christos #define SSH_TUNID_MAX		(SSH_TUNID_ANY - 2)
    161   1.1  christos 
    162   1.7  christos /* Fake port to indicate that host field is really a path. */
    163   1.7  christos #define PORT_STREAMLOCAL	-2
    164   1.7  christos 
    165   1.1  christos /* Functions to extract or store big-endian words of various sizes */
    166  1.33  christos uint64_t	get_u64(const void *)
    167   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 8)));
    168  1.33  christos uint32_t	get_u32(const void *)
    169   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 4)));
    170  1.33  christos uint16_t	get_u16(const void *)
    171   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 2)));
    172  1.33  christos void		put_u64(void *, uint64_t)
    173   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 8)));
    174  1.33  christos void		put_u32(void *, uint32_t)
    175   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 4)));
    176  1.33  christos void		put_u16(void *, uint16_t)
    177   1.7  christos     __attribute__((__bounded__( __minbytes__, 1, 2)));
    178   1.7  christos 
    179   1.7  christos /* Little-endian store/load, used by umac.c */
    180  1.33  christos uint32_t	get_u32_le(const void *)
    181   1.7  christos     __attribute__((__bounded__(__minbytes__, 1, 4)));
    182  1.33  christos void		put_u32_le(void *, uint32_t)
    183   1.7  christos     __attribute__((__bounded__(__minbytes__, 1, 4)));
    184   1.1  christos 
    185   1.4  christos struct bwlimit {
    186   1.4  christos 	size_t buflen;
    187  1.33  christos 	uint64_t rate;		/* desired rate in kbit/s */
    188  1.33  christos 	uint64_t thresh;	/* threshold after which we'll check timers */
    189  1.33  christos 	uint64_t lamt;		/* amount written in last timer interval */
    190   1.4  christos 	struct timeval bwstart, bwend;
    191   1.4  christos };
    192   1.4  christos 
    193  1.33  christos void bandwidth_limit_init(struct bwlimit *, uint64_t, size_t);
    194   1.4  christos void bandwidth_limit(struct bwlimit *, size_t);
    195   1.4  christos 
    196   1.4  christos int parse_ipqos(const char *);
    197   1.5  christos const char *iptos2str(int);
    198   1.4  christos void mktemp_proto(char *, size_t);
    199   1.1  christos 
    200  1.13  christos void	 child_set_env(char ***envp, u_int *envsizep, const char *name,
    201  1.21  christos 	    const char *value);
    202  1.22  christos const char *lookup_env_in_list(const char *env,
    203  1.22  christos 	    char * const *envs, size_t nenvs);
    204  1.24  christos const char *lookup_setenv_in_list(const char *env,
    205  1.24  christos 	    char * const *envs, size_t nenvs);
    206  1.13  christos 
    207  1.22  christos int	 argv_split(const char *, int *, char ***, int);
    208  1.13  christos char	*argv_assemble(int, char **argv);
    209  1.22  christos char	*argv_next(int *, char ***);
    210  1.22  christos void	 argv_consume(int *);
    211  1.22  christos void	 argv_free(char **, int);
    212  1.22  christos 
    213  1.13  christos int	 exited_cleanly(pid_t, const char *, const char *, int);
    214  1.13  christos 
    215  1.13  christos struct stat;
    216  1.13  christos int	 safe_path(const char *, struct stat *, const char *, uid_t,
    217  1.21  christos 	    char *, size_t);
    218  1.13  christos int	 safe_path_fd(int, const char *, struct passwd *,
    219  1.21  christos 	    char *err, size_t errlen);
    220  1.13  christos 
    221  1.17  christos /* authorized_key-style options parsing helpers */
    222  1.17  christos int	opt_flag(const char *opt, int allow_negate, const char **optsp);
    223  1.17  christos char	*opt_dequote(const char **sp, const char **errstrp);
    224  1.17  christos int	opt_match(const char **opts, const char *term);
    225  1.17  christos 
    226  1.20  christos /* readconf/servconf option lists */
    227  1.20  christos void	opt_array_append(const char *file, const int line,
    228  1.20  christos 	    const char *directive, char ***array, u_int *lp, const char *s);
    229  1.20  christos void	opt_array_append2(const char *file, const int line,
    230  1.20  christos 	    const char *directive, char ***array, int **iarray, u_int *lp,
    231  1.20  christos 	    const char *s, int i);
    232  1.28  christos void	opt_array_free2(char **array, int **iarray, u_int l);
    233  1.20  christos 
    234  1.25  christos struct timespec;
    235  1.25  christos void ptimeout_init(struct timespec *pt);
    236  1.25  christos void ptimeout_deadline_sec(struct timespec *pt, long sec);
    237  1.25  christos void ptimeout_deadline_ms(struct timespec *pt, long ms);
    238  1.26  christos void ptimeout_deadline_monotime_tsp(struct timespec *pt, struct timespec *when);
    239  1.25  christos void ptimeout_deadline_monotime(struct timespec *pt, time_t when);
    240  1.25  christos int ptimeout_get_ms(struct timespec *pt);
    241  1.25  christos struct timespec *ptimeout_get_tsp(struct timespec *pt);
    242  1.25  christos int ptimeout_isset(struct timespec *pt);
    243  1.25  christos 
    244  1.32  christos /* misc-agent.c */
    245  1.32  christos char	*agent_hostname_hash(void);
    246  1.32  christos int	 agent_listener(const char *, const char *, int *, char **);
    247  1.32  christos void	 agent_cleanup_stale(const char *, int);
    248  1.32  christos 
    249   1.1  christos /* readpass.c */
    250   1.1  christos 
    251   1.1  christos #define RP_ECHO			0x0001
    252   1.1  christos #define RP_ALLOW_STDIN		0x0002
    253   1.1  christos #define RP_ALLOW_EOF		0x0004
    254   1.1  christos #define RP_USE_ASKPASS		0x0008
    255   1.1  christos 
    256  1.18  christos struct notifier_ctx;
    257  1.18  christos 
    258   1.1  christos char	*read_passphrase(const char *, int);
    259   1.1  christos int	 ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
    260  1.18  christos struct notifier_ctx *notify_start(int, const char *, ...)
    261  1.18  christos 	__attribute__((format(printf, 2, 3)));
    262  1.20  christos void	notify_complete(struct notifier_ctx *, const char *, ...)
    263  1.20  christos 	__attribute__((format(printf, 2, 3)));
    264   1.1  christos 
    265  1.11  christos #define MINIMUM(a, b)	(((a) < (b)) ? (a) : (b))
    266  1.11  christos #define MAXIMUM(a, b)	(((a) > (b)) ? (a) : (b))
    267  1.11  christos #define ROUNDUP(x, y)   ((((x)+((y)-1))/(y))*(y))
    268  1.11  christos 
    269  1.18  christos typedef void (*sshsig_t)(int);
    270  1.18  christos sshsig_t ssh_signal(int, sshsig_t);
    271  1.29  christos int signal_is_crash(int);
    272  1.20  christos 
    273  1.25  christos /* On OpenBSD time_t is int64_t which is long long. */
    274  1.25  christos #define SSH_TIME_T_MAX LLONG_MAX
    275  1.25  christos 
    276  1.33  christos #define FD_CLOSEONEXEC(x) do { \
    277  1.33  christos 	if (fcntl(x, F_SETFD, FD_CLOEXEC) == -1) \
    278  1.33  christos 		fatal_f("fcntl(%d, F_SETFD, FD_CLOEXEC): %s", x, \
    279  1.33  christos 		    strerror(errno)); \
    280  1.33  christos } while (0)
    281  1.33  christos 
    282  1.33  christos 
    283   1.1  christos #endif /* _MISC_H */
    284