blob: 434e06c01599b901728fbbea29d43d1d3c608b2c [file] [log] [blame]
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +00001/* $OpenBSD: misc.h,v 1.55 2016/03/02 22:42:40 dtucker Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Ben Lindstrom226cfa02001-01-22 05:34:40 +00003/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000014
Damien Miller3f941882006-03-31 23:13:02 +110015#ifndef _MISC_H
16#define _MISC_H
17
Damien Miller7acefbb2014-07-18 14:11:24 +100018/* Data structure for representing a forwarding request. */
19struct Forward {
20 char *listen_host; /* Host (address) to listen on. */
21 int listen_port; /* Port to forward. */
22 char *listen_path; /* Path to bind domain socket. */
23 char *connect_host; /* Host to connect. */
24 int connect_port; /* Port to connect on connect_host. */
25 char *connect_path; /* Path to connect domain socket. */
26 int allocated_port; /* Dynamically allocated listen port */
27 int handle; /* Handle for dynamic listen ports */
28};
29
30/* Common server and client forwarding options. */
31struct ForwardOptions {
32 int gateway_ports; /* Allow remote connects to forwarded ports. */
33 mode_t streamlocal_bind_mask; /* umask for streamlocal binds */
34 int streamlocal_bind_unlink; /* unlink socket before bind */
35};
36
Darren Tuckere608ca22004-05-13 16:15:47 +100037/* misc.c */
38
Kevin Stevesd009ae32001-07-04 17:25:54 +000039char *chop(char *);
40char *strdelim(char **);
Damien Miller232711f2004-06-15 10:35:30 +100041int set_nonblock(int);
42int unset_nonblock(int);
Damien Miller398e1cf2002-02-05 11:52:13 +110043void set_nodelay(int);
Kevin Stevesd009ae32001-07-04 17:25:54 +000044int a2port(const char *);
Damien Millerd27b9472005-12-13 19:29:02 +110045int a2tun(const char *, int *);
Darren Tuckerda345532006-07-10 23:04:19 +100046char *put_host_port(const char *, u_short);
Damien Millerf91ee4c2005-03-01 21:24:33 +110047char *hpdelim(char **);
Kevin Stevesd009ae32001-07-04 17:25:54 +000048char *cleanhostname(char *);
49char *colon(char *);
50long convtime(const char *);
Damien Miller5fd38c02005-05-26 12:02:14 +100051char *tilde_expand_filename(const char *, uid_t);
Darren Tucker8e2eb302005-07-14 17:07:21 +100052char *percent_expand(const char *, ...) __attribute__((__sentinel__));
Damien Miller3f941882006-03-31 23:13:02 +110053char *tohex(const void *, size_t);
Darren Tuckerce321d82005-10-03 18:11:24 +100054void sanitise_stdfd(void);
Darren Tucker3fc464e2008-06-13 06:42:45 +100055void ms_subtract_diff(struct timeval *, int *);
56void ms_to_timeval(struct timeval *, int);
Darren Tuckerb759c9c2013-06-02 07:46:16 +100057time_t monotime(void);
dtucker@openbsd.orgb8d4eaf2016-03-02 22:42:40 +000058double monotime_double(void);
Damien Millere9fc72e2013-10-15 12:14:12 +110059void lowercase(char *s);
Damien Miller7acefbb2014-07-18 14:11:24 +100060int unix_listener(const char *, int, int);
Damien Millere9fc72e2013-10-15 12:14:12 +110061
Damien Miller04ee0f82009-11-18 17:48:30 +110062void sock_set_v6only(int);
Kevin Stevesd009ae32001-07-04 17:25:54 +000063
64struct passwd *pwcopy(struct passwd *);
Darren Tucker4abde772007-12-29 02:43:51 +110065const char *ssh_gai_strerror(int);
Ben Lindstrom226cfa02001-01-22 05:34:40 +000066
Ben Lindstrom387c4722001-05-08 20:27:25 +000067typedef struct arglist arglist;
68struct arglist {
Ben Lindstrom6328ab32002-03-22 02:54:23 +000069 char **list;
Darren Tuckerc7a6fc42004-08-13 21:18:00 +100070 u_int num;
71 u_int nalloc;
Ben Lindstrom387c4722001-05-08 20:27:25 +000072};
Damien Miller3eec6b72006-01-31 21:49:27 +110073void addargs(arglist *, char *, ...)
74 __attribute__((format(printf, 2, 3)));
75void replacearg(arglist *, u_int, char *, ...)
76 __attribute__((format(printf, 3, 4)));
77void freeargs(arglist *);
Darren Tucker06f2bd82004-05-13 16:06:46 +100078
Damien Miller7b58e802005-12-13 19:33:19 +110079int tun_open(int, int);
80
81/* Common definitions for ssh tunnel device forwarding */
82#define SSH_TUNMODE_NO 0x00
83#define SSH_TUNMODE_POINTOPOINT 0x01
84#define SSH_TUNMODE_ETHERNET 0x02
85#define SSH_TUNMODE_DEFAULT SSH_TUNMODE_POINTOPOINT
86#define SSH_TUNMODE_YES (SSH_TUNMODE_POINTOPOINT|SSH_TUNMODE_ETHERNET)
87
88#define SSH_TUNID_ANY 0x7fffffff
89#define SSH_TUNID_ERR (SSH_TUNID_ANY - 1)
90#define SSH_TUNID_MAX (SSH_TUNID_ANY - 2)
Damien Miller3f941882006-03-31 23:13:02 +110091
Damien Miller7acefbb2014-07-18 14:11:24 +100092/* Fake port to indicate that host field is really a path. */
93#define PORT_STREAMLOCAL -2
94
Damien Miller3f941882006-03-31 23:13:02 +110095/* Functions to extract or store big-endian words of various sizes */
96u_int64_t get_u64(const void *)
Damien Miller686c7d92014-05-15 14:37:03 +100097 __attribute__((__bounded__( __minbytes__, 1, 8)));
Damien Miller3f941882006-03-31 23:13:02 +110098u_int32_t get_u32(const void *)
Damien Miller686c7d92014-05-15 14:37:03 +100099 __attribute__((__bounded__( __minbytes__, 1, 4)));
Damien Miller3f941882006-03-31 23:13:02 +1100100u_int16_t get_u16(const void *)
Damien Miller686c7d92014-05-15 14:37:03 +1000101 __attribute__((__bounded__( __minbytes__, 1, 2)));
Damien Miller3f941882006-03-31 23:13:02 +1100102void put_u64(void *, u_int64_t)
Damien Miller686c7d92014-05-15 14:37:03 +1000103 __attribute__((__bounded__( __minbytes__, 1, 8)));
Damien Miller3f941882006-03-31 23:13:02 +1100104void put_u32(void *, u_int32_t)
Damien Miller686c7d92014-05-15 14:37:03 +1000105 __attribute__((__bounded__( __minbytes__, 1, 4)));
Damien Miller3f941882006-03-31 23:13:02 +1100106void put_u16(void *, u_int16_t)
Damien Miller686c7d92014-05-15 14:37:03 +1000107 __attribute__((__bounded__( __minbytes__, 1, 2)));
Damien Miller3f941882006-03-31 23:13:02 +1100108
Damien Miller88856692014-04-20 13:33:19 +1000109/* Little-endian store/load, used by umac.c */
110u_int32_t get_u32_le(const void *)
Damien Miller686c7d92014-05-15 14:37:03 +1000111 __attribute__((__bounded__(__minbytes__, 1, 4)));
Damien Miller88856692014-04-20 13:33:19 +1000112void put_u32_le(void *, u_int32_t)
Damien Miller686c7d92014-05-15 14:37:03 +1000113 __attribute__((__bounded__(__minbytes__, 1, 4)));
Damien Miller88856692014-04-20 13:33:19 +1000114
Damien Miller65e42f82010-09-24 22:15:11 +1000115struct bwlimit {
116 size_t buflen;
117 u_int64_t rate, thresh, lamt;
118 struct timeval bwstart, bwend;
119};
120
121void bandwidth_limit_init(struct bwlimit *, u_int64_t, size_t);
122void bandwidth_limit(struct bwlimit *, size_t);
123
Damien Miller0dac6fb2010-11-20 15:19:38 +1100124int parse_ipqos(const char *);
Damien Miller91475862011-05-05 14:14:34 +1000125const char *iptos2str(int);
Damien Miller2cd62932010-12-01 11:50:35 +1100126void mktemp_proto(char *, size_t);
Damien Miller3f941882006-03-31 23:13:02 +1100127
Damien Millerbdf00ca2006-08-19 00:33:05 +1000128/* readpass.c */
129
130#define RP_ECHO 0x0001
131#define RP_ALLOW_STDIN 0x0002
132#define RP_ALLOW_EOF 0x0004
133#define RP_USE_ASKPASS 0x0008
134
135char *read_passphrase(const char *, int);
136int ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
137int read_keyfile_line(FILE *, const char *, char *, size_t, u_long *);
138
139#endif /* _MISC_H */