[project @ 2003-09-26 09:26:13 by panne]
[ghc-base.git] / System / Posix / Internals.hs
1 {-# OPTIONS -fno-implicit-prelude #-}
2
3 -----------------------------------------------------------------------------
4 -- |
5 -- Module      :  System.Posix.Internals
6 -- Copyright   :  (c) The University of Glasgow, 1992-2002
7 -- License     :  see libraries/base/LICENSE
8 -- 
9 -- Maintainer  :  cvs-ghc@haskell.org
10 -- Stability   :  internal
11 -- Portability :  non-portable
12 --
13 -- POSIX support layer for the standard libraries.
14 -- This library is built on *every* platform, including Win32.
15 --
16 -- Non-posix compliant in order to support the following features:
17 --      * S_ISSOCK (no sockets in POSIX)
18 --
19 -----------------------------------------------------------------------------
20
21 -- #hide
22 module System.Posix.Internals where
23
24 #include "config.h"
25
26 import Control.Monad
27 import System.Posix.Types
28
29 import Foreign
30 import Foreign.C
31
32 import Data.Bits
33 import Data.Maybe
34
35 #ifdef __GLASGOW_HASKELL__
36 import GHC.Base
37 import GHC.Num
38 import GHC.Real
39 import GHC.IOBase
40 #else
41 import System.IO
42 #endif
43
44 #ifdef __HUGS__
45 import Hugs.Prelude (IOException(..), IOErrorType(..))
46
47 {-# CBITS PrelIOUtils.c dirUtils.c #-}
48 #endif
49
50 -- ---------------------------------------------------------------------------
51 -- Types
52
53 type CDir       = ()
54 type CDirent    = ()
55 type CFLock     = ()
56 type CGroup     = ()
57 type CLconv     = ()
58 type CPasswd    = ()
59 type CSigaction = ()
60 type CSigset    = ()
61 type CStat      = ()
62 type CTermios   = ()
63 type CTm        = ()
64 type CTms       = ()
65 type CUtimbuf   = ()
66 type CUtsname   = ()
67
68 #ifndef __GLASGOW_HASKELL__
69 type FD = Int
70 #endif
71
72 -- ---------------------------------------------------------------------------
73 -- stat()-related stuff
74
75 fdFileSize :: Int -> IO Integer
76 fdFileSize fd = 
77   allocaBytes sizeof_stat $ \ p_stat -> do
78     throwErrnoIfMinus1Retry "fileSize" $
79         c_fstat (fromIntegral fd) p_stat
80     c_mode <- st_mode p_stat :: IO CMode 
81     if not (s_isreg c_mode)
82         then return (-1)
83         else do
84     c_size <- st_size p_stat :: IO COff
85     return (fromIntegral c_size)
86
87 data FDType  = Directory | Stream | RegularFile
88                deriving (Eq)
89
90 fileType :: FilePath -> IO FDType
91 fileType file =
92   allocaBytes sizeof_stat $ \ p_stat -> do
93   withCString file $ \p_file -> do
94     throwErrnoIfMinus1Retry "fileType" $
95       c_stat p_file p_stat
96     statGetType p_stat
97
98 -- NOTE: On Win32 platforms, this will only work with file descriptors
99 -- referring to file handles. i.e., it'll fail for socket FDs.
100 fdType :: Int -> IO FDType
101 fdType fd = 
102   allocaBytes sizeof_stat $ \ p_stat -> do
103     throwErrnoIfMinus1Retry "fdType" $
104         c_fstat (fromIntegral fd) p_stat
105     statGetType p_stat
106
107 statGetType p_stat = do
108   c_mode <- st_mode p_stat :: IO CMode
109   case () of
110       _ | s_isdir c_mode        -> return Directory
111         | s_isfifo c_mode || s_issock c_mode || s_ischr  c_mode
112                                 -> return Stream
113         | s_isreg c_mode        -> return RegularFile
114         | otherwise             -> ioError ioe_unknownfiletype
115     
116
117 ioe_unknownfiletype = IOError Nothing UnsupportedOperation "fdType"
118                         "unknown file type" Nothing
119
120 -- It isn't clear whether ftruncate is POSIX or not (I've read several
121 -- manpages and they seem to conflict), so we truncate using open/2.
122 fileTruncate :: FilePath -> IO ()
123 fileTruncate file = do
124   let flags = o_WRONLY .|. o_TRUNC
125   withCString file $ \file_cstr -> do
126     fd <- fromIntegral `liftM`
127             throwErrnoIfMinus1Retry "fileTruncate"
128                 (c_open file_cstr (fromIntegral flags) 0o666)
129     c_close fd
130   return ()
131
132 #ifdef mingw32_TARGET_OS
133 closeFd :: Bool -> CInt -> IO CInt
134 closeFd isStream fd 
135   | isStream  = c_closesocket fd
136   | otherwise = c_close fd
137
138 foreign import stdcall unsafe "HsBase.h closesocket"
139    c_closesocket :: CInt -> IO CInt
140 #endif
141
142 fdGetMode :: Int -> IO IOMode
143 fdGetMode fd = do
144 #ifdef mingw32_TARGET_OS
145     flags1 <- throwErrnoIfMinus1Retry "fdGetMode" 
146                 (c__setmode (fromIntegral fd) (fromIntegral o_WRONLY))
147     flags  <- throwErrnoIfMinus1Retry "fdGetMode" 
148                 (c__setmode (fromIntegral fd) (fromIntegral flags1))
149 #else
150     flags <- throwErrnoIfMinus1Retry "fdGetMode" 
151                 (c_fcntl_read (fromIntegral fd) const_f_getfl)
152 #endif
153     let
154        wH  = (flags .&. o_WRONLY) /= 0
155        aH  = (flags .&. o_APPEND) /= 0
156        rwH = (flags .&. o_RDWR) /= 0
157
158        mode
159          | wH && aH  = AppendMode
160          | wH        = WriteMode
161          | rwH       = ReadWriteMode
162          | otherwise = ReadMode
163           
164     return mode
165
166 -- ---------------------------------------------------------------------------
167 -- Terminal-related stuff
168
169 fdIsTTY :: Int -> IO Bool
170 fdIsTTY fd = c_isatty (fromIntegral fd) >>= return.toBool
171
172 #ifndef mingw32_TARGET_OS
173
174 setEcho :: Int -> Bool -> IO ()
175 setEcho fd on = do
176   tcSetAttr fd $ \ p_tios -> do
177     c_lflag <- c_lflag p_tios :: IO CTcflag
178     let new_c_lflag
179          | on        = c_lflag .|. fromIntegral const_echo
180          | otherwise = c_lflag .&. complement (fromIntegral const_echo)
181     poke_c_lflag p_tios (new_c_lflag :: CTcflag)
182
183 getEcho :: Int -> IO Bool
184 getEcho fd = do
185   tcSetAttr fd $ \ p_tios -> do
186     c_lflag <- c_lflag p_tios :: IO CTcflag
187     return ((c_lflag .&. fromIntegral const_echo) /= 0)
188
189 setCooked :: Int -> Bool -> IO ()
190 setCooked fd cooked = 
191   tcSetAttr fd $ \ p_tios -> do
192
193     -- turn on/off ICANON
194     c_lflag <- c_lflag p_tios :: IO CTcflag
195     let new_c_lflag | cooked    = c_lflag .|. (fromIntegral const_icanon)
196                     | otherwise = c_lflag .&. complement (fromIntegral const_icanon)
197     poke_c_lflag p_tios (new_c_lflag :: CTcflag)
198
199     -- set VMIN & VTIME to 1/0 respectively
200     when (not cooked) $ do
201             c_cc <- ptr_c_cc p_tios
202             let vmin  = (c_cc `plusPtr` (fromIntegral const_vmin))  :: Ptr Word8
203                 vtime = (c_cc `plusPtr` (fromIntegral const_vtime)) :: Ptr Word8
204             poke vmin  1
205             poke vtime 0
206
207 tcSetAttr :: FD -> (Ptr CTermios -> IO a) -> IO a
208 tcSetAttr fd fun = do
209      allocaBytes sizeof_termios  $ \p_tios -> do
210         throwErrnoIfMinus1Retry "tcSetAttr"
211            (c_tcgetattr (fromIntegral fd) p_tios)
212
213 #ifdef __GLASGOW_HASKELL__
214         -- Save a copy of termios, if this is a standard file descriptor.
215         -- These terminal settings are restored in hs_exit().
216         when (fd <= 2) $ do
217           p <- get_saved_termios fd
218           when (p == nullPtr) $ do
219              saved_tios <- mallocBytes sizeof_termios
220              copyBytes saved_tios p_tios sizeof_termios
221              set_saved_termios fd saved_tios
222 #endif
223
224         -- tcsetattr() when invoked by a background process causes the process
225         -- to be sent SIGTTOU regardless of whether the process has TOSTOP set
226         -- in its terminal flags (try it...).  This function provides a
227         -- wrapper which temporarily blocks SIGTTOU around the call, making it
228         -- transparent.
229         allocaBytes sizeof_sigset_t $ \ p_sigset -> do
230         allocaBytes sizeof_sigset_t $ \ p_old_sigset -> do
231              c_sigemptyset p_sigset
232              c_sigaddset   p_sigset const_sigttou
233              c_sigprocmask const_sig_block p_sigset p_old_sigset
234              r <- fun p_tios  -- do the business
235              throwErrnoIfMinus1Retry_ "tcSetAttr" $
236                  c_tcsetattr (fromIntegral fd) const_tcsanow p_tios
237              c_sigprocmask const_sig_setmask p_old_sigset nullPtr
238              return r
239
240 #ifdef __GLASGOW_HASKELL__
241 foreign import ccall unsafe "HsBase.h __hscore_get_saved_termios"
242    get_saved_termios :: Int -> IO (Ptr CTermios)
243
244 foreign import ccall unsafe "HsBase.h __hscore_set_saved_termios"
245    set_saved_termios :: Int -> (Ptr CTermios) -> IO ()
246 #endif
247
248 #else
249
250 -- 'raw' mode for Win32 means turn off 'line input' (=> buffering and
251 -- character translation for the console.) The Win32 API for doing
252 -- this is GetConsoleMode(), which also requires echoing to be disabled
253 -- when turning off 'line input' processing. Notice that turning off
254 -- 'line input' implies enter/return is reported as '\r' (and it won't
255 -- report that character until another character is input..odd.) This
256 -- latter feature doesn't sit too well with IO actions like IO.hGetLine..
257 -- consider yourself warned.
258 setCooked :: Int -> Bool -> IO ()
259 setCooked fd cooked = do
260   x <- set_console_buffering (fromIntegral fd) (if cooked then 1 else 0)
261   if (x /= 0)
262    then ioException (ioe_unk_error "setCooked" "failed to set buffering")
263    else return ()
264
265 ioe_unk_error loc msg 
266  = IOError Nothing OtherError loc msg Nothing
267
268 -- Note: echoing goes hand in hand with enabling 'line input' / raw-ness
269 -- for Win32 consoles, hence setEcho ends up being the inverse of setCooked.
270 setEcho :: Int -> Bool -> IO ()
271 setEcho fd on = do
272   x <- set_console_echo (fromIntegral fd) (if on then 1 else 0)
273   if (x /= 0)
274    then ioException (ioe_unk_error "setEcho" "failed to set echoing")
275    else return ()
276
277 getEcho :: Int -> IO Bool
278 getEcho fd = do
279   r <- get_console_echo (fromIntegral fd)
280   if (r == (-1))
281    then ioException (ioe_unk_error "getEcho" "failed to get echoing")
282    else return (r == 1)
283
284 foreign import ccall unsafe "consUtils.h set_console_buffering__"
285    set_console_buffering :: CInt -> CInt -> IO CInt
286
287 foreign import ccall unsafe "consUtils.h set_console_echo__"
288    set_console_echo :: CInt -> CInt -> IO CInt
289
290 foreign import ccall unsafe "consUtils.h get_console_echo__"
291    get_console_echo :: CInt -> IO CInt
292
293 #endif
294
295 -- ---------------------------------------------------------------------------
296 -- Turning on non-blocking for a file descriptor
297
298 #ifndef mingw32_TARGET_OS
299
300 setNonBlockingFD fd = do
301   flags <- throwErrnoIfMinus1Retry "setNonBlockingFD"
302                  (c_fcntl_read (fromIntegral fd) const_f_getfl)
303   -- An error when setting O_NONBLOCK isn't fatal: on some systems 
304   -- there are certain file handles on which this will fail (eg. /dev/null
305   -- on FreeBSD) so we throw away the return code from fcntl_write.
306   c_fcntl_write (fromIntegral fd) const_f_setfl (flags .|. o_NONBLOCK)
307 #else
308
309 -- bogus defns for win32
310 setNonBlockingFD fd = return ()
311
312 #endif
313
314 -- -----------------------------------------------------------------------------
315 -- foreign imports
316
317 foreign import ccall unsafe "HsBase.h access"
318    c_access :: CString -> CMode -> IO CInt
319
320 foreign import ccall unsafe "HsBase.h chmod"
321    c_chmod :: CString -> CMode -> IO CInt
322
323 foreign import ccall unsafe "HsBase.h chdir"
324    c_chdir :: CString -> IO CInt
325
326 foreign import ccall unsafe "HsBase.h close"
327    c_close :: CInt -> IO CInt
328
329 foreign import ccall unsafe "HsBase.h closedir" 
330    c_closedir :: Ptr CDir -> IO CInt
331
332 foreign import ccall unsafe "HsBase.h creat"
333    c_creat :: CString -> CMode -> IO CInt
334
335 foreign import ccall unsafe "HsBase.h dup"
336    c_dup :: CInt -> IO CInt
337
338 foreign import ccall unsafe "HsBase.h dup2"
339    c_dup2 :: CInt -> CInt -> IO CInt
340
341 foreign import ccall unsafe "HsBase.h fstat"
342    c_fstat :: CInt -> Ptr CStat -> IO CInt
343
344 foreign import ccall unsafe "HsBase.h getcwd"
345    c_getcwd   :: Ptr CChar -> CInt -> IO (Ptr CChar)
346
347 foreign import ccall unsafe "HsBase.h isatty"
348    c_isatty :: CInt -> IO CInt
349
350 foreign import ccall unsafe "HsBase.h lseek"
351    c_lseek :: CInt -> COff -> CInt -> IO COff
352
353 foreign import ccall unsafe "HsBase.h __hscore_lstat"
354    lstat :: CString -> Ptr CStat -> IO CInt
355
356 foreign import ccall unsafe "HsBase.h open"
357    c_open :: CString -> CInt -> CMode -> IO CInt
358
359 foreign import ccall unsafe "HsBase.h opendir" 
360    c_opendir :: CString  -> IO (Ptr CDir)
361
362 foreign import ccall unsafe "HsBase.h __hscore_mkdir"
363    mkdir :: CString -> CInt -> IO CInt
364
365 foreign import ccall unsafe "HsBase.h read" 
366    c_read :: CInt -> Ptr CChar -> CSize -> IO CSsize
367
368 foreign import ccall unsafe "HsBase.h readdir" 
369    c_readdir :: Ptr CDir -> IO (Ptr CDirent)
370
371 foreign import ccall unsafe "dirUtils.h __hscore_renameFile"
372    c_rename :: CString -> CString -> IO CInt
373                      
374 foreign import ccall unsafe "HsBase.h rewinddir"
375    c_rewinddir :: Ptr CDir -> IO ()
376
377 foreign import ccall unsafe "HsBase.h rmdir"
378    c_rmdir :: CString -> IO CInt
379
380 foreign import ccall unsafe "HsBase.h stat"
381    c_stat :: CString -> Ptr CStat -> IO CInt
382
383 foreign import ccall unsafe "HsBase.h umask"
384    c_umask :: CMode -> IO CMode
385
386 foreign import ccall unsafe "HsBase.h write" 
387    c_write :: CInt -> Ptr CChar -> CSize -> IO CSsize
388
389 foreign import ccall unsafe "HsBase.h unlink"
390    c_unlink :: CString -> IO CInt
391
392 #ifndef mingw32_TARGET_OS
393 foreign import ccall unsafe "HsBase.h fcntl"
394    c_fcntl_read  :: CInt -> CInt -> IO CInt
395
396 foreign import ccall unsafe "HsBase.h fcntl"
397    c_fcntl_write :: CInt -> CInt -> CInt -> IO CInt
398
399 foreign import ccall unsafe "HsBase.h fcntl"
400    c_fcntl_lock  :: CInt -> CInt -> Ptr CFLock -> IO CInt
401
402 foreign import ccall unsafe "HsBase.h fork"
403    c_fork :: IO CPid 
404
405 foreign import ccall unsafe "HsBase.h getpid"
406    c_getpid :: IO CPid
407
408 foreign import ccall unsafe "HsBase.h link"
409    c_link :: CString -> CString -> IO CInt
410
411 foreign import ccall unsafe "HsBase.h mkfifo"
412    c_mkfifo :: CString -> CMode -> IO CInt
413
414 foreign import ccall unsafe "HsBase.h pipe"
415    c_pipe :: Ptr CInt -> IO CInt
416
417 foreign import ccall unsafe "HsBase.h __hscore_sigemptyset"
418    c_sigemptyset :: Ptr CSigset -> IO CInt
419
420 foreign import ccall unsafe "HsBase.h __hscore_sigaddset"
421    c_sigaddset :: Ptr CSigset -> CInt -> IO CInt
422
423 foreign import ccall unsafe "HsBase.h sigprocmask"
424    c_sigprocmask :: CInt -> Ptr CSigset -> Ptr CSigset -> IO CInt
425
426 foreign import ccall unsafe "HsBase.h tcgetattr"
427    c_tcgetattr :: CInt -> Ptr CTermios -> IO CInt
428
429 foreign import ccall unsafe "HsBase.h tcsetattr"
430    c_tcsetattr :: CInt -> CInt -> Ptr CTermios -> IO CInt
431
432 foreign import ccall unsafe "HsBase.h utime"
433    c_utime :: CString -> Ptr CUtimbuf -> IO CMode
434
435 foreign import ccall unsafe "HsBase.h waitpid"
436    c_waitpid :: CPid -> Ptr CInt -> CInt -> IO CPid
437 #else
438 foreign import ccall unsafe "HsBase.h _setmode"
439    c__setmode :: CInt -> CInt -> IO CInt
440
441 --   /* Set "stdin" to have binary mode: */
442 --   result = _setmode( _fileno( stdin ), _O_BINARY );
443 --   if( result == -1 )
444 --      perror( "Cannot set mode" );
445 --   else
446 --      printf( "'stdin' successfully changed to binary mode\n" );
447 #endif
448
449 -- traversing directories
450 foreign import ccall unsafe "dirUtils.h __hscore_readdir"
451   readdir  :: Ptr CDir -> Ptr (Ptr CDirent) -> IO CInt
452  
453 foreign import ccall unsafe "HsBase.h __hscore_free_dirent"
454   freeDirEnt  :: Ptr CDirent -> IO ()
455  
456 foreign import ccall unsafe "HsBase.h __hscore_end_of_dir"
457   end_of_dir :: CInt
458  
459 foreign import ccall unsafe "HsBase.h __hscore_d_name"
460   d_name :: Ptr CDirent -> IO CString
461
462 -- POSIX flags only:
463 foreign import ccall unsafe "HsBase.h __hscore_o_rdonly" o_RDONLY :: CInt
464 foreign import ccall unsafe "HsBase.h __hscore_o_wronly" o_WRONLY :: CInt
465 foreign import ccall unsafe "HsBase.h __hscore_o_rdwr"   o_RDWR   :: CInt
466 foreign import ccall unsafe "HsBase.h __hscore_o_append" o_APPEND :: CInt
467 foreign import ccall unsafe "HsBase.h __hscore_o_creat"  o_CREAT  :: CInt
468 foreign import ccall unsafe "HsBase.h __hscore_o_excl"   o_EXCL   :: CInt
469 foreign import ccall unsafe "HsBase.h __hscore_o_trunc"  o_TRUNC  :: CInt
470
471 -- non-POSIX flags.
472 foreign import ccall unsafe "HsBase.h __hscore_o_noctty"   o_NOCTTY   :: CInt
473 foreign import ccall unsafe "HsBase.h __hscore_o_nonblock" o_NONBLOCK :: CInt
474 foreign import ccall unsafe "HsBase.h __hscore_o_binary"   o_BINARY   :: CInt
475
476 foreign import ccall unsafe "HsBase.h __hscore_s_isreg"  s_isreg  :: CMode -> Bool
477 foreign import ccall unsafe "HsBase.h __hscore_s_ischr"  s_ischr  :: CMode -> Bool
478 foreign import ccall unsafe "HsBase.h __hscore_s_isblk"  s_isblk  :: CMode -> Bool
479 foreign import ccall unsafe "HsBase.h __hscore_s_isdir"  s_isdir  :: CMode -> Bool
480 foreign import ccall unsafe "HsBase.h __hscore_s_isfifo" s_isfifo :: CMode -> Bool
481
482 foreign import ccall unsafe "HsBase.h __hscore_sizeof_stat" sizeof_stat :: Int
483 foreign import ccall unsafe "HsBase.h __hscore_st_mtime" st_mtime :: Ptr CStat -> IO CTime
484 foreign import ccall unsafe "HsBase.h __hscore_st_size" st_size :: Ptr CStat -> IO COff
485 foreign import ccall unsafe "HsBase.h __hscore_st_mode" st_mode :: Ptr CStat -> IO CMode
486
487 foreign import ccall unsafe "HsBase.h __hscore_echo"         const_echo :: CInt
488 foreign import ccall unsafe "HsBase.h __hscore_tcsanow"      const_tcsanow :: CInt
489 foreign import ccall unsafe "HsBase.h __hscore_icanon"       const_icanon :: CInt
490 foreign import ccall unsafe "HsBase.h __hscore_vmin"         const_vmin   :: CInt
491 foreign import ccall unsafe "HsBase.h __hscore_vtime"        const_vtime  :: CInt
492 foreign import ccall unsafe "HsBase.h __hscore_sigttou"      const_sigttou :: CInt
493 foreign import ccall unsafe "HsBase.h __hscore_sig_block"    const_sig_block :: CInt
494 foreign import ccall unsafe "HsBase.h __hscore_sig_setmask"  const_sig_setmask :: CInt
495 foreign import ccall unsafe "HsBase.h __hscore_f_getfl"      const_f_getfl :: CInt
496 foreign import ccall unsafe "HsBase.h __hscore_f_setfl"      const_f_setfl :: CInt
497
498 #ifndef mingw32_TARGET_OS
499 foreign import ccall unsafe "HsBase.h __hscore_sizeof_termios"  sizeof_termios :: Int
500 foreign import ccall unsafe "HsBase.h __hscore_sizeof_sigset_t" sizeof_sigset_t :: Int
501
502 foreign import ccall unsafe "HsBase.h __hscore_lflag" c_lflag :: Ptr CTermios -> IO CTcflag
503 foreign import ccall unsafe "HsBase.h __hscore_poke_lflag" poke_c_lflag :: Ptr CTermios -> CTcflag -> IO ()
504 foreign import ccall unsafe "HsBase.h __hscore_ptr_c_cc" ptr_c_cc  :: Ptr CTermios -> IO (Ptr Word8)
505 #endif
506
507 #ifndef mingw32_TARGET_OS
508 foreign import ccall unsafe "HsBase.h __hscore_s_issock" s_issock :: CMode -> Bool
509 #else
510 s_issock :: CMode -> Bool
511 s_issock cmode = False
512 #endif