useradd.py 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # SPDX-License-Identifier: GPL-2.0-only
  3. #
  4. import argparse
  5. import re
  6. class myArgumentParser(argparse.ArgumentParser):
  7. def _print_message(self, message, file=None):
  8. bb.warn("%s - %s: %s" % (d.getVar('PN'), pkg, message))
  9. # This should never be called...
  10. def exit(self, status=0, message=None):
  11. message = message or ("%s - %s: useradd.bbclass: Argument parsing exited" % (d.getVar('PN'), pkg))
  12. error(message)
  13. def error(self, message):
  14. raise bb.build.FuncFailed(message)
  15. def split_commands(params):
  16. params = re.split('''[ \t]*;[ \t]*(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', params.strip())
  17. # Remove any empty items
  18. return [x for x in params if x]
  19. def split_args(params):
  20. params = re.split('''[ \t]+(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', params.strip())
  21. # Remove any empty items
  22. return [x for x in params if x]
  23. def build_useradd_parser():
  24. # The following comes from --help on useradd from shadow
  25. parser = myArgumentParser(prog='useradd')
  26. parser.add_argument("-b", "--base-dir", metavar="BASE_DIR", help="base directory for the home directory of the new account")
  27. parser.add_argument("-c", "--comment", metavar="COMMENT", help="GECOS field of the new account")
  28. parser.add_argument("-d", "--home-dir", metavar="HOME_DIR", help="home directory of the new account")
  29. parser.add_argument("-D", "--defaults", help="print or change default useradd configuration", action="store_true")
  30. parser.add_argument("-e", "--expiredate", metavar="EXPIRE_DATE", help="expiration date of the new account")
  31. parser.add_argument("-f", "--inactive", metavar="INACTIVE", help="password inactivity period of the new account")
  32. parser.add_argument("-g", "--gid", metavar="GROUP", help="name or ID of the primary group of the new account")
  33. parser.add_argument("-G", "--groups", metavar="GROUPS", help="list of supplementary groups of the new account")
  34. parser.add_argument("-k", "--skel", metavar="SKEL_DIR", help="use this alternative skeleton directory")
  35. parser.add_argument("-K", "--key", metavar="KEY=VALUE", help="override /etc/login.defs defaults")
  36. parser.add_argument("-l", "--no-log-init", help="do not add the user to the lastlog and faillog databases", action="store_true")
  37. parser.add_argument("-m", "--create-home", help="create the user's home directory", action="store_const", const=True)
  38. parser.add_argument("-M", "--no-create-home", dest="create_home", help="do not create the user's home directory", action="store_const", const=False)
  39. parser.add_argument("-N", "--no-user-group", dest="user_group", help="do not create a group with the same name as the user", action="store_const", const=False)
  40. parser.add_argument("-o", "--non-unique", help="allow to create users with duplicate (non-unique UID)", action="store_true")
  41. parser.add_argument("-p", "--password", metavar="PASSWORD", help="encrypted password of the new account")
  42. parser.add_argument("-P", "--clear-password", metavar="CLEAR_PASSWORD", help="use this clear password for the new account")
  43. parser.add_argument("-R", "--root", metavar="CHROOT_DIR", help="directory to chroot into")
  44. parser.add_argument("-r", "--system", help="create a system account", action="store_true")
  45. parser.add_argument("-s", "--shell", metavar="SHELL", help="login shell of the new account")
  46. parser.add_argument("-u", "--uid", metavar="UID", help="user ID of the new account")
  47. parser.add_argument("-U", "--user-group", help="create a group with the same name as the user", action="store_const", const=True)
  48. parser.add_argument("LOGIN", help="Login name of the new user")
  49. return parser
  50. def build_groupadd_parser():
  51. # The following comes from --help on groupadd from shadow
  52. parser = myArgumentParser(prog='groupadd')
  53. parser.add_argument("-f", "--force", help="exit successfully if the group already exists, and cancel -g if the GID is already used", action="store_true")
  54. parser.add_argument("-g", "--gid", metavar="GID", help="use GID for the new group")
  55. parser.add_argument("-K", "--key", metavar="KEY=VALUE", help="override /etc/login.defs defaults")
  56. parser.add_argument("-o", "--non-unique", help="allow to create groups with duplicate (non-unique) GID", action="store_true")
  57. parser.add_argument("-p", "--password", metavar="PASSWORD", help="use this encrypted password for the new group")
  58. parser.add_argument("-P", "--clear-password", metavar="CLEAR_PASSWORD", help="use this clear password for the new group")
  59. parser.add_argument("-R", "--root", metavar="CHROOT_DIR", help="directory to chroot into")
  60. parser.add_argument("-r", "--system", help="create a system account", action="store_true")
  61. parser.add_argument("GROUP", help="Group name of the new group")
  62. return parser