10 #include <sys/param.h>
16 #define UML_DIR "~/.uml/"
20 /* Changed by set_umid, which is run early in boot */
21 char umid
[UMID_LEN
] = { 0 };
23 /* Changed by set_uml_dir and make_uml_dir, which are run early in boot */
24 static char *uml_dir
= UML_DIR
;
26 static int __init
make_uml_dir(void)
28 char dir
[512] = { '\0' };
32 char *home
= getenv("HOME");
36 printk("make_uml_dir : no value in environment for "
40 strlcpy(dir
, home
, sizeof(dir
));
43 strlcat(dir
, uml_dir
, sizeof(dir
));
45 if (len
> 0 && dir
[len
- 1] != '/')
46 strlcat(dir
, "/", sizeof(dir
));
49 uml_dir
= malloc(strlen(dir
) + 1);
50 if (uml_dir
== NULL
) {
51 printf("make_uml_dir : malloc failed, errno = %d\n", errno
);
56 if((mkdir(uml_dir
, 0777) < 0) && (errno
!= EEXIST
)){
57 printf("Failed to mkdir '%s': %s\n", uml_dir
, strerror(errno
));
70 static int actually_do_remove(char *dir
)
77 directory
= opendir(dir
);
81 while((ent
= readdir(directory
)) != NULL
){
82 if(!strcmp(ent
->d_name
, ".") || !strcmp(ent
->d_name
, ".."))
84 len
= strlen(dir
) + sizeof("/") + strlen(ent
->d_name
) + 1;
85 if(len
> sizeof(file
))
88 sprintf(file
, "%s/%s", dir
, ent
->d_name
);
98 /* This says that there isn't already a user of the specified directory even if
99 * there are errors during the checking. This is because if these errors
100 * happen, the directory is unusable by the pre-existing UML, so we might as
101 * well take it over. This could happen either by
102 * the existing UML somehow corrupting its umid directory
103 * something other than UML sticking stuff in the directory
104 * this boot racing with a shutdown of the other UML
105 * In any of these cases, the directory isn't useful for anything else.
108 static int not_dead_yet(char *dir
)
110 char file
[strlen(uml_dir
) + UMID_LEN
+ sizeof("/pid\0")];
111 char pid
[sizeof("nnnnn\0")], *end
;
112 int dead
, fd
, p
, n
, err
;
114 n
= snprintf(file
, sizeof(file
), "%s/pid", dir
);
115 if(n
>= sizeof(file
)){
116 printk("not_dead_yet - pid filename too long\n");
122 fd
= open(file
, O_RDONLY
);
125 printk("not_dead_yet : couldn't open pid file '%s', "
126 "err = %d\n", file
, -fd
);
132 n
= read(fd
, pid
, sizeof(pid
));
134 printk("not_dead_yet : couldn't read pid file '%s', "
135 "err = %d\n", file
, -n
);
139 p
= strtoul(pid
, &end
, 0);
141 printk("not_dead_yet : couldn't parse pid file '%s', "
142 "errno = %d\n", file
, errno
);
146 if((kill(p
, 0) == 0) || (errno
!= ESRCH
))
149 err
= actually_do_remove(dir
);
151 printk("not_dead_yet - actually_do_remove failed with "
162 static void __init
create_pid_file(void)
164 char file
[strlen(uml_dir
) + UMID_LEN
+ sizeof("/pid\0")];
165 char pid
[sizeof("nnnnn\0")];
168 if(umid_file_name("pid", file
, sizeof(file
)))
171 fd
= open(file
, O_RDWR
| O_CREAT
| O_EXCL
, 0644);
173 printk("Open of machine pid file \"%s\" failed: %s\n",
174 file
, strerror(-fd
));
178 snprintf(pid
, sizeof(pid
), "%d\n", getpid());
179 n
= write(fd
, pid
, strlen(pid
));
181 printk("Write of pid file failed - err = %d\n", -n
);
186 int __init
set_umid(char *name
)
188 if(strlen(name
) > UMID_LEN
- 1)
191 strlcpy(umid
, name
, sizeof(umid
));
196 static int umid_setup
= 0;
198 int __init
make_umid(void)
209 strlcpy(tmp
, uml_dir
, sizeof(tmp
));
210 strlcat(tmp
, "XXXXXX", sizeof(tmp
));
213 printk("make_umid - mkstemp(%s) failed: %s\n",
214 tmp
, strerror(errno
));
221 set_umid(&tmp
[strlen(uml_dir
)]);
223 /* There's a nice tiny little race between this unlink and
224 * the mkdir below. It'd be nice if there were a mkstemp
233 snprintf(tmp
, sizeof(tmp
), "%s%s", uml_dir
, umid
);
234 err
= mkdir(tmp
, 0777);
240 if(not_dead_yet(tmp
) < 0)
243 err
= mkdir(tmp
, 0777);
246 printk("Failed to create '%s' - err = %d\n", umid
, err
);
262 static int __init
make_umid_init(void)
269 __initcall(make_umid_init
);
271 int __init
umid_file_name(char *name
, char *buf
, int len
)
279 n
= snprintf(buf
, len
, "%s%s/%s", uml_dir
, umid
, name
);
281 printk("umid_file_name : buffer too short\n");
293 static int __init
set_uml_dir(char *name
, int *add
)
296 printf("uml_dir can't be an empty string\n");
300 if(name
[strlen(name
) - 1] == '/'){
305 uml_dir
= malloc(strlen(name
) + 2);
307 printf("Failed to malloc uml_dir - error = %d\n", errno
);
309 /* Return 0 here because do_initcalls doesn't look at
314 sprintf(uml_dir
, "%s/", name
);
319 __uml_setup("uml_dir=", set_uml_dir
,
320 "uml_dir=<directory>\n"
321 " The location to place the pid and umid files.\n\n"
324 static void remove_umid_dir(void)
326 char dir
[strlen(uml_dir
) + UMID_LEN
+ 1], err
;
328 sprintf(dir
, "%s%s", uml_dir
, umid
);
329 err
= actually_do_remove(dir
);
331 printf("remove_umid_dir - actually_do_remove failed with "
335 __uml_exitcall(remove_umid_dir
);