Dmitry Vyukov | 9190a03 | 2012-12-12 12:27:00 +0000 | [diff] [blame] | 1 | //===-- tsan_fd.h -----------------------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file is a part of ThreadSanitizer (TSan), a race detector. |
| 11 | // |
Dmitry Vyukov | 9ba0f3d | 2012-12-12 12:45:07 +0000 | [diff] [blame] | 12 | // This file handles synchronization via IO. |
| 13 | // People use IO for synchronization along the lines of: |
| 14 | // |
| 15 | // int X; |
| 16 | // int client_socket; // initialized elsewhere |
| 17 | // int server_socket; // initialized elsewhere |
| 18 | // |
| 19 | // Thread 1: |
| 20 | // X = 42; |
| 21 | // send(client_socket, ...); |
| 22 | // |
| 23 | // Thread 2: |
| 24 | // if (recv(server_socket, ...) > 0) |
| 25 | // assert(X == 42); |
| 26 | // |
| 27 | // This file determines the scope of the file descriptor (pipe, socket, |
| 28 | // all local files, etc) and executes acquire and release operations on |
| 29 | // the scope as necessary. Some scopes are very fine grained (e.g. pipe |
| 30 | // operations synchronize only with operations on the same pipe), while |
| 31 | // others are corse-grained (e.g. all operations on local files synchronize |
| 32 | // with each other). |
Dmitry Vyukov | 9190a03 | 2012-12-12 12:27:00 +0000 | [diff] [blame] | 33 | //===----------------------------------------------------------------------===// |
| 34 | #ifndef TSAN_FD_H |
| 35 | #define TSAN_FD_H |
| 36 | |
| 37 | #include "tsan_rtl.h" |
| 38 | |
| 39 | namespace __tsan { |
| 40 | |
| 41 | void FdInit(); |
| 42 | void FdAcquire(ThreadState *thr, uptr pc, int fd); |
| 43 | void FdRelease(ThreadState *thr, uptr pc, int fd); |
| 44 | void FdClose(ThreadState *thr, uptr pc, int fd); |
| 45 | void FdFileCreate(ThreadState *thr, uptr pc, int fd); |
| 46 | void FdDup(ThreadState *thr, uptr pc, int oldfd, int newfd); |
| 47 | void FdPipeCreate(ThreadState *thr, uptr pc, int rfd, int wfd); |
| 48 | void FdEventCreate(ThreadState *thr, uptr pc, int fd); |
| 49 | void FdPollCreate(ThreadState *thr, uptr pc, int fd); |
| 50 | void FdSocketCreate(ThreadState *thr, uptr pc, int fd); |
| 51 | void FdSocketAccept(ThreadState *thr, uptr pc, int fd, int newfd); |
Dmitry Vyukov | 38d0b60 | 2012-12-14 20:01:58 +0000 | [diff] [blame^] | 52 | void FdSocketConnecting(ThreadState *thr, uptr pc, int fd); |
Dmitry Vyukov | 9190a03 | 2012-12-12 12:27:00 +0000 | [diff] [blame] | 53 | void FdSocketConnect(ThreadState *thr, uptr pc, int fd); |
| 54 | |
| 55 | uptr File2addr(char *path); |
| 56 | uptr Dir2addr(char *path); |
| 57 | |
| 58 | } // namespace __tsan |
| 59 | |
| 60 | #endif // TSAN_INTERFACE_H |