blob: 1480da7923502a706cb70ad383842bf66113f31c [file] [log] [blame]
njneb8896b2005-06-04 20:03:55 +00001
2/*--------------------------------------------------------------------*/
3/*--- File/socket-related libc stuff. pub_core_libcfile.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
10 Copyright (C) 2000-2005 Julian Seward
11 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_LIBCFILE_H
32#define __PUB_CORE_LIBCFILE_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module contains all the libc code that relates to
36// files and sockets: opening, reading, writing, etc.
37//--------------------------------------------------------------------
38
39#include "pub_tool_libcfile.h"
40
njn63004dc2005-06-10 22:39:04 +000041/* Application-visible file descriptor limits */
42extern Int VG_(fd_soft_limit);
43extern Int VG_(fd_hard_limit);
44
njneb8896b2005-06-04 20:03:55 +000045/* Move an fd into the Valgrind-safe range */
njn327fe8a2005-06-12 02:49:35 +000046extern Int VG_(safe_fd) ( Int oldfd );
47extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
njneb8896b2005-06-04 20:03:55 +000048
njnae7359b2005-06-19 21:10:42 +000049/* Convert an fd into a filename */
njnf845f8f2005-06-23 02:26:47 +000050extern Bool VG_(resolve_filename) ( Int fd, HChar* buf, Int n_buf );
njnae7359b2005-06-19 21:10:42 +000051
njne38e2332005-06-18 04:13:54 +000052/* Default destination port to be used in logging over a network, if
53 none specified. */
54#define VG_CLO_DEFAULT_LOGPORT 1500
55
njneb8896b2005-06-04 20:03:55 +000056extern Int VG_(write_socket)( Int sd, void *msg, Int count );
57extern Int VG_(connect_via_socket)( UChar* str );
58extern Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen );
59extern Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen );
60extern Int VG_(getsockopt) ( Int sd, Int level, Int optname, void *optval,
61 Int *optlen );
62
63#endif // __PUB_CORE_LIBCFILE_H
64
65/*--------------------------------------------------------------------*/
66/*--- end ---*/
67/*--------------------------------------------------------------------*/