freebsd-src/crypto/openssh/misc.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

252 lines
8.9 KiB
C
Raw Normal View History

2024-03-17 17:47:10 +00:00
/* $OpenBSD: misc.h,v 1.107 2024/03/04 02:16:11 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
*
* As far as I am concerned, the code I have written for this software
* can be used freely for any purpose. Any derived versions of this
* software must be clearly marked as such, and if the derived work is
* incompatible with the protocol description in the RFC file, it must be
* called by a name other than "ssh" or "Secure Shell".
*/
2006-09-30 13:29:51 +00:00
#ifndef _MISC_H
#define _MISC_H
2017-01-31 12:33:47 +00:00
#include <sys/time.h>
2018-05-06 12:24:45 +00:00
#include <sys/types.h>
2020-02-14 19:47:15 +00:00
#include <sys/socket.h>
2021-04-23 19:13:32 +00:00
#include <stdio.h>
2023-10-04 12:06:41 +00:00
#include <signal.h>
2017-01-31 12:33:47 +00:00
2015-01-05 16:09:55 +00:00
/* Data structure for representing a forwarding request. */
struct Forward {
char *listen_host; /* Host (address) to listen on. */
int listen_port; /* Port to forward. */
char *listen_path; /* Path to bind domain socket. */
char *connect_host; /* Host to connect. */
int connect_port; /* Port to connect on connect_host. */
char *connect_path; /* Path to connect domain socket. */
int allocated_port; /* Dynamically allocated listen port */
int handle; /* Handle for dynamic listen ports */
};
2017-01-31 12:29:48 +00:00
int forward_equals(const struct Forward *, const struct Forward *);
2017-01-31 12:33:47 +00:00
int daemonized(void);
2017-01-31 12:29:48 +00:00
2015-01-05 16:09:55 +00:00
/* Common server and client forwarding options. */
struct ForwardOptions {
int gateway_ports; /* Allow remote connects to forwarded ports. */
mode_t streamlocal_bind_mask; /* umask for streamlocal binds */
int streamlocal_bind_unlink; /* unlink socket before bind */
};
2004-10-28 16:03:53 +00:00
/* misc.c */
2002-03-18 09:55:03 +00:00
char *chop(char *);
2021-08-30 19:14:33 +00:00
void rtrim(char *);
2021-02-14 21:00:25 +00:00
void skip_space(char **);
2002-03-18 09:55:03 +00:00
char *strdelim(char **);
2018-08-28 10:47:58 +00:00
char *strdelimw(char **);
2004-10-28 16:03:53 +00:00
int set_nonblock(int);
int unset_nonblock(int);
2002-03-18 09:55:03 +00:00
void set_nodelay(int);
2018-05-06 12:27:04 +00:00
int set_reuseaddr(int);
char *get_rdomain(int);
int set_rdomain(int, const char *);
2021-04-23 19:10:38 +00:00
int get_sock_af(int);
void set_sock_tos(int, int);
2023-10-04 12:06:41 +00:00
int waitrfd(int, int *, volatile sig_atomic_t *);
2020-02-14 19:47:15 +00:00
int timeout_connect(int, const struct sockaddr *, socklen_t, int *);
2002-03-18 09:55:03 +00:00
int a2port(const char *);
2006-03-22 19:46:12 +00:00
int a2tun(const char *, int *);
2006-09-30 13:29:51 +00:00
char *put_host_port(const char *, u_short);
2020-02-14 19:47:15 +00:00
char *hpdelim2(char **, char *);
2005-06-05 15:40:50 +00:00
char *hpdelim(char **);
2002-03-18 09:55:03 +00:00
char *cleanhostname(char *);
char *colon(char *);
2018-05-06 12:27:04 +00:00
int parse_user_host_path(const char *, char **, char **, char **);
2017-01-31 12:29:48 +00:00
int parse_user_host_port(const char *, char **, char **, int *);
2018-05-06 12:27:04 +00:00
int parse_uri(const char *, const char *, char **, char **, int *, char **);
2021-04-23 19:10:38 +00:00
int convtime(const char *);
2021-02-14 21:09:58 +00:00
const char *fmt_timeframe(time_t t);
2021-08-30 19:14:33 +00:00
int tilde_expand(const char *, uid_t, char **);
2005-09-03 06:59:33 +00:00
char *tilde_expand_filename(const char *, uid_t);
2021-02-14 21:09:58 +00:00
char *dollar_expand(int *, const char *string, ...);
2005-09-03 06:59:33 +00:00
char *percent_expand(const char *, ...) __attribute__((__sentinel__));
2021-02-14 21:09:58 +00:00
char *percent_dollar_expand(const char *, ...) __attribute__((__sentinel__));
2006-09-30 13:29:51 +00:00
char *tohex(const void *, size_t);
2021-02-14 21:04:52 +00:00
void xextendf(char **s, const char *sep, const char *fmt, ...)
__attribute__((__format__ (printf, 3, 4))) __attribute__((__nonnull__ (3)));
2006-03-22 19:46:12 +00:00
void sanitise_stdfd(void);
2008-07-23 09:33:08 +00:00
void ms_subtract_diff(struct timeval *, int *);
2022-02-23 18:16:45 +00:00
void ms_to_timespec(struct timespec *, int);
2018-05-06 12:27:04 +00:00
void monotime_ts(struct timespec *);
void monotime_tv(struct timeval *);
2013-09-18 17:27:38 +00:00
time_t monotime(void);
2017-01-31 12:29:48 +00:00
double monotime_double(void);
2014-01-30 10:56:49 +00:00
void lowercase(char *s);
2015-01-05 16:09:55 +00:00
int unix_listener(const char *, int, int);
2018-05-06 12:27:04 +00:00
int valid_domain(char *, int, const char **);
2019-02-05 15:03:53 +00:00
int valid_env_name(const char *);
2018-05-06 12:27:04 +00:00
const char *atoi_err(const char *, int *);
int parse_absolute_time(const char *, uint64_t *);
void format_absolute_time(uint64_t, char *, size_t);
2023-12-18 15:59:40 +00:00
int parse_pattern_interval(const char *, char **, int *);
2020-02-14 19:47:15 +00:00
int path_absolute(const char *);
2021-04-23 19:10:38 +00:00
int stdfd_devnull(int, int, int);
2023-08-10 16:16:53 +00:00
int lib_contains_symbol(const char *, const char *);
2014-01-30 10:56:49 +00:00
2010-03-08 11:19:52 +00:00
void sock_set_v6only(int);
2002-03-18 09:55:03 +00:00
struct passwd *pwcopy(struct passwd *);
const char *ssh_gai_strerror(int);
2021-04-23 19:10:38 +00:00
typedef void privdrop_fn(struct passwd *);
typedef void privrestore_fn(void);
#define SSH_SUBPROCESS_STDOUT_DISCARD (1) /* Discard stdout */
#define SSH_SUBPROCESS_STDOUT_CAPTURE (1<<1) /* Redirect stdout */
#define SSH_SUBPROCESS_STDERR_DISCARD (1<<2) /* Discard stderr */
#define SSH_SUBPROCESS_UNSAFE_PATH (1<<3) /* Don't check for safe cmd */
#define SSH_SUBPROCESS_PRESERVE_ENV (1<<4) /* Keep parent environment */
pid_t subprocess(const char *, const char *, int, char **, FILE **, u_int,
struct passwd *, privdrop_fn *, privrestore_fn *);
2002-03-18 09:55:03 +00:00
typedef struct arglist arglist;
struct arglist {
2002-06-23 14:01:54 +00:00
char **list;
2004-10-28 16:03:53 +00:00
u_int num;
u_int nalloc;
2002-03-18 09:55:03 +00:00
};
2006-03-22 19:46:12 +00:00
void addargs(arglist *, char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 2, 3)));
2006-03-22 19:46:12 +00:00
void replacearg(arglist *, u_int, char *, ...)
2021-04-23 19:13:32 +00:00
__attribute__((format(printf, 3, 4)));
2006-03-22 19:46:12 +00:00
void freeargs(arglist *);
2004-10-28 16:03:53 +00:00
2018-05-06 12:27:04 +00:00
int tun_open(int, int, char **);
2006-03-22 19:46:12 +00:00
/* Common definitions for ssh tunnel device forwarding */
#define SSH_TUNMODE_NO 0x00
#define SSH_TUNMODE_POINTOPOINT 0x01
#define SSH_TUNMODE_ETHERNET 0x02
#define SSH_TUNMODE_DEFAULT SSH_TUNMODE_POINTOPOINT
#define SSH_TUNMODE_YES (SSH_TUNMODE_POINTOPOINT|SSH_TUNMODE_ETHERNET)
#define SSH_TUNID_ANY 0x7fffffff
#define SSH_TUNID_ERR (SSH_TUNID_ANY - 1)
#define SSH_TUNID_MAX (SSH_TUNID_ANY - 2)
2006-09-30 13:29:51 +00:00
2015-01-05 16:09:55 +00:00
/* Fake port to indicate that host field is really a path. */
#define PORT_STREAMLOCAL -2
2006-09-30 13:29:51 +00:00
/* Functions to extract or store big-endian words of various sizes */
u_int64_t get_u64(const void *)
__attribute__((__bounded__( __minbytes__, 1, 8)));
u_int32_t get_u32(const void *)
__attribute__((__bounded__( __minbytes__, 1, 4)));
u_int16_t get_u16(const void *)
__attribute__((__bounded__( __minbytes__, 1, 2)));
void put_u64(void *, u_int64_t)
__attribute__((__bounded__( __minbytes__, 1, 8)));
void put_u32(void *, u_int32_t)
__attribute__((__bounded__( __minbytes__, 1, 4)));
void put_u16(void *, u_int16_t)
__attribute__((__bounded__( __minbytes__, 1, 2)));
2015-01-05 16:09:55 +00:00
/* Little-endian store/load, used by umac.c */
u_int32_t get_u32_le(const void *)
__attribute__((__bounded__(__minbytes__, 1, 4)));
void put_u32_le(void *, u_int32_t)
__attribute__((__bounded__(__minbytes__, 1, 4)));
2011-02-17 11:47:40 +00:00
struct bwlimit {
size_t buflen;
2020-02-14 19:47:15 +00:00
u_int64_t rate; /* desired rate in kbit/s */
u_int64_t thresh; /* threshold after which we'll check timers */
u_int64_t lamt; /* amount written in last timer interval */
2011-02-17 11:47:40 +00:00
struct timeval bwstart, bwend;
};
void bandwidth_limit_init(struct bwlimit *, u_int64_t, size_t);
void bandwidth_limit(struct bwlimit *, size_t);
int parse_ipqos(const char *);
2011-09-28 08:14:41 +00:00
const char *iptos2str(int);
2011-02-17 11:47:40 +00:00
void mktemp_proto(char *, size_t);
2006-09-30 13:29:51 +00:00
2018-05-06 12:24:45 +00:00
void child_set_env(char ***envp, u_int *envsizep, const char *name,
2021-04-23 19:13:32 +00:00
const char *value);
2021-08-30 19:14:33 +00:00
const char *lookup_env_in_list(const char *env,
char * const *envs, size_t nenvs);
2022-10-04 15:10:40 +00:00
const char *lookup_setenv_in_list(const char *env,
char * const *envs, size_t nenvs);
2018-05-06 12:24:45 +00:00
2021-08-30 19:14:33 +00:00
int argv_split(const char *, int *, char ***, int);
2018-05-06 12:24:45 +00:00
char *argv_assemble(int, char **argv);
2021-08-30 19:14:33 +00:00
char *argv_next(int *, char ***);
void argv_consume(int *);
void argv_free(char **, int);
2018-05-06 12:24:45 +00:00
int exited_cleanly(pid_t, const char *, const char *, int);
struct stat;
int safe_path(const char *, struct stat *, const char *, uid_t,
2021-04-23 19:13:32 +00:00
char *, size_t);
2018-05-06 12:24:45 +00:00
int safe_path_fd(int, const char *, struct passwd *,
2021-04-23 19:13:32 +00:00
char *err, size_t errlen);
2018-05-06 12:24:45 +00:00
2021-02-14 21:00:25 +00:00
/* authorized_key-style options parsing helpers */
int opt_flag(const char *opt, int allow_negate, const char **optsp);
char *opt_dequote(const char **sp, const char **errstrp);
int opt_match(const char **opts, const char *term);
2021-04-23 19:10:38 +00:00
/* readconf/servconf option lists */
void opt_array_append(const char *file, const int line,
const char *directive, char ***array, u_int *lp, const char *s);
void opt_array_append2(const char *file, const int line,
const char *directive, char ***array, int **iarray, u_int *lp,
const char *s, int i);
2024-03-17 17:47:10 +00:00
void opt_array_free2(char **array, int **iarray, u_int l);
2021-04-23 19:10:38 +00:00
2023-02-05 18:04:12 +00:00
struct timespec;
void ptimeout_init(struct timespec *pt);
void ptimeout_deadline_sec(struct timespec *pt, long sec);
void ptimeout_deadline_ms(struct timespec *pt, long ms);
2023-10-04 12:06:41 +00:00
void ptimeout_deadline_monotime_tsp(struct timespec *pt, struct timespec *when);
2023-02-05 18:04:12 +00:00
void ptimeout_deadline_monotime(struct timespec *pt, time_t when);
int ptimeout_get_ms(struct timespec *pt);
struct timespec *ptimeout_get_tsp(struct timespec *pt);
int ptimeout_isset(struct timespec *pt);
2006-09-30 13:29:51 +00:00
/* readpass.c */
#define RP_ECHO 0x0001
#define RP_ALLOW_STDIN 0x0002
#define RP_ALLOW_EOF 0x0004
#define RP_USE_ASKPASS 0x0008
2021-02-14 21:04:52 +00:00
struct notifier_ctx;
2006-09-30 13:29:51 +00:00
char *read_passphrase(const char *, int);
int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
2021-02-14 21:04:52 +00:00
struct notifier_ctx *notify_start(int, const char *, ...)
__attribute__((format(printf, 2, 3)));
2021-04-23 19:10:38 +00:00
void notify_complete(struct notifier_ctx *, const char *, ...)
__attribute__((format(printf, 2, 3)));
2006-09-30 13:29:51 +00:00
2017-01-31 12:33:47 +00:00
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
#define MAXIMUM(a, b) (((a) > (b)) ? (a) : (b))
#define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y))
2021-02-14 21:04:52 +00:00
typedef void (*sshsig_t)(int);
sshsig_t ssh_signal(int, sshsig_t);
2021-04-23 19:10:38 +00:00
2023-03-16 12:41:22 +00:00
/* On OpenBSD time_t is int64_t which is long long. */
/* #define SSH_TIME_T_MAX LLONG_MAX */
2006-09-30 13:29:51 +00:00
#endif /* _MISC_H */