2007-10-07 17:14:02 +05:30
|
|
|
/*
|
2008-04-27 06:10:09 +05:30
|
|
|
* Copyright (c) 1991 , Julianne Frances Haugh
|
|
|
|
* Copyright (c) 1991 , Chip Rosenthal
|
|
|
|
* Copyright (c) 1996 - 1998, Marek Michałkiewicz
|
|
|
|
* Copyright (c) 2003 - 2005, Tomasz Kłoczko
|
|
|
|
* Copyright (c) 2007 - 2008, Nicolas François
|
2007-10-07 17:14:02 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2008-04-27 06:10:09 +05:30
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
2007-10-07 17:14:02 +05:30
|
|
|
*
|
2008-04-27 06:10:09 +05:30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "defines.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "getdef.h"
|
* libmisc/console.c, libmisc/ulimit.c, lib/sgetgrent.c,
lib/sgetpwent.c: Include "prototypes.h" to make
sure the exported prototypes are the ones used for the definition
of functions.
* lib/prototypes.h: Added prototypes for __gr_del_entry(),
__gr_get_db(), __gr_get_head(), __gr_set_changed(), __gr_dup(),
__pw_del_entry(), __pw_get_db(), __pw_get_head(), __pw_dup(),
sgetgrent(), sgetpwent(), __sgr_del_entry(), __sgr_dup(),
__sgr_get_head(), __sgr_set_changed(), __spw_get_head(),
__spw_del_entry(), __spw_dup().
* lib/prototypes.h: Removed prototype for is_listed().
* lib/prototypes.h: Added name of the check_su_auth()'s parameters.
* lib/groupio.h: Removed prototypes for __gr_dup() and
__gr_set_changed().
* lib/sgroupio.c: Removed prototypes for putsgent(), sgetsgent(),
and __gr_get_db().
* lib/sgroupio.h: Removed prototypes for __sgr_dup() and
__sgr_set_changed().
* lib/shadowio.c: Removed prototype for __pw_get_db().
* lib/pwio.c: Removed prototype for sgetpwent() and putpwent().
* lib/shadowio.h: Removed prototypes for __spw_dup() and
__spw_set_changed().
* lib/pwio.h: Removed prototypes for __pw_dup() and
__pw_set_changed().
* lib/commonio.h: Add protection against multiple inclusions.
* lib/prototypes.h: Include commonio.h (needed for the
__xx_del_entry() functions).
2008-01-06 17:29:01 +05:30
|
|
|
#include "prototypes.h"
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2008-01-05 18:59:24 +05:30
|
|
|
/* local function prototypes */
|
2008-06-09 23:41:20 +05:30
|
|
|
static bool is_listed (const char *cfgin, const char *tty, bool def);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* This is now rather generic function which decides if "tty" is listed
|
|
|
|
* under "cfgin" in config (directly or indirectly). Fallback to default if
|
|
|
|
* something is bad.
|
|
|
|
*/
|
2008-06-09 23:41:20 +05:30
|
|
|
static bool is_listed (const char *cfgin, const char *tty, bool def)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char buf[200], *cons, *s;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the CONSOLE configuration definition isn't given,
|
|
|
|
* fallback to default.
|
|
|
|
*/
|
|
|
|
|
2008-06-09 23:41:20 +05:30
|
|
|
cons = getdef_str (cfgin);
|
|
|
|
if (NULL == cons) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return def;
|
2008-06-09 23:41:20 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* If this isn't a filename, then it is a ":" delimited list of
|
|
|
|
* console devices upon which root logins are allowed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (*cons != '/') {
|
2009-04-25 04:33:14 +05:30
|
|
|
strcpy (buf, cons);
|
|
|
|
while ((s = strtok (buf, ":")) != NULL) {
|
2008-06-09 23:41:20 +05:30
|
|
|
if (strcmp (s, tty) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
cons = NULL;
|
|
|
|
}
|
2008-06-09 23:41:20 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we can't open the console list, then call everything a
|
|
|
|
* console - otherwise root will never be allowed to login.
|
|
|
|
*/
|
|
|
|
|
2008-06-09 23:41:20 +05:30
|
|
|
fp = fopen (cons, "r");
|
|
|
|
if (NULL == fp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return def;
|
2008-06-09 23:41:20 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* See if this tty is listed in the console file.
|
|
|
|
*/
|
|
|
|
|
* libmisc/console.c, libmisc/hushed.c, libmisc/yesno.c,
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/tz.c,
src/login_nopam.c, src/chpasswd.c, src/chgpasswd.c, lib/port.c:
The size argument of fgets is an int, not a size_t.
* libmisc/loginprompt.c: Ignore the return value from signal()
when the signal handlers are restored.
* src/chpasswd.c: Cast the return value of time() to a long
integer.
* src/chpasswd.c: Use the SCALE macro instead of (24L * 3600L)
for the values to be set in /etc/shadow.
2008-06-13 23:41:09 +05:30
|
|
|
while (fgets (buf, (int) sizeof (buf), fp) != NULL) {
|
2007-10-07 17:15:23 +05:30
|
|
|
buf[strlen (buf) - 1] = '\0';
|
|
|
|
if (strcmp (buf, tty) == 0) {
|
|
|
|
(void) fclose (fp);
|
2008-06-09 23:41:20 +05:30
|
|
|
return true;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This tty isn't a console.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
(void) fclose (fp);
|
2008-06-09 23:41:20 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* console - return 1 if the "tty" is a console device, else 0.
|
|
|
|
*
|
|
|
|
* Note - we need to take extreme care here to avoid locking out root logins
|
|
|
|
* if something goes awry. That's why we do things like call everything a
|
|
|
|
* console if the consoles file can't be opened. Because of this, we must
|
|
|
|
* warn the user to protect against the remove of the consoles file since
|
|
|
|
* that would allow an unauthorized root login.
|
|
|
|
*/
|
|
|
|
|
2008-06-09 23:41:20 +05:30
|
|
|
bool console (const char *tty)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2009-05-16 23:49:24 +05:30
|
|
|
if (strncmp (tty, "/dev/", 5) == 0) {
|
|
|
|
tty += 5;
|
|
|
|
}
|
|
|
|
|
2008-06-09 23:41:20 +05:30
|
|
|
return is_listed ("CONSOLE", tty, true);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2008-06-09 23:41:20 +05:30
|
|
|
|