blob: 83a426f2807ba20f6597b4d173f751c204715f59 [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
sewardj9ebd6e02007-01-08 06:01:59 +000010 Copyright (C) 2000-2007 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
sewardj45f4e7c2005-09-27 19:20:21 +000049/* Return the size of a file */
50extern Int VG_(fsize) ( Int fd );
51
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 */
74extern Int VG_(check_executable)(HChar* f);
75
sewardj45f4e7c2005-09-27 19:20:21 +000076extern SysRes VG_(pread) ( Int fd, void* buf, Int count, Int offset );
77
78/* Create and open (-rw------) a tmp file name incorporating said arg.
79 Returns -1 on failure, else the fd of the file. If fullname is
80 non-NULL, the file's name is written into it. The number of bytes
81 written is guaranteed not to exceed 64+strlen(part_of_name). */
82extern Int VG_(mkstemp) ( HChar* part_of_name, /*OUT*/HChar* fullname );
83
sewardj198f34f2007-07-09 23:13:07 +000084/* Record the process' working directory at startup. Is intended to
85 be called exactly once, at startup, before the working directory
86 changes. Return True for success, False for failure, so that the
87 caller can bomb out suitably without creating module cycles if
88 there is a problem. The saved value can later be acquired by
89 calling VG_(get_startup_wd) (in pub_tool_libcfile.h). */
90extern Bool VG_(record_startup_wd) ( void );
91
njneb8896b2005-06-04 20:03:55 +000092#endif // __PUB_CORE_LIBCFILE_H
93
94/*--------------------------------------------------------------------*/
95/*--- end ---*/
96/*--------------------------------------------------------------------*/