blob: 202c055dbae747933fbc7da03bc28639424bedc0 [file] [log] [blame]
Damien Miller72c9a7e2000-09-24 11:10:13 +11001/*
Darren Tuckerc9627cd2013-04-01 12:40:48 +11002 * Copyright (c) 2000, 2001, 2011, 2013 Corinna Vinschen <vinschen@redhat.com>
Damien Miller72c9a7e2000-09-24 11:10:13 +11003 *
Kevin Steveseb363022002-04-15 22:00:51 +00004 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller72c9a7e2000-09-24 11:10:13 +110023 *
24 * Created: Sat Sep 02 12:17:00 2000 cv
25 *
26 * This file contains functions for forcing opened file descriptors to
27 * binary mode on Windows systems.
28 */
29
Damien Miller2deb3f62001-02-18 12:30:55 +110030#ifndef _BSD_CYGWIN_UTIL_H
31#define _BSD_CYGWIN_UTIL_H
Damien Miller72c9a7e2000-09-24 11:10:13 +110032
33#ifdef HAVE_CYGWIN
34
Darren Tucker80649c52003-08-07 16:28:16 +100035#undef ERROR
Darren Tucker80649c52003-08-07 16:28:16 +100036
Darren Tuckerc9627cd2013-04-01 12:40:48 +110037/* Avoid including windows headers. */
38typedef void *HANDLE;
39#define INVALID_HANDLE_VALUE ((HANDLE) -1)
Damien Miller6482d902014-05-27 14:34:42 +100040#define DNLEN 16
41#define UNLEN 256
Darren Tucker31854182012-08-28 19:57:19 +100042
Darren Tucker1411c922014-01-18 21:03:59 +110043/* Cygwin functions for which declarations are only available when including
Damien Miller10479cc2018-04-10 10:19:02 +100044 windows headers, so we have to define them here explicitly. */
Darren Tucker1411c922014-01-18 21:03:59 +110045extern HANDLE cygwin_logon_user (const struct passwd *, const char *);
46extern void cygwin_set_impersonation_token (const HANDLE);
47
Darren Tucker80649c52003-08-07 16:28:16 +100048#include <sys/cygwin.h>
Damien Miller402b3312001-04-14 00:28:42 +100049#include <io.h>
50
Damien Miller6482d902014-05-27 14:34:42 +100051#define CYGWIN_SSH_PRIVSEP_USER (cygwin_ssh_privsep_user())
52const char *cygwin_ssh_privsep_user();
Darren Tucker1411c922014-01-18 21:03:59 +110053
Damien Miller31741252003-05-19 00:13:38 +100054int binary_open(const char *, int , ...);
Damien Miller31741252003-05-19 00:13:38 +100055int check_ntsec(const char *);
Darren Tucker14c372d2004-08-30 20:42:08 +100056char **fetch_windows_environment(void);
57void free_windows_environment(char **);
Damien Miller72c9a7e2000-09-24 11:10:13 +110058
Darren Tuckerc9627cd2013-04-01 12:40:48 +110059#ifndef NO_BINARY_OPEN
Damien Miller72c9a7e2000-09-24 11:10:13 +110060#define open binary_open
Darren Tuckerc9627cd2013-04-01 12:40:48 +110061#endif
Damien Miller72c9a7e2000-09-24 11:10:13 +110062
63#endif /* HAVE_CYGWIN */
Damien Miller2deb3f62001-02-18 12:30:55 +110064
65#endif /* _BSD_CYGWIN_UTIL_H */