2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2001-2007
6 Copyright (C) Simo Sorce 2001
7 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
8 Copyright (C) James Peach 2006
9 Copyright (c) 2020 Andreas Schneider <asn@samba.org>
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "dynconfig/dynconfig.h"
27 #include "lib/util/util_paths.h"
28 #include "system/passwd.h"
29 #include "system/filesys.h"
32 * @brief Returns an absolute path to a file in the Samba modules directory.
34 * @param name File to find, relative to MODULESDIR.
36 * @retval Pointer to a string containing the full path.
39 char *modules_path(TALLOC_CTX
*mem_ctx
, const char *name
)
41 return talloc_asprintf(mem_ctx
, "%s/%s", get_dyn_MODULESDIR(), name
);
45 * @brief Returns an absolute path to a file in the Samba data directory.
47 * @param name File to find, relative to CODEPAGEDIR.
49 * @retval Pointer to a talloc'ed string containing the full path.
52 char *data_path(TALLOC_CTX
*mem_ctx
, const char *name
)
54 return talloc_asprintf(mem_ctx
, "%s/%s", get_dyn_CODEPAGEDIR(), name
);
58 * @brief Returns the platform specific shared library extension.
60 * @retval Pointer to a const char * containing the extension.
63 const char *shlib_ext(void)
65 return get_dyn_SHLIBEXT();
68 static char *get_user_home_dir(TALLOC_CTX
*mem_ctx
)
70 struct passwd pwd
= {0};
71 struct passwd
*pwdbuf
= NULL
;
78 initlen
= sysconf(_SC_GETPW_R_SIZE_MAX
);
82 len
= (size_t)initlen
;
84 buf
= talloc_size(mem_ctx
, len
);
89 rc
= getpwuid_r(getuid(), &pwd
, buf
, len
, &pwdbuf
);
90 while (rc
== ERANGE
) {
91 size_t newlen
= 2 * len
;
97 buf
= talloc_realloc_size(mem_ctx
, buf
, len
);
101 rc
= getpwuid_r(getuid(), &pwd
, buf
, len
, &pwdbuf
);
103 if (rc
!= 0 || pwdbuf
== NULL
) {
104 const char *szPath
= getenv("HOME");
105 if (szPath
== NULL
) {
108 len
= strnlen(szPath
, PATH_MAX
);
109 if (len
>= PATH_MAX
) {
112 out
= talloc_strdup(mem_ctx
, szPath
);
116 out
= talloc_strdup(mem_ctx
, pwd
.pw_dir
);
122 char *path_expand_tilde(TALLOC_CTX
*mem_ctx
, const char *d
)
124 char *h
= NULL
, *r
= NULL
;
125 const char *p
= NULL
;
126 struct stat sb
= {0};
130 return talloc_strdup(mem_ctx
, d
);
134 /* handle ~user/path */
136 if (p
!= NULL
&& p
> d
) {
141 if (s
>= sizeof(u
)) {
151 h
= talloc_strdup(mem_ctx
, pw
->pw_dir
);
154 h
= get_user_home_dir(mem_ctx
);
166 r
= talloc_asprintf(mem_ctx
, "%s%s", h
, p
);