Tracking and managing failure-susceptible operations in a computer system

Information

  • Patent Grant
  • 6205561
  • Patent Number
    6,205,561
  • Date Filed
    Thursday, December 11, 1997
    26 years ago
  • Date Issued
    Tuesday, March 20, 2001
    23 years ago
Abstract
The present invention is directed to tracking and managing failure-susceptible operations in a computer system. In a preferred embodiment, the performance of failure-susceptible operations is monitored, such that, when execution of the operating system is interrupted then restarted, it can be determined which failure-susceptible operation was in progress at the point at which execution of the operating system was interrupted. In one embodiment, this monitoring is performed using a stack data structure. When a failure-susceptible operation is invoked, an entry is pushed on the stack identifying the invoked failure-susceptible operation. On the other hand, when a failure-susceptible operation is completed, the entry identifying the completed failure-susceptible operation is popped off the stack. The failure-susceptible operation that was in progress at the point at which execution was last interrupted is then determined to be the failure-susceptible operation identified by the top entry on the stack when execution resumes. In a further preferred embodiment, subsequent attempted invocation of the operation determined to be in progress when execution was interrupted is inhibited.
Description




TECHNICAL FIELD




The invention relates generally to the field of error management in a computer program.




BACKGROUND OF THE INVENTION




The term “booting” refers to a process of loading and executing programs, principally those making up an operating system, in order to prepare a computer system for use by a user. The booting process is said to be made up of a number of operations. As computers become more powerful and capacious and as operating systems continue to evolve, the number of operations invoked during the booting process increases. Additional operations whose invocation succeeds typically add useful functionality to the operating system by, for example, automatically identifying, configuring, and initializing hardware devices installed in the computer system. On the other hand, a significant number of these operations are susceptible to failure when invoked on computer systems having particular hardware or software configurations. When these operations fail during the booting process, they often prevent the booting process from completing, thus making the computer system unusable by the user.




Conventionally, when one of these operations fails during the booting process, a knowledgeable user may be able to diagnose and resolve the problem by identifying, via trial and error, the operation that is failing, then manually modifying the sequence of operations invoked during the booting process to exclude the identified operation. Where the user is capable of diagnosing and resolving the problem alone, the process is arduous and time-consuming. On the other hand, when the user is incapable of diagnosing and resolving the problem alone, the computer system generally remains unusable until the user can obtain assistance.




Accordingly, an automated system for identifying operations that fail during the booting process and reversibly preventing their invocation during future iterations of the booting process would have significant utility.




SUMMARY OF THE INVENTION




The present invention is directed to tracking and managing operations, such as device initialization operations, that may fail on some computer systems. In accordance with a preferred embodiment of the invention, an operation invocation management software facility (“the facility”) prevents the invocation of operations that have been determined to fail on the current computer system. When operations that have neither been determined to fail on the current computer system nor been determined not to fail on the current computer system are attempted, they are placed on a stack of outstanding attempted operations. When such operations complete successfully, the facility removes them from the stack and marks them as having been determined not to fail on the current computer system. When the execution of the operating system concludes, e.g., when the operating system crashes, if one or more operations are still on the stack, these operations have not completed successfully. In such cases, the operation on the top of the stack, i.e., the most recently begun operation, is marked as having been determined to fail on the current computer system.




During each iteration of the booting process, the operation on the top of the stack is marked as having been determined to fail on the current computer system. The stack is then cleared and used to monitor the operations attempted during the current boot process.




The facility preferably includes a user interface for displaying to the user the set of operations that have failed since the last successful boot. This user interface may preferably be disabled for unsophisticated users. Also, in one embodiment, for certain failed operations, special code specific to the operations can be executed to either (1) describe the failure or (2) remediate the failure. A second user interface preferably allows the user to review a log of operation failures noted by the invention.




The facility preferably uses universally unique identifiers (UUIDs), such as globally unique identifiers (GUIDs), to uniquely identify different operations, so that software developers who do not communicate can add new operations to the set of operations without creating an operation identifier conflict. A UUID contains both a time identifier and a machine identifier. The time identifier ensures that two UUIDs produced on the same machine are unique because they are produced at different times. The machine identifier, on the other hand, ensures that two UUIDs produced at the same time are unique because they were produced on different machines. Operation attempts, or “operation instances,” are further identified by additional instance data that distinguish separate attempts of the same operation.




The facility thus is able to identify the operations that typically fail on the current computer system and to protect the computer system from possible future failure by preventing the invocation of such operations.











BRIEF DESCRIPTION OF THE DRAWINGS





FIG. 1

is a high-level block diagram of the general-purpose computer system upon which the facility preferably executes.





FIG. 2

is a flow diagram showing a program code fragment for invoking a failure-susceptible operation.





FIG. 3

is a flow diagram showing the steps preferably performed by the facility as part of the StartOperation function that is called before invoking a failure-susceptible operation.





FIG. 4

is a data structure diagram showing the operation instance status list used by the facility.





FIG. 5

is a data structure diagram showing initial sample contents of the stack reflecting the state of failure-susceptible operations in progress in the computer system.





FIG. 6

is a data structure diagram showing sample contents of the stack after the addition of a new entry.





FIG. 7

is a flow diagram showing the steps preferably performed by the facility as part of the FinishOperation function that is called after a failure-susceptible operation has completed.





FIG. 8

is a data structure diagram showing the contents of the operation instance status list after an operation instance has completed successfully.





FIG. 9

is a flow diagram showing the steps preferably performed by the facility at the beginning of the execution of the program to determine whether the last execution of the program terminated abnormally.





FIG. 10

is a data structure diagram showing the operation instance status list after the addition of an operation instance contained in a file.





FIG. 11

is a flow diagram showing the steps preferably performed by the facility at the conclusion of the program startup process.





FIG. 12

is a display diagram showing the window preferably displayed by the facility to display a list of operation instances failed since the last time that the program startup process was successfully completed.





FIG. 13

is a data structure diagram showing an operation information list that contains a textual description of each operation.





FIG. 14

is a display diagram showing a window displayed in one embodiment of the facility that prompts the user to determine whether operation instances failed since the last time that the program startup process was successfully completed should be repeated without listing such operations.





FIG. 15

is a data structure diagram showing the change, in the operation instance status list, of the status of operation instances that failed since the last time that the program startup process was successfully completed to “1” indicating that they have failed.





FIG. 16

is a data structure diagram showing the removal from the operation instance status list of operation instances that failed since the last time that the program startup process was successfully completed.





FIG. 17

is a flow diagram showing steps of the facility preferably invocable by the user to display and modify the contents of the list of prohibited operation instances.





FIG. 18

is a display diagram showing the window displayed by the facility in order to display and allow the user to adjust the list of prohibited operation instances.





FIG. 19

is a data structure diagram showing the contents of the operation instance status list after an operation instance has been removed by the user.





FIG. 20

is a display diagram showing a window displayed by the facility in order to display the details of a selected prohibited operation instance.











DETAILED DESCRIPTION OF THE INVENTION




The present invention is directed to tracking and managing operations, such as device initialization operations, that may fail on some computer systems. In accordance with a preferred embodiment of the invention, an operation invocation management software facility (“the facility”) prevents the invocation of operations that have been determined to fail on the current computer system. When operations that have neither been determined to fail on the current computer system nor been determined not to fail on the current computer system are attempted, they are placed on a stack of outstanding attempted operations. When such operations complete successfully, the facility removes them from the stack and marks them as having been determined not to fail on the current computer system. When the execution of the operating system concludes, e.g., when the operating system crashes, if one or more operations are still on the stack, these operations have not completed successfully. In such cases, the operation on the top of the stack, i.e., the most recently begun operation, is marked as having been determined to fail on the current computer system.




During each iteration of the booting process, the operation on the top of the stack is marked as having been determined to fail on the current computer system. The stack is then cleared and used to monitor the operations attempted during the current boot process. In certain embodiments of the invention, the facility tracks operation instances rather than merely operations. An operation instance is defined by an operation identifier that identifies a general operation, such as starting a device, coupled with instance data describing details of a particular invocation of the operation, such as the identity of a device to be started using the device starting operation.




The facility preferably includes a user interface for displaying to the user the set of operations that have failed since the last successful boot. This user interface may preferably be disabled for unsophisticated users. Also, in one embodiment, for certain failed operations, special code specific to the operations can be executed to either (1) describe the failure or (2) remediate the failure. A second user interface preferably allows the user to review a log of operation failures noted by the invention.




The facility preferably uses universally unique identifiers (UUIDs), such as globally unique identifiers (GUIDs), to uniquely identify different operations, so that software developers can add new operations to the set of operations without creating an operation identifier conflict. A UUID contains both a time identifier and a machine identifier. The time identifier ensures that two UUIDs produced on the same machine are unique because they are produced at different times. The machine identifier, on the other hand, ensures that two UUIDs produced at the same time are unique because they were produced on different machines. Operation attempts, or “operation instances,” are further identified by additional instance data that distinguish separate attempts of the same operation.




The facility thus is able to identify the operations that typically fail on the current computer system and to protect the computer system from possible future failure by preventing the invocation of such operations.





FIG. 1

is a high-level block diagram of the general-purpose computer system upon which the facility preferably executes. The computer system


100


contains a central processing unit (CPU)


110


, input/output devices


120


, and a computer memory (memory)


130


. Among the input/output devices is a storage device


121


, such as a hard disk drive; a computer-readable media drive


122


, which can be used to install software products, including the facility, which are provided on a computer-readable medium, such as a CD-ROM; a network connection


123


, through which the computer system


100


may communicate with other connected computer systems (not shown); a modem


124


; a display adapter


125


; and an audio board


126


. The memory


130


preferably contains the facility


131


; a stack


132


of the pending operation instances; a status list


133


indicating the status of encountered operation instances; and an operation information list


134


containing information, such as a textual description, for known operations. The storage device


121


may contain a file for persistently storing the contents of the stack, or a portion thereof. While the facility is preferably implemented on a computer system configured as described above, those skilled in the art will recognize that it may also be implemented on computer systems having different configurations.




In order to identify failure-susceptible operations to the facility, programs, such as the operating system, that invoke them call a pair of functions provided by the facility. Programs preferably call this pair of functions to identify the failure-susceptible operations that they perform at any point during their execution. For example, operating systems preferably call the pair of functions when they invoke failure-susceptible operations during the booting process and when they invoke failure-susceptible operations subsequent to the booting process.





FIG. 2

is a flow diagram showing a program code fragment for invoking a failure-susceptible operation. The steps shown in

FIG. 2

may be preceded or succeeded by additional steps of the program, such as an operating system, in which it is included. In step


201


, the program calls a StartOperation function of the facility. As part of this call, the program passes an operation identifier parameter and an instance data parameter. The operation identifier parameter uniquely identifies the failure-susceptible operation that is to be performed. For example, before attempting a “start device” operation, the program would pass an operation identifier that uniquely identifies start device operations. In a preferred embodiment, a universally unique identifier (“UUID”) is used as the operation identifier. Using a UUID as the operation identifier allows programmers that have no way to coordinate their efforts to select operation identifiers that are nonetheless unique. The instance data parameter passed by the program allows the program to identify one of two or more possible different purposes for which the fail-susceptible operation may be invoked. For instance, a start device operation may be invoked on a particular audio card or on a particular modem, each with its own instance data. The steps performed by the facility as part of the StartOperation function are discussed in detail below in conjunction with FIG.


3


. Briefly, if the combination of operation identifier and instance data passed to the StartOperation function has failed previously and is on a list of operation instances that is not to be invoked, then the StartOperation function returns failure. Otherwise, the StartOperation function pushes the operation instance on the stack and returns success.




In step


202


, if the StartOperation function returns failure, then the program proceeds without performing the failure-susceptible operation, else the program continues in step


203


. In step


203


, the program performs the failure-susceptible operation. Such performance may either succeed or fail. If performance of the failure-susceptible operation fails, then the program ceases execution in step


203


. On the other hand, if the failure-susceptible operation succeeds, execution of the program continues in step


204


. In step


204


, the facility calls a FinishOperation function of the facility to inform the facility that the operation succeeded. The steps performed by the facility in the FinishOperation function are discussed below in conjunction with FIG.


7


. The FinishOperation function takes as its parameters the same operation identifier and instance data as does the StartOperation function. After step


204


, the program continues to perform succeeding steps.





FIG. 3

is a flow diagram showing the steps preferably performed by the facility as part of the StartOperation function that is called before invoking a failure-susceptible operation. The StartOperation function takes as its parameters an operation identifier uniquely identifying the operation to be invoked and instance data identifying one of a number of possible purposes for which the operation may be invoked. These instance data are preferably optional and omitted where the operation in question is always performed for the same purpose. The operation identifier and instance data are said to together make up an operation instance. In step


301


, if this operation instance has failed before, then the facility returns failure in order to prevent the calling program from invoking the operation, else the facility continues in step


302


. The facility determines whether the operation instance has failed before by consulting an operation instance status list in which the facility maintains the status of operation instances that have been invoked.

FIG. 4

is a data structure diagram showing the operation instance status list used by the facility. The operation instance status list


400


is composed of rows such as rows


401


and


402


, each containing the operation identifier and instance data of an operation instance that has been invoked. For example, row


401


contains an operation identifier for the start device operation and instance data indicating that the operation instance invokes the start device operation on a “Creative Labs Sound Blaster


16


” audio card device. It should be noted that, for the sake of intelligibility, the label “START_DEVICE” is shown in place of the actual UUID for the start device operation that is preferably used by the facility. Each row further contains a status code indicating the status of the operation instance represented by the row. A status of “0”, as shown in row


402


, indicates that the operation instance has succeeded. A status of “1”, as is shown in row


401


, indicates that the operation instance has failed. As is discussed below, a status of “2” indicates that the operation instance has failed since the last time that the operating system booting process successfully completed. Operation instances not having a row in the operation instance status list generally have not been invoked and have an undefined status. Where the operation instance identified in the call to the StartOperation function appears in the operation instance status list with a status other than “0”, then the facility returns failure, else the facility continues in step


302


to allow the operation instance to be invoked. For example, if the StartOperation function is called with the operation identifier CALL_PCI_BIOS and instance data “read at bus


2


slot


5


function


3


offset


21


”, where the operation instance status list has the state shown in

FIG. 4

, the facility continues at step


302


.




In step


302


, the facility adds an entry to the top of the stack that reflects the state of pending failure-susceptible operations in the computer system.

FIG. 5

is a data structure diagram showing sample contents of the stack reflecting the state of failure-susceptible operations in progress in the computer system. The stack


500


comprises a number of rows, such as rows


501


and


502


. Each row identifies a failure-susceptible operation for which the StartOperation function has been called but the FinishOperation function has not. Each row contains the operation identifier and instance data passed to the StartOperation function for the operation instance, as well as a flag called the “write to file” flag, discussed further below. The order of the operation instances on the stack is significant, in that it is generally expected that operation instances will be added to and removed from the stack in a last in-first out manner. Thus, row


502


is at the top of the stack, was added to the stack most recently, and is expected to be removed next.

FIG. 6

is a data structure diagram showing sample contents of the stack after the addition of a new entry in step


302


. It can be seen that row


603


has been added at the top of the stack to identify the operation instance identified in the current call to the StartOperation function.




In step


303


, the facility determines whether to set the “write to file” flag for the operation instance. If the current operation instance has a status of “0” in the operation instance status list indicating that the operation instance has succeeded when earlier invoked, then the facility predicts that this operation instance will not fail when invoked this time and returns success without setting the “write to file” flag of the new entry or incurring the cost of writing the new entry persistently to a file. For example, it can be seen that the operation instance having operation identifier CALL_PCI_BIOS and instance data “read at bus


2


slot


5


function


3


offset


21


” does not have a row in the operation instance status list shown in FIG.


4


and therefore does not have a status of “0”. For this operation instance, therefore, the facility continues to step


304


.




If the operation instance does not have a status of “0” indicating that it has succeeded, then the facility continues in step


304


to set the “write to file” flag of the new stack entry. The contents of this entry will be persistently written to a file each time this entry is the highest entry on the stack with its flag set. It can be seen in

FIG. 6

that the “write to file” flag in stack entry


603


for the operation instance having operation identifier CALL_PCI_BIOS and instance data “read at bus


2


slot


5


function


3


offset


21


” is set to true. In step


305


, the facility writes the contents of the new stack entry persistently to the file. If the operation of the program stops while the contents of this entry are written to the file, the facility will later conclude that the failure of the program was the result of the failure of this operation instance and will add it to the list of failed operation instances so that its invocation is prevented in the future. After step


305


, the facility returns success.





FIG. 7

is a flow diagram showing the steps preferably performed by the facility as part of the FinishOperation function that is called after a failure-susceptible operation has completed. The FinishOperation function takes as its parameters an operation identifier and instance data identifying the operation instance that has successfully concluded. In step


701


, the facility removes from the stack the entry nearest the top of the stack having a matching operation identifier and instance data. For example, if the stack is in the state shown in FIG.


6


and the FinishOperation function is called with the operation identifier CALL_PCI_BIOS and instance data “read at bus


2


slot


5


function


3


offset


21


,” then the facility removes entry


603


from the stack in step


701


, thus changing the state of the stack back to that shown in FIG.


5


.




In step


702


, if the new state of the stack contains an entry whose “write to file” flag is set, then the facility continues in step


703


, else the facility continues in step


704


. In step


703


, the facility writes the entry nearest the top of the stack having its “write to file” flag set persistently to the file. After step


703


, the facility continues in step


705


. If the execution of the program ceases while the file contains this operation instance, the facility will determine that the failure of the program resulted from the failure of this operation instance. In step


704


, if the stack does not contain any entries having a set “write to file” flag, then the facility clears the file so that it does not contain any operation instances. In step


705


, the facility adds the operation instance to the operation instance status list if the operation instance status list does not already contain it. For example, if the state of the list of operation instances that have succeeded is as shown in

FIG. 6

, a row is added to the operation instance status list for the current operation instance as shown in FIG.


8


.

FIG. 8

is a data structure diagram showing the contents of the operation instance status list after an operation instance has completed successfully. It can be seen that row


803


has been added to the list


800


. In step


706


, the facility sets the status of the current operation instance to “0” in the operation instance status list to indicate that the operation instance has succeeded. It can be seen that new row


803


added to the operation instance status list contains the status of “0” for the current operation instance. When the StartOperation function is called for this operation instance in the future, its “write to file” flag will not be set, so that the cost of writing its stack entry persistently to the file is not incurred. After step


706


, the FinishOperation function returns.




As discussed above, at the beginning of the execution of the program, such as the beginning of the booting process of an operating system, the facility determines whether the program terminated abnormally during its last execution.

FIG. 9

is a flow diagram showing the steps preferably performed by the facility at the beginning of the execution of the program to determine whether the last execution of the program terminated abnormally. These steps are preferably performed as early as possible in the execution of the program, such as at the beginning of the booting process. In step


901


, if the file contains the information from a stack entry identifying an operation instance, the facility continues in step


902


, else the steps conclude. In step


902


, the facility adds a row to the operation instance status list identifying the operation instance stored in the file if it does not already contain such a row.

FIG. 10

is a data structure diagram showing the operation instance status list after the addition of an operation instance contained by the file. It can be seen by comparing

FIG. 10

to

FIG. 8

that row


1004


, which identifies the operation instance identified in the file, has been added to the operation instance status list


1000


. In step


903


, the facility sets the status of the operation instance from the file to “2” in the operation instance status list to indicate that the operation instance failed since the last time that the program startup process was successfully completed. It can be seen in

FIG. 10

that the facility has accordingly set the status of new row


1004


to “2.” In step


904


, the facility clears the file, and these steps conclude. At the conclusion of the steps shown in

FIG. 9

, the program continues its startup operations and may call the StartOperation function to attempt additional failure-susceptible operations. If the program again attempts to call the StartOperation function for the operation instance from the file, the StartOperation function will not permit the program to attempt this operation instance.





FIG. 11

is a flow diagram showing the steps preferably performed by the facility at the conclusion of the program startup process. These steps process the contents of the list of operation instances failed since the last time that the program startup process was successfully completed. In step


1101


, the facility displays to the user a list of operation instances failed since the last time that the program startup process was successfully completed. Step


1101


preferably involves displaying a textual description of each operation instance having a status of “2” in the operation instance status list, such as


1004


shown in FIG.


10


. These operation instances include, at most, one successful operation instance for each failure of the program startup process since the last completion of the program startup process.

FIG. 12

is a display diagram showing the window preferably displayed by the facility to display a list of operation instances failed since the last time that the program startup process was successfully completed. The window


1200


includes a list


1210


of operation instances failed since the last time that the program startup process was successfully completed. This list includes textual descriptions of these operation instances, such as textual description


1211


. The textual descriptions shown in list


1210


are preferably stored for each operation or operation instance in an operation information list.

FIG. 13

is a data structure diagram showing an operation information list that contains a textual description of each operation. The operation information list


1300


contains rows, such as rows


1301


-


1303


, that each contain an operation identifier, a textual description for the operation identifier, and, optionally, a reference to a custom routine for displaying information about and/or remediating failures of the operation. In a further preferred embodiment, the rows of the operation information list


1300


are further differentiated by the possible instance data values for each operation (not shown).




In step


1102


, the facility prompts the user to determine whether the operations failed since the last time that the program startup process was successfully completed should be repeated or prohibited. In response to step


1102


, the user may press button


1221


in order to prohibit these operations or press button


1222


to repeat these operations. As an alternative to user interface steps


1101


and


1102


, the facility may initially display a window that prompts the user to determine whether operations failed since the last time that the program startup process was successfully completed should be repeated without displaying a list of such operations.

FIG. 14

is a display diagram showing a window displayed in one embodiment of the facility that prompts the user to decide whether operation instances failed since the last time that the program startup process was successfully completed should be repeated without listing such operations. The window


1400


contains a button


1421


that the user may select to prohibit operations failed since the last time that the program startup process was successfully completed. The user may instead press button


1422


to repeat operations failed since the last time that the program startup process was successfully completed. The user may also press button


1430


in order to display window


1200


shown in

FIG. 12

, which lists the operations failed since the last time that the program startup process was successfully completed.




In step


1103


, if the user selects button


1222


or


1422


to repeat the failed operation, then the facility continues at step


1105


, else the facility continues in step


1104


. In step


1104


, the facility changes the status of operation instances in the operation instance status list having a status of “2,” indicating that the operation instance failed since the last time that the program startup process was successfully completed, to a status of “1,” indicating that the operation instances have failed. As a result, the facility will prohibit the invocation of these operation instances in the future.

FIG. 15

is a data structure diagram showing the change, in the operation instance status list, of the status of operation instances that failed since the last time that the program startup process was successfully completed to “1” indicating that they have failed. It can be seen by comparing

FIG. 15

to

FIG. 10

that the status in row


1004


in

FIG. 10

for the post ROM operation instance that failed since the last time that the program startup process was successfully completed has been changed to a “1” in row


1504


in FIG.


15


. With a status of “1,” the StartOperation function will not permit this operation instance to be invoked in the future. After step


1104


, these steps conclude.




In step


1105


, as the user has determined that the operation instances failed since the last time that the program startup process was successfully completed should be repeated, the facility removes any entries in the operation instance status list having a status of “2.”

FIG. 16

is a data structure diagram showing the removal from the operation instance status list of operation instances that failed since the last time that the program startup process was successfully completed. It can be seen by comparing

FIG. 16

to

FIG. 10

that the facility has removed row


1004


in

FIG. 10

from the operation instance status list shown in FIG.


16


. As a result, the StartOperation function will permit this operation instance to be invoked again in the future. In step


1106


, the facility restarts the program in order to repeat the operation instances that failed since the last time that the program startup process was successfully completed. In one preferred embodiment, step


1106


is omitted so that the operation instances failed since the last time that the program startup process was successfully completed are not repeated until the next time that the program is restarted for another purpose. After step


1106


, these steps conclude.





FIG. 17

is a flow diagram showing steps of the facility preferably invocable by the user to display and modify the contents of the list of prohibited operation instances. In step


1701


, the facility displays a list of failed operation instances by looking up their textual descriptions in the operation information list for operation instances in the operation instance status list having a status of “1” and appending the instance data of these operation instances. In step


1702


, the facility prompts the user to select one or more of the failed operations to permit to be invoked in the future. In step


1703


, if the user selected at least one failed operation in step


1702


, then the facility continues in step


1704


, else these steps conclude. In step


1704


, the facility removes from the operation instance status list any operation instances selected by the user. As a result, the StartOperation function will again allow the selected operation instances to be invoked. In step


1705


, the facility displays a prompt to restart the program. Where the program is an operating system, this causes the operating system to be rebooted. After step


1705


, these steps conclude.





FIG. 18

is a display diagram showing the window displayed by the facility in order to display and allow the user to adjust the list of prohibited operation instances. The window


1800


contains a list of prohibited operation instances


1810


. The list contains textual descriptions of the operations on the prohibited list of operation instances, such as textual descriptions


1811


and


1812


. The user may select any of the textual descriptions of prohibited operation instances, then press button


1841


in order to remove the selected operations from the operation instance status list. Once removed, these operation instances will again be permitted by the StartOperation function. The user may also press button


1842


in order to leave the list of prohibited operation instances intact.

FIG. 19

is a data structure diagram showing the contents of the operation instance status list after an operation instance has been removed by the user. It can be seen by comparing

FIG. 19

to

FIG. 15

that, in accordance with the user's selection of the textual description


1811


for the starting device operation instance, the facility has deleted row


1501


for the starting device operation instance shown in

FIG. 15

from the operation instance status list shown in FIG.


19


. As a result, the StartOperation function will permit this start device operation instance to be invoked again in the future.




When presented with window


1800


, the user may further select one of the textual descriptions and press button


1830


in order to display details about the operation.

FIG. 20

is a display diagram showing a window displayed by the facility in order to display the details of a selected prohibited operation instance. Such a window may generally be displayed for any operation on the failed operations list. The window


2000


contains the textual description of the operation


2011


, reference data


2051


for the operation instance, and a suggestion


2052


for remediating the failure of this operation instance. The user may press button


2053


to return to window


1800


shown in FIG.


18


. The facility may preferably be customized to display additional information about certain operations or take automated steps to remediate the failure of the operation or operation instance using a custom routine referenced in the operation information list


1300


shown in

FIG. 13

for the operation or operation instance in question.




To facilitate the description of the invention, the operation of the facility has been described with respect to a simple operation instance status list. While the facility may indeed be implemented using such a list, one embodiment of the invention stores the information contained in the operation status list in a single central data structure for the computer system called the registry. The registry permits one or more values to be stored for each of a large number of keys. When used in conjunction with the registry, the facility preferably creates its own keys for each operation instance for which the StartOperation function is called. For the key created for a particular operation instance, the facility stores a value of “0” if the operation instance succeeded, a value of “1” if the operation instance failed, and a value of “2” if the operation instance failed since the last time that the program startup process was successfully completed. Other information stored by the facility, such as the information stored in the operation information list, may likewise be stored in the registry.




While this invention has been shown and described with reference to preferred embodiments, it will be understood by those skilled in the art that various changes or modifications in form and detail may be made without departing from the scope of the invention. For example, while the facility was originally designed to manage the invocation of failure-susceptible operations during the booting process of an operating system, those skilled in the art will recognize that it may be straightforwardly adapted to error-susceptible operations performed by any computer program. Further, the data described herein as being stored in lists and stacks may instead be maintained in various other forms.



Claims
  • 1. A method in a computer system for monitoring and managing the invocation of failure-susceptible operations during the booting process of an operating system, the method using a stack of entries each identifying an operation in progress, the stack's topmost element being maintained persistently, the method comprising the steps of, until the completion of the booting process:at the beginning of the booting process, if the stack is not empty: determining that the execution of the operating system terminated prematurely as the result of the failure of the operation identified by the topmost stack entry, and indicating that the operation identified by the topmost stack entry is prohibited; before performing a failure-susceptible operation: if the operation is indicated to be prohibited, prohibiting the performance of the operation, and if the operation is not indicated to be prohibited, adding to the top of the stack an entry identifying the operation; after completing a failure-susceptible operation, removing from the stack the entry identifying the operation; and restarting the booting process after the operating system terminates prematurely during the booting process.
  • 2. The method of claim 1 wherein the restarting step is initiated under the control of the operating system.
  • 3. The method of claim 1 wherein the restarting step is initiated under the control of a user.
  • 4. The method of claim 1 wherein only the topmost element of the stack is maintained persistently.
  • 5. The method of claim 1 wherein at least a portion of the failure-susceptible operations that are monitored and whose invocation is managed by the method are device initialization operations.
  • 6. The method of claim 1, further comprising the step of using the indications of prohibited operations during subsequent iterations of the booting process to prohibit the invocation of operations indicated to be prohibited.
  • 7. The method of claim 6, further comprising the step of providing a user interface for indicating that a selected operation is not prohibited so that invocation of the selected invocation is again permitted.
  • 8. The method of claim 1, further comprising the steps of, after the conclusion of the booting process:before performing a failure-susceptible operation: if the operation is indicated to be prohibited, prohibiting the performance of the operation, and if the operation is not indicated to be prohibited, adding to the top of the stack an entry identifying the operation; and after completing a failure-susceptible operation, removing from the stack the entry identifying the operation.
  • 9. A method in a computer system for providing an operating system service for tracking the completion of failure-susceptible operations, the method comprising the steps of, under control of an operating system:during the execution of the operating system, monitoring the performance of failure-susceptible operations; and when the operating system is restarted, based upon the results of the monitoring step, determining which failure-susceptible operation was in progress at the point at which execution of the operating system was last interrupted.
  • 10. The method of claim 9, further comprising the step of inhibiting a subsequent attempted invocation of the operation determined to be in progress at a point at which execution of the operating system was interrupted.
  • 11. The method of claim 9 wherein the method uses a stack data structure, and wherein the monitoring step includes the steps of:when a failure-susceptible operation is invoked, pushing on the stack an entry identifying the invoked failure-susceptible operation; and when a failure-susceptible operation is completed, popping off of the stack the entry identifying the invoked failure-susceptible operation, and wherein the determining step determines that the failure-susceptible operation identified by the top entry on the stack when the operating system is restarted was in progress at the point at which execution of the operating system was last interrupted.
  • 12. The method of claim 9 wherein each operation is identified using a unique identifier to facilitate the differentiation of operations during the monitoring step.
  • 13. The method of claim 12 wherein the identifiers used to identify each operation are universally unique identifiers each containing a time identifier and a computer system identifier.
  • 14. The method of claim 12 wherein individual invocations of operations are identified using instance data to facilitate the differentiation of different invocations of the same operation during the monitoring step.
  • 15. The method of claim 12, further comprising the step of, in response to the determining step invoking code relating to the determined operation on the basis of the unique identifier for the determined operation.
  • 16. The method of claim 15 wherein the invoking step invokes code for describing the determined operation.
  • 17. The method of claim 15 wherein the invoking step invokes code for remediating the failure of the determined operation.
  • 18. A computer system for providing an operating system service for tracking the completion and managing the invocation of failure-susceptible operations, comprising:an operation completion monitor for monitoring the performance of failure-susceptible operations during the execution of the operating system; an operation identification subsystem for determining, when the operating system is restarted, based upon the output of the operation completion monitor, which failure-susceptible operation was in progress at the point at which execution of the operating system was last interrupted; and an operation inhibitor for inhibiting a subsequent attempted invocation of the operation determined by the operation identification subsystem to be in progress at a point at which execution of the operating system was interrupted.
  • 19. A computer-readable medium whose contents cause a computer system to provide an operating system service for tracking the completion and managing the invocation of failure-susceptible operations by performing the steps of:during the execution of the operating system, monitoring the performance of failure-susceptible operations; when the operating system is restarted, based upon the results of the monitoring step, determining which failure-susceptible operation was in progress at the point at which execution of the operating system was last interrupted; and inhibiting a subsequent attempted invocation of the operation determined to be in progress at the point at which execution of the operating system was interrupted.
  • 20. The computer-readable medium of claim 19 wherein the contents of the computer-readable medium utilize a stack and cause the computer system to further perform the steps of:when a failure-susceptible operation is invoked, pushing on the stack an entry identifying the invoked failure-susceptible operation; and when a failure-susceptible operation is completed, popping off of the stack the entry identifying the invoked failure-susceptible operation, and wherein the determining step determines that the failure-susceptible operation identified by the top entry on the stack when the operating system is restarted was in progress at the point at which execution of the operating system was last interrupted.
  • 21. The computer-readable medium of claim 19 wherein the contents of the computer-readable medium cause the computer system to further perform the step of identifying each operation using a unique identifier to facilitate the differentiation of operations during the monitoring step.
  • 22. The computer-readable medium of claim 21 wherein the contents of the computer-readable medium cause the computer system to further perform the step of identifying individual invocations of operations using instance data to facilitate the differentiation of different invocations of the same operation during the monitoring step.
  • 23. The computer-readable medium of claim 21 wherein the contents of the computer-readable medium cause the computer system to further perform the step of, in response to the determining step invoking code relating to the determined operation on the basis of the unique identifier for the determined operation.
  • 24. A method in a computer system for identifying operations that fail during the process of booting the computer system, the method comprising the steps of, until the completion of the booting process:(a) at the beginning of the booting process, if a failure-susceptible operation is persistently identified as being in progress, identifying the failure-susceptible operation persistently identified as being in progress as failed since the last time that the operating system booting process successfully completed; (b) while a failure-susceptible operation is being performed as part of the booting process, persistently identifying the operation as being in progress; and (c) when the booting process is interrupted by the failure of an operation, repeating the booting process.
  • 25. The method of claim 24, further comprising the step of:(d) when the booting process is completed, automatically identifying the operations identified as failed since the last time that the operating system booting process successfully completed as failed to prohibit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed.
  • 26. The method of claim 24, further comprising the step of:(d) when the booting process is completed, displaying a textual description of each of the operations determined to have failed since the last time that the operating system booting process successfully completed.
  • 27. The method of claim 26, further comprising the steps of:(e) displaying a prompt to either prohibit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed or permit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed; (f) receiving user input to prohibit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed; and (g) in response to step (f), identifying the operations identified as failed since the last time that the operating system booting process successfully completed as failed to prohibit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed.
  • 28. The method of claim 27, further comprising the steps of:(h) receiving user input to bypass steps (d)-(g); and (i) in response to step (h), automatically identifying the operations identified as failed since the last time that the operating system booting process successfully completed as failed to prohibit the future invocation of the operations identified as failed since the last time that the operating system booting process successfully completed without performing steps (d)-(g).
  • 29. A computer memory containing a data structure for representing failure-susceptible operations attempted but not yet completed during the execution of a program, the data structure comprising a last-in-first-out stack of entries, each entry uniquely identifying a failure-susceptible operation that has been attempted but has not yet been completed,such that an entry identifying a newly-attempted failure-susceptible operation may be added to the stack of entries, and such that an entry identifying a newly-completed failure-susceptible operation may be removed from the stack of entries, and such that, if the stack is not empty of entries when the execution of the program concludes, the failure-susceptible operation identified by the entry on the top of the stack may be determined to have not completed successfully.
  • 30. The computer memory of claim 29 wherein the program during whose execution the data structure represents failure-susceptible operations attempted but not yet completed is an operating system.
  • 31. The computer memory of claim 29 wherein at least a portion of the failure-susceptible operations represented in the data structure are device initialization operations.
  • 32. The computer memory of claim 29 wherein the contained data structure further comprises a list of entries each uniquely identifying a failure-susceptible operation whose attempt is prohibited within the execution of the computer program,such that, after the execution of the program has concluded, an entry may be added to the list identifying the failure-susceptible operation identified by the entry on the top of the stack to prohibit future attempts of the failure-susceptible operation identified by the entry on the top of the stack within the execution of the computer program.
US Referenced Citations (4)
Number Name Date Kind
5627964 Reynolds et al. May 1997
5778369 Pascone et al. Jul 1998
5974546 Anderson Oct 1999
6029258 Ahmad Feb 2000
Non-Patent Literature Citations (4)
Entry
Robert Reinstein, et al.; Windows NT Troubleshooting & Configuring; Jul. 10, 1997; pp. 737-746.*
Jim Boyce; Inside Windows 98; May 13, 1998; Chapter 4.*
Scott Townsend, BIOS Boot Specification, Version 1.00, Phoenix Technologies Ltd, Irvine, CA, Oct. 11, 1995, pp. 1-42.
Compaq Computer Corporation, Intel Corporation, and Phoenix Technologies, Ltd., Extended System Configuration Data Specification, Version 1.02A, Phoenix Technologies, Ltd., Irvine, CA, May 31, 1994, pp. 1-34.