stropts.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. #ifndef _BITS_STROPTS_H
  16. #define _BITS_STROPTS_H 1
  17. #include <bits/types.h>
  18. /* Macros used as `request' argument to `ioctl'. */
  19. #define __SID ('S' << 8)
  20. #define I_NREAD (__SID | 1) /* Counts the number of data bytes in the data
  21. block in the first message. */
  22. #define I_PUSH (__SID | 2) /* Push STREAMS module onto top of the current
  23. STREAM, just below the STREAM head. */
  24. #define I_POP (__SID | 3) /* Remove STREAMS module from just below the
  25. STREAM head. */
  26. #define I_LOOK (__SID | 4) /* Retrieve the name of the module just below
  27. the STREAM head and place it in a character
  28. string. */
  29. #define I_FLUSH (__SID | 5) /* Flush all input and/or output. */
  30. #define I_SRDOPT (__SID | 6) /* Sets the read mode. */
  31. #define I_GRDOPT (__SID | 7) /* Returns the current read mode setting. */
  32. #define I_STR (__SID | 8) /* Construct an internal STREAMS `ioctl'
  33. message and send that message downstream. */
  34. #define I_SETSIG (__SID | 9) /* Inform the STREAM head that the process
  35. wants the SIGPOLL signal issued. */
  36. #define I_GETSIG (__SID |10) /* Return the events for which the calling
  37. process is currently registered to be sent
  38. a SIGPOLL signal. */
  39. #define I_FIND (__SID |11) /* Compares the names of all modules currently
  40. present in the STREAM to the name pointed to
  41. by `arg'. */
  42. #define I_LINK (__SID |12) /* Connect two STREAMs. */
  43. #define I_UNLINK (__SID |13) /* Disconnects the two STREAMs. */
  44. #define I_PEEK (__SID |15) /* Allows a process to retrieve the information
  45. in the first message on the STREAM head read
  46. queue without taking the message off the
  47. queue. */
  48. #define I_FDINSERT (__SID |16) /* Create a message from the specified
  49. buffer(s), adds information about another
  50. STREAM, and send the message downstream. */
  51. #define I_SENDFD (__SID |17) /* Requests the STREAM associated with `fildes'
  52. to send a message, containing a file
  53. pointer, to the STREAM head at the other end
  54. of a STREAMS pipe. */
  55. #define I_RECVFD (__SID |14) /* Non-EFT definition. */
  56. #define I_SWROPT (__SID |19) /* Set the write mode. */
  57. #define I_GWRSET (__SID |20) /* Return the current write mode setting. */
  58. #define I_LIST (__SID |21) /* List all the module names on the STREAM, up
  59. to and including the topmost driver name. */
  60. #define I_PLINK (__SID |22) /* Connect two STREAMs with a persistent
  61. link. */
  62. #define I_PUNLINK (__SID |23) /* Disconnect the two STREAMs that were
  63. connected with a persistent link. */
  64. #define I_FLUSHBAND (__SID |28) /* Flush only band specified. */
  65. #define I_CKBAND (__SID |29) /* Check if the message of a given priority
  66. band exists on the STREAM head read
  67. queue. */
  68. #define I_GETBAND (__SID |30) /* Return the priority band of the first
  69. message on the STREAM head read queue. */
  70. #define I_ATMARK (__SID |31) /* See if the current message on the STREAM
  71. head read queue is "marked" by some module
  72. downstream. */
  73. #define I_SETCLTIME (__SID |32) /* Set the time the STREAM head will delay when
  74. a STREAM is closing and there is data on
  75. the write queues. */
  76. #define I_GETCLTIME (__SID |33) /* Get current value for closing timeout. */
  77. #define I_CANPUT (__SID |34) /* Check if a certain band is writable. */
  78. /* Used in `I_LOOK' request. */
  79. #define FMNAMESZ 8 /* compatibility w/UnixWare/Solaris. */
  80. /* Flush options. */
  81. #define FLUSHR 0x01 /* Flush read queues. */
  82. #define FLUSHW 0x02 /* Flush write queues. */
  83. #define FLUSHRW 0x03 /* Flush read and write queues. */
  84. #define FLUSHBAND 0x04 /* Flush only specified band. */
  85. /* Possible arguments for `I_SETSIG'. */
  86. #define S_INPUT 0x0001 /* A message, other than a high-priority
  87. message, has arrived. */
  88. #define S_HIPRI 0x0002 /* A high-priority message is present. */
  89. #define S_OUTPUT 0x0004 /* The write queue for normal data is no longer
  90. full. */
  91. #define S_MSG 0x0008 /* A STREAMS signal message that contains the
  92. SIGPOLL signal reaches the front of the
  93. STREAM head read queue. */
  94. #define S_ERROR 0x0010 /* Notification of an error condition. */
  95. #define S_HANGUP 0x0020 /* Notification of a hangup. */
  96. #define S_RDNORM 0x0040 /* A normal message has arrived. */
  97. #define S_WRNORM S_OUTPUT
  98. #define S_RDBAND 0x0080 /* A message with a non-zero priority has
  99. arrived. */
  100. #define S_WRBAND 0x0100 /* The write queue for a non-zero priority
  101. band is no longer full. */
  102. #define S_BANDURG 0x0200 /* When used in conjunction with S_RDBAND,
  103. SIGURG is generated instead of SIGPOLL when
  104. a priority message reaches the front of the
  105. STREAM head read queue. */
  106. /* Option for `I_PEEK'. */
  107. #define RS_HIPRI 0x01 /* Only look for high-priority messages. */
  108. /* Options for `I_SRDOPT'. */
  109. #define RNORM 0x0000 /* Byte-STREAM mode, the default. */
  110. #define RMSGD 0x0001 /* Message-discard mode. */
  111. #define RMSGN 0x0002 /* Message-nondiscard mode. */
  112. #define RPROTDAT 0x0004 /* Deliver the control part of a message as
  113. data. */
  114. #define RPROTDIS 0x0008 /* Discard the control part of a message,
  115. delivering any data part. */
  116. #define RPROTNORM 0x0010 /* Fail `read' with EBADMSG if a message
  117. containing a control part is at the front
  118. of the STREAM head read queue. */
  119. #define RPROTMASK 0x001C /* The RPROT bits */
  120. /* Possible mode for `I_SWROPT'. */
  121. #define SNDZERO 0x001 /* Send a zero-length message downstream when a
  122. `write' of 0 bytes occurs. */
  123. #define SNDPIPE 0x002 /* Send SIGPIPE on write and putmsg if
  124. sd_werror is set. */
  125. /* Arguments for `I_ATMARK'. */
  126. #define ANYMARK 0x01 /* Check if the message is marked. */
  127. #define LASTMARK 0x02 /* Check if the message is the last one marked
  128. on the queue. */
  129. /* Argument for `I_UNLINK'. */
  130. #define MUXID_ALL (-1) /* Unlink all STREAMs linked to the STREAM
  131. associated with `fildes'. */
  132. /* Macros for `getmsg', `getpmsg', `putmsg' and `putpmsg'. */
  133. #define MSG_HIPRI 0x01 /* Send/receive high priority message. */
  134. #define MSG_ANY 0x02 /* Receive any message. */
  135. #define MSG_BAND 0x04 /* Receive message from specified band. */
  136. /* Values returned by getmsg and getpmsg */
  137. #define MORECTL 1 /* More control information is left in
  138. message. */
  139. #define MOREDATA 2 /* More data is left in message. */
  140. /* Structure used for the I_FLUSHBAND ioctl on streams. */
  141. struct bandinfo
  142. {
  143. unsigned char bi_pri;
  144. int bi_flag;
  145. };
  146. struct strbuf
  147. {
  148. int maxlen; /* Maximum buffer length. */
  149. int len; /* Length of data. */
  150. char *buf; /* Pointer to buffer. */
  151. };
  152. struct strpeek
  153. {
  154. struct strbuf ctlbuf;
  155. struct strbuf databuf;
  156. __t_uscalar_t flags; /* UnixWare/Solaris compatibility. */
  157. };
  158. struct strfdinsert
  159. {
  160. struct strbuf ctlbuf;
  161. struct strbuf databuf;
  162. __t_uscalar_t flags; /* UnixWare/Solaris compatibility. */
  163. int fildes;
  164. int offset;
  165. };
  166. struct strioctl
  167. {
  168. int ic_cmd;
  169. int ic_timout;
  170. int ic_len;
  171. char *ic_dp;
  172. };
  173. struct strrecvfd
  174. {
  175. int fd;
  176. __uid_t uid;
  177. __gid_t gid;
  178. char fill[8]; /* UnixWare/Solaris compatibility */
  179. };
  180. struct str_mlist
  181. {
  182. char l_name[FMNAMESZ + 1];
  183. };
  184. struct str_list
  185. {
  186. int sl_nmods;
  187. struct str_mlist *sl_modlist;
  188. };
  189. #endif /* bits/stropts.h */