blob: bbb38bae6070f4db33dd741f9ff0973099e2f934 [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
sewardj4d474d02008-02-11 11:34:59 +000010 Copyright (C) 2000-2008 Julian Seward
njneb8896b2005-06-04 20:03:55 +000011 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.
sewardj9a66bb92006-10-17 01:38:13 +000037// To use, you must first include: pub_core_vki.h
njneb8896b2005-06-04 20:03:55 +000038//--------------------------------------------------------------------
39
40#include "pub_tool_libcfile.h"
41
njneb8896b2005-06-04 20:03:55 +000042/* Move an fd into the Valgrind-safe range */
njn327fe8a2005-06-12 02:49:35 +000043extern Int VG_(safe_fd) ( Int oldfd );
44extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
njneb8896b2005-06-04 20:03:55 +000045
njnae7359b2005-06-19 21:10:42 +000046/* Convert an fd into a filename */
njnf845f8f2005-06-23 02:26:47 +000047extern Bool VG_(resolve_filename) ( Int fd, HChar* buf, Int n_buf );
njnae7359b2005-06-19 21:10:42 +000048
sewardjec61b652008-08-19 07:03:04 +000049/* Return the size of a file, or -1 in case of error */
50extern Long VG_(fsize) ( Int fd );
sewardj45f4e7c2005-09-27 19:20:21 +000051
njn73750612005-10-14 03:11:30 +000052/* Is the file a directory? */
53extern Bool VG_(is_dir) ( HChar* f );
54
njne38e2332005-06-18 04:13:54 +000055/* Default destination port to be used in logging over a network, if
56 none specified. */
57#define VG_CLO_DEFAULT_LOGPORT 1500
58
toma4a4f412005-11-17 12:01:56 +000059extern UInt VG_(htonl) ( UInt x );
60extern UInt VG_(ntohl) ( UInt x );
61extern UShort VG_(htons) ( UShort x );
62extern UShort VG_(ntohs) ( UShort x );
63
njneb8896b2005-06-04 20:03:55 +000064extern Int VG_(write_socket)( Int sd, void *msg, Int count );
65extern Int VG_(connect_via_socket)( UChar* str );
66extern Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen );
67extern Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen );
68extern Int VG_(getsockopt) ( Int sd, Int level, Int optname, void *optval,
69 Int *optlen );
70
sewardj45f4e7c2005-09-27 19:20:21 +000071extern Int VG_(access) ( HChar* path, Bool irusr, Bool iwusr, Bool ixusr );
72
njn73750612005-10-14 03:11:30 +000073/* Is the file executable? Returns: 0 = success, non-0 is failure */
sewardjc74b3ba2007-11-17 21:11:57 +000074extern Int VG_(check_executable)(/*OUT*/Bool* is_setuid,
75 HChar* f, Bool allow_setuid);
njn73750612005-10-14 03:11:30 +000076
sewardj45f4e7c2005-09-27 19:20:21 +000077extern SysRes VG_(pread) ( Int fd, void* buf, Int count, Int offset );
78
79/* Create and open (-rw------) a tmp file name incorporating said arg.
80 Returns -1 on failure, else the fd of the file. If fullname is
81 non-NULL, the file's name is written into it. The number of bytes
82 written is guaranteed not to exceed 64+strlen(part_of_name). */
83extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
84
sewardj198f34f2007-07-09 23:13:07 +000085/* Record the process' working directory at startup. Is intended to
86 be called exactly once, at startup, before the working directory
87 changes. Return True for success, False for failure, so that the
88 caller can bomb out suitably without creating module cycles if
89 there is a problem. The saved value can later be acquired by
90 calling VG_(get_startup_wd) (in pub_tool_libcfile.h). */
91extern Bool VG_(record_startup_wd) ( void );
92
njneb8896b2005-06-04 20:03:55 +000093#endif // __PUB_CORE_LIBCFILE_H
94
95/*--------------------------------------------------------------------*/
96/*--- end ---*/
97/*--------------------------------------------------------------------*/