svn commit: trunk/busybox/loginutils

vda at busybox.net vda at busybox.net
Fri Sep 8 17:26:20 UTC 2006


Author: vda
Date: 2006-09-08 10:26:20 -0700 (Fri, 08 Sep 2006)
New Revision: 16074

Log:
login: small fixes like \n removal, bb_error_msg'ification, etc.



Modified:
   trunk/busybox/loginutils/login.c


Changeset:
Modified: trunk/busybox/loginutils/login.c
===================================================================
--- trunk/busybox/loginutils/login.c	2006-09-08 17:25:04 UTC (rev 16073)
+++ trunk/busybox/loginutils/login.c	2006-09-08 17:26:20 UTC (rev 16074)
@@ -58,7 +58,7 @@
 
 static void alarm_handler(int sig ATTRIBUTE_UNUSED)
 {
-	fprintf(stderr, "\nLogin timed out after %d seconds.\n", TIMEOUT);
+	fprintf(stderr, "\r\nLogin timed out after %s seconds\r\n", TIMEOUT);
 	exit(EXIT_SUCCESS);
 }
 
@@ -146,14 +146,15 @@
 #ifdef CONFIG_FEATURE_UTMP
 		safe_strncpy(utent.ut_host, opt_host, sizeof(utent.ut_host));
 #endif
-		snprintf(fromhost, sizeof(fromhost)-1, " on `%.100s' from `%.200s'", tty, opt_host);
+		snprintf(fromhost, sizeof(fromhost)-1, " on `%.100s' from "
+					"`%.200s'", tty, opt_host);
 	}
 	else
 		snprintf(fromhost, sizeof(fromhost)-1, " on `%.100s'", tty);
 
 	bb_setpgrp;
 
-	openlog("login", LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
+	openlog(bb_applet_name, LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
 
 	while (1) {
 		failed = 0;
@@ -207,7 +208,7 @@
 		puts("Login incorrect");
 		username[0] = 0;
 		if (++count == 3) {
-			syslog(LOG_WARNING, "invalid password for `%s'%s'\n", pw->pw_name, fromhost);
+			syslog(LOG_WARNING, "invalid password for `%s'%s", pw->pw_name, fromhost);
 			return EXIT_FAILURE;
 		}
 	}
@@ -230,29 +231,26 @@
 		security_context_t old_tty_sid, new_tty_sid;
 
 		if (get_default_context(username, NULL, &user_sid)) {
-			fprintf(stderr, "Unable to get SID for %s\n", username);
-			exit(1);
+			bb_error_msg_and_die("unable to get SID for %s",
+					username);
 		}
 		if (getfilecon(full_tty, &old_tty_sid) < 0) {
-			fprintf(stderr, "getfilecon(%.100s) failed: "
-					"%.100s\n", full_tty, strerror(errno));
-			return EXIT_FAILURE;
+			bb_perror_msg_and_die("getfilecon(%.100s) failed",
+					full_tty);
 		}
-		if (security_compute_relabel(user_sid, old_tty_sid, SECCLASS_CHR_FILE, 
-							&new_tty_sid) != 0) {
-			fprintf(stderr, "security_change_sid(%.100s) failed: "
-					"%.100s\n", full_tty, strerror(errno));
-			return EXIT_FAILURE;
+		if (security_compute_relabel(user_sid, old_tty_sid,
+					SECCLASS_CHR_FILE, &new_tty_sid) != 0) {
+			bb_perror_msg_and_die("security_change_sid(%.100s) failed",
+					full_tty);
 		}
 		if (setfilecon(full_tty, new_tty_sid) != 0) {
-			fprintf(stderr, "chsid(%.100s, %s) failed: "
-				"%.100s\n", full_tty, new_tty_sid, strerror(errno));
-			return EXIT_FAILURE;
+			bb_perror_msg_and_die("chsid(%.100s, %s) failed",
+					full_tty, new_tty_sid);
 		}
 	}
 #endif
 	if (!is_my_tty(full_tty))
-		syslog(LOG_ERR, "unable to determine TTY name, got %s\n", full_tty);
+		syslog(LOG_ERR, "unable to determine TTY name, got %s", full_tty);
 
 	/* Try these, but don't complain if they fail
 	 * (for example when the root fs is read only) */
@@ -290,7 +288,7 @@
 	signal(SIGALRM, SIG_DFL);	/* default alarm signal */
 
 	if (pw->pw_uid == 0)
-		syslog(LOG_INFO, "root login %s\n", fromhost);
+		syslog(LOG_INFO, "root login %s", fromhost);
 #ifdef CONFIG_SELINUX
 	/* well, a simple setexeccon() here would do the job as well,
 	 * but let's play the game for now */




More information about the busybox-cvs mailing list