nt.sd
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:6k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. Info-ZIP portable Zip/UnZip Windows NT security descriptor support
  2. ==================================================================
  3. Scott Field (sfield@microsoft.com), 8 October 1996
  4. This version of Info-ZIP's Win32 code allows for processing of Windows
  5. NT security descriptors if they were saved in the .zip file using the
  6. appropriate Win32 Zip running under Windows NT.  This also requires
  7. that the file system that Zip/UnZip operates on supports persistent 
  8. Acl storage.  When the operating system is not Windows NT and the 
  9. target file system does not support persistent Acl storage, no security
  10. descriptor processing takes place.
  11. A Windows NT security descriptor consists of any combination of the
  12. following components:
  13.        an owner (Sid)
  14.        a primary group (Sid)
  15.        a discretionary ACL (Dacl)
  16.        a system ACL (Sacl)
  17.        qualifiers for the preceding items
  18. By default, Zip will save all aspects of the security descriptor except
  19. for the Sacl.  The Sacl contains information pertaining to auditing of
  20. the file, and requires a security privilege be granted to the calling
  21. user in addition to being enabled by the calling application.  In order
  22. to save the Sacl during Zip, the user must specify the -! switch on the
  23. Zip commandline.  The user must also be granted either the SeBackupPrivilege
  24. "Backup files and directories" or the SeSystemSecurityPrivilege "Manage
  25. auditing and security log".
  26. By default, UnZip will not restore any aspects of the security descriptor.
  27. If the -X option is specified to UnZip, the Dacl is restored to the file.
  28. The other items in the security descriptor on the new file will receive
  29. default values.  If the -XX option is specified to UnZip, as many aspects
  30. of the security descriptor as possible will be restored.  If the calling
  31. user is granted the SeRestorePrivilege "Restore files and directories",
  32. all aspects of the security descriptor will be restored.  If the calling
  33. user is only granted the SeSystemSecurityPrivilege "Manage auditing and
  34. security log", only the Dacl and Sacl will be restored to the new file.
  35. Note that when operating on files that reside on remote volumes, the 
  36. privileges specified above must be granted to the calling user on that
  37. remote machine.  Currently, there is no way to directly test what privileges
  38. are present on a remote machine, so Zip and UnZip make a remote privilege
  39. determination based on an indirect method.
  40. UnZip considerations
  41. --------------------
  42. In order for file security to be processed correctly, any directory entries
  43. that have a security descriptor will be processed at the end of the unzip
  44. cycle.  This allows for unzip to process files within the newly created
  45. directory regardless of the security descriptor associated with the directory
  46. entry.  This also prevents security inheritance problems that can occur as
  47. a result of creating a new directory and then creating files in that directory
  48. that will inherit parent directory permissions; such inherited permissions may
  49. prevent the security descriptor taken from the zip file from being applied
  50. to the new file.
  51. If directories exist which match directory/extract paths in the .zip file,
  52. file security is not updated on the target directory.  It is assumed that if
  53. the target directory already exists, then appropriate security has already
  54. been applied to that directory.
  55. "unzip -t" will test the integrity of stored security descriptors when 
  56. present and the operating system is Windows NT.
  57. ZipInfo (unzip -Z) will display information on stored security descriptor 
  58. when "unzip -Zv" is specifed.
  59. Potential uses
  60. ==============
  61. The obvious use for this new support is to better support backup and restore
  62. operations in a Windows NT environment where NTFS file security is utilized.
  63. This allows individuals and organizations to archive files in a portable
  64. fashion and transport these files across the organization.
  65. Another potential use of this support is setup and installation.  This 
  66. allows for distribution of Windows NT based applications that have preset
  67. security on files and directories.  For example, prior to creation of the 
  68. .zip file, the user can set file security via File Manager or Explorer on
  69. the files to be contained in the .zip file.  In many cases, it is appropriate
  70. to only grant Everyone Read access to .exe and .dll files, while granting
  71. Administrators Full control.  Using this support in conjunction with the
  72. unzipsfx.exe self-extractor stub can yield a useful and powerful way to
  73. install software with preset security (note that -X or -XX should be 
  74. specified on the self-extractor commandline).
  75. When creating .zip files with security which are intended for transport 
  76. across systems, it is important to take into account the relevance of 
  77. access control entries and the associated Sid of each entry.  For example,
  78. if a .zip file is created on a Windows NT workstation, and file security 
  79. references local workstation user accounts (like an account named Fred), 
  80. this access entry will not be relevant if the .zip file is transported to 
  81. another machine.  Where possible, take advantage of the built-in well-known 
  82. groups, like Administrators, Everyone, Network, Guests, etc.  These groups
  83. have the same meaning on any Windows NT machine.  Note that the names of
  84. these groups may differ depending on the language of the installed Windows
  85. NT, but this isn't a problem since each name has well-known ID that, upon
  86. restore, translates to the correct group name regardless of locale.
  87. When access control entries contain Sid entries that reference Domain 
  88. accounts, these entries will only be relevant on systems that recognize 
  89. the referenced domain.  Generally speaking, the only side effects of 
  90. irrelevant access control entries is wasted space in the stored security 
  91. descriptor and loss of complete intended access control.  Such irrelevant 
  92. access control entries will show up as "Account Unknown" when viewing file 
  93. security with File Manager or Explorer.