Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 1 | /* |
Darren Tucker | c9627cd | 2013-04-01 12:40:48 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000, 2001, 2011, 2013 Corinna Vinschen <vinschen@redhat.com> |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 3 | * |
Kevin Steves | eb36302 | 2002-04-15 22:00:51 +0000 | [diff] [blame] | 4 | * 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 Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 23 | * |
| 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 Miller | 2deb3f6 | 2001-02-18 12:30:55 +1100 | [diff] [blame] | 30 | #ifndef _BSD_CYGWIN_UTIL_H |
| 31 | #define _BSD_CYGWIN_UTIL_H |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 32 | |
| 33 | #ifdef HAVE_CYGWIN |
| 34 | |
Darren Tucker | 80649c5 | 2003-08-07 16:28:16 +1000 | [diff] [blame] | 35 | #undef ERROR |
Darren Tucker | 80649c5 | 2003-08-07 16:28:16 +1000 | [diff] [blame] | 36 | |
Darren Tucker | c9627cd | 2013-04-01 12:40:48 +1100 | [diff] [blame] | 37 | /* Avoid including windows headers. */ |
| 38 | typedef void *HANDLE; |
| 39 | #define INVALID_HANDLE_VALUE ((HANDLE) -1) |
Damien Miller | 6482d90 | 2014-05-27 14:34:42 +1000 | [diff] [blame] | 40 | #define DNLEN 16 |
| 41 | #define UNLEN 256 |
Darren Tucker | 3185418 | 2012-08-28 19:57:19 +1000 | [diff] [blame] | 42 | |
Darren Tucker | 1411c92 | 2014-01-18 21:03:59 +1100 | [diff] [blame] | 43 | /* Cygwin functions for which declarations are only available when including |
Damien Miller | 10479cc | 2018-04-10 10:19:02 +1000 | [diff] [blame^] | 44 | windows headers, so we have to define them here explicitly. */ |
Darren Tucker | 1411c92 | 2014-01-18 21:03:59 +1100 | [diff] [blame] | 45 | extern HANDLE cygwin_logon_user (const struct passwd *, const char *); |
| 46 | extern void cygwin_set_impersonation_token (const HANDLE); |
| 47 | |
Darren Tucker | 80649c5 | 2003-08-07 16:28:16 +1000 | [diff] [blame] | 48 | #include <sys/cygwin.h> |
Damien Miller | 402b331 | 2001-04-14 00:28:42 +1000 | [diff] [blame] | 49 | #include <io.h> |
| 50 | |
Damien Miller | 6482d90 | 2014-05-27 14:34:42 +1000 | [diff] [blame] | 51 | #define CYGWIN_SSH_PRIVSEP_USER (cygwin_ssh_privsep_user()) |
| 52 | const char *cygwin_ssh_privsep_user(); |
Darren Tucker | 1411c92 | 2014-01-18 21:03:59 +1100 | [diff] [blame] | 53 | |
Damien Miller | 3174125 | 2003-05-19 00:13:38 +1000 | [diff] [blame] | 54 | int binary_open(const char *, int , ...); |
Damien Miller | 3174125 | 2003-05-19 00:13:38 +1000 | [diff] [blame] | 55 | int check_ntsec(const char *); |
Darren Tucker | 14c372d | 2004-08-30 20:42:08 +1000 | [diff] [blame] | 56 | char **fetch_windows_environment(void); |
| 57 | void free_windows_environment(char **); |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 58 | |
Darren Tucker | c9627cd | 2013-04-01 12:40:48 +1100 | [diff] [blame] | 59 | #ifndef NO_BINARY_OPEN |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 60 | #define open binary_open |
Darren Tucker | c9627cd | 2013-04-01 12:40:48 +1100 | [diff] [blame] | 61 | #endif |
Damien Miller | 72c9a7e | 2000-09-24 11:10:13 +1100 | [diff] [blame] | 62 | |
| 63 | #endif /* HAVE_CYGWIN */ |
Damien Miller | 2deb3f6 | 2001-02-18 12:30:55 +1100 | [diff] [blame] | 64 | |
| 65 | #endif /* _BSD_CYGWIN_UTIL_H */ |