summaryrefslogtreecommitdiff
path: root/lib/misc.h
blob: 95eded8855a8e60886b8edf386df975f485450f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef H_MISC
#define H_MISC

/**
 * \file lib/misc.h
 *
 */

#include <string.h>
#include <rpm/rpmtypes.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Create directory if it does not exist, and make sure path is writable.
 * @note This will only create last component of directory path.
 * @param dpath		directory path
 * @param dname		directory use string
 * @return		rpmRC return code
 */
/* XXX This should be RPM_GNUC_INTERNAL too but toplevel build.c uses ATM */
rpmRC rpmMkdirPath (const char * dpath, const char * dname);

/*
 * These may be called w/ a NULL argument to flush the cache -- they return
 * -1 if the user can't be found.
 */
RPM_GNUC_INTERNAL
int     unameToUid(const char * thisUname, uid_t * uid);

RPM_GNUC_INTERNAL
int     gnameToGid(const char * thisGname, gid_t * gid);

/*
 * Call w/ -1 to flush the cache, returns NULL if the user can't be found.
 */
RPM_GNUC_INTERNAL
const char * uidToUname(uid_t uid);

RPM_GNUC_INTERNAL
const char * gidToGname(gid_t gid);

#ifdef __cplusplus
}
#endif

#endif	/* H_MISC */