grub からカーネル ブート オプションを渡して、それらをチェックすることができます。
cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.32-33-generic root=UUID=3c231d1a-b6cb-4526-95fe-eb8984c7a91a ro quiet splash
詳細情報.
更新:
このCコードを使用して解析できます/proc/cmdline
:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int parse_option(const char *line, const char *option, char *value, size_t size)
{
const char *p0, *p1;
int len;
p0 = strstr(line, option);
if (!p0)
return 0;
p0 += strlen(option);
p1 = strchr(p0, ' ');
if (!p1)
p1 = p0 + strlen(p0);
len = p1 - p0;
if (len > size - 1)
len = size - 1;
memcpy(value, p0, len);
value[len] = '\0';
return len;
}
void get_cmdline_option(const char *option, char *value, size_t size)
{
FILE *fp;
char *line = NULL;
size_t len = 0;
size_t read;
if (!size)
return;
*value = '\0';
fp = fopen("/proc/cmdline", "r");
if (fp == NULL)
return;
while ((read = getline(&line, &len, fp)) != -1) {
printf("%s", line);
if (parse_option(line, option, value, size))
break;
}
fclose(fp);
if (line)
free(line);
return;
}
int main(int argc, char **argv)
{
char root[128];
get_cmdline_option("root=", root, sizeof(root));
printf("root='%s'\n", root);
return 0;
}