...
The only reserved rule left is TMP31-C, which is awaiting decision from RCS. -pdc 5/1
TMP33-C and MEM36-C are marked for deletion... so they would become "reserved" once deleted... - alevx 5/6
...
| Wiki Markup |
|---|
A bunch of pages have screwed-up formatting, where some character, such as \[ (open-brace) is backslashed. This defeats its purposes of indicating a link. I've also seen this on open-braces. Someone needs to traverse the rules and clean these up. \-5/1 started cjohns (got as far as 06 Arrays) |
...
- integrate the concerns of TMP33-C. Temporary files must be removed before the program exits into TMP30-C. Temporary files must be created with unique and unpredictable file names by reiterating the need to clean up after temp files
- done, but someone else should make sure they like the way I addressed this before deleting TMP33
- then delete it as it is way redundant
- Be clear that there is no good solution for cleaning up after abnormal termination other than using a /tmp directory, but then that violates TMP00-A. Do not create temporary files in shared directories
- There is a trade-off here... use a shared directory and worry more about security, or use a private directory and worry about cleanup
- We need more work on TMP00-A. Do not create temporary files in shared directories
- Explain all the downsides to
chroot jail(copying over DLLs, portability, how it is a HUGE mess, etc) - Demonstrate a good to way to create a private directory that is not as hard as a jail
- Resolve the contradictions inherent between this rec and TMP33.. we say use
}}{{{}{}{}{}{}{}{}{}tempnamin one, but say not to use}}{{{}{}{}{}{}{}{}{}tmpnamin another, moreover, our rule to use}}{{{}{}{}{}{}{}{}{}mkstempor}}{{{}{}{}{}{}{}{}{}tmpfile_scontradicts TMP00 since neither guarantee a non-shared directory- use
mkstempand remember to clean up, then everyone is happy
- use
- Explain all the downsides to
...