Unix system programming

1K 974 0
Unix system programming

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

rtergerghsetfdjkaehfjegkbgvraeuhtuigrtuahbfjkwef hwegjhwevbgfhaewerbfekjhaerhtuerbgjkvdbfvjkabfertkerht hfweweghuiwehrtfi rtergerghsetfdjkaehfjegkbgvraeuhtuigrtuahbfjkwef hwegjhwevbgfhaewerbfekjhaerhtuerbgjkvdbfvjkabfertkerht hfweweghuiwehrtfi rtergerghsetfdjkaehfjegkbgvraeuhtuigrtuahbfjkwef hwegjhwevbgfhaewerbfekjhaerhtuerbgjkvdbfvjkabfertkerht hfweweghuiwehrtfi rtergerghsetfdjkaehfjegkbgvraeuhtuigrtuahbfjkwef hwegjhwevbgfhaewerbfekjhaerhtuerbgjkvdbfvjkabfertkerht hfweweghuiwehrtfi

• Table of Contents Unix™ Systems Programming: Communication, Concurrency, and Threads By Kay A. Robbins, Steven Robbins Publisher: Prentice Hall PTR Pub Date: June 17, 2003 ISBN: 0-13-042411-0 Pages: 912 This completely updated classic (originally titled Practical UNIX Programming) demonstrates how to design complex software to get the most from the UNIX operating system. UNIX Systems Programming provides a clear and easy-to-understand introduction tothe essentials of UNIX programming. Starting with short code snippetsthat illustrate how to use system calls, Robbins and Robbins movequickly to hands-on projects that help readers expand their skill levels. This practical guide thoroughly explores communication, concurrency,and multithreading. Known for its comprehensive and lucid explanations of complicated topics such as signals and concurrency, the book features practical examples, exercises, reusable code, and simplified libraries for use in network communication applications. A self-contained reference that relies on the latest UNIX standards,UNIX Systems Programming provides thorough coverage of files, signals,semaphores, POSIX threads, and client-server communication. Thisedition features all-new chapters on the Web, UDP, and server performance. The sample material has been tested extensively in the classroom. • Table of Contents Unix™ Systems Programming: Communication, Concurrency, and Threads By Kay A. Robbins, Steven Robbins Publisher: Prentice Hall PTR Pub Date: June 17, 2003 ISBN: 0-13-042411-0 Pages: 912 Copyright About the Web Site Preface Acknowledgments Part I: Fundamentals Chapter 1. Technology's Impact on Programs Section 1.1. Terminology of Change Section 1.2. Time and Speed Section 1.3. Multiprogramming and Time Sharing Section 1.4. Concurrency at the Applications Level Section 1.5. Security and Fault Tolerance Section 1.6. Buffer Overflows for Breaking and Entering Section 1.7. UNIX Standards Section 1.8. Additional Reading Chapter 2. Programs, Processes and Threads Section 2.1. How a Program Becomes a Process Section 2.2. Threads and Thread of Execution Section 2.3. Layout of a Program Image Section 2.4. Library Function Calls Section 2.5. Function Return Values and Errors Section 2.6. Argument Arrays Section 2.7. Thread-Safe Functions Section 2.8. Use of Static Variables Section 2.9. Structure of Static Objects Section 2.10. Process Environment Section 2.11. Process Termination Section 2.12. Exercise: An env Utility Section 2.13. Exercise: Message Logging Section 2.14. Additional Reading Chapter 3. Processes in UNIX Section 3.1. Process Identification Section 3.2. Process State Section 3.3. UNIX Process Creation and fork Section 3.4. The wait Function Section 3.5. The exec Function Section 3.6. Background Processes and Daemons Section 3.7. Critical Sections Section 3.8. Exercise: Process Chains Section 3.9. Exercise: Process Fans Section 3.10. Additional Reading Chapter 4. UNIX I/O Section 4.1. Device Terminology Section 4.2. Reading and Writing Section 4.3. Opening and Closing Files Section 4.4. The select Function Section 4.5. The poll Function Section 4.6. File Representation Section 4.7. Filters and Redirection Section 4.8. File Control Section 4.9. Exercise: Atomic Logging Section 4.10. Exercise: A cat Utility Section 4.11. Additional Reading Chapter 5. Files and Directories Section 5.1. UNIX File System Navigation Section 5.2. Directory Access Section 5.3. UNIX File System Implementation Section 5.4. Hard Links and Symbolic Links Section 5.5. Exercise: The which Command Section 5.6. Exercise: Biffing Section 5.7. Exercise: News biff Section 5.8. Exercise: Traversing Directories Section 5.9. Additional Reading Chapter 6. UNIX Special Files Section 6.1. Pipes Section 6.2. Pipelines Section 6.3. FIFOs Section 6.4. Pipes and the Client-Server Model Section 6.5. Terminal Control Section 6.6. Audio Device Section 6.7. Exercise: Audio Section 6.8. Exercise: Barriers Section 6.9. Exercise: The stty Command Section 6.10. Exercise: Client-Server Revisited Section 6.11. Additional Reading Chapter 7. Project: The Token Ring Section 7.1. Ring Topology Section 7.2. Ring Formation Section 7.3. Ring Exploration Section 7.4. Simple Communication Section 7.5. Mutual Exclusion with Tokens Section 7.6. Mutual Exclusion by Voting Section 7.7. Leader Election on an Anonymous Ring Section 7.8. Token Ring for Communication Section 7.9. Pipelined Preprocessor Section 7.10. Parallel Ring Algorithms Section 7.11. Flexible Ring Section 7.12. Additional Reading Part II: Asynchronous Events Chapter 8. Signals Section 8.1. Basic Signal Concepts Section 8.2. Generating Signals Section 8.3. Manipulating Signal Masks and Signal Sets Section 8.4. Catching and Ignoring Signals—sigaction Section 8.5. Waiting for Signals—pause, sigsuspend and sigwait Section 8.6. Handling Signals: Errors and Async-signal Safety Section 8.7. Program Control with siglongjmp and sigsetjmp Section 8.8. Programming with Asynchronous I/O Section 8.9. Exercise: Dumping Statistics Section 8.10. Exercise: Spooling a Slow Device Section 8.11. Additional Reading Chapter 9. Times and Timers Section 9.1. POSIX Times Section 9.2. Sleep Functions Section 9.3. POSIX:XSI Interval Timers Section 9.4. Realtime Signals Section 9.5. POSIX:TMR Interval Timers Section 9.6. Timer Drift, Overruns and Absolute Time Section 9.7. Additional Reading Chapter 10. Project: Virtual Timers Section 10.1. Project Overview Section 10.2. Simple Timers Section 10.3. Setting One of Five Single Timers Section 10.4. Using Multiple Timers Section 10.5. A Robust Implementation of Multiple Timers Section 10.6. POSIX:TMR Timer Implementation Section 10.7. mycron, a Small Cron Facility Section 10.8. Additional Reading Chapter 11. Project: Cracking Shells Section 11.1. Building a Simple Shell Section 11.2. Redirection Section 11.3. Pipelines Section 11.4. Signal Handling in the Foreground Section 11.5. Process Groups, Sessions and Controlling Terminals Section 11.6. Background Processes in ush Section 11.7. Job Control Section 11.8. Job Control for ush Section 11.9. Additional Reading Part III: Concurrency Chapter 12. POSIX Threads Section 12.1. A Motivating Problem: Monitoring File Descriptors Section 12.2. Use of Threads to Monitor Multiple File Descriptors Section 12.3. Thread Management Section 12.4. Thread Safety Section 12.5. User Threads versus Kernel Threads Section 12.6. Thread Attributes Section 12.7. Exercise: Parallel File Copy Section 12.8. Additional Reading Chapter 13. Thread Synchronization Section 13.1. POSIX Synchronization Functions Section 13.2. Mutex Locks Section 13.3. At-Most-Once and At-Least-Once-Execution Section 13.4. Condition Variables Section 13.5. Signal Handling and Threads Section 13.6. Readers and Writers Section 13.7. A strerror_r Implementation Section 13.8. Deadlocks and Other Pesky Problems Section 13.9. Exercise: Multiple Barriers Section 13.10. Additional Reading Chapter 14. Critical Sections and Semaphores Section 14.1. Dealing with Critical Sections Section 14.2. Semaphores Section 14.3. POSIX:SEM Unnamed Semaphores Section 14.4. POSIX:SEM Semaphore Operations Section 14.5. POSIX:SEM Named Semaphores Section 14.6. Exercise: License Manager Section 14.7. Additional Reading Chapter 15. POSIX IPC Section 15.1. POSIX:XSI Interprocess Communication Section 15.2. POSIX:XSI Semaphore Sets Section 15.3. POSIX:XSI Shared Memory Section 15.4. POSIX:XSI Message Queues Section 15.5. Exercise: POSIX Unnamed Semaphores Section 15.6. Exercise: POSIX Named Semaphores Section 15.7. Exercise: Implementing Pipes with Shared Memory Section 15.8. Exercise: Implementing Pipes with Message Queues Section 15.9. Additional Reading Chapter 16. Project: Producer Consumer Synchronization Section 16.1. The Producer-Consumer Problem Section 16.2. Bounded Buffer Protected by Mutex Locks Section 16.3. Buffer Implementation with Semaphores Section 16.4. Introduction to a Simple Producer-Consumer Problem Section 16.5. Bounded Buffer Implementation Using Condition Variables Section 16.6. Buffers with Done Conditions Section 16.7. Parallel File Copy Section 16.8. Threaded Print Server Section 16.9. Additional Reading Chapter 17. Project: The Not Too Parallel Virtual Machine Section 17.1. PVM History, Terminology, and Architecture Section 17.2. The Not Too Parallel Virtual Machine Section 17.3. NTPVM Project Overview Section 17.4. I/O and Testing of Dispatcher Section 17.5. Single Task with No Input Section 17.6. Sequential Tasks Section 17.7. Concurrent Tasks Section 17.8. Packet Communication, Broadcast and Barriers Section 17.9. Termination and Signals Section 17.10. Ordered Message Delivery Section 17.11. Additional Reading Part IV: Communication Chapter 18. Connection-Oriented Communication Section 18.1. The Client-Server Model Section 18.2. Communication Channels Section 18.3. Connection-Oriented Server Strategies Section 18.4. Universal Internet Communication Interface (UICI) Section 18.5. UICI Implementations of Different Server Strategies Section 18.6. UICI Clients Section 18.7. Socket Implementation of UICI Section 18.8. Host Names and IP Addresses Section 18.9. Thread-Safe UICI Section 18.10. Exercise: Ping Server Section 18.11. Exercise: Transmission of Audio Section 18.12. Additional Reading Chapter 19. Project: WWW Redirection Section 19.1. The World Wide Web Section 19.2. Uniform Resource Locators (URLs) Section 19.3. HTTP Primer Section 19.4. Web Communication Patterns Section 19.5. Pass-through Monitoring of Single Connections Section 19.6. Tunnel Server Implementation Section 19.7. Server Driver for Testing Section 19.8. HTTP Header Parsing Section 19.9. Simple Proxy Server Section 19.10. Proxy Monitor Section 19.11. Proxy Cache Section 19.12. Gateways as Portals Section 19.13. Gateway for Load Balancing Section 19.14. Postmortem Section 19.15. Additional Reading Chapter 20. Connectionless Communication and Multicast Section 20.1. Introduction to Connectionless Communication Section 20.2. Simplified Interface for Connectionless Communication Section 20.3. Simple-Request Protocols Section 20.4. Request-Reply Protocols Section 20.5. Request-Reply with Timeouts and Retries Section 20.6. Request-Reply-Acknowledge Protocols Section 20.7. Implementation of UICI UDP Section 20.8. Comparison of UDP and TCP Section 20.9. Multicast Section 20.10. Exercise: UDP Port Server Section 20.11. Exercise: Stateless File Server Section 20.12. Additional Reading Chapter 21. Project: Internet Radio Section 21.1. Project Overview Section 21.2. Audio Device Simulation Section 21.3. UDP Implementation with One Program and One Receiver Section 21.4. UDP Implementation with Multiple Programs and Receivers Section 21.5. UDP Implementation of Radio Broadcasts Section 21.6. Multicast Implementation of Radio Broadcasts Section 21.7. TCP Implementation Differences Section 21.8. Receiving Streaming Audio Through a Browser Section 21.9. Additional Reading Chapter 22. Project: Server Performance Section 22.1. Server Performance Costs Section 22.2. Server Architectures Section 22.3. Project Overview Section 22.4. Single-Client Driver Section 22.5. Multiple-Client Driver Section 22.6. Thread-per-request and Process-per-request Implementations Section 22.7. Thread-worker-pool Strategy Section 22.8. Thread-worker Pool with Bounded Buffer Section 22.9. Process-worker Pool Section 22.10. Influence of Disk I/O Section 22.11. Performance Studies Section 22.12. Report Writing Section 22.13. Additional Reading Appendices Appendix A. UNIX Fundamentals Section A.1. Manual Pages Section A.2. Compilation Section A.3. Makefiles Section A.4. Debugging Aids Section A.5. Identifiers, Storage Classes and Linkage Classes Section A.6. Additional Reading Appendix B. Restart Library Appendix C. UICI Implementation Section C.1. Connection-Oriented UICI TCP Implementation Section C.2. Name Resolution Implementations Section C.3. Connectionless UICI UDP Implementation Appendix D. Logging Functions Section D.1. Local Atomic Logging Section D.2. Remote Logging Appendix E. POSIX Extensions Bibliography Copyright Robbins, Steven, 1947- UNIX systems programming: communication, concurrence, and threads / Steven Robbins, Kay Robbins p. cm. Previously published under the title: Practical UNIX Programming / Kay Robbins. Upper Saddle River, NJ: Prentice Hall, c1996. ISBN 0-13-0424110 1. UNIX (Computer file) 2. Operating systems (Computers) I. Robiins, Kay A. II. Robbins, Kay A. Practical UNIX programming. III. Title Production Supervisor: Wil Mara Acquisitions Editor: Greg Doench Cover Design: Nina Scuderi and Talar Boorujy Cover Design Director: Jerry Votta Editorial Assistant: Brandt Kenna Marketing Manager: Dan DePasquale Manufacturing Manager: Alexis Heydt-Long © 2003 Pearson Education, Inc. Publishing as Prentice Hall Professional Technical Reference Upper Saddle River, New Jersey 07458 Prentice Hall books are widely used by corporations and government agencies for training, marketing, and resale. Prentice Hall PTR offers excellent discounts on this book when ordered in quantity for bulk purchases or special sales. For more information, please contact: U.S. Corporate and Government Sales, 1-800-382-3419, corpsales@pearsontechgroup.com. For sales outside the U.S., please contact: International Sales, 1-317-581-3793, international@pearsontechgroup.com. [...]... or a disk access), the operating system saves all the information needed to resume that process where it left off and chooses another ready process to execute It is simple to see how multiprogramming might be implemented A resource request (such as read or write) results in an operating system request (i.e., a system call) A system call is a request to the operating system for service that causes the... operating system The operating system can then switch to another process Exercise 1.2 Explain how a disk I/O request might allow the operating system to run another process Answer: Most devices are handled by the operating system rather than by applications When an application executes a disk read, the call issues a request for the operating system to actually perform the operation The operating system. .. seconds 1.3 Multiprogramming and Time Sharing Observe from Table 1.1 that processes performing disk I/O do not use the CPU very efficiently: 0.5 nanoseconds versus 7 milliseconds, or in human terms, 1 second versus 162 days Because of the time disparity, most modern operating systems do multiprogramming Multiprogramming means that more than one process can be ready to execute The operating system chooses... acknowledgement of their source The site also has links to simulators, testing tools, course material prepared by the authors, and an errata list Preface UNIX Systems Programming: Communication, Concurrency and Threads is the second edition of Practical UNIX Programming: A Guide to Communication, Concurrency and Multithreading, which was published by Prentice Hall in 1995 We changed the title to better convey... communication The buffer overflow problem illustrates how careless programming and lack of error checking can cause serious problems and security breaches This chapter also provides a brief overview of how operating systems work and summarizes the operating system standards that are used in the book 1.2 Time and Speed Operating systems manage system resources: processors, memory and I/O devices including... Programs Chapter 2 Programs, Processes and Threads Chapter 3 Processes in UNIX Chapter 4 UNIX I/O Chapter 5 Files and Directories Chapter 6 UNIX Special Files Chapter 7 Project: The Token Ring Chapter 1 Technology's Impact on Programs This chapter introduces the ideas of communication, concurrency and asynchronous operation at the operating system level and at the application level Handling such program constructs... process to run UNIX does timesharing as well as multiprogramming Timesharing creates the illusion that several processes execute simultaneously, even though there may be only one physical CPU On a single processor system, only one instruction from one process can be executing at any particular time Since the human time scale is billions of times slower than that of modern computers, the operating system can... a relative addressing mode 1.7 UNIX Standards Not too long ago, two distinct and somewhat incompatible "flavors" of UNIX, System V from AT&T and BSD from Berkeley coexisted Because no official standard existed, there were major and minor differences between the versions from different vendors, even within the same flavor Consequently, programs written for one type of UNIX would not run correctly or... recover from errors and continue running The Portable Operating System Interface (POSIX) standard is an important step toward producing reliable applications Programmers who write for POSIX-compliant systems no longer need to contend with small but critical variations in the behavior of library functions across platforms Most popular UNIX versions (including Linux and Mac OS X) are rapidly moving to... programs execute on the same system so that their execution is interleaved in time, they share processor resources Programs can also share data, code and devices The concurrent entities can be threads of execution within a single program or other abstract objects Concurrency can occur in a system with a single CPU, multiple CPUs sharing the same memory, or independent systems running over a network . classic (originally titled Practical UNIX Programming) demonstrates how to design complex software to get the most from the UNIX operating system. UNIX Systems Programming provides a clear and. Copyright Robbins, Steven, 1947- UNIX systems programming: communication, concurrence, and threads / Steven Robbins, Kay Robbins p. cm. Previously published under the title: Practical UNIX Programming / Kay. the authors, and an errata list. Preface UNIX Systems Programming: Communication, Concurrency and Threads is the second edition of Practical UNIX Programming: A Guide to Communication, Concurrency

Ngày đăng: 14/06/2014, 18:21

Từ khóa liên quan

Mục lục

  • Table of Contents

    • Main.html

    • Cover

    • Table of Contents.html

    • Copyright.html

    • Preface 01.html

    • Preface 02.html

    • Preface 02lev1sec1.html

    • Part 01.html

    • Chapter 01.html

    • Chapter 01lev1sec1.html

    • Chapter 01lev1sec2.html

    • Chapter 01lev1sec3.html

    • Chapter 01lev1sec4.html

    • Chapter 01lev1sec5.html

    • Chapter 01lev1sec6.html

    • Chapter 01lev1sec7.html

    • Chapter 01lev1sec8.html

    • Chapter 02.html

    • Chapter 02lev1sec1.html

    • Chapter 02lev1sec2.html

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan