blob: d36c7628b06f3fd47de3210e6ef5f01117531f42 [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
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 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 );
njnbb7af3f2009-05-22 07:08:12 +000044extern Int VG_(fcntl) ( Int fd, Int cmd, Addr arg );
njneb8896b2005-06-04 20:03:55 +000045
njnae7359b2005-06-19 21:10:42 +000046/* Convert an fd into a filename */
florian3130eab2014-11-14 19:25:08 +000047extern Bool VG_(resolve_filename) ( Int fd, const HChar** 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
tomb7c2f9d2014-05-22 08:57:06 +000052/* Lookup an extended attribute for a file */
florian518850b2014-10-22 22:25:30 +000053extern SysRes VG_(getxattr) ( const HChar* file_name, const HChar* attr_name,
54 Addr attr_value, SizeT attr_value_len );
tomb7c2f9d2014-05-22 08:57:06 +000055
njn73750612005-10-14 03:11:30 +000056/* Is the file a directory? */
njn63e5e6e2009-05-20 04:22:42 +000057extern Bool VG_(is_dir) ( const HChar* f );
njn73750612005-10-14 03:11:30 +000058
njne38e2332005-06-18 04:13:54 +000059/* Default destination port to be used in logging over a network, if
60 none specified. */
61#define VG_CLO_DEFAULT_LOGPORT 1500
62
florian19f91bb2012-11-10 22:29:54 +000063extern Int VG_(connect_via_socket)( const HChar* str );
njn60bd46d2009-05-21 23:52:52 +000064
toma4a4f412005-11-17 12:01:56 +000065extern UInt VG_(htonl) ( UInt x );
66extern UInt VG_(ntohl) ( UInt x );
67extern UShort VG_(htons) ( UShort x );
68extern UShort VG_(ntohs) ( UShort x );
69
njn0cd5d972009-05-22 02:00:27 +000070extern Int VG_(socket) ( Int domain, Int type, Int protocol );
71
floriandbb35842012-10-27 18:39:11 +000072extern Int VG_(write_socket)( Int sd, const void *msg, Int count );
njneb8896b2005-06-04 20:03:55 +000073extern Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen );
74extern Int VG_(getpeername) ( Int sd, struct vki_sockaddr *name, Int *namelen );
njn60bd46d2009-05-21 23:52:52 +000075extern Int VG_(getsockopt) ( Int sd, Int level, Int optname,
76 void *optval, Int *optlen );
sewardj5d616df2013-07-02 08:07:15 +000077extern Int VG_(setsockopt) ( Int sd, Int level, Int optname,
78 void *optval, Int optlen );
njneb8896b2005-06-04 20:03:55 +000079
njn63e5e6e2009-05-20 04:22:42 +000080extern Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr,
81 Bool ixusr );
sewardj45f4e7c2005-09-27 19:20:21 +000082
njn73750612005-10-14 03:11:30 +000083/* Is the file executable? Returns: 0 = success, non-0 is failure */
sewardjc74b3ba2007-11-17 21:11:57 +000084extern Int VG_(check_executable)(/*OUT*/Bool* is_setuid,
njn63e5e6e2009-05-20 04:22:42 +000085 const HChar* f, Bool allow_setuid);
njn73750612005-10-14 03:11:30 +000086
sewardj6e9de462011-06-28 07:25:29 +000087/* DDD: Note this moves (or at least, is believed to move) the file
88 pointer on Linux but doesn't on Darwin. This inconsistency should
89 be fixed. (In other words, why isn't the Linux version implemented
90 in terms of pread()?) */
njnc4431bf2009-01-15 21:29:24 +000091extern SysRes VG_(pread) ( Int fd, void* buf, Int count, OffT offset );
sewardj45f4e7c2005-09-27 19:20:21 +000092
philippecc648262013-05-26 21:09:20 +000093/* Size of fullname buffer needed for a call to VG_(mkstemp) with
94 part_of_name having the given part_of_name_len. */
95extern SizeT VG_(mkstemp_fullname_bufsz) ( SizeT part_of_name_len );
96
sewardj45f4e7c2005-09-27 19:20:21 +000097/* Create and open (-rw------) a tmp file name incorporating said arg.
florian87c8abb2014-11-09 16:15:23 +000098 Returns -1 on failure, else the fd of the file. The file name is
99 written to the memory pointed to be fullname. The number of bytes written
philipped47676f2014-08-09 11:26:51 +0000100 is equal to VG_(mkstemp_fullname_bufsz)(VG_(strlen)(part_of_name)). */
101extern Int VG_(mkstemp) ( const HChar* part_of_name, /*OUT*/HChar* fullname );
sewardj45f4e7c2005-09-27 19:20:21 +0000102
sewardj198f34f2007-07-09 23:13:07 +0000103/* Record the process' working directory at startup. Is intended to
104 be called exactly once, at startup, before the working directory
Elliott Hughesa0664b92017-04-18 17:46:52 -0700105 changes. The saved value can later be acquired by calling
106 VG_(get_startup_wd) (in pub_tool_libcfile.h). Note that might
107 return if the working directory couldn't be found. */
108extern void VG_(record_startup_wd) ( void );
sewardj198f34f2007-07-09 23:13:07 +0000109
njneb8896b2005-06-04 20:03:55 +0000110#endif // __PUB_CORE_LIBCFILE_H
111
112/*--------------------------------------------------------------------*/
113/*--- end ---*/
114/*--------------------------------------------------------------------*/