US20090171957A1 - Method and system of applying policy on screened files - Google Patents

Method and system of applying policy on screened files Download PDF

Info

Publication number
US20090171957A1
US20090171957A1 US12/255,549 US25554908A US2009171957A1 US 20090171957 A1 US20090171957 A1 US 20090171957A1 US 25554908 A US25554908 A US 25554908A US 2009171957 A1 US2009171957 A1 US 2009171957A1
Authority
US
United States
Prior art keywords
data
policy
file
filename
directory
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/255,549
Inventor
Sarosh Cyrus Havewala
Neal R. Christiansen
Ran Kalach
Ravinder S. Thind
Jeremiah J. Moon
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Microsoft Technology Licensing LLC
Original Assignee
Microsoft Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Microsoft Corp filed Critical Microsoft Corp
Priority to US12/255,549 priority Critical patent/US20090171957A1/en
Publication of US20090171957A1 publication Critical patent/US20090171957A1/en
Assigned to MICROSOFT TECHNOLOGY LICENSING, LLC reassignment MICROSOFT TECHNOLOGY LICENSING, LLC ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: MICROSOFT CORPORATION
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/60Protecting data
    • G06F21/62Protecting access to data via a platform, e.g. using keys or access control rules
    • G06F21/6218Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/60Protecting data
    • G06F21/62Protecting access to data via a platform, e.g. using keys or access control rules
    • G06F21/6218Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database
    • G06F21/6281Protecting access to data via a platform, e.g. using keys or access control rules to a system of files or objects, e.g. local or distributed file system or database at program execution time, where the protection is within the operating system

Definitions

  • the invention relates generally to computer systems, and more particularly to computer files and storage.
  • Computer system administrators want to control the content that is stored on the computer systems (e.g., individual user's managed computers and network server shares) for which they are responsible. There are many reasons for needing control, including blocking certain types of files from being saved, preventing wasted space, organizing files on particular storage volumes for convenience and possibly security, and in general just knowing what is and what is not present on a file system volume.
  • an enterprise may not want its employees to store large video files on shares on an enterprise server, as this consumes space.
  • an enterprise may also want to prevent storage of content such as music files that potentially make the enterprise liable for copyright infringement.
  • An enterprise or group therein may want only certain types of files on a network share, such as shared files used in day-to-day work operations.
  • an administrator may want to know when certain files are added to the storage volume, such as to know when a user has installed (or even attempted to install) an executable program on a managed computer that is supposed to have a carefully-controlled set of executables.
  • What is needed is a mechanism for administrators to control the content on computer systems and storage volumes according to a policy, in which the policy may be applied in conjunction with the initial request to create a file (including copying the file from elsewhere) or rename a file on a storage volume.
  • Such a mechanism should be sufficiently flexible for administrators to handle the many possible situations that may arise in a given computing environment.
  • the present invention is directed towards a system and method by which the I/O requests issued by programs are screened to determine whether to allow certain file system-related operations (e.g., file creates) with respect to individual directories in a directory hierarchy. For example, based on a relationship between a filename provided with a create request and pre-established pattern data, certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested. Instead of or in addition to blocking, additional policy such as writing an audit log record, or sending an e-mail, may be applied.
  • file system-related operations e.g., file creates
  • certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested.
  • additional policy such as writing an audit log record, or sending an e-mail, may be applied.
  • the administrator uses file groups containing pattern data (sets of file namespace patterns which may include wildcards) arranged into member patterns and/or non-member patterns (a list of exceptions to member patterns).
  • a file group is a logical classification of files based on certain properties, such as the name and extension of the file. For a given filename, membership of a file in a file group is determined by establishing whether the filename matches any of the non-member patterns; if so then the file is not a member of the group. If not, the filename is evaluated to determine whether it matches any of the member patterns; if so, then the file is a member of the group. If there is not a match with the non-member patterns or member patterns, the file is not a member of the group.
  • the non-member list takes precedence over the member list, enabling an administrator to grant file group membership to certain categories of files yet specify exceptions to membership via the non-member patterns list.
  • a data screen object is used as an association unit, in which the data screen object contains lists of one or more file groups to associate with a directory, and thereby defines the screening policy on a directory.
  • a Data Screen Object is defined by a list of zero or more “allow” file groups, and a list of zero or more “block” file groups.
  • a second policy is applied, typically corresponding to a violation.
  • allow takes precedence over block, so that a data screen object enables the administrator to block certain types of files in the directory, with the allow overriding the blocking action for certain groups of files.
  • the parent of the directory is checked for a data screen object to look for policy to apply. If no policy is found, the mechanism walks up the tree to the next parent directory and so forth, looking for a data screen object that has an allow or block match, until a policy is applied or there is no parent. If no parent, the allow policy (typically no action, thereby allowing the request to proceed) is applied.
  • screening policies on sub-directories take precedence over parent directories in an upward direction, whereby an administrator set a screening policy on a directory and also set one on a subdirectory to exclude the sub-directory from some screening policy effective on its parent. The screening for a subdirectory may be more restrictive.
  • the screening mechanism comprises a kernel mode data screen filter and a user-mode storage resource management service.
  • computer programs e.g., user mode programs and kernel mode components above the data screen filter
  • corresponding I/O requests reach the data screen filter.
  • the data screen filter then processes the request using data screen objects with their references to file groups as described above to match filenames against patterns for the directory, and if necessary for parent directories, until a policy application is determined. In this manner, file creates and other file I/O requests can be blocked by policy before occurring, providing dynamic screening for content on a per-directory basis.
  • FIG. 1 is a block diagram generally representing a computing environment into which the present invention may be incorporated;
  • FIG. 2 is a flow diagram generally representing logic for determining whether a given filename is a member or non-member of a file group, in accordance with various aspects of the present invention
  • FIG. 3 is a representation for visualizing the concepts of a file group having a member set and a non-member set in a file system namespace, in accordance with various aspects of the present invention
  • FIG. 4 is a block diagram including a filter manager architecture and components for applying per-directory policy based on a filename versus pattern data, in accordance with various aspects of the present invention
  • FIGS. 5 and 6 comprise representations of directory structures, each structure having directory nodes with associated data screen objects that relate to file group patterns that are used for determining whether to apply policy in accordance with various aspects of the present invention.
  • FIG. 7 is a flow diagram generally representing logic for handling a request to create a file on a directory by determining whether to apply policy, in accordance with various aspects of the present invention.
  • FIG. 1 illustrates an example of a suitable computing system environment 100 on which the invention may be implemented.
  • the computing system environment 100 is only one example of a suitable computing environment and is not intended to suggest any limitation as to the scope of use or functionality of the invention. Neither should the computing environment 100 be interpreted as having any dependency or requirement relating to any one or combination of components illustrated in the exemplary operating environment 100 .
  • the invention is operational with numerous other general purpose or special purpose computing system environments or configurations.
  • Examples of well known computing systems, environments, and/or configurations that may be suitable for use with the invention include, but are not limited to: personal computers, server computers, hand-held or laptop devices, tablet devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
  • the invention may be described in the general context of computer-executable instructions, such as program modules, being executed by a computer.
  • program modules include routines, programs, objects, components, data structures, and so forth, which perform particular tasks or implement particular abstract data types.
  • the invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network.
  • program modules may be located in local and/or remote computer storage media including memory storage devices.
  • an exemplary system for implementing the invention includes a general purpose computing device in the form of a computer 110 .
  • Components of the computer 110 may include, but are not limited to, a processing unit 120 , a system memory 130 , and a system bus 121 that couples various system components including the system memory to the processing unit 120 .
  • the system bus 121 may be any of several types of bus structures including a memory bus or memory controller, a peripheral bus, and a local bus using any of a variety of bus architectures.
  • such architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus also known as Mezzanine bus.
  • ISA Industry Standard Architecture
  • MCA Micro Channel Architecture
  • EISA Enhanced ISA
  • VESA Video Electronics Standards Association
  • PCI Peripheral Component Interconnect
  • the computer 110 typically includes a variety of computer-readable media.
  • Computer-readable media can be any available media that can be accessed by the computer 110 and includes both volatile and nonvolatile media, and removable and non-removable media.
  • Computer-readable media may comprise computer storage media and communication media.
  • Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer-readable instructions, data structures, program modules or other data.
  • Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical disk storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by the computer 110 .
  • Communication media typically embodies computer-readable instructions, data structures, program modules or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any information delivery media.
  • modulated data signal means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal.
  • communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media. Combinations of the any of the above should also be included within the scope of computer-readable media.
  • the system memory 130 includes computer storage media in the form of volatile and/or nonvolatile memory such as read only memory (ROM) 131 and random access memory (RAM) 132 .
  • ROM read only memory
  • RAM random access memory
  • BIOS basic input/output system
  • RAM 132 typically contains data and/or program modules that are immediately accessible to and/or presently being operated on by processing unit 120 .
  • FIG. 1 illustrates operating system 134 , application programs 135 , other program modules 136 and program data 137 .
  • the computer 110 may also include other removable/non-removable, volatile/nonvolatile computer storage media.
  • FIG. 1 illustrates a hard disk drive 141 that reads from or writes to non-removable, nonvolatile magnetic media, a magnetic disk drive 151 that reads from or writes to a removable, nonvolatile magnetic disk 152 , and an optical disk drive 155 that reads from or writes to a removable, nonvolatile optical disk 156 such as a CD ROM or other optical media.
  • removable/non-removable, volatile/nonvolatile computer storage media that can be used in the exemplary operating environment include, but are not limited to, magnetic tape cassettes, flash memory cards, digital versatile disks, digital video tape, solid state RAM, solid state ROM, and the like.
  • the hard disk drive 141 is typically connected to the system bus 121 through a non-removable memory interface such as interface 140
  • magnetic disk drive 151 and optical disk drive 155 are typically connected to the system bus 121 by a removable memory interface, such as interface 150 .
  • the drives and their associated computer storage media provide storage of computer-readable instructions, data structures, program modules and other data for the computer 110 .
  • hard disk drive 141 is illustrated as storing operating system 144 , application programs 145 , other program modules 146 and program data 147 .
  • operating system 144 application programs 145 , other program modules 146 and program data 147 .
  • these components can either be the same as or different from operating system 134 , application programs 135 , other program modules 136 , and program data 137 .
  • Operating system 144 , application programs 145 , other program modules 146 , and program data 147 are given different numbers herein to illustrate that, at a minimum, they are different copies.
  • a user may enter commands and information into the computer 110 through input devices such as a tablet, or electronic digitizer, 164 , a microphone 163 , a keyboard 162 and pointing device 161 , commonly referred to as mouse, trackball or touch pad.
  • Other input devices not shown in FIG. 1 may include a joystick, game pad, satellite dish, scanner, or the like.
  • These and other input devices are often connected to the processing unit 120 through a user input interface 160 that is coupled to the system bus, but may be connected by other interface and bus structures, such as a parallel port, game port or a universal serial bus (USB).
  • a monitor 191 or other type of display device is also connected to the system bus 121 via an interface, such as a video interface 190 .
  • the monitor 191 may also be integrated with a touch-screen panel or the like. Note that the monitor and/or touch screen panel can be physically coupled to a housing in which the computing device 110 is incorporated, such as in a tablet-type personal computer. In addition, computers such as the computing device 110 may also include other peripheral output devices such as speakers 195 and printer 196 , which may be connected through an output peripheral interface 194 or the like.
  • the computer 110 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 180 .
  • the remote computer 180 may be a personal computer, a server, a router, a network PC, a peer device or other common network node, and typically includes many or all of the elements described above relative to the computer 110 , although only a memory storage device 181 has been illustrated in FIG. 1 .
  • the logical connections depicted in FIG. 1 include a local area network (LAN) 171 and a wide area network (WAN) 173 , but may also include other networks.
  • LAN local area network
  • WAN wide area network
  • Such networking environments are commonplace in offices, enterprise-wide computer networks, intranets and the Internet.
  • the computer 110 When used in a LAN networking environment, the computer 110 is connected to the LAN 171 through a network interface or adapter 170 .
  • the computer 110 When used in a WAN networking environment, the computer 110 typically includes a modem 172 or other means for establishing communications over the WAN 173 , such as the Internet.
  • the modem 172 which may be internal or external, may be connected to the system bus 121 via the user input interface 160 or other appropriate mechanism.
  • program modules depicted relative to the computer 110 may be stored in the remote memory storage device.
  • FIG. 1 illustrates remote application programs 185 as residing on memory device 181 . It will be appreciated that the network connections shown are exemplary and other means of establishing a communications link between the computers may be used.
  • the present invention is generally directed towards a system and method by which the I/O requests issued by computer programs are screened to determine whether to allow certain file system-related operations (e.g., file creates) with respect to individual directories in a directory hierarchy. For example, based on a relationship between a filename provided in association with the create request and pre-established pattern data, certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested.
  • file system-related operations e.g., file creates
  • certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested.
  • the present invention is primarily directed towards evaluating a file system operation (e.g., a file create) to determine whether based on the full path information associated with the file system request, (e.g., volume, directory path and filename or UNC path), policy is applied (e.g., blocking creation of that file in the directory on which creation is requested).
  • policy e.g., blocking creation of that file in the directory on which creation is requested.
  • the present invention is not limited to blocking file creation or renames, but can apply other policy in addition to blocking or instead of blocking.
  • the creation may be allowed to occur, but as determined by policy, some other action may be taken, e.g., the create event may be logged such as to an audit file, a message may be sent (e.g., to the system administrator), and so forth.
  • Policy that blocks file creation also may cause additional policy to be applied.
  • the present invention is not limited to applying policy only on create or rename requests, but can apply policy on other types of file system requests; different policies may apply to different types of requests, and different policies may apply depending on the evaluation result.
  • the examples herein are primarily directed towards applying policy or not with respect to file creation/renaming request based on evaluation of a filename and the directory information accompanying the request, it is understood that these are only examples.
  • IRPs I/O request packets
  • the present invention may alternatively be implemented in an arrangement in which the passing may be through a stack of filter drivers, sequentially from one filter driver to the next, and/or in the file system itself.
  • the program having its I/Os evaluated may be writing to one or more local file system volumes and/or to one or more network servers, and each may have different directory structures and associated policy-related data.
  • filter driver arrangements I/O passing and/or storage options are feasible.
  • the present invention may be configured to work in an architecture where requests are not passed as IRPs, but in some other format.
  • the present invention is not limited to any particular examples used herein, but rather may be used various ways that provide benefits and advantages in computing in general.
  • a data screen pattern defines a set of filenames (pattern data) that can be compared against a requested filename.
  • pattern data may include filenames specified in the form of a wildcard (such as “*” or “?”), e.g., *.exe will identify any file with an .exe extension, the well-known extension for executable files.
  • *.ex? is a pattern which *.exe executable files match, as do files of type *.exa, *.exb, *.ex2 and the like, essentially representing a three-character filename extension that substitutes any third alphanumeric character (or other suitable character) that is a valid character for filenames for the “?” wildcard.
  • wildcards are not required in the present invention, as other alternatives including individual filename listings and/or ranges of files/extensions (such as file extensions mp0 through mp9 inclusive) may be used to specify files. Notwithstanding, wildcards are described herein as one suitable mechanism for identifying files, because of their efficiency in allowing administrators to identify entire types of files at once, and because the usage and handling of wildcards is a well established and understood part of file system technology. Further, wildcard use is optional in that even with wildcard availability, an entire filename and/or extension without wildcards may be used instead, meaning that listing individual files is still an option.
  • any suitable part or all of a filename may correspond to a pattern.
  • a2.text to a999999.txt may be simply represented in pattern data by a*.txt, demonstrating another advantage of wildcards.
  • one implementation uses the concept of maintaining various sets of pattern data in file groups, wherein a file group is a logical classification of files based on certain properties, e.g., the name and extension of the file.
  • Each file group contains a list of zero or more member patterns corresponding to filenames to include as part of the group, and/or a list a zero or more non-members patterns, comprising a list of exceptions to the member patterns.
  • non-members override and thus exclude filenames that may be otherwise identified by a pattern in the member group.
  • FIG. 2 shows example logic for determining whether a given filename is within a given file group or set of file groups.
  • step 202 first looks for non-member exclusions. If the filename fits into any non-member pattern, (there may be from zero to any practical number of non-member patterns), the file is excluded from that group, and an indication provided (e.g., FALSE) as appropriate via step 206 . Note that the exclusion is immediate, regardless of whether any non-member patterns remain to be evaluated and regardless of the member patterns, because matching any one non-member pattern is sufficient to exclude the file from the file group, and exclusions override inclusions in a member group.
  • step 202 instead branches to step 204 , where an evaluation of the filename is performed against the member patterns in the file group or set of file groups. If the filename fits into any member pattern, (there may be from zero to any practical number of member patterns), the file is immediately considered to be a member of that group regardless of whether any member patterns remain to be evaluated, (since the file group is essentially a union of patterns), and an indication (e.g., TRUE) provided as appropriate via step 204 .
  • an indication e.g., TRUE
  • step 204 If step 204 cannot locate a matching member pattern, (which includes when the member set is a NULL set), the file is not in the group, and thus step 204 branches to step 206 where a “not-in-group” indication is provided (e.g., FALSE) as appropriate.
  • a “not-in-group” indication e.g., FALSE
  • the patterns in a file group or set of file groups may be arranged in any order, such as sorted for efficiency, e.g., patterns believed (or measured in some way) to correspond to more common types of filenames may be arranged to be evaluated first.
  • the file groups can also be ordered within the data screening object, such as for similar purposes. Note that file groups may be used for other applications that operate based on file classification.
  • FIG. 3 is a representation (not to any scale) to help visualize via namespaces the members and non-members in a file group.
  • all files (*.*) are not members of a given file group unless listed in the file group.
  • a file group such as the music-related file group that had mp* as a pattern in its member list, defines a set of files within the possible file namespace. This is represented in FIG. 3 by the smaller non-shaded area (the member list namespace) within the large shaded area (the total possible namespace). Within the member area are the non-member exclusions, comprising the namespaces represented by the smaller shaded areas.
  • FIG. 3 is a representation (not to any scale) to help visualize via namespaces the members and non-members in a file group.
  • all files are not members of a given file group unless listed in the file group.
  • a file group such as the music-related file group that had mp* as a pattern in its member list, defines a set of files within the possible
  • the only files that remain in the member file group namespace are those in the non-shaded area.
  • the file is then tested for whether it falls in the remaining non-shaded area; only if so is the file within the file group.
  • a data screen object is used as an association unit, in which the data screen object contains lists of one or more file groups to associate with a directory, and thereby defines the screening policy on a directory.
  • each directory may have only one data screen object (DSO), but in alternative implementations, a directory may have multiple data screen objects, which may all apply or selectively apply, e.g., possibly different ones for different categories of users/usergroups, different ones for different types of evaluations (e.g., a file create request has one and a file read request has another) and so on.
  • DSO data screen object
  • a directory may have multiple data screen objects, which may all apply or selectively apply, e.g., possibly different ones for different categories of users/usergroups, different ones for different types of evaluations (e.g., a file create request has one and a file read request has another) and so on.
  • DSO data screen object
  • a data screen object is defined by a list of zero or more “allow” file groups and a list of zero or more “block” file groups. Note that the terms “block” and “allow” comes from the likelihood that the most typical policy decision will be to block or allow file creation, although as described below actual blocking of a file create is not required when applying “blocking” policy.
  • the data screen object in-memory structure may indeed contain the (e.g., unioned) member and non-member pattern lists directly, pre-processed into the block and allow lists, rather than containing references to file groups, such as for purposes of efficiency.
  • the present invention will be described with data screen objects that contain reference(s) to file group(s).
  • the data screen objects and file groups are used to determine whether to apply policy when a relevant file-system related request is received, such as a request to create a given file on a given directory.
  • a relevant file-system related request such as a request to create a given file on a given directory.
  • a request contains information (e.g., a full path) from which the desired directory and desired file are identifiable.
  • FIG. 4 shows an architecture in which a filter driver evaluates such a request in accordance with various aspects of the present invention.
  • a filter driver is software code that is able to inspect and possibly modify data sent to or received from a file system.
  • an antivirus filter driver may look for virus signatures
  • a quota filter driver may watch a user's disk space consumption
  • an encryption filter driver may encrypt data on its way to the file system and decrypt it on the way back, and so forth.
  • one exemplary arrangement 400 of components of a system is provided into which the present invention may be incorporated via a filter driver.
  • the components include one or more user-mode (e.g., application or shell) programs 402 , a set of application programming interfaces (APIs) 404 , an input/output (I/O) manager 406 , a filter manger 408 , a file system 410 , storage volume 412 , and filters 420 - 422 .
  • user-mode e.g., application or shell
  • APIs application programming interfaces
  • I/O manager 406 input/output manager 406
  • filter manger 408 e.g., a file system 410 , storage volume 412 , and filters 420 - 422 .
  • filter drivers there may be any number (including zero) of higher-level filters 420 and/or lower-level filters 422 installed relative to another driver in any given implementation.
  • FIG. 4 shows one file system 410 and one storage volume 424 , which may be local or remote.
  • two components shown in FIG. 4 are directed towards evaluating file system create requests received as I/Os to determine whether policy is to be applied to those requests.
  • These components include a user-mode storage resource management service 430 and one of the filter drivers, namely the data screen filter 421 .
  • the user-mode storage resource management service 430 has an associated data store 432 containing file group (FG) information and data screen object (DSO) information, (although the data screen filter 421 may persist this information instead).
  • FG file group
  • DSO data screen object
  • a user interface (not shown) or the like allows administrators to maintain the data store 432 as necessary.
  • the separation of the data screen filter 421 and storage resource management service 430 is for convenience and efficiency in this architecture, and the division in structure and/or functionality between them is somewhat arbitrary except that in general, kernel-mode components are generally written to be highly efficient and as straightforward as possible to avoid potential errors.
  • kernel-mode components are generally written to be highly efficient and as straightforward as possible to avoid potential errors.
  • essentially all of the present invention's screening operations may be implemented in the filter driver component 421 , having some of the work performed in the user-mode component 430 provides certain advantages and benefits, and thus is used in environments where some communication channel exists between the user-mode component 430 and the kernel-mode component 421 .
  • User-mode computer programs 402 often make file system-directed create requests via API calls through the API set 404 to the I/O manager 406 , such as when creating a new file or copying or moving an existing file from another storage location.
  • the I/O manager 406 may determine what I/O request or requests should be issued to fulfill each program request, and sends the corresponding request or requests to the filter manager 408 .
  • the I/O manager sends requests in the form of an I/O request packet, or IRP.
  • the I/O manager 404 also returns status codes and/or data to the user-mode programs 402 in response to the API calls.
  • kernel mode components can also make file-system directed I/O requests, and thus the data screen filter 421 may receive IRPs initiated by kernel mode components that are above the data screen filter, as well as receive IRPs corresponding to file-system directed requests initiated by user-mode programs.
  • filter drivers may register (e.g., during an initialization procedure) with a registration mechanism with the filter manager 408 .
  • each filter driver typically will only register for file system requests in which it may be interested in processing.
  • each filter driver notifies the filter manager 408 of the types of I/O requests in which it is interested (e.g., create, read, write, close, rename, and so forth).
  • an encryption filter driver may register for read and write I/Os, but not for others wherein data does not need to be encrypted or decrypted.
  • a quota filter driver may be interested only in object creates and object writes.
  • the data screening filter driver registers for any I/O request that creates or renames a file on a directory.
  • the opening of an existing file may cause policy to be applied, however if the policy blocked the opening of the file, in one implementation the file could not be deleted if the open was blocked because an open is necessary to delete the file, and thus opens are not blocked.
  • policy may be applied per directory for files with respect to any type of file system-directed request, including opens, reads, writes, deletes, closes and so forth.
  • a filter driver may further specify whether the filter driver should be notified for pre-callbacks and post callbacks for each of the types of I/O.
  • a pre-callback is called as data associated with an I/O request propagates from the I/O manager 406 towards the file system 410
  • a post-callback is called during the completion of the I/O request as data associated with the I/O request propagates from the file system 410 towards the I/O manager 406 .
  • a filter driver can opt out of receiving a post-callback for a particular IRP even if it is generally registered for those types of IRPs.
  • the filter manager 408 receives IRPs from the I/O manager 406 and sequentially passes data associated with that IRP to each filter driver registered for that type of request, in an order that generally depends on whether and how the filter driver modifies the data or not, e.g., an antivirus filter driver should come before an encryption filter driver for data on its way to the file system so that the antivirus filter driver can see the data in its unencrypted form.
  • the filter driver 421 may store a needed amount of data in memory so that it does not need to communicate with user mode code to retrieve regularly-needed data.
  • the data maintained by the filter driver is primarily provided to it by the user-mode storage resource management service 430 .
  • the user-mode storage resource management service 430 and the corresponding filter driver 421 have a communication channel, e.g., the filter manager 408 recognizes and appropriately routes such communications, which are thus essentially private.
  • This communication channel is represented in FIG. 4 by the relatively-wide gray arrow; note that this channel may be protected such that administrator-level privileges are required to communicate over it.
  • the filter driver 421 In the present example in which the filter driver 421 is evaluating create requests on a per-directory basis, the filter driver obtains the data screening objects 440 and file groups 442 , as well as a representation (e.g., a set of nodes) of the current volume's directory structure 444 , which also contains information indicating which directories are associated with which data screening objects; a given directory need not have any association.
  • the data screen filter 421 then has knowledge of the data screen object for each directory (e.g., node) of the directory structure, and the data screen objects in turn tie the file groups to the directory, whereby that the filter 421 can begin its filtering operation.
  • Miscellaneous working data 446 is also shown, such as for storing some policy-related data (e.g., actually block on a policy violation or not).
  • the data screen filter 421 may evaluate file-system requests (such as create requests) against membership information, on a per-directory basis, and thereby produce a policy-related result.
  • FIGS. 5 and 6 show example directory structures (for different volumes) with data screen objects associated with administrator-selected directories, wherein as described above, the data screen objects contain references to file groups that in turn contain the member and/or non-member patterns.
  • FIG. 5 it is seen that an administrator has set one data screen object DSO 1 to be associated with a “Users” directory, and another data screen object DSO 2 to be associated with a particular user directory, U 3 .
  • Different data screen objects e.g., DSO 1 and DSO 2
  • a common file group e.g., MusicFG
  • the filter driver 421 may be configured to block file creation on a particular directory for a given file, which it can do by stopping the I/O request (e.g., during the pre-callback phase), and may instruct the filter manager 408 to report a status code (e.g., failure) for the I/O request.
  • the filter driver 421 will also notify the user-mode storage resource management service 430 anytime policy is deemed to apply, so that the user-mode storage resource management service 430 may apply the policy (or additional policy).
  • the notification may include identification as to which data screening object, directory and/or filename caused the policy violation, so that the user mode service 430 has this knowledge.
  • the data screen filter 421 may be instructed in advance whether to block file creation when a file is found to be a member of a blocked file group (as well as notify the storage resource management service 430 ), or allow the file creation and only notify.
  • policy data may be provided during initialization, and is typically for all directories but may be per directory if provided (e.g., within the directory structure 444 ), or per data screen object (e.g., if provided within the data screen object).
  • FIG. 7 shows example logic used by the data screen filter 421 , beginning at step 700 where the target directory in which the file create is being requested (typically but not necessarily a subdirectory in the directory tree) is located and set as the current directory.
  • the target directory in which the file create is being requested typically but not necessarily a subdirectory in the directory tree
  • Step 702 evaluates whether this current directory has a data screening object associated with it, e.g., found via the directory structure 444 . If not, then this directory is not directly subject to policy, however it may inherit policy from a higher parent directory, and thus step 702 branches to step 712 to essentially walk up the directory tree until some policy is found that either allows the file or blocks the file, or the root is reached without any policy to apply.
  • step 702 If instead at step 702 there is a data screening object, then its file group or file groups need to be evaluated against the filename to determine whether policy is to be applied to this particular file.
  • the allow file groups are tested, generally using the logic of FIG. 2 to determine if there is membership in an allow file group, because if specifically allowed by being a member of any allow file group(s) listed in the data screen object associated with the current directory, the requested operation is deemed to not be a violation of policy.
  • step 704 branches to step 716 where the allow “policy” is applied, (in this example, there is no allow policy other than to do nothing, which is equivalent to a policy of NULL), whereby the file is allowed to be created on the target directory as originally requested.
  • an allow policy that actually performs some action at step 716 , whether in the driver or by a notification to the user mode service 420 ; for example, the file creation may be still conditional on some other policy, e.g., allow the create if the file size is less than 10 MB, otherwise block creation. Further, note that creation may be prevented for another reason, such as prevented in another driver or the file system, and thus “allow” as used in this context means allow the request to proceed further.
  • step 704 branches to step 706 to evaluate the filename against the “block” file group or groups listed in the data screen object. If at step 706 the file is a member of any block file group(s) of the data screen object for the current directory, the operation is a violation of policy, and step 706 branches to step 708 where any blocking policy that the driver 421 can apply is applied (e.g., the file create is blocked), followed by step 710 where the user mode service is notified of the policy violation.
  • step 706 evaluate the filename against the “block” file group or groups listed in the data screen object. If at step 706 the file is a member of any block file group(s) of the data screen object for the current directory, the operation is a violation of policy, and step 706 branches to step 708 where any blocking policy that the driver 421 can apply is applied (e.g., the file create is blocked), followed by step 710 where the user mode service is notified of the policy violation.
  • Steps 712 and 714 are repeated as necessary to walk up the tree towards the root looking for a data screening object that will result in a decision, until one is found or there is no parent because the current directory is already at the root directory.
  • screening policies on lower directories take precedence over their parent directories.
  • This allows an administrator to set a screening policy on a directory, and also set one on a subdirectory, while giving the subdirectory policy precedence.
  • This is generally because a subdirectory is frequently a narrower subset of a parent, and thus may require an exception to a general rule for a parent.
  • this semantic allows an administrator to exclude a subdirectory from some screening policy effective on its parent. It also allows the administrator to set up more restrictive screening on a subdirectory.
  • FIG. 5 shows how allowing and blocking works in an example directory.
  • the administrator has essentially set up the directory and data screen objects so that music file group files and picture file group files are blocked from users, unless there is an exception set. This is accomplished by setting DSO 1 up with two block file groups, one for music file membership (e.g., *.mp3) and one for picture file group membership (e.g., *.jpg or *.bmp). These lists have been kept small for purposes of this example, however other music files and picture files may be listed in a given group, and moreover, a larger file group may be defined that contains both pictures and music files in a single member list. Note that administrators may be provided with sets of data screen objects and/or file groups in advance for common types of issues, whereby an administrator need not start from scratch.
  • a file named X.mp3 will violate policy (e.g., be blocked) if an attempt is made to create the file in the U 2 directory. This is because while the U 2 directory does not have an associated data screen object, a higher parent (Users) does, and a *.mp3 file is a member of the music file group MusicFG, which is blocked by the block list in the directory screen object DSO 1 . However, X.mpp does not violate policy, because it is not a member of the music file group MusicFG due to the file extension listed as a non-member.
  • a different user corresponding to the U 3 directory, will get different results with respect to music files. For example consider a user that needs to work with music files as part of his or her job; in such a situation the administrator will make an exception. To this end, the administrator sets a data screen object DSO 2 which has the music file group MusicFG on its allow list. Because directly allowed, X.mp3 will not have blocking policy applied. However, there is no such exception for pictures, and thus an attempt to create Y.jpg in the same directory will fail because of DSO 1 , which also lists the picture file group PictureFG in its block list. Thus, as can be seen from FIG. 5 , administrators have the ability to easily apply policy to select file types (or even individual files) on a per directory basis based on file group memberships, with the policy applied down the directory tree; allow exceptions can be made as desired.
  • FIG. 6 shows another example way in which the highly-flexible mechanisms of the present invention produce a desirable result.
  • the administrator wants to restrict a directory named Shared Files to having only certain types of files in directories under it, namely word processing files (*.doc) and spreadsheet files (*.xls, *.123 and possibly others not shown as indicated by the ellipsis).
  • such files also need to be created in their respective directories.
  • the administrator simply blocks all files on the Shared Files directory via the data screening object DSO 4 , and then makes exceptions for its subdirectories via DSO 3 and DSO 11 , as should be readily apparent in FIG. 6 . Because files are evaluated for policy violations walking up the tree, document file creation requests with the proper filename made to the proper corresponding directory do not violate policy, while all others do.
  • different directory screening objects may be selected by the filter driver 421 based on the credentials of the requesting entity, whereby an administrator can have different rules for different users and groups, including the administrators group.
  • the user information would be used to see if there was data screening object for that user at the current directory (at a modified step 702 ), and if so, to use the file groups of that particular per-user data screening object as needed at similar steps 702 and/or 704 .
  • user information is already known to the filter driver stack via the IRP, (an indeed is used in other scenarios such as by per-user quota filter drivers).

Abstract

Described is a mechanism comprising a data screening filter and user mode service that applies (enforces) policies regarding allowing or blocking file content of a directory, based on matching the filename against patterns associated with that directory. An administrator configures a screening policy, such as the types of files to allow in a particular directory and the types of files to block. File groups of member patterns and non-member exclusion patterns are defined and selectively collected in directory screening objects (DSOs). A directory screening object (DSO) is associated with a directory. When an I/O create request specifying a filename and a target directory is received, the filename is evaluated against the member/non-member patterns in the file groups referenced by the DSO for that directory to make for an allow or block policy decision. If not matched, DSOs on parent directories are evaluated upwards seeking a policy decision.

Description

    FIELD OF THE INVENTION
  • The invention relates generally to computer systems, and more particularly to computer files and storage.
  • BACKGROUND
  • Computer system administrators want to control the content that is stored on the computer systems (e.g., individual user's managed computers and network server shares) for which they are responsible. There are many reasons for needing control, including blocking certain types of files from being saved, preventing wasted space, organizing files on particular storage volumes for convenience and possibly security, and in general just knowing what is and what is not present on a file system volume.
  • For example, an enterprise may not want its employees to store large video files on shares on an enterprise server, as this consumes space. Similarly, an enterprise may also want to prevent storage of content such as music files that potentially make the enterprise liable for copyright infringement.
  • An enterprise or group therein may want only certain types of files on a network share, such as shared files used in day-to-day work operations. With respect to knowing what is on a storage volume, an administrator may want to know when certain files are added to the storage volume, such as to know when a user has installed (or even attempted to install) an executable program on a managed computer that is supposed to have a carefully-controlled set of executables.
  • At present, there is no known way to control content storage in such various ways, other than by manually inspecting file storage, or applying a utility program to do so, sometime after those files have already been stored and possibly used. While a utility could scan the file system and remove files deemed undesirable or move files where they do belong, doing so is time-consuming as well as after the fact. Such post-storage approaches also would lead to situations in which incorrectly named files or files inadvertently stored on the wrong file share suddenly disappear without the user knowing what happened.
  • What is needed is a mechanism for administrators to control the content on computer systems and storage volumes according to a policy, in which the policy may be applied in conjunction with the initial request to create a file (including copying the file from elsewhere) or rename a file on a storage volume. Such a mechanism should be sufficiently flexible for administrators to handle the many possible situations that may arise in a given computing environment.
  • SUMMARY OF THE INVENTION
  • Briefly, the present invention is directed towards a system and method by which the I/O requests issued by programs are screened to determine whether to allow certain file system-related operations (e.g., file creates) with respect to individual directories in a directory hierarchy. For example, based on a relationship between a filename provided with a create request and pre-established pattern data, certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested. Instead of or in addition to blocking, additional policy such as writing an audit log record, or sending an e-mail, may be applied.
  • In one implementation, the administrator uses file groups containing pattern data (sets of file namespace patterns which may include wildcards) arranged into member patterns and/or non-member patterns (a list of exceptions to member patterns). A file group is a logical classification of files based on certain properties, such as the name and extension of the file. For a given filename, membership of a file in a file group is determined by establishing whether the filename matches any of the non-member patterns; if so then the file is not a member of the group. If not, the filename is evaluated to determine whether it matches any of the member patterns; if so, then the file is a member of the group. If there is not a match with the non-member patterns or member patterns, the file is not a member of the group. Thus, the non-member list takes precedence over the member list, enabling an administrator to grant file group membership to certain categories of files yet specify exceptions to membership via the non-member patterns list.
  • Via pattern data arranged within file groups, an administrator applies policy to a directory based on whether a given file is a member of a file group or set of file groups. To tie the pattern data to a directory, a data screen object is used as an association unit, in which the data screen object contains lists of one or more file groups to associate with a directory, and thereby defines the screening policy on a directory.
  • A Data Screen Object is defined by a list of zero or more “allow” file groups, and a list of zero or more “block” file groups. When a create request is received, the screening decision for a file with respect to the target directory is determined by establishing whether the file (based on the filename) is a member of any of the “allow” file groups listed in the data screen object on the directory; if so, a first policy is applied, which is typically NULL policy, wherein the requested operation is not considered a violation and the request is allowed to proceed.
  • If the file is a member of any of the “block” file groups of the data screen object on the directory, a second policy is applied, typically corresponding to a violation. Thus, on the same directory, allow takes precedence over block, so that a data screen object enables the administrator to block certain types of files in the directory, with the allow overriding the blocking action for certain groups of files.
  • If neither a member of an allow file group or a block file group, the parent of the directory is checked for a data screen object to look for policy to apply. If no policy is found, the mechanism walks up the tree to the next parent directory and so forth, looking for a data screen object that has an allow or block match, until a policy is applied or there is no parent. If no parent, the allow policy (typically no action, thereby allowing the request to proceed) is applied. Thus, screening policies on sub-directories take precedence over parent directories in an upward direction, whereby an administrator set a screening policy on a directory and also set one on a subdirectory to exclude the sub-directory from some screening policy effective on its parent. The screening for a subdirectory may be more restrictive.
  • In one implementation, the screening mechanism comprises a kernel mode data screen filter and a user-mode storage resource management service. As computer programs (e.g., user mode programs and kernel mode components above the data screen filter) make file system-directed create requests via API calls, corresponding I/O requests reach the data screen filter. The data screen filter then processes the request using data screen objects with their references to file groups as described above to match filenames against patterns for the directory, and if necessary for parent directories, until a policy application is determined. In this manner, file creates and other file I/O requests can be blocked by policy before occurring, providing dynamic screening for content on a per-directory basis.
  • Other advantages will become apparent from the following detailed description when taken in conjunction with the drawings, in which:
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a block diagram generally representing a computing environment into which the present invention may be incorporated;
  • FIG. 2 is a flow diagram generally representing logic for determining whether a given filename is a member or non-member of a file group, in accordance with various aspects of the present invention;
  • FIG. 3 is a representation for visualizing the concepts of a file group having a member set and a non-member set in a file system namespace, in accordance with various aspects of the present invention;
  • FIG. 4 is a block diagram including a filter manager architecture and components for applying per-directory policy based on a filename versus pattern data, in accordance with various aspects of the present invention;
  • FIGS. 5 and 6 comprise representations of directory structures, each structure having directory nodes with associated data screen objects that relate to file group patterns that are used for determining whether to apply policy in accordance with various aspects of the present invention; and
  • FIG. 7 is a flow diagram generally representing logic for handling a request to create a file on a directory by determining whether to apply policy, in accordance with various aspects of the present invention.
  • DETAILED DESCRIPTION Exemplary Operating Environment
  • FIG. 1 illustrates an example of a suitable computing system environment 100 on which the invention may be implemented. The computing system environment 100 is only one example of a suitable computing environment and is not intended to suggest any limitation as to the scope of use or functionality of the invention. Neither should the computing environment 100 be interpreted as having any dependency or requirement relating to any one or combination of components illustrated in the exemplary operating environment 100.
  • The invention is operational with numerous other general purpose or special purpose computing system environments or configurations. Examples of well known computing systems, environments, and/or configurations that may be suitable for use with the invention include, but are not limited to: personal computers, server computers, hand-held or laptop devices, tablet devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
  • The invention may be described in the general context of computer-executable instructions, such as program modules, being executed by a computer. Generally, program modules include routines, programs, objects, components, data structures, and so forth, which perform particular tasks or implement particular abstract data types. The invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed computing environment, program modules may be located in local and/or remote computer storage media including memory storage devices.
  • With reference to FIG. 1, an exemplary system for implementing the invention includes a general purpose computing device in the form of a computer 110. Components of the computer 110 may include, but are not limited to, a processing unit 120, a system memory 130, and a system bus 121 that couples various system components including the system memory to the processing unit 120. The system bus 121 may be any of several types of bus structures including a memory bus or memory controller, a peripheral bus, and a local bus using any of a variety of bus architectures. By way of example, and not limitation, such architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus also known as Mezzanine bus.
  • The computer 110 typically includes a variety of computer-readable media. Computer-readable media can be any available media that can be accessed by the computer 110 and includes both volatile and nonvolatile media, and removable and non-removable media. By way of example, and not limitation, computer-readable media may comprise computer storage media and communication media. Computer storage media includes volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer-readable instructions, data structures, program modules or other data. Computer storage media includes, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical disk storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can accessed by the computer 110. Communication media typically embodies computer-readable instructions, data structures, program modules or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any information delivery media. The term “modulated data signal” means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example, and not limitation, communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media. Combinations of the any of the above should also be included within the scope of computer-readable media.
  • The system memory 130 includes computer storage media in the form of volatile and/or nonvolatile memory such as read only memory (ROM) 131 and random access memory (RAM) 132. A basic input/output system 133 (BIOS), containing the basic routines that help to transfer information between elements within computer 110, such as during start-up, is typically stored in ROM 131. RAM 132 typically contains data and/or program modules that are immediately accessible to and/or presently being operated on by processing unit 120. By way of example, and not limitation, FIG. 1 illustrates operating system 134, application programs 135, other program modules 136 and program data 137.
  • The computer 110 may also include other removable/non-removable, volatile/nonvolatile computer storage media. By way of example only, FIG. 1 illustrates a hard disk drive 141 that reads from or writes to non-removable, nonvolatile magnetic media, a magnetic disk drive 151 that reads from or writes to a removable, nonvolatile magnetic disk 152, and an optical disk drive 155 that reads from or writes to a removable, nonvolatile optical disk 156 such as a CD ROM or other optical media. Other removable/non-removable, volatile/nonvolatile computer storage media that can be used in the exemplary operating environment include, but are not limited to, magnetic tape cassettes, flash memory cards, digital versatile disks, digital video tape, solid state RAM, solid state ROM, and the like. The hard disk drive 141 is typically connected to the system bus 121 through a non-removable memory interface such as interface 140, and magnetic disk drive 151 and optical disk drive 155 are typically connected to the system bus 121 by a removable memory interface, such as interface 150.
  • The drives and their associated computer storage media, described above and illustrated in FIG. 1, provide storage of computer-readable instructions, data structures, program modules and other data for the computer 110. In FIG. 1, for example, hard disk drive 141 is illustrated as storing operating system 144, application programs 145, other program modules 146 and program data 147. Note that these components can either be the same as or different from operating system 134, application programs 135, other program modules 136, and program data 137. Operating system 144, application programs 145, other program modules 146, and program data 147 are given different numbers herein to illustrate that, at a minimum, they are different copies. A user may enter commands and information into the computer 110 through input devices such as a tablet, or electronic digitizer, 164, a microphone 163, a keyboard 162 and pointing device 161, commonly referred to as mouse, trackball or touch pad. Other input devices not shown in FIG. 1 may include a joystick, game pad, satellite dish, scanner, or the like. These and other input devices are often connected to the processing unit 120 through a user input interface 160 that is coupled to the system bus, but may be connected by other interface and bus structures, such as a parallel port, game port or a universal serial bus (USB). A monitor 191 or other type of display device is also connected to the system bus 121 via an interface, such as a video interface 190. The monitor 191 may also be integrated with a touch-screen panel or the like. Note that the monitor and/or touch screen panel can be physically coupled to a housing in which the computing device 110 is incorporated, such as in a tablet-type personal computer. In addition, computers such as the computing device 110 may also include other peripheral output devices such as speakers 195 and printer 196, which may be connected through an output peripheral interface 194 or the like.
  • The computer 110 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 180. The remote computer 180 may be a personal computer, a server, a router, a network PC, a peer device or other common network node, and typically includes many or all of the elements described above relative to the computer 110, although only a memory storage device 181 has been illustrated in FIG. 1. The logical connections depicted in FIG. 1 include a local area network (LAN) 171 and a wide area network (WAN) 173, but may also include other networks. Such networking environments are commonplace in offices, enterprise-wide computer networks, intranets and the Internet.
  • When used in a LAN networking environment, the computer 110 is connected to the LAN 171 through a network interface or adapter 170. When used in a WAN networking environment, the computer 110 typically includes a modem 172 or other means for establishing communications over the WAN 173, such as the Internet. The modem 172, which may be internal or external, may be connected to the system bus 121 via the user input interface 160 or other appropriate mechanism. In a networked environment, program modules depicted relative to the computer 110, or portions thereof, may be stored in the remote memory storage device. By way of example, and not limitation, FIG. 1 illustrates remote application programs 185 as residing on memory device 181. It will be appreciated that the network connections shown are exemplary and other means of establishing a communications link between the computers may be used.
  • Data Screening
  • The present invention is generally directed towards a system and method by which the I/O requests issued by computer programs are screened to determine whether to allow certain file system-related operations (e.g., file creates) with respect to individual directories in a directory hierarchy. For example, based on a relationship between a filename provided in association with the create request and pre-established pattern data, certain files or types of files trigger policy, which may include blocking that file from being created (or renamed to a blocked name) on the target directory for which file creation has been requested. As will be understood, this is accomplished by code that analyzes each such request dynamically, as it occurs, so that among other things, if policy is to block a certain file's creation, the blocked file is never created, even temporarily, and the user can know immediately that the file was not successfully created, as well as the reason.
  • Thus, the present invention is primarily directed towards evaluating a file system operation (e.g., a file create) to determine whether based on the full path information associated with the file system request, (e.g., volume, directory path and filename or UNC path), policy is applied (e.g., blocking creation of that file in the directory on which creation is requested). However, as will be understood, the present invention is not limited to blocking file creation or renames, but can apply other policy in addition to blocking or instead of blocking. For example, the creation may be allowed to occur, but as determined by policy, some other action may be taken, e.g., the create event may be logged such as to an audit file, a message may be sent (e.g., to the system administrator), and so forth. Policy that blocks file creation also may cause additional policy to be applied. Further, the present invention is not limited to applying policy only on create or rename requests, but can apply policy on other types of file system requests; different policies may apply to different types of requests, and different policies may apply depending on the evaluation result. Thus, although the examples herein are primarily directed towards applying policy or not with respect to file creation/renaming request based on evaluation of a filename and the directory information accompanying the request, it is understood that these are only examples.
  • As will be also understood, numerous ways to implement the present invention are feasible, and only some of the alternatives are described herein. For example, the present invention is primarily described below with reference to I/O request packets (IRPs) that pass through a set of filter drivers, in which the IRP passing may be controlled by a filter manager via pre-callbacks and post-callbacks. However, the present invention may alternatively be implemented in an arrangement in which the passing may be through a stack of filter drivers, sequentially from one filter driver to the next, and/or in the file system itself. Moreover, the program having its I/Os evaluated may be writing to one or more local file system volumes and/or to one or more network servers, and each may have different directory structures and associated policy-related data. Notwithstanding, other types of filter driver arrangements, I/O passing and/or storage options are feasible. For example, the present invention may be configured to work in an architecture where requests are not passed as IRPs, but in some other format. As such, the present invention is not limited to any particular examples used herein, but rather may be used various ways that provide benefits and advantages in computing in general.
  • In order to configure the I/O subsystem to determine what policy, if any, should be applied, the administrator needs a way to distinguish various types of filenames from one another. Although the administrator could individually list each filename for which policy would be applied, this would be time-consuming and highly inefficient, as frequently it is types of files, as denoted by their file extension, to which an administrator wants policy applied. To this end, a data screen pattern, or simply a pattern for short, defines a set of filenames (pattern data) that can be compared against a requested filename. In one implementation, pattern data may include filenames specified in the form of a wildcard (such as “*” or “?”), e.g., *.exe will identify any file with an .exe extension, the well-known extension for executable files. Note that *.ex? is a pattern which *.exe executable files match, as do files of type *.exa, *.exb, *.ex2 and the like, essentially representing a three-character filename extension that substitutes any third alphanumeric character (or other suitable character) that is a valid character for filenames for the “?” wildcard.
  • Although the availability to use wildcards in pattern data is efficient, wildcards are not required in the present invention, as other alternatives including individual filename listings and/or ranges of files/extensions (such as file extensions mp0 through mp9 inclusive) may be used to specify files. Notwithstanding, wildcards are described herein as one suitable mechanism for identifying files, because of their efficiency in allowing administrators to identify entire types of files at once, and because the usage and handling of wildcards is a well established and understood part of file system technology. Further, wildcard use is optional in that even with wildcard availability, an entire filename and/or extension without wildcards may be used instead, meaning that listing individual files is still an option. Note that while the present invention is primarily described with reference to file types as recognized by their extensions, any suitable part or all of a filename may correspond to a pattern. Thus, with wildcards, several thousand files that range from a2.text to a999999.txt may be simply represented in pattern data by a*.txt, demonstrating another advantage of wildcards.
  • Because wildcards can encompass more files and file type than desired, one implementation uses the concept of maintaining various sets of pattern data in file groups, wherein a file group is a logical classification of files based on certain properties, e.g., the name and extension of the file. Each file group contains a list of zero or more member patterns corresponding to filenames to include as part of the group, and/or a list a zero or more non-members patterns, comprising a list of exceptions to the member patterns. As described below, non-members override and thus exclude filenames that may be otherwise identified by a pattern in the member group.
  • By way of example, consider a file group of music-type files defined by member pattern(s) of *.mp* and non-member patterns of *.mpp and *.mpv. Any music files, such as one named mysong.mp3, is considered a member of the group, whereas a project file named myproject.mpp is considered a non-member, as would any files that do not match the member pattern at all, e.g., myspreadsh.xls. This result occurs because the default is that a file is a non-member unless listed as a member, with an exception non-member list that takes precedence over the member list. This allows an administrator to grant file group membership to one or more certain categories of files, and then specify exceptions to membership granted by the member patterns list, with completely unrelated files (of course) not being considered as members. Note that it is essentially equivalent, although somewhat less intuitive, to do this in reverse, e.g., start with every file being a member unless specified as a non-member, and then specify exceptions that make files members within the non-member set.
  • FIG. 2 shows example logic for determining whether a given filename is within a given file group or set of file groups. As can be seen, step 202 first looks for non-member exclusions. If the filename fits into any non-member pattern, (there may be from zero to any practical number of non-member patterns), the file is excluded from that group, and an indication provided (e.g., FALSE) as appropriate via step 206. Note that the exclusion is immediate, regardless of whether any non-member patterns remain to be evaluated and regardless of the member patterns, because matching any one non-member pattern is sufficient to exclude the file from the file group, and exclusions override inclusions in a member group.
  • Returning to step 204, if no match is found using the non-member patterns (including if there are zero non-member patterns), step 202 instead branches to step 204, where an evaluation of the filename is performed against the member patterns in the file group or set of file groups. If the filename fits into any member pattern, (there may be from zero to any practical number of member patterns), the file is immediately considered to be a member of that group regardless of whether any member patterns remain to be evaluated, (since the file group is essentially a union of patterns), and an indication (e.g., TRUE) provided as appropriate via step 204.
  • If step 204 cannot locate a matching member pattern, (which includes when the member set is a NULL set), the file is not in the group, and thus step 204 branches to step 206 where a “not-in-group” indication is provided (e.g., FALSE) as appropriate.
  • The patterns in a file group or set of file groups may be arranged in any order, such as sorted for efficiency, e.g., patterns believed (or measured in some way) to correspond to more common types of filenames may be arranged to be evaluated first. The file groups can also be ordered within the data screening object, such as for similar purposes. Note that file groups may be used for other applications that operate based on file classification.
  • FIG. 3 is a representation (not to any scale) to help visualize via namespaces the members and non-members in a file group. In general, all files (*.*) are not members of a given file group unless listed in the file group. A file group, such as the music-related file group that had mp* as a pattern in its member list, defines a set of files within the possible file namespace. This is represented in FIG. 3 by the smaller non-shaded area (the member list namespace) within the large shaded area (the total possible namespace). Within the member area are the non-member exclusions, comprising the namespaces represented by the smaller shaded areas. As is readily apparent from FIG. 3, the only files that remain in the member file group namespace are those in the non-shaded area. As seen in FIG. 2, described above, if a file falls into the small shaded areas, it is immediately not in the group; if not within such an exception area, the file is then tested for whether it falls in the remaining non-shaded area; only if so is the file within the file group.
  • Via pattern data arranged within file groups, an administrator can now apply policy based on whether a given file is a member of a file group or set of file groups. To tie pattern data to a directory, a data screen object is used as an association unit, in which the data screen object contains lists of one or more file groups to associate with a directory, and thereby defines the screening policy on a directory. In one implementation, each directory may have only one data screen object (DSO), but in alternative implementations, a directory may have multiple data screen objects, which may all apply or selectively apply, e.g., possibly different ones for different categories of users/usergroups, different ones for different types of evaluations (e.g., a file create request has one and a file read request has another) and so on. For purposes of simplicity, an implementation having only one data screen object per directory will be described herein.
  • As described below, a data screen object is defined by a list of zero or more “allow” file groups and a list of zero or more “block” file groups. Note that the terms “block” and “allow” comes from the likelihood that the most typical policy decision will be to block or allow file creation, although as described below actual blocking of a file create is not required when applying “blocking” policy.
  • In addition to the file group information, it is also feasible to put different policy information in each data screen object and thereby have differing policies apply to different directories depending on its associated data screen object, however for purposes of simplicity, the policy will be the same for all directories. Further, note that it is feasible to have the data screening objects be set up with the member and non-member pattern lists directly, rather than indirectly via references to the file groups that contain those lists, however the use of file groups provides administrators with flexibility and ease of use, as well as the include with exclude override. Note that after setup, when needed in actual operation, the data screen object in-memory structure may indeed contain the (e.g., unioned) member and non-member pattern lists directly, pre-processed into the block and allow lists, rather than containing references to file groups, such as for purposes of efficiency. For purposes of explanation herein, the present invention will be described with data screen objects that contain reference(s) to file group(s).
  • In operation, the data screen objects and file groups are used to determine whether to apply policy when a relevant file-system related request is received, such as a request to create a given file on a given directory. As is known, such a request contains information (e.g., a full path) from which the desired directory and desired file are identifiable. FIG. 4 shows an architecture in which a filter driver evaluates such a request in accordance with various aspects of the present invention. In general, a filter driver (or simply “filter”) is software code that is able to inspect and possibly modify data sent to or received from a file system. For example, an antivirus filter driver may look for virus signatures, a quota filter driver may watch a user's disk space consumption, an encryption filter driver may encrypt data on its way to the file system and decrypt it on the way back, and so forth.
  • As represented in FIG. 4, one exemplary arrangement 400 of components of a system is provided into which the present invention may be incorporated via a filter driver. The components include one or more user-mode (e.g., application or shell) programs 402, a set of application programming interfaces (APIs) 404, an input/output (I/O) manager 406, a filter manger 408, a file system 410, storage volume 412, and filters 420-422. As is generally known with filter drivers, there may be any number (including zero) of higher-level filters 420 and/or lower-level filters 422 installed relative to another driver in any given implementation. Note that the present invention may work with multiple file systems and/or multiple storage volumes, as long as the directory structure and data screening object associations are known for each volume, however for purpose of simplicity, FIG. 4 shows one file system 410 and one storage volume 424, which may be local or remote.
  • In accordance with an aspect of the present invention, two components shown in FIG. 4 are directed towards evaluating file system create requests received as I/Os to determine whether policy is to be applied to those requests. These components include a user-mode storage resource management service 430 and one of the filter drivers, namely the data screen filter 421. For various purposes described below, the user-mode storage resource management service 430 has an associated data store 432 containing file group (FG) information and data screen object (DSO) information, (although the data screen filter 421 may persist this information instead). A user interface (not shown) or the like allows administrators to maintain the data store 432 as necessary.
  • As will be understood, the separation of the data screen filter 421 and storage resource management service 430 is for convenience and efficiency in this architecture, and the division in structure and/or functionality between them is somewhat arbitrary except that in general, kernel-mode components are generally written to be highly efficient and as straightforward as possible to avoid potential errors. Thus, although it is understood that essentially all of the present invention's screening operations may be implemented in the filter driver component 421, having some of the work performed in the user-mode component 430 provides certain advantages and benefits, and thus is used in environments where some communication channel exists between the user-mode component 430 and the kernel-mode component 421. Notwithstanding, it is feasible to implement a filter driver that is installed and configured, such as following system boot or on demand, that obtains the data needed to screen I/Os and apply policy until halted in some manner.
  • User-mode computer programs 402 often make file system-directed create requests via API calls through the API set 404 to the I/O manager 406, such as when creating a new file or copying or moving an existing file from another storage location. In general, the I/O manager 406 may determine what I/O request or requests should be issued to fulfill each program request, and sends the corresponding request or requests to the filter manager 408. In the example implementation described herein, the I/O manager sends requests in the form of an I/O request packet, or IRP. The I/O manager 404 also returns status codes and/or data to the user-mode programs 402 in response to the API calls. Note that kernel mode components can also make file-system directed I/O requests, and thus the data screen filter 421 may receive IRPs initiated by kernel mode components that are above the data screen filter, as well as receive IRPs corresponding to file-system directed requests initiated by user-mode programs.
  • In one implementation, described in U.S. patent application Ser. No. 10/315,384, filter drivers may register (e.g., during an initialization procedure) with a registration mechanism with the filter manager 408. For efficiency, each filter driver typically will only register for file system requests in which it may be interested in processing. To this end, as part of registration, each filter driver notifies the filter manager 408 of the types of I/O requests in which it is interested (e.g., create, read, write, close, rename, and so forth). For example, an encryption filter driver may register for read and write I/Os, but not for others wherein data does not need to be encrypted or decrypted. Similarly, a quota filter driver may be interested only in object creates and object writes.
  • In the current example described herein in which the filter driver 421 wants to screen newly created or renamed files, the data screening filter driver registers for any I/O request that creates or renames a file on a directory. Note that the opening of an existing file may cause policy to be applied, however if the policy blocked the opening of the file, in one implementation the file could not be deleted if the open was blocked because an open is necessary to delete the file, and thus opens are not blocked. Notwithstanding, with the present invention, policy may be applied per directory for files with respect to any type of file system-directed request, including opens, reads, writes, deletes, closes and so forth.
  • In addition to specifying the types of I/O requests in which it is interested, a filter driver may further specify whether the filter driver should be notified for pre-callbacks and post callbacks for each of the types of I/O. A pre-callback is called as data associated with an I/O request propagates from the I/O manager 406 towards the file system 410, while a post-callback is called during the completion of the I/O request as data associated with the I/O request propagates from the file system 410 towards the I/O manager 406. During pre-callback, a filter driver can opt out of receiving a post-callback for a particular IRP even if it is generally registered for those types of IRPs. In general, the filter manager 408 receives IRPs from the I/O manager 406 and sequentially passes data associated with that IRP to each filter driver registered for that type of request, in an order that generally depends on whether and how the filter driver modifies the data or not, e.g., an antivirus filter driver should come before an encryption filter driver for data on its way to the file system so that the antivirus filter driver can see the data in its unencrypted form.
  • As described below, for efficient operation, the filter driver 421 may store a needed amount of data in memory so that it does not need to communicate with user mode code to retrieve regularly-needed data. In one implementation, the data maintained by the filter driver is primarily provided to it by the user-mode storage resource management service 430. To this end, the user-mode storage resource management service 430 and the corresponding filter driver 421 have a communication channel, e.g., the filter manager 408 recognizes and appropriately routes such communications, which are thus essentially private. This communication channel is represented in FIG. 4 by the relatively-wide gray arrow; note that this channel may be protected such that administrator-level privileges are required to communicate over it.
  • In the present example in which the filter driver 421 is evaluating create requests on a per-directory basis, the filter driver obtains the data screening objects 440 and file groups 442, as well as a representation (e.g., a set of nodes) of the current volume's directory structure 444, which also contains information indicating which directories are associated with which data screening objects; a given directory need not have any association. The data screen filter 421 then has knowledge of the data screen object for each directory (e.g., node) of the directory structure, and the data screen objects in turn tie the file groups to the directory, whereby that the filter 421 can begin its filtering operation. Miscellaneous working data 446 is also shown, such as for storing some policy-related data (e.g., actually block on a policy violation or not). In keeping with the present invention, with this information, the data screen filter 421 may evaluate file-system requests (such as create requests) against membership information, on a per-directory basis, and thereby produce a policy-related result.
  • FIGS. 5 and 6 show example directory structures (for different volumes) with data screen objects associated with administrator-selected directories, wherein as described above, the data screen objects contain references to file groups that in turn contain the member and/or non-member patterns. Thus, in FIG. 5, it is seen that an administrator has set one data screen object DSO1 to be associated with a “Users” directory, and another data screen object DSO2 to be associated with a particular user directory, U3. Different data screen objects (e.g., DSO1 and DSO2) can both contain references to a common file group (e.g., MusicFG), and although not readily apparent from FIG. 5, an administrator can reuse data screen objects among different directories. In FIG. 6, it is seen that that an administrator has set a data screen object DSO4 to be associated with a “Shared Files” directory, another data screen object DSO3 to be associated with a particular directory, Spreadsheets, and another data screen object DSO11 to be associated with a particular directory, WordDocs. The evaluation of a filename using the data screen objects is described below with reference to FIG. 7.
  • Returning to FIG. 4, in a typical configuration, the filter driver 421 may be configured to block file creation on a particular directory for a given file, which it can do by stopping the I/O request (e.g., during the pre-callback phase), and may instruct the filter manager 408 to report a status code (e.g., failure) for the I/O request. As described below, the filter driver 421 will also notify the user-mode storage resource management service 430 anytime policy is deemed to apply, so that the user-mode storage resource management service 430 may apply the policy (or additional policy). The notification may include identification as to which data screening object, directory and/or filename caused the policy violation, so that the user mode service 430 has this knowledge. Note that for efficiency, rather than waiting for instructions from the user mode code 430, the data screen filter 421 may be instructed in advance whether to block file creation when a file is found to be a member of a blocked file group (as well as notify the storage resource management service 430), or allow the file creation and only notify. As described above, such policy data may be provided during initialization, and is typically for all directories but may be per directory if provided (e.g., within the directory structure 444), or per data screen object (e.g., if provided within the data screen object).
  • To determine whether to apply policy when a file create request is received (the full path is essentially identifiable via the request), FIG. 7 shows example logic used by the data screen filter 421, beginning at step 700 where the target directory in which the file create is being requested (typically but not necessarily a subdirectory in the directory tree) is located and set as the current directory.
  • Step 702 evaluates whether this current directory has a data screening object associated with it, e.g., found via the directory structure 444. If not, then this directory is not directly subject to policy, however it may inherit policy from a higher parent directory, and thus step 702 branches to step 712 to essentially walk up the directory tree until some policy is found that either allows the file or blocks the file, or the root is reached without any policy to apply.
  • If instead at step 702 there is a data screening object, then its file group or file groups need to be evaluated against the filename to determine whether policy is to be applied to this particular file. First, the allow file groups are tested, generally using the logic of FIG. 2 to determine if there is membership in an allow file group, because if specifically allowed by being a member of any allow file group(s) listed in the data screen object associated with the current directory, the requested operation is deemed to not be a violation of policy. In this event, step 704 branches to step 716 where the allow “policy” is applied, (in this example, there is no allow policy other than to do nothing, which is equivalent to a policy of NULL), whereby the file is allowed to be created on the target directory as originally requested. Note that in alternative implementations, there may be an allow policy that actually performs some action at step 716, whether in the driver or by a notification to the user mode service 420; for example, the file creation may be still conditional on some other policy, e.g., allow the create if the file size is less than 10 MB, otherwise block creation. Further, note that creation may be prevented for another reason, such as prevented in another driver or the file system, and thus “allow” as used in this context means allow the request to proceed further.
  • If instead at step 704 the file name is not a member of an allow group (or there are no allow groups, which essentially means the same thing), step 704 branches to step 706 to evaluate the filename against the “block” file group or groups listed in the data screen object. If at step 706 the file is a member of any block file group(s) of the data screen object for the current directory, the operation is a violation of policy, and step 706 branches to step 708 where any blocking policy that the driver 421 can apply is applied (e.g., the file create is blocked), followed by step 710 where the user mode service is notified of the policy violation.
  • In the event that the filename was not a member of either the allow file group(s) or block file group(s), then the parent directory, if the current directory is not already the root, needs to be evaluated. This is because policy screening decisions associated with a directory apply to that directory as well as any subdirectories, unless overridden by policy at the subdirectory. Steps 712 and 714 are repeated as necessary to walk up the tree towards the root looking for a data screening object that will result in a decision, until one is found or there is no parent because the current directory is already at the root directory.
  • As can be understood from FIG. 7, by starting at the target directory that the file request has specified and walking up as necessary, screening policies on lower directories take precedence over their parent directories. This allows an administrator to set a screening policy on a directory, and also set one on a subdirectory, while giving the subdirectory policy precedence. This is generally because a subdirectory is frequently a narrower subset of a parent, and thus may require an exception to a general rule for a parent. In other words, this semantic allows an administrator to exclude a subdirectory from some screening policy effective on its parent. It also allows the administrator to set up more restrictive screening on a subdirectory.
  • Moreover, by evaluating for an allow result before a block result on the same directory, membership in an allow file group takes precedence over membership in a block file group. This is because the default behavior in a directory is to allow all files, whereas a data screen object allows the administrator to block certain types of files in the directory. Thus “allow” may be used to override the blocking action for certain groups of files. Note that again, it would be largely equivalent to do this in reverse.
  • FIG. 5 shows how allowing and blocking works in an example directory. In FIG. 5, the administrator has essentially set up the directory and data screen objects so that music file group files and picture file group files are blocked from users, unless there is an exception set. This is accomplished by setting DSO1 up with two block file groups, one for music file membership (e.g., *.mp3) and one for picture file group membership (e.g., *.jpg or *.bmp). These lists have been kept small for purposes of this example, however other music files and picture files may be listed in a given group, and moreover, a larger file group may be defined that contains both pictures and music files in a single member list. Note that administrators may be provided with sets of data screen objects and/or file groups in advance for common types of issues, whereby an administrator need not start from scratch.
  • As can be seen by following the logic of FIG. 7 and FIG. 2, a file named X.mp3 will violate policy (e.g., be blocked) if an attempt is made to create the file in the U2 directory. This is because while the U2 directory does not have an associated data screen object, a higher parent (Users) does, and a *.mp3 file is a member of the music file group MusicFG, which is blocked by the block list in the directory screen object DSO1. However, X.mpp does not violate policy, because it is not a member of the music file group MusicFG due to the file extension listed as a non-member.
  • A different user, corresponding to the U3 directory, will get different results with respect to music files. For example consider a user that needs to work with music files as part of his or her job; in such a situation the administrator will make an exception. To this end, the administrator sets a data screen object DSO2 which has the music file group MusicFG on its allow list. Because directly allowed, X.mp3 will not have blocking policy applied. However, there is no such exception for pictures, and thus an attempt to create Y.jpg in the same directory will fail because of DSO1, which also lists the picture file group PictureFG in its block list. Thus, as can be seen from FIG. 5, administrators have the ability to easily apply policy to select file types (or even individual files) on a per directory basis based on file group memberships, with the policy applied down the directory tree; allow exceptions can be made as desired.
  • FIG. 6 shows another example way in which the highly-flexible mechanisms of the present invention produce a desirable result. In FIG. 6, the administrator wants to restrict a directory named Shared Files to having only certain types of files in directories under it, namely word processing files (*.doc) and spreadsheet files (*.xls, *.123 and possibly others not shown as indicated by the ellipsis). In this example, such files also need to be created in their respective directories.
  • To accomplish this, the administrator simply blocks all files on the Shared Files directory via the data screening object DSO4, and then makes exceptions for its subdirectories via DSO3 and DSO11, as should be readily apparent in FIG. 6. Because files are evaluated for policy violations walking up the tree, document file creation requests with the proper filename made to the proper corresponding directory do not violate policy, while all others do.
  • It should be noted that if only creation and renaming is prevented, pre-existing files will still exist and be opened on a directory. These can be allowed to stay or be cleaned up in some other manner.
  • Further, with the example implementation described herein, even the administrator is blocked from overriding the policy, unless the administrator removes the screening object or objects that apply the policy. However, in an alternative arrangement, different directory screening objects (or none instead of one) may be selected by the filter driver 421 based on the credentials of the requesting entity, whereby an administrator can have different rules for different users and groups, including the administrators group. To this end, the user information would be used to see if there was data screening object for that user at the current directory (at a modified step 702), and if so, to use the file groups of that particular per-user data screening object as needed at similar steps 702 and/or 704. Note that user information is already known to the filter driver stack via the IRP, (an indeed is used in other scenarios such as by per-user quota filter drivers).
  • As can be seen from the foregoing detailed description, there is provided a method and system that applies policy as specified for user mode I/O requests, such as to allow or block create file requests, based on a directory identity and a filename. The use of data screen objects and file groups makes it easy for administrators to apply policy to individual directories and thus control the content of storage volumes.
  • While the invention is susceptible to various modifications and alternative constructions, certain illustrated embodiments thereof are shown in the drawings and have been described above in detail. It should be understood, however, that there is no intention to limit the invention to the specific forms disclosed, but on the contrary, the intention is to cover all modifications, alternative constructions, and equivalents falling within the spirit and scope of the invention.

Claims (22)

1. In a computing environment, a system comprising:
a data screen mechanism that receives an I/O request directed towards a file in a target directory of a file system volume, the I/O request containing information corresponding to the filename and the target directory;
a set of one or more data screening objects, each data screening object associated with a directory of the file system volume and having information corresponding to pattern data that relates to filenames; and
the data screen mechanism determining based on the target directory whether a data screening object applies to the I/O request, and if so, evaluating the filename corresponding to the I/O request against the pattern data to determine policy application based on a relationship between the filename and the pattern data.
2. The system of claim 1 further comprising a set of at least one file group, each file group containing pattern data, and wherein the information corresponding to the pattern data in the data screening object comprises a reference to at least one file group in the set.
3. The system of claim 2 wherein each file group includes a first field for member patterns and a second field for non-member patterns.
4. The system of claim 3 wherein the filename is a member of a group when the filename does not fit a pattern in the second field and fits a pattern in the first field.
5. The system of claim 4 wherein the data screen mechanism determines policy application based on a relationship between the filename and the pattern data by determining whether the filename is a member of a group.
6. The system of claim 5 wherein the data screening object contains a first field for listing a first set of zero or more file groups and corresponding to a first policy, and a second field for listing a second set of zero or more file groups corresponding to a second policy, and wherein the data screen mechanism applies the first policy if the filename is a member of any file group in the first field and applies the second policy if the filename is a member of any file group in the second field.
7. The system of claim 6 wherein the first field corresponds to an allow policy and the second field corresponds to a block policy, and wherein the allow policy overrides the block policy.
8. The system of claim 6 wherein the filename is neither a member of any file group in the first field nor a member of any file group in the second field, and wherein the data screen mechanism determines whether a data screening object applies to the I/O request by looking for another data screening object associated with at least one parent directory of the target directory.
9. The system of claim 1 wherein the data screen mechanism comprises a filter driver.
10. The system of claim 9 further comprising a user mode service coupled for communication with the data screen mechanism, the data screen mechanism configured to provide a notification to the user mode service upon at least one type of policy application.
11. In a computing environment, a method comprising:
associating pattern data corresponding to a set of one or more namespaces with a directory;
receiving an I/O request, the request I/O including data corresponding to a filename and a target directory; and
determining whether the filename relates to the pattern data, and if so, determining a policy to apply based on the relationship of the filename to that pattern.
12. The method of claim 11 wherein the pattern data includes at least one pattern having a wildcard.
13. The method of claim 11 wherein associating the pattern data with the directory comprises associating a data screen object containing information corresponding to the pattern data with the directory.
14. The method of claim 13 wherein the data screen object includes a first and second data fields, with at least one field containing information corresponding to at least some of the pattern data.
15. The method of claim 14 wherein the information corresponding to at least some of the pattern data comprises at least one reference to the pattern data.
16. The method of claim 14 wherein the first field corresponds to a first policy and the second field corresponds to a second policy.
17. The method of claim 16 wherein the first field corresponds to an allow policy and the second field corresponds to a block policy, and wherein determining the policy to apply comprises evaluating the first field for pattern data to attempt to obtain a policy result before evaluating the second field for pattern data.
18. The method of claim 11 wherein determining whether the filename relates to the pattern data comprises determining whether the filename fits any pattern data for the target directory, and if so, applying a policy.
19. The method of claim 18 wherein determining whether the filename fits any pattern data for the target directory comprises determining whether a data screen object is associated with the target directory.
20. The method of claim 18 wherein a data screen object is associated with the target directory and contains a first field for one policy and a second field for another policy, each field arranged to contain information corresponding to file group data in which any file group contains at least some of the pattern data, and wherein determining whether the filename relates to the pattern data comprises determining whether the filename is a member of a file group.
21. The method of claim 20 wherein each file group contains a data field for member patterns and a data field for non-member patterns, and wherein determining whether the filename is a member of a file group comprises evaluating the filename against any non-member patterns before evaluating the filename against any member patterns, wherein when the filename is not a member of the group if it fits any non-member pattern or does not fit any member pattern.
23-39. (canceled)
US12/255,549 2004-11-30 2008-10-21 Method and system of applying policy on screened files Abandoned US20090171957A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/255,549 US20090171957A1 (en) 2004-11-30 2008-10-21 Method and system of applying policy on screened files

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US10/999,537 US7599907B2 (en) 2004-11-30 2004-11-30 Method and system applying policy on screened files
US12/255,549 US20090171957A1 (en) 2004-11-30 2008-10-21 Method and system of applying policy on screened files

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/999,537 Division US7599907B2 (en) 2004-11-30 2004-11-30 Method and system applying policy on screened files

Publications (1)

Publication Number Publication Date
US20090171957A1 true US20090171957A1 (en) 2009-07-02

Family

ID=36568459

Family Applications (2)

Application Number Title Priority Date Filing Date
US10/999,537 Expired - Fee Related US7599907B2 (en) 2004-11-30 2004-11-30 Method and system applying policy on screened files
US12/255,549 Abandoned US20090171957A1 (en) 2004-11-30 2008-10-21 Method and system of applying policy on screened files

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US10/999,537 Expired - Fee Related US7599907B2 (en) 2004-11-30 2004-11-30 Method and system applying policy on screened files

Country Status (1)

Country Link
US (2) US7599907B2 (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8245141B1 (en) * 2008-10-29 2012-08-14 Cisco Technology, Inc. Hierarchical collaboration policies in a shared workspace environment
US20140164408A1 (en) * 2012-12-10 2014-06-12 International Business Machines Corporation Electronic document source ingestion for natural language processing systems
US9191279B1 (en) * 2012-05-31 2015-11-17 Symantec Corporation Systems and methods for data loss prevention
US20210200714A1 (en) * 2014-08-22 2021-07-01 AsterionDB Inc. Apparatus for Accessing Data from a Database as a File

Families Citing this family (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9361243B2 (en) 1998-07-31 2016-06-07 Kom Networks Inc. Method and system for providing restricted access to a storage medium
US8010961B1 (en) * 2003-06-11 2011-08-30 Symantec Corporation Data layer prioritization in an application layered system
US8112767B1 (en) * 2002-06-12 2012-02-07 Symantec Corporation Systems, apparatus, and methods for layered execution
US7599907B2 (en) * 2004-11-30 2009-10-06 Microsoft Corporation Method and system applying policy on screened files
US7725507B1 (en) * 2005-01-07 2010-05-25 Symantec Operating Corporation Dynamic directories
EP1684151A1 (en) * 2005-01-20 2006-07-26 Grant Rothwell William Computer protection against malware affection
US8220037B2 (en) * 2006-12-12 2012-07-10 Oracle International Corporation Centralized browser management
US8601542B1 (en) * 2007-12-28 2013-12-03 Crimson Corporation Systems and methods providing for configuration file downloads
US8352735B2 (en) * 2008-01-31 2013-01-08 International Business Machines Corporation Method and system for encrypted file access
KR101531504B1 (en) * 2008-08-26 2015-06-26 엘지전자 주식회사 Mobile terminal and method for controlling the same
US20110167095A1 (en) * 2008-08-26 2011-07-07 Nec Corporation Method, apparatus and program for data processing
US8650250B2 (en) 2010-11-24 2014-02-11 Oracle International Corporation Identifying compatible web service policies
US9589145B2 (en) * 2010-11-24 2017-03-07 Oracle International Corporation Attaching web service policies to a group of policy subjects
US8560819B2 (en) 2011-05-31 2013-10-15 Oracle International Corporation Software execution using multiple initialization modes
US9043864B2 (en) 2011-09-30 2015-05-26 Oracle International Corporation Constraint definition for conditional policy attachments
US8924443B2 (en) * 2012-10-05 2014-12-30 Gary Robin Maze Document management systems and methods
US9703974B1 (en) * 2013-12-20 2017-07-11 Amazon Technologies, Inc. Coordinated file system security via rules
US10754968B2 (en) * 2016-06-10 2020-08-25 Digital 14 Llc Peer-to-peer security protocol apparatus, computer program, and method
US11106491B2 (en) * 2018-04-06 2021-08-31 Beijing Didi Infinity Technology And Development Co., Ltd. Method and system for kernel routine callbacks
US11200198B2 (en) * 2019-02-01 2021-12-14 EMC IP Holding Company LLC Excluding directory trees from data service operations

Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020174102A1 (en) * 2001-04-27 2002-11-21 Kyler Daniel B. Filter driver for identifying disk files by analysis of content
US20030009484A1 (en) * 2001-07-06 2003-01-09 Fujitsu Limited File management system and program therefor
US20030046335A1 (en) * 2001-08-30 2003-03-06 International Business Machines Corporation Efficiently serving large objects in a distributed computing network
US6799206B1 (en) * 1998-03-31 2004-09-28 Qualcomm, Incorporated System and method for the intelligent management of archival data in a computer network
US20060117063A1 (en) * 2004-11-30 2006-06-01 Microsoft Corporation Method and system of applying policy on screened files
US20060282629A1 (en) * 2003-09-08 2006-12-14 International Business Machines Corporation Method, system, and program for implementing retention policies to archive records
US7188127B2 (en) * 2003-10-07 2007-03-06 International Business Machines Corporation Method, system, and program for processing a file request
US7328456B1 (en) * 2003-11-19 2008-02-05 Symantec Corporation Method and system to detect dangerous file name extensions

Patent Citations (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6799206B1 (en) * 1998-03-31 2004-09-28 Qualcomm, Incorporated System and method for the intelligent management of archival data in a computer network
US20020174102A1 (en) * 2001-04-27 2002-11-21 Kyler Daniel B. Filter driver for identifying disk files by analysis of content
US20030009484A1 (en) * 2001-07-06 2003-01-09 Fujitsu Limited File management system and program therefor
US20030046335A1 (en) * 2001-08-30 2003-03-06 International Business Machines Corporation Efficiently serving large objects in a distributed computing network
US20060282629A1 (en) * 2003-09-08 2006-12-14 International Business Machines Corporation Method, system, and program for implementing retention policies to archive records
US7188127B2 (en) * 2003-10-07 2007-03-06 International Business Machines Corporation Method, system, and program for processing a file request
US7328456B1 (en) * 2003-11-19 2008-02-05 Symantec Corporation Method and system to detect dangerous file name extensions
US20060117063A1 (en) * 2004-11-30 2006-06-01 Microsoft Corporation Method and system of applying policy on screened files

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8245141B1 (en) * 2008-10-29 2012-08-14 Cisco Technology, Inc. Hierarchical collaboration policies in a shared workspace environment
US9191279B1 (en) * 2012-05-31 2015-11-17 Symantec Corporation Systems and methods for data loss prevention
US20140164408A1 (en) * 2012-12-10 2014-06-12 International Business Machines Corporation Electronic document source ingestion for natural language processing systems
US20140164407A1 (en) * 2012-12-10 2014-06-12 International Business Machines Corporation Electronic document source ingestion for natural language processing systems
US9053085B2 (en) * 2012-12-10 2015-06-09 International Business Machines Corporation Electronic document source ingestion for natural language processing systems
US9053086B2 (en) * 2012-12-10 2015-06-09 International Business Machines Corporation Electronic document source ingestion for natural language processing systems
US20210200714A1 (en) * 2014-08-22 2021-07-01 AsterionDB Inc. Apparatus for Accessing Data from a Database as a File

Also Published As

Publication number Publication date
US20060117063A1 (en) 2006-06-01
US7599907B2 (en) 2009-10-06

Similar Documents

Publication Publication Date Title
US20090171957A1 (en) Method and system of applying policy on screened files
KR101201118B1 (en) System and method of aggregating the knowledge base of antivirus software applications
US9038168B2 (en) Controlling resource access based on resource properties
US8281410B1 (en) Methods and systems for providing resource-access information
US8127133B2 (en) Labeling of data objects to apply and enforce policies
US7779265B2 (en) Access control list inheritance thru object(s)
US8117441B2 (en) Integrating security protection tools with computer device integrity and privacy policy
US7765400B2 (en) Aggregation of the knowledge base of antivirus software
US20160292445A1 (en) Context-based data classification
US20150047025A1 (en) Methods and systems for controlling access to resources and privileges per process
US20090222879A1 (en) Super policy in information protection systems
US20060101282A1 (en) System and method of aggregating the knowledge base of antivirus software applications
US9064119B2 (en) Information scanning across multiple devices
US7150018B2 (en) Method and system for deterministic ordering of software modules
JP2006525562A (en) Managed distribution of digital assets
JP2011526387A (en) Granting least privilege access for computing processes
US20070079364A1 (en) Directory-secured packages for authentication of software installation
US8135762B2 (en) System and method for determining true computer file type identity
Lemmou et al. A behavioural in‐depth analysis of ransomware infection
US20050182965A1 (en) Proxy permissions controlling access to computer resources
Ochilov Creating Secure File Systems in Open-Source Operating Systems
RU2584505C2 (en) System and method for filtering files to control applications
US7664752B2 (en) Authorization over a distributed and partitioned management system
Jerbi et al. An access control reference architecture
Hauser A basis for intrusion detection in distributed systems using kernel-level data tainting.

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION

AS Assignment

Owner name: MICROSOFT TECHNOLOGY LICENSING, LLC, WASHINGTON

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MICROSOFT CORPORATION;REEL/FRAME:034766/0001

Effective date: 20141014