1 | /*
|
---|
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 | *
|
---|
10 | * This program is free software; you can redistribute it and/or modify
|
---|
11 | * it under the terms of the GNU General Public License as published by
|
---|
12 | * the Free Software Foundation; either version 3 of the License, or
|
---|
13 | * (at your option) any later version.
|
---|
14 | *
|
---|
15 | * This program is distributed in the hope that it will be useful,
|
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | * GNU General Public License for more details.
|
---|
19 | *
|
---|
20 | * You should have received a copy of the GNU General Public License
|
---|
21 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #include "replace.h"
|
---|
25 | #include <talloc.h>
|
---|
26 | #include "lib/util/samba_util.h"
|
---|
27 | #include "lib/util_path.h"
|
---|
28 |
|
---|
29 | struct share_params;
|
---|
30 | #include "source3/param/param_proto.h"
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * @brief Returns an absolute path to a file concatenating the provided
|
---|
34 | * @a rootpath and @a basename
|
---|
35 | *
|
---|
36 | * @param name Filename, relative to @a rootpath
|
---|
37 | *
|
---|
38 | * @retval Pointer to a string containing the full path.
|
---|
39 | **/
|
---|
40 |
|
---|
41 | static char *xx_path(const char *name, const char *rootpath)
|
---|
42 | {
|
---|
43 | char *fname = NULL;
|
---|
44 |
|
---|
45 | fname = talloc_strdup(talloc_tos(), rootpath);
|
---|
46 | if (!fname) {
|
---|
47 | return NULL;
|
---|
48 | }
|
---|
49 | trim_string(fname,"","/");
|
---|
50 |
|
---|
51 | if (!directory_create_or_exist(fname, 0755)) {
|
---|
52 | return NULL;
|
---|
53 | }
|
---|
54 |
|
---|
55 | return talloc_asprintf_append(fname, "/%s", name);
|
---|
56 | }
|
---|
57 |
|
---|
58 | /**
|
---|
59 | * @brief Returns an absolute path to a file in the Samba lock directory.
|
---|
60 | *
|
---|
61 | * @param name File to find, relative to LOCKDIR.
|
---|
62 | *
|
---|
63 | * @retval Pointer to a talloc'ed string containing the full path.
|
---|
64 | **/
|
---|
65 |
|
---|
66 | char *lock_path(const char *name)
|
---|
67 | {
|
---|
68 | return xx_path(name, lp_lock_directory());
|
---|
69 | }
|
---|
70 |
|
---|
71 | /**
|
---|
72 | * @brief Returns an absolute path to a file in the Samba state directory.
|
---|
73 | *
|
---|
74 | * @param name File to find, relative to STATEDIR.
|
---|
75 | *
|
---|
76 | * @retval Pointer to a talloc'ed string containing the full path.
|
---|
77 | **/
|
---|
78 |
|
---|
79 | char *state_path(const char *name)
|
---|
80 | {
|
---|
81 | return xx_path(name, lp_state_directory());
|
---|
82 | }
|
---|
83 |
|
---|
84 | /**
|
---|
85 | * @brief Returns an absolute path to a file in the Samba cache directory.
|
---|
86 | *
|
---|
87 | * @param name File to find, relative to CACHEDIR.
|
---|
88 | *
|
---|
89 | * @retval Pointer to a talloc'ed string containing the full path.
|
---|
90 | **/
|
---|
91 |
|
---|
92 | char *cache_path(const char *name)
|
---|
93 | {
|
---|
94 | return xx_path(name, lp_cache_directory());
|
---|
95 | }
|
---|