⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bootauth.c

📁 这是一个同样来自贝尔实验室的和UNIX有着渊源的操作系统, 其简洁的设计和实现易于我们学习和理解
💻 C
字号:
#include <u.h>#include <libc.h>#include <auth.h>#include <fcall.h>#include "../boot/boot.h"char	*authaddr;static void glenda(void);voidauthentication(int cpuflag){	char *argv[16], **av;	int ac;	if(access("/boot/factotum", AEXEC) < 0){		glenda();		return;	}	/* start agent */	ac = 0;	av = argv;	av[ac++] = "factotum";	if(getenv("debugfactotum"))		av[ac++] = "-p";//av[ac++] = "-d";	//debug traces//av[ac++] = "-D";	//9p messages	if(cpuflag)		av[ac++] = "-S";	else		av[ac++] = "-u";	av[ac++] = "-sfactotum";	if(authaddr != nil){		av[ac++] = "-a";		av[ac++] = authaddr;	}	av[ac] = 0;	switch(fork()){	case -1:		fatal("starting factotum: %r");	case 0:		exec("/boot/factotum", av);		fatal("execing /boot/factotum");	default:		break;	}	/* wait for agent to really be there */	while(access("/mnt/factotum", 0) < 0)		sleep(250);	if(cpuflag)		return;}static voidglenda(void){	int fd;	char *s;	s = getenv("user");	if(s == nil)		s = "glenda";	fd = open("#c/hostowner", OWRITE);	if(fd >= 0){		if(write(fd, s, strlen(s)) != strlen(s))			fprint(2, "setting #c/hostowner to %s: %r\n", s);		close(fd);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -