Home | History | Annotate | Download | only in racoon

Lines Matching refs:script

175 	 * When running privsep, certificate and script paths 
182 "require path cert and path script in the config file\n");
377 char *script;
388 * We expect: script, name, envp[], void
393 count++; /* script */
428 * Populate script, name and envp
431 script = bufs[count++];
447 script, name, envp);
451 * Check script path and name
456 (unsafe_path(script, LC_PATHTYPE_SCRIPT) == 0))
457 (void)script_exec(script, name, envp);
461 "unsafe script \"%s\"\n", script);
780 privsep_script_exec(script, name, envp)
781 char *script;
792 return script_exec(script, name, envp);
806 * script, name, envp[0], ... envp[N], void
813 count++; /* script */
831 msg->bufs.buflen[count] = strlen(script) + 1; /* script */
857 memcpy(data, (char *)script, msg->bufs.buflen[count]); /* script */
1121 unsafe_path(script, pathtype)
1122 char *script;
1129 if (script == NULL)
1138 if (realpath(script, rpath) == NULL) {
1140 "script path \"%s\" is invalid\n", script);