2 Unix SMB/CIFS implementation.
3 string substitution functions
4 Copyright (C) Andrew Tridgell 1992-2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 fstring local_machine
="";
25 fstring remote_arch
="UNKNOWN";
26 userdom_struct current_user_info
;
27 fstring remote_proto
="UNKNOWN";
28 extern pstring global_myname
;
30 static fstring remote_machine
="";
33 void set_local_machine_name(const char* local_name
)
35 fstring tmp_local_machine
;
37 fstrcpy(tmp_local_machine
,local_name
);
38 trim_string(tmp_local_machine
," "," ");
39 strlower(tmp_local_machine
);
40 alpha_strcpy(local_machine
,tmp_local_machine
,SAFE_NETBIOS_CHARS
,sizeof(local_machine
)-1);
43 void set_remote_machine_name(const char* remote_name
)
45 fstring tmp_remote_machine
;
47 fstrcpy(tmp_remote_machine
,remote_name
);
48 trim_string(tmp_remote_machine
," "," ");
49 strlower(tmp_remote_machine
);
50 alpha_strcpy(remote_machine
,tmp_remote_machine
,SAFE_NETBIOS_CHARS
,sizeof(remote_machine
)-1);
53 const char* get_remote_machine_name(void)
55 return remote_machine
;
58 const char* get_local_machine_name(void)
63 /*******************************************************************
64 Given a pointer to a %$(NAME) expand it as an environment variable.
65 Return the number of characters by which the pointer should be advanced.
66 Based on code by Branko Cibej <branko.cibej@hermes.si>
67 When this is called p points at the '%' character.
68 ********************************************************************/
70 static size_t expand_env_var(char *p
, int len
)
84 * Look for the terminating ')'.
87 if ((q
= strchr_m(p
,')')) == NULL
) {
88 DEBUG(0,("expand_env_var: Unterminated environment variable [%s]\n", p
));
93 * Extract the name from within the %$(NAME) string.
97 copylen
= MIN((q
-r
),(sizeof(envname
)-1));
98 strncpy(envname
,r
,copylen
);
99 envname
[copylen
] = '\0';
101 if ((envval
= getenv(envname
)) == NULL
) {
102 DEBUG(0,("expand_env_var: Environment variable [%s] not set\n", envname
));
107 * Copy the full %$(NAME) into envname so it
111 copylen
= MIN((q
+1-p
),(sizeof(envname
)-1));
112 strncpy(envname
,p
,copylen
);
113 envname
[copylen
] = '\0';
114 string_sub(p
,envname
,envval
,len
);
115 return 0; /* Allow the environment contents to be parsed. */
118 /*******************************************************************
119 Given a pointer to a %$(NAME) in p and the whole string in str
120 expand it as an environment variable.
121 Return a new allocated and expanded string.
122 Based on code by Branko Cibej <branko.cibej@hermes.si>
123 When this is called p points at the '%' character.
124 May substitute multiple occurrencies of the same env var.
125 ********************************************************************/
128 static char * realloc_expand_env_var(char *str
, char *p
)
135 if (p
[0] != '%' || p
[1] != '$' || p
[2] != '(')
139 * Look for the terminating ')'.
142 if ((q
= strchr_m(p
,')')) == NULL
) {
143 DEBUG(0,("expand_env_var: Unterminated environment variable [%s]\n", p
));
148 * Extract the name from within the %$(NAME) string.
153 envname
= (char *)malloc(copylen
+ 1 + 4); /* reserve space for use later add %$() chars */
154 if (envname
== NULL
) return NULL
;
155 strncpy(envname
,r
,copylen
);
156 envname
[copylen
] = '\0';
158 if ((envval
= getenv(envname
)) == NULL
) {
159 DEBUG(0,("expand_env_var: Environment variable [%s] not set\n", envname
));
165 * Copy the full %$(NAME) into envname so it
170 strncpy(envname
,p
,copylen
);
171 envname
[copylen
] = '\0';
172 r
= realloc_string_sub(str
, envname
, envval
);
174 if (r
== NULL
) return NULL
;
178 /*******************************************************************
179 Patch from jkf@soton.ac.uk
180 Added this to implement %p (NIS auto-map version of %H)
181 *******************************************************************/
183 static char *automount_path(const char *user_name
)
185 static pstring server_path
;
187 /* use the passwd entry as the default */
188 /* this will be the default if WITH_AUTOMOUNT is not used or fails */
190 pstrcpy(server_path
, get_user_home_dir(user_name
));
192 #if (defined(HAVE_NETGROUP) && defined (WITH_AUTOMOUNT))
194 if (lp_nis_home_map()) {
195 char *home_path_start
;
196 char *automount_value
= automount_lookup(user_name
);
198 if(strlen(automount_value
) > 0) {
199 home_path_start
= strchr_m(automount_value
,':');
200 if (home_path_start
!= NULL
) {
201 DEBUG(5, ("NIS lookup succeeded. Home path is: %s\n",
202 home_path_start
?(home_path_start
+1):""));
203 pstrcpy(server_path
, home_path_start
+1);
206 /* NIS key lookup failed: default to user home directory from password file */
207 DEBUG(5, ("NIS lookup failed. Using Home path from passwd file. Home path is: %s\n", server_path
));
212 DEBUG(4,("Home server path: %s\n", server_path
));
217 /*******************************************************************
218 Patch from jkf@soton.ac.uk
219 This is Luke's original function with the NIS lookup code
220 moved out to a separate function.
221 *******************************************************************/
223 static const char *automount_server(const char *user_name
)
225 static pstring server_name
;
226 const char *local_machine_name
= get_local_machine_name();
228 /* use the local machine name as the default */
229 /* this will be the default if WITH_AUTOMOUNT is not used or fails */
230 if (local_machine_name
&& *local_machine_name
)
231 pstrcpy(server_name
, local_machine_name
);
233 pstrcpy(server_name
, global_myname
);
235 #if (defined(HAVE_NETGROUP) && defined (WITH_AUTOMOUNT))
237 if (lp_nis_home_map()) {
239 char *automount_value
= automount_lookup(user_name
);
240 home_server_len
= strcspn(automount_value
,":");
241 DEBUG(5, ("NIS lookup succeeded. Home server length: %d\n",home_server_len
));
242 if (home_server_len
> sizeof(pstring
))
243 home_server_len
= sizeof(pstring
);
244 strncpy(server_name
, automount_value
, home_server_len
);
245 server_name
[home_server_len
] = '\0';
249 DEBUG(4,("Home server: %s\n", server_name
));
254 /****************************************************************************
255 Do some standard substitutions in a string.
256 len is the length in bytes of the space allowed in string str. If zero means
257 don't allow expansions.
258 ****************************************************************************/
260 void standard_sub_basic(const char *smb_name
, char *str
,size_t len
)
265 const char *local_machine_name
= get_local_machine_name();
267 for (s
=str
; (p
=strchr_m(s
, '%'));s
=p
) {
270 int l
= (int)len
- (int)(p
-str
);
277 fstrcpy(tmp_str
, smb_name
);
279 string_sub(p
,"%U",tmp_str
,l
);
282 fstrcpy(tmp_str
, smb_name
);
283 if ((pass
= Get_Pwnam(tmp_str
))!=NULL
) {
284 string_sub(p
,"%G",gidtoname(pass
->pw_gid
),l
);
290 fstrcpy(tmp_str
, current_user_info
.domain
);
292 string_sub(p
,"%D", tmp_str
,l
);
295 string_sub(p
,"%I", client_addr(),l
);
298 if (local_machine_name
&& *local_machine_name
)
299 string_sub(p
,"%L", local_machine_name
,l
);
303 pstrcpy(temp_name
, global_myname
);
305 string_sub(p
,"%L", temp_name
,l
);
309 string_sub(p
,"%M", client_name(),l
);
312 string_sub(p
,"%R", remote_proto
,l
);
315 string_sub(p
,"%T", timestring(False
),l
);
318 string_sub(p
,"%a", remote_arch
,l
);
321 slprintf(pidstr
,sizeof(pidstr
)-1, "%d",(int)sys_getpid());
322 string_sub(p
,"%d", pidstr
,l
);
325 string_sub(p
,"%h", myhostname(),l
);
328 string_sub(p
,"%m", get_remote_machine_name(),l
);
331 string_sub(p
,"%v", VERSION
,l
);
334 p
+= expand_env_var(p
,l
);
335 break; /* Expand environment variables */
338 break; /* don't run off the end of the string */
346 static void standard_sub_advanced(int snum
, const char *user
,
347 const char *connectpath
, gid_t gid
,
348 const char *smb_name
, char *str
, size_t len
)
352 for (s
=str
; (p
=strchr_m(s
, '%'));s
=p
) {
353 int l
= (int)len
- (int)(p
-str
);
360 string_sub(p
,"%N", automount_server(user
),l
);
363 if ((home
= get_user_home_dir(user
)))
364 string_sub(p
,"%H",home
, l
);
369 string_sub(p
,"%P", connectpath
, l
);
372 string_sub(p
,"%S", lp_servicename(snum
), l
);
375 string_sub(p
,"%g", gidtoname(gid
), l
);
378 string_sub(p
,"%u", user
, l
);
381 /* Patch from jkf@soton.ac.uk Left the %N (NIS
382 * server name) in standard_sub_basic as it is
383 * a feature for logon servers, hence uses the
384 * username. The %p (NIS server path) code is
385 * here as it is used instead of the default
386 * "path =" string in [homes] and so needs the
387 * service name, not the username. */
389 string_sub(p
,"%p", automount_path(lp_servicename(snum
)), l
);
393 break; /* don't run off the end of the string */
400 standard_sub_basic(smb_name
, str
, len
);
403 /****************************************************************************
404 Do some standard substitutions in a string.
405 This function will return an allocated string that have to be freed.
406 ****************************************************************************/
408 char *talloc_sub_basic(TALLOC_CTX
*mem_ctx
, const char *smb_name
, const char *str
)
411 a
= alloc_sub_basic(smb_name
, str
);
413 t
= talloc_strdup(mem_ctx
, a
);
418 char *alloc_sub_basic(const char *smb_name
, const char *str
)
420 char *b
, *p
, *s
, *t
, *r
, *a_string
;
423 const char *local_machine_name
= get_local_machine_name();
425 a_string
= strdup(str
);
426 if (a_string
== NULL
) {
427 DEBUG(0, ("alloc_sub_specified: Out of memory!\n"));
431 for (b
= s
= a_string
; (p
= strchr_m(s
, '%')); s
= a_string
+ (p
- b
)) {
438 r
= strdup_lower(smb_name
);
439 if (r
== NULL
) goto error
;
440 t
= realloc_string_sub(t
, "%U", r
);
443 r
= strdup(smb_name
);
444 if (r
== NULL
) goto error
;
445 if ((pass
= Get_Pwnam(r
))!=NULL
) {
446 t
= realloc_string_sub(t
, "%G", gidtoname(pass
->pw_gid
));
450 r
= strdup_upper(current_user_info
.domain
);
451 if (r
== NULL
) goto error
;
452 t
= realloc_string_sub(t
, "%D", r
);
455 t
= realloc_string_sub(t
, "%I", client_addr());
458 if (local_machine_name
&& *local_machine_name
)
459 t
= realloc_string_sub(t
, "%L", local_machine_name
);
461 t
= realloc_string_sub(t
, "%L", global_myname
);
464 t
= realloc_string_sub(t
, "%M", client_name());
467 t
= realloc_string_sub(t
, "%R", remote_proto
);
470 t
= realloc_string_sub(t
, "%T", timestring(False
));
473 t
= realloc_string_sub(t
, "%a", remote_arch
);
476 slprintf(pidstr
,sizeof(pidstr
)-1, "%d",(int)sys_getpid());
477 t
= realloc_string_sub(t
, "%d", pidstr
);
480 t
= realloc_string_sub(t
, "%h", myhostname());
483 t
= realloc_string_sub(t
, "%m", remote_machine
);
486 t
= realloc_string_sub(t
, "%v", VERSION
);
489 t
= realloc_expand_env_var(t
, p
); /* Expand environment variables */
498 if (t
== NULL
) goto error
;
508 /****************************************************************************
509 Do some specific substitutions in a string.
510 This function will return an allocated string that have to be freed.
511 ****************************************************************************/
513 char *talloc_sub_specified(TALLOC_CTX
*mem_ctx
,
514 const char *input_string
,
515 const char *username
,
521 a
= alloc_sub_specified(input_string
, username
, domain
, uid
, gid
);
523 t
= talloc_strdup(mem_ctx
, a
);
528 char *alloc_sub_specified(const char *input_string
,
529 const char *username
,
534 char *a_string
, *ret_string
;
537 a_string
= strdup(input_string
);
538 if (a_string
== NULL
) {
539 DEBUG(0, ("alloc_sub_specified: Out of memory!\n"));
543 for (b
= s
= a_string
; (p
= strchr_m(s
, '%')); s
= a_string
+ (p
- b
)) {
549 t
= realloc_string_sub(t
, "%U", username
);
552 t
= realloc_string_sub(t
, "%u", username
);
556 t
= realloc_string_sub(t
, "%G", gidtoname(gid
));
558 t
= realloc_string_sub(t
, "%G", "NO_GROUP");
563 t
= realloc_string_sub(t
, "%g", gidtoname(gid
));
565 t
= realloc_string_sub(t
, "%g", "NO_GROUP");
569 t
= realloc_string_sub(t
, "%D", domain
);
572 t
= realloc_string_sub(t
, "%N", automount_server(username
));
586 ret_string
= alloc_sub_basic(username
, a_string
);
591 char *talloc_sub_advanced(TALLOC_CTX
*mem_ctx
,
594 const char *connectpath
,
596 const char *smb_name
,
600 a
= alloc_sub_advanced(snum
, user
, connectpath
, gid
, smb_name
, str
);
602 t
= talloc_strdup(mem_ctx
, a
);
607 char *alloc_sub_advanced(int snum
, const char *user
,
608 const char *connectpath
, gid_t gid
,
609 const char *smb_name
, char *str
)
611 char *a_string
, *ret_string
;
612 char *b
, *p
, *s
, *t
, *h
;
614 a_string
= strdup(str
);
615 if (a_string
== NULL
) {
616 DEBUG(0, ("alloc_sub_specified: Out of memory!\n"));
620 for (b
= s
= a_string
; (p
= strchr_m(s
, '%')); s
= a_string
+ (p
- b
)) {
626 t
= realloc_string_sub(t
, "%N", automount_server(user
));
629 if ((h
= get_user_home_dir(user
)))
630 t
= realloc_string_sub(t
, "%H", h
);
633 t
= realloc_string_sub(t
, "%P", connectpath
);
636 t
= realloc_string_sub(t
, "%S", lp_servicename(snum
));
639 t
= realloc_string_sub(t
, "%g", gidtoname(gid
));
642 t
= realloc_string_sub(t
, "%u", user
);
645 /* Patch from jkf@soton.ac.uk Left the %N (NIS
646 * server name) in standard_sub_basic as it is
647 * a feature for logon servers, hence uses the
648 * username. The %p (NIS server path) code is
649 * here as it is used instead of the default
650 * "path =" string in [homes] and so needs the
651 * service name, not the username. */
653 t
= realloc_string_sub(t
, "%p", automount_path(lp_servicename(snum
)));
668 ret_string
= alloc_sub_basic(smb_name
, a_string
);
673 /****************************************************************************
674 Do some standard substitutions in a string.
675 ****************************************************************************/
677 void standard_sub_conn(connection_struct
*conn
, char *str
, size_t len
)
679 standard_sub_advanced(SNUM(conn
), conn
->user
, conn
->connectpath
,
680 conn
->gid
, current_user_info
.smb_name
, str
, len
);
683 char *talloc_sub_conn(TALLOC_CTX
*mem_ctx
, connection_struct
*conn
, char *str
)
685 return talloc_sub_advanced(mem_ctx
, SNUM(conn
), conn
->user
,
686 conn
->connectpath
, conn
->gid
,
687 current_user_info
.smb_name
, str
);
690 char *alloc_sub_conn(connection_struct
*conn
, char *str
)
692 return alloc_sub_advanced(SNUM(conn
), conn
->user
, conn
->connectpath
,
693 conn
->gid
, current_user_info
.smb_name
, str
);
696 /****************************************************************************
697 Like standard_sub but by snum.
698 ****************************************************************************/
700 void standard_sub_snum(int snum
, char *str
, size_t len
)
702 extern struct current_user current_user
;
703 static uid_t cached_uid
= -1;
704 static fstring cached_user
;
705 /* calling uidtoname() on every substitute would be too expensive, so
706 we cache the result here as nearly every call is for the same uid */
708 if (cached_uid
!= current_user
.uid
) {
709 fstrcpy(cached_user
, uidtoname(current_user
.uid
));
710 cached_uid
= current_user
.uid
;
713 standard_sub_advanced(snum
, cached_user
, "", -1,
714 current_user_info
.smb_name
, str
, len
);