Changeset 1553 for trunk/server/common
- Timestamp:
- May 3, 2010, 1:20:42 AM (14 years ago)
- Location:
- trunk/server/common/oursrc/nss_nonlocal
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/common/oursrc/nss_nonlocal/README
r750 r1553 9 9 group: compat nonlocal 10 10 group_nonlocal: hesiod 11 12 Copyright © 2007–2010 Anders Kaseorg <andersk@mit.edu> and Tim Abbott 13 <tabbott@mit.edu> 14 15 nss_nonlocal is free software; you can redistribute it and/or modify 16 it under the terms of the GNU Lesser General Public License as 17 published by the Free Software Foundation; either version 2.1 of the 18 License, or (at your option) any later version. 19 20 nss_nonlocal is distributed in the hope that it will be useful, but 21 WITHOUT ANY WARRANTY; without even the implied warranty of 22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 23 Lesser General Public License for more details. 24 25 You should have received a copy of the GNU Lesser General Public 26 License along with nss_nonlocal; if not, write to the Free Software 27 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 28 02110-1301 USA -
trunk/server/common/oursrc/nss_nonlocal/configure.ac
r1131 r1553 1 AC_INIT([nss_nonlocal], [1. 9], [andersk@mit.edu])1 AC_INIT([nss_nonlocal], [1.11], [andersk@mit.edu]) 2 2 AC_CANONICAL_TARGET 3 3 AM_INIT_AUTOMAKE([-Wall -Werror foreign]) 4 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) 4 5 5 6 AC_PREFIX_DEFAULT([/]) -
trunk/server/common/oursrc/nss_nonlocal/nonlocal-group.c
r1131 r1553 3 3 * group database for nss_nonlocal proxy 4 4 * 5 * Copyright © 2007 Anders Kaseorg <andersk@mit.edu> and Tim Abbott6 * <tabbott@mit.edu>5 * Copyright © 2007–2010 Anders Kaseorg <andersk@mit.edu> and Tim 6 * Abbott <tabbott@mit.edu> 7 7 * 8 * Permission is hereby granted, free of charge, to any person 9 * obtaining a copy of this software and associated documentation 10 * files (the "Software"), to deal in the Software without 11 * restriction, including without limitation the rights to use, copy, 12 * modify, merge, publish, distribute, sublicense, and/or sell copies 13 * of the Software, and to permit persons to whom the Software is 14 * furnished to do so, subject to the following conditions: 8 * This file is part of nss_nonlocal. 15 9 * 16 * The above copyright notice and this permission notice shall be 17 * included in all copies or substantial portions of the Software. 10 * nss_nonlocal is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public License 12 * as published by the Free Software Foundation; either version 2.1 of 13 * the License, or (at your option) any later version. 18 14 * 19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 23 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 24 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 * SOFTWARE. 15 * nss_nonlocal is distributed in the hope that it will be useful, but 16 * WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with nss_nonlocal; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 23 * 02110-1301 USA 27 24 */ 28 25 … … 82 79 int old_errno = errno; 83 80 84 int buflen = sysconf(_SC_GETGR_R_SIZE_MAX);81 size_t buflen = sysconf(_SC_GETGR_R_SIZE_MAX); 85 82 char *buf = malloc(buflen); 86 83 if (buf == NULL) { … … 117 114 118 115 if (status == NSS_STATUS_SUCCESS) { 119 syslog(LOG_ WARNING, "nss_nonlocal: removing local group %u (%s) from non-local user %s\n", gbuf.gr_gid, gbuf.gr_name, user);116 syslog(LOG_DEBUG, "nss_nonlocal: removing local group %u (%s) from non-local user %s\n", gbuf.gr_gid, gbuf.gr_name, user); 120 117 status = NSS_STATUS_NOTFOUND; 121 118 } else if (status != NSS_STATUS_TRYAGAIN) { … … 125 122 free(buf); 126 123 return status; 124 } 125 126 enum nss_status 127 check_nonlocal_group(const char *user, struct group *grp, int *errnop) 128 { 129 enum nss_status status = NSS_STATUS_SUCCESS; 130 int old_errno = errno; 131 char *end; 132 unsigned long gid; 133 134 errno = 0; 135 gid = strtoul(grp->gr_name, &end, 10); 136 if (errno == 0 && *end == '\0' && (gid_t)gid == gid) 137 status = check_nonlocal_gid(user, gid, errnop); 138 errno = old_errno; 139 if (status != NSS_STATUS_SUCCESS) 140 return status; 141 142 return check_nonlocal_gid(user, grp->gr_gid, errnop); 127 143 } 128 144 … … 281 297 status = DL_CALL_FCT(grent_fct.l, (grp, buffer, buflen, errnop)); 282 298 while (status == NSS_STATUS_SUCCESS && 283 check_nonlocal_g id("(unknown)", grp->gr_gid, &nonlocal_errno) != NSS_STATUS_SUCCESS);299 check_nonlocal_group("(unknown)", grp, &nonlocal_errno) != NSS_STATUS_SUCCESS); 284 300 } 285 301 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) … … 330 346 return status; 331 347 332 return check_nonlocal_gid(name, grp->gr_gid, errnop); 348 if (strcmp(name, grp->gr_name) != 0) { 349 syslog(LOG_ERR, "nss_nonlocal: discarding group %s from lookup for group %s\n", grp->gr_name, name); 350 return NSS_STATUS_NOTFOUND; 351 } 352 353 return check_nonlocal_group(name, grp, errnop); 333 354 } 334 355 … … 368 389 return status; 369 390 370 return check_nonlocal_gid(grp->gr_name, grp->gr_gid, errnop); 391 if (gid != grp->gr_gid) { 392 syslog(LOG_ERR, "nss_nonlocal: discarding gid %d from lookup for gid %d\n", grp->gr_gid, gid); 393 return NSS_STATUS_NOTFOUND; 394 } 395 396 return check_nonlocal_group(grp->gr_name, grp, errnop); 371 397 } 372 398 … … 391 417 int is_local = 0; 392 418 char *buffer; 419 int old_errno; 420 int in, out, i; 393 421 394 422 /* Check that the user is a nonlocal user before adding any groups. */ … … 399 427 is_local = 1; 400 428 401 intold_errno = errno;429 old_errno = errno; 402 430 403 431 status = get_local_group(MAGIC_LOCAL_GROUPNAME, … … 462 490 return NSS_STATUS_SUCCESS; 463 491 464 in t in = *start, out = *start, i;492 in = out = *start; 465 493 466 494 nip = nss_group_nonlocal_database(); -
trunk/server/common/oursrc/nss_nonlocal/nonlocal-passwd.c
r1131 r1553 3 3 * passwd database for nss_nonlocal proxy. 4 4 * 5 * Copyright © 2007 Anders Kaseorg <andersk@mit.edu> and Tim Abbott6 * <tabbott@mit.edu>5 * Copyright © 2007–2010 Anders Kaseorg <andersk@mit.edu> and Tim 6 * Abbott <tabbott@mit.edu> 7 7 * 8 * Permission is hereby granted, free of charge, to any person 9 * obtaining a copy of this software and associated documentation 10 * files (the "Software"), to deal in the Software without 11 * restriction, including without limitation the rights to use, copy, 12 * modify, merge, publish, distribute, sublicense, and/or sell copies 13 * of the Software, and to permit persons to whom the Software is 14 * furnished to do so, subject to the following conditions: 8 * This file is part of nss_nonlocal. 15 9 * 16 * The above copyright notice and this permission notice shall be 17 * included in all copies or substantial portions of the Software. 10 * nss_nonlocal is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public License 12 * as published by the Free Software Foundation; either version 2.1 of 13 * the License, or (at your option) any later version. 18 14 * 19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 23 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 24 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 * SOFTWARE. 15 * nss_nonlocal is distributed in the hope that it will be useful, but 16 * WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with nss_nonlocal; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 23 * 02110-1301 USA 27 24 */ 28 25 … … 80 77 int old_errno = errno; 81 78 82 int buflen = sysconf(_SC_GETPW_R_SIZE_MAX);79 size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX); 83 80 char *buf = malloc(buflen); 84 81 if (buf == NULL) { … … 126 123 127 124 enum nss_status 125 check_nonlocal_passwd(const char *user, struct passwd *pwd, int *errnop) 126 { 127 enum nss_status status = NSS_STATUS_SUCCESS; 128 int old_errno = errno; 129 char *end; 130 unsigned long uid; 131 132 errno = 0; 133 uid = strtoul(pwd->pw_name, &end, 10); 134 if (errno == 0 && *end == '\0' && (uid_t)uid == uid) 135 status = check_nonlocal_uid(user, uid, errnop); 136 errno = old_errno; 137 if (status != NSS_STATUS_SUCCESS) 138 return status; 139 140 return check_nonlocal_uid(user, pwd->pw_uid, errnop); 141 } 142 143 enum nss_status 128 144 check_nonlocal_user(const char *user, int *errnop) 129 145 { … … 141 157 int old_errno = errno; 142 158 143 int buflen = sysconf(_SC_GETPW_R_SIZE_MAX);159 size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX); 144 160 char *buf = malloc(buflen); 145 161 if (buf == NULL) { … … 280 296 status = DL_CALL_FCT(pwent_fct.l, (pwd, buffer, buflen, errnop)); 281 297 while (status == NSS_STATUS_SUCCESS && 282 check_nonlocal_ uid(pwd->pw_name, pwd->pw_uid, &nonlocal_errno) != NSS_STATUS_SUCCESS);298 check_nonlocal_passwd(pwd->pw_name, pwd, &nonlocal_errno) != NSS_STATUS_SUCCESS); 283 299 } 284 300 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE) … … 330 346 return status; 331 347 332 status = check_nonlocal_uid(name, pwd->pw_uid, errnop); 348 if (strcmp(name, pwd->pw_name) != 0) { 349 syslog(LOG_ERR, "nss_nonlocal: discarding user %s from lookup for user %s\n", pwd->pw_name, name); 350 return NSS_STATUS_NOTFOUND; 351 } 352 353 status = check_nonlocal_passwd(name, pwd, errnop); 333 354 if (status != NSS_STATUS_SUCCESS) 334 355 return status; … … 376 397 return status; 377 398 378 status = check_nonlocal_uid(pwd->pw_name, pwd->pw_uid, errnop); 399 if (uid != pwd->pw_uid) { 400 syslog(LOG_ERR, "nss_nonlocal: discarding uid %d from lookup for uid %d\n", pwd->pw_uid, uid); 401 return NSS_STATUS_NOTFOUND; 402 } 403 404 status = check_nonlocal_passwd(pwd->pw_name, pwd, errnop); 379 405 if (status != NSS_STATUS_SUCCESS) 380 406 return status; -
trunk/server/common/oursrc/nss_nonlocal/nonlocal-shadow.c
r750 r1553 3 3 * shadow database for nss_nonlocal proxy. 4 4 * 5 * Copyright © 2007 Anders Kaseorg <andersk@mit.edu>5 * Copyright © 2007–2010 Anders Kaseorg <andersk@mit.edu> 6 6 * 7 * Permission is hereby granted, free of charge, to any person 8 * obtaining a copy of this software and associated documentation 9 * files (the "Software"), to deal in the Software without 10 * restriction, including without limitation the rights to use, copy, 11 * modify, merge, publish, distribute, sublicense, and/or sell copies 12 * of the Software, and to permit persons to whom the Software is 13 * furnished to do so, subject to the following conditions: 7 * This file is part of nss_nonlocal. 14 8 * 15 * The above copyright notice and this permission notice shall be 16 * included in all copies or substantial portions of the Software. 9 * nss_nonlocal is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU Lesser General Public License 11 * as published by the Free Software Foundation; either version 2.1 of 12 * the License, or (at your option) any later version. 17 13 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 22 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 23 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 25 * SOFTWARE. 14 * nss_nonlocal is distributed in the hope that it will be useful, but 15 * WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with nss_nonlocal; if not, write to the Free Software 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 22 * 02110-1301 USA 26 23 */ 27 24 … … 34 31 #include <dlfcn.h> 35 32 #include <stdio.h> 33 #include <syslog.h> 36 34 #include <errno.h> 37 35 #include <shadow.h> … … 180 178 break; 181 179 } while (__nss_next(&nip, fct_name, &fct.ptr, status, 0) == 0); 182 return status; 180 if (status != NSS_STATUS_SUCCESS) 181 return status; 182 183 if (strcmp(name, pwd->sp_namp) != 0) { 184 syslog(LOG_ERR, "nss_nonlocal: discarding shadow %s from lookup for shadow %s\n", pwd->sp_namp, name); 185 return NSS_STATUS_NOTFOUND; 186 } 187 188 return NSS_STATUS_SUCCESS; 183 189 }
Note: See TracChangeset
for help on using the changeset viewer.