auth.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * uhttpd - Tiny single-threaded httpd
  3. *
  4. * Copyright (C) 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
  5. * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. */
  19. #include "uhttpd.h"
  20. static LIST_HEAD(auth_realms);
  21. void uh_auth_add(const char *path, const char *user, const char *pass)
  22. {
  23. struct auth_realm *new = NULL;
  24. struct passwd *pwd;
  25. const char *new_pass = NULL;
  26. char *dest_path, *dest_user, *dest_pass;
  27. #ifdef HAVE_SHADOW
  28. struct spwd *spwd;
  29. #endif
  30. /* given password refers to a passwd entry */
  31. if ((strlen(pass) > 3) && !strncmp(pass, "$p$", 3)) {
  32. #ifdef HAVE_SHADOW
  33. /* try to resolve shadow entry */
  34. spwd = getspnam(&pass[3]);
  35. if (spwd)
  36. new_pass = spwd->sp_pwdp;
  37. #endif
  38. if (!new_pass) {
  39. pwd = getpwnam(&pass[3]);
  40. if (pwd && pwd->pw_passwd && pwd->pw_passwd[0] &&
  41. pwd->pw_passwd[0] != '!')
  42. new_pass = pwd->pw_passwd;
  43. }
  44. } else {
  45. new_pass = pass;
  46. }
  47. if (!new_pass || !new_pass[0])
  48. return;
  49. new = calloc_a(sizeof(*new),
  50. &dest_path, strlen(path) + 1,
  51. &dest_user, strlen(user) + 1,
  52. &dest_pass, strlen(new_pass) + 1);
  53. if (!new)
  54. return;
  55. new->path = strcpy(dest_path, path);
  56. new->user = strcpy(dest_user, user);
  57. new->pass = strcpy(dest_pass, new_pass);
  58. list_add(&new->list, &auth_realms);
  59. }