Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fhandler_mailslot.cc « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07babd2fd3a0a16b5e754fda7ad5e310ab278e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* fhandler_mailslot.cc.  See fhandler.h for a description of the fhandler classes.

   Copyright 2005 Red Hat, Inc.

   This file is part of Cygwin.

   This software is a copyrighted work licensed under the terms of the
   Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
   details. */

#include "winsup.h"
#include <unistd.h>
#include <sys/termios.h>

#include <ntdef.h>
#include "cygerrno.h"
#include "perprocess.h"
#include "security.h"
#include "path.h"
#include "fhandler.h"
#include "dtable.h"
#include "cygheap.h"
#include "ntdll.h"

/**********************************************************************/
/* fhandler_mailslot */

fhandler_mailslot::fhandler_mailslot ()
  : fhandler_base ()
{
}

int __stdcall
fhandler_mailslot::fstat (struct __stat64 *buf)
{
  debug_printf ("here");

  fhandler_base::fstat (buf);
  if (is_auto_device ())
    {
      buf->st_mode = S_IFCHR | S_IRUSR | S_IWUSR;
      buf->st_uid = geteuid32 ();
      buf->st_gid = getegid32 ();
      buf->st_nlink = 1;
      buf->st_blksize = S_BLKSIZE;
      time_as_timestruc_t (&buf->st_ctim);
      buf->st_atim = buf->st_mtim = buf->st_ctim;
    }
  return 0;
}

int
fhandler_mailslot::open (int flags, mode_t mode)
{
  int res = 0;
  HANDLE x;

  switch (flags & O_ACCMODE)
    {
    case O_RDONLY:	/* Server */
      x = CreateMailslot (get_win32_name (),
			  0, /* Any message size */
			  (flags & O_NONBLOCK) ? 0 : MAILSLOT_WAIT_FOREVER,
			  &sec_none);
      if (x == INVALID_HANDLE_VALUE)
	{
	  /* FIXME: It's not possible to open the read side of an existing
	     mailslot using CreateFile.  You'll get a handle, but using it
	     in ReadFile returns ERROR_INVALID_PARAMETER.  On the other
	     hand, CreateMailslot returns with ERROR_ALREADY_EXISTS if the
	     mailslot has been created already.
	     So this is an exclusive open for now.  *Duplicating* read side
	     handles works, though, so it might be an option to duplicate
	     the handle from the first process to the current process for
	     opening the mailslot. */
#if 0
	  if (GetLastError () != ERROR_ALREADY_EXISTS)
	    {
	      __seterrno ();
	      break;
	    }
	  x = CreateFile (get_win32_name (), GENERIC_READ, wincap.shared (),
			  &sec_none, OPEN_EXISTING, 0, 0);
#endif
	  if (x == INVALID_HANDLE_VALUE)
	    {
	      __seterrno ();
	      break;
	    }
	}
      set_io_handle (x);
      set_flags (flags, O_BINARY);
      res = 1;
      set_open_status ();
      break;
    case O_WRONLY:	/* Client */
      /* The client is the DLL exclusively.  Don't allow opening from
	 application code. */
      extern fhandler_mailslot *dev_kmsg;
      if (this != dev_kmsg)
	{
	  set_errno (EPERM);	/* As on Linux. */
	  break;
	}
      x = CreateFile (get_win32_name (), GENERIC_WRITE, wincap.shared (),
		      &sec_none, OPEN_EXISTING, 0, 0);
      if (x == INVALID_HANDLE_VALUE)
	{
	  __seterrno ();
	  break;
	}
      set_io_handle (x);
      set_flags (flags, O_BINARY);
      res = 1;
      set_open_status ();
      break;
    default:
      set_errno (EINVAL);
      break;
    }
  return res;
}

int
fhandler_mailslot::write (const void *ptr, size_t len)
{
  /* Check for 425/426 byte weirdness */
  if (len == 425 || len == 426)
    {
      char buf[427];
      buf[425] = buf[426] = '\0';
      memcpy (buf, ptr, len);
      return raw_write (buf, 427);
    }
  return raw_write (ptr, len);
}

int
fhandler_mailslot::ioctl (unsigned int cmd, void *buf)
{
  int res = -1;

  switch (cmd)
    {
    case FIONBIO:
      {
	DWORD timeout = buf ? 0 : MAILSLOT_WAIT_FOREVER;
	if (!SetMailslotInfo (get_handle (), timeout))
	  {
	    debug_printf ("SetMailslotInfo (%u): %E", timeout);
	    break;
	  }
      }
      /*FALLTHRU*/
    default:
      res =  fhandler_base::ioctl (cmd, buf);
      break;
    }
  return res;
}