Linux Programming by Example
Linux Programming by Example
: PRENTICE
• • HALL
Programmi by Example
ARNOLD ROBBINS
Prentice Hall
Open Source Software Development Series
Arnold Robbins, Series Editor
Open Source technology has revolll(ionized the computing world. Many large-scale projects are
in production use worldwide, such as Apache, MySQL, and Postgres, with programmers writing
applications in a variety of languages includ ing Perl , Python , and PHP These technologies are in
use o n m any di fferent systems, ranging fro m proprietary sys tems , to Linux systems, to traditional
UNIX sys tems, to main fra mes.
T he Prentice Hall Open Source Software D evelopment Series is designed to bring you the
best of these Open Sou rce tech nologies. Not only will you learn how to use them for yo ur
projects, but you will learn ftom them. By seeing real code from real applications , yo u will learn
the best practices of Open So urce developers the wo rl d over.
The Linux® Kernel Primer: A Top-Down Approach for x86 and PowerPC Architectures
Claud ia Salzbe rg, Gordo n Fischer, Steven Smolski
013118 1637, Paper, 9/21/2005
A comprehensive view of the Linux Kernel is presented in a top down ap proach-t he big picture
first wi th a clear view of all components , how they interrelate, and where the hardware/softwa re
separation exists. The coverage of both (he x86 and the PowerPC is unique to this book.
To my wife Miriam)
and my children)
Chana) Rivka) Nachum) and MaIka.
Linux Programming
by Example
Arnold Robbins
PRENTICE HALL
Professional Technical Reference
PREN T ICE
HAll Upper Saddle River, NJ 07458
PTR www.phptr.com
© 2004 Pearson Education, In c.
PRENTI C E
Publi shin g as Prenrice Hall Professio nal Technical Refere nce
HAll U pper Saddl e River, New Jersey 074 58
PTR
Prenrice H all PT R offe rs d isco unrs on m is book wh en orde red in quantiry for bul k purchases or special sales. Fo r
more info rmat io n, please conract: U.S. Co rporate and Governm enr Sales, 1-800-382-34 19,
corpsales@ pearsonrechgro up.com. For sales o uts ide of the U nited States, please co nract: Inrernational Sales,
1-3 17 -58 1-3793, inrernati o nal@pearsonrech group.com.
Porti ons of Chapter 1, Copyright © 1994 Arn old David Robbins, first appeared in an article in Issue 16 of Linux
JournaL, reprinred by permi ssion.
Porti on s of the documenratio n for Valgrind , C o pyright © 2003 Julian Seward , reprinred by permi ssion.
Portions of the documentatio n fo r the DBUG library, by Fred N. Fish, reprinred by permiss ion.
The GNU programs in this book are Copyright © 1985-2003, Free Software Foundati on , Inc .. T he full list of fil es
and copyright dates is provided in the Preface. Each program is "free software; you can redistribute it and/or modify
it un der the terms of the G NU General Pu blic License as pu blished by the Free Software Foundation; either version
2 of the License, or (at your option) any later version." Appendi x C of this book p rovides m e text of the GNU
General Public License .
.All V7 Unix code and docum enration are Copyri ght © C ald era International In c. 2001 -200 2. Al l ri ghts reserved .
They are reprinred here und er the terms of th e C aldera Ancient UN IX License, which is reprod uced in full in
Appendix B.
Cove r im age courtesy of Parks Sabers, Inc. T he Arc-Wave(tm) saber is manufactured by Parks Sabers, Inc., C opyright
© 2001 , www. parksabers.com. Parks Sabers is not associated with any Lucasfi lm Ltd . properry, fi lm, or franchi se.
The programs and applications presenred in thi s book have been included fo r th ei r instructi onal val ue. They h ave
been tested with care but are not guaranteed fo r any particular purpose. The publisher does not offe r any warranti es
or represe ntations, nor does it accept any li abi lities with respect to the programs or applications. UN IX is a registered
tradem ark of T he O pen G roup in the U ni ted States and oth er co untri es.
Microso ft, MS, and MS- D OS are registered trademarks, and W indows is a trad emark of Microsoft Co rpo rati o n in
the U ni ted States and other countries. Linux is a registered trademark of Linux Torvalds.
All com pany and product names mentioned herein are the tradematks or registered tradem arks of th eir respective
owners.
This ma te rial may be distributed only subj ect ro th e terms and conditions set fo rth in th e O pen Pu bli cati on License,
vl.O or later (the latest version is presently available at http://www.opencontenr.org/openp ub/). with License
Option B.
Printed in the United States of America
ISBN 0-13-142964-7
T ext printed on recycled paper
First primi ng
Pearso n Ed ucation LTD .
Pearson Ed ucation Austral ia PIT, Lim ited
Pearso n Education Sin gapo re, Pte. Ltd .
Pearso n Ed ucation North Asia Ltd.
Pearso n Ed ucation C an ada, Ltd.
Pearso n Ed ucacion de Mexico, S.A. de c.v.
Pearso n Education- Japan
Pearso n Ed ucation M alays ia, Ptd. Ltd.
Contents
v
VI Coments
3.1 Linux/Unix Address Space ............................. .................. ... ...... ................ ....... . 52
3.2 Memory Allocation ....................................................... .............................. .... . 56
3.2.1 Library Calls: malloc (), calloc (), realloc (), free () ............ .. 56
3.2.1.1 Examining C Language Details ............................................ .. ............ . 57
3.2.1.2 Initially Allocating Memory: malloc () .......................................... . 58
3.2.1.3 Releasing Memory: free () ...................... .. .................................... .. 60
3.2.1.4 Changing Size: realloc () ............................................................ .. 62
3.2.1.5 Allocating and Zero-filling: calloc () ............................................ .. 65
3.2.1.6 Summarizing from the GNU Coding Standards .... .................... ........ .. 66
3.2.1.7 Using Private Allocators .................................................................... .. 67
3.2.1.8 Example: Reading Arbitrarily Long Lines ...................... .... ................ . 67
3.2.1.9 GLIBC Only: Reading Entire Lines: getline ( ) and getdelim () . 73
3.2.2 String Copying: s trdup () .................................................................... . 74
3.2.3 System Calls: brk () and sbrk () .......... .. ........................................ .... .. 75
3.2.4 Lazy Programmer Calls: alloca () .......... .............. ............................... . 76
3.2.5 Address Space Examination .. .............................................. .................. .. .. 78
3.3 Summary .. ... .. ....................... ........... ......................................... .. ..... ......... ... .... . 80
Exercises ........................ ............................................... ........ ........................... ...... .. .. .. 81
Contents VII
5.2 Creating and Removing Directories ... .... ....... .. ......... .... ... .. .... .. .......... ... ............. 130
5.3 Reading Directories ..... ..... .... ............ ...... ...... .... ......... ... ..... .. .. ...... ............... ..... . 132
5.3.1 Basic Directory Reading .... ... ..... .... ............ ...... ................ ......................... 133
5.3.1.1 Portability Considerations ... .... ........... .. .............................................. 136
5.3. 1.2 Linux and BSD Directory Entries ...... ..... ... .......... ..... ............. ...... .... .. . 137
5.3.2 BSD Directory Positioning Functions ............. ..... ..... ................. .. ... ........ . 138
5.4 Obtaining Information about Files ........... ..... ...................... ... .......... .. .... .......... 139
5.4.1 Linux File Types .... ........ ....... ....... ... ........................ .... ...... ...... .... ..... .... .... . 139
5.4.2 Retrieving File Information ... ..... .......... ..... .. ..... .... ..... ............. ..... .... .... ..... 141
5.4.3 Linux Only: Specifying Higher-Precision File Times ....... ... .. .... ... ... .......... 143
5.4.4 Determining File Type .. .... ........... ..... ................ ..... .... ...... .. ...... ................ 144
5.4.4.1 Device Information ... ................. ... ...... ....... .. ............. .. ........ ...... ....... .. 147
5.4.4.2 The V7 cat Revisited .. ..... .... .. ... ..... ... ... ... .... .... .. .... ... ... .. ... ..... ... .. ....... 150
5.4 .5 Working with Symbolic Links ....... ... ..... ...... ........... ... ........ ...... .. .... ..... ...... 151
5.5 Changing Ownership, Permission, and Modification Times .. ... ....... .. ............. .. 155
5.5.1 Changing File Ownership: chown (), fch own (), and l c h own () ....... 155
5.5.2 Changing Permissions: chmod() and f chrnod() ..... ... ........... .......... ... .. 156
5.5.3 Changing Timestamps: ut ime () ........ ........... ..... ..... ........ .... ........ ........ ... 157
5.5.3.1 Fakingutime ( f ile, NULL) ... . ... ........ .. .. ................ .. ................... . 159
5.5.4 Using fc h own () and fchrn od () for Security ...... ....... ... .................. .. ... 161
5.6 Summary ............ .. ....... ............. ...... ... ........... ....... ... .. .. ..... ..... ............. ...... ... .... .. 162
Exe rcises. .. ....... ... .......... ...... ........... ..... ...... .... .... ........ .... .. .. .... ... ..... ... ............. ... ..... ....... 163
Chapter 6 General Library Interfaces - Part 1 ............................................ 165
6.1 Times and Dates ......... ............. ........ .......... .......... ................. ......... ... ... ...... .. .... 166
6.1.1 Retrieving the Current Time: time () and difftime () .................. .. .. 167
6.1.2 Breaking Down Times: gmtime () and l ocalt ime () ... .......... ..... ....... 168
6.1.3 Formatting Dates and Times ............. .. .. .. .......... ..... .......... .. .. ......... ..... ...... 170
6.1.3. 1 Simple Time Formatting: asctime () and c time ( ) ..... ......... ........ 170
6.1.3 .2 Complex Time Formatting: str ft i me () .. ... .. .. ......... .... ... ... ....... ... .. 171
6.1. 4 Converting a Broken-Down Time to a t i me _ t ... ............ ........ ..... .. ........ 176
6.1.5 Getting Time-Zone Information .... ...... ......... ... .. .. ... .. ............................... 178
6.1.5.1 BSD Systems Gotcha: time zone ( ) , Not timezone ....... .......... ..... 179
6.2 Sorting and Searching Functions ... ............................................... .. ... .. .. ........... 181
6.2.1 Sorting: qso rt () .... ........ ... ..... ....... ... ....... ...... .... ....... ...... ........... ... ... .... .. 181
Contems IX
8.5 Walking a File Tree: GNU du .. ................ .... ... ... .................. ..... .. .. .. ... ........... .. 269
8.6 Changi ng the Root Directory: c hr oo t () ..... ... .. ...... .... .. ...... ..... .... ..... ........ .... . 276
8.7 Summary ... ................ .. .. .... .. ... ... .......... .... .... ..... .. ... .. .... ...... ...... ... ... .... ... .. .... .. .... 277
Exercises .. ..... ... .... ... .... .. ...... ... ...... .. .. .... ...... ...... .. ... ... ..... ..... .... ... .... ......... ....... .. .. ... ..... ... 278
9.1 Process Creation and Managem ent .. ...... .. .. .. ...... .. ...... .. ...... .. .... .. .. .. .. .. .... .. ........ . 284
9.l. 1 Creating a Process: fo rk () ...... ............ .. .... .................................... .. .... .. . 284
9.l.1.1 After the fork () : Shared and Distinct Attributes .......... .. .... .. .. ........ . 285
9. l.l.2 File Descrip to r Sharing .... .... .............. ............ .. .. .... .. .. .. .. .. .......... .. .... ... 286
9.1.l.3 File Descriptor Sharing and clo s e () ...... .. .. .. .. .. .. .. ....... .... .. ...... .. .... .. 288
9.1.2 Identifying a Process: getpid ( ) and getppid () ...... .. .. .... .... .. ........ .. .. 289
9.1.3 Setting Process Priority: ni c e () .. ............ .. ...... .... ...... .. .... .. .. .. .... ... .... ...... 29 1
9.1.3.1 POSIX vs. Reality ........ ...... .... .. .......... .. ........ .. .. .. .. .... ...... ...... ... ............ 293
9.1.4 Starting New Program s: T he exec () Family ...... .... .. ...... ........ ........ .... .. .. 293
9.l.4.1 T he e x ecve ( ) System Call ............ .. .................... .... .. .. ...... ...... .... .. .. 294
9. l.4.2 Wrapper Functions: e xec l () et al. ............ .. ........ .. .. .... .. .. .. .. ... ......... 295
9. l.4.3 Program N ames and a rgv[O) .. .. .. .... .... .. .. .. .. .. .. ............ .. .......... .... .... 297
9.1.4.4 Attributes Inherited across exe c () .. .. .. .. .. .. .. .. .... .. ....................... .. .. .. 298
9.1. 5 Terminating a Process .......... .. .. ...... .. .. .. .. .......... ........ .... .. ........ .. .............. .. 300
9.1.5.1 D efining Process Exit Status .. .. ...... .... .......... .. .. .. .. .. .. ........ .. ....... ......... . 300
9.1.5.2 Returning from ma i n ( ) .................. .. .. .. .......... ........... .. ......... ....... .... . 30 1
9.1.5.3 Exiting Functions .. .. ..... .. .. ...... .. ............ .. .... .... ........ .. .. .. .. .. .......... ....... . 302
9.l. 6 Recovering a Child's Exit Status .. .. .... .. .... ................ ................. .. .. .. .. .. ...... 305
9.l.6. 1 Using POSIX Fun ctions: wa it ( ) and wai tp i d () .. ......... ...... .. ...... 306
9. l.6.2 Using BSD Functions: wai t3 () and wai t4 () ...... .. ... .... ................ 310
9.2 Process Groups .. .... .. ....... .. ...... ...... .. .... .. ................................ ..... ... .... .... .......... .. 312
9.2.1 Job C ontrol Overview .. .. .. ...... ........ .... ........ ...... .... .... .................. .. ............ 312
9.2.2 Process Gro up Identification: getpg r p () and g etpgid ( ) .... .. ............ 314
9.2.3 Process Gro up Setting: s etpgid ( ) and se t pgrp () .. .. .......... .... .......... 314
9. 3 Basic Interprocess Communication: Pipes and FIFOs .... .... .. .. .. ... .. .. ............ .. ... 315
9.3.1 Pipes ........ .. .. ................. ....... .. .... .... .. .. .. ..... ..... ...... ..... .. .... ... .. .......... .... ....... 315
9.3.1.1 Creating Pipes .... ...... .. .. .................... .... .. .. .. ...... ....... .. ...... .. ...... .... .. ..... 316
9.3.1.2 Pipe Buffering .. .... ...... ...... .. .... .. ............ ......... .................... .. ............ .. . 318
Contents XI
9.3.2 FIFOs .. ....... .............. ... ....... .. .. .... ..... .... .......... .. ...... .... ..... ...... ........ ............ 319
9.4 File Descriptor M anagement .. .... .. ... ...... .. .............. .... ..... .... ... .... .. ............. .. ...... 320
9.4.1 Duplicating Open Files: dup () and dup2 () ...... ...... ......... ....... ............. 321
9.4.2 Creating Nonlinear Pipelines: I dev I fd l xx ........................................... 326
9.4.3 Managing File Attributes: fcntl () ..... ................ .. ......... ....... .......... ....... 328
9.4.3.1 The Close-on-exec Flag ... ......... .. .... ... .... ........... ..... ........................... .. 329
9.4.3.2 File Descriptor Duplication ................................................................ 331
9.4.3.3 Manipulation of File Status Flags and Access Modes ............ .............. 332
9.4.3.4 Nonblocking I/O for Pipes and FIFOs .... .......................... .... ............. 333
9.4.3.5 fcntl () Summary ................ .. .... .. .. .. ...... .. ........................ .. .... ........ . 336
9.5 Example: Two-Way Pipes in gawk .................................................................. 337
9.6 Suggested Reading ...... .... ................... ............. .......... ...... .. .. .... .. .............. .. .. .. .. .. 34 1
9.7 Summary ..................... ... .. ... ...... .. ....... ............... .. ............. ... .. ........................... 342
Exercises ... ........ ... ........ .... ........... ...................... ... .................. ...... ... ............... .. .. ..... ... .. 344
Chapter 10 Signals ...... .... ...... .. .. ........................... .. .......... ........ ..... .... .. .. .... .. . 347
11.8 C rossing a Security Minefield: Setuid root .... ... ......... ... ...... ........... ....... .. ........ 422
11.9 Suggested Reading .................................. ......... .... .............. .......................... ..... 423
11.10 Summary ... ........ ...................... ........................ .. ... .. .... ... .. .............. .... .. .. ........... 424
Exerc ises ..... .. .. .................. ....... ... ....... ... ... ......... ......... ......................... .... .. ....... ...... ...... 426
12.1 Assertion Statements: as se r t () .............................. .. ... ......... .... .. .... ... .. ...... ... 428
12.2 Low-Level Memory: T he me mXXX () Functions ...... .... ..... ............. .. .......... ...... 432
12.2. 1 Setting Memory: me mset () .... .. ........ .... ................................................ . 432
12.2.2 Copyi ng Memory: memcpy ( ) , memmove ( ) , and memcc py () .. ..... .. .. .. 433
12.2.3 Compar ing Memory Blocks: memcmp () .................. ...... ............. ... .. ...... . 434
12.2.4 Searching for a Byre Value: memc hr () .... .. ...... .. ... .. ................. .. .. .. ...... .. .. 435
12.3 Temporary Files .......... .......... ......... ........... ..... ... ............................. .... .. ...... .. .. .. 436
12.3.1 Ge nerating Temporary Filenames (Bad) ................................ ...... .. ... .. ...... 437
12.3.2 Creating and Openi ng Temporary Files (Good) .................... ... .. .... .... ... ... 44 1
12.3 .3 Using the TMPDIR Environment Variable ........ .... ................................ .... 443
12.4 Committing Suicide: abo rt () ....................... .. ........ ......................... ........ ..... 445
12.5 Non local Gotos .............................. .. ......... ..... ..... .............. ..... ......... ................ . 446
12. 5. 1 Using Standard Functions: se tjmp () and longjmp () ..... .... ..... .......... 447
12. 5.2 H andli ng Signal Masks: si g s etjmp ( ) and si g l o ng j mp () .. .. .... .. ..... 449
12.5.3 Observing Important Caveats .... .. .. .. .......... .. .. ... ............... ...... ................... 450
12.6 Pseudorando m Numbers ........ .................... .. ........ ......... .. ..... ....................... ..... 454
12.6. 1 Standard C: rand () and srand () ...... ........ .. ... ........ .... .... ................ ..... 455
12.6.2 POSIX Functions: random () and srandom () .................. .............. ..... 457
12.6.3 The Idev / random and Idev / urandom Special Files ...... .. .... .............. 460
12.7 Metacharacter Expans ions...... ..................... .. .... .......... .... .......... ....................... 461
12. 7. 1 Simple Pattern Matching: fnma tch () ..... .. ... .. ... ....... .... .. .... ............... .... 462
12.7.2 Filename Expansion: gl o b () and g lob free () .... ... .. ........ ..... ...... .. ..... 464
12.7.3 Shell Word Expansion: wo r d exp ( ) and wo r dfree () ......................... 470
12.8 Regular Exp ressions .... ........... ........ .................. .. .. ............................................. 47 1
12.9 Suggested Reading ........... .... ......... ..... ....................................... ..... .. ................. 480
12.10 Summary .... .......... .............. ... ........ ....... .. ...... .. ....... ................... ... .... .. .... ........... 48 1
Exercises ................. .............. ... ......... ...... ... ... ........... . .... ........ ....... .. ......... ... ........ .... ...... 482
XIV Contents
14.1 Allocating Aligned Memory: posix_rnernal ign () and memalign () ........ . 530
14.2 Locking Files ............ ................. .. ...... ...................... ........................... ......... .... . 531
Comems xv
14.2. 1 File Locking Co ncepts ..... ................ ............. ................. .. ...................... ... 531
14.2.2 POSIX Locking: f cntl () and loc H () ....... ..... .......... ....... .......... .. .. ... 533
14.2.2.1 Describing a Lock ..... ... ...... ..... ...... ..... .... .......... ... .... ................ ...... ...... 533
14.2. 2.2 O btaining and Releasi ng Locks ............. .... ................ .. .......... ........ ...... 536
14.2. 2.3 O bserving Locking Caveats .......... .. ...... .. ................. .. .. .. ...... ............... 538
14.2.3 BSD Locking: flock () ........ ........ .. ..................................... .... .... ........... 539
14.2.4 Mandatory Locking ........................ .. .. .... ..... .... ........... ... ...... ..... .......... ... ... 540
14.3 More Precise Times .. ...... .... .. .. ...................... ........ .... ........... .... ........ ................. 543
14.3. 1 Microsecond Times: get time o fday () ...... .. ....... .. .............................. . 544
14.3.2 Microsecond File Times: utimes () .... ...... ...... ........ .. .. .. ............ .. .... .. .... . 545
14.3.3 Interval Timers: seti timer () and geti timer () .. .. .. .. .. .... .. .... ........ . 546
14.3.4 More Exact Pauses: nanosleep () .. .......................................... .. ...... ..... 550
14.4 Advanced Searchin g with Binary Trees .. .. .......... .... .... .. .. ...... ........ ....... .. .. .. ........ 551
14.4.1 Introduction to Binary Trees ...... .. .......... ...... .. ............................ .... .......... 551
14.4.2 Tree Management Functions .......... .. .......................................... .. .......... .. 554
14.4.3 Tree Insertion : tsearch () ............ .. ...................................................... 554
14.4.4 Tree Lookup and Use of A Returned Poin ter: t fin d () and
tsearch () ............ ......... ................................ .... ... .............. .. ... ............. 555
14.4.5 Tree Traversal: twalk () .......... ........ ...... .... .... .. ........ .... ........................... 55 7
14.4.6 Tree Node Removal and Tree Deletion: tdelete () and tdest r oy (). 561
14.5 Summary ............. .......... ......... .. .. .. ....... ........ .... ..... .... .... ..... ......... .... ........... ... .... 562
Exercises .. ... ....................... ...... .. ... .... ... .... .... ...... ..... ....... ............................................. . 563
15.4.1.4 Use Debugging Helper Functions ... ... .. ........... ...... ... ... .... ..... ........... .. .. 584
15.4.1.5 Avoid Unions When Possible ... ............. ....... .......... ...... ...... .. .. ...... ...... 591
15.4.2 Runtime Debugging Code ...... ................ ........ ....... ..... .. ........ .... ........ ....... 595
15.4.2.1 Add Debugging Options and Variables..... ... ........... .......... .. ...... ......... 595
15.4.2.2 Use Special Environment Variables ........ ...... ..... ..... ..... ........ .. .... .. ...... . 597
15.4.2.3 Add Loggi ng Code .......... ............... .. ............. ... .. .... .... ........ ..... .. ......... 601
15 .4.2.4 Runtime Debugging Files ....... ...... ..... ..... .......... .... .............. ..... ........... 602
15.4.2.5 Add Special H ooks fo r Breakpoints ..... ............ ........... .... .... .... ..... ...... . 603
15.5 D ebugging Tools .............. .. .. ..... ........ ........ ... .. .. ... ... ....... ......... ..... ......... .... .... .... 605
15.5.1 The dbug Library - A Sophisticated p r i n tf () ........ ............. ...... ..... .. . 606
15.5.2 Memory Allocation Debuggers ... ... ...... ........ .. .. ........ ................................. 612
15 .5.2.1 GNU/Linux mtrace .. ... ..... .. ..... .. ... ..... ..... ... ....... ... .... ... ... .... .. .. ........ .. 613
15.5.2.2 Electric Fence ... .......... .... .. .. .... ...... .... ...... .. .. .... ......... .. ....... ...... .... ... .... . 614
15 .5.2.3 Debugging Malloe: dmalloc ..... ............ .. .... .... ... .... ...... ...... ... ..... ..... . 619
15 .5.2.4 Valgrind: A Versatile Tool... .. .. .... ..... ....... .... .... ........ .... ........ ... .... .. .. ... . 623
15 .5.2.5 Other Malloc Debuggers .. .... ............. ..... ... .... .. ....... .. ....... .... ...... .... .... . 629
15.5.3 A Modern l i nt .. ... ........ ....... ....... .... .... .. ... ..... ... ......... ... .. .......... .... .. .. ...... 63 1
15.6 Software Testing .. .. ...... ..... .......... .... .. ... ..... .... ... ... ........ .... ......... ... ........ .... ..... ..... 632
15.7 Debugging Rules ...... ............ .... .. ......... ..... ............... .. .. ........... ..... ....... .............. 633
15.8 Suggested Reading ... .. .......... ... ........ .. ... ...... ... ............... ..... .... ... .... ...... ... .. ... ..... .. 637
15.9 Summary .. .... ...... ... .. ........ .... .... .... ....... .... .......... ....... .. ... .... .... ....... .. ......... .......... 638
Exercises ...... ... ....... .. ..... ......................... .... ......... ..... ......... .. ...... ........... .. ........ .... ......... . 639
Chapter 16 A Project That Ties Everything Together ............................ ........ 641
16.1 Project Description .. .... .... .. ........ .... ........ ..................... ...... .. ...... ........ .. .... .... .. .. .. 642
16.2 Suggested Reading ......... ..... .... ........ ........ .. ..... .. .. ..... ...... .. ..... ...... ... .. ... .... .. ...... ... 644
Au d ien ce
This book is intended for the person who understands programming and is familiar
with the basics ofC, at least on the level of The C Programming Language by Kernighan
and Ritchie. (Java programmers wishing to read this book should understand C pointers,
since C code makes heavy use of them.) The examples use both the 1990 version of
Standard C and Original C.
In particular, you should be familiar with all C operators, control-How structures,
variable and pointer declarations and use, the string management functions, the use of
exi t (), and the <stdio. h> suite of functions for file input/output.
You should understand the basic concepts of standard input, standard output, and
standard error and the fact that all C programs receive an array of character strings
representing invocation options and arguments . You should also be familiar with the
fundamental command-line tools, such as cd, cp, date, ln, ls, man (and info if you
XVI I
XVIII Preface
have it) , rmdir, and rm, the use oflong and short command-line options, environment
variables, and I/O redirection, including pipes.
We assume that you want to write programs that work not just under GNU/Linux
but across the range of Unix systems. To that end, we mark each interface as to its
availability (GLIBC systems only, or defined by P05IX, and so on), and portability
advice is included as an integral part of the text.
The programming taught here may be at a lower level than you're used to ; that's
OK. The system calls are the fundamental building blocks for higher operations and
are thus low-level by nature. This in turn dictates our use of C: The APIs were designed
for use from C, and code that interfaces them to higher-level languages, such as c++
and Java, will necessarily be lower level in nature, and most likely, written in C. It may
help to remember that "low level" doesn 't mean "bad," it just means "more challenging. "
We have purposely kept the list of topics short. We believe that it is intimidating to
try to learn "all there is to know" from a single book. Most readers prefer smaller, more
focused books, and the best Unix books are all written that way.
So, instead of a single giant tome, we plan several volumes: one on Interprocess
Communication (IPC) and networking, and another on software development and
code portability. We also have an eye toward possible additional volumes in a Linux
Preface XIX
Programming by Example series that will cover topics such as thread program ming and
GUI programming.
The APIs we cover include both sys tem calls and library functions . Indeed, at the C
level, both appear as sim ple function calls. A system call is a direct request for system
services, such as reading or writing a file o r creating a process. A library function, on the
o ther han d, runs at the user level , possibly never requesting any services from the oper-
ating system. System calls are doc umented in section 2 of the reference manual (viewable
online with the man command) , and library functions are documented in section 3.
Our goal is to teach yo u the use of the Linux APIs by example: in particular, through
the use, wherever possible, of both original Unix so urce code and the GNU urilities.
U nfortunately, there aren ' t as many self-contained examples as we though t there'd be.
Th us, we have written numerous small demonstration programs as well. We stress
programming principles : especially those aspects of GNU programming, such as "no
arbitrary limits ," that make the G NU utilities into exceptional programs.
T he choice of everyday programs to study is deliberate. If you've been using
GNU/Linux for any length of time, yo u already understand what programs such as ls
and cp do; it then becomes easy to dive straight into how the programs work, without
having to spend a lot of time learning what they do.
Occasionally, we present both higher-level and lower-level ways of doing things.
Usually the higher-level standard interface is implemented in terms of the lower-level
interface or co nstruct. We hope that such views of what's " under the hood" w ill help
yo u understand how things wo rk; for all the code you wri te, you should always use the
higher-level, standard interface.
Similarly, we sometimes introduce functions that provide certain functio nali ty and
then recommend (with a provided reason) that these functions be avoided! The primary
reason for this app roach is so that yo u'll be able to recognize these functions when you
see them and thus understand the code using them. A well-rounded knowledge of a
topic requires understanding not just what yo u can do, but what you should and should
not do.
Finally, each chapter co ncludes with exercises . Some involve m odifying or writing
code. Others are more in the category of "thought experiments" or "why do you
think .. . " We recommend that yo u do all of them- they will help cement yo ur under-
standing of the material.
xx Preface
Initially, we planned to teach the LinuxAPI by using the code from the GNU utilities.
However, the modern versions of even simple command-line programs (like mv and
cp) are large and many-featured. This is particularly true of the GNU variants of the
standard utilities, which allow long and short options, do everything required by POSIX,
and often have additional, seemingly unrelated options as well (like output highlighting).
It then becomes reasonable to ask, "Given such a large and confusing forest , how
can we focus on the one or two important trees?" In other words, if we present the
current full-featured program, will it be possible to see the underlying core operation
of the program?
That is when Hoare's law 1 inspired us to look to the original Unix programs for ex-
ample code. The original V7 Unix utilities are small and straightforward, making it
easy to see what's going on and to understand how the system calls are used. (V7 was
released around 1979; it is the common ancestor of all modern Unix systems, including
GNU/Linux and the BSD systems.)
For many years, Unix source code was protected by copyrights and trade secret license
agreements, making it difficult to use for study and impossible to publish. This is still
true of all commercial Unix source code. However, in 2002, Caldera (currently operating
as SeO) made the original Unix code (through V7 and 32V Unix) available under an
Open Source style license (see Appendix B, "Caldera Ancient UNIX License," page 655).
This makes it possible for us to include the code from the early Unix system in this book.
Standards
Throughout the book we refer to several different formal standards. A standard is a
document describing how something works. Formal standards exist for many things,
for example, the shape, placement, and meaning of the holes in the electrical outlet in
1 This famous statement was made at The International Workshop on Efficient Production of Large Programs in
Jablonna, Poland, August 10- 14, 1970.
Preface XXI
your wall are defined by a formal standard so that all the power cords in your country
work in all the outlets.
50 , too, formal standards for computing systems define how they are supposed to
work; this enables developers and users to know what to expect from their software and
enables them to complain to their vendor when software doesn't work.
Of interest to us here are:
Although language standards aren't exciting reading, you may wish to consider pur-
chasing a copy of the C standard: It provides the final definition of the language. Copies
XXII Preface
can be purchased from ANSI 2 and from ISO.3 (The PDF version of the C standard is
quite affordable.)
The POSIX standard can be ordered from The Open Group.4 By working through
their publications catalog to the items listed under "CAE Specifications," you can find
individual pages for each part of the standard (named "C031" through "C034"). Each
one's page provides free access to the online HTML version of the particular volume.
The POSIX standard is intended for implementation on both Unix and Unix-like
systems, as well as non-Unix systems. Thus, the base functionality it provides is a subset
of what Unix systems have. However, the POSIX standard also defines optional exten-
sions-additional functionality, for example, for threads or real-time support. Of most
importance to us is the XlOpen System Interface (XSI) extension, which describes facilities
from historical Unix systems.
Throughout the book, we mark each API as to its availability: ISO C, POSIX, XSI,
GUBC only, or nonstandard but commonly available.
By using GNU programs, we want to meet both goals: show you well-written,
modern code from which you will learn how to write good code and how to use the
APIs well.
We believe that GNU software is better because it is free (in the sense of "freedom, "
not "free beer"). But it's also recognized that GNU software is often technically better
than the corresponding Unix counterparts, and we devote space in Section 1.4, "Why
GNU Programs Are Better, " page 14, to explaining why.
A number of the GNU code examples come from g a wk (GNU aWk). The main
reason is that it's a program with which we' re very familiar, and therefore it was easy
to pick examples from it. We don 't otherwise make any special claims about it.
Summary of Chapters
Driving a car is a holistic process that involves multiple simultaneous tasks. In many
ways, Linux programming is similar, requiring understanding of multiple aspects
of the API, such as file 110, file metadata, directories, storage of time information,
and so on.
The first part of the book looks at enough of these individual items to enable studying
the first significant program, the V7 15 . Then we complete the discussion of files and
users by looking at file hierarchies and the way filesystems work and are used.
Chapter 1, '1ntroduction,"page 3,
describes the Unix and Linux file and process models , looks at the differences be-
tween Original C and 1990 Standard C, and provides an overview of the principles
that make GNU programs generally better than standard Unix programs.
Chapter 2, "Arguments, Options, and the Environment," page 23,
describes how a C program accesses and processes command-line arguments and
options and explains how to work with the environment.
Chapter 3, "User-Level Memory Management,"page 51,
provides an overview of the different kinds of memory in use and available in a
running process. User-level memory management is central to every nontrivial
application, so it's important to understand it early on.
XXIV Preface
The second part of the book deals with process creation and management, interprocess
communication with pipes and signals, user and group IDs, and additional general
programming interfaces. Next, the book first describes internationalization with GNU
gettext and then several advanced APIs.
We tound the book off with a chapter on debugging, since (almost) no one gets
things right the first time, and we suggest a final project to cement your knowledge of
the APIs covered in this book.
Several appendices cover topics of interest, including the licenses for the source code
used in this book.
Appendix A, "Teach Yourself Programming in Ten Years," page 649,
invokes the famous saying, "Rome wasn't built in a day." So too, Linux/Unix ex-
pertise and understanding only come with time and practice. To that end, we
have included this essay by Peter Norvig which we highly recommend.
Appendix B, "Caldera Ancient UNIX License," page 655,
covers the Unix source code used in this book.
Appendix C, "GNU General Public License,"page 657,
covers the GNU so urce code used in this book.
XXVI Preface
Typographical Conventions
Like all books on computer-related topics, we use certain typographical conventions
to convey information. Definitions or first uses of terms appear in italics, like the word
"Definitions" at the beginning of this sentence. Italics are also used for emphasis, for
citations of other works, and for commentary in examples. Variable items such as argu-
ments or filenames , appear l i ke t hi s . Occasionally, we use a bold font when a point
needs to be made strongly.
Things that exist on a computer are in a constant-width font , such as filenames
(f aa . c ) and command names (Is, grep). Short snippets that you type are additionally
enclosed in single quotes: ' 1 s -1 *. c' .
$ and > are the Bourne shell primary and secondary prompts and are used to display
interactive examples. User input appears in a different font from regular comput e r
outpu t in examples. Examples look like this:
$ 18 -1 Look at files. Option is digit 1, not letter I
foo
bar
baz
We prefer the Bourne shell and its variants (ksh9 3 , Bash) over the C shell; thus, all
our examples show only the Bourne shell. Be aware that quoting and line-continuation
rules are different in the C shell; if you use it, you' re on your own!6
When referring to functions in programs, we append an empty pair of parentheses
to the function 's name: printf ( ) , st r cpy () . When referring to a manual page (acces-
sible with the man command), we follow the standard Unix convention of writing the
command or function name in italics and the section in parentheses after it, in regular
type: awk(1), printf(3).
6 See th e csh(l) and m hO ) man pages and the book Using csh & tcsh, by Paul DuBois, O 'Reilly & Associates, Se-
bastopol, CA, USA, 1995. ISBN: 1-56592- 132- 1.
Preface XXVII
Unix Code
Archives of various "ancient" versions of Unix are maintained by The UNIX Heritage
Society (TUHS), h ttp : // www . tuh s. org.
Of most interest is that it is possible to browse the archive of old Unix source code
on the Web. Start with http : // minnie . tuh s . org / UnixTree / . All the example code
in this book is from the Seventh Edition Research UNIX System, also known as "V7."
The TUHS si te is physically located in Australia, although there are mirrors of the
archive around the world- see http: // www . tuh s. org/archi ve_sit es . html.
This page also indicates that the archive is available for mirroring with rsync.
(See htt p: //rsync . samba . org/ if you don 't have rsync: It's standard on
GNU/Linux systems.)
You will need about 2-3 gigabytes of disk ro copy the entire archive. To copy the
archive, create an empty directoty, and in it, run the following commands:
mkdir Applicati ons 4BSD PDP-ll PDP-ll/Trees VAX Other
You may wish to omit copying the Trees directory, which contains extractions of
several versions of Unix, and occupies around 7 00 megabytes of disk.
You may also wish to consult the TUHS mailing list to see if anyone near YOLl can
provide copies of the archive on CD-ROM, to avoid transferring so much data over
the Internet.
The folks at Southern Storm Software, Pry. Ltd., in Australia, have "modernized" a
portion of the V7 user-level code so that it can be compiled and run on current systems,
most notably GNU/Linux. This code can be downloaded fro m their web site. 7
It's interesting to note that V7 code does not contain any copyright or permission
notices in it. The authors wrote the code primarily for themselves and their research,
leaving the permission issues to AT &T' s corporate licensing department.
GNU Code
If yo u're using GNU/Linux, then your distribution will have come with source code,
presumably in whatever packaging format it uses (Red Hat RPM files , Debian DEB
files, Slackware . tar . gz files, etc.). Many of the examples in the book are from the
GNU Coreutils, version 5.0. Find the appropriate CD-ROM for your GNU/Lin ux
distribution, and use the appropriate tool to extract the code. Or follow the instructions
in the next few paragraphs to retrieve the code.
If you prefer to retrieve the files yourself from the GNU ftp site, you will find them
atftp: // ftp.gnu . org / gnu / coreutils / coreutils-5.0 . tar. gz.
You can use the wget utility to retrieve the file:
$ wget ftp://ftp.gnu.org/gnu/coreutils/coreutils-S . O.tar.gz Retrieve the distribution
... lots of output here as file is retrieved ...
Alternatively, you can use good old-fashioned ftp to retrieve the file:
$ ftp ftp.gnu.org Connect to GNU ftp site
Connected to ftp . gnu.org ( 199.232.41 . 7).
220 GNU FTP server ready .
Name (ftp .gnu . org : arnold) : anonymous Use anonymous ftp
331 please specify the password.
Password: Password does not echo on screen
230-If you have any problems with the GNU software or its downloading,
230-please refer your questions to <gnu@gnu . org>.
Lots of verbiage deleted
230 Login successful. Have fun.
Remote system type is UNIX .
Using binary mode to transfer files.
ftp> cd /gnu/coreutils Change to Coreutils directory
250 Directory successfully changed .
ftp> bin
200 Switching to Binary mode .
ftp> hash Print # signs as progress indicators
Hash mark printing on (1024 bytes/hash mark ) .
ftp> get coreutils-S.O.tar . gz Retrieve file
local: coreutils - 5 . 0 . tar . gz remote: coreutils-5.0 . tar . gz
227 Entering Passive Mode (199 ,2 32 ,41,7,86, 107)
150 Opening BINARY mode data connection for coreutils-5 . 0 . tar.gz (6020616 bytes)
#################################################################################
#################################################################################
In compliance with the GNU General Public License, here is the Copyright infor-
mation for all GNU programs quoted in this book. All the programs are "free software;
you can redistribute it and/or mo dify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later versio n." See Appen dix C, "GNU General Public License, "
page 657, for the text of the GNU General Pub lic License.
Coreutils S.O File Copyright dates
l i b/sa fe - read.c Copyright© 1993-1994, 1998,2002
l ib / safe-write.c Copyrigh t© 2002
lib/utime . c Copyright © 1998, 200 1-2002
l ib / xreadlink. c Copyright © 2001
src/du . c Copyright © 1988-1991,1995- 2003
src/env. c Copyright© 1986, 1991 - 2003
src / install.c Copyright © 1989-1991,1995-2002
srcllink. c Copyright © 2001-2002
srclls . c Copyright© 1985, 1988,1990, 199 1,1995-2003
src / pathchk.c Copyright© 1991 - 2003
src / s ort. c Copyright © 1988, 1991-2002
src/sys2.h Copyright © 1997-2003
src / wc . c Copyright © 1985, 1991, 1995-2002
In the hands of a Jedi Knight, a light saber is both a powerful weapon and a thing
ofbeaury. Its use demonstrates the power, knowledge, control of the Force, and arduous
training of the J edi who wields it.
The elegance of the light saber mirrors the elegance of the original Unix API design.
There, too, the studied, precise use of the APls and the Software Tools and GNU design
principles lead to today's powerful, flexible, capable GNU/Linux system. This system
demonstrates the knowledge and understanding of the programmers who wrote all its
components.
And, of course, light sabers are just way cool!
Ac kn owledgmen ts
Writing a book is lots of work, and doing it well requires help from many people.
Dr. Brian W. Kernighan, Dr. Doug McIlroy, Peter Memishian, and Peter van der
Linden reviewed the initial book proposal. David J. Agans, Fred Fish, Don Marti, Jim
Meyering, Peter Norvig, and Julian Seward provided reprint permission for various
items quoted throughout the book. Thanks to Geoff Collyer, Ulrich Drepper, Yosef
Gold, Dr. CA.R. (Tony) Hoare, Dr. Manny Lehman, Jim Meyering, Dr. Dennis M.
Ritchie, Julian Seward, Henry Spencer, and Dr. Wladyslaw M. Turski, who provided
much useful general information. Thanks also to the other members of the GNITS
gang: Karl Berry, Akim DeMaille, Ulrich Drepper, Greg McGary, Jim Meyering,
Fran<;:ois Pinard, and Tom Tromey, who all provided helpful feedback about good
programming practice. Karl Berry, Alper Ersoy, and Dr. Nelson H.F. Beebe provided
valuable technical help with the T exinfo and DocBook/XML toolchains.
Good technical reviewers not only make sute that an author gets his facts right, they
also ensure that he thinks carefully about his presentation. Dr. Nelson H.F. Beebe,
Geoff Collyer, Russ Cox, Ulrich Drepper, Randy Lechlitner, Dr. Brian W. Kernighan,
Peter Memishian, Jim Meyering, Chet Ramey, and Louis Taber acted as technical re-
viewers for the entire book. Dr. Michael Brennan provided helpful comments on
Chapter 15. Both the prose and many of the example programs benefited from their
reviews. I hereby thank all of them. As most authors usually say here, "Any remaining
.
errors are mme. "
I would especially like to thank Mark Taub of Pearson Education for initiating this
project, for his enthusiasm for the series, and for his help and advice as the book moved
XXX II Preface
through its various stages. Anthony Gemmellaro did a phenomenal job of realizing my
concept for the cover, and Gail Cocker's interior design is beautiful. Faye Gemmellaro
made the production process enjoyable, instead of a chore. Dmitry Kirsanov and
Alina Kirsanova did the figures , page layout, and indexing; they were a pleasure to
work with.
Finally, my deepest gratitude and love to my wife, Miriam, for her support and en-
couragement during the book's writing.
Arnold Robbins
No/Ayalon
ISRAEL
Chapter 1 Introduction page 3
• 1 .7 Summary page 2 1
3
I f there is one phrase that summarizes the primary GNU/Linux (and therefore
Unix) concepts, it's "files and processes. " In this chapter we review the Linux
file and process models. These are important to understand because the system calls
are almost all concerned with modifYing some attribute or part of the state of a file
or a process.
Next, because we'll be examining code in both styles, we briefly review the major
difference between 1990 Standard C and Original C. Finally, we discuss at some
length what makes GNU programs "better," programming principles that we'll see
in use in the code.
This chapter contains a number of intentional simplifications. The full details are
covered as we progress through the book. If you're already a Linux wizard, please
forgive us.
4
1.1 The Linux/ Unix File Model 5
record sizes, no indexed files , nothing. The interpretation of fil e contents is entirely up
to the application. (This isn' t quite true, as we'll see shortly, but it's close enough for
a start.)
Once you have a file, you can do three things with the file 's data: read them, write
them , or execute them.
Unix was designed for time-sharing minicomputers; this implies a multiuser environ-
m ent from the get-go. Once there are multiple users, it must be possible to specify a
file's permissions: Perhaps user jane is user fr ed's boss, and jane doesn't want fre d
to read the latest performance evaluations.
For file permission purposes, users are classified into three distinct categories: user:
the owner of a file; group: the group of users associated with this file (discussed shortly) ;
and other: anybody else. For each of these categories, every file has separate read, write,
and execute permission bits ass ociated with it, yielding a total of nine permission bits.
This shows up in the first field of the output of ' 1 s - 1':
S ls -1 progex.t e xi
- r w- r - - r- - 1 arno l d dev el 5 61 4 F e b 24 18 : 0 2 pr o gex . tex i
Here, arno l d and deve l are the owner and group ofproge x . t exi , and - r w- r- - r- -
are the file type and permissions . The first character is a dash for regular file, a d for
directories, or o ne of a small set of other characters for other kinds of files that aren't
important at the moment. Each subsequent group of three characters represents read,
write, and execute permission for the owner, group, and "other," respectively.
In this example, progex. t e xi is readable and writable by the owner, and readab le
by the group and other. The dashes indicate absent permissions, thus the fil e is no t ex-
ecutable by anyone, nor is it wri table by the group or other.
T he owner and group of a file are stored as numeric values known as the user ID
(UID) and group ID (GID); standard library functions that we present later in the book
m ake it possible to print the values as human -readable names.
A file's owner can change the permission by using the chmod (change mode)
command. (As such, file permissions are sometimes referred to as the "file mode. ")
A file's group can be changed with the chgrp (change group) and chown (change
owner) commands. 1
1 Some sysrems al low regular use rs ro cha nge rhe ownership o n rheir fi les ro someo ne else, rhus "giving rh em away."
T h e details are srandardized by POSIX bur are a bir messy. Typical GNU/Linux configurarions do nor allow it.
6 Chapter 1 • Introduction
Group permissions were intended to support cooperative work: Although one person
in a group or department may own a particular file , perhaps everyone in that group
needs to be able to modify it. (Consider a collaborative marketing paper or data from
a survey.)
When the system goes to check a file access (usually upon opening a file) , if the UID
of the process matches that of the file , the owner permissions apply. If those permissions
deny the operation (say, a write to a file with - r--rw-rw- permissions), the operation
fails; Unix and Linux do not proceed to test the group and other permissions. 2 The
same is true if the UID is different but the GID matches; if the group permissions deny
the operation, it fails.
U nix and Linux support the notion of a superuser: a user with special privileges. This
user is known as r oo t and has the UID of o. r oot is allowed to do anything; all bets
are off, all doors are open, all drawers unlocked. 3 (This can have significant security
implications, which we touch on throughout the book but do not cover exhaustively.)
Thus, even if a file is mode ----- -----, r oot can still read and write the file. (One
exception is that the file can't be executed. But as root can add execute permission,
the restriction doesn' t prevent anything.)
The user/group/other, read/write/execute permissions model is simple, yet flexible
enough to cover most situations. Other, more powerful but more complicated, models
exist and are implemented on different systems , but none of them are well enough
standardized and broadly enough implemented to be worth discussing in a general-
purpose text like this one.
2 The own er can always change the permission , of course. Most users don't di sable write permission fo r themselves.
'3 There are some rare exceptions to this rule, all of which are beyo nd th e scope of this book.
1.1 T he Linux/Un ix File Model 7
page 83. They are also special in that the operating system dictates the format of direc-
to ryentnes.
Filenames may contain any valid 8-bit byte except the / (forward slash) character
and ASCII NUL, the character whose bits are all zero. Early Unix systems limited file-
names to 14 bytes; modern systems allow individual filenames to be up to 255 bytes.
T he inode contains all the information abo ut a file except its name: the type, owner,
group, permissions, size, m odification and access times . It also stores the locations on
disk of the blocks containing the file 's data. All of these are data about the file, not the
file 's data itself, thus the term metadata.
Directory permissions have a slightly different m eaning from those for file permissions.
Read permission means the ability to search the directory; that is, to look through it to
see what files it contains. Write permission is the abili ty to create and remove files in
the directory. Execute permission is the abili ty to go through a directory when opening
or otherwise accessing a co ntained file or subdirectory.
II*
d rwxrwxrwt 1 1 root roo t 40 96 May 1 5 17 :1 1 /trop
Note the t is the last position of the first fi eld . On most directories thi s position
Im has an x in it. Wi th th e sticky bit set, only you, as the fil e's owner, or r o ot may
:ffi remove your fil es. (We discu ss this in more detail in Section 11 .5. 2 , " Directori es
I and the Sticky Bit," page 414. )
ill
Although the kernel will only run a file laid out in the proper format, it is up to user-
level utilities to create these files. The compiler for a programming language (such as
Ada, Fortran, C , or C++) creates object files, and then a linker or loader (usually named
ld) binds the object files with library routines to create the final executable. Note that
even if a file h as all the right bits in all the right places, the kernel won' t run it if the
appropriate execute permission bit isn't turned on (or at least one execute bit for r oo t) .
Because the compiler, assembler, and loader are user-level tools, it's (relatively) easy
to change object file formats as needs develop over time; it's only necessary to "teach"
the kernel about the new format and then it can be used. The part that loads executables
is relatively small and this isn't an impossible task. Thus, Unix file formats have evolved
over time. The original format was known as a . out (Assembler OUTput) . The next
format , still used on some commercial systems, is known as COFF (Common Object
File Format), and the current, most widely used format is ELF (Extensible Linking
Format). Modern GNU/Linux systems use ELF .
The kernel recognizes that an executable file contains binary object code by looking
at the first few bytes of the file for special m agic numbers. These are sequences of two
or four bytes that the kernel recognizes as being special. For backwards compatibility,
modern Unix systems recognize multiple formats . ELF files begin with the four characters
" \ 177ELF" .
Besides binary executables, the kernel also supports executable scripts. Such a file also
begins with a magic number: in this case, the two regular characters # ! . A script is a
program executed by an interpreter, such as the shell, awk, Peri, Python, or Tcl. The
#! line provides the full path to the interpreter and, optionally, one single argument:
#! I bin l awk -f
Let's assume the above contents are in a file named hello . awk and that the file is
executable. When you type 'hell o . awk' , the kernel runs the program as if you had
typed ' I bin l awk - f hell o . aWk' . Any additional command-line arguments are also
passed on to the program. In this case, awk runs the program and prints the universally
known hel lo , world message.
The # ! mechanism is an elegant way of hiding the distinction between binary exe-
cutables and script executables. If he ll o . awk is renamed to just hell o, the user typing
l.1 The Linux/ Unix File Model 9
'he llo ' can't tell (and indeed sho uldn't have to know) that hello isn' t a binary exe-
cutab le program.
1 .1.4 Devices
One of U nix's most notable innovations was the unificatio n of file I/O and device
I/0 .4 Devices appear as files in the filesystem, regular permissio ns apply to their access,
and the same I/O system calls are used for opening, reading, writing, and closing them.
All of the "magic" to make devi ces look like files is hidden in the kernel. This is just
another aspect of the driving simplicity principle in action: We might phrase it as no
special cases for user code.
Two devices appear frequently in everyday use, particularly at the shell level:
/ dev / null and / dev / tty.
/ dev/null is the "bit bucker." All data sent to Idev/null is discarded by the oper-
ating sys tem, and attempts to read from it always return end-of-file (EOF) immediately.
I dey / tty is the process's current controlling terminal-
the one to which it listens
when a user types the interrupt character (typically CTRL-C) or performs job control
(CTRL-Z).
GNU/Linux systems , and many modern Unix systems, supply /dev / stdin,
/ dev / stdout , and / dev / stderr devices, which provide a way to name the open files
each process inherits upon startup .
Other devices rep resent real hardware, such as tape and disk drives, CD-ROM drives,
and serial ports. There are also software devices, such as pseudo-ttys, that are used for
networking logins and windowing sys tems. / dey I console represents the system console,
a particular hardware device on minicomputers. On modern co mputers, / dey / c onsol e
is the screen and keyboard, but it could be a serial port.
Unfortun ately, device-naming conventions are not standardized, and each operating
system has different names for tapes, disks, and so on. (Fortunately, that's not an issue
for what we cover in this book.) Devices have either a b or c in the first character of
'ls -1' o utput:
4 T his feature firsr appeared in M ulrics, bur Mulrics was neve r widely used.
10 Chapter 1 • Inrroduc(ion
$ 16 -1 /dev/tty /dev/hda
brw-rw---- 1 root disk 3, o Aug 31 02 : 31 /dev/hda
crw-rw-rw- 1 root root 5, o Feb 26 08 : 44 / dev / tty
The initial b represents block devices, and a c represents character devices. Device files
are discussed further in Section 5.4, "Obtaining Information about Files," page 139.
When the main () function begins execution, all of these things have already been
put in place for the running program. System calls are available to query and change
each of the above items; covering them is the purpose of this book.
New processes are always created by an existing process. The existing process is termed
the parent, and the new process is termed the child. Upon booting, the kernel handcrafts
the first , primordial process, which runs the program / sbin / ini t; it has process ID
5 Processes can be suspe nded , in which case they are not "running"; however, neither are they terminated. In any
case, in the early stages of the climb up the learning curve, it pays not ro be roo pedantic.
1.2 The Linux/ Unix Process Model 11
1 and serves several administrative functions. All other processes are descendants of
init. (init's parent is the kernel, often listed as process 10 0.)
T h e child- to-parent relationship is one-to-one; each process h as only one parent,
and thus it's easy to find out the PID of the parent. T he parent-to-child relationship
is one-to-many; any given process can create a potentially unlimited number of children.
Thus, there is no easy way for a process to find o ut the PIDs of al l its children. (In
practice, it's no t necessary, anyway.) A parent process can arrange to be notified when
a child process terminates ("dies"), and it can also explicitly wai t for such an event.
Each process's address space (memory) is separate from that of every other. U nless
two processes have made explicit arrangement to share memory, one process cannot
affect the address space of another. This is important; it provides a basic level of securiry
and system reliabiliry. (Fo r efficiency, the system arranges to share the read-only exe-
cutable code of the same program among all the processes running that program . This
is transparent to the user and to the runni ng program.)
The current working directory is the one to which relative pathnames (those that
don't start with a / ) are relative. This is the directory you are "in" whenever you issue
a 'cd s omeplac e' command to the shell.
By co nvention, all programs start out with three files already open: standard input,
standard output, and standard error. These are where input comes fro m , output goes
to, and error messages go to, respectively. In the co urse of this book, we will see h ow
these are put in place. A parent process can open addi tional files and have them already
available for a child p rocess; the child will have to know they' re there, either by way of
some convention or by a command-line argument or environment variable.
T he environment is a set of strings, each of the form 'n ame=v al ue'. Functions exist
for querying and setting environment variables, and child processes inherit the environ-
ment of their parents. Typical environment variables are things like PATH and HOME in
the shell. Many programs look fo r the exis tence and val ue of specific environment
variables in order to control their behavior.
It is important to understand that a single process may execute multiple programs
during its lifetime. U nless explicitly changed, all of the other system-maintained
attributes (cutrent directory, open files, PID, etc.) remain the same. The separation of
"starting a new process" from "choosing which program to run" is a key Unix innovation.
12 Chapter 1 • Introduction
It makes many operations simple and straightforward. Other operating systems that
combine the two operations are less general and more complicated to use.
st ruct my_stru ct s , t;
in t j ;
Original C, functions are declared w ithout the argument list being specified:
e xtern int myfunc() ; Returns int, arguments unknown
Furthermore, function defini tions list the parameter names in the fun ction header,
and then declare the parameters before the functi on body. Parameters of type int d on ' t
have to be declared, and if a function returns int, that doesn't have to be declared either:
myfunc (a , b, c, d) Return type is int
struct my_struct *a, *b ;
double C ; No te, no declaration of parameter d
{
Consider again the same erro neous function call: j = my_ fun c ( - 1, - 2 , 0);' . In
C
Original C, the compiler has no way of knowing that yo u've (accidentally, we assume)
passed the wrong arguments to my_ fune () . Such erroneo us calls generally lead to hard-
to-find runtime problems (s uch as segmentation faults, whereby the program dies), and
the Unix lint program was created to deal with these kinds of things.
So, although function prototypes were a radical departure from existing practice,
their additional type checking was deemed too important to be witho ut, and they were
added to the language with little opposition.
14 Chapter 1 • Introducti o n
In 1990 Standard C, code written in the original style, for both declarations and
definitions, is valid. This makes it possible to continue to compile millions of lines of
existing code with a standard-conforming compiler. New code, obviously, should be
written with prototypes because of the improved possibilities for compile-time
error checking.
1999 Standard C continues to allow original style declarations and definitions.
However, the "implicit int" rule was removed; functions must have a return type, and
all parameters must be declared.
Furthermore, when a ptogram called a function that had not been formally declared,
Original C would create an implicit declaration for the function, giving it a return type
of int o 1990 Standard C did the same, additionally noting that it had no information
about the parameters. 1999 Standard C no longer provides this "auto-declare" feature .
Other notable additions in Standard C are the const keyword, also from C+ +, and
the vola t ile keyword, which the committee invented. For the code you'll see in this
book, understanding the different function declaration and definition syntaxes is the
most important thing.
For V7 code using original style definitions, we have added comments showing the
equivalent prototype. Otherwise, we have left the code alone, preferring to show it ex-
actlyas it was originally written and as you'll see it if you download the code yourself.
Altho ugh 1999 C adds some additional keywords and features beyond the 1990
version, we have chosen to stick to the 1990 dialect, since C99 compilers are not yet
commonplace. Practically speaking, this doesn 't matter: C89 code should compile and
run without change when a C99 compiler is used, and the new C99 features don't affect
our discussion or use of the fundamental Linux/Unix APIs.
6 This section is adapted from an articl e by the author that appeared in Issue 16 of Linux Journal. (See
h ttp : // www .li nu x j ournal . com / article . php? s id=11 3 5.) Reprinted and adapted by permission.
1.4 Why GNU Programs Are Bener 15
it's much better. " GNU software is generally more robust, and performs better, than
standard Unix versions. In this section we look at some of the reasons why, and at the
document that describes the principles of GNU software design.
The GNU Coding Standards describes how to write software for the GNU
project. It covers a range of topics. You can read the GNU Coding Standards online at
ht tp: // www . gnu . org / prep / standa rds . h t ml. See the online version for pointers
to the source files in other formats.
In this section, we describe only those parts of the GNU Coding Standards that relate
to program design and implementation.
7 T hi s statement refers to the HURD kern el, which is srill under develo pment (as of early 2004) . GCC and GN U
C Library (GLIBC) development rake place mostly on Linux-based sysrems today.
16 Chapter 1 • Introduction
pick. The GNU Coding Standards also makes this point. (So metimes, there is no de-
tectable consistent coding style, in which case the program is probably overdue for a
trip through either GNU indent or Unix's cb.)
What we find important about the chapter on C coding is that the advice is good
for any C coding, not just if you happen to be working on a GNU program. So, if
yo u' re just learning C or even if yo u've been working in C (o r C++) for a while, we
recommend this chapter to you since it encapsulates many years of experience.
This rule is perhaps the single most important rule in GNU software design-no
arbitrary Limits. All GNU utilities should be able to manage arbi trary amounts of data.
While this requirement perhaps makes it harder for the programmer, it makes things
much better for the user. At one point, we had a gawk user who regularly ran an awk
program on more than 650,000 files (no, that's n ot a typo) to gather statistics. gawk
would grow to over 192 megabytes of data space, and the program ran fo r around seven
CPU hours. He would not have been able to run his program using another awk
implementation. 8
Utilities reading files should not drop NUL characters, or any other nonprint-
ing characters incLuding those with codes above 0177 The only sensible excep-
tions would be utilities specifically intended for interface to certain types of
terminals or printers that can't handle those characters.
8 T his situatio n occurred circa 1993; [he truism is eve n more obvious roday, as users process gigabytes of log files
with gawk .
18 Chapter 1 • Introduction
It is also well known that Emacs can edit any arbitrary file, including files containing
binary data!
Whenever possible, try to make programs work properly with sequences of
bytes that represent multi byte characters, using encodings such as UTF-8
and others. 9 Check every system call for an error return, unless you know
you wish to ignore errors. Include the system error text (from perro r or
equivalent) in every error message resulting from a failing system call, as well
as the name of the file if any and the name of the utility. Just "cannot open
foo .c" or "stat failed" is not sufficient.
Checking every system call provides robustness. This is another case in which life is
harder for the programmer but better for the user. An error message detailing what ex-
actly went wrong makes finding and solving any problems much easier. 1o
Finally, we quote from Chapter 1 of the GNU Coding Standards, which discusses
how to write your program differently from the way a Unix program may have
been written.
For example, Unix utilities were generally optimized to minimize memory
use; if you go for speed instead, your program will be very different. You
could keep the entire input file in core and scan it there instead of using
stdio. Use a smarter algorithm discovered more recently than the Unix pro-
gram. Eliminate use of temporary files. Do it in one pass instead of two (we
did this in the assembler).
Or, on the contrary, emphasize simplicity instead of speed. For some appli-
cations, the speed of today's computers makes simpler algorithms adequate.
Or go for generality. For example, Unix programs often have static tables or
fixed-size strings, which make for arbitrary limits; use dynamic allocation
instead. Make sure your program handles NULs and other funny characters
in the input files. Add a programming language for extensibility and write
part of the program in that language.
9 Sectio n 13.4 , "Can You Spell That for M e, Please?", page 521 , provides an overvi ew of mu!tibyre characters and
encodings.
10 The m echanics of checking for and reporting errors are discussed in Section 4.3, "Determining What Went
Wrong," page 86.
1.5 Porcability Revisited 19
ISO standards for C and the 2003 standard for c++ since most Linux programming
is done in one of those two languages.
Also, the POSIX standard for library and system call interfaces, while large, has
broad industry support. Writing to POSIX greatly improves the chances of suc-
cessfully moving your code to other systems besides GNU/Linux. This standard
is quite readable; it distills decades of experience and good practice.
Pick the best interface for the job.
If a standard interface does what you need, use it in your code. Use Autoconf to
detect an unavailable interface, and supply a replacement version of it for deficient
systems. (For example, some older systems lack the memmove () function, which
is fairly easy to code by hand or to pull from the GLIBC library.)
Isolate portability problems behind new interfaces.
Sometimes, you may need to do operating-system-specific tasks that apply on
some systems but not on others. (For example, on some systems, each program
has to expand command-line wildcards instead of the shell doing it.) Create a new
interface that does nothing on systems that don't need it but does the correct thing
on systems that do.
Use Autoconffor configuration.
Avoid #ifdef if possible. If not, bury it in low-level library code. Use Autoconf
to do the checking for the tests to be performed with #ifdef.
This book is also a classic. It covers Original C as well as the 1990 and 1999
standards. Because it is current, it makes a valuable companion to The C Pro-
gramming Language. It covers many important items , such as internationaliza-
tion-related types and library functions, that aren ' t in the Kernighan and
Ritchie book.
3. Notes on Programming in C, by Rob Pike, February 21, 1989. Available
on the Web from many sites. Perhaps the most widely cited location is
http : // www . lysato r. liu .s e /c/ pikestyle . h t rnl. (Many other useful
articles are available from one level up: http : // www . lysato r. liu . se /c/ .)
Rob Pike worked for many years at the Bell Labs research center where C and
Unix were invented and did pioneering development there. His notes distill
many years of experience into a "philosophy of clarity in programming" that
is well worth reading.
4. The various links at ht tp: // www . c hris-l o tt . o rg / r es o u r ces / cstyl e/ .
This site includes Rob Pike's notes and several articles by Henry Spencer. Of
particular note is the Recommended C StyLe and Coding Standards, originally
written at the Bell Labs Indian Hill site.
1.7 Summary
• "Files and processes" summarizes the Linux/Unix worldview. The treatment of
fi les as byte streams and devices as files, and the use of standard input, output,
and error, simplify program design and unify the data access model. The permis-
sions model is simple, yet Bexible, applying to both files and direcrories.
• Processes are running programs that have user and group identifiers associated
with them for permission checking, as well as other attributes such as open files
and a current working directory.
• The most visible difference between Standard C and Original C is the use of
function prototypes for stricter type checking. A good C programmer should be
able to read Original-style code, since many existing programs use it. New code
should be written using prototypes.
• The GNU Coding Standards describe how to write GNU programs. They provide
numerous valuable techniques and guiding principles for producing robust, usable
22 Chapter 1 • Introduction
software. The "no arbitrary limits" principle is perhaps the single most important
of these. This document is required reading for serious programmers.
• Making programs portable is a significant challenge. Guidelines and tools help ,
but ultimately experience is needed too.
Exercises
23
C ommand-line option and argument interpretation is usually the first task of
any program. This chapter examines how C (and C++) programs access their
command-line arguments, describes standard routines for parsing options, and takes
a look at the environment.
Here, the user typed four "words." All four words are made available ro the program
as Its arguments.
The second definition is more informal: Arguments are all the words on the command
line except the command name. By default, Unix shells separate arguments from each
other with whitespace (spaces or TAB characters). Quoting allows arguments to include
whitespace:
$ echo here are lots of spaces
here are lots of spaces Th e shell "eats" the spaces
$ echo "here are lots of spaces"
here are lots of spaces Spaces are preserved
Quoting is transparent to the running program; e cho never sees the double-quote
characters. (Double and single quotes are different in the shell; a discussion of the rules
is beyond the scope of this book, which focuses on C programming.)
Arguments can be further classified as options or operands. In the previous two exam-
ples all the arguments were operands: files for I s and raw text for echo.
Options are special arguments that each program interprets. Options change a pro-
gram's behavior, or they provide information to the program. By ancient convention,
(almost) universally adhered to, options start with a dash (a.k.a. hyphen, minus sign)
and consist of a single letter. Option arguments are information needed by an option,
as opposed to regular operand arguments. For example, the fgrep program's - f option
means "use the contents of the following file as a list of strings to search for." See
Figure 2.1.
24
2. 1 O ption and Argumem Co nvemions 25
Command name
Option
Option argument
-
I r-----rr~r
FIGURE 2.1
Command-line components
Thus, patfile is not a data file to search, but rather it's for use by fgre p in defining
the list of strings to search for.
1. Program names should h ave no less than rwo and no more than nine characters.
2. Program names should consist of only lowercase letters and digits.
3. Option names should be single alphanumeric characters. Multidigit options
sho uld not be allowed . For vendors implementing the POSIX utilities, the - w
option is reserved for vendor-specific options.
4 . All options should begin with a '-' character.
5. For options that don' t require option arguments, it sh ould be possible to group
multiple options after a single '- ' character. (For example, 'f o o -a - b -c'
and 'foo - abc' should be treated the same way.)
6. When an option does require an option argument, the argument should be
separated from the option by a space (for example, 'f grep -f pa tfile').
26 Chapter 2 • Argumems, Oprions, and rhe Environmem
The standard, however, does allow for historical practice, whereby sometimes
the option and the operand could be in the same string: ' f g r ep - f p atfile' .
In practice, the getopt () and getopt_ long () functions interpret '- fpatfile'
as '-f patfile', not as ' - f -p -a - t . . . '.
7. Option arguments should not be optional.
This means that when a program documents an option as requiring an option
argument, that option 's argument must always be present or else the program
will fail. GNU getopt () does provide for optional option arguments since
they' re occasionally useful.
8. If an option takes an argument that may have multiple values, the program
should receive that argument as a single string, with values separated by commas
or whitespace.
For example, suppose a h ypothetical program myprog requires a list of users
for its -u option. Then, it should be invoked in one of these two ways:
myprog -u "arnold, joe, jane" Separate with commas
myprog -u "arnold joe jane" Separate with whitespace
In such a case, you're on your own for splitting out and processing each value
(that is, there is no standard routine), but doing so manually is usually
straightforward.
9. Options should come first on the command line, before operands. Unix versions
of getopt () enforce this convention . GNU getopt () does not by default,
although you can tell it to .
10. The special argument ' - -' indicates the end of all options. Any subsequent ar-
guments on the command line are treated as operands, even if they begin with
a dash.
11. The order in which options are given should not matter. However, for mutu-
ally exclusive options, when one option overrides the setting of another, then
(so to speak) the last one wins. If an option that has arguments is repeated, the
program should process the arguments in order. For example, 'myprog - u
arnold - u jane' is the same as 'myprog - u "arno l d , j ane"'. (You have
to enforce this yourself; getopt ( ) doesn ' t help you. )
12. It is OK for the order of operands to matter to a program. Each program should
document such things.
2. 1 Option and Argument Conventions 27
13. Programs that read or write named files should treat the single argument' -' as
meaning standard input or standard output, as is appropriate for the program.
Note that many standard programs don't follow all of the above conventions . The
primary reason is historical compatibility; many such programs predate the codi fYing
of these conventions.
7. Programs can choose to allow long options to begin with a single dash. (This
is common with many X Window programs.)
the chapter.
The GNU Coding Standards devotes considerable space to listing all the long and
shorr options used by GNU programs. If you're writing a program that accepts long
options, see if option names already in use might make sense for you to use as well.
c ha r ** char *
FIGURE 2.2
Memory for argv
By convention, argv [0 1 is the program's name. (For details, see Section 9.1.4.3,
"Program Names and argv [0 1," page 297.) Subsequent entries are the command line
arguments. The final entry in the argv array is a NULL pointer.
2.2 Basic Comma nd-Line Processing 29
argc indicates how m an y arguments there are; since C is zero-based , it is always true
that 'argv [a rgc] == NULL' . Because of this, particul arly in Unix code, you will see
different ways of checking for the end of arguments, such as looping until a counter is
greater than or equal to argc , or until 'argv [i] == 0' or while ' * argv ! = NULL' and
so on . These are all equivalent.
Only 23 lines! There are two points of interest. First , decrementing argc and simul-
taneo usly incrementing argv (lines 12 and 13) are common ways of skipping initial
arguments. Second, the check for -n (line 10) is simplistic. - no-newl ine-at-the-
end also works. (Compile it and try it!)
Manual option parsing is common in V7 code because the ge topt () function hadn't
been invented yet.
Finally, here and in other places throughout the book, we see use of the r eg i s ter
keyword. At one time, this keyword provided a hint to the compiler that the given
variables should be placed in CPU registers, if possible. Use of this keyword is obsolete;
modern compilers all base register assignment on analysis of the source code, ignoring
the r egister keyword. We've chosen to leave code using it alone, but you should be
aware that it has no real use anymore. 2
The arguments arg c and argv are normally passed straight from those of main ( ) .
op t string is a string of option letters. If any letter in the string is followed by a colon,
then that option is expected to have an argument.
2 Wh en we asked Jim M eyerin g, the C oreutils maintainer, abour instances of register in the GNU Coreurils,
he gave us an interesting response. H e removes them wh en modifYing code, bur oth erwise leaves them alon e to
make it easier to inregrate changes submirred against existing versions.
2. 3 Op(io n Parsing: g e top t () and getopt_ long ( ) 31
To use getop t ( ) , call it repeatedly from a whi le loo p unti l it returns - 1. Each time
that it finds a valid option letter, it returns that letter. If the option takes an argument,
opta rg is set to point to it. Consider a program that accepts a - a option that doesn't
take an argument and a - b argument that does:
in t oc ; / * op ti on chara c ter * /
char *b_ opt_arg ;
d efault :
/ * e rr or han dling , see t e x t * /
c ha r *optarg
The argument for an optio n, if the option accepts one.
int opt ind
The current index in argv. When the wh i le loop has finished , rema1l11l1g
operands are found in ar gv [op t ind] through argv [argc- l] . (Remember that
'argv[argc] == NULL' .)
int op t er r
When this variable is nonzero (which it is by default) , ge topt () prints itS own
error messages for invalid options and for missing option argum ents.
int optopt
When an invalid optio n character is fo und, getop t () returns either a ' ? ' or a
, : ' (see below), and opt op t contains the invalid character that was found.
People being human, it is inevitable that programs will be invoked incorrectly, either
with an invalid option or with a missing option argument. In the normal case, getopt ( )
32 Chapter 2 • Arguments, Options, and the Environment
prints its own messages for these cases and returns the ' ? ' character. However, you
can change its behavior in two ways.
First, by setting opt err to 0 before invoking getop t ( ) , you can force get op t ( )
to remain silent when it finds a problem.
Second, if the first character in the opts tring argument is a colon, then getopt ( )
is silent and it returns a different character depending upon the error, as follows:
Invalid option
get opt () returns a ' ?' and optopt contains the invalid option character. (This
is the normal behavior.)
Missing option argument
getopt () returns a ' : ' . If the first character of optst ring is not a colon, then
getopt () returns a '?', making this case indistinguishable from the invalid
optlon case.
Thus, making the first character of op tstring a colon is a good idea since it allows
you to distinguish between "invalid option" and "missing option argument." The cost
is that using the colon also silences get opt ( ) , forcing you to supply your own error
messages. Here is the previous example, this time with error message handling:
int o c; / * option character * /
char *b_opt_ arg;
default :
/ * invalid option * /
fprintf(stderr, "%s: option ' -%c' is invalid : ignored \ n",
argv[ O], optopt ) ;
break;
2.3 Option Parsing: getopt () and getopt_long ( ) 33
A word about flag or option variab le-naming conventions: Much Unix code uses
names of the form xfl g for any given option letter x (for example, nflg in the V7
echo; xflag is also common). This may be great for the program's author, who happens
to know what the x option does wi thout having to check the documentation. But it's
unkind to someone else trying to read the code who doesn' t know the meaning of all
the option letters by heart. It is much better to use names that convey the option's
meaning, such as no_newline for ech o's -n option.
As for standard get opt (), if the first character of optstring is a ' : " then GNU
getopt () distinguishes between "invalid option" and "missing option argument" by
returning' ?' or ' : ' , respectively. The' : ' in opts tring can be the second character
if the first character is ' +' or ' - '.
Finally, if an option letter in opts tring is followed by two colon characters, then
that option is allowed to have an optional option argument. (Say that three times fast!)
Such an argument is deemed to be present if it's in the same argv element as the option,
34 Chapter 2 • Arguments, Options, and the Environment
and absent otherwise. In the case that it's absent, GNU getopt () returns the option
letter and sets optarg to NULL. For example, given-
whil e ((c = getopt(argc, argv, "ab ::" )) ! = 1)
-for - bYANKEES , the return value is 'b ', and op targ points to "YANKEE S", while
for - b or ' - b YANKEE S', the return value is still 'b' but optarg is set to NULL. In the
latter case, "YANKEE S " is a separate command-line argument.
int get opt_long _ only (int argc, char *cons t argY ll,
const char *optst ring,
const s truct opt ion *l ongopts , in t *longindex ) ;
The first three arguments are the same as for get opt ( ) . The next option is a pointer
to an array of st ruc t opt ion, which we refer to as the long options table and which
is described shortly. The longindex parameter, if not set to NULL, points to a variable
which is filled in with the index in longopts of the long option that was found. This
is useful for error diagnostics, for example.
struct option {
co nst char *name ;
int has _arg ;
int *f lag;
int va l;
};
Each long option has a single entry with the values appropriately filled in. The last
element in the array should have zeros for all the values. The array need not be so rted;
get opt_long () does a linear search. H owever, sorting it by long name may make it
easier for a programmer to read.
36 Chapter 2 • Arguments, Options, and the Environment
TABLE 2.1
Values for has_arg
The use of flag and v al seems confusing at first encounter. Let's step back for a
moment and examine why it works the way it does. Most of the time, option processing
consists of setting different Bag variables when different option letters are seen, like so:
while ((c = getopt(argc, argv , ":af :hv " )) != -1) {
switch (c) (
case 'a':
do all 1;
break;
case 'f' :
myfile optarg ;
break;
case 'h' :
do_help 1;
break;
case 'v' :
do_verbose 1;
break;
Error handling code here
When flag is not NULL, getopt_long () sets the variable for you. This reduces the
three cases in the previous swi tch to one case. Here is an example long options table
and the code to go wi th it:
int do_all, do_ help, do_verbose ; / * flag variabl es * /
char *myfile;
No tice that the value passed for the op ts tring argument no longer contains' a ' ,
, h' , or ' v ' . This means that the corresponding short optio ns are not accep ted. To allow
both long and short options, yo u would have to restore the corresponding cas e s fro m
the first example to the swi t c h.
Practically speaking, yo u sho uld write your programs such that each short option
also has a co rresp onding long option. In this case, it's easiest to have fl ag be NULL and
val be the corresponding single letter.
With this change, - Wall is the same as -- all and -Wfil e =myfile is the same as
--fi le =myfile. The use of a semicolon makes it possible for a program to use - Was
a regular option, if desired. (For example, Gee uses it as a regular option, whereas
gawk uses it for POSIX conformance.)
TABLE 2.2
getopt_l ong () return values
Finally, we enhance the previous example code, showing the full swi tch statement:
int do_all, do_help, do_verbose; / * flag variables * /
char *myfile, *user; /* input file, user name * /
};
°, 0, 0, }
°
while {(c = get o pt_long (argc, argv, ": ahvf : u :: W;", l o ngopts, NULL }) != -1 ) {
switch (c ) {
case 'a' :
d o all 1;
br eak;
case 'f':
myfile optarg;
break;
case 'h':
do_help 1;
break;
case 'u':
if (optarg ! = NULL )
user optarg;
else
user " root " ;
break;
case 'v' :
do_verbose = 1;
break ;
case 0 : / * getopt_long( ) set a variable, just keep going * /
break;
2.3 Option Parsing: getopt ( ) and getopt_lo ng ( ) 39
#i f 0
case 1 :
1*
* Use this case if getopt_ long() should go through all
* ar guments . If so , add a leading character to opts tri ng.
* Actual code , if any, go es here .
'I
break;
#endif
case ' : ' : 1 * missing op tion argument * 1
fprin tf(stderr , "%s : opt ion '-%c ' requir es an argument\n ",
argv [O], optopt ) ;
break;
case '?' :
default : 1 * invalid option * 1
fprintf(stderr, "%s : option '- %c' is inva lid : i gnored\n",
argv[O] , opto p t) ;
br eak;
In your programs, you may wish to have comments for each option letter explaining
what each one does. However, if you've used descriptive variable names for each option
letter, comments are not as necessary. (Compare do_verbos e to v f lg .)
You may be wondering, "Gee, I already use GNU/Linux. Why should I include
getopt_long () in my executable, making it bigger, if the routine is already in the C
library?" That's a good question. However, there's nothing to worry about. The source
code is set up so that if it's compiled on a system that uses GLIBC, the compiled files
will not contain any code! Here's the proof, on our system:
$ uname -a Show system name and type
Linux example 2.4.18-14 #1 Wed Sep 4 13 : 35:50 EDT 2002 i686 i686 i386 GNU/Linux
$ Is -1 getopt.o getoptl.o Show file sizes
-rw-r--r-- 1 arnold devel 9836 Mar 24 13 : 55 getopt.o
-rw-r--r-- 1 arnold devel 10324 Mar 24 13:55 getopt1 . o
$ size getopt.o getoptl.o Show sizes included in executable
text data bss dec hex filename
o 0 0 0 o getopt. o
o o o o o getoptl.o
The size command prints the sizes of the various parts of a binary object or exe-
cutable file. We explain the output in Section 3.1 , "Linux/UnixAddress Space," page 52.
What's important to understand right now is that, despite the nonzero sizes of the files
themselves, they don't contribute anything to the final executable. (We think this is
pretty neat.)
Of course, the disadvantage to using environment variables is that they can silently
change a program's behavior. Jim Meyering, the maintainer of the Coreutils, put it
this way:
It makes it easy for the user to customize how the program works without
changing how the program is invoked. That can be both a blessing and a
curse. If yo u write a script that depends on your having a certain environment
variab le set, but then have someone else use that same script, it m ay well fail
(o r worse, silently pro duce invalid results) if that other person d oesn't have
the same environment settings.
Occasionally, environment variables exist, but with empty values. In this case, the
return value will be non-NULL, but the first character pointed to will be the zero byte,
which is the C string terminator, ' \ 0 ' . Your code should be careful to check that the
return value pointed to is not NULL. Even if it isn 't NULL, also check that the string is
not empty if you intend to use its value for something. In any case, don ' t just blindly
use the returned value.
42 Chapter 2 • Arguments, Options, and the Environment
It's possible that a variable already exists in the environment. If the third argument
is true (nonzero) , then the supplied value overwrites the previous one. Otherwise, it
doesn 't. The return value is -1 if there was no memory for the new variable, and 0
otherwise. s e t env () makes private copies of both the variable name and the new value
for storing in the environment.
A simpler alternative to s et env () is putenv ( ) , which takes a single" n ame= v al u e"
string and places it in the environment:
if (putenv ( "PATH= / bin : l usr/bin : lusr/ucb") != 0) {
1* handle fai l ure *1
}
pu tenv () blindly replaces any previous value for the same variable. Also, and perhaps
more importantly, the string passed to puten v () is placed directly into the environment.
This means that if your code later modifies this string (for example, if it was an array,
not a string constant) , the environment is modified also. This in turn means that you
should not use a local variable as the parameter for putenv ( ) . For all these reasons
set env () is preferred.
scratch. If cl earenv () is not available, the GNU/ Linux clearenv(3) manpage recom-
mends using ' envi ron = NUL L ; ' to accomplish the task.
i nt i;
retur n 0;
Although it's unlikely to happen, this program makes sure that environ isn' t NUL L
before attempting to use it.
Variables are kept in the environment in random order. Although some Unix shells
keep the environment sorted by variable name, there is no formal requirement that this
be so , and many shells don 't keep them sorted.
44 Chapter 2 • Arguments, Options, and the Environment
You can then use envp as you would have used environ. Although you may see this
occasionally in old code, we don' t recommend its use; envir o n is the official, standard,
portable way to access the entire environment, should you need to do so.
$ env - PATH=/bin:/usr/bin myprog argl Clear environment, add PATH, run program
$ env -u IFS PATH=/bin:/usr/bin myprog argl Unset IFS, add PATH, run program
The code begins with a standard GNU copyright statement and explanatory comment.
We have omitted both for brevity. (The copyright statement is discussed in Appendix C ,
"GNU General Public License, " page 657. The --help output shown previously is
enough to understand how the program works.) Following the copyright and comments
2.4 The Environment 4S
are header includes and declarations. The 'N_ ( " s tr ing" ) , macro invocati on (line 9 3)
is for use in internationalization and localization of the software, topics covered in
C hapter 13, "Internationalization and Localization," page 485 . For now, you can treat
it as if it were the contained string co nstant.
80 #include <config . h>
81 #include <stdio . h>
82 #include <getopt . h>
83 #include <sys/ types . h>
84 #include <ge topt . h >
85
86 #include "syst em . h"
87 #include "erro r. h"
88 # incl ude "clos e out.h"
89
90 1* The official name of this program (e .g. , no 'g' prefi x ) . *1
91 #define PROGRAM_NAME "env"
92
93 #defin e AUTHORS N_ ("Richard Mlynar i k and Davi d MacKenzie " )
94
95 in t putenv () ;
96
97 e x tern cha r **envi r on;
98
99 1 * The name by wh ich this p r ogram was run . * 1
100 char *program_name;
101
102 static struct o ption const longopts[]
103
104 {" ignore -env ironmen t ", no_ argument , NULL , 'i'} ,
105 {"unset", required_argumen t, NULL, ' u ' },
106 {GETOPT_HEL P_OPTION_DECL},
107 {GETOPT_VERSION_OPTION_DECL } ,
108 {NULL , 0 , NULL , O}
109 };
The GNU Coreutils contain a large number of programs, m any of which perform
the same common tasks (for example, argument parsing) , To make maintenance easier,
m any commo n idioms are defined as macros. GETOPT_ HELP _ OPTI ON_DECL and
GETOPT_VERSION_ OPT I ON (lines 106 and 107) are two such. We examine their defini-
tions shortly. The first function , usage ( ), prints the usage information and exits.
T he _ ( "stri ng " ) macro (line 115, and used throughout the program) is also for
internationalization, and for now you should also treat it as if it were the contained
stnng co nstant.
46 Chapter 2 • Arguments, Opcions, and che Enviro nment
111 void
112 usage (int status )
11 3
11 4 if (status != 0)
115 fprintf (stderr, _ ( "Try '% s --help' for more information. \n"),
11 6 program_name ) ;
117 else
118
119 printf (_ ( " \
120 Usage : %s [O PTION] ... [-] [NAME=VALUE] ... [COMMAND [ARG] . .. ]\ n" ) ,
121 program_name ) ;
122 fputs (_ ( " \
123 Set each NAME to VALUE in the environment and run COMMAND . \ n \
124 \n\
125 -i, --igno re-environment start with an empty environment \n\
126 -u, --unset=NAME remove variable from the environment\n \
127 " ), s tdou t ) ;
128 fputs (HELP_OPTION_DESCRIPTION, stdout ) ;
129 fputs (VERSION_OPTION_DES CR IPTION, stdout);
130 fputs (_ ( " \
131 \ n\
132 A mere - implies -i. If no COMMAND , print the resulting environment . \ n \
133 " ) , stdout ) ;
134 printf (_ ( " \nR eport bugs to <%s>.\n"), PACKAGE_BUGREPORT ) ;
135
136 exit (status);
137 }
The first part of main () declares variables and sets up the internationalization. The
functions setlocale (), bindtextdomain (), and textdomain () (lines 147-149)
are all discussed in Chapter 13, "Internationalization and Localization," page 485. Note
that this program does use the envp argument to main () (line 140). It is the only one
of the Coreutils programs to do so. Finally, the call to a texi t () on line 151 (see Sec-
tion 9.1.5 .3, "Exiting Functions," page 302) registers a Coreutils library function thac
Bushes all pending output and closes stdout, reporting a message if there were problems.
The next bit processes the command-line arguments, using getopt_ long ( ) .
139 int
140 main (register int argc, register char **argv, char **envp )
141
142 char *dummy_environ [ l ] ;
143 int optc ;
144 int ignore_environment = 0 ;
145
146 program_name = argv[O];
147 setlocale (LC_ALL , "" ) ;
148 bindtextdomain (PACKAGE, LOCALEDIR ) ;
149 textdomain (PACKAG E) ;
150
151 atexit (close_stdout) ;
2.4 The Enviro nmenr 47
152
153 whi le (( o p t c = ge top t_long (argc, argv, "+ iu : ", longopts , NULL)) != - 1)
154 (
155 swi tch (optc )
156
157 ca se 0 :
158 b reak;
159 c ase ' i' :
160 ignor e _envir onment 1;
161 brea k ;
162 c ase !u ' :
163 b reak ;
164 c as e _GETOPT_ HELP_CHAR ;
165 ca s e _ GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS) ;
166 defaul t :
167 u s ag e (2);
168
169
170
171 if (optind ! = argc && ! strcmp (a r gv [ optind l , "-"))
172 ignore_e nvir olli~e n t = 1;
H ere are the macros, from src / sys2 . h in the Coreutils distribution, that define
the declarations we saw earlier and the 'cas e_GETOPT_xxx' m acros used above (lines
164- 165);
/ * Factor out s ome of the common --help and -- version processi n g c o d e . */
/ * These enum values ca nnot possibly conflict with the option valu es
o rdinaril y u s ed by commands, including CHAR_MAX + 1, etc . Avoid
CHAR_MIN - 1, as it may equal -1, the getopt end-of-options v alue . */
enum
GETOPT_HELP_CHAR = (CHAR_ MI N - 2) ,
GETOPT_VERSION_CHAR = (CHAR_ MI N - 3 )
};
The upshot of this code is that --help prints the usage message and --version
prints version information. Both exit successfully. ("Success" and "failure" exit statuses
are described in Section 9.1.5.1 , "Defining Process Exit Status," page 300.) Given that
the Coreutils have dozens of utilities , it makes sense to factor out and standardize as
much repetitive code as possible.
Returning to env. c:
174 environ = dummy_environ;
175 envir on[O) = NULL;
176
177 if ( ! ignore_environment )
178 for ( ; *envp; envp++ )
179 putenv ( *envp ) ;
180
181 optind = 0 ; / * Force GNU getopt to re-initialize . * /
182 while ((optc = getopt_long (argc, argv, "+iu:", longopts, NULL )) != -1 )
183 i f (optc == 'u' )
184 putenv ( optarg ) ; /* Requires GNU putenv. */
185
186 if (optind ! = argc && !strcmp (argv[optindJ, "-" )) Skip options
187 ++ optind;
188
189 while (optind < argc && strchr (argv[ optind), ' =' )) Set environment variables
190 putenv (argv[optind++ )) ;
191
192 / * If no program is specified, print the environment and exit. * /
193 if (optind == argc )
194 {
195 while ( *environ )
196 puts (* envir on++ ) ;
197 exit ( EXIT_SUCCESS ) ;
198
Lines 174-179 copy the existing environment into a fresh copy of the environment.
The global variable environ is set to point to an empty local array. The envp parameter
maintains access to the original environment.
Lines 181-184 remove any environment variables as requested by the -u option.
The program does this by rescanning the command line and removing names listed
there. Environment variable removal relies on the GNU putenv () behavior discussed
earlier: that when called with a plain variable name, putenv () removes the environment
variable.
After any options, new or replac~ment environment variables are supplied on the
command line. Lines 189-190 continue scanning the command line, looking for envi-
ronment variable settings of the form 'name=value'.
2.5 Summary 49
Upon reaching line 192, if nothing is left on the command line, env is supposed to
print the new environment, and exit. It does so (lines 195-197).
If arguments are left, they represent a command name to run and arguments to pass
to that new command. This is done with the execvp () system call (line 200), which
replaces the current program with the new one. (This call is discussed in Section 9.l.4 ,
"S tarting New Programs: The exec () Family," page 293; don 't worry about the details
for now.) If this call returns to the current program, it failed. In such a case, env prints
an error message and exits .
200 e xe cvp (argv[optind] , &argv[optind]) ;
201
202
203 int exit_status = (errno == ENOENT ? 127 : 126) ;
204 error (0 , errno , "%s", argv[optind]);
205 exit (e xit_status ) ;
206
207
The exit status values, 126 and 127 (determined on line 203) , conform to POSIX.
127 means the program that execvp () attempted to run didn ' t exist. (ENOENT means
the file doesn ' t have an entry in the directory.) 126 means that the file exists, but
something else went wrong.
2. 5 Summary
• C programs access their command-line arguments through the parameters argc
and argv. The getopt () function provides a standard way for consistent parsing
of options and their arguments. The GNU version of getopt () provides some
extensions, and getopt_1ong () and getopt_1ong_ on1y () make it possible to
easily parse long-style options.
• The environment is a set of 'name=value' pairs that each program inherits from
its parent. Programs can, at their author's whim, use environment variables to
change their behavior, in addition to any command-line arguments. Standard
routines (getenv ( ), setenv () , putenv ( ) , and unsetenv ( )) exist for retrieving
environment variable values, changing them, or removing them. If necessary, the
entire environment is available through the external variable environ or
through the char * * envp third argument to rna in ( ). The latter technique is
discouraged.
50 Chapter 2 • Arguments, Options, and the Environment
Exercises
1. Assume a program accepts options -a, -b, and -c, and that - b requires an ar-
gument. Write the manual argument parsing code for this program, without
using getopt () or getopt_ long ( ). Accept - - to end option processing.
Make sure that - ac works, as do -bYANKEES, -b YANKEES, and -abYANKEES.
Test your program.
2. Implement getopt ( ) . For the first version, don't worry about the case in which
'optstring [0 1 == ,:, '. You may also ignore opterr .
3. Add code for 'optstring [0 1 ' . " and opt err to your verSlOn of
get opt ().
4. Print and read the GNU get opt. h, get op t . c and get opt l . c files.
5. Write a program that declares both env ir on and envp and compares their
values.
6. Parsing command line arguments and options is a wheel that many people
can't refrain from reinventing. Besides get opt () and getopt_l ong ( ) , you
may wish to examine different argument-parsing packages, such as:
• The Plan 9 From Bell Labs arg(2) argument-parsing library,4
• Argp, 5
• Argv,6
• Autoopts'?
• GNU Gengetopt,8
• Opt,9
• PopelO See also the popt(3) manpage on a GNU/Linux system.
7. Extra credit: Why can't a C compiler completely ignore the regist er keyword?
Hint: What operation cannot be applied to a register variable?
• Exercises page 8 1
51
W ithout memory for storing data, it's impossible for a program to get any
work done. (Or rather, it's impossible to get any useful work done.) Real-
world programs can't afford to rely on fixed-size buffers or arrays of data structures.
They have to be able ro handle inputs of varying sizes, from small ro large. This in
turn leads to the use of dynamically allocated memory--memory allocated at runtime
instead of at compile time. This is how the GNU "no arbitrary limits" principle is
put into action.
Because dynamically allocated memory is such a basic building block for real-world
programs, we cover it early, before looking at everything else there is to do. Our
discussion focuses exclusively on the user-level view of the process and its memory;
it has nothing to do with CPU architecture.
52
3.1 Linux/Unix Address Space 53
Zero-initialized data
Global and statically allocated data that are initialized to zero by default are kept
in what is colloquially called the BSS area of the process. ! Each process running
the same program has its own BSS area. When running, the BSS data are placed
in the data segment. In the executable file, they are stored in the BSS section.
The format of a Linux/U nix executable is such that only variables that are initialized
to a nonzero value occupy space in the executable's disk file. Thus, a large array
declared 'stat ic char somebuf [2048] ; ', which is automatically zero-filled,
does not take up 2 KB worth of disk space. (So me compilers have options that let
you place zero-initialized data into the data segment.)
Heap
The heap is where dynamic memory (obtained by ma llo c () and friends) comes
from. As memory is allocated on the heap , the process's address space grows, as
you can see by watching a running program with the ps command.
Although it is possible to give memory back to the system and shrink a process's
address space, this is almost neve r done. (We distinguish between releasing no-
longer-needed dynami c memory and shrinking the address space; this is discussed
in more detail later in this chapter.)
It is rypical for the heap to "grow upward. " This means that successive items that
are added to the heap are added at addresses that are numerically greater than
previous items. It is also rypical for the heap to start immediately after the BSS
area of the data segment.
Stack
The stack segment is where local variables are allocated. Local variables are all
variables declared inside the opening left brace of a function body (or other left
brace) that aren't defined as s tatic .
On most architectures, function parameters are also placed on the stack, as well
as "invisible" bookkeeping information generated by the compiler, such as room
for a function return value and storage for the return address representing the return
from a function to its caller. (Some architectures do all this with registers.)
I BSS is an acronym for "B lock Started by Symbol," a mnemonic from the IBM 7094 asse mbler.
S4 Chapter 3 • User-Level Memory Managemenr
It is the use of a stack for function parameters and return values that makes it
convenient to write recursive functions (functions that call themselves).
Variables stored on the stack" disappear" when the function containing them re-
turns; the space on the stack is reused for subsequent function calls.
On most modern architectures, the stack "grows downward," meaning that items
deeper in the call chain are at numerically lower addresses.
When a program is running, the initialized data, BSS, and heap areas are usually
placed into a single contiguous area: the data segment. The stack segment and code
segment are separate from the data segment and from each other. This is illustrated in
Figure 3.1.
High Address
Program Stack
STACK SEGMENT
Possible "hole"
in address space
Heap
Globals and
Static variables
(Data)
Low Address
Executable code
(shared)
TEXT SEGMENT
FIGURE 3.1
LinuxjUnix process address space
3.1 Linux/U nix Address Space ss
Although it's theoretically possible for the stack and heap to grow into each other,
the operating system prevents that event, and any program that tries to make it happen
is asking for trouble. This is particularly true on modern systems, on which process
address spaces are large and the gap between the top of the stack and the end of the
heap is a big one. The different memory areas can have different hardware memory
protection assigned to them. For example, the text segment might be marked "execute
only," whereas the data and stack segments would have execute permission disabled.
This practice can prevent certain kinds of security attacks. The details, of course, are
hardware and operating-system specific and likely to change over time. Of note is that
both Standard C and c++ allow canst items to be placed in read-only memory. The
relationship among the different segments is summarized in Table 3.l.
TABLE 3 .1
Executable program segments an d their locations
The size program prints out the size in bytes of each of the text, data, and BSS
sections, along with the total size in decimal and hexadecimal. (The c h 0 3 -memaddr. c
program is shown later in this chapter; see Section 3.2.5, "Address Space Examination,"
page 78.)
$ cc -0 ch03-memaddr . c -0 ch03-memaddr Compile the program
$ Is -1 ch03-memaddr Show total size
-rwxr- x r-x 1 arnold devel 12320 Nov 24 16 : 4 5 ch03-memaddr
$ size ch03-memaddr Show component sizes
tex t data bss dec hex fil ename
1458 276 8 1742 6ce c h 03-memaddr
$ strip ch03-memaddr Remove symbols
$ Is -1 chO 3 -memaddr Show total size again
- rwxr-xr - x 1 arnold devel 3480 Nov 24 16 : 45 ch03-memaddr
$ size chO 3 -memaddr Component sizes haven't changed
tex t da t a bss dec hex filename
1458 276 8 1742 6ce ch03 - memaddr
56 Chapter 3 • User-Level Memory Management
The total size of what gets loaded into memory is only 1742 bytes, in a file that is
12,320 bytes long. Most of that space is occupied by the symbols, a list of the program's
variables and function names. (The symbols are not loaded into memory when the
program runs.) The strip program removes the symbols from the object file . This can
save significant disk space for a large program, at the cost of making it impossible to
debug a core dump2 should one occur. (On modern systems this isn' t worth the trouble;
don ' t use strip.) Even after removing the symbols, the file is still larger than what gets
loaded into memory since the object file format maintains additional data about the
program, such as what shared libraries it may use, if any. 3
Finally, we'll mention that threads represent multiple threads of execution within a
single address space. Typically, each thread has its own stack, and a way to get thread
local data, that is, dynamically allocated data for private use by the thread. We don ' t
otherwise cover threads in this book, since they are an advanced topic.
2 A core dump is the memory image of a running process created when the process terminates unexpectedly. It may
be used later for debugging. Unix systems named the file core, and GNU/Linux systems use core. pid, where
pi d is the process 10 of the process that died.
3 The description here is a deliberate simplificati on. Runn ing programs occupy much more space than the size
progran1 indicates, since shared libraries are included in the address space. Also, the data segment will grow as a
program allocates memory.
3.2 Memory Allocarion 57
of a certain initial size, you can change its size with the rea lloc () function. D ynamic
memory is released with the fr ee () function.
Debugging the use of dynamic memory is an important top ic in its own right. We
discuss tools for this purpose in Section 15.5.2, "Memory Allocation Debuggers, "
page 612.
voi d *call oc(s ize_ t nmemb, s ize_t siz e ) ; Allocate and zero fill
v oid *mal loc ( si ze_ t si z e ) ; Allocate raw memory
vo id fr ee (v o i d *ptr ) ; Release memory
void *real loc(vo i d *ptr, s ize_t size) ; Change size of existing allocation
The allocation functions all return rype void *. This is a typefess or generic pointer;
all yo u can do with such a pointer is cast it to a different rype and assign it to a ryped
pointer. Examples are coming up,
The rype s iz e _ t is an unsigned integral rype that represents amounts of memory.
It is used for dynamic memory allocation, and we see many uses of it throughout the
book. On most modern systems, size_t is uns igned l ong, but it's better to use
size_t explicitly than to use a plain uns i gned integral rype.
The ptrdi f f _t rype is used for address calculations in pointer arithmetic, such as
calculating where in an array a pointer may be pointing:
#de fin e MAXBUF ...
c har *p;
c ha r buf [MAXBUF ] ;
p trdiff_ t where;
p = buf;
while ( s ome condi t ion )
P += something ;
The <stdlib.h> header file declares many of the standard C library routines and
rypes (such as siz e _ t), and it also defines the preprocessor constant NULL, which rep-
resents the" null" or invalid pointer. (This is a zero value, such as 0 or ' ( (va id *) 0)' .
58 Chapter 3 • User-Level Memory Management
The C++ idiom is to use 0 explicitly; in C, however, NULL is preferred, and we find it
to be much more readable for C code.)
The steps shown here are quite boilerplate. The order is as follows:
1. Declare a pointer of the proper rype to point to the allocated memory.
2. Calculate the size in bytes of the memory to be allocated. This involves multi-
plying a count of objects needed by the size of the individual object. This size
in turn is retrieved from the C sizeof operator, which exists for this purpose
(among others). Thus, while the size of a particular struet may vary across
compilers and architectures, sizeof always returns the correct value and the
source code remains correct and portable.
When allocating arrays for character strings or other data of type ehar, it is
not necessary to multiply by sizeof (ehar) , since by definition this is always
1. But it won' t hurt anything either.
3. Allocate the storage by calling mall oe ( ) , assigning the function's return value
to the pointer variable. It is good practice to cast the return value ofmalloc ()
3.2 M emo ry Allocarion 59
Once we've allocated memory and set coordi nates to point to it, we can then treat
coo r dinat e s as if it were an array, although it's really a pointer:
int cur_x, cur_Y t cur_Z i
siz e_t an_index;
an_i nde x = someth ing;
cur_x coordina t es (an_ index].x;
cur_y = coordina tes (an_i ndex] . y ;
cur_z = co ordina tes [an_index] . z;
The compiler generates correct code for indexing through the pointer ro retrieve the
members of the sttucture at coordi na t es [an_index 1 .
I NOTE The memory returned byma lloc () is not initialized. It can contain any
j[ random garbage. You should immediately initialize the memory with valid data
I or at least with zeros . To do the latter, use mems et () (discussed in Section 12 .2,
m " Low-Level Memory: The memXXX () Functions, " page 432 ):
ffi memset(coordinates , '\0 ' , amount) ;
I
ill
Another option is to use ca lloc ( ) , described shortly.
This approach guarantees that the mall oc () will allocate the correct amount of
memory without your having to consult the declaration of p ointer. If p o inter's type
later changes, the s i zeo f operator automatically ensures that the count of byres to al-
locate stays correct. (Geoffs technique omits the cast that we just discussed. Having
the cast there also ensures a diagnostic if po i n t e r's type changes and the call to
mallo c ( ) isn't updated.)
Accessingfreed memory
If unchanged, c oo r d i nates continues to point at memory that no longer belongs
to the application. This is called a dangling pointer. In many systems, you can get
away with continuing to access this memory, at least until the next time more
memory is allocated or freed. In many others though, such access won ' t work.
In sum, accessing freed memory is a bad idea: It's not portable or reliable, and the
GNU Coding Standards disallows it. For this reason, it's a good idea to immediately
set the program's pointer variable to NULL. If you then accidentally attempt to
access freed memory, YOut program will immediately fai l with a segmentation
fault (before you've released it to the world, we hope).
Freeing the same pointer twice
This causes "undefined behavior. " Once the memory has been handed back to
the allocation routines, they may merge the freed block with other free storage
under management. Freeing something that's already been freed is likely to lead
to confusion or crashes at best, and so-called double frees have been known to
lead to security problems.
3. 2 Memory Allocarion 61
This call won't work, and it's likely to lead to disastrous consequences, such as a
crash. (This is because m any ma lloe () implememations keep "bookkeeping"
information in font o/the ret urned data. When free () goes to use that informa-
tion, it will find invalid data there. Other implemematio ns have the bookkeeping
information at the end of the allocated ch unk; the same issues apply.)
Buffer overruns and underruns
Accessing memory outside an allocated chunk also leads to undefined behavior,
again because this is likely to be bookkeeping information or possibly memory
that's not even in the address space. Writing into such memory is much worse,
since it's likely to destroy the bookkeeping data.
Failure to .free memory
Any dynamic memory that's not needed should be released. In particular, memory
that is allocated inside loo ps or recursive or deeply nested function calls should
be carefully managed and released. Failure to take care leads to memory leaks,
whereby the process's memory can grow without bounds ; eventually, the process
dies from lack of memory.
This si tuation can be particularly pernicious if memory is allocated per input
record or as some other function of the input: The memory leak won' t be noticed
when run on small inputs but can suddenly become obvious (and embarrassing)
when run on large ones . T his error is even worse for systems that must run contin-
uously, such as telephone switching systems. A memory leak that crashes such a
system can lead to significant monetary or other damage.
Even if the program never dies for lack of memory, constantly growing programs
suffer in performance, because the operating sys tem has to manage keeping in-use
data in physical m emory. In the worst case, this can lead to behavior known as
thrashing, whereby the operating system is so busy m oving the contents of the
address space into and out of physical memory that no real work gets done.
62 Chapter 3 • User-Level M em ory Management
While it's possible for f r ee () to hand released memory back to the system and shrink
the process address space, this is almost never done. Instead, the released memory is
kept available for allocation by the next call to malloc ( ) , calloc ( ) , or reall oc ( ) .
Given that released memory continues to reside in the process's address space, it may
pay to zero it out before releasing it. Security-sensitive programs may choose to do this,
for example.
See Section 15.5.2, "Memory Allocation Debuggers, " page 612, for discussion of a
number of useful dynamic-memory debugging tools.
coordinates = newcoords;
/ * cont inue usi n g coordinates ... */
As with mall oc ( ) , the steps are boilerplate in nature and are similar in concept:
1. Compute the new size to allocate, in byres.
2. Call rea lloc () with the original pointer obtained from malloc () (or from
calloc () or an earlier call to r ealloc ( ) ) an d the new size.
3.2 Memory Allocarion 63
3. Cast and assign the return value of realloe (). More discussion of this shortly.
4. As for malloe ( ), check the return value to make sure it's not NULL. Any
memory allocation routine can fail.
When growing a block of memory, realloe () often allocates a new block of the
right size, copies the data from the old block into the new one, and returns a pointer
to the new one.
When shrinking a block of data, realloe () can often just update the internal
bookkeeping information and return the same pointer. This saves having to copy the
original data. However, if this happens, don't assume you can still use the memory beyond
the new size!
In either case, you can assume that if realloe () doesn ' t return NULL , the old data
has been copied for yo u into the new memory. Furthermore, the old pointer is no
longer valid, as if yo u had called free () with it, and you should not use it. This is true
of all pointers into that block of data, not just the particular one used to call free () .
You may have noticed that our example code used a separate variable to point to the
changed storage block. It would be possible (but a bad idea) to use the same initial
variable, like so:
coordinates = realloc(coordinates, new_amount);
This is a bad idea for the following reason. When realloe () returns NULL, the
original pointer is still valid; it's safe to continue using that memory. However, if yo u
reuse the same variable and realloc () returns NULL, you've now lost the pointer to
the original memory. That memory can no longer be used. More important, that
memory can no longer be freed! This creates a memory leak, which is to be avoided.
There are some special cases for the Standard C version of reall oc ( ) : When the
ptr argument is NULL, realloe () acts like malloe () and allocates a fresh block of
storage. When the size argument is 0 , realloe () acts like free () and releases the
memory that ptr points to. Because (a) this can be confusing and (b) older systems
don' t implement this feature, we recommend using malloe () when you mean
malloe () and free () when you mean free ( ) .
64 Chapter 3 • User-Level Memory Management
Here is another, fairly subtle, "gotcha.,,4 Consider a routine that maintains a stati c
pointer to some dynamically allocated data, which the routine occasionally has to grow.
It may also maintain automatic (that is, local) pointers into this data. (For brevity, we
omit error checking code. In production code, don' t do that.) For example:
void manage_table (void)
{
static struct table *table;
struct table *cur, *p;
int i;
size_t count;
This looks straightforward; ma nage_table () allocates the data, uses it, changes the
size, and so on. But there are some problems that don't jump off the page (or the screen)
when you are looking at this code.
In the line marked 'PROBLEM 1', the c ur pointer is used to update a table element.
However, c ur was assigned on the basis of the initial value of table. If some
c ondi bon was true and reall o c () returned a different block of memory, cur now
points into the original, freed memory! Whenever table changes, any pointers into
the memory need to be updated too. What's missing here is the statement ' cur = &
table [ i 1 ;' after table is reassigned following the call to reall o c ( ) .
The two lines marked ' PROBLEM 2' are even more subtle. In particular, suppose
other_ r outine () makes a recursive call to manage_table ( ) . T he t able variable
could be changed again, completely invisib ly! Upon return from other_r outine () ,
the value of cu r co uld once again be invalid.
One might think (as we did) that the only solution is to be aware of this and supply
a suitably commented reassignment to cu r after the function call. However, Brian
Kernighan kindly set us straight. If we use indexing, the pointer maintenance iss ue
doesn't even arise:
table = ( struc c table *) mal loc (count * siz e of (struct cable )) ;
/ * f i ll table * /
Using indexing doesn' t solve the problem if you have a global copy of the original
pointer to the allocated data; in that case, you still have to worry about updating your
global structures after calling r ealloe ( ) .
m
I NOTE As with malloe ( ) , whe n you grow a piece of memory, the newly
~ allocated memory returned from realloe () is not zero-filled . You must clear
I it you rself with mems et () if that's necessary, since realloe () only allocates
@ th e fresh memory; it doesn 't do anything else.
!li
Conceptually, at least, the ealloe () code is fairly simple. Here is one possible
implementation :
66 Chapter 3 • User-Level Memory M anagement
Many experienced programmers prefer to use eal loc () si nce then there's never any
question about the contents of the newly allocated memory.
Also, if you know you'll need zero-filled memory, you should use ea lloe ( ) , because
it's possible that the memory mallo e () returns is already zero-filled. AJthough yo u,
the programmer, can' t know this, ealloe () can know about it and avoid the call
to memset ( ) .
In three short paragraphs, Ri chard Stallman has distilled the important principles
for doing dynamic memory management with malloe ( ). It is the use of dynamic
3.2 Memory Allocation 67
memory and the "no arbitrary limits" principle that makes GNU programs so robust
and more capable than their Unix counterparts.
W e do wish to point out that the C standard requires r ealloe () to not destroy the
original block if it returns NU LL .
The nextfr ee variable points to a linked list of NOD E structures. The getnode ( ) macro
pulls the first structure off the list if one is there. Otherwise, it calls mor e_nodes () to
allocate a new list of free NODES. T he fr eenode ( ) macro releases a NOD E by putting it
at the head of the list.
(ftp: // ftp.gnu. o rg / gnu / make / make- 3 .80.tar.gz). It can be found in the file
read. c .
Following the "no arbitrary limits" principle, lines in a Makefile can be of any
length. Thus, this routine's primary job is to read lines of any length and make sure
that they fit into the buffer being used.
A secondary job is to deal with continuation lines. As in C, lines that end with a
backslash logically continue to the next line. The strategy used is to maintain a buffer.
As many lines as will fit in the buffer are kept there, with pointers keeping track of the
start of the buffer, the current line, and the next line. Here is the structure:
struct ebuffer
The size field tracks the size of the entire buffer, and f p is the FILE pointer for the
input file. The fl oc structure isn' t of interest for studying the routine.
The function returns the number of lines in the buffer. (The line numbers here are
relative to the start of the function , not the source file. )
1 static long
2 readline (ebuf ) static long readline(struct ebuffer *ebuf)
3 struct ebuffer *ebuf;
4
5 char *p;
6 char *end;
7 char *start ;
8 long nlines = 0 ;
9
10 / * The behaviors between string and stream buffers are differ e nt enough to
11 warrant different functions . Do the Right Thing . */
12
13 if ( !ebuf->fp)
14 return readstring (ebuf);
15
16 / * When reading from a file, we always start over at t h e beginning of the
17 buffer for each new line. */
18
19 p = start = ebuf->bufstart;
20 end = p + ebuf->size ;
21 *p= '\0 ';
3.2 Memory Alloca(ion 69
We start by noticin g that GNU Make is written in K&R C for maximal portability.
T he initial part declares variables, and if the input is coming from a string (s uch as
fro m the expansion of a macro) , the code hands things off to a different function,
re adstring () (lines 13 and 14) . The test ' ! ebuf -> fp' (line 13) is a shorter (and less
clear, in our opinion) test for a null pointer; it's the same as 'ebu f ->fp == NULL' .
Lines 19- 21 initialize the pointers, and insert a NUL byte, which is the C string
terminator character, at the end of the buffer. The function then starts a loop (lines
23-9 5) , which runs as lo ng as there is more inp ut.
23 wh i l e ( fgets (p, end - p, ebu f->f p) ! = 0)
24 (
25 char *p2 ;
26 unsigned l ong len;
21 int backs lash ;
28
29 len = strlen (p ) ;
30 if (len == 0)
31 (
32 / * This only happens when the fir st thing on the li n e is a '\0 '.
33 It is a pre tty hop eless cas e , but (wonder of wonders ) Athena
34 lossage strike s again! (xmkrnf p uts NUL s in its make file s . )
35 There is nothi ng really to be d one; we syn thesiz e a newli ne so
36 the following line doe sn't appe ar to be part of this line . */
37 error (&ebuf ->floc,
38 _( "warni ng : NUL cha ra cter seen; re st of line ignored " ));
39 p [0 J = ' \ n';
40 len = 1;
41 }
The fg ets () function (line 23) takes a pointer to a buffer, a co unt of bytes to read,
and a FILE * vari able for the fi le to read from. It reads one less than the count so that
it can terminate the buffer with ' \ 0 ' . T his fun ction is good since it allows yo u to avoid
buffer overflows . It stops upon encountering a newline or end-of-file, and if the newline
is there, it's placed in the buffer. It returns NULL on failure or the (pointer) value of the
first argument on success.
In this case, the arguments are a pointer to the free area of the buffer, the amo unt
of room left in the buffer, and the FILE pointer to read from.
The comment o n lines 32- 36 is self-explanatory; if a zero byte is encountered, the
program prints an error message and pretends it was an empty line. After compensating
for the NUL byte (lines 30-4 1), the code continues .
70 Chapter 3 • User-Level Memory Management
Lines 43-52 increment the pointer into the buffer past the data just read. The code
then checks whether the last character read was a newline. The construct p [-1] (line 48)
looks at the character in front ofp, just as p [ 0] is the current character and p [1] is the
next. This looks strange at first, but if you translate it into terms of pointer math,
* (p-1) , ir makes more sense, and the indexing form is possibly easier to read.
If the last character was not a newline, this means that we've run out of space, and
the code goes off (with g o t o ) to get more (line 49). Otherwise, the line count is
incremented.
54 #if !def ined (WINDOWS32) && ! defined ( __ MSDOS __ )
55 / * Check to see if the line was really ended with CRLF; if so ignore
56 the CR . * /
57 if ((p - start) > 1 && p[-2J == ' \r' )
58 {
59 - -p;
60 p[-lJ '\n' ;
61
62 #endif
Lines 54-62 deal with input lines that follow the Microsoft convention of ending
with a Carriage Return-Line Feed (CR-LF) combination, and not just a Line Feed (or
newline), which is the Linux/Unix convention. Note that the #ifdef excludes the code
on Microsoft systems; apparently the <stdi o . h > library on those systems handles this
conversion automatically. This is also true of other non-Unix systems that support
Standard C.
64 backs lash 0;
65 for (p2 = p - 2 ; p2 >= start; --p2)
66
67 if (*p2 ! = ' \ \ ' )
68 break;
69 backslash = ! backslash;
70
71
3.2 Memory Allocation 71
72 if (! backs lash)
73 {
74 p[-lJ = '\0' ;
75 brea k;
76
77
78 /* It was a backslash/newline combo . If we h ave mo re space, read
79 anothe r line . */
80 if (end - p >= 80)
81 continue ;
82
83 / * We need more space at the end of our buffer,
so realloc it .
84 Make sure to preserve the current offset of p . */
85 more_buffer :
86
87 unsigned long off = p - start ;
88 ebuf->size *= 2 ;
89 start = ebuf->buffer = ebuf->bufstart (char * ) xrealloc ( start,
90 ebuf->size) ;
91 p = start + off ;
92 end = start + ebuf->size;
93 *p = ' \ 0' ;
94
95
So far we've dealt with the mechanics of getting at least one complete line into the
buffer. The next chunk handles the case of a continuation line. It has to make sure,
though, that the final backslash isn't part of multiple backslashes at the end of the line.
It tracks whether the total number of such backslashes is odd or even by toggling the
backs l ash variable from 0 to 1 and back. (Lines 64-70.)
If the number is even, the test'! bac ks la s h' (line 72) will be true. In this case, the
final newline is replaced with a NUL byte, and the code leaves the loop.
On the other hand, if the number is odd, then the line contained an even number
of backslash pairs (representing escaped backslashes, \ \ as in C), and a final backslash-
newline combination. 5 In this case, if at least 80 free bytes are left in the buffer, the
program continues around the loop to read another line (lines 78-81). (The use of
the magic number 80 isn't great; it would have been better to define and use a symbolic
constant.)
5 This code has the scent of practical experience abo ut it: It wo uldn 't be surprising to lea rn that earli er versions
simply checked for a final backslash before the newline, until so meone co mplained th at it didn 't wo rk when there
we re multiple backslashes at th e end of the line.
72 Chapter 3 • User-Level Memory Management
Upon reaching line 83, the program needs more space in the buffer. Here's where
the dynamic memory management comes into play. Note the comment about preserving
p (lines 83-84); we discussed this earlier in terms of reinitializing pointers into dynamic
memory. end is also reset. Line 89 resizes the memory.
Note that here the function being called is xrealloe ( ) . Many GNU programs use
"wrapper" functions around malloe () and realloe () that automatically print an
error message and exit if the standard routines return NULL. Such a wrapper might look
like this:
extern const char *myname; / * se t in main( ) * /
if (p == NULL ) {
fprintf(stderr, "%s: out of memory' \ n", myname ) ;
exit (1 ) ;
Thus, if xrealloe () returns, it's guaranteed to return a valid pointer. (This strategy
complies with the "check every call for errors" principle while avoiding the code clutter
that comes with doing so using the standard routines directly.) In addition, this allows
valid use of the construct 'ptr = xrealloc (ptr , new_size)', which we otherwise
warned against earlier.
Note that it is not always appropriate to use such a wrapper. If you wish to handle
errors youtself, you shouldn't use it. On the other hand, if running out of memory is
always a fatal error, then such a wrapper is quite handy.
97 if (ferr or (ebuf->fp ) )
98 pfatal_with_name (ebuf->fl o c . filenm ) ;
99
100 / * If we found some lines , return how many .
101 If we didn ' t, but we did find _something_, that indicates we read the last
102 line of a file with n o final newline; return 1 .
103 If we read nothing, we're at EOF; return -1 . */
104
105 return nlines ? nlines : p == ebuf->bufstart ? - 1 : 1;
106
3. 2 Memory Allocation 73
Finally, the read l i ne () ro utine checks for I/O errors, and then returns a descriptive
return value. The fun ction pf atal_wi th_name () (line 98) doesn ' t return.
3 .2.1.9 GLlBC Only: Re ading Entire Lines: getl ine () and getde lim ( )
Now that yo u've seen how to read an arbitrary-length line, you can breathe a sigh
of relief that yo u don ' t h ave to write such a function for yourself. GLIBC provides two
functions to do this for you:
#de fine _GNU_SOURCE 1 CUBe
#inc l ude <stdio . h>
#include <sys/typ e s. h> / * for ssize_ t */
Defining the constant _GNU_SOURCE brings in the declaration of the getl ine ( )
and getdelim() functions. Otherwise, they're implicitly declared as returning int o
<sys / typ es. h> is needed so you can declare a variable of eype ssi ze_t ro hold the
return value. (An ss i ze_ t is a "signed size_t ." It's meant for the same use as a size_t ,
bur for places where yo u need to be ab le to hold n egative values as well.)
Both functi ons manage dynamic storage for you, ensuring that the buffer containing
an input line is always big enough to hold the input line. They differ in that getline ( )
reads until a newline character, and get delim () uses a user-provided delimiter character.
The com mon arguments are as fo llows:
char ** lineptr
A pointer to a char * pointer to hold the address of a dynamically allocated
buffer. It sho uld be initialized to NULL if yo u want getl ine () to do all the work.
O therwise, it should point to storage previo usly obtained from malloc ( ) .
size t *n
An indication of the size of the buffer. If yo u allocated yo ur own buffer, *n sho uld
co ntain the buffer's size. Both functions update *n to the new buffer size if they
change it.
FI LE *str eam
The location from which to ge t input characters.
74 Chapter 3 • U ser-Level Memo ry M anagement
The functions return -1 upon end-of-file or error. The strings hold the terminating
newline or delimiter (if there was one) , as well as a terminating zero byte. Using
get1ine () is easy, as shown in ch 03-getline . c :
/ * ch03- getl i n e . c -- - d e monstrate g e tl i ne() . */
#define _ GNU_SOURCE 1
#include <s t dio.h>
# include <s ys /types . h>
int main (v oi d )
return 0 ;
H ere it is in action, showing the size of the buffer. The third input and output lines
are purposely long, to force get l ine () ro grow the buffer; thus, they wrap around:
$ ch03-getline Run the program
this is a line
(120) th i s i s a line
And another line.
( 12 0) And a nother line .
A llllllllllllllllloooooooooooooooooooooooooooooooonnnnnnnnnnnnnnnnnnngggg
gggggggg llliiiiiiiiiiiiiiiiiiinnnnnnnnnnnnnnnnnnnneeeeeeeeee
(240) A ll l llll llllll llll oooooooooo o ooooooooooooo ooo ooooonnnnnnnnnnnnnnnn g
nnnggggggggggg llli ii i iiii iiii iiii ii innnnnnnnnnnnnnnnnnnn e e e e eeeeee
if (copy != NULL )
strcpy ( copy, str ) ;
With the 200 1 POSIX standard, programmers the world over can breathe a little
easier: This function is now part of POSIX as an XSI extension:
#include <string . h> XSI
The brk () system call actually changes the process's address space. The address is a
pointer representing the end of the data segment (really the heap area, as shown earlier
in Figure 3.1). Its argument is an absolute logical address representing the new end of
the address space. It returns 0 on success or - 1 on failure.
The s b r k () function is easier to use; its argument is the increment in bytes by which
to change the address space. By calling it with an increment of 0, you can determine
where the address space currently ends. Thus, to increase your address space by 32
bytes, use code like this:
char *p = (char *) sbrk (O) ; /* get current end of address space * /
if (brk(p + 32) < 0) (
/ * handle error * /
Practically speaking, you would not use brk () directly. Instead, you would use
sbr k () exclusively to grow (or even shrink) the address space. (We show how to do
this shortly, in Section 3.2.5, "Address Space Examination," page 78.)
Even more practically, you should never use these routines. A program using them
can' t then use rna ll oc () also, and this is a big problem, since many parts of the standard
library rely on being able to use rna l l oc ( ) . Using b r k () or sbr k () is thus likely to
lead to hard-to-find program crashes.
But it's worth knowing about the low-level mechanics , and indeed, the rnalloc ( )
suite of routines is implemented with sbr k () and brk ( ) .
The all oca () function allocates size bytes from the stack. What's nice about this
is that the allocated storage disappears when the function returns. There's no need to
explicitly free it because it goes away automatically, just as local variables do .
At first glance, alloca () seems like a programming panacea; memory can be allo-
cated that doesn't have to be managed at all. Like the Dark Side of the Force, this is
indeed seductive. And it is similarly to be avoided, for the following reasons:
• The function is nonstandard; it is not included in any formal standard, either ISO
Cor POSDC
• The function is not portable. Although it exists on many Unix systems and
GNU/Linux, it doesn't exist on non-Unix systems. This is a problem, since it's
often important for code to be multiplatform, above and beyo nd just Linux
and Unix.
• On some systems, alloca () can't even be implemented. All the world is not an
Intel x86 processor, nor is all the world GCe.
• Quoting the manpage (emphasis added): "The all oca function is machine
and compiler dependent. On many systems its implementation is buggy. Its use is
disco uraged."
• Quoting the manpage again : "On many systems all oca cannot be used inside
the list of arguments of a function call, because the stack space reserved by alloca
would appear on the stack in the middle of the space for the fun ction arguments."
• It encourages sloppy coding. Careful and correct memory management isn't hard;
you just to have to think about what you're doing and plan ahead.
GCC generally uses a built-in version of the function that operates by using inline
code. As a result, there are other consequences of alloca ( ). Quoting again from
the manpage:
The fact that the code is inlined means that it is impossible to take the address
of this function, or to change its behavior by linking with a different library.
The inlined code often consists of a single instruction adjusting the stack
pointer, and does not check for stack overflow. Thus, there is no NULL error
return.
78 Chapter 3 • User-Level Memory Managemem
The manual page doesn 't go quite far enough in describing the problem with Gee's
built-in alloca ( ) . If there's a stack overflow, the return value is garbage. And you have
no way to tell! This Haw makes GCC's alloca () impossible to use in robust code.
All of this should convince you to stay away from alloca () for any new code that
you m ay write. If yo u' re going to have to write portable code using malloc () and
free () anyway, there's no reason to also write code using alloca ( ) .
T his program prints the locations of the two functions main () and afune () (lines
22-23). It then shows how the stack grows downward, letting a f une ( ) (lines 51 -63)
print the address of successive instantiations of its local variable s taek_var. (s t a e k_v ar
is purposely declared a ut o, to emphasize that it's on the stack.) It then shows the loca-
tion of memory allocated by a lloe a () (lines 28-32). Finally it prints the locations of
data and BSS variables (lines 34-38), and then of memory allocated directly through
sbrk () (lines 40-48). Here are the results when the program is run on an Intel
GNU/Lin ux system:
$ ch03-memaddr
Text Locations :
Address of main : Ox 804838c
Address of afunc : Ox8 0484a8
Stack Locations :
Stack level 1 : address of stack_var : Oxbfff f864
Stack l evel 2 : address o f stack_var : Oxbff ff844 Stack grows downward
Start of alloca()'ed array : Oxbffff8 60
End o f alloca() 'ed array : Ox bf fff 87f Addresses are on the stack
80 Chapter 3 • User-Level Memory Management
Data Locations:
Address of data_var: Ox80496b8
BSS Locations :
Address of bss_var: Ox80497c4 ass is above data variables
Heap Locations :
Initial end of heap: Ox80497c8 Heap is immediately above ass
New end o f heap: Ox80497e8 And grows upward
Final end of heap: Ox80497d8 Address spaces can shrink
3.3 Summary
• Every Linux (and Unix) program has different memory areas. They are stored in
separate parts of the executable program's disk file. Some of the sections are loaded
into the same part of memory when the program is run. All running copies of the
same program share the executable code (the text segment). The size program
shows the sizes of the different areas for relocatable object files and fully linked
executable files.
• The address space of a running program m ay have holes in it, and the size of the
address space can change as memory is allocated and released. On modern systems,
address 0 is not part of the address space, so don ' t attempt to dereference
NULL pointers.
• The low-level system call interface functions, brk () and sbrk ( ) , provide direct
but primitive access to memory allocation and deallocation. Unless yo u are wri ting
your own storage allo cator, you should not use them.
• The alloca () function for allocating memory on the stack exists, but is not rec-
ommended. Like being able to recognize poiso n ivy, you should know it only so
that yo u'll know to avoid it.
Exercises
char *buf;
FILE * fp;
};
83
T his chapter describes basic file operations: opening and creating files , reading
and writing them, moving around in them, and closing them. Along the way
it presents the standard mechanisms for detecting and reporting errors. The chapter
ends off by describing how to set a file's length and force file data and metadata
to disk.
In the next and subsequent sections, we illustrate the model by writing a very simple
version of cat . It's so simple that it doesn 't even have options; all it does is concatenate
the contents of the named files to standard output. It does do minimal error reporting.
Once it's written, we compare it to the V7 cat .
We present the program top-down, starting with the command line. In succeeding
sections, we present error reporting and then get down to brass tacks, showing how to
do actual file I/O .
84
4 .2 Preseming a Basic Program Structure 8S
The myname variable (line 14) is used later for error messages ; mai n () sets it to the
program name (argv [01) as its first action (line 25). Then ma in () loo ps over the ar-
guments. For each argument, it calls a function named proces s () to d o the wo rk.
When given the filen ame - (a single dash, or minus sign) , Unix cat reads standard
input instead of trying to open a file n amed -. In addition , with n o arguments, ca t
reads standard input. ch04-cat implements both of these behaviors. T he check for
'arg c == l' (line 27) is true when there are no filen ame arguments; in this case, ma in ( )
passes" -" to proc ess ( ) . Otherwise, main () loops over all the arguments, treating
them as files to be processed. If one of them happens to be "-", the program then
processes standard input.
If process () returns a n onzero value, it means that so mething went wrong. Errors
are added up in the er rs variable (lines 28 and 3 1) . When main () ends, it returns 0
if there were no errors, and 1 if there were (line 33) . This is a fairly standard co nventio n ,
whose meaning is discussed in more detail in Section 9.1.5.1, "Defining Process Exit
Status," page 300.
86 Chapter 4 • Files and File 1/0
The structure presented in main () is quite generic: pro ces s () could do anything
we want to the file. For example (ignoring the special use of" - "), process () could
just as easily remove files as concatenate them!
Before looking at the process () function, we have to describe how system call errors
are represented and then how I/O is done. The process () function itself is presented
in Section 4.4.3 , "Reading and Writing, " page 96.
else
/* all ok, proceed * /
Knowing that an error occurred isn't enough. It's necessary to know what error oc-
curred. For that, each process has a predefined variable named errno. Whenever a
system call fails, errno is set to one of a set of predefined error values. errno and the
predefined values are declared in the <errno . h> header file:
#include <errno . h> ISO C
errno itself may be a macro that acts like an int variable; it need not be a real integer.
In particular, in threaded environments, each thread will have its own private version
of errno. Practically speaking, though , for all the system calls and functions in this
book, you can treat errno like a simple into
4.3 Derermining Whar Wenr Wrong 87
TABLE 4 .1
GLlBC values for errno
Name Meaning
E2BIG Argument list too long.
EACCES Permiss ion denied.
EADDRlNUSE Address in use.
EADDRNOTAVAIL Address not available.
EAFNOSUPP ORT Address family not supported.
EAGAIN Resource unavailable, try again (may be the same value as EWOULDBLOCK).
EALREADY Connection already in progress.
EBADF Bad file descriptor.
EBADMSG Bad message.
EBUSY Device or resource busy.
ECANC ELED Operation canceled.
ECHILD No child processes.
ECONNABORTED Connection aborted.
ECONNREFUSED Connection refused.
ECONNRESET Connection reset.
EDEADLK Resource deadlock would occur.
EDESTADDRREQ Destination address required.
EDOM Mathematics argument out of domain of function.
EDQUOT Reserved.
EEXI ST File exists.
88 Chapter 4 • Files and File I/O
TABLE 4 .1 (Continued)
Name Meaning
Name Meaning
Many systems provide other error values as well, and older systems may not have all
the errors just listed. You should check your local intro (2) and errno (2) manpages for
the full story.
II NOTE errn o should be examined only after an error has occurred and before
. further system calls are mad e. Its in itial value is o. However, noth ing changes
:~ errn o between errors, meaning that a successful system call does not reset it
I to O. You can , of course , manually set it to 0 initially or whenever you like, but
I this is rarely done.
Initially, we use e rrno only for error reporting. There are two useful functions for
error reporting. The first is pe r r or ( ) :
#include <stdio.h> ISOC
We prefer the s trerror ( ) function , which takes an error value parameter and returns
a pointer to a string describing the error:
#inc l ude <string . h> ISO C
You will see many examples of both functions throughout the book.
current line number in that file. These have been available in C since its beginning.
C 99 defines an additional predefined identifier, __ f unc __ , which represents the name
of the current function as a character string. The macros are used like this :
if (some_s ystem_c al l(paraml, param2 ) < 0) {
fpri n t f(st de rr, " %s : %s (%s %d): some _sys tem_c al l (%d , %d) faile d : %s\n ",
a r gv [0 l , __ func __ , __ FI LE__ , __ L I NE__ ,
paraml, param2, s trerror ( errno)) ;
retu rn 1 ;
Here, the error message includes not only the program 's name but also the func tion
name, source file name, and line number. The full list of identifiers useful for diagnostics
is provided in Table 4.2.
TABLE 4 .2
e99 diagnostic identifiers
T he use of _ _ FI LE __ and _ _ LI NE__ was quite popular in the early days of Unix,
when most people had source code and could find the error and fix it. As Unix systems
became more commercial, use of these identifiers gradually diminished, since knowing
the source code location isn't of much help ro someone who only has a binary executable.
Today, although GNU/Linux systems come with source code, said source code often
isn ' t installed by default. Thus, using these identifiers for error messages doesn 't seem
ro provide much additional value. T he GNU Coding Standards don't even mention them.
int getdtablesize(void) ;
int
main ( int argc, char * *argv )
When compiled and run, not surprisingly the program prints the same value as
printed by ulimi t :
$ ch04-maxfds
max fds : 1024
File descriptors are held in normal int variables; it is typical to see declarations of the
form ' int fd ' for use with 110 system calls. There is no predefined type for
file descriptors.
In the usual case, every program starts running with three file descriptors already
opened for it. These are standard input, standard output, and standard error, on file
descriptors 0, 1, and 2 , respectively. (If not otherwise redirected, each one is connected
to your keyboard and screen.)
4.4 Doing Input and Output 93
These co nstants can then be used in place of 0, 1, and 2 . They are both readable and
eas ier to type.
The return value from open () is either the new file descriptor or - 1 to indicate an
error, in which case errno will be set. For simple I/O, the fla gs argument should be
one of the values in Table 4.3.
TABLE 4 .3
Flag values for open ( )
We will see example code shortly. Additional values for flags are described in Sec-
tion 4.6 , "Creating Files," page 106. Much early Unix code didn't use the symbolic
values. Instead, the numeric value was used. Today this is considered bad practice, but
we present the values so that you'll recognize their meanings if you see them.
The close () system call closes a file: The entry for it in the system's file descriptor
table is marked as unused, and no further operations may be done with that file descrip-
tor. The declaration is
#include <unistd . h> POSIX
°
The return value is on success, -1 on error. There isn't much you can do if an error
does occur, other than report it. Errors closing files are unusual, but not unheard of,
particularly for files being accessed over a network. Thus, it's good practice to check
the return value, particularly for files opened for writing.
If yo u choose to ignore the return value, specifically cast it to vo id, to signify that
you don't care about the result:
(vo id) close(fd) ; / * throwaway return va lue */
The flip side of this advice is that too many casts to void tend to the clutter the code.
For example, despite the "always check the return value" principle, it's exceedingly rare
to see code that checks the return value of printf () or bothers to cast it to void. As
with many aspects of C programming, experience and judgment sho uld be applied
here too.
As mentioned, the number of open files , while large, is limited, and you should always
close files when you're done with them. If you don't, you will eventually run out of file
descriptors, a situation that leads to a lack of robustness on the part of your program.
The system closes all open files when a process exits, but-except for 0,1 , and 2-it's
bad form to rely on this.
When open () returns a new file descriptor, it always returns the lowest unused integer
value. Always. Thus, if file descriptors 0- 6 are open and the program closes file descriptor
5 , then the next call to open () returns 5, not 7. This behavior is important; we see
later in the book how it's used to cleanly implement many important Unix features ,
such as 110 redirection and piping.
We will see an example later, in Section 4.4.4, "Example: Unix cat ," page 99.
96 Chapter 4 • Files and File I/O
Assume that the result of get dtablesize () is 1024. This code works, bur it makes
(1024 - 3) * 2 = 2042 system calls. 1020 of them are needless, since the return value
from getdtablesize () doesn't change. Here is a better way to write this code:
int i, fds;
Such an optimization does not affect the readability of the code, and it can make a
difference, particularly on slow systems. In general, it's worth looking for cases in which
loops compute the same result repeatedly, to see if such a computation can't be pulled
our of the loop. In all such cases, though, be sure that you (a) preserve the code's cor-
rectness and (b) preserve its readability!
Each function is about as simple as can be. The arguments are the file descriptor for
the open file, a pointer to a buffer to read data into or to write data from, and the
number of bytes to read or write.
The return value is the number of bytes actually read or written. (This number can
be smaller than the requested amount: For a read operation this happens when fewer
than count bytes are left in the file, and for a write operatio n it happens if a disk fill s
up or some other error occurs .) The return value is -1 if an error occurred, in which
case errno indicates the error. When r ead () returns 0, it means that end-of-file has
been reached.
We can now show the rest of the code for ch04 -cat. The p roc ess () routine uses
° if the input fil ename is "-", for standard input (lines 50 and 51) . Otherwise, it opens
the given file:
36 /*
37 * p r o ce ss do s ometh i ng with the file, in thi s case,
38 send it to stdout ( fd 1) .
39 Returns 0 if all OK, 1 otherwi se .
40 */
41
42 int
43 process(char *file)
44 {
45 int fd:
46 ssi ze_ t rcount, wcount :
47 cha r buffer[ BUFS IZ ] :
48 int errors = 0:
49
50 if ( st rcmp ( fi le, "-") == 0)
51 fd = 0 :
52 el se if ((f d = open(fil e , O_RDONLY) ) < 0) (
53 fprintf ( stderr, "%s : %s : c annot open for read ing : %s \ n",
54 myname, file, st rerr or( e r r n o )) :
55 re turn 1 :
56 }
The buffer buffe r (line 47) is of size BUFS IZ; this constant is defined by <stdio . h>
to be the "optimal" block size for I/O. Although the value for BUF SIZ varies across
systems, code that uses this constant is clean and portable.
The core of the routine is the following loop, which repeatedly reads data until either
end-of-file or an error is encountered:
98 Chapter 4 • Files and File I/O
The re ount and we aunt variables (line 45) are of type ssize_ t, "signed size_t,"
which allows them to hold negative values. Note that the count value passed to wri te ( )
is the return value from read () (line 59). While we want to read fixed-size BUFSIZ
chunks, it is unlikely that the file itself is a multiple of BUFSIZ bytes big. When the
final, smaller, chunk of bytes is read from the file, the return value indicates how many
bytes of buffer received new data. Only those bytes should be copied to standard
output, not the entire buffer.
The test 'wcount ! = reount' on line 60 is the correct way to check for write errors;
if some, but not all, of the data were written, then wcount will be positive but smaller
than reoun t.
Finally, proce ss () checks for read errors (lines 68-72) and then attempts to close
the file. In the (unlikely) event that close () fails (line 7 5) , it prints an error message.
Avoiding the close of standard input isn' t strictly necessary in this program, but it's a
good habit to develop for writing larger programs, in case other code elsewhere wants
to do something with it or if a child program will inherit it. The last statement (line 82)
returns 1 if there were errors, 0 otherwise.
68 if (rc ount < 0) (
69 fprintf ( stderr, "%s: %s : read error : %s \ n " ,
70 myname, file, strerror(errno));
71 err o rs++;
72
73
74 if ( f d '= 0) (
75 if (c l ose ( fd ) < 0 ) (
76 fprintf(stderr, " %s : %s: close error: %s \ n",
77 myname, file, strerror (errno )) ;
78 errors++;
79
80
81
82 return (errors ! = 0) ;
83
4.4 Doing Inpur and Outpur 99
ch04-c at checks every sys tem call for errors. While this is tedious, it provides ro-
bustness (or at least clarity): When so mething goes wrong, c h04-cat prints an error
message that is as specific as possible. The combination of er rno and strerror ()
makes this easy (0 do. That's it for ch04- cat , only 88 lines of code!
To sum up , there are several points (0 understand about Unix I/O:
flO is uninterpreted.
The I/O system calls merely move bytes around. They do no interpretation of the
data; all interpretation is up to the user-level program. This makes reading and
writing binary suuctures just as easy as reading and writing lines of text (easier,
really, although using binary data introduces portability problems).
flO is flexible.
You can read or write as many bytes at a time as you like. You can even read and
write data one byte at a time, although doing so for large amounts of data is more
expensive that doing so in large chunks.
110 is simple.
The three-valued return (negative for error, zero for end-of-file, positive for a
co unt) makes programming straightforward and obvious.
110 can be partial.
Both read () and wri te () can transfer fewer bytes than requested. Application
code (that is, your code) must always be aware of this.
2 See /usr / src / cmd/ cat. c in the V7 distribution. Th e program co mpiles without change under GNU/Linux.
100 Chapter 4 • Files and File I/O
1 1*
2 * Concatenate files .
3 *1
4
5 #include <st dio.h>
6 #include <sys/types . h>
7 #include <sys/stat.h>
8
9 char stdbuf [BUFSI Z ] ;
10
11 main(argc , argyl int main (int argc, char ""argy)
12 char **ar gv;
13
14 int fflg = 0;
15 register FILE *fi;
16 register c;
17 int dey, ino = -1;
18 struct stat statb;
19
20 setbuf ( stdout, stdbuf);
21 for t ; argc >l && argv[1] [0]==' -' ; argc -- ,argv++ ) {
22 swi tch ( argv [1] [1]) { Process options
23 case 0 :
24 break;
25 case 'u':
26 setbuf (stdout, ( char * ) NULL ) ;
27 co ntinue;
28
29 brea k;
30
31 fsta t(fil eno(stdout), &statb ) ; Lines 3 1- 36 explained in Chapter 5
32 statb.st_mode &= S_IFMT;
33
34 dey statb . st_dev ;
35 inc = stat b.st_ino;
36
37 if (argc < 2 )
38 argc = 2;
39 fflg++;
40
41 whil e (--argc > 0) { Loop over files
42 if (fflg II (*++argv) [0] == ' - ' && ( *argv) [1]== ' \0')
43 fi = stdin;
44 else {
45 if ( ( f i = f open(*argv, "r " )) == NULL ) {
46 fprint f (stderr, "cat : can't op en %s \n" , *argv ) ;
47 conti nue;
48
49
4.4 Doing In pu[ and Outp ut 101
Of note is that the program always exits successfully (line 62); it co uld have been
written to note errors and indicate them in ma in ( ) 's return value. (The mechanics of
process exiting and the meaning of differe nt exit status values are discussed in Sec-
tion 9.l.5.1, "Defining Process Exit Status," page 300.)
T he code dealing with the struet stat and the fsta t () functio n (lines 31-36
and 50-56) is undoubtedly opaque, since we haven't yet covered these functions, and
won ' t until the next chapter. (But do note the use of fileno () on line 50 to get at the
underlying file descriptor asso cia ted with the FILE * variables .) The idea behind the
code is to make sure that no input file is the same as the o utput file. This is intended
to prevent infinite file growth , in case of a co mmand like this:
$ cat myfile » myfile Append one copy of myfile onto itself?
And indeed, the check works:
$ echo hi > myfile Create a file
S v7cat myfile » myfile Attempt to append it onto itself
c at : input myfile is outpu t
If yo u try this with eh04-eat, it will keep running, and myfile will keep growing
until yo u interrupt it. The GNU version of c at does perform the check. Note that
something like the following is beyond eat's control:
S v7cat < myfile > myfile
ca t : input - is output
S Is -1 myfile
-rw-r--r -- 1 arnol d devel o Ma r 24 14: 17 myf i l e
In this case, it's too late because the shell truncated myf i le (with the > operator) before
cat ever gets a chance to examine the file!
In Section 5.4.4.2, "The V7 cat Revisited," page 150, we explain the struet stat
code.
102 Chapter 4 • Files and File I/O
The type ofet (offset type) is a signed integer type representing byte positions
(offsets from the beginning) within a file. On 32-bit systems , the type is usually a long.
However, many modern systems allow very large files, in which case off_t may be a
more unusual type, such as a C99 int64_ t or some other extended type. lseek () takes
three arguments, as follows:
in t fd
The file descriptor for the open file.
off t of fset
A position to which to move. The interpretation of this value depends on the
whenc e parameter. offset can be positive or negative: Negative values move to-
ward the front of the file; positive values move toward the end of the file.
int whence
Describes the location in the file to which o ffset is relative. See Table 4.4.
TABLE 4.4
whence values for lseek ( )
Much old code uses the numeric values shown in Table 4.4. However, any new code
you write should use the symbolic values, whose meanings are clearer.
The meaning of the values and their effects upon file positio n are shown in Figure 4. 1.
Assuming that the file has 3000 bytes and that the current offset is 2000 before each
call to lseek ( ), the new position after each call is as shown:
3040
2960
2040
1960
40
l L Lb""k"d'
lseek(fd,
l s eek ( fd ,
lse ek ( fd,
(o ff_t)
(ofCt) 40 ,
l s eek ( fd,
(o iCt ) 40,
-4 0 , SEEK_CUR) ;
SE EK_SET ) ;
10 ff. 1
(off t) -40,
SEEK_CUR ) ;
40, SEE K_END ) ;
SE EK_ END ) ;
FIGURE 4.1
Offsets for l s eek ( )
N egative offsets relative to the beginning of the file are meaningless; they fai l with
an "invalid argument" error.
The return value is the new position in the file. Thus, to find our where in the file
you are, use
but with a "gap" or "hole" between the data at the previous end of the file and the new
data. Data in the gap read as if they are all zeros.
The following program demonstrates the creation of holes. It writes three instances
of a s tru c t at the beginning, middle, and far end of a file. The offsets chosen (lines
16-18, the third element of each structure) are arbitrary but big enough to demonstrate
the point:
/ * ch 04-ho l es. c Demonstrate lseek() and holes in files . * 1
2
3 #include <s t di o . h> 1* for fp r intf () , stderr, BUFSIZ * 1
4 #include <errno . h> 1* decla r e errno * 1
5 #include <fcnt l .h> 1* f or fl a gs for open ( ) * 1
6 #include <string . h> 1* decla r e strerror ( ) * 1
7 #include <unistd . h> 1* for s si z e - t * 1
8 #include <sys / types . h> 1* f or off _ t , etc. * 1
9 #include <sys / stat . h> 1* for mode - t * /
10
11 struct person (
12 char name [ 1 0] ; 1* first name *1
13 char id [1 0] ; 1* ID n umber * I
14 off_t pos; 1* posit i on in file, for demonstration * 1
15 peop l e [] = {
16 { "arno l d ", " 123456789", 0 l.
17 { "mi riam", "987654321", 10240 l.
18 "j oe " , " 192837465", 81920 },
19 };
20
21 in t
22 main ( in t argc , char * * argv )
23
24 int f d ;
25 int i, j;
26
27 if (argc < 2 ) (
28 fprintf ( stderr, "usage : %s file \ n", argv[O ]) ;
29 return 1;
30
31
32 fd = open (argv[l], O_ RDWR l o_CREATl o_TRUNC, 0666 ) ;
33 if (fd < 0 ) (
34 fprintf ( stderr, "%s : %s : cannot open for read / write : %s \ n" ,
35 a r gv[O], argv[l] , strerror(er r no )) ;
36 return 1;
37
38
39 j = sizeof (people ) I sizeof(people[O] ) ; 1* count of elements * 1
Lines 27-30 make sure that the program was invoked properly. Lines 32-37 open
the named file and verifY that the open succeeded.
4. 5 Random Access: Moving Around wirhin a File 10S
The calculati on on line 39 of j , the array element co unt, uses a lovely, portable trick:
The number of elements is the size of the entire array divided by the size of the first
element. The beauty of this idiom is that it's always right: No matter how many elements
yo u add to or remove from such an array, the compiler will figure it out. It also doesn' t
require a terminating sentinel element; that is, one in which all the fields are set to zero,
NU LL, or some such.
The work is done by a loop (lines 41-55), which seeks to the byte offset given in
each structure (line 42) and then writes the structure out (line 49):
41 for (i = 0; i < j ; i ++ ) {
42 if (lsee k (fd , people [i] .pos, SEE K_SET ) < 0) (
43 fprintf(stde rr, "%s : %s : see k er ror : %s\n ",
44 argv [O] , argv [ l], st rerro r (errno)) ;
45 (void) close ( fd ) ;
46 ret urn 1 ;
47
48
49 i f (wri te( fd, &peopl e [i], si ze of(people[i])) '= siz eo f (pe ople[ i] ))
50 fprintf ( s tderr, "%s : %S : writ e error : %s\ n",
51 argv[O], ar gv[l], str er ror(errn o)) ;
52 (void) clos e ( fd) ;
53 return Ii
54
55
56
57 / * all ok here * /
58 (void) close(fd);
59 return 0 ;
60
We happen to know that each disk block in the file uses 4 096 bytes. (H ow we know
that is discussed in Section 5.4.2, "Retrieving File Information, " page 14l. For now,
take it as a given.) The final be command indicates that a file of size 81 ,944 bytes needs
2 1 disk blocks. However, the -s op tion to 18, which tells us how many blocks a file
106 Chapter 4 • Files and File I/O
really uses, shows that the file uses only 16 blocks!3 The missing blocks in the file are
the holes. This is illustrated in Figure 4.2.
,,;_.
arno ld miriam joe
Block: 3 21
FIGURE 4.2
Holes in a file
I
II NOTE ch0 4-ho1es. c does direct binary I/ O . This nicely illustrates the beauty
of random access I/ O: You can treat a disk file as ifit were a very large array of
binary data structures.
II In practice, storing live data by using binary I/ O is a design decision that you
should consider carefully. For example, suppose you need to move the data to
W a system using different byte orders for integers? Or different floating-point
3 At least three of th ese blocks conrain the data that we wrote ou t; the others are for use by the operating system
in keeping track of where the data reside.
4.6 Creating Files 107
combinations are often expressed in octal, particularly for the chmod and umask com-
mands. For example, file permissions -rw-r--r-- is equivalent to octal 0644 and
-rwxr-xr-x is equivalent to ocral 075 5 . (The leading 0 is C's notation for octal values .)
When yo u create a file, you must know the protections to be given to the new file.
You can do this as a raw octal number if you choose, and indeed it's not uncommon
to see such numbers in older code. However, it is better to use a bitwise OR of one or
more of the symbolic constants from <sys/ stat . h>, described in Table 4.5.
TABLE 4.5
POSIX symbo lic constants for file modes
Older code used S_IREAD, S_IWRITE, and S_IEXEC (Ogether with bit shifting (0
TABLE 4 .6
Additional POSIX symbolic constants for file modes
When standard utilities create files, the default permissions they use are - rw-rw-rw-
(or 0666 ). Because most users prefer (0 avoid having files that are world-writable, each
process carries with it a umask. The umask is a set of permission bits indicating those
bits that should never be allowed when new files are created. (The umask is not used
when changing permissions.) Conceptually, the operation that occurs is
actual-permissions = (requested-permissions & (-umask));
The umask is usually set by the umask command in $HOMEI .profile when you
log in. From a C program, it's set with the umask () system call:
4. 6 Crearing Files 109
The return value is the old umask. Thus, to determine the current mask, you must
set it to a value and then reset it (or change it, as desired):
mo d e_ t mas k = umas k ( O) ; I x re trieve cu rr ent mas k * 1
(v o i d ) umas k (ma s k ) ; 1* res tore i t * 1
The mo de argument represents the permissions for the new file (as discussed in the
previous section). The file named by p athname is created, with the given permission
as modified by the umask. It is opened for writing (only) , and the return val ue is the
file descriptor for the new file or -1 if there was a problem. In this case, er rno indicates
the error. If the file already exists , it will be truncated when opened.
In all other respects, file descriptors returned by creat () are the same as those
returned by open ( ) ; they're used for writing and seeking and must be closed with
c lo s e () :
4 Yes, rhar's how ir's spelled. Ken T hompson , one of rhe [wo "fa rh ers" of Unix, was once asked whar he wo uld
have done differendy if he had ir co do ove r again. H e rep lied rhar he would have speLl ed c reat () wirh an "e."
Indeed, rhar is exacrly whar he di d for rhe Plan 9 From Bell Labs o perating system.
110 Chapter 4 • Files and File I/O
Earlier, we said that when opening a file for plain I/O , we could igno re the mode
argument. Having seen crea t ( ), though, you can probably guess that open () can
also be used for creating files and that the mode argument is used in this case. This is
indeed true.
Besides the O_RDONLY, O_WRONLY, and O_RDWR flags, additional flags may be bitwise
OR'd when open () is called. The POSIX standard mandates a number of these addi-
tional flags. Table 4.7 presents the flags that are used for most mundane applications.
TABLE 4.7
Additional POSIX flags for open ( )
Flag Meaning
O_APPEND Force all wri tes to occur at the end of the fil e.
O_CREAT C reate the fil e if it doesn 't exist.
O_EXCL When used with O_ CREAT, ca use open () to fail if the file already exists.
O_TRUNC Truncate the file (set it to zero length) if it exists.
G iven O_APP END and O_TRUNC, you can imagine how the shell might open or create
files corresponding to the > and » operators. For example:
int f d;
extern char *filename;
mode_t mod e = S_IRUSRI S_IWUSR I S_IRGRP I S_IWGRPIS_IROTH I S_IWOTH; / * 0666 * /
Note that the O_EXCL flag would not be used here, since for both > and », it's not
an erro r for the file to exist. Remember also that the sys tem applies the umask to the
req uested permissions.
Also, it's easy to see that, at least conceptually, cr e at () could be wri tten this easily:
inc creat (const char *path, mode _t model
'i·.~· NOTE If a file is opened wi th O_ APPEND, al l data will be written at the end of
* the file , eve n if the c urrent po si tion has been reset w ith l s eek ( ) .
:(.~
Modern systems provide additional flags whose u ses are more specialized . Table 4.8
describes them briefly.
TABLE 4.8
Addition a l advanced POSIX flags for open ( )
Flag Meaning
O_ NOC TTY If the device being opened is a terminal, it does not become the process's
controlling terminal. (This is a more advanced topic, discussed briefly in
Sectio n 9.2. 1, page 312.)
O_ NONBLOCK Disables blocking o fI /O operations in certain cases (see Section 9.4.3 .4,
page 333) .
° DSYNC Ensure that data written to a file make it all the way to physical storage before
wri te () returns.
° RSYNC Ensure that any data that read () wo uld read, which may have been written
to the file being read, have made it all the way to physical storage before
read () returns.
Like O_DSYNC , but also ensure that all file metadata, such as access times, have
also been written to physical storage.
The O_DSYNC, O_RS YNC, and O_ SYNC flags need so me explanation. Unix sys tems
(including Linux) maintain an internal cache of disk blocks, called the buffer cache.
When the wri te () system call returns , the data passed to the operating system have
been copied to a buffer in the buffer cache. They are not necessarily written out to
the disk.
112 Chapter 4 • Files and File I/O
The buffer cache provides considerable performance improvement: Since disk 110
is often an order of magnitude or more slower than CPU and memory operations,
programs would slow down considerably if they had to wait for every write to go all
the way through to the disk. In addition, if data have recently been written to a file, a
subsequent read of that same data will find the information already in the buffer cache,
where it can be returned immediately instead of having to wait for an I/O operation
to read it from the disk.
Unix systems also do read-ahead; since most reads are sequential, upon reading one
block, the operating system will read several more consecutive disk blocks so that their
information will already be in the buffer cache when a program asks for it. If multiple
programs are reading the same file, they all benefit since they will all get their data from
the same copy of the file's disk blocks in the buffer cache.
All of this caching is wonderful, but of course there's no free lunch. While data are
in the buffer cache and before they have been written to disk, there's a small-but very
real-window in which disaster can strike; for example, if the power goes out. Modern
disk drives exacerbate this problem: Many have their own internal buffers, so while
data may have made it to the drive, it may not have made it onto the media when the
power goes our! This can be a significant issue for small systems that aren't in a data
center with controlled power or that don 't have an uninterruptible power supply (UPS). 5
For most applications, the chance that data in the buffer cache might be inadvertently
lost is acceptably small. However, for some applications , any such chance is not accept-
able. Thus, the notion of synchronous I/O was added to Unix systems, whereby a program
can be guaranteed that if a system call has returned, the data are safely written on a
physical storage device.
The O_ DSYNC Bag guarantees data integrity; the data and any other information that
the operating system needs to find the data are written to disk before wri te () returns.
However, metadata, such as access and modification times, may not be written to disk.
The O_S YNC Bag requires that metadata also be written to disk before wri te ( ) returns.
(Here too there is no free lunch; synchronous writes can seriously affect the performance
of a program, slowing it down noticeably.)
5 If you don 't have a UPS and you use your system for critical work, we highly recommend investing in one. You
should also be doing regular backups.
4.7 Forcing Daca [0 Disk 113
The O_ RSYNC Hag is for data reads: If read () finds data in the buffer cache tha t were
scheduled for writing to disk, then re ad () won' t return that data until they have been
written to disk. The other two Hags can affect this: In particular, O_SYNC will cause
re ad () to wait until the file metadata h ave been written out as well.
I NOTE As of kernel ve rsion 2.4, Linu x treats all three flags the sa me, with
~ essentially the meaning ofO_SYNC . Furthermore , Linux defines additional Rags
I that are Linux specific and intend ed for special ized uses . Check the GNU/ Linux
I
ill
open(2) manpage for more information .
The f d a ta s y nc () system call is like O_DSYNC: It forces all file data to be written to
the final physical device. The fsyn c ( ) system call is like O_SYNC, forcing not just file
data, but also file metadata, to physical storage. The f s ync () call is more portable; it
has been around in the Unix world for lo nger and is more likely to exist across a broad
range of systems.
You can use these calls with <stdi o . h> file pointers by first calling ffl us h () and
then using f il eno ( ) to obtain the underlying file descrip to r. Here is an fpsync ( )
functi on that can be used to wrap both operations in one call. It returns 0 on success:
114 Chapter 4 • Fil es and File I/O
return 0;
)
Technically, both of these calls are extensions to the base POSIX standard: f sync ( )
in the "File Synchronization" extension (FSC) , and f da tasyn c ( ) in the "Synchronized
Input and O utput" extension. N evertheless, you can use them on a GNU/Linux system
witho ut any problem.
As should be obvio us from the p arameters, trun c ate () takes a filename argument,
whereas f t runca t e () works on an open file descriptor. (T he xxx () and fxxxx ( )
naming convention for system call pairs that work on a fil ename or fil e descripto r is
common. W e see several examples in this an d subsequent ch apters.) For both, the
length argument is the new size of the file.
This system call originated in 4 .2 BSD Unix, and in early systems could only be used
to sh orten a file 's length, hence the name. (It was created to simplify implementation
of the truncate operation in Fortran.) On modern sys tems, incl uding Lin ux, the name
is a misnomer, since it's possible to extend the length of a file with these calls, not
just shorten a file. (However, POSIX indicates that the ability to extend a file is an
XSI extension.)
For these calls, the file being truncated must have write permission (for t r uncate ()) ,
or have been opened for writing (for ftrunca t e ( )). If the file is being shortened, any
data past the new end of the file are lost. (Thus, you can' t shorten the file, lengthen it
again , and expect to find th e original data.) If the file is extended, as with data written
after an ls eek ( ) , the data between the old end of the file and the new end of fi le read
as zeros.
4.10 Exercises 115
These calls are very different from ' open ( f i l e , ... I O_TRUNC, mode)' . The latter
truncates a file completely, throwing away all its data. These calls simply set the file 's
absolute length to the given value.
These functions are fairly specialized; they' re used only four times in all of the
GNU Coreutils code. We present an example use of ft r uncate () in Section 5.5.3 ,
"Changing Timestamps: utime (), " page 157.
4. 9 Summary
• When a system call fails , it usually returns -1, and the global variable e r r no is set
to a predefined value indicating the problem. The functions pe rr or () and
s t r er r or () can be used for reporting errors.
• Files are manipulated by small integers called file descriptors. File descriptors for
standard input, standard output, and standard error are inherited from a program's
parent process. Others are obtained with open () or creat ( ) . They are closed
with close (), and getdtables i ze () returns the maximum number of allowed
open files . The value of the umask (set with uma sk ( )) affects the permissions
given to new files created with c r eat () or the O_CREAT flag for open () .
• The read () and wri te () system calls read and write data, respectively. Their
interface is simple. In particular, they do no interpretation of the data; files are
linear streams of bytes. The lseek ( ) system call provides random access I/O: the
ability to move around within a file.
• Additional flags for open () provide for synchronous I/O, whereby data make it
all the way to the physical srorage media before wri te () or r ead () return. Data
can also be forced to disk on a controlled basis with fsyn c () or f d a t async ( ) .
• The trunc at e () and ftr un c a te () system calls set the absolute length of a file.
(On older systems, they can only be used to shorten a file; on modern systems
they can also extend a file.)
Exercises
1. Using just ope n ( ), read ( ) , wri te ( ) , and c l ose () , write a simple cop y
program that copies the file named by its first argument to the file named by
its second.
116 Chapter 4 • Files and File I/O
2. Enhance the copy program to accept" -" to mean "standard input" if used
as the first argument and "standard output" as the second. Does 'copy - -'
work correctly?
3. Look at the proc(5) manpage on a GNU/Linux system. In particular the fd
subsection. Do an 'ls -1 /dev/fd' and examine the files in the
/ proc / self / fd directly. If /dev/s tdin and friends had been around in the
early versions ofU nix, how would that have simplified the code for the V7 cat
program? (Many other modern Unix systems have a / dev / f d directory or
filesystem. If you're not using GNU/Linux, see what yo u can discover about
your Unix version.)
4. Even though you don 't understand it yet, try to copy the code segment from
the V7 cat . c that uses the struct stat and the fstat () function into
ch04-cat. c so that it too reports an error for 'cat file » file' .
5. (Easy.) Assuming the existence of strerror ( ), write your own version of
perror ().
6. What is the result of 'ul imi t -n' on your system?
7. Write a simple version of the umask program, named myumask, that takes an
octal mask on the command line. Use strtol () with a base of 8 to convert
the character string command-line argument into an integer value. Change the
umask to the new mask with the umask () system call.
Compile and run myumask, and then examine the value of the umask
with the regular umask command. Explain the results. (Hint: in Bash, enter
,type umask., )
8. Change the simple copy program you wrote earlier to use open () with the
O_SYNC flag. Using the time command, compare the performance of the
original version and the new version on a large file.
9. For ftruncate (), we said that the file must have been opened for writing.
How can a file be open for writing when the file itself doesn't have write
permission?
10. Write a truncate program whose usage is 'truncate filelength'.
In this chapter
117
T his chapter continues the climb up the learning curve toward the next plateau:
understanding directories and information about files.
In this chapter we explore how file information is stored in a directory, how direc-
tories themselves are read, created, and removed, what information about files is
available, and how to retrieve it. Finally, we explore other ways to update file
metadata, such as the owner, group , permissions, and access and modification times.
5.1.1 Definitions
USER FR I ENDLY by l ll iad
ReMeMBeR THe
DAYS Of' DOS
WITH WNFIG
FUS? e.DIT yeAH? WEU..- 00/,11 WIMP!
WAS SUCH A WUSS. I WROTe MY weLL.. I EDITeD
HOPa£SS IUSCD FUS WITH THe INODES BY
TeXT eDITOR. eDUN. UHO. HANO WITH
MAGNeTS-
\ /
Partition
A unit of physical storage. Physical partitions are typically either part of a disk or
an entire disk. Modern systems make it possible to create logical partitions from
multiple physical ones.
118
5.1 Considering Direcrory Conrenrs 119
Filesystem
A partition (physical or logical) that co ntains file data and metadata, information
abo ut files (as opposed to the file contents, which is information in the files). Such
metadata include file ownership, permissions, size, and so on, as well as information
for use by the operating system in locating file contents .
You place filesystems "in" partitions (a one-to-one correspondence) by wri ting
standard information in them. This is done with a user-level program, such as
mke2 fs on GNU/Linux, or newfs on Unix. (The Unix mkf s co mmand makes
partitions but is difficult to use directly. n ewfs calls it with the correct parameters.
If your system is a Unix sys tem, see the newfs(S) and mkfs(S) manpages for
the details.)
For the most part, GNU/ Linux and Unix hide the existence of filesys tems and
partitio ns . (Further details are given in Section S. l , "Mounting and U n mounting
Filesystems ," page 22S). Everything is accessed by pathnames, wi th out reference
to which disk a file lives on. (Contrast this with almost every other co mmercial
operating system, such as Open VMS, or the default behavio r of any
Microsoft system. )
[node
Short for "index node," ini tially abbreviated "i-node" and now written "inode."
A small block of information describing everythin g about a file except the fi le's
name(s). The number of in odes, and thus the number of unique files per filesystem ,
is set and m ade permanent when the filesystem is created. 'd f - i' can tell yo u
how many in odes you h ave and how many are used.
D evice
In the context of files, filesystems, and file metadata, a unique number representing
an in-use ("mounted") filesystem. The (device, in ode) pair uniquely identifies the
file: Two different files are guaranteed to h ave different (device, inode) pairs. This
is discussed in more detail later in this chapter.
D irectory
A special file , containing a list of (inode number, name) pairs. Directories can be
opened for reading but not for writing; the operating system makes all the changes
to a directory's contents.
120 Chapter 5 • Directories and File Metadara
Conceptually, each disk block contains either some number of inodes, or file data.
The inode, in turn, contains pointers to the blocks that contain the file's data. See
Figure 5.1.
I I I
111 :11111 II
IN NINININ NI
I0 0 10 f 0 1 0 0 I Data Data Data Data
ID DIDID!D DI
iE ElE i ElE Ei
·t~s:m<:m~@"":>.~·" ~::r,:::;::::~;;s::::>.:t'::-.-x~§;;;:;;::::m::::.:."X::::~:::~.;;~:>~::::::e::::;;;:<::::::::::::::: <::::;:::~::~::::::::::'«i;::';;;:::;::::~:~:~~:::::::::::~ :::::~*mX;:~:i:!:;:::';:~::::::i:O:::::;:;":;::~:::::::;;::::ii:(';:;::':::::>';:"<::~;::::::;:::~::::; ::,:::::~~:w~.>,'~
l'----l=-l-------...t..--=-_1~---=-1---=-J______J
FIGURE 5.1
Conceptual view of inode and data blocks
The figure shows all the inode blocks at the front of the partition and the data blocks
after them. Early Unix filesystems were indeed organized this way. However, while all
modern systems still have in odes and data blocks, the organization has changed for
improved efficiency and robustness. The details vary from system to system, and even
within GNU/Linux: systems there are multiple kinds of filesystems, but the concepts
are the same.
I
23 [ . Dot
---->-----------
19 [ . . Dot·dot
----f-----------
-~:-~-~~~~:.----
Filename
FIGURE 5.2
Conceptual directory contents
#ifndef DIRSIZ
#de fin e DIRSIZ 14
#endi f
struct di rec t
ina - t d _ino ;
char d _name [D IRSI Z] ;
};
An ino_t is defined in the V7 <s ys / types . h> as ' type def unsigned in t
ino_ t;' . Since a PDP-II int is 16 bits, so too is the ino_ t . This organization made
it easy to read directo ries directly; since the size of an entry was fixed, the code was
simple. (The only thing to watch out for was that a full 14-character d_name was not
NUL-terminated.)
Directory content management was also easy for the system. When a file was removed
from a directory, the system replaced the inode number with a binary zero, signifYing
that the "slot" in the directory was unused. New files could then reuse the empty slot.
This helped keep the size of directory files themselves reasonable. (By convention, inode
number 1 is unused; inode number 2 is always the first usable inode. More details are
provided in Section 8.1, "Mounting and Unmounting Filesys tems," page 228.)
Modern systems provide long filenames. Each directory entry is of variable length,
with a common limit of 255 bytes for the filename component of the directory. Later
on, we show how to read a directory's contents on a modern system. Modern systems
also provide 32-b it (or even 64-bit!) inode numbers.
122 Chapter 5 • Directories and File Metadata
Since directory entries associate filenames with inodes , it is possible for one file to
have multiple names. Each directory entry referring to the same inode is called a link,
or hard link, to the file. Links are created with the ln command. The usage is 'I n
oldfile newfile' :
$ In message msg Create a link
$ cat msg Show contents of new name
hello, world
$ 1s -il msg message Show inode numbers
228786 -rw-r--r -- 2 arno ld devel 1 3 May 4 15:43 message
228786 -rw-r--r -- 2 arnold devel 13 May 4 15:43 msg
The output shows that the inode numbers of the two files are the same, and the third
fiel d in the long output is now 2. This field is the link count, which reports how many
links (directory entries referring to the inode) the file has.
It cannot be emphasized enough: Hard links all refer to the same file. If you change
one, you have changed the others:
$ echo "Hi, how ya doin' ?" > msg Change file by new name
$ cat message Show contents by old name
Hi, how ya doi n' ?
$ 1s -i1 message msg Show info. Size changed
228786 -rw-r --r-- 2 arnold devel 19 May 4 15: 51 message
22 878 6 -rw-r--r-- 2 arn old devel 19 May 4 15:5 1 msg
Although we've created two links to the same file in a single directory, hard links are
not restricted to being in the same directory; they can be in any other directory on the
same filesystem. (This is discussed a bit more in Section 5.1.6, "Symbolic Links,"
page 128.)
Additionally, you can create a link to a file you don 't own as long as you have write
permission in the directory in which you're creating the link. (S uch a file retains all the
attributes of the original file: the owner, permissions, and so on. This is because it is
the original file; it has only acquired an additional name.) User-level code cannot create
a hard link to a directory.
5.1 Considering Directory Contents 123
Once a link is removed, creating a new file by the same name as the original file
creates a new file:
$ rm message Remove old name
$ echo "What's happenin?" > message Reuse the name
$ Is -il msg message Show information
22879 4 -rw-r --r-- 1 arnold devel 17 May 4 15 : 58 message
228786 -rw-r--r-- 1 arnold devel 19 May 4 15 : 51 msg
Notice that the link co unts for both files are now equal (0 l.
The return value is 0 if the li nk was created su ccessfully, or - 1 oth erwise, in which
case errno reRects the erro r. An im portant failure case is one in which newpa th already
exists. T h e system won' t rem ove it for you, since attempting to do so can cause incon-
sistencies in the filesystem.
64 int
65 main (int argc, char **argv)
66
67 program_name = argv[O];
68 setlocale (LC_ALL, "");
69 bindtextdomain (PACKAGE, LOCALEDIR);
70 textdomain (PACKAGE);
71
72 atexit (close_stdout) ;
73
74 parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
75 AUTHORS, usage);
76
77 /* The above handles --help and --version .
78 Since there is no other invocation of getopt , handle here . */
79 i f (1 < argc && STREQ (argv [1], "- - " ) )
80 {
81 --argc;
82 ++argv;
83
84
85 if (argc < 3)
86 {
87 error (0, 0, _("too few arguments" )) ;
88 usage (EXIT_FAILURE);
89
90
91 if (3 < argc )
92 {
93 error (0 , 0 , _ ( "to o many arguments") ) ;
94 usage (EXIT_FAILURE);
95
96
97 if (link (argv[l], argv[2]) != 0)
98 error (EXIT_FAILURE, errno, _( "cannot create link %s to %s"),
99 quote_n (0 , argv[2] ) , quote_n (1 , argv[l]));
100
101 exit (EXIT_SUCCESS);
102 )
1. If the new name for the file names an existing fi le, remove the exis ting file first.
2. Create a new link to the file by the new name.
3. Remove the old name (link) for the file. (Removing names is discussed in the
next section.)
Early versions of the mv command did work this way. However, when done this way,
file renaming is not atomic; that is, it d oesn' t happen in one uninterruptible operation.
And, on a heavily loaded system, a m alicious user could take advantage of race
conditions, 1 subverting the rename operation and substituting a different file for the
original one.
1 A race condition is a situation in which details of timing can produce unintended side effects or bugs. In thi s case,
the direcro ry, for a short period of time , is in an in co nsistent state, and it is this inco nsistency that introduces
the vulnerabi li ry.
126 Chapter 5 • Direcrories and File Metadata
As with other system calls, a 0 return indicates success, and a return value of -1 indi-
cates an error.
Given our discussion of file links, the name makes sense; this call removes the given
link (directory entry) for the file. It returns 0 on success and - 1 on error.
The ability to remove a file requires write permission only for the directory and not for
thefde itself. This fact ca n be confusing, particularly for new Linux/Unix users . However,
since the operation is one on the directory, this makes sense; it is the directory contents
that are being modified, not the file 's co ntents.2
2 Indeed , the file 's metadata are changed (the number of links), but that does not affect any oth er fil e amibute,
nor does it affect th e fil e's contents. U pdating the link co unt is the only operati on on a file th at doesn't involve
ch ecking (he file 's permissions.
5.1 Considering Directo ry Conrenrs 127
While not technically a system call, the return value is in the same vein: 0 on success
and -1 on error, with er rno reflecting the val ue.
128 Chapter 5 • Directories and File Metadata
On GNU/Linux, remove () uses the unlink () system call to remove files, and the
rmdir () system call (discussed later in the chapter) to remove directories. (On older
GNU/Linux systems not using GLIBC, remove () is an alias for unlink ( ) ; this fails
on directories . If you have such a system, you sho uld probably upgrade it.)
Large systems often have many partitions, both on physically attached local disks
and on remo tely mounted network filesystems. The hard-link restriction to the same
filesystem is inconvenient, for example, if som e files or directories must be moved to a
new location, but old software uses a hard-coded filename for the old location.
To get around this restriction, 4 .2 BSD introduced symbolic links. A symbolic link
(also referred to as a soft Link) is a special kind of file (just as a directory is a special kind
of file). The contents of the file are the pathname of the file being "pointed to." All
modern Unix systems, including Linux, provide symbolic links; indeed they are now
part of POSIX.
Symbolic links may refer to any file anywhere on the system. They may als o refer to
directories. This makes it easy to move directories from place to place, with a symbolic
link left behind in the original location pointing to the new location.
5.1 Considering Directory Contents 129
When processing a filename, the system notices symbolic links and instead performs
the actio n on the pointed-to fi le or directory. Symbolic links are created with the - s
op tion to In:
$ /bin/pwd Where are we
/ d/home/arnold On a different filesystem
$ In -s /tmp/message ./hello Create a symbolic link
$ cat hello Use it
Hi, how ya doin' ?
$ ls -1 hello Show information about it
lrwxrwx rwx 1 arnold devel 12 May 4 16 :4 1 hello -> / tmp / message
The file pointed to by the link need not exist. The system detects this at runtime
and acts appropriately:
$ rm /tmp/message Remove pointed-to file
$ cat ./hello Attempt to use it by the soft link
cat : . /he llo : No such file or directo ry
$ echo hi again > hello Create new file contents
$ ls -1 /tmp / message Show pointed-to file info ..
-rw-r--r-- 1 arnold devel 9 May 4 16 : 45 /tmp/message
$ cat /tmp/message ... and contents
hi again
The oldpath argument n ames the pointed-to file or directory, and newpath is the
name of the symbolic link to be created. The return value is 0 on success and - 1 on
error; see your symlink(2) man page for the possible errno values.
Symbolic links have their disadvantages:
• They take up extra disk space, requiring a separate inode and data block. H ard
links take up only a directo ry slot.
• They add overhead. The kernel has to work harder to resolve a pathname contain-
ing symbolic links.
• They can introduce "loops. " Consider the following:
$ rm -£ a b Make sure 'a' and 'b' don't exist
$ In -s a b Symlink old file 'a' to new file 'b'
$ In -s b a Symlink old file 'b' to new file 'a'
$ cat a What happens?
cat : a : Too many leve l s o f symbolic links
130 Chapter 5 • Directories and File M etadata
The kernel has to be able to detect this case and produce an error message.
• They are easy to break. If you move the pointed-to file to a different location or
rename it, the symbolic link is no longer valid. This can' t happen with a hard link.
Both return 0 on success and - 1 on error, with errno set appropriately. For mkdi r ( ) ,
the mode argument represents the permissions to be applied to the directory. It is
completely analogous to the mode arguments for c rea t () and open () discussed in
Section 4.6, "Creating Files," page lOG.
Both functions handle the' . ' and ' . . ' in the directory being created or removed. A
directory must be empty before it can be removed; errno is set to ENOTEMPTY if
the directory isn' t empty. (In this case, "empty" means the directory contains only ' . '
and ' .. ' .)
New directories, like all fi les, are assigned a group ID number. Unfortunately, how
this works is complicated. We delay discussion until Section 11.5.1 , "Default Group
for New Files and Directories, " page 412.
Both functions work one directory level at a time. If ! s ome d ir exists and
! s ome d ir ! sub1 d oes not, 'mkd ir ( " ! somedi r ! sub1 ! sub2 " ) , fails. Each component
in a long pathname h as to be created individually (th us the - p option to mkdir,
see mkdir(1 )).
Also , if pathname ends with a ! character, mkdir ( ) and rmdi r ( ) will fail on some
systems and succeed on others . The fo llowing program, ch 05- t r ymkd i r . c , dem on-
strates both aspects.
5.2 Crearing and Removing Direcrories 13 1
Line 60 opens the directory for reading (a second argument of 0 , equal to O_RDONLY).
Line 65 reads the struct dire c t. Line 66 is the check for an empty directory slot;
that is , one with an inode number of o. Lines 67 and 68 check for ' .' and' .. '. Upon
reaching line 69, we know that some other fil ename has been seen and, therefore, that
the directory isn't empty.
(The test'! strcmp (51, s2)' is a shorter way of saying 'strcmp (51, s2) == 0' ;
that is, testing that the strings are equal. For what it's worth , we consider the
, ! 5 trcmp (sl, s2)' form to be poor style. As Henry Spencer once said, "s t r cmp ( )
is not a boolean!")
When 4.2 BSD introduced a new filesys tem form at that allowed longer fil enames
and provided better performance, it also introduced seve ral new functions ro provide
a directory-reading abstraction. This suite of functions is usable no matter what the
underlying filesystem and directory organization are. The basic partS of it are what is
standardized by POSIX, an d programs using it are portable across GNU / Linux and
U nix systems.
};
For portability, POSIX specifies only the d_name field, which is a zero-terminated
array of bytes representing the fil ename part of the directory entry. The size of d_name
is not specified by the standard, other than to say that there may be at m os t NAME_ MAX
bytes before the terminating zero. (NAME_ MAX is defined in <limits . h>.) T he XSI ex-
tension to PO SIX provides for the d_ ino inode number field .
In practice, since filenames can be of variable length and is usually fairly
NAME_MAX
large (like 255), the st ruct dirent contains additional members that aid in the
bookkeeping of variable-length directory entries on disk. These additional members
are not relevant for everyday code.
The following functions provide the directory-reading interface:
#include <sys /types .h> POSIX
#include <d iren t . h>
The DIR type is analogous to the FILE type in <s td i o . h> . It is an opaque type,
meaning that application code is not supposed to know what's inside it; its contents
are for use by the other directory routines. If opendir () returns NULL , the named di-
rectory could no t be opened fo r reading and errno is set to indicate the error.
134 Chapter 5 • Directories and File Me(ada(a
This program is quite similar to ch04 - cat . c (see Section 4.2, "Presenting a Basic
Program Structure," page 84); the main () function is almost identical . The primary
difference is that it defaults to using the current directory if there are no arguments
(lines 20-21) .
5.3 Reading Direcrories 135
29 1*
30 * process --- do something wit h the di rect ory, in th is case,
31 print inode/name pairs on standard output .
32 Retur ns 0 if all o k, 1 o therwis e .
33 *I
34
35 int
36 process(char *dir )
37
38 OIR *dp;
39 struct dirent *ent ;
40
41 if ((dp = op endir (di r )) = = NULL) (
42 fprintr( s tderr, "% s : %s : cannot open for read ing : %s\n",
43 myname, di r, s crer ror(e rrno )) ;
44 return 1 ;
45
46
47 err no = 0 ;
48 whil e (( ent = readdir (dp)) ' = NULL )
49 printf ("%8Id %s \ n", enc->d_ino, enc->d_ name ) ;
50
51 if ( errno ! = 0) {
52 fprintf (stde rr , "%s : %s : rea ding directory ent ries : %s\n",
53 myname , dir, stre rror(er rno)) ;
54 return 1 ;
55
56
57 if (closedir (dp) ' = 0) (
58 fprintf (stde rr , "%S : %S : closedir: %s\n ",
59 myname , dir, st rerror(errno)) ;
60 return 1;
61
62
63 ret urn 0 ;
64
T he p r oc ess () functio n does all the work, and the m ajority of it is error-checking
code. The h eart of the function is lines 4 8 and 49 :
while (( ent = readdir (dp )) ! = NULL)
print f ( " %8Id %s\n ", en t->d_i no , ent ->d_ name ) ;
T his loo p reads directory entries, one at a time, until readdir () returns NUL L . The
loo p body prints the inode num ber and filename of each entry. H ere's wh at happens
when the p rogram is run :
136 Chapter 5 • Directories and File Metadata
The output is not sorted in any way; it represents the linear contents of the directory.
(We describe how to sort the directory contents in Section 6.2, "Sorting and Searching
Functions," page 181 .)
4 GNU/Linux systems are capable of mountin g filesystems from many non-U nix operating systems. Many com-
mercial Unix systems can also mount MS- DOS filesystems. Assumptions about Unix filesystem s don't apply in
such cases.
5.3 Reading Direc(Ories 137
Many system calls, such as open ( ) , r ead ( ) , and wr i t e ( ) , are meant to be call ed
directly from user-level application code: in other words, from code that you, as a
GNU/Linux developer, would write.
However, other system calls exis t only (0 make it poss ible to implement higher-level,
standard library function s and should not be called directly. The GNU/Linux
ge t d e nt s () sys tem call is one such; it reads multi ple directory entries into a buffer
provided by the caller- in this case, the code that implements r e add ir ( ). The
re addir () code then returns valid directory entries from the buffer, one at a time,
refilling the buffer as needed.
These for-library- use-o nly system calls can be distinguished fro m for-user-use system
calls by their appearance in the man page. For examp le, from getdents (2):
NAME
get dent s - get d ir e c tory entr ie s
SYNOPSIS
#include <unistd . h >
#include <linux / type s . h>
#inc l ude <linux /dirent . h>
#include <linux/ un i std . h >
int getde nts (unsigne d int fd, s t r uct dirent *di r p, unsigne d int count);
Any system call that uses a _syscal lX () macro should not be called by application
code. (More information on these calls can be found in the intro(2) manpage; yo u should
read that manpage if yo u haven 't already.)
In the case of get d en ts ( ), many other Unix systems have a similar system call;
som etimes with the same name, sometimes wi th a different name. Thus, trying to use
these calls would only lead to a massive portability mess anyway; yo u're much better off
in all cases using readd ir ( ) , whose interface is well defined , standard, and portable.
st ruct d irent {
} ;
TABLE S.1
Values for d_type
Name Meaning
Knowing the file's type just by reading the directory entry is very handy; it can save
a possibly expensive s ta t () system call. (The s ta t () call is described shortly, in Sec-
tion 5.4.2, "Retrieving File Information," page 141.)
/ * Caveat Emptor : POSIX XSI uses long, not of f_t, for both function s * /
of f_t telld ir (DIR *dir ) ; Return current position
voi d seekdir(DIR *dir, off_t off set); Move to given position
5.4 Ob[aining Informa[ion abou[ Files 139
These routines are similar to the ft ell () and fs eek () functi ons in <stdi o . h> .
T hey return the current positio n in a directory and set the current position to a previ-
ously retrieved value, respectively.
These routines are included in the XSI part of the POSIX standard, since they make
sense only for directories that are implemented with linear storage of directo ry entries.
Besides the ass umptio ns made about the underlying directory structure, these routines
are riskier to use than the simple directory-reading routines. This is because the contents
of a directory might be changing dynami cally: As files are added to or removed from a
directory, the operating syste m adjusts the contents of the directory. Since directory
entries are of variable length, it may be that the absolute offset saved at an earlier ti me
no longer represe nts the start of a directory entry! Th us, we don 't reco mmend that yo u
use these functions unless you have to.
Regular files
As the name implies; used for data, executable programs, and anything else you
might like. In an '1 s - 1' listing, they show up with a ' - ' in the first character of
the permissions (mode) field .
Directories
Special files for associating file names with inodes. In an ' I s -1' listing, they show
up with a d in the first character of the permissions field.
Symbolic links
As described earlier in the chapter. In an ' Is -1' listing, they show up with an 1
(letter "ell," not digit 1) in the first character of the permissions fiel d.
140 Chapter 5 • Direc[Qries and File Metadata
Devices
Files representing both physical hardware devices and software pseudo-devices.
There are two kinds:
Block devices
Devices on which I/O happens in chunks of some fixed physical record size,
such as disk drives and tape drives . Access to such devices goes through the
kernel's buffer cache. In an '18 -1 ' listing, they show up with a b in the first
character of the permissions field.
Character devices
Also known as raw devices. Originally, character devices were those on which
I/O happened a few bytes at a time, such as terminals. However, the character
device is also used for direct I/O to block devices such as tapes and disks,
bypassing the buffer cache. 5 In an ' 1 8 -1' listing, they show up with a c in
the first character of the permissions field .
Namedpipes
Also known as FIFOs ("first-in first-out") files. These special files act like pipes;
data written into them by one program can be read by another; no data go to or
from the disk. FIFOs are created with the mkfifo command; they are discussed
in Section 9.3.2, "FIFOs," page 319. In an '1 8 -1 ' listing, they show up with a
p in the first character of the permissions field.
Sockets
Similar in purpose to named pipes,6 they are managed with the socket interprocess
communication (IPe) system calls and are not otherwise dealt with in this book.
In an ' 18 -1 ' listing, they show up with an 8 in the first character of the permis-
sions field .
5 Linux uses the block device for disks exclusively. Other systems use both.
6 Named pipes and sockets were developed independendy by the System V and BSD U nix groups, respectively.
As U n ix systems reco nve rged, both kinds of files became uni versally available.
5. 4 Obtaining Information about Files 141
The s t a t () function accepts a pathname and returns information about the given
file. It follows symbolic links; that is, when applied to a symbolic link, s ta t () returns
information about the pointed-to file , not about the link itself. For those times when
you want to know if a file is a symbolic link, use the lstat () function instead; it does
not follow symbolic li nks.
The f s ta t () function retrieves information about an already open file. It is partic-
ularly useful for file descriptors 0, 1, and 2, (standard input, output, and error) which
are already open when a process starts up. However, it can be applied to any open file.
(An open file descriptor will never relate to a symbolic link; make sure you under-
stand why.)
The value passed 10 as the second parameter should be the address of a struct
stat, declared in < s y s /stat . h> . As with the struct dirent , the st ru ct stat
contains at least the following members:
struct stat {
};
(The layout may be different on different architectures.) This structure uses a number
of typede f' d types . Although they are all (typically) integer types , the use of specially
142 Chapter 5 • Directories and File Metadata
defined types allows them to have different sizes on different systems. This keeps user-
level code that uses them portable. Here is a fuller description of each field .
st_dev
The device for a mounted filesystem. Each mounted filesystem has a unique value
for st_dev.
st ino
The file 's inode number within the filesystem. The (st_dev, st_ino) paIr
uniquely identifies the file .
st_rnode
The file's type and its permissions encoded together in one field. We will shortly
see how tu extract this information.
st_n l i nk
The number of hard links to the file (the link count). This can be zero if the file
was unlinked after being opened.
st_uid
The file 's UID (owner number).
st_ gid
The file's GID (group number).
st rdev
The device type if the file is a block or character device. s t _ rdev encodes infor-
mation about the device. We will shortly see how to extract this information. This
field has no meaning if the fil e is not a block or character devi ce.
st siz e
The logical size of the file. As mentioned in Section 4.5 , "Random Access: Moving
Around within a File," page 102, a file may have holes in it, in which case the size
may not reflect the true amount of storage space that it occupies.
s t _ bl ks i ze
The "block size" of the file. This represents the preferred size of a data block for
I/O to or from the file. This is almost always larger than a physical disk sector.
Older Unix systems don 't have this field (or st_blocks ) in the stru ct stat .
For the Linux ext2 and ext 3 filesystems , this value is 4096.
5.4 Obtaining In formatio n about Files 143
st_b locks
The number of "blocks " used by the file. On Linux, this is in units of 512-byte
blocks. On other systems, the size of a block m ay be different; check your local
stat(2) manpage. (This number comes from the DEV_B S IZE constant in
<sys / param . h>. This co nstant isn' t standardized, but it is fairly widely used on
U nix systems.)
The number of blocks may be m ore than 's t_s ize / 51 2 '; besides the data
blocks, a filesystem m ay use additional blocks to store the locations of the data
blocks. This is particularly necessary for large fi les.
st a time
The file's access time; that is, the last time the file's data were read .
st_mt i me
T he file 's modification time; that is , the last time the file 's data were written or
truncated.
st ctime
The file's inode change time. This indicates the last time when the file's metadata
changed, such as the permissions or the owner.
i
~ NOTE The st_c time field is not the file's "creation tim e" ! There is no such
. th ing in a Linux or Unix system . Some early documentati o n referred to the
st_c time field as the creation time. This was a m isguid ed effort to s imp lify
I th e presentation of the file m etadata.
The t ime_t type used for the st_atime, s t _mtime , and st_ c time fields represents
dates and times. These time-related values are sometimes termed timestamps. Discussion
of how to use a time_t value is delayed until Section 6. 1, "Times and Dates," page 166.
Similarly, the uid_t and gid_t types represent user and group ID numbers, which
are discussed in Section 6.3, "User and Group Names," page 195. Most of the other
types are n ot of general interest.
Once stbuf has been filled in by the system, the following macros caI1 be called,
being passed stbuf . st_mode as the argument:
S_ ISREG{stbuf.st_mode)
Returns true if filen ame is a regular file.
S_I SDIR {stbuf .st_mode )
Returns true if fi lename is a directory.
S_ISCHR{ stbuf.st_mode)
Returns true if filen a me is a character device. Devices are shortly discussed in
more detail.
S_ISBLK{stbuf. st_mode )
Returns true if f i 1 ename is a block device.
S_ISF I FO{ stbu f. st_mo de )
Returns true if filen ame is a FIFO.
5.4 Ob(aining Informacio n abou( Files 145
S_ISLNK(stbuf . st_mode)
Returns true if fi lename is a symbolic link. (This can never return true if stat ( )
or fst at () were used instead of lstat ( ) .)
S_IS SOCK(stbuf .st_mode )
Returns true if f i 1 ename is a socket.
:r~
'~':~
i
'ru
I
NOTE It happens that on GNU/ Linux, these macros return 1 for true and 0
for false . However, on other system s, it's possible that they return an arbitrary
nonzero value for true, instead of 1. ( POSIX specifies only non ze ro vs. zero .)
\~ Thus, you shoul d always use these macros as standalone tests instead of testing
:~ the return va lue:
.ill if (S_ISREG(stbuf . st_mode)) . .. Correct
fg
~
~~ if (S_ IS REG (stbu f .s t_mode ) == 1) Incorrect
11
Along with the m acros, <sys / stat . h> provides two sets of bit masks. One set is for
testing permission, and the other set is for testing the type of a file. We saw the permis-
sion masks in Section 4 .6, "Creating Files," page 106, when we discussed the mode_ t
type and values for open () and creat ( ) . The bitmasks, their values for GNU/ Linux,
and their meanings are described in Table 5.2.
Several of these masks serve to isolate the different sets of bits encoded in the
s t_mode field:
• S_ IFMT represents bits 12- 15, which are where the different types of files are
encoded.
• S_IRWXU represents bits 6-8 , which are the user's permission (read, write, execute
for User) .
• S_IRWXG represents bits 3-5, which are the group's permission (read, write, execute
for Group).
• S_ IRWXO represents bits 0-2 , whi ch are the "other" permission (read, write, execute
for Other).
The permission and file type bits are depicted graphically in Figure 5.3.
146 Chapter 5 • Directories and File Meradara
TABLE 5.2
POSIX fi le-type and perm issi on bitmasks in <sys / stat .h>
T he file- rype masks are standardized primarily for compatibiliry with older code;
they should not be used directly, because such code is less readable than the corres pond-
ing macros . It h appens that the macros are implemented, logically enough, with the
masks, but that's irrelevant for user-level code.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 o
FIGURE 5.3
Permission and file-type bits
The POSIX standard explicitly states that no new bitmasks will be standardized in
the futute and that tests for any addi tional kinds of file rypes that may be added will
be available only as S_I Sxxx () macros.
Instead of the file size, l s displays the major and minor numbers. In the case of the
hard disk, / dev / hda represents the whole drive. /dev / hdal, / dev / hda 2, and so on,
represent partitions within the drive. They all share the same major device number (3),
but have different minor device numbers.
Note that the disk devices are block devices, whereas / dev / nu11 is a character device.
Block devices and character devices are separate entities; even if a character device and
a block device share the same major device number, they are not necessarily related.
The major and minor device numbers can be extracted from a d ev_ t value with the
ma j or () and mi nor () functions defined in <sys / sysmacros . h >:
#include <s ys / type s .h> Common
#i nclude <sys/sysmacros . h>
if (argc I = 2)
fprintf( stderr, "usage : %s path\n", argv[O]);
exi t (1) ;
if (S_ISCHR ( sbuf.st_mode))
devtype = "char";
else if (S_ISBLK(sbuf . st _mode))
devtype = "block";
el se {
fprintf (stderr, "%s is not a block or character devic e \n", argv[l]) ;
e xi t (1) ;
e xit(O) ;
Fortunately, the outp ut agrees with that of ls, giving us confidence 7 that we h ave
indeed wri tten correct code.
Reproducing the o utput oEl s is all fine and good, but is it really useful? T he answer
is yes. Any application that works with file hierarchies must be able to distinguish among
all the different types of files. Consider an archiver such as tar or cpio . It would be
disastrous if such a program treated a disk device file as a regular file, attemp ting to
read it and sto re its contents in an archive! Or consider fin d, which can perform
arbitrary actions b ased on the eype and other attributes of files it encounters. (fi nd is
a complicated program; see find(l ) if you're not familiar with it.) Or even something
as simple as a disk space accounting package has to distinguish regular files from
everything else.
This code should now make sense. Line 31 calls f s ta t () on the standard output
to fill in the s ta t b structure. Line 32 throws away all the information in
s tatb . s t_mode except the file eype, by ANDing the mode with the S_IFMT mask.
Line 33 checks that the file being used for standard output is not a device file . In that
case, the program saves th e device and inode numbers in dev and ino . These values
are then checked for each input file in lines 50- 56:
50 fstat(f il eno(fi), &statb ) ;
51 if (s tatb.st_dev ==dev && statb .s t _ino==ino)
52 fp ri ntf ( stderr, " ca t : input %s is output\n",
53 ff lg?"-": *argv);
54 fclo s e(fi);
55 co nt inu e ;
56
If an input file 's s t_dev and s t_ino values match those of the output file , then c a t
complains and continues to the next file named on the command line.
The check is done unconditionally, even though dev and ino are set only if
the output is not a device file. This works out OK, because of how those variables
are declared:
17 int dev, ino -1;
5.4 Obtaining Informarion about Files 151
Since i no is initialized to - 1, no valid inode number will ever be eq ual to ir. 8 That
dev is not so initialized is sloppy, but not a problem , since the test on line 51 requires
th at both the device and inode be equal. (A good compiler will complain that dev is
llsed without being initialized: 'gee - Wa 11' does.)
No te also that neither call to fsta t () is checked for errors. This too is sloppy, al-
though less so; it is unlikely that fsta t () wi ll fail on a valid file descriptor.
The test for input file equals output file is done only for nondevice files. This makes
it possible to use eat to copy input from device files to themselves, such as
with terminals:
$ tty Print current terminal device name
/ dev/ p ts!3
$ cat /dev/pts/3 > /dev/pts/3 Copy keyboard input to screen
this is a line of text Type in a line
this i s a line o f text cat repeats it
We already saw that the syml ink () system call creates a symbolic link. But given
an existing symbolic link, how can we retrieve the name of the file it points to? (Is
obviously can, so we ought to be able to also.)
Opening the link with open () in order to read it with read () won't work; open ()
fo llows the link to the pointed-to file. Symbolic links thus necessitate an additional
system call, named re adlink ( ) :
8 This s(a(ement was (rue for V7 ; (h ere are no such gu arantees on modern sys(ems.
152 Chapter 5 • Direcrories and File Meradara
readl ink () places the contents of the symbolic link named by pa th into the buffer
pointed to by buf . No more than bufsiz characters are copied. The return value is
the number of characters placed in buf or - 1 if an error occurred . readlink () does
not supply the trailing zero byte.
Note that if the buffer passed in to readlink () is too small, you will lose informa-
tion; the full name of the pointed-to file won't be available. To properly use
r eadlink () , your code should do the followin g:
count = r eadli nk(link file , real fi le, PATH_MAX ) ; Read the link
if (count ! = sbuf.st_size )
/ * something weird going on, handle i t * /
the contents of a symbolic link into storage allocated by malloc ( ) . We show here just
the function ; most of the fil e is boilerplate definitions. Line numbers are relative to the
start of the file:
55 1* Call readlink t o get the s ymbolic l ink value of FILENAME .
56 Return a poi nter to tha t NUL-terminated string in mall oc'd stor age.
57 If readlink fai ls, return NULL (calle r may use errno c o diagnos e ) .
58 If r ealloc fails, or if the link value is longer than SIZ E_MAX :- ) ,
59 give a diagno s tic and exit . *1
60
61 c ha r *
62 xre a dlink (cha r c onst *filename)
63
64 1* The initi al buffer size f or the link val ue . A power of 2
65 detects arithmetic overflow earlier, but is not requir ed . *1
66 si ze_ t buf_size = 128;
67
68 while ( 1)
69 (
70 cha r *buffer = xmall oc (bu f_size ) ;
71 ssi ze_ t link_l ength = readl ink ( fi lename , buffer, buf _s i ze ) ;
72
73 if (l ink_leng th < 0)
74 (
75 inc saved_e rrno = errno ;
76 free (bu ffer ) ;
77 errno = saved_errno;
78 return NULL ;
79
80
81 if (( size_t ) link_leng th < bu f_ size )
82 (
83 buffer [link_ leng th) 0;
84 return buffe r;
85
86
87 free (buff er) ;
88 bu f_size *= 2;
89 if ( SSIZE_MAX < buf si ze II (SIZE_MAX I 2 < SSIZE_MAX && buf S1.ze 0) )
90 xalloc_d ie () ;
91
92 }
The function body consists of an infinite loop (lines 68-91), broken at line 84 which
returns the allocated buffer. The loop starts by allocating an initial buffer (line 70) and
reading the link (line 71) . Lines 73- 79 handle the error case, saving and restoring errno
so that it can be used correctly by the calling code.
Lines 81-85 handle the "s uccess" case, in which the link's contents' length is smaller
than the buffer size. In this case, the terminating zero is supplied (line 83) and then the
154 Chapter 5 • Directories and File Metadata
buffer returned (line 84), breaking the infinite loop. This ens ures that the entire link
contents have been placed into the buffer, since readlink () has no way to indicate
"insufficient space in buffer. "
Lines 87-88 free the buffer and double the buffer size for the next try at the top of
the loop. Lines 89-90 handle the case in which the link's size is roo big: bu C siz e is
greater than SSIZE_ MAX, or S SIZ E_MAX is larger than the value that can be represented
in a signed integer of the same size as used to hold SI ZE_MAX and buf_siz e has wrapped
around to zero. (These are unlikely conditions, but strange things do happen .) If either
condition is true, the program dies with an error message. Otherwise, the function
continues around to the top of the loop to make another try at allocating a buffer and
reading the link.
Some further explanation: The 'SIZE_MAX / 2 < S SIZE_MAX' condition is true
only on systems on which 'SI ZE_ MAX < 2 * SS IZE_MAX' ; we don ' t know of any, but
only on such a system can bu f _ s i z e wrap around to zero. Since in practice this co ndi-
tion can't be true, the compiler can optimize away the whole expression, including the
following 'buCsiz e == 0' test. After reading this code, you might ask, "Why not use
1 s ta t () to retrieve the size of the symbolic link, allocate a buffer of the right size with
mal lo c (), and be done ?" Well, there are a number of reasons .9
Finally, when the buffer isn't big enough, xreadl ink () uses fr e e () and malloc ( )
with a bigger size, instead of realloc ( ) , to avoid the useless copying that realloc ( )
does. (The comment on line 58 is thus out of date since reall oc () isn't being used;
this is fixed in the post-5.0 version of the Coreutils.)
c hown () works on a pathname argument, fch own ( ) works on an open file, and
1ch own ( ) works on symbolic links instead of on the files pointed to by symbolic links.
In all other respects, the three calls work identically, returning 0 on success and - 1
on errOL
It is noteworthy that one system call ch anges both the owner and gro up of a file. To
change only the owner or only the group, pass in a value of -1 for the ID number that
is to be left unchanged.
While you might think that you could pass in the corresponding value from a previ-
ously retrieved s t ruct s ta t for the file or file descriptor, that method is more erro r
prone. There's a race condition: The owner or group could have changed between the
call to s ta t () and the call to chown ( ) .
You might wonder, "Why be able to change ownership of a symbolic link? The
permissions and owners hip on them don't marteL" But what happens if a user leaves,
but all his files are still needed? It's necessary to be able to change the ownership on all
the person's files to someone else, including symbolic links.
GNU/Linux systems normally do not permit ordinary (non-root) users to change
the ownership of ("give away") their files. Changing the group to one of the user's
groups is allowed, of course. The restriction on changi ng owners follows BSD sys tems,
156 Chapter 5 • Directories and File Metadata
which also have this prohibition. The primary reason is that allowing users to give away
files can defeat disk acco unting. Consider a scenario like this:
$ mkdir mywork Make a directory
$ chmod go-rwx mywork Set permissions to drwx------
$ cd mywork Go there
$ myprogram > large_ data_ file Create a large file
$ chmod ugo+rw large_ data_ file Set permissions to - rw-rw- rw-
$ chown otherguy large_ data_ file Give file away to otherguy
In this example, large_da ta_file now belongs to user otherguy. The original
user can continue to read and write the file , because of the permissions. But otherguy
will be charged for the disk space it occupies. However, since it's in a directory that
belongs to the original user, which cannot be accessed by o therguy, there is no way
for otherguy to remove the file.
Some System V systems do allow users to give away files. (Setuid and setgid files have
the corresponding bit removed when the owner is changed.) This can be a particular
problem when files are extracted from a . tar or . epio archive; the extracred files end
up belonging to the UID or GID encoded in the archive. On such systems, the tar
and epio programs have options that prevent this, but it's important to know that
ehown ( ) 's behavior does vary across systems.
We will see in Section 6.3 , "User and Group Names," p age 195, how to relate user
and group names to their corresponding numeric values.
chmod () works on a path name argument, and f chmo d () works on an open file.
(There is no lchmod () call in POSIX, since the system ignores the permission settings
on symbolic links. Some systems do have such a call, though.) Ai> with most other system
calls, these return 0 on success and -1 on failure. Only the file's owner or r oot can
change a file 's permissions.
5.5 C hanging Ownership , Permission, and Modifica rio n Times 157
T he mode val ue is created in the same way as for open () and creat () , as discussed
in Section 4.6, "Creating Files, " page 106 . See also Table 5.2 , which lists the permis-
SlO n constan ts .
T he system will not allow setting the setgid bit (S_ISGID) if the group o f the file
does not m atch the effective gro up ID of the p rocess or one of its supplem entary gro ups.
(We have no t yet d iscussed these iss ues in detail; see Sectio n 11 . 1.1, "Real and Effective
IDs, " page 40 5.) Of course, this check does not apply to r oot or to code running
as roo t .
to UTC is a language- independe nt acronym for Coordinated U niversal T ime. O lder code (and so metimes older
people) refer ro this as "Greenwich Mean T ime" (GMT), which is the time in G reenwich , England . When time
zones ca me inro widespread use, G ree nwich was chosen as the locatio n to which all other time zo nes are relative,
either behind it or ahead of it.
158 Chapter 5 • Directories and File Metadata
s truct u t irnbuf {
time_t a ctime; / * access time * /
time_t modtime ; / * modifi c at i on t ime * /
};
If the call is successful, it returns 0; otherwise, it returns -1. Ifbuf is NULL, then the
system sets both the access time and the modification time to the current time.
To change one time but not the other, use the original value from the s t ruet sta t .
For example:
/ * Error checking o mi tted for brevity * /
struct s t a t sbuf;
struct utirnbuf uti
time_t now ;
time (& now) ; Get current time of day, see next chapter
stat( " /some / f ile ", & sbuf ); Fill in sbuf
ut . actime = sbuf.st_ at i me; Access time unchanged
IIi NOTE I n new code, yo u may wish to use the utimes () call (note the s in the
I name ), which is described later in th e book, in Section 14.3. 2, "Microsecond
I File Tim es: utimes ( ) ," page 545 .
47 static int
48 utime_null (const char *fil e )
49
50 #if HAVE_UTIMES_NULL
51 return utimes (file , 0);
52 #els e
53 int fd;
54 char c;
55 int status = 0 ;
56 struct stat sb;
57
58 fd = open(file, O_RDWR ) ;
59 if (fd0 <
60 II fs tat ( fd, &sb ) < 0
61 I I saf e_read (fd , &c, sizeof c ) == SAFE_READ_ERROR
62 II l s eek (fd , (o fe t) 0 , SEEK_ SET ) < 0
63 II full _write (fd , &c, sizeo f c) ! = sizeof c
64 /* Maybe do this - - it's nece ss ary on SunOS4. 1.3 with some combina tion
65 of patches, but that system doesn't use this code : it has utimes .
66 I I fsync ( fd ) < 0
67 *I
68 I I (st.s t_size == 0 && ftruncate (fd , st.st_s ize) < 0)
69 II close (fd) < 0)
70 status = -1;
71 return status;
72 #endif
73
74
75 i nt
76 rpl _ut ime (const cha r *file, const struct utimbuf *times)
77
78 if ( times )
79 return utime ( fil e, times ) ;
80
81 return utime_nu ll (file);
82 }
Lines 33-41 define the struc t utimbuf; as the comment says, some systems don ' t
declare the structure. The utime_nul l () function does the wo rk. If the utimes ()
system call is available, it is used. (ut imes () is a similar, but more advanced, system
call, which is covered in Section 14.3.2, "Microsecond File Times: ut ime s ( ) ," page 545 .
It also allows NULL for the second argument, meaning use the current time. )
In the case that the times must be updated manually, the code does the update by
first reading a byte from the file , and then writing it back. (The original Unix touc h
worked this way.) The operations are as follows:
3. Read one byte, line 6 1. For our purposes, safe_read () acts like read() ; it's
explained in Section 10.4.4, " Restartable System Calls," page 357.
4. Seek back to the front of the file with lseek ( ) , line 62. This is done to write
the just-read byte back on top of itself.
5. Write the byte back, line 63. full_write () acts like writ e (); it is also covered
in Section 10.4.4, "Restartable System Calls," page 357.
6. If the file is of zero size, use ftruncate () to set it to zero size (line 68) . This
doesn't change the file , but it has the side effect of updating the access an d
m odificatio n times. (ft runcate () was described in Section 4.8, "Setting File
Length," page 114.)
7. Close the file , line 69.
T hese steps are all done in one long successive chain of tests , inside an if. The tests
are set up so that if any operation fails, u time_null () returns - 1, like a regular sys tem
call. e rrno is automatically set by the system, for use by higher-level code.
The rp l_utime () function (lines 75-82) is the "replacement utime () ." If the
seco nd argument is not NULL , then it calls the real utime ( ) . Otherwise, it calls
utime _ null () .
These system calls, as well as 1 chown ( ) , are of relatively recent vintage; 11 older Unix
systems won't have them, although modern, POSIX-compliant systems do .
There are no corresponding futime () or lutime () functions. In the case of
futime (), this is (apparently) because the file timestamps are not critical to system
security in the same way that ownership and permissions are. There is no l utime ( ),
since the timestamps are irrelevant for symbolic links.
5.6 Summary
• The file and directory hierarchy as seen by the user is one logical tree, rooted at
/ . It is made up of one or more storage partitions, each of which contains a
filesystem. Within a filesystem, inodes store information about files (metadata),
including the location of file data blocks.
• Directories make the association between filenames and inodes. Conceptually,
directory contents are just sequences of (inode, name) pairs. Each directory entry
for a file is called a (hard) link, and files can have many links. Hard links, because
they work only by inode number, must all be on the same filesystem. Symbolic
(soft) links are pointers to files or directories that work based on filename, not inode
number, and thus are not restricted to being on the same filesystem.
• Hard links are created with li nk ( ), symbolic links are created with s ymlink () ,
links are removed with unlink () , and files are renamed (possibly being moved
to another directory) with r ename ( ) . A file 's data blocks are not reclaimed until
the link count goes to zero and the last open file descriptor for the file is closed.
• Directories are created with mkdir () and removed with rmdir ( ); a directory
must be empty (nothing left but ' . ' and ' .. ') before it can be removed. The
GNU/Linux version of the ISO C remov e ( ) function calls unlink () or rmdir ( )
as appropnate.
• Directories are processed with the opendir ( ) , re addir ( ) , rewinddir ( ) , and
cl os edir () functions. A st ruct d irent contains the inode number and the
file's name. Maximally portable code uses only the filename in the d_name member.
The BSD telldir () and seekdir () functions for saving and restoring the
11 f chown () and f chmod ( ) were introduced in 4.2 BSD bur not picked up for System V until System V Release 4.
5.7 Exercises 163
current position in a directory are widely available bu t are not as fully portable as
the other directory processing functions.
• File metadata are retrieved with the s ta t () family of system calls; the s tru c t
stat structure contains all the information about a file except the filename. (Indeed,
since a file may have many names or may even be co mpletely unlinked, it's not
possible to make the name available.)
• The S _ I S xxx() m acros in <sys /st at . h> make it possible to determine a file's
type. The ma j or () a nd minor ( ) functio ns from <sys / sysmac ros. h > make it
possible to decode the dev _ t values that represent block and character devices.
• Symbolic links can be checked for using l stat ( ) , and the st_s ize field of the
st ru c t s tat for a symbolic link returns the number of bytes needed to hold the
name of the pointed-to file. T he contents of a symbolic link are read with
r e ad1 ink ( ) . Care must be taken to get the buffer size correct and to terminate
the retrieved filename with a trai ling zero byte so that it can be used as a C string.
• Several miscellaneo us system calls update other information: the chown () family
for the owner and group, the c hmod () routines for the file permissions, and
utime () to change file access an d modificatio n times.
Exercises
l. Wri te a routine 'con st c har * f mt_mode (mode_ t mode ) ' . The input is a
mo de_ t value as provided by the st_mode field in the st ruct stat ; that is,
it co ntains both the permission bits and the file type.
The output sh o uld be a 1O-character stri ng identical to the first field of output
fro m ' 1 s -1' . In other words, the first character identifies the file type, and
the other nine the permissions.
When the S_I S UID and S_IXUSR bits are se t, use an s instead of an x; if only
the I_ISUI D bit is set, use an s. Similarly for the S_ISG ID and S_I XGRP bits.
Ifboth the S_ISVTX and S_IXOTH bits are set, use t ; for S_ISVT X alone, use T.
For simplicity, you may use a stati c buffer whose contents are overwritten
each time the routine is called.
164 Chapter 5 • Directories and File Metadata
2. Extend chOS - c atdir. c to call stat () on each file name found. Then print
the inode number, the result of fn1t_mode () , the link count, and the file's name.
3. Extend chO 5 -ca tdir. c further such that if a file is a symbolic link, it will also
print the name of the pointed-to file.
4. Add an option such that if a filename is that of a subdirectory, the program
recursively enters the subdirectory and prints information abour the subdirec-
tory's files (and directories) . Only one level of recursion is needed.
5. If you're not using a GNU/Linux system, run chO S- trymkdir (see Section 5.2,
"Creating and Removing Directories," page 130) on your system and compare
the results to those we showed.
6. Write the mkdir program. See your local mkdir(l) manpage and implement
all its options.
7. In the root directory, / , both the device and inode numbers for ' . ' and ' .. '
are the same. Using this bit of information, write the pwd program.
The program has to start by find ing the name of the current directory by
reading the contents of the parent directory. It must then continue, working
its way up the filesystem hierarchy, until it reaches the root directolY.
Printing the directory name backwards, from the current directory up to the
root, is easy. How will your version of pwd manage to print the directory name
in the correct way, from the root on down ?
8. If you wrote pwd using recursion, write it again, using iteration. If you used
iteration, write it using recursion. Which is better? (Hint: consider very deeply
nested directory trees.)
9. Examinetherp l _utime () function (see Section 5.5.3.1, "Fakingutime (fi le,
NULL ) ," page 159) closely. What resource is not recovered if one of the tests
in the middle of the if fails? (Thanks to Geoff Collyer.)
10. (Hard.) Read the chmod(l) manpage. Write code to parse the symbolic options
argument, which allows adding, removing, and setting permissions based on
user, group, other, and "all. "
Once you believe it works, write your own version of chmod that applies the
permission specification to each file or directory named on the command line.
Which function did you use, chmod ( ) -or open () and f chmod ( ) - and why?
In this chapter
165
W e saw in Chapter 5, "Directories and File Metadata, " page 11 7, that directly
reading a directory returns filenames in the order in which they' re kept in
the directory. We also saw that the struct stat contains all the information about
a file, except its name. However, some components of that structure are not directly
usable; they' re just numeric values.
This chapter presents the rest of the APIs needed to make full use of the s truct
st at component values. In order, we cover the following topics: t i me_ t values for
representing times and the time formatting function ; sorting and searching functions
(for sorting filenames, or any other data); the u i d_t and g i d_ t types for representing
users and groups and the functions that map them to and from the corresponding
user and group names; and finally, a function to test whether a file descriptor repre-
sents a terminal.
166
6.1 T imes and Dares 167
time () returns the current time. If the t parameter is not NULL, then the value
pointed to by t is also filled in wi th the current time. It returns (t ime_ t ) -1 if there
was an error, and errno is set.
Although ISO C doesn ' t specify what's in a time_t value, POSIX does indicate that
it represents time in seco nds. Thus , it's both common and portable to make this assump-
tion. For example, to see if a time value represents something that is six m onths or more
in the past, one might use code like this:
/ * Error checking omit ted for brevit y * /
time_t now , then, some_time;
H owever, since strictly portable code may need to run on non-POSIX systems, the
difftime () function exis ts to produce the difference between two times. The same
test, using difftime (), would be written this way:
time_t now, some_value;
const doubl e six_month s = 6 . 0 * 31 * 24 * 60 * 60 ;
The return type of difftime () is a double because a time_t could possibly repre-
sent fractions of a second as well. On POSIX systems, it always represents whole seconds.
168 Chapter 6 • General Library Interfaces - Part 1
In both of the preceding examples , note the use of typed constants to force the
computation to be done with the right type of math: 6L in the first instance for l ong
integers, 6 . 0 in the second, for floating point.
gmtime () returns a pointer to a struct tm that represents UTe time. loc al time ()
returns a pointer to a struct tm representing the local time; that is, it takes the current
time zone and daylight-saving time into account. In effect, this is "wall-clock time,"
the date and time as it would be displayed on a wall clock or on a wristwatch. (How
this works is discussed later, see Section 6.1.5, "Getting Time-Zone Information,"
page 178.)
Both functions rerum a pointer to a struct tm, which looks like this:
struct tm
in c tm _sec; /* sec onds * /
i nt tm_min; /* minu tes * /
in t tm_hour ; /* hour s * /
int tm_mday; /* day of the month */
i nt tm _mon; /* month * /
int tm-year; /* year * /
int tm_wday; /* day o f the week * /
int tm-yday; /* day in the year * /
i nt tm_ isdst; /* daylight saving time * /
} ;
TABLE 6.1
Fields in the s true t tm
The ISO C standard presents most of these values as "x since y." For example, tm_sec
is "seconds since the minute," tm_mon is "months since January, " tm_wday is "days
since Sunday," and so on. This helps to understand why all the values start at o. (The
single exception, logically enough, is tm_mday, the day of the month, which ranges
from 1-3l.) Of course, having them start at zero is also practical ; since C arrays are
zero-based, it makes using these values as indices trivial:
static const char *const days[] = ( Array of day names
" Sunday", "Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday",
) ;
time_t now;
struct tm *curtime;
The tm_i sdst field indicates whether or not daylight-saving time (DSn is currently
in effect. A value of 0 means DST is not in effect, a positive value means it is, and a
negative value means that no DST information is available. (The C standard is
purposely vague, indicating only zero, positive, or negative; this gives implementors
the most freedom .)
int main(void )
When run , this program produces outp ut of the form: 'Thu May 22 15: 44 : 21
2 003'. The terminating newline is included in the result. To be m ore precise, the return
value points to an array of 26 characters, as shown in Figure 6.l.
o 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
, , I ' I I
T r h r. u May 2 2 15
r (
: r 44
!
:21 2 r 0r 0 3
J
FIGURE 6.1
Return string from c time () and asctime ()
Much older Unix code relies o n the fact that the values h ave a fixed position in the
returned string. When using these rourines, remember th at they include a trailing
newline. Thus, the small example program uses a simple "%s" format string for
printf () , and not " %s\n ", as might be expected.
ct ime () saves you the step of calling lo caltime ( ); it's essentially eq uivalent to
time_t now ;
char *c urtime;
• The output format is fixed. There's no way to rearrange the order of the elements.
• The output does not include time-zone information.
• The output uses abbreviated month and day names.
• The ourpur assumes English names for the months and days.
For these reasons, C89 introduced the strftime () standard library routine:
#include <time . h> ISO C
char *s
A buffer to hold the formatted string.
172 Chapter 6 • General Library Interfaces - Part 1
size t max
The size of the buffer.
canst char *f a rma t
The format string.
canst struct tm *tm
A struct t m pointer representing the broken-down time to be formatted.
The format string contains literal characters, intermixed with conversion specifiers
that indicate what is to be placed into the string, such as the full weekday name, the
hour according to a 24-hour or 12-hour clock, a.m. or p.m. designations, and so on.
(Examples coming shortly.)
If the entire string can be formatted within max characters, the return value is the
number of characters placed in s, not including the terminating zero byte. Otherwise,
the return value is o. In the latter case, the contents of s are "indeterminate. " The fol-
lowing simple example gives the Bavor of how strftime () is used:
#include <stdio.h>
#include <time . h>
char buf[100];
time_t now;
struct tm *curtime;
Table 6.2 provides the full list of conversion specifiers, their possible alternative
representations, and their meanings. In addition, the C99 standard added more specifiers
to the list; those that are new in C99 are marked with a ./ symbol.
6.1 Ti mes a nd Dates 173
TABLE 6 .2
strftirne ( ) conversion format specifiers
A locale is a way of describing the current location, taking into account such things
as language, character set, and defaults for formatting d ates, times, and monetary
amounts, and so on. We deal with them in Chap ter 13 , "Internationalization and Lo-
calization," page 485. For now, it's enough to understand that the results from
strf time () for the same format string can vary, according to the current locale.
The versions starting with %E an d %0 are for "alternative representations." Some locales
h ave multiple ways of representing the sam e thing; these specifiers provide access to the
additional representations. If a particular locale does not support alternative representa-
tions, then strftime () uses th e regular version.
Many Unix versions of date allow you to provide, on the command line, a format
string that begins with a + character. da te then formats the current date and time and
prints it according to the format string:
$ date +'It is now ~oA, %B %d, %Y, %I:~~ %p'
I t is now Sunday, May 25, 2003 , 0 6 : 44 PM
Most of the new C99 specifiers come from such existing Unix date implementations.
The %n and %t formats are not strictly necessary in C, since the TAB and newline
characters can be directly embedded in the string. However, in the context of a dat e
format string on the command line, they make more sense. Thus, they' re included in
the specification for strft ime () as well.
6.1 Times and Dates 175
The ISO 8601 standard defines (among other things) how weeks are numbered
within a year. According ro this standard, weeks run Monday through Sunday, and
Monday is day 1 of the week, not day o. If the week in which January 1 comes out
contains at least four days in the new year, then it is considered to be week 1. Otherwise,
that week is the last week of the previous year, numbered 52 or 53 . These rules are used
for the computation of the %g, %G, and %v format specifiers. (While parochial Americans
such as the author may find these rules strange, they are commonly used
throughout Europe.)
Many of the format specifiers produce results that are specific to the current locale.
In addition, several indicate that they produce the "appropriate" representation for the
locale (for example, %x) . The C99 standard defines the values for the " c" locale. These
values are listed in Table 6.3.
TABLE 6.3
"e " locale values for certain strftime() formats
Specifier Meaning
%a The first three characters of %A.
%A One of Sunday, Monday, ... , Sa turday.
%b The first three characters of %B.
%B One of Janua r y, February, ... , December.
%c Same as %a %b %e %T %Y.
%p One of AM or PM.
%r Same as %1 : %M : %S %p.
%x Same as %m/%d/%y.
%X Same as %T.
%Z Implementation-defined.
It should be obvious that s trf time () provides considerable flexibility and control
over date- and time-related output, in much the same way as printf ( ) and spr intf ( )
do. Furthermore, s tr ft i me () cannot overflow its buffer, since it checks against the
passed-in size parameter, making it a safer routine than is spr i ntf ( ) .
176 Chapter 6 • General Library Interfaces - Part 1
As a simple example, consider the creation of program log files , when a new file is
created every hour. The filename should embed the date and time of its creation in
ltS name:
/* Error checking omitted for brevity * /
char fname[PATH_MAX1; /* PATH_MAX is in <limits.h> * /
time_t now;
struct tm *tm;
int fd;
I ~OTE someb~ime
§
formats are more useful thandotherfis . For exa(WmPh le , d12-hour
l
times are am IgUOlJS, as are any pure y numenc ate ormats. at oes
I.~ '9 / 11' mean? it depends on where you live.) Similarly, two-digit years are also
I a bad idea. Use strftime () judiciously.
time_tmktime(struct tm *tm ) ;
To use mktime ( ) , fill in a struct tm with appropriate values: year, month, day,
and so on. If you know whether daylight-saving time was in effect for the given date,
6. 1 Times and Da[es 177
set the tm_i sdst field appropriately: 0 for "no ," and positive for "yes." Otherwise, use
a negative value for "don ' t know." The tm_wday and tm_yday fields are ignored.
mkt ime () assumes that the struct tm represents a local time, not UTe. It returns
a time_t value representing the passed-in date and time, or it returns (time_t) - 1
if the given d ate/time cannot be represented correctly. Upo n a successful return , all the
values in the st ruct tm are adjusted to be within the correct ranges, and tm_wday
and tm_yday are set correctly as well. H ere is a simple examp le:
1 1* ch06 -echoda te .c -- - demon stra te mktime() . *1
2
3 #include <stdio . h >
4 #include <time . h >
5
6 int mai n(void)
7
8 struct t m tm ;
9 time_t then;
10
!1 print f ("Enter a Da te /time as YYYY /MM/DD HH :MM: SS ") ;
12 scan f ("%d/%d/%d %d : %d : %d ",
13 & tm . tm_year , & tm . tm_mon , & tm . tm_mday,
14 & tm . tm_hour , & tm . tm_min, & tm . tm_sec) ;
15
16 1* Error checking on values om itt ed for brevity. *1
17 tm . tm_year -= 1900 ;
18 tm . tm_mon-- ;
19
20 tm . tm_isdst = -1; 1* Don't know about DST * 1
21
22 then = mktime(& tm);
23
24 p rintf ( "Got : %s ", ctime( & then)) ;
25 e xit(O);
26
Line 11 prompts for a date and time, and lines 12- 14 read it in. (Production code
should check the return value from scanf ( ) .) Lines 17 and 18 compensate for the
diffe rent basing of years and m onths, respectively. Line 22 indicates that we don't know
whether or not the given date and time represent daylight-saving time. Line 22 calls
mktime ( ), and line 24 prints the result of the conversio n. When compiled and run,
we see that it works:
$ ch06 -echodate
Ente r a Dat e/t ime as YYYY/MM/ DD HH : MM : SS 2003/5/25 1 9:07 : 2 3
Got : Sun May 25 19 : 07 : 23 200 3
178 Chapter 6 • General Library Interfaces - Part 1
vo i d tz s et(void ) ;
The tz set () function examines the TZ environment variable to find time-zone and
daylight-saving time information.! If that variable isn't set, then tzset () uses an
"implementation-defined default time zone, " which is most likely the time zone of the
machine you're running on .
After t zse t () has been called, the local time-zone information is available in
several variables:
ex t ern char *t zname(2 )
The standard and daylight-saving time names for the time zone. For example, for
U.S. locations in the Eastern time zone, the time-zone names are 'EST' (Eastern
Standard Time) and 'EDT ' (Eastern Daylight Time).
1 Alrho ugh POS IX standardizes TZ's format, it isn 't all mat interesting, so we haven't bo th ered ro docum ent it
here. After all, it is tzs et () that has ro understand the format, not user-level code. Impl ementations can , and
do , u se formats that extend POSIX.
6. 1 Times and Da[es 179
I@ NOTE Th e daylight varia ble do es not indicate whether daylig ht-saving tim e
I is currently in effect! Instead, it merely states whether the current time zone can
% even have daylight-saving time.
il
The POSIX standard indicates that c time ( ), localtime ( ), mkt i me ( ), and
strft ime () all act "as if" they call tzset () . This means that they need not actually
call tzset () , but they must behave as if it had been called. (The wording is intended
to provide a certain amount of flexibility for implementors while guaranteeing correct
behavio r for user-level code.)
In practice, this means that yo u will almost never have to call tzs et () yoursel f.
However, it's there if you need it.
The zone argument is the number of minutes west of GMT, and ds t is true if day-
light-saving time is in effect. The return value is a string giving the name of the indicated
zone, or a value expressed relative to GMT. This function provides compatibility with
the V7 function of the same name and behavior.
180 Chapter 6 • General Library Interfaces - Part 1
When possible, this directory uses hard links to provide the same data by multiple names.
For example, the fil es EST5 EDT and US / Eas tern are really the same:
$ Is -il ESTSEDT US/Eastern
724350 - rw - r - - r-- 5 root root 12 6 7 Sep 6 2002 EST5EDT
724350 - rw-r --r -- 5 ro ot r oo t 1267 Sep 6 2002 US!Eastern
Part of the process of installing a sys tem is to choose the tim e zo ne. The co rrect time-
zone data file is then placed in / etc / localtime:
$ file /etc/localtime
!etc!local time : timezon e dat a
On our system , thi s is a standalo ne copy of the time-zone file for our time zo ne. On
other systems , it m ay be a symbolic link to the file in / usr /s har e / z one in fo. The
advan tage of using a separate copy is that everything still works if / u sr isn 't mounted.
The TZ environment variable, if set, overrides the default time zone:
$ date Date and time in default time zone
Wed Nov 19 06 :4 4 : 50 EST 2 003
$ export TZ=PST8PDT Change time zone to US West Coast
$ date Print date and time
Wed Nov 19 03 : 45:09 PST 2 003
This function 's widespread existence makes portable use of the POSIX timezon e
variable diffi cult. Fortunately, we don ' t see a huge need for it: strftime () should be
sufficient for all but the most unusual needs.
6.2 Sorting and Searching Functions 181
The name q s o r t () comes from CA.R. Hoare's Quicksort algorithm, which was
used in the initial Unix implementation. (Nothing in the POSIX standard dictates the
use of this algorithm for q s o r t ( ) . The GLIBC implementation uses a highly optimized
combination of Quicksort and Insertion Sort.)
qs o rt () sorts arrays of arbitrary objects . It works by shuffling opaque chunks of
memory from one spot within the array to another and relies on you, the programmer,
to provide a comparison function that allows it to determine the ordering of one array
element relative to another. The arguments are as follows:
182 Chapter 6 • General Library Interfaces - Part 1
vo id *base
The address of the beginning of the array.
s ize t runernb
The total number of elements in the array.
size_t size
The size of each element in the array. The best way to obtain this value is with
the C s izeo f operator.
int ( *compar e) (cons t vo i d * c a nst vo i d * )
A possibly scary declaration for a function pointer. I t says that « compa re points to
a function that takes two ' c onst v o id *' parameters, and returns an in t ."
Most of the work is in writing a proper comparison function. The rerum value should
mimic that of str cmp ( ) : less than zero if the first value is "less than" the second, zero
if they are equal, and greater than zero if the first value is "greater than" the second. It
is the comparison function that defines the meaning of "less than" and "greater than"
for whatever it is you're sorting. For example, to compare two double values, we could
use this function:
int dcomp(canst void *d1p, canst void *d2p )
This shows the general boilerplate for a comparison function: convert the arguments
from v o i d * to pointers to the type being compared and then return a compari-
son value.
For Boating-point values, a simple subtraction such as 'return *dl - *d2' doesn't
work, particularly if one value is very small or if one or both values are special
6.2 Sorring and Searching Functio ns 183
"no t a number" or "infini ty" values. Thus, we have to do the comparison manually,
including taking into account the not- a- number value (which does n ' t even co mp are
equal to itselfl) .
We might write a function to sort employees by last name, first name, and ID number:
int emp_name_id_compar e(const void *e1p , const void *e2p )
The logic here is straightforward, initially comparing on last names, then first nam es,
and then using the employee ID number if the two names are the same. By using
st r cmp () on strings, we automatically get the right kind of negativelzero/ positive
value to return.
The employee ID comparison can't just use subtraction: suppose long is 64 bits and
int is 32 bits, and the two val ues differ only in the upper 32 bits (say the lower 32 bits
184 Chapter 6 • General Library Interfaces - Parr I
are zero) . In such a case, the subtraction result would automatically be cast to in t,
throwing away the upper 32 bits and returning an incorrect value.
~j~ NOTE We could have stopped with the comparison on first names , in which
*~ case all employees with the same last and first names would be grouped , but
Iw;t~~: :n~i;:hi':i:~~:!n"
m:
qsort (I does not guarantee a stab(e sort. A stabl,
sort is one in whi ch, if two elements compare equal based on some keyvalue(s),
1 they will maintain their original ordering, relative to each other, in the final
sorted array. For example, co nsider three employees wi th the same first and
last names, with employee numbers 17,4 2, and 81. Their order in the original
fu array might have been 42, 81, and 17 . (Meaning, employee 42 is at a lower
I
M index than employee 8 1, who , in turn , is at a lower index than employee 17.)
I After sorting, the order might be 81, 42, and 17 . If thi s is an issue, then the
co mparison routine must ta ke all important key values into consideration .
" (Ours does. )
For maximum portability we have used difftime (), which returns the difference
in seconds between two t i me_ t values. For this specific case, a cast such as-
return ( int ) difftime(e1->start_date , e 2->start_dat e);
6.2 Sorting and Searching Funcrions 185
- should do the trick, since ti me_t values are within reasonable ranges. Nevertheless,
we instead use a full three-way if statement, just to be safe.
Here is a sample data file, listing five U.S. presidents:
$ cat presdata . txt
Bush George 43 9800 1 36 00 Last name, first name, president number, inauguration
Cl i n ton William 4 2 727552800
Bus h George 41 60 1 322400
Re agan Ronald 40 34 88616 00
Carter James 3 9 2226 31200
c h 06- sor temp. c shows a simple program that reads this file into a struc t
empl oyee array and then SOrts it, using the two different comparison functions
just presented.
1 / * ch06 -sortemp . c Demonstr a t e qsor t () wi th t wo compar ison fu nc t i o ns. 'k /
2
3 #inc lude <std io . h>
4 #i nc lude <scd lib . h>
5 #inc lude <t ime . h >
6
7 st ruc t employ e e (
8 char lastname [30] ;
9 char firstn ame [30];
10 long emp_id ;
11 time_t start _ date;
12 };
13
14 / * e mp_name_id_compare --- compa re by name, t hen by ID * /
15
16 int emp_name_ id_ c ompare(const v oid *e1p, const v oid *e2 p )
17
... as shown previously, omitted to save space.
39
40
41 / * e mp_seni o r ity_compare - -- c ompare by seni ority */
42
43 int emp_senio ri t y_compare ( co ns t void *e 1p , const void *e 2 p )
44
... as shown previously, omitted to save space ...
58 }
59
60 / * ma in --- demon s trate so r t i ng * /
61
186 Chapter 6 • General Library Interfaces - Pan 1
Lines 70-77 read in the data. Note that any use of scanf () requires "well behaved"
input data. If, for example, any name is more than 29 characters, there's a problem. In
this case, we're safe, but production code must be considerably more careful.
Line 82 sorts the data by name and employee ID , and then lines 84-91 print the
sorted data. Similarly, line 94 re-sorts the data, this time by seniority, with lines 97-103
printing the results. When compiled and run, the program produces the following results:
6 .2 Sorting and Searching Funcrions 187
(W e've used 1:00 p .m. as an app roximatio n fo r the time wh en all of the p residents
started wo rking. 2)
One poi nt is wo rth mentioning: q s ort () rearranges the d ata in the array. If each
array element is a large structure, a fot of data wi ll be copied back and forth as the array
is sorted. It may pay, instead , to set up a separate array o/pointers, each of which points
at one element of the array. T hen use qsort () to sort the po inter array, accessing the
unsorted data through the sorted po inters.
T he price pai d is the extra m emory to ho ld the pointers and m odi ficat io n of the
com parison fun ction to use an ex tra pointer indirection when co mparing the structures.
The benefit returned can be a considerable speedup , since only a four- or eight-byte
pointer is moved around at each step, instead of a large structure. (Our s truct
employee is at least 68 bytes in size. Swapping fo ur-byte pointers m oves 17 times less
data than does swap ping structures .) For thousands of in-memory structures, the differ-
ence can be significant.
Iill NOTE If you ' re a C++ progra mmer, beware! qso r t () may be dan gero us to
use wi th a rrays of o bjects ! q sor t () do es raw memo ry moves, copyi ng bytes.
illJ1 It's completely un aware of C++ constructs such as copy co nstructors or
i
H op e rato r= () functio ns. Instead , use one of the STL sorting fun ctions, or use
the separat e-array-of-pointers technique .
2 T he outpur shown here is fo r U.S. Eastern Srand ard Ti me. Yo u wi ll ger diffe rent res ults fo r the same program
and dara if yo u use a different rim e zo ne.
188 Chapter 6 • General Library Inrerfaces - Part 1
The s candir () and alphasort () functions were made available in 4 .2 BSD and
are widely supported. 3 vers i onsor t ( ) is a GNU extension .
scandir () reads the directory named by dir, creates an array of struct di rent
pointers by using mall oc ( ) , and sets *namel i s t to point to the beginning of that array.
Both the array of pointers and the pointed-to s truct dirent structures are allocated
with mall oc ( ) ; it is up to the calling code to use f ree () to avoid memory leaks.
Use the s e lect function pointer to choose entries of interest. When this value is
NULL, all valid directory en tries are included in the final array. Otherwise, (* s e 1 ec t) ()
is called for each entry, and those entries for which it returns nonzero (true) are included
in the array.
The compare function pointer compares two directory entries. It is passed to qs ort ( )
for use in sorting.
al pha s or t ( ) compares filenames lexicographically. It uses the s t rco ll () function
for comparison. s trc oll () is similar to s trcmp () but takes locale-related sorting rules
into consideration (see Section 13.4, "Can You Spell That for Me, Please?", page 521).
versi ons ort () is a GNU extension, that uses the GNU st r v ers cmp () function
to compare filenames (see strverscmp(3)). To make a long story short, this function
understands common filename versioning conventions and compares appropriately.
3 One notable exception is Sun's Solaris, wh ere these [\'10 fun cti ons exist only in th e hard-to-use BSD compatibil-
ity libraty.
6 .2 Sorting and Searching Funcr io ns 189
43 int
44 process(const char *dir )
45 {
46 DIR *dp;
47 struct dirent **entries ;
48 int nents, i;
49
50 nent s = scandir (d ir , & entries, nodots, alphasort ) ;
51 if (nents < 0) {
52 fprintf(stderr, "%s : scandir fail ed : %s\ n", myname,
53 strerror (errno)) ;
54 return 1;
55
56
57 for ( i = 0 ; i < nents; i++) {
58 printf ("%8ld %s\n", entr ies [il->d_ino, entr ies [il->d_name);
59 free(entries[il) ;
60
61
62 free( entrie s);
63
64 return 0 ;
65
The main () program (lines 1-27) follows the standard boilerplate we've used before.
The n odo ts () fun ction (lines 3 1-35) acts as the s e lect parameter, choosing only
filen am es that don' t begin wi th a period.
The p r ocess () function (lines 4 3-65) is quite simple, with s candi r () doing most
of the wo rk. Note how each elem ent is released separately with f re e () (line 59) and
how the entire array is also released (line 62).
When run, the directory contents do indeed come out in sorted order, without ' . '
and' . . ':
$ ch06-sortdir Default actions displays current directory
2097176 OO - preface.tex i
2097187 01-intro .texi
2097330 02 -cmdline . texi
2097339 03- mem ory.texi
2097183 03-memory . tex i . save
2097335 04-fileio.texi
2097334 05- fileinfo . texi
20973,2 06 -genera l 1 . texi
6 .2 Sorting and Searching Fun c(ions 191
re turn - 1;
The advantage to linear searching is that it's simple; it's easy to write the code cor-
rectly the first time. Furthermore, it always works. Even if elements are added to the
end of the array or removed from the array, there's no need to sort the array.
The disadvantage to linear searching is that it's slow. On average, for an array con-
taining nel ems elements, a linear search for a random element does 'nelems / 2'
comparisons before finding the desired element. This becomes prohibitively expensive,
even on modern high-performance systems, as nel ems becomes large. Thus, you should
only use linear searching on small arrays.
Unlike a linear search, binary searching requires that the input array already be
sorted. The disadvantage here is that if elements are added, the array must be re-sorted
before it can be searched. (When elements are removed, the rest of the array contents
must still be shuffled down. This is not as expensive as re-sorting, bur it can still involve
a lot of data motion.)
The advantage to binary searching, and it's a significant one, is that binary searching
is blindingly fast, requiring at most log2(N) comparisons, where N is the number of
elements in the array. The bse arc h () functio n is declared as follows:
#inc l ude <stdlib . h > ISOC
cons t vo id *key
The object being searched fo r in the array.
c ons t vo id *ba se
T he start of the array.
siz e t nmernb
The number of elements in the array.
s i ze t size
T he size of each element, ob tained with si z eo f.
in t ( *c ompare ) (const void * , c onst v o i d *)
The comparison function. It must work the same way as the q sor t ( ) compa rison
function, returning negativelzero/positive according to whether the first parameter
is less than/equal to /greater than the second one.
bs earch () returns NULL if the object is not found . Otherwise, it returns a pointer
to the found object. If m ore than one array element m atches key, it is unspecified which
one is returned. Thus, as with qso r t ( ) , make sure th at the compariso n fun ctio n ac-
co unts for all relevant p arts of the searched data sttucture.
ch0 6- sea r chemp . c shows bsear ch ( ) in practice, extending the s truct employee
example used previously.
1 / * c h06 -sea rchemp . c Demonstra te bsear ch () . */
2
3 #i ncl ude <stdio .h>
4 #incl ude <e rrno . h>
5 #include <stdlib.h>
6
7 struct employee (
8 char last name[30];
9 char fir s t name[30] ;
10 long emp_i d ;
11 time_ t start_dat e ;
12 );
13
14 /* emp_id_compare -- - c ompare by I D * /
15
6 .2 So rrin g and Searching Funcrions 193
Lines 7-12 define the st r u ct empl o y e e ; it's the same as before. Lines 16- 29 serve
as the comparison function , for both q s o rt ( ) and bse arc h () .It compares on employee
ID number only. Lines 33-37 define prin t _ e mpl o yee ( ) , which is a convenience
function for printing the structure since this is do ne fro m multiple places .
39 / * ma i n - - - d e monstr a t e s o rting * /
40
47 i nt ma in ( int a r gc , c har * *a r gv )
42
43 #de f ine NPRES 10
44 struct empl oy e e pres idents[N PR ES] ;
45 int i , npr e s ;
46 char buf[BUF S IZ] ;
47 s t r uct empl o y e e * the-pres ;
48 s t r uct emp loye e key ;
49 int id ;
50 FILE *fp;
57
52 if (argc ! = 2 ) (
53 f prin tf ( s tderr , "usage : %s d a t afi l e \n ", argv [O]) ;
54 e xit ( l ) ;
55
56
57 if ((fp = fopen (a rgv[l] , " r " )) == NULL ) (
58 f printf( s tderr, "%s : %s : coul d not o pen : %s\n " , argv[ O] ,
59 argv [l] , stre rr o r ( er rno )) ;
60 exit( l ) ;
67
62
194 Chapter 6 • General Library Interfa ces - Part 1
The main () function starts with argument checking (lines 52- 55). It then reads the
data from the named file (lines 57-72). Standard input cannot be used for the employee
data, since that is reserved for prompting the user for the employee ID to search for.
6. 3 User and Group Names 195
Lines 77-84 sort the data and then print them. The program then goes into a loop,
starting on line 86. It prompts for an employee ID number, exiting the loop upon
end-oE-file. To search the array, we use the s truet employee named key. It's enough
to set just its emp_id field to the entered 10 number; none of the other fields are used
in the comparison (line 92).
If an entry is found with the matching key, bs ea r e h () returns a pointer to it.
Otherwise it returns NUL L . The return is tested on line 96, and appropriate action is
then taken. Finally, line 102 prints a newline character so that the system prompt will
come our on a fresh line. Here's a transcript of what happens when the program is
compiled and run:
$ ch06-searchemp presdata.txt Run the program
So rted by ID :
Car ter James 39 Thu Jan 20 13 : 00 : 00 1977
Reagan Ronal d 40 Tu e Jan 20 13 : 00 : 00 1981
Bush George 41 Fri Jan 2 0 13 : 0 0 : 00 1989
Clinton Will iam 42 Wed Jan 20 13 : 00 : 00 1993
Bus h George 43 Sat Jan 20 13 : 00 : 00 2001
Enter I D number : 42 Enter a valid number
Found : Clinton William 42 Wed Jan 20 13 : 00 : 00 1993 It's found
Ent e r ID number : 29 Enter an invalid number
Employee wich ID 29 not found! It's not found
Ente r ID number : 40 Try another good one
Found : Reagan Ronald 40 Tue Jan 20 13 : 00 : 00 198 1 This one is found too
Ente r ID number : AD CTRL-D entered for EOF
$ Ready for next command
Additional, more advanced, APIs for searching data collections are described III
Section 14.4, "Advanced Searching with Binary Trees ," page 551.
servers that are then accessed over the network. 4 However, this usage is transparent to
most applications since access to the information is done thro ugh the same API as was
used for retrieving the information from the text files. It is for this reason that POSIX
standardizes only the APIs; the / etc / pas swd and / et c / group files need not exist, as
such, for a system to be POSIX compliant.
The APIs to the two databases are similar; most of our discussion focuses on the
user database.
4 Common nerwork databases include Sun Microsystems' Nerwork Info rmation Service (NIS) and NIS+, Kerberos
(Hesiod), MacOS X NetInfo (versions up to an d including 10.2), and LDAP, the Lighrweight Directory Access
Prorocol. BSD system s keep user information in on-disk databases an d generate the l etc / passwd an d
I et c I gr oup fil es automatically.
6. 3 User and Group Names 197
Access to the user database is thtough the routines declared in <pwd . h >:
#include <s y s /types . h> XSI
#incl ude <pwd . h>
The fields in the s tr uc t pa s swd used by the vario us API routines correspond di-
rectly to the fields in the password file:
struct pa sswd {
cha r *pw_name ; /* user name * /
char *pw....passwd ; /* user p as sword * /
uid- t pw_uid ; /* user id * /
gid_t pw_g id ; /* group i d */
cha r *pw_gecos ; /* real n ame */
c har *pw_dir; /* home direct ory * /
char *pw_shell; /* shell pr ogram * /
};
(The name pw_gecos is historical; when the early Unix systems were being developed,
this field held the corresponding information for the user's acco unt on the Bell Labs
Honeywell systems running the GECOS operating system.)
The purpose of each routine is described in the following list.
The same pointer is returned each time; that is, the internal struct passwd is
overwritten for each user's entry. When getpwent () reaches the end of the pass-
word database, it returns NULL . Thus, it lets you step through the entire database,
one user at a time. The order in which records are returned is undefined.
void setpwent(void )
Resets the internal state such that the next call to getpwent () returns the first
record in the password database.
v oid endpwent( void)
"Closes the database," so to speak, be it a simple file , network connection, or
something else.
struct passwd *getpwnam(const char *name)
Looks up the user with a pw_name member equal to name, returning a pointer to
a stati c struct passwd describing the user or NULL if the user is not found.
struct passwd *getpwuid(uid_t uid)
Similarly, looks up the user with the user ID number given by uid, returning a
pointer to a static struct passwd describing the user or NULL if the user is
not found.
ge tpwuid () is what's needed when you have a user 10 number (such as from a
st ruct stat) and you wish to print the corresponding user name. ge tpwnam () con-
verts a name to a user ID number, for example, if you wish to use chown ( ) or fchown ( )
on a file. In theory, both of these routines do a linear search through the password
database to find the desired information. This is true in practice when a password file
is used; however, behind-the-scenes databases (network or otherwise, as on BSO systems)
tend to use more efficient methods of storage, so these calls are possibly not as expensive
in such a case. 5
getpwent () is useful when you need to go through the entire password database.
For instance, you might wish to read it all into memory, sort it, and then search it
quickly with bsearc h ( ) . This is very useful for avoiding the multiple linear searches
inherent in looking things up one at a time with getpwuid () or getpwnam ( ) .
5 Unfortunately, if performance is an issue, there's no stand ard way to know how your library does things, and
indeed, the way it works can vary at runtim e' (See the nsswitch.conf(5) man page on a GNU/Linux system. ) On
the other hand, the point of the API is, aft er all, ro hide th e details.
6.3 User and Group Names 199
I NOTE The pointers returned by getpwent (), ge tpwnam (), and getpwuid ()
,@
y allpointtointernal static data. Thus,youshouldmakea copy of their
I'I
I; contents if you need to save the information.
Take a good look at the struct passwd definition. The members t hat
represent character strings are pointers; they too point at internal static data,
',~.5 and if you're going to co py the structure , make sure to copy the data each
1I: member points to as well.
,~
Again, there is one line per group, with fields separated by colons. The fields are
as follows:
In the previous example, we see that user arnold is a member of multiple groups.
This membership is reflected in practice in what is termed the group set. Besides the
main user ID and group ID number that processes have, the group set is a set of addi-
tional group ID numbers that each process carries around with it. The system checks
all of these group ID numbers against a file 's group ID number when performing
200 Chapter 6 • General Library Inrerfaces - Parr 1
permission checking. This subject is discussed in more detail in Chapter 11, "Permissions
and User and Group ID Numbers, " page 403.
The group database APIs are similar to those for the user database. The following
functions are declared in <grp. h > :
# include <sys/types . h> XSI
#include <grp . h>
The g r _me m field bears some explanation. While declared as a pointer to a pointer
(char * * ), it is best thought of as an array of strings (like argv). The last element in
the array is set to NULL. When no members are listed, the first element in the array
is NULL.
c h 06-gr oupi n f o . c demonstrates how to use the s truct gr oup and the gr_mem
field. The program accepts a single user name on the command line and prints all group
records in which that user name appears:
1 / * ch06-groupinfo.c --- Demonstrate getgrent () and struct group * /
2
3 #include <stdio . h>
4 #include <sys / types . h>
5 #include <grp . h>
6
7 extern void print_group (const struct group *gr ) ;
8
9 / * main - - - print group lines for user named in argv[l) */
10
6.3 User and Grou p Names 201
11 int
12 main(int argc, char **argv)
13
14 struct group *gr;
15 int i ;
16
17 if (a rgc I = 2) ( Check arguments
18 fprintf(stderr, "usage : %s user\n", argv [O]) ;
19 e xit ( l ) ;
20
21
22 while ((g r = getgrent ()) ! = NULL ) Get each group record
23 for ( i = 0 ; gr->gr_mem[i] ! = NULL; i++) Look at each member
24 if (strcmp(gr->gr_mem[ i ] , argv[l]) == 0) Iffound the user ,,'
25 print_group(gr) ; Print the record
26
27 endgrent() ;
28
29 e xi t (0) ;
30 }
The rna in () routine first does error checking (lines 17-20). The heart of the program
is a nested loop . The o uter loop (line 22) loops over all the group database records. The
inner loop (line 23) loops over the members of the gr_mem array. If one of the members
matches the name from the command line (line 24), then print_group () is called to
print the record (line 25).
32 / * p rint _group --- print a group record */
33
34 void
35 print_group(const struct g r oup *gr )
36 (
37 int i;
38
39 printf("%s : %s : %ld :", gr->gr_name, gr->gr-passwd, (long) g r->gr_gid ) ;
40
41 for (i = 0; gr - >gr_mem[i] != NULL ; i++) (
42 printf("%s", gr - >gr_mem[i]);
43 if (gr->gr_mem[i+l ] ! = NULL)
44 putc har ( , , , ) ;
45
46
47 putchar(' \n ' ) ;
48
the group. However, for this program, we know there are members, or print_gr oup ()
wouldn't have been called! Here's what happens when the program is run:
$ ch 06-groupinfo arnol d
mail:x : 12:mail,postfix , arnold
uucp : x : 14:uucp,arnold
floppy : x: 19 : arnold
dev el : x:42 : miriam , arn old
a r nold :x: 2076 : arnold
One place where isatty() comes into use is in modern versions of ls, in which
the default is to print filenames in columns if the standard output is a terminal and to
print them one per line if not.
6.6 Summary
• Times are stored internally as time_t values, representing "seconds since the
Epoch." The Epoch is Midnight, January 1,1970 UTC for GNU/Linux and Unix
systems. The current time is retrieved from the system by the time () system call,
and difftime ( ) returns the difference, in seconds, between two time_t values.
• The struc t tm structure represents a "broken-down time," which is a much
more usable representation of a date and time. gmtime ( ) and loc al time ( )
convert time_t values into struct tm values, and mktime () goes in the oppo-
site direction.
• asc t i me () and c t ime () do simplistic formatting of time values, returning a
pointer to a fixed-size, fixed-format s t a t i c character string. strft ime () provides
much more flexible formatting, including locale-based values.
• Time-zone information is made available by a call to t zs et ( ) . Since the standard
routines act as if they call tzset ( ) automatically, it is rare to need to call this
function directly.
• The standard routine for sorting arrays is q sort ( ). By using a user-provided
comparison function and being told the number of array elements and their size,
q so r t () can sort any kind of data. This provides considerable flexibility.
• sc andir ( ) reads an entire directory into an array of st ruc t d irent . User-pro-
vided functions can be used to select which entries to include and can provide
ordering of elements within the array. alphaso r t () is a standard function for
sorting directory entries by name; scandi r () passes the sorting function straight
through to q so r t ( ) .
• The bsear c h () function works similarly to qso r t ( ) . It does fast binary searching.
Use it if the cost of linear searching outweighs the cost of sorting your data. (An
additional API for searching data collections is described in Section 14.4, "Ad-
vanced Searching with Binary Trees, " page 55l.)
• The user and group databases may be kept in local disk files or may be made
available over a network. The standard API purposely hides this distinction. Each
database provides both linear scanning of the entire database and direct queries
for a user/group name or user/group ID.
• Finally, for those times when s t a t () just isn't enough, i s a t t y () can tell you
whether or not an open file represents a terminal device.
6. 7 Exercises 205
Exercises
Compare this to our example computation for computing the time six months
in the past. What are the advantages and disadvantages of each method?
3. Write a simple version of the touch command that changes the modification
time of the files named on the command line to the current time.
4. Add an option to your touch command that accepts a date and time specifica-
tion on the command line and uses that value as the new modification time of
the files named on the command line.
5. Add another option to your version of t ouch that takes a filename and uses
the modification time of the given file as the new modification time for the
files named on the command line.
6. Enhance ch06 - sortemp . c to sort a separate array of pointers that point into
the array of employees.
7. Add options to ch06-sortdir. c to sort by inode number, modification time,
access time, and size. Add a "reverse option" such that time-based sorts make
the most recent file first and other criteria (size, inode) sort by largest value first.
8. Write a simple version of the chown command. Its usage should be
chown user[ : group] files ...
Here, user and group are user and group names representing the new user
and group for the named files. The group is optional; if present it is separated
from the user by a colon.
To test your version on a GNU/Linux system, you will have to work as r oot .
Do so carefully!
206 Chapter 6 • General Library Interfaces - Parr 1
9. Enhance your chown to allow numeric user or group numbers, as well as names.
10. Write functions to copy user and group structures, including pointed-to data.
Use ma 1 1 0c () to allocate storage as needed.
11. Write a specialized user-lookup library that reads the entire user database into
a dynamically allocated array. Provide fast lookup of users, by both user ID
number and name. Be sure to handle the case in which a requested user
isn't found.
12. Do the same thing for the group database.
13. Write a s t at program that prints the contents of the struct stat for each
file named on the command line. It should print all the values in human-
readable format: time_ t values as dates and times, uid_t and g i d _ t values
as the corresponding names (if available) , and the contents of symbolic links.
Print the st_mode field the same way that 1s would.
Compare your program to the GNU Coreutils st a t program, both by com-
paring outputs and by looking at the source code.
In this chapter
207
T he V7 1 s command nicely ties together everything we've seen so far. It uses
almost all of the APIs we've covered, touching on many aspects of Unix pro-
gramming: memory allocation, file metadata, dates and times, user names, directory
reading, and sorting.
7.1 V7 18 Options
In comparison to modern versions of 1 s , the V7 1 s accepted only a handful of options
and the meaning of some of them is different for V7 than for current ls. The options
are as follows:
-a Print all directory entries. Without this, don' t print' .' and ' .. '. Interestingly
enough, V7 ls ignores only'. ' and' .. ', while VI through V6 ignore any file
whose name begins with a period. This latter behavior is the default in modern
versions of 1 s, as well.
-c Use the in ode change time, instead of the modification time, with -t or - l.
-d For directory arguments, print information about the directory itself, not its
contents.
- f "Force" each argument to be read as a directory, and print the name found in
each slot. This options disables - 1, - r, - s and - t, and enables -a. (This option
apparently existed for filesystem debugging and repair.)
- g For 'ls - 1', use the group name instead of the user name.
-i Print the inode number in the first column along with the filename or the long
listing.
-1 Provide the familiar long format output. Note, however, that V7 'l s -1' printed
only the user name, not the user and group names together.
-r Reverse the sort order, be it alphabetic for filenames or by time.
-s Print the size of the file in 5I2-byte blocks. The V7 is (1 ) manpage states that
indirect blocks-blocks used by the filesystem for locating the data blocks oflarge
files-are also included in the computation, but, as we shall see, this statement
was Incorrect.
-t Sort the output by modification time, most recent first , instead of by name.
-u Use the access time instead of the modification time with -t and/or -1.
208
7. 2 V7 ls Code 209
The biggest differe nces between V7 Is and modern Is concern the -a option and
the -1 option. Modern systems omit all dot files unless - a is given, and they include
both user and group names in the -1 long listing. On modern sys tems, - g is taken to
mean print only the group name, and - 0 means print only the user name. For what
it's worth, GNU Is has over 50 options!
7.2 V7 1 8 Code
The file /usr / src / cmd/l s . c in the V7 dis tribution contains the code. It is all of
425 lines long.
7 / *
2 * list f i l e or direct ory
3 */
4
5 #include <sys/pa r am . h>
6 #include <sys/st at . h>
7 #include <s ys /d ir.h>
8 #inc lude <stdio . h>
9
70 #def ine NFILES 1 024
77 FILE *pwdf, *dirf ;
72 char stdbuf [BUFSIZ];
73
74 struct lbuf { Collects needed info
75 union {
76 cha r lname[15] ;
77 cha r *namepi
78 In ;
79 char ltype;
20 short lnum ;
27 s hort lfl ags;
22 s hort lnl;
23 s hort luid ;
24 s hort 19id;
25 lo ng lsi ze;
26 long lmtime;
27 };
28
29 int aflg, dflg, lflg, sflg , tflg , uflg, iflg, fflg, gflg, cflg ;
30 int rflg 1;
37 long year; Global variables: auto init to 0
32 int flags;
33 int lastuid = - 1;
34 char tbuf [16] ;
35 long tblocks;
36 int statreq ;
37 struct lbuf *flist [NFILES ] ;
38 struct lbu f **lastp = flist ;
210 Chapter 7 • Purring It All Toge(her: I s
The program starts with file inclusions (lines 5-8) and variable declarations. The
s truct l buf (lines 14-27) encapsulates the parts of the st r uct s tat that are of in-
terest to l s . We see later how this structure is filled.
The variables a flg, d flg , and so on (lines 29 and 30) all indicate the presence of
the corresponding option. This variable naming style is typical ofV7 code. The f lis t ,
1as t p , and f i r stp variables (lines 37-39) represent the files that ls reports information
about. Note that fl i st is a fixed-size array, allowing no more than 1024 files to be
processed. We see shortly how all these variables are used.
Mter the variable declarations come function declarations (lines 42-45) , and then
the definition of ISARG, which distinguishes a file named on the command line from
a file found when a directory is read.
49 main ( argc, argy l int main(int argc, char **argv)
50 char *argv[];
51 {
52 int i;
53 register struct lbuf *ep, **ep1; Variable and function declarations
54 register struct lbuf **slastp;
55 struct lbuf **epp;
56 s truct lbuf Ib;
57 char *t;
58 int compar ( ) ;
59
60 setbuf ( stdout, stdbuf ) ;
61 time (&lb . lmtime); Get current time
62 year = lb.lmtime - 6L*30L*24L*60L*60L; / * 6 months ago */
The ma in () function starts by declaring variables and functions (lines 52-58), setting
the buffer for standard output, retrieving the time of day (lines 60-61), and computing
the seconds-since-the-Epoch value for approximately six months ago (line 62). Note
that all the constants have the L suffix, indicating the use of l ong arithmetic.
63 i f ( --argc > 0 && *argv[l] == ' - ' ) {
64 argv++i
65 while (*++*argv) switch (**argv) Parse options
66
7.2 V7 Is Code 211
Lines 63-118 parse the command-line options . Note the manual parsing code:
getopt ( ) hadn't been invented yet. The s ta t r eq variable is set to true when an option
requires the use of the s t at () system call.
Avoiding an unnecessary stat () call on each file is a big performance win. The
s ta t () call was particularly expensive, because it could involve a disk seek
to the inode
location, a disk read to read the inode, and then a disk seek back to the location of the
directory contents (in order to continue reading directory entries).
Modern systems have the inodes in groups, spread out throughout a filesystem instead
of clustered together at the front . This makes a noticeable performance improvement.
Nevertheless , stat ( ) calls are still not free; you should use them as needed, but not
any more than that.
119 i f I fflg) { ·f overrides -I, Os, -t, adds -a
120 aflg ++;
121 lflg 0;
122 sflg = 0;
123 tflg = 0;
124 statreq 0;
125
126 ifllflg) ( Open password or group file
127 t = " /etc/pa sswd" ;
128 if (gflg)
129 t = "/etc/group" ;
130 pwd f = fo pen I t , " r") ;
131
132 if l argc ==O) { Use current dir if no args
133 argc++;
134 argv = &dotp - 1;
135
Lines 119-125 handle the -f option, turning off - 1, -s, -t, and stat r eq. Lines
126-131 handle - 1, setting the file to be read for user or group information. Remember
that the V7 Is shows only one or the other, not both.
If no arguments are left, lines 132-135 set up a r gv such that it points at a string
representing the current directory. The assignment ' argv = &dotp - l' is valid, al-
though unusual. The '- l ' compensates for the ' ++ a r gv' on line 137. This avoids
special case code for ' argc == l' in the main part of the program.
7.2 V7 Is Code 213
136 for (i=O; i < argc; i++) { Get info about each file
137 if ((ep = gstat(*++argv, l))==NULL)
138 cont i nue;
139 ep->ln . namep = *argv;
140 ep->lflags 1= ISARG;
14 1
142 qsort(firstp, lastp - firstp , sizeof *lastp, compar);
143 slastp = lastp ;
144 for (epp =firstp; epp<slastp; epp++) { Main code, see text
145 ep = *epp;
146 if (ep-> ltype== 'd' && dflg==O II fflg)
147 if (arg c>l)
148 printf (" \n%s : \n" , ep->ln . namep) ;
149 lastp = slastp;
150 readdir(ep->ln . namep);
151 if (fflg==O)
152 qsort(slastp,lastp - slastp,sizeof *lastp,compar);
153 if (lflg II sflg)
154 printf ( "total %D\n", tbl ocks) ;
155 for (epl=sla stp; epl<lastp; epl++)
156 pentry(*epl);
157 else
158 pentry(ep) ;
159
160 e xit (O) ;
161 End ofmai n()
Lines 136-141 loop over the arguments, gathering information about each one. The
second argument to gstat () is a boolean: true if the name is a command-line argument,
false otherwise. Line 140 adds the ISARG Hag to the Iflags field for each command-
line argumen t.
The gstat () function adds each new struct Ibuf into the global fl i st array
(line 137). It also updates the lastp global pointer to point into this array at the current
last element.
Lines 142-143 sort the array, using q s o r t (), and save the current value of lastp
in s las t p . Lines 144-159 loop over each element in the array, printing file or directory
info, as appropriate.
The code for directories deserves further explication:
+ + f
+
struct struct struct struct struct : struct
Ibuf * Ibuf * Ibuf * Ibuf * Ibuf * : Ibuf * flist array
f
FIGURE 7.1
The flist array as a two-level stack
Lines 178-197 handle the - 1 option. Lines 179-181 print the file's type, permissions,
and number oflinks. Lines 182-184 set t to the user ID or the group ID , based on
the -g option. Lines 185-188 retrieve the corresponding name and print it if available.
Otherwise, the program prints the numeric value.
Lines 189-192 check whether the file is a block or character device. If i t is, they print
the major and minor device numbers, extracted with the maj o r () and mi n o r ( ) macros.
Otherwise, they print the file 's size.
Lines 193-196 print the time of interest. If it's older than six months, the code prints
the month, day, and year. Otherwise, it prints the month, day, and time (see Sec-
tion 6.1.3 .1, "Simple Time Formatting: a s c time () and ct i me () ," page 170, for the
format of c time ( ) 's result).
Finally, lines 198-201 print the filename. For a command-line argument, we know
it's a zero-terminated string, and %s can be used. For a file read from a directory, it may
not be zero-terminated, and thus an explicit precision, %. 1 4 s, must be used.
204 getname (uid, buf ) int getnam e(int uid, char bum)
205 int uid;
206 c h ar buf [] ;
207 {
208 int j, c, n, i;
209
210 if (uid== lastuid ) Simple caching, see text
211 return( 0) ;
2 12 if(pwdf == NULL ) Safety check
21 3 return ( -1) ;
214 rewind (pwdf ) ; Start at fron t offile
215 lastuid = -1;
2 16 do {
217 i = 0; Index in buf array
218 = 0;
j Counts fields in line
219 n = 0; Converts numeric value
220 while((c = fgetc(pwdf )) != ' \n' ) { Read lines
221 if ( c == EOF )
222 r etu rn (- l ) ;
223 if (c== ' : ' ) { Count fields
224 j + +;
225 C = ' 0 ';
226
227 if (j ==0) First field is name
228 b u f[i++] c;
229 if (j == 2 ) Third field is numeric 10
230 n = n * 10 + c - '0';
231
232 wh i le (n ! = uid ) ; Keep searching untillD found
7. 2 V7 l s Code 217
The getname () function converts a user or group ID number into the corresponding
name. It implements a simple caching scheme; if the passed-in u i d is the same as the
global variab le 1as tuid, then the function returns 0, for OK; the buffer will already
contain the name (lines 210-211). 1as tui d is initialized to - 1 (line 33), so this test
fails the first time g e tname () is called.
pwdf is already open on either /e t c/pa sswd or / etc/group (see lines 126-130).
The code here checks that the open succeeded and returns - 1 ifit didn 't (lines 212- 213).
Surprisingly, ls does not use getpwuid () or getgrgid ( ) . Instead, it takes advantage
of the facts that the format of / etc /pas swd and / etc / group is identical for the first
three fields (name, password, numeric ID) and that both use a colon as separator.
Lines 216-232 implement a linear search through the file. j counts the number of
colons seen so far: 0 for the name and 2 for the ID number. Thus, while scanning the
line, it fills in both the name and the ID number.
Lines 233-235 terminate the n a me buffer, set the global 1as tui d to the found 10
number, and return 0 for OK.
238 long long nblock(long size)
239 nblock(size)
240 long size ;
24 1
242 return ( (si ze+511 »>9) ;
243
The nb 10ck ( ) function reports how many disk blocks the file uses. This calculation
is based on the file 's size as returned by st at ( ) . The V7 block size was 512 bytes-the
size of a physical disk sector.
The calculation on line 242 looks a bit scary. The '»9 ' is a right-shift by nine bits.
This divides by 512, to give the number of blocks. (On early hardware, a right-shift
was much faster than division.) So far , so good. Now, a file of even one byte still takes
up a whole disk block. However, '1 / 512 ' comes out as zero (integer division trun-
cates), which is incorrect. This explains the' s i z e+ 511 ' . By adding 511 , the code ensures
that the sum produces the correct number of blocks when it is divided by 512.
218 Chapter 7 • Putting It All Together: ls
This calculation is only approximate, however. Very large files also have indirect
blocks. Despite the claim in the V7 Is(l) manpage, this calculation does not account
for indirect blocks.
Furthermore, consider the case of a file with large holes (created by seeking way past
the end of the file with lseek ( )) . Holes don' t occupy disk blocks; however, this is not
reflected in the size value. Thus, the calculation produced by nbl oc k ( ), while usually
correct, could produce results that are either smaller or larger than the real case.
For these reasons, the s t _blocks member was added into the struct stat at 4.2
BSD, and then picked up for System V and POSrx.
245 int m1 [] 1, S_IREAD»0 , I r' I - };
246 int m2 [] l, S_IWRITE»O, 'W', - };
241 int m3 [] 2, S_ISUID, 's' , S_IEXEC»O, 'X', };
248 int m4 [] 1, S_IREAD»3, I r t I - };
249 int mS [] 1, S_IWRITE»3, ' w', - };
2 50 int m6 [] 2, S_ISGID, s I I I S_IEXEC»3, 'x' f };
25 1 int m7 [J 1, S_IREAD»6 , 'r', - };
252 int mB [] 1, S_IWRITE»6, 'Wi, - };
253 int m9 [] 2, S_ISVTX, 't' , S_IEXEC»6, 'X', - };
254
255 int *m[ ] ml, m2, m3, m4, mS, m6, m7, mB, m9} ;
256
251 pmode (aflag ) void prnode(int aflag)
258 {
259 register int **mp;
260
261 f l ags = aflag;
262 for (mp = &m [O] ; mp < &m[sizeo f (m) I sizeof (m[O])]; )
263 select (*mp++) ;
264
265
266 select (pairp ) void se/ect(register int *pairp)
261 register int *pairp;
268
269 register int n;
210
211 n = *pairp++;
212 while (--n>= O && ( flags&*pairp++ ) ==O )
213 pairp++;
214 putchar ( *pairp ) ;
215
7.2 V7 ls Code 219
Lines 245-275 print the file's permissions. The code is compact and rather elegant;
it requires careful study.
• Lines 245-253: The arrays ml through m9 encode the permission bits to check
for along with the corresponding characters to print. There is one array per char-
acter to print in the file mode. The first element of each array is the number of
(permission, character) pairs encoded in that particular array. The final element
is the character to pnnt in [he event that none of the given permission bits
are found.
Note also how the permissions are specified as ' I_READ»O' , 'I_ READ»3' ,
'I_READ»6' , and so on. The individual constants for each bit (S_IRUSR, S_ IRGRP,
etc.) had not been invented yet. (See Table 4.5 in Section 4.6.1, "Specifying Initial
File Permissions," page 106.)
• Line 255: The m array points to each of the ml through m9 arrays .
• Lines 257-264: The pmode () function first sets the global variable flags to the
passed-in parameter aflag . It then loops through the m array, passing each element
to the select () function . The passed-in element represents one of the ml to
m9 arrays.
• Lines 266-275: The select () function understands the layout of each ml through
m9 array. n is the number of pairs in the array (the first element); line 271 sets it.
Lines 272-273 look for permission bits, checking the global variable flags set
previously on line 261.
Note the use of the ++ operator, both in the loop test and in the loop body. The effect
is to skip over pairs in the array as long as the permission bit in the first element of the
pair is not found in fla g s.
When the loop ends, either the permission bit has been found, in which case pa irp
points at the second element of the pair, which is the correct character to print, or it
has not been found , in which case pa i rp points at the default character. In either case,
line 274 prints the character that pai r p points to.
220 Chapter 7 • Pu tti ng It All T o~ther: 1 s
A final point worth noting is that in C, character constants (such as 'x') have type
int, not c h ar . l So there's no problem putting such constants into an integer array;
everything works correctly.
277 char * char *makename(char *dir, char *file)
278 makename(dir, file )
279 char *dir, *file;
280
281 static char dfile[lOO);
282 register char *dp, *fp;
283 register int i;
284
285 dp = dfile;
286 fp = dir;
287 while ( *fp )
288 *dp++ = *fP++i
289 *dp++ = ' / ' ;
290 fp = file;
291 for (i=O; i<DIRSIZ; i++ )
292 *dp++ = *fp++;
293 *dp = 0;
294 return (dfile) ;
295
Lines 2 7 7-295 define the makename () function. Its job is to concatenate a directory
name and a filename, separated by a slash character, and produce a string. It does this
in the stat i c buffer dfile . Note that dfile is only 100 characters long and that no
error checking is done.
The code itself is straightforward, copying characters one at a time. makename () IS
This is different in C++ : There, character constants do have rype char. This difference does nO[ affect this par-
ticul ar code.
7.2 V7 ls Code 221
309 for ( ; ; ) {
310 i f ( fread ((c har * )&dentry, sizeo f (den try ) , 1, dirf) ! = 1)
311 b reak;
3 12 if (dent ry . d_ino==O
313 II aflg= =O && dentry . d_name [ Ol = = ' . ' && (dentry . d_name[ll = = ' \0'
314 II dentry . d_name [ l l ==' . ' && dentry . d_name [ 2 l ==' \ 0' ))
315 cont inue;
316 ep = g sta t (makename (dir , den t r y . d_name), 0) ;
3 17 i f (ep ==NULL )
3 18 co ntinue;
3 19 if (ep->lnum ! = - 1)
320 ep->lnum = dentry . d_ino ;
32 1 for (j = O; j<DIRS IZ ; j++)
322 ep->ln . lname[jl = dent ry . d _name [jl ;
323
324 fclose(d irf ) ;
325
Lines 297-325 define the readdir () function , whose job is to read the contents of
directories named on the command line.
Lines 304-307 open the directory for reading, returning if fopen () fails. Line 308
initializes the global variable tbl oc ks to o. This was used earlier (lines 153-154) to
print the total number of blocks used by files in a directory.
Lines 309-323 are a loop that reads directory entries and adds them to the flis t
array. Lines 310-311 read one entry, exiting the loop upon end-of-file.
Lines 312- 315 skip uninteres tin g entries. If the inode number is zero, this slot isn't
used. Otherwise, if -a was not given and the filename is either ' . ' or ' .. ', skip it.
Lines 316-318 call gstat () with the full name of the file , and a second argument
of false, indicating that it's not from the command line. gs ta t () updates the global
las tp pointer and the fli s t array. A NULL return value indicates some sort of failure.
Lines 319-322 save the inode number and name in the struct lbu f. If ep ->lnum
comes back from g s tat () set to -1, it means that the stat () o peration on the file
failed. Finally, line 324 closes the directory.
The following fun ction, gs t a t () (lines 327-398), is the core function for the oper-
ation of retrieving and storing file information.
222 Chapter 7 • Purting It All T ogether: ls
• Lines 357-366: Call stat () and if it fails, print an error message and set values
as appropriate, then return NULL (expressed as 0 ).
224 Chapter 7 • Putting It All Together: Is
• Lines 367-368: Set the inode number and size fields from the struc t stat if
the s t a t () succeeded.
• Lines 369-384: Handle the special cases of directory, block device, and character
device. In all cases the code updates the 1 type field. For devices, the ls iz e value
is replaced with the st_r dev value.
• Lines 385-388: Fill in the lf l ag s, l uid, 19i d, and I n l fields from the corre-
sponding fields in the st r uct sta t . Line 385 removes the file-type bits, leaving
the 12 permissions bits (read/write/execute for user/group/other, and setuid, setgid,
and save-text).
• Lines 389-394: Based on command-line options, use one of the three time fields
from the struct stat for the Imtime field in the st r uct Ibuf .
• Line 395: Update the global variable tblocks with the number of blocks in the file.
The compar () function is dense: There's a lot happening in little space. The first
thing to remember is the meaning of the return value: A negative value means that the
first file should sort to an earlier spot in the array than the second, zero means the files
7.3 Summary 225
are equal, and a positive value means that the second file should sort to an earlier spot
than the first.
The next thing to understand is that ls prints the contents of directories after it
prints information about files . Thus the result of sorting should be that all directories
named on the command line follow all files named on the command line.
Finally, the rfl g variable helps implement the - r option , which reverses the sorting
order. It is initialized to 1 (line 30). If - r is used, r flg is set to - 1 (lines 89-91 ).
The following pseudocode describes the logic of compa r ( ) ; the line numbers in the
left margin correspond to those of 1 s . c :
407 if ls has to read directories # dflg == 0
408 if pI is a command-line arg and pI is a directory
409 if p2 is not a command-line arg and is not a directory
4 10 return 1 # first comes after second
else
fall through to time test
4 11 else
# pi is not a command-line directory
4 12 if p2 i s a command-line arg and is a directory
4 13 return -1 # first comes before second
else
fall through to time test
The arguments to strcmp () on lines 423-424 look messy. What's going on is that
different members of the 1n union in the st r uct 1buf must be used, depending on
whether the filename is a command-line argument or was read from a directory.
7.3 Summary
• The V7 ls is a relatively small program, yet it touches on many of the fundamental
aspects of Unix programming: file I/O , file metadata, directory contents , users
and groups, time and date values, sorting, and dynamic memory management.
226 Chapter 7 • Putting It All Together: 1 s
• The most notable external difference between V7 ls and modern l s is the treat-
ment of the - a and -1 options. The V 7 version has many fewer options than do
modern versions; a noticeable lack is the - R recursive option.
• The management of f list is a clean way to use the limited memory of the PDP-ll
architecture yet still provide as much information as possible. The s t r uct 1buf
nicely abstracts the information of interest from the s t r u ct stat; this simplifies
the code considerably. The code for printing the nine permission bits is compact
and elegant.
• Some parts of ls use surprisingly small limits, such as the upper bound of 1024
on the number of files or the buffer size of 1 0 0 in rna kenarne () .
Exercises
227
T his chapter completes the discussion of Linux (and Unix) filesystems and di-
rectories. We first describe how a disk partition containing a filesystem is
added to (and removed from) the logical filesystem namespace, such that in general
a user need neither know nor care where a file is physically located, along with the
APls for working with filesystems.
We then describe how to move around within the hierarchical file namespace, how
to retrieve the full pathname of the current working directory, and how to easily
process arbitrary directory hierarchies (trees) , using the nftw () function. Finally,
we describe the specialized but important chroot () system call.
228
8.1 Mounring and Unmounring Filesystems 229
These two jobs are accomplished with the mount and umount [sic] programs, named
for the corresponding system calls. Every Unix system's mo un t () system call has a
different interface. Because mounting and unmounting are considered implementation
issues, POSIX purposely does not standardize these system calls.
You mount a filesystem onto a directory; such a directory is referred to as the
filesystem's mount point. By convention the directory should be empty, but nothing
enforces this. However, if the mount point is not empty, all of its contents become
completely inaccessible while a filesystem is mounted on it. I
The kernel maintains a unique number, known as the device number, that identifies
each mounted partition. For this reason, it is the (device, inode) pair that together
uniquely identifies a file; when the struct stat structures for two filenames indicate
that both numbers are the same, you can be sure that they do refer to the same file.
As mentioned earlier, user-level software places the inode structures and other
metadata onto a disk partition, thereby creating the filesystem. This same software
creates an initial root directory for the filesystem. Thus, we have to make a distinction
between "the root directory named / ," which is the topmost directory in the hierarchical
filename names pace, and " the root directory of a filesystem ," which is each filesystem 's
individual topmost directory. The / directory is also the "root directory" of the "root
filesystem. "
For reasons described in the sidebar, a filesystem's root directory always has inode
number 2 (although this is not formally standardized). Since there can be multiple
filesystems, each one's root directory has the same inode number, 2 . When resolving a
pathname, the kernel knows where each filesystem is mounted and arranges for the
mount point's name to refer to the root directoty of the mounted filesystem. Further-
more, ' . . ' in the root of a mounted filesystem is made to refer to the parent directory
of the mount point.
Figure 8.1 shows two filesystems: one for the root directory, and one for / u s r , before
/ us r is mounted. Figure 8.2 shows the situation after / usr is mounted.
I GNU/ Linux and Solaris all ow you ro moum o ne fil e on rop of anorh er; rhis has advanced uses, which we don ' r
orherwise di scuss.
230 Chapter 8 • Filesystems and Directory Walks
Root
filesystem
/-=~:
Inode: 64385
Inode: 33 8017
/dev/ h dal
bin usr
/ usr
filesystem
~~~~~~~~~
FIGURE 8.1
Separate filesystems, before mounting
The 1 directory, the root of the entire logical hierarchy, is special in an additional
way: 1 . and 1 . . refer to the same directory; this is not true of any other directory on
the system. (Thus, after something like ' c d I . . 1 .. / .. 1 .. ', you're still in I .) This
behavior is implemented in a simple fashion : Both / . and 1 .. are hard links to the
filesystem's root directory. (You can see this in both Figure S.l and Figure S.2.) Every
filesystem works this way, but the kernel treats 1 specially and does not treat as a special
case the' . . ' directory for the filesystem mounted on / .
8.1 Mounring and U nmounri ng Filesystems 231
/,::'~:
in ode, 64385 Dot·dot is
inode, 338017 on root
fi iesystem
bin usr
FIGURE 8.2
Separate filesystems , after mounting
II NOTE The discussion in this section is specific to Linux. However, most modern
Unix systems have similar features. We encourage you to explore your system 's
I documentation.
2 For example, consider upgrading a VAX 11/780 from 4.1 BSD to 4.2 BSD.
3 System V Release 3 supported rwo differenr bl ock sizes: 512 bytes and 1024 bytes, but otherwise the disk organi-
zati on was the same.
S.l Mounting and Unmounting Filesystems 233
Linux has several native (that is, on-disk) filesystems. The most popular are the ext2
and ext3 filesystems. Many more filesystem types are available, however. You can
fi nd information about most of them in the / usr / src/linux/Docurnentation /
fi lesys terns / directory (if you have kernel source installed). Table 8.1 lists the various
fi lesystem names , with brief descriptions of each. The abbreviation "RW" means
"read/write" and "RO " means "read only. "
TABLE 8.1
Supported in-kernel Linux filesystems (kernel 2.4.x)
Not all of these filesystems are supported by the moun t command; see mount(8) for
the list of those that are supported.
Journaling is a technique, pio neered in database systems, for improving the perfo r-
mance of file updates, in such a way th at filesystem recovery in the event of a crash can
be done both correctly and quickly. As of this writing, several different journaling
filesystems are available and competing for prominence in the GNU/Linux world. ext 3
is one such; it has the advantage of being upwardly compatible with existing ext2
filesystems, and it's easy to convert a filesystem back and forth between the two types.
(See tune2fi(8).) ReiserFS and XFS also have strong followings.
The fat, ms dos, umsdos , and vfat filesystems all share common code. In general,
yo u sh o uld use v f a t to mount Windows FAT-32 (o r other FAT-xx) partition s,
and ums dos if yo u wish to use a FAT partiti o n as the root filesystem for your
GNU/Linux sys tem.
The Coherent, MINIX, original System V, and Xenix filesystems all have similar
on-disk structures. The sys v filesystem type supports all of them; the four names
c oherent, mi nix, s y s v , and xenix are aliases one for the other. The co he rent and
xenix names will even tually be removed.
The BSD Fas t Filesys tem has evolved somewhat over the years. The ufs filesystem
supportS read/write o perati on for the version from 4.4 BSD , which is the bas is for the
three widely used BSD operating systems: FreeBSD , NetBSD , and OpenBSD . It also
supportS read/write operation for Sun's Solaris filesystem, for both SPARe and Intel
x86 systems. The original BSD format and that from the NeXTStep operating system
are supported read-only.
The "RO" designations for be fs and ntfs mean that filesystems of those types can
be mounted and read but files cannot be written on them or removed from them. (This
may change with time; check your system's documentation.) The cramf s , i s o966 0,
r omfs, and ud f filesys tems are marked "RO" because the underlying m edia are inher-
ently read-only.
Two filesystem types no longer exist: ext, which was the original Extended Filesystem,
and xiafs , which extended the original MINIX filesystem for longer names and larger
236 Chapter 8 • Filesystems and Directory Walks
file sizes. xiafs and ext2 came out approximately simultaneously, but ext2 eventually
became the dominant filesystem. 4
Being able to mount an ISO 9660 image this way is particularly helpful when you
are testing scripts that make CD images. You can create an image in a regular file,
mount it, and verify that it's arranged correctly. Then , once you're sure it's correct, yo u
can copy the image to a writab le CD ("burn" the CD). The loopback facility is useful
for mounting Boppy di sk images, too .
The filesystem being unmounted must not be busy. This means that there aren't any
processes with open files on the filesystem and that no process has a directo ty on the
filesystem as its current working directory:
$ mount Show what's mounted
Idev/hda2 on I type ext3 (rw) / is on a real device
none on Iproc type proc (rw)
usbdevfs on Iproc/bus/usb type usbdevfs (rw)
Idev/hda5 on Id type ext3 (rw) So is / d
none on Idev/pts type devpts (rw , gid=5,mode=620)
none on Idev/shm type tmpfs (rw)
none on Iproc/ sys/fs/b i nfmt_misc type binfmt_mi s c (rw)
$ su Switch to superuser
Password : Password does not echo
# cd Id Make / d the current directory
# urnount Id Try to unmount / d
umount : Id : device is busy Doesn't work; it's still in use
# cd I Change out of/ d
# urnount Id Try to unmount / d again
# Silence is golden: un mount worked
238 Chapter 8 • Filesystems and Directory W alks
(The dwnp-freq and f sck - pass are administrative features that aren' t relevant to the
current discussion.) For example, on our system, the file looks like this:
$ cat /etc/fstab
# device mount-point type options freq passno
Idev/hda3 I ext3 defaults 1 1 Root f1esystem
Idev/hdaS Id ext3 defaults 1 2
none Idev/pts devpts gid=5,mode=620 o 0
none Iproc proc defaults o 0
Idev/shm tmpfs
partition:
Iwin vfat
$ cat letc/mtab
Idev/hda2 I ex t3 rw 0 0
none Iproc proc rw 0 0
usbdevfs Iproc/bus/usb usbdevfs rw 0 0
Idev/hdaS Id ext3 rw 0 0
none Idev/pts devpts rw,gid=5,mode=620 0 0
none Idev/shm tmpfs rw 0 0
none Iproc/sys/fs/binfrnt_rnisc binfrnt_rnisc rw 0 0
Idev/hdal Iwin vfat rw,noexec,nosuid,nodev,uid=2076,gid=10,user=arnold 0 0
The kernel makes (almost) the same information available in /p roc /mount s, in the
same format:
$ cat /proc/mounts
rootfs I rootfs rw 0 0
Idev /root I ext3 rw 0 0
Iproc Iproc proc rw 0 0
O n GNU/Linux and most systems. Solaris and so m e systems based on System V Release 4 use I etc Ivf stab,
possibly with a different format.
8.2 Files for Filesystem Administration 239
Note that / etc / mtab has some information that / proc / mounts doesn ' t. (For ex-
ample, see the line for the / win mount point.) On the flip side, it's possible (using
'mount -f') to put entries into / etc / mtab that aren 't real (this practice has its uses,
see mount(8)). To sum up, / proc / moun t s always describes what is really mounted;
however, / etc / mtab contains information about mount options that / pro c / mounts
doesn 't. Thus, to get the full picture, you may have to read both files.
ro
Mount the filesystem read-only. This is necessary for read-only media such as
CD-ROMs and DVDs.
l o op
Use the loop back devi ce for treating a regular file as a filesystem . We showed
an example of this earlier (see Section 8.1.3, "Mounting Filesystems: mount,"
page 236).
Options are passed with the -0 command-line option and can be grouped, separated
by commas. For example, here is the command line used earlier:
mount -t iso9660 -0 ro,loop s h rike-i386-discl . iso / rnnt /c drom
The rest of the options are in tended for use in / etc / f s tab (although they can also
be used on the command line). The following list provides the ones we think are most
important for day-to-day use.
aut o ,noauto
Filesystems marked auto are to be mounted when the system boots through
'mount -a' (mount all filesystems). noauto filesystems must be mounted manually.
240 Chapter 8 • Filesystems and Directory Walks
Such filesystems still appear in / etc / fstab along with the other filesystems. (See,
for example, the entry for /win in our / etc / f s tab file, shown previously.)
defau l t s
Use the default options rw, s ui d, dey , exe c , a u t o, nouser, and asyn c . (a sync
is an advanced option that increases I/O throughput.)
dev, n odev
Allow (don't allow) the use of character or block device files on the filesystem.
ex e c, noexe c
Allow (don' t allow) execution of binary executables on the filesystem.
user,nouser
Allow (don' t allow) any user to mount this filesystem. This is useful for CD-ROMs;
even if you' re on a single-user workstation, it's convenient to not have to switch
to root just to mount a CD. Only the user who mounted the filesystem can un-
mount it. us e r implies the n oexec , n osu id, and nodev options.
su id,nosui d
Support (don't support) the setuid and setgid bits on executables on the filesystem.
rw
Mount the filesystem read-write.
The noau to option prevents the Windows partition from being mounted at boor
time. The defaults option is the same as rw,sui d ,dev ,exe c ,async . The user
8 .2 Files for Filesys rem Adminisrrarion 241
option allows us to mount the filesystem without being r oo t . The uid= and gid=
options force the files in / win to belong to us as a regular user so that we don ' t need
to be r oo t when working on that partition.
setmntent ( ) opens the file containing mount point entries. The filename argument
is the file to open. The type argument is like the second argument to fopen ( ) , indi-
cating read, write, or read/write access. (Consider the mount command, which has
to add an entry to / etc / mtab for each filesystem it mounts, and umount , which
has to remove one.) The returned value of type FIL E * is then used with the rest of
the routines.
getmntent () reads through the file , returning a pointer to a static struct
mntent, which is filled in with the appropriate values . This static storage is overwritten
on each call. It returns NULL when there are no more entries. (This is similar to the
routines for reading the password and group files; see Section 6.3, "User and Group
Names," page 195.)
addmntent () is called to add more information to the end of the open file; it's in-
tended for use by moun t .
e n dmntent () closes the open file; call it when you're done processing. Don 't just
call fclose () ; other internal data structures associated with the F I LE * variable may
need to be cleaned up.
hasmnt opt ( ) is a more specialized function. It scans the struct mntent passed
as the first parameter for a mount option matching the second argument. If the option
is found, it returns the address of the matching substring. Otherwise, it returns NU L L .
242 Chapter 8 • Filesysrems and Directory Walks
The fields in the struc t mntent correspond directly to the fields in the / et c/ fstab
file. It looks like this:
struct mntent {
char *mnt_fsname; 1* Device or server for filesystem. *1
char *mnt_dir; 1* Directory mounted on . *1
char *mnt_type; 1* Type of filesystem: ufs, nfs, etc. *1
char *mnt_opts; 1* Comma-separated options for fs. *1
int mnt_freq; 1* Dump frequency (in days ) . * 1
int mnt.J)assno; 1* Pass number for 'fsck' . * 1
};
The normal paradigm for working with mounted filesystems IS to write an outer
loop that reads / etc /mtab, processing one struct mntent at a time. Our first example,
ch08-mounted . c, does exactly that:
1* chOB-mounted.c --- print a list of mounted filesystems * /
2
3 1* NOTE: GNU/Linux specific! * /
4
5 #include <stdio.h>
6 #include <errno.h>
1 #include <mntent.h> / * for getmntent() , et al. * /
8 #include <unistd .h> 1* for getopt () * /
9
10 void process (const char *f ilename) ;
11 void print_mount (const struct mntent *fs ) ;
12
13 char *myname;
14
15 / * main --- process options * /
16
11 int main(int argc, char **argv )
18
19 int c;
20 char *file = "/etc/mtab"; 1* default file to read *1
21
22 myname = argv[O];
23 while ((c = getopt(argc, argv, "f:")) != -1 ) {
24 switch (c) {
25 case 'f':
26 file = optarg;
21 break;
28 default:
29 fprintf(stderr, "usage : %s [-f fstab-file]\n", argv[O]);
30 exit (1);
31
32
33
34 process(file);
35 return 0;
36
8.2 Files for Filesystem Adminisuation 243
37
38 / * process --- read struct mntent structures f r om file */
39
40 void process ( const cha r *f ilename)
41
42 FILE *fp;
43 struct mntent *fs;
44
45 fp = setmntent(filename, " r" ) ; / * read only */
46 if ( fp == NULL) {
47 fprintf(stderr, "%s : %s : could not open : %s\n",
48 myname , filename, strerror(errno) ) ;
49 e x it ( l ) ;
50
51
52 while (( fs = getmntent (fp)) I = NULL)
53 print_mount(fs) ;
54
55 endmntent ( fp ) ;
56
57
58 / * print_mount --- print a single mount entry * /
59
60 void print_mount (const struct mntent * fs)
61
62 printf("%s %s %s %s %d %d\n " ,
63 fs->mnt_fsname ,
64 fs->mnt_dir,
65 fs->mnt_type,
66 fs->mnt_opts,
67 fs->mnt_freq,
68 fs - >mnt-passno ) ;
69
Unlike most of the programs that we've seen up to now, this one is Linux specific.
Many Unix systems have similar routines, but they' re not guaranteed to be identical.
By default, ch08 - mounted reads /etc/mtab, printing the information about each
mounted filesystem. The - f option allows you to specify a different file to read, such
as / proc / mounts or even /etc/ f stab.
The main () function processes the command line (lines 23-32) and calls proce s s ( )
on the named file. (This program follows our standard boilerplate.)
p r oc e ss ( ) , in turn, opens the file (line 45) , and loops over each returned filesystem
(lines 52-53). When done, it closes the file (line 55).
244 Chapter 8 • Filesysrems and Directory W alks
The p ri n t_moun t () function prints the information in the st r uct mntent. The
output ends up being much the same as that of ' ca t / etc / mta b':
$ ch08-mounted Run the program
/dev/hda2 / ext3 rw 0 0
none /proc proc rw 0 0
usbdevfs /proc/bus/usb usbdevfs rw 0 0
/dev/hda5 /d ext3 rw 0 0
none /dev/pts devpts rw , g i d = 5,mode =620 0 0
none /dev/shm tmpfs rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
/dev/hda1 /win vfat rw,noexec , nosu i d,nodev , uid=2076,gid=10,user=arnold 0 0
statv f s () . (The "vfs" part comes from the underlying SunOS technology, later used
in System V Release 4, called a virtual filesystem. ) There are two functions:
#include <sys/type s. h> XSI
#include <sy s / sta tvf s. h>
s t atv fs () uses a pathname for any file; it returns information abo ut the filesystem
co ntaining the file. fstatvfs () accepts an open file descriptor as its first argument;
here too, the information returned is about the filesystem containing the open file. The
struct statvfs contains the fo llowing members:
struct statvfs {
unsigned long int f_bs i z e; Block size
un s igned long int f _ frsi z e; Fragment size ("fundamenta l block size")
f sblkcnt_t f_blocks; Total number of blocks
fsblkcnt _t f_bfree ; Total number of free blocks
fsb lkcn t _t f_bavail ; Number of available blocks ($ f-bfree)
fsfi l cnt_t f_files ; Total number of in odes
f sfi l cnt_t f _f free ; Total number of free inodes
fsfi lcnt_t f_favai l; Number of available in odes ($ fJiles)
u nsi g n ed long int f_f s id ; Filesystem /0
unsi g n ed l ong int f_flag ; Flags: ST_ROONLY and/ or ST_NOSUID
u nsi gned long int f_namema x ; Maximum filename length
} ;
f sb lkcnt_t f_bfr e e
The total number of free blocks in the filesystem.
fsblkcnt_t f_bava i l
The number of blocks that may actually be used. Some filesystems reserve a per-
centage of the filesystem's blocks for use by the superuser, in case the filesystem
fills up. Modern systems reserve around 5 percent, although this number can be
changed by an administrator. (See tune2fi(B) on a GNU/Linux system, and
tunefi(B) on Unix systems.)
fsfilcn t _t f_fi l e s
The total number of inodes ("file serial numbers," in POSIX parlance) on the
filesystem. This number is usually initialized and made permanent when the
filesystem is created.
fs f i lc nt_t f_ffre e
The total 11 umber of free inodes.
fsfi lcnt_ t f_f avail
The number of inodes that may actually be used. Some percentage of the inodes
are reserved for the superuser, just as for blocks.
unsigned l on g i n t f_fs id
The filesystem ID. POSIX doesn't specify what this represents, and it's not used
under Linux.
un si g ned long int f_fl ag
Flags giving information about the filesystem. POSIX specifies two: S T_ RDONLY ,
for a read-only filesystem (such as a CD-ROM), and ST_ NOSU I D, which disallows
the use of the setuid and setgid permission bits on executables. GNU/Linux systems
provide additional flags: They are listed in Table B.2.
u n s i g n ed lon g int f_narnernax
The maximum length of a filename. This refers to each individual component in
a pathname; in other words, the maximum length for a directory entry.
8.3 Reuieving Per-Filesyste m Information 247
TA BLE 8.2
GLl BC values for Cflag
The fsblkcnt_t and fsfilcnt_t types are defined in <sys/types . h>. They are
typically unsigned long, but on modern sys tems, they may be even be a 64-bit type,
since disks have gotten very large. The following program, ch08 -s tatvfs . c , shows
how to use statvfs ( ) :
1 / * ch08-statvfs . c --- demonstrate statvfs */
2
3 / * NOTE: GNU /Linux specific! * /
4
5 #include <stdio . h>
6 #include <errno . h>
1 #include <mntent . h> / * for getmntent(), et al . */
8 #include <unistd . h> / * for getopt() */
9 #include <sys/types . h>
10 #include <sys/statvfs . h>
11
12 void process (const char *filename);
13 void do_statvfs(const struct mntent *fs ) ;
14
15 int errors = 0;
16 char *myname;
11
18 / * main --- process options * /
19
248 Chapter 8 • Filesys(ems and Directory Walks
Lines 1-59 are essentially the same as ch08-mounted. c. main () handles the com-
mand line, and process () loops over each mounted filesystem. do_statvfs () does
the real work, printing the struct statvfs for each interesting filesystem .
8. 3 Re(rieving Per-Filesys(em Informa(ion 249
Lines 67-68 skip filesystems that are not based on a real disk device. This means
that filesystems like / proc or / dey /p t s are ignored. (Admittedly, this check is a
heuristic, but it works: In / e t c/ mt ab mounted devices are listed by the full device
pathname: for example, / dev / hd al.) Line 70 calls statvf s () with appropriate error
checking, and lines 77-99 print the information.
Lines 89-96 deal with flags: single bits of information that are or are not present.
See the sidebar for a discussion of how Bag bits are used in C code. Here is the output
of c h 08-statvfs :
250 Chapter 8 • Filesystems and Direcrory Walks
As of this writing, for GLIBC 2.3 .2 and earlier, GNU df doesn 't use statvfs () .
This is because the code reads / etc / mtab, and calls s ta t () for each mounted filesystem,
to find the one on which the device number matches that of the file (or file descriptor)
argument. It needs to find the filesystem in order to read the mount options so that it
can set the f_flag bits. The problem is that stat ( ) on a remotely mounted filesystem
whose server is not available can hang indefinitely, thus causing df to hang as well. This
problem has since been fixed in GLIBC, bur df won't change for a while so that it can
continue to work on older systems.
I NOTE Although POSIX specifies statvfs () and fstatv£s (), not all systems
. support them or support them correctly. Many systems (including Linux, as
~ described shortly) , have their own system calls that provide similar information.
Iw
GNU df uses a library routine to acquire filesystem information; the source file
I for that routine is full of #i fdefs for a plethora of different systems. With time,
I the portability situation should improve .
8.3 Retrievi ng Per-Filesystem Information 251
Bit Flags
A common technique, applicable in many cases, is to have a set of flag values; when a
flag is set (that is, true), a certain fact is true or a certain condition applies. Flag values
are defined with either #defined symbolic constants or enums. In this chapter, the
n ft w() API (described later) also uses flags. There are only two flags for the struct
statvfs field f_flag :
#define ST_RDONLY 1 1* read- on l y filesystem * 1 Sample definitions
#define ST_NOSUID 2 1* setuid/setgid n o t al lowed * 1
Physically, each symbolic constant represents a different bit position within the f_flag
value. Logically, each value represe nts a separate bit of state information; that is, some
fact or condition that is or isn't true for this particular instance of a struct statvfs .
Flags are set, tested, and cleared with the C bitwise operators. For example, s ta tvf s ( )
would set these flags , using the bitwise OR operator:
int statvfs (c o nst char *path , struct statvfs *vfs)
The bitwise AND operator tests whether a flag is set, and a combination of the bitwise
AND and COMPLEMENT operators clears a flag:
if (( vfs . Cflag & ST_RDONLY) != 0) True ifST_RDONLY flag is set
As with statvfs () and fstatvfs (), the two versions work on a filename or an
open file descriptor, respectively . The struct statfs looks like this:
struct statfs {
long f _type; /* type of filesystem * /
long f _bsize; /* optimal transfer block size * /
long f_blocks; /* total data blocks in filesystem * /
long f _bfree; /* free blocks in fs * /
long f_bavail; /* free blocks avail to nonsuperuser * /
long f_files; /* total file n odes in file system * /
long f _ffree ; /* free file nodes in fs * /
fsid_ t f_fsid; /* filesystem id * /
long f _namelen; /* maximum length of filenames * /
long f _spare[6] ; /* spare for later * /
};
The fields are analogous to those in the struct statvfs . At least through
GLIBC 2.3.2 , the POSIX statvfs () and fstatvfs () function s are wrappers around
statfs () and fstatfs () , respectively, copying the values from one kind of struct
to the other.
The advantage to using statfs () or fstatfs () is that they are system calls. The
kernel returns the information directly. Since there is no f_flag field with mount op-
tions, it's not necessary to look at every mounted filesystem to find the right one.
(In other words , in order to fill in the mount options, s ta tv f s () must examine each
mounted filesystem to find the one containing the file named by path or fd . statf s ()
doesn 't need to do that, since it doesn 't provide information about the mount options.)
There are two disadvantages to using these calls. First, they are Linux specific. Second,
some of the information in the struct statv f s isn't in the struct s t a t fs ; most
noticeably, the mount flags (f_flag) and the number of available inodes (C f a vail) .
(Thus, the Linux statvfs () has to find mount options from other sources, such as
/ etc / mtab, and it "fakes" the information for the stru ct statvf s fields for which
real information isn't available.)
8.3 Retrieving Per-Filesystem Information 253
One field in the S true t S ta tf S deserves special note. This is the f_ type field,
which indicates the type of the filesystem. The value is the filesystem's magic number,
extracted from the superblock. The statfs(2) manpage provides a list of commonly used
filesystems and their magic numbers, which we use in eh08 - statfs . c . (Alas, there is
no separate # inelude file. )
7 /* ch08 -statfs . c --- demonstrate Linux statfs */
2
3 / * NOTE : GNU/Linux specific! */
4
5 #include <stdio . h>
6 #include <errno . h>
7 #include <mntent . h> /* for ge tmntent(), et al . * /
8 #include <unistd . h> / * for getopt () * /
9 #include <sys/types . h>
70 #include <sys/vfs . h>
77
72 /* Defines taken from statfs(2) man page : * /
73 #define AFFS_SUPER_MAGIC OxADFF
74 #define EFS_SUPER_MAGIC Ox00414A53
75 #define EXT_SUPER_MAGIC Ox137D .
76 #define EXT2 OLD_SUPER_MAGIC OxEF51
77 #define EXT2_SUPER_MAGIC OxEF53
78 #define HPFS SUPER_MAGIC OxF995E849
79 #define ISOFS_SUPER_MAG IC Ox 9660
20 #define MINIX_SUPER_ MAGIC Ox137 F /* orig . minix * /
27 #define MINIX_SUPER_MAGIC2 Ox 138F /* 30-char mini x * /
22 #define MINIX2_SUPER_MAGIC Ox2468 /* min i x V2 * /
23 #define MINIX2_SUPER_MAGIC2 Ox 2478 / * minix V2, 30 char names * /
24 #define MSDOS_SUPER_MAGIC Ox4d44
25 #define NCP_SUPER_MAGIC Ox564c
26 #define NFS SUPER_MAG IC Ox6969
27 #define PROC_SUPER_MAGIC Ox9fa O
28 #define 5MB_SUPER_MAGIC Ox517B
29 #define XENIX_SUPER_MAGIC Ox012 FF7B4
30 #define SYSV4_SUPER_MAGIC Ox01 2 FF7B5
37 #define SYSV2_SUPER_MAGIC Ox012 FF7B6
32 #define COH_SUPER_MAGI C Ox012FF7B7
33 #define UFS_MAGIC Ox00011954
34 #define XFS SUPER_MAGIC Ox58465342
35 #define _ XIAFS_SUPER_MAGI C Ox012FD16D
36
37 void process (const cha r * filename) ;
38 v o id do_statfs(const struct mntent *fs ) ;
39
254 Chapter 8 • Filesysrems and Direcrory Walks
40 int errors = 0;
41 char *myname;
42
... main() is unchanged, process() is almost identical.
85
86 /* type2str --- convert fs type to printable string, from statfs ( 2 ) * /
87
88 const char *type2str(long type )
89
90 static struct fsname (
91 long type;
92 const char *name;
93 table[ ) = {
94 { AFFS_SUPER_ MAGIC, "AFFS" } ,
95 COH_SUPER_MAGI C , "COW' } ,
96 EXT2_0 LD_SUPER_MAGIC, "OLD EXT2" },
97 EXT2_SUPER_MAGIC, "EXT2" } ,
98 HPFS_SUPER_MAGIC, "HPFS" ) ,
99 ISOFS_SUPER_MAGIC, "ISOFS" } ,
100 MINIX2_SUPER_MAGIC, "MINIX V2" } ,
101 MINIX2_SUPER_MAGIC2, "MINIX V2 3 0 char" },
102 MINIX_SUPER_MAGIC, "MINIX" },
103 MINIX_SUPER_MAGIC2, "MINIX 3 0 char" } ,
104 MSDOS_SUPER_MAGIC, "MSDOS" } ,
105 NCP_SUPER_MAGIC, "NCP" },
106 NFS_SUPER_MAGIC, "NFS" },
107 PROC_SUPER_MAGIC, "PROC" L
108 5MB_SUPER_MJl.GIC, "SMB" L
109 SYSV2_SUPER_MAGIC, "SYSV2" } ,
110 SYSV4_SUPER_MAGIC, " SYSV4" } ,
111 UFS_MAGIC, "UFS" } ,
112 XENIX_ SUPER_MAGIC, "XENIX" } ,
113 _XIAFS_SUPER_ !1AGIC, "XIAFS" j ,
114 0, NULL } ,
11 5 };
116 static char unknown[lOO ) ;
117 int i;
11 8
119 for (i = 0; table[i ) .type '= 0; i++ )
120 if (table[i) . type == type )
121 return table[i) . name;
122
123 sprintf (unknown, "unknown type : %#x", type ) ;
124 return unknown;
125
126
127 / * do statfs --- Use statfs and print info * /
128
8.3 Retrieving Per-Filesys[em Informa[ion 255
To save space, we've omitted main ( ) , which is unchanged from the other programs
presented earlier, and we've also omitted p r ocess () , which now calls do_st a t f s ()
instead of do_ statvfs ( ) .
Lines 13-35 contain the list offilesystem magic numbers from the statfi(2) manpage.
Although the numbers could be retrieved from kernel source code header files, such
retrieval is painful (we tried), and the presentation here is easier to follow. Lines 86-125
define t ype2 s tr ( ) , which converts the magic number to a printable string. It does a
simple linear search on a table of (value, string) pairs. In the (unlikely) event that the
magic number isn't in the table, types2str () creates an "unknown type" message
and returns that (lines 123-124).
do_ stat f s () (lines 129-153) prints the information from the struc t statfs .
The Cf s i d member is omitted since f si d_t is an opaque rype. The code is straight-
forward; line 145 uses t ype2st r () to print the filesystem rype. As for the similar
program using s ta tvf s ( ) , this function ignores filesystems that aren ' t on local devices
(lines 133-134). Here is the output on our system:
256 Chapter 8 • Filesystems and Directory Walks
Each process has a current working directory. Each new process inherits its current
directory from the process that started it (its parent). Two functions let you change to
another directory:
#include <uni s td . h>
G O n G NU / Linux and BS D systems, you can apply th e dirfd () function to a DIR * po inter to obtain the
underlying fil e descri pto r; see the GNU/ Linux di1d(3) manpage.
258 Chapter 8 • Filesystems and Directory Walks
Line 15 opens the current directory. Line 16 calls fs tat () on the open directory
so that we have a copy of its permissions. Line 17 uses e h d i r () to move up a level in
the file hierarchy. Line 18 does the dirty work, turning off all permissions on the original
directory.
Lines 20-21 attempt to change back to the original directory. It is expected to fail,
since the current permissions don 't allow it. Line 23 restores the original permissions.
The 'sbu f. st_ mode & 07777' retrieves the low-order 12 permission bits; these are
the regular 9 rwxr wx r wx bits, and the setuid, setgid, and "sticky" bits, which we discuss
in Chapter 11, "Permissions and User and Group ID Numbers ," page 403. Finally,
line 24 cleans up by closing the open file descriptor. Here's what happens when the
program runs:
$ ls -ld . Show current permissions
drwxr-xr-x 2 arnold devel 4096 Sep 9 16 : 42 .
$ ch08-chdir Run the program
fchdir back : Permission denied Fails as expected
$ 18 -ld . Look at permissions again
drwxr-xr-x 2 arnold devel 4096 Sep 9 16: 42 Everything is back as it was
The function fills in buf with the pathname; it expects b u f to have s ize bytes.
Upon success, it returns its first argument. Otherwise, ifit needs more than s i ze bytes,
it returns NULL and sets errno to ERANGE. The intent is that if ERANG E happens, you
should try to allocate a larger buffer (with malloe () or realloe ( ) and try again.
If any of the directory components leading to the current directory are not readable
or searchable, then get ewd () can fail and e r r no will be EACC ES. The following simple
program demonstrates its use:
8.4 Moving Around in [he File Hierarchy 259
char buf[PATH_MAX1;
char *cp;
cp = geccwd(buf , sizeof(buf));
printf("Current dir : %s\n", buf) ;
printf("Changing to .. \n");
chdir ( " .. " ) ; 1 * 'cd *1
cp = getcwd(buf, sizeof(buf)) ;
printf("Current dir is now : %s\n", buf);
retu rn 0;
This simple program prints the current directory, changes to the parent directory,
and then prints the new current directory. (ep isn't really needed here, but in a real
program it would be used for error checking.) When run, it produces the
following output:
$ ch08-getcwd
Current dir : Ihome/arnold/work/prenhall /proge x /code/ch08
Changing to
Current dir is now : / home /arnold/work/prenhal l/p rogex /code
GNU/Linux systems provide the file / proc / self / cwd. This file is a symbolic link
to the current directory:
$ cd /tmp Change directory someplace
$ 1s -1 Iproc/self/cwd Look at the file
lrwxrwxrwx 1 arnold devel o Sep 9 17:29 Iproc/self/cwd -> Itmp
$ cd Change to home directory
$ Is -1 /proc/self/cwd Look at it again
lrwxrwxrwx 1 arnold devel o Sep 9 17 : 30 Iproc/self/cwd -> Ihome/arnold
This is convenient at the shell level but presents a problem at the programmatic level.
In particular, the size of the file is zero! (This is because it's a file in / proc , which the
kernel fakes; it's not a real file living on disk. )
Why is the zero size a problem? If you remember from Section 5.4.5, "Working with
Symbolic Links," page 151 , l stat () on a symbolic link returns the number of characters
in the name of the linked-to file in the s t size field of the struct sta t . This
number can then be used to allocate a buffer of the appropriate size for use with
read link (). That won't work here, since the size is zero. You have to use (or allocate)
a buffer that you guess is big enough . However, since r e a dl ink () does not fill in any
more characters than you provide, you can't tell whether or not the buffer is big enough;
readlink () does not fail when there isn't enough room. (See the Coreutils
xre a d link () function in Section 5.4.5, "Working with Symbolic Links," page 151,
which solves the problem.)
In addition to ge t cwd ( ) , GLIBC has several other nonportable routines . These save
you the trouble of managing buffers and provide compatibility with older BSD systems.
For the details, see getcwd(3 ).
to; you have to be able to deal with directories that aren't readable or searchable, and
so on. It's also painful to have to write the same code over and over again if you need
it for multiple applications.
7 POS IX standardizes the ftw () inrerface ro supporr existing code, an d GNU/Linux and commercial Un ix systems
conri nue ro supply it. However, sin ce it's underpowered, we don't oth erw ise discuss it. See ftw(3) if you 're
inrerested.
262 Chapter 8 • Filesystems and Directory Walks
nftw () from processing hierarchies that are more than depth levels deep; but
smaller values for depth mean that nftw () has to do more work.
flag s
A set of flags, bitwise OR'd, that direct how nftw ( ) should process the hierarchy.
The nftw () interface has two disjoint sets of flags. One set controls nftw () itself
(the flags argument to nftw ( )). The other set is passed to the user-supplied function
that nftw () calls (the flag argument to (*fn) ()) . However, the interface is confusing,
because both sets of flags use names starting with the prefix 'FTW_'. We'll do our best
to keep this clear as we go. Table 8.3 presents the flags that control nftw ( ) .
TABLE 8.3
Control flags for nftw ( )
Flag Meaning
FTW_CHDI R When set, change to each directory before opening it. This action is more
efficient, but the calling application has to be prepared to be in a different di-
rectory when nf tw () is done.
FTW_DEPTH When set, do a "depth-first search ." This means that all of the files and subdi-
rectories in a directory are processed before the directory itself is processed.
FTW_MOUNT When set, stay within the same mounted filesystem . This is a more specialized
option.
FTW_PHYS When set, do not follow symbolic links.
FTW_ CHDIR provides greater efficiency; when processing deep file hierarchies, the
kernel doesn't have to process full pathnames over and over again when doing as ta t ( )
or opening a directory. The time savings on large hierarchies can be quite noticeable. 8
FTW_DEPTH mayor may not be what you need; for some applications it's just right.
Consider 'chmod -R u-rx . ' . This removes read and execute permission for the
owner of all files and subdirectories in the current directory. If this permission change
is applied to a directory before it's applied to the directory's contents, any subsequent
attempt to process the contents will fail! Thus, it should be applied after the contents
8 Some older GLIBC versions have problems with FTW_CHDIR. This is not true for GLIBC 2.3.2 and later, and
it's unlikely that yo u'll encounter problems.
8.4 Moving Around in (he File Hierarchy 263
have been processed. 9 The GNU/Linux nftw(3) manpage notes for F TW_PHYS that "this
is what you want." This lets you process symbolic links as themselves, which is usually
what's necessary. (Consider du ; it should count the link's space separately from that of
the linked-to file.)
9 Why anyone would want ro make such a change, we don't kn ow , but (he "you asked for it, you got it" philosophy
applies here roo!
264 Chapter 8 • Filesystems and Directory W alks
TABLE 8.4
Flag values for nftw () callback function
Flag Meaning
Object is a regular file.
Object is a directory.
Object is a directory that wasn 't readable.
FTW_ SL Object is a symbolic link.
FTW_NS Object is not a symbolic link, and s t a t () failed.
FTW_DP Object is a directory whose children have already been processed. This can
only happen ifFTw_DEPTH was used in the call to n ftw ().
Object is a symbolic link pointing to a nonexistent file. This can only happen
ifFTw_PHYS was not used in the call to n f t w() .
s - >level indicates the current depth in the hierarchy; the original starring point is
considered to be at level o.
The callback function should return 0 if all is well. Any nonzero return causes n f tw ( )
to stop its processing and to return the same nonzero value. The manpage notes that
the callback function should stop processing only by using its return value so that
nftw () has a chance to clean up: that is, free any dynamic storage, close open file de-
scriptors, and so on. The callback function should not use lon gjrnp () unless the pro-
gram will immed iately exit. (longjrnp () is an advanced function , which we describe
in Section 12.5 , "Nonlocal Gotos, " page 446.) The recommended technique for handling
errors is to set a global variable indicating that there were problems, return 0 from the
callback, and deal with the failures once nftw () has completed traversing the file hier-
archy. (GNU du does this, as we see shortly.)
Let's tie all this together with an example program. eh08 -nftw. e processes each file
or directory named on the command line, running nftw () on it. The function that
processes each file prints the filename and type with indentation, showing the hierarchical
position of each file. For a change, we show the results first , and then we show and
discuss the program:
8.4 Moving Around in (he File Hierarchy 265
Lines 3-11 include header files. Through at least GLIBC 2.3.2, the #defines for
_ XOPEN_SOURCE and _XOPEN_SOURCE_EXTENDED are necessary before any header file
inclusion. They make it possible to get the declarations and flag values that nftw ( )
provides over and above those of ft w ( ) . This is specific to GLIBC. The need for it will
eventually disappear as GLIBC becomes fully compliant with the 200 1 POSIX standard.
Lines 35-44 process options . The - c option adds the FTW_ CHDIR flag to the nftw ( )
flags. This is an experiment to see if you can end up somewhere different from where
you started. It seems that if nftw () fails, you can; otherwise, you end up back where
you were. (POSIX doesn't document this explicitly, but the intent seems to be that you
do end up back where you started. The standard d oes say that the callback function
should not change the current directory.)
Line 49 saves the starting directory for later use, using ge t cwd ( ) .
8.4 Moving Around in [he File Hierarchy 267
Line 51 computes the number of file descriptors nftw () can use. We don't want it
to use all available file descriptors in case the callback function wants to open files too.
The computation uses getdtables ize () (see Section 4.4.1, "Understanding File
Descriptors, " page 92) to retrieve the maximum available number and subtracts
SPARE_FD S , which was defined earlier, on line 13.
This procedure warrants more explanation. In the normal case, at least three descrip-
tors are already used for standard input, standard output, and standard error. nftw ( )
needs some number of file descriptors for opening and reading directories ; under the
hood, opendir () uses open () to open a directory for reading. If the callback function
also needs to open files, we have to prevent nftw ( ) from using up all available file de-
scriptors with open directories. We do this by subtracting some number from the
maximum available. For this example, we chose five, but if the callback function needs
to open files, a larger number should be used . (nftw () knows how to recover when it
runs out of file descriptors; we don't have to worry about that case.)
Lines 52-58 are the main loop over the arguments; lines 53-57 check for errors;
when they occur, the code prints a diagnostic and increments the erro r s variable.
Lines 60-64 are part of the experiment for FTW_CHDIR, printing the starting and
finishing directories if -c was used.
The function of real interest is process ( ) ; this is the callback function that processes
each file. It uses the basic template for an nftw () callback function , which is a swi tch
statement on the flag value:
69 / * process --- print out each file at the right level * /
10
11 int process (co nst char *file, const struct stat *sb,
12 int flag, struct FTW *s )
13
14 int retval = 0 ;
15 const char *name = file + s->base;
16
11 printf("%*s ", s->level * 4, "" ) ; / * indent ove r */
18
19 switch (flag )
80 case FTW_F :
81 printf( " %s (file)\n ", name) ;
82 break ;
83 case FTW_D :
84 printf ( " %s (directory) \n" , name);
85 break ;
268 Chapter 8 • Filesystems and Directory Walks
86 ca s e FTW_DNR:
87 pr intf ("%s (unreadable d ire c t o r y) \n ", name);
88 b rea k;
89 ca s e FTW_SL:
90 princf ( "%s ( symbol ic link ) \ n", name ) ;
91 b r eak;
92 ca s e FTW_NS :
93 pr intf ( " %s (stat failed) : %s \n", name, strerror(e rrno)) ;
94 brea k;
95 c a s e FTW_DP :
96 c ase FTW_SLN :
97 pri ntf( " %s: FTW_DP or FTW_SLN: c an ' t happen I \n", name) ;
98 retval = 1 ;
99 brea k ;
100 d e f a ul t:
101 p ri ntf("%s: unknown fla g %d : can't happen! \ n", n a me, f lag ) ;
102 retval = 1;
103 break;
104
105
106 return retval;
107
Line 75 uses ' file + s->ba se' to get at the name part of the full pathname. This
pointer value is saved in the name variable for reuse throughout the function .
Line 77 produces the right amo unt of indentation , using a nice trick. Using %* s ,
prin tf () takes the field width from the firs t argument. This is comp uted dynamically
as ' l e v e l * 4' . T he string to be pri nted is "" , the null string. T he end result is that
pr intf ( ) produces the right amount of space for us, without our having to run a loop .
Lines 79-104 are the s wi t ch statem ent. In this case, it doesn't do anything terribly
interesting except print the file's name and its type (file, directory, etc. ).
Although this program doesn' t use the stru c t sta t , it should be clear that you
could do anything you need to in the callback function.
iIII
NOTE Jim Meyering, th e main tain er of the GNU Coreutils, notes that the
I nftw () design isn 't perfect , because of its recursive nature . ( It calls itself
I recursively when processing subdirectories.) If a directory hierarchy gets really
I deep, in the 20 ,000- 40 ,000 level range (!) , nftw ( ) can run out of stack space,
I killing the program . There are other problems related to nftw( ) 's design as
I well. The post-S.O version ofthe ..Gf\jU Coreutils fixes this by using the BSD
IIS
fts ( ) suite of routines (see fts(3) y:
8.5 W alking a File Tree: GNU du 269
Mandatory arguments to long options are mandatory for short options too .
-a, --all write counts for all files, not just directories
- -apparent-siz e print apparent sizes , rather than disk usage; although
the apparent size is usually smaller, it may be
larger due to holes in ('sparse') files, internal
fragmentation, indirect blocks , and the like
-B, --block-size=SIZE use SIZE-byte blocks
-b, --bytes equivalent to '--appa rent-size --block-size=l'
-c, --total produce a grand total
-D , --dereference-args dereference FILEs that are symbolic links
-h , --human-readable print sizes in human readable format (e .g., 1K 234M 2G)
-H, --si l ikewise, but use powers of 1000 not 1024
-k l ike - - block-size=lK
-1, --count-links count sizes many times if hard linked
-L, --dereference derefer ence all symbolic links
-S , --separate-dirs do not include size of subdirectories
-s , --summarize display only a total f o r each argument
-x , --one-file-system skip directories on different filesystems
-x FILE, --exclude-from=FILE Exclude files that match any pattern in FILE.
--ex clude=PATTERN Ex clude files that match PATTERN .
--max-depth=N print the total for a directory (or file, with - -all)
only if it is N o r fewer levels below the command
line argument; --max-depth=O is the same as
- - summarize
--help display this help and exit
--vers i on output version informati on and exit
To complicate matters further, du uses a private version of nftw() that has some
extensions. First, there are additional Bag values for the callback function:
FTW_DCHP
This value signifies that nftw( ) could not execute 'chdir ( " .. " ) ' .
FTW_DCH
This value signifies that nftw () could not use chdir () to change into a directory
itself.
FTW_DPRE
The private nftw () calls the callback function for directories, twice. This value is
used the first time a directory is encountered. The standard FTW_DP value is used
after all the directory's children have been processed.
The private nf tw () also adds a new member, int skip, to the struct FTW. If the
current object is a directory and the callback function sets the skip field to nonzero,
nftw () will not process that directory any further. (The callback function should set
skip this way when the flag is FTW_ D PRE; doing it for FTW_DP is too late.)
With that explanation under our belt, here is the process_file () function from
du. c . Line numbers are relative to the start of the function:
/* This function is called once for every file system object that nftw
2 encounters . nftw does a depth-first traversal. This function knows
3 that and accumulates per-directory totals based on changes in
4 the depth of the current entry. */
5
6 static int
7 process_file (const char *file, const struct stat *sb, int file_type,
8 struct FTW *info )
9
10 uintmax_t size;
11 uintmax_t size_to-print;
12 static int first _ call = 1;
13 static size_t prev_level;
14 static size_t n_alloc;
15 static uintmax_t *sum_ent;
16 static uintmax_t *sum_subdir;
17 int print = 1;
18
19 /* Always define info->skip before returning . */
20 info->skip = excluded_filename (exclude , file + info->base); For --exclude
8.5 W alking a File Tree: GNU du 271
This function does a lot since it has to implement all of du 's options. Line 17 sets
p r int to true (1) ; the default is to print information about each file. Later code sets it
to false (0 ) if necessary.
Line 20 sets inf o - > skip based on the --exc lude option. Note that this excludes
subdirectories if a directory matches the pattern for - -exclude .
22 switch (file_type)
23
24 case FTW_NS :
25 error (0, errno, _( "cannot access %s " ) , quote (file)) ;
26 G_fail = 1 ; Se t global var for later
27 return 0 ; Return 0 to keep going
28
29 case FTW_DCHP :
30 error (0, errno, _("cannot change to parent of directory %s"),
31 quote (file)) ;
32 G_fail = 1 ;
33 return 0 ;
34
35 cas e FTW_DCH :
36 1* Don ' t return just yet , since although nftw couldn ' t chdir into the
37 directory, it was able to stat it , so we do hav e a size . * 1
38 error (0 , errno, _("cannot change to directory %s") , quote (file)) ;
39 G_fail = 1 ;
40 break ;
41
42 case FTW_DNR :
43 1* Don't return just yet , since although nftw couldn ' t read the
44 d i rectory, it was able to stat it , s o we do hav e a s i ze . *1
45 e r ro r (0 , e r rno, _("cannot read directory %s") , quote (file)) ;
46 G_fa i l = 1 ;
47 break ;
48
49 defaul t:
50 brea k;
51
52
53 1* If thi s i s the f irs t(pr e-o r de r ) encounter with a dire c to r y ,
54 return righ t away . * I
55 i f (file_type == FTW_DPRE )
56 return 0 ;
272 Chapter 8 • Filesystems and Directory Walks
Lines 22-51 are the standard swi t ch statement. Errors for which there's no size in-
formation set the global variable G_fail to 1 and return 0 to keep going (see lines
24-27 and 29-33). Errors for which there is a size also set G_ f a i l but then break out
of the swi t ch in order to handle the statistics (see lines 35-40 and 42-47).
Lines 55-56 return early if this is the first time a directory is encountered.
58 / * If the file is being e x cluded or if it h a s already been counted
59 via a hard link, then don ' t let it cont r ibute to the sums . * /
60 if ( info->skip
61 II ( ! opt_coun call
62 & & 1 < s b->st_ nl i nk
63 && hash_ i ns (sb->st_ino, s b->st_dev) ))
64
65 / * Note that we mus t not simpl y return he r e .
66 We still have to update prev_level and maybe propagate
67 some sums up t h e h i e r archy . * /
68 size = 0;
69 print = 0;
70
71 else
72
73 si z e ( apparent_si z e
74 ? sb- >st_ si z e
75 : ST_ NBLOC KS ( * sb) * ST_NBLOC KSIZE ) ;
76
Now it starts to get interesting. By default, du counts the space used by hard-linked
files just once. The --c ount-li n ks option causes it to count each link's space; the
variable opt_coun t _all is true when - - c ount-links is supplied. To keep track of
links, du maintains a hash table 10 of already seen (device, inode) pairs.
Lines 60-63 test whether a file should not be counted, either because it was excluded
(in f o - >skip is true, line 60) or because --count - links was not supplied (line 61)
and the file has multiple links (line 62) and the file is already in the hash table (line 63).
In this case, the size is set to 0, so that it doesn 't add to the running totals, and print
is also set to false (lines 68-69).
If none of those conditions hold, the size is computed either according to the size in
the st r uct s t at or the number of disk blocks (lines 73-75) . This decision is based
on the apparent_si z e variable, which is set if the - - apparent - si z e option is used.
lOA hash table is a data structure that allows quick retrieval of stored information ; the details are beyond the scope
of this book.
8.5 Walking a File Tree: GNU du 273
18 if (first_call)
19 {
80 n_alloc = info->level + 10; Allocate arrays
81 sum_ent = XCALLOC (uintmax_t , n_alloc); to hold sums
82 sum_subdir = XCALLOC (uintma x_t, n_alloc);
83
84 else
85
86 / * FIXME : it's a shame that we need these 'si ze_t' casts to avoid
81 warnings from gcc about 'comparison between signed and unsigned ' .
88 Probably unavoidable, assuming that the members of struct FTW
89 are of type' int' (hi storical ), since I want variables like
90 n_alloc and prev_level to have types that make sense . */
91 if (n_all oc <= (s ize_t ) info->level)
92 {
93 n_alloc = info->level * 2; Double amount
94 sum_ent = XREALLOC (sum_ent, uintmax_t , n_alloc) ; And reallocate
95 sum_subdir = XREALLOC (sum_subdir , uintmax_t, n_alloc);
96
91
98
99 size_to-print = size;
Lines 78-97 manage the dynamic memOlY used to hold file size statistics. f irs t_call
is a stat i c variable (line 12) that is true the first time process_file () is called. In
this case, calloc () is called (through a wrapper macro on lines 81-82; this was dis-
cussed in Section 3.2.1.8, "Example: Reading Arbitrarily Long Lines," page 67) . The
rest of the time, first_call is false , and reall oc () is used (again, through a wrapper
macro, lines 91 -96).
Line 99 sets size_ to_print to size; this variable may be updated depending on
whether it has to include the sizes of any children. Although size co uld have been
reused, the separate variable makes the code easier to read.
101 if ( I first_call)
102 (
103 if ((size_t) info->level == prev_level)
104 (
105 / * This is usually the most common ca s e . Do nothing . */
106
107 else if ((size_t) info->level > prev_level)
108 {
109 /* Descending the hierarchy .
110 Clear the accumulators for *all* levels between prev_level
111 and the current one . The depth may chan ge dramatically,
112 e . g . , from 1 to 10. */
113 int i;
114 for ( i = prev_level + 1; i <= info->level; i++)
115 sUffi_ent[il = sum_subdir[il = 0;
116
274 Chapter 8 • Filesystems and Directory Walks
Lines 101 - 132 compare the current level to the prevlOUS one. There are three
possible cases.
148
149 return 0;
150
151 1* If we' r e not counting an entry, e . g . , because it's a ha r d link
152 t o a file we ' ve already counted ( and --count-links ) , then don't
153 print a line for it . *1
154 if ( ! print )
155 return 0;
Lines 134-135 set the stat i c variables prev_l e v e l and fi r s t_call so that they'll
have the correct values for a subsequent call to pr oc ess_file ( ) , ensuring that all the
previous code works correctly.
Lines 137-144 adjust statistics on the basis of options and the file type. The comments
and code are fairly straightforward. Lines 146-155 quit early if the information should
not be printed.
151 1* FIXME : This looks suspicious l y l ike it c o uld be s i mplified . * 1
158 if (( IS_FTW_DIR_TYPE ( f i le_type ) &&
159 ( info->level <= max_depth II inf o ->level == 0))
160 II ((opt_all && info-> l e v el <= max_depth) II info->level == 0))
16 1
162 print_only_size (size_t o-print ) ;
163 fputc ( ' \ t', stdout ) ;
164 if (arg_ length)
165 {
166 / * Print the file n ame , but without the ' . ' o r ' I . '
161 direct o ry suffi x that we may have added in main . * 1
168 1* Print everything before the pa r t we appended . * 1
169 fwrite ( f i le, arg_length , 1 , stdout) ;
110 1* Prin t everything after what we appended . * 1
111 fput s (f i le + arg_length + suffix_length
112 + ( file[arg_length + suffix_length] == ' I ' ) , stdout) ;
113
114 else
115
116 fpu t s ( f ile, stdout) ;
111
118 f p utc ('\n' , stdou t ) ;
119 fflu s h ( s tdout) ;
180
181
182 return 0 ;
183
The condition on lines 158-160 is confusing, and the comment on line 157 notes
this. The condition states: "If (1 a) the file is a directory and (1 b) the level is less than
the maximum to print (the - - max - d e pth and max_dept h variable) or the level is zero,
or (2a) all files should be printed and the level is less than the maximum to print, or
276 Chapter 8 • Filesystems and Directory Walks
(2b) the level is zero," then print the file . (Yow! The post-5.0 version of du uses a
slightly less complicated condition for this case.)
Lines 162-1 79 do the printing. Lines 162-163 print the size and a TAB character.
Lines 164-173 handle a special case. This is explained later on in d u . c, on lines 524-529
of the file:
524 f* When dereferencing only command line arguments, we're using
525 nftw's FTW_PHYS flag, so a symlink-to-directory specified on
526 the command line wouldn ' t normally be dereferenced. To work
527 around that, we incur the overhead of appending ' f . ' (or' , ' )
528 now, and later removing it each time we output the name of
529 a derived file or directory name. *f
In this case, a r g _ length is true, so lines 164-1 73 have to print out the original
name, not the modified one. Otherwise, lines 174-117 can print the name as it is.
Whew! That's a lot of code. We find this to be on the upper end of the complexity
spectrum, at least as far as what can be easily presented in a book of this nature. How-
ever, it demonstrates that real-world code is often complex. The best way to manage
such complexity is with clearly named variables and detailed comments. du . c is good
in that respect; we were able to extract the code and examine it fairly easily, without
having to show all 735 lines of the program!
if (chdi r ( " /some/d i r") < 0) Pathnarnes now relative to new root
/* handle error */
The chro o t () system call is used most often for daemons-background programs
that must run in a special, contained environment. For example, consider an Internet
FTP daemon that allows anonymous FTP (connection by anyone, from anywhere,
without a regular username and password). Obviously, such a connection should not
be able to see all the files on the whole system. Instead, the FTP daemon does a
c hr oo t () to a special directory with just enough structure to allow it to function. (For
example, its own I bin / 1s for listing files , its own copy of the C runtime library if it's
shared, and possibly its own copy of l e t c / passwd and l et e/ gr oup to show a limited
set of user and group names.)
POSIX doesn ' t standardize this system call, although GNU/Linux and all Unix sys-
tems suppOrt it. (It's been aro und since V7.) It is specialized, but when you need it, it's
very handy.
8.7 Summary
• Filesystems are collections of free, inode, metadata, and data blocks , organized in
a specific fashion. Filesystems correspond one-to-one with the (physical or logical)
partitions in which they are made. Each filesys tem has its own root directory; by
convention the root direcrory always has inode number 2 .
• The mount command mounts a filesystem , grafting it onto the logical hierarchical
file namespace. The umount command detaches a filesystem. The kernel arranges
for I . and I .. to be the same; the root directory of the entire namespace is its
own parent. In all other cases, the kernel arranges for ' . . ' in the root of a
mounted filesystem to point to the parent directory of the mount point.
• Modern Unix systems suppOrt multiple types of filesystems. In particular, Sun's
Network File System (NFS) is universally supported, as is the ISO 9660 standard
format for CD-ROMs, and MS-DOS FAT partitions are supported on all Unix
systems that run on Intel x86 hardware. To our knowledge, Linux supports the
largest number of different filesystems-well over 30! Many are specialized,
but many others are for general use, including at least four different journaling
filesystems.
278 Chapter 8 • Filesystems and Directory Walks
• The / e tc/ f s tab file lists each system's partitions, their mount points, and any
relevant mount options. / etc /mtab lists those filesystems that are currently
mounted, as does /p r oc/ mount s on GNU/Linux systems. The loop option to
mount is particularly useful under GNU/Linux for mounting filesystem images
contained in regular files , such as CD-ROM images. Other options are useful for
security and for mounting foreign filesystems, such as Windows v fa t filesystems.
• The /e t c/ f s tab-format files can be read with the ge tmn tent () suite of routines.
The GNU/Linux format is shared with several other commercial Unix variants,
most notably Sun's Solaris.
• The statv fs ( ) and fst atv f s () functions are standardized by POSIX for re-
trieving filesystem information , such as the number of free and used disk blocks,
the number of free and used inodes, and so on. Linux has its own system calls for
retrieving similar information: s ta tf s () and f s ta tf s ( ) .
• ehdi r () and f ehdir () let a process change its current directory. ge t ewd () re-
trieves the absolute pathname of the current directory. These three functions are
straightforward to use.
• The n f tw () function centralizes the task of "walking a file tree," that is, visiting
every filesystem object (file, device, symbolic link, directory) in an entire directory
hierarchy. Different Bags control its behavior. The programmer then has to provide
a callback function that receives each file's name, a s t r ue t s ta t for the file , the
file 's type, and information about the file 's name and level in the hierarchy. This
function can then do whatever is necessary for each file. The Coreutils 5.0 version
of GNU du uses an extended version of nftw () to do its job.
• Finally, the ehr oot () system call changes a process's current root directory. This
is a specialized but important facility, which is particularly useful for certain dae-
mon-style programs.
Exercises
281
In this chapter
283
A s we said in Chapter I, "Introduction," page 3, if you were to summarize Unix
(and thus Linux) in three words, they would have to be "files and processes."
Now that we've seen how to work with files and directories, it's time to look at the
rest of the story: processes. In particular, we examine how processes are created and
managed, how they interact with open files, and how they can communicate with
each other. Subsequent chapters examine signals-a coarse way for one process
(or the kernel) to let another know that some event has occurred- and
permission checking.
In this chapter the picture begins to get more complicated. In particular, to be
fairly complete, we must mention things that aren' t covered until later in the
chapter or later in the book. In such cases, we provide forward references, but you
should be able to get the gist of each section without looking ahead.
pid_t fork(void ) ;
Using f o r k () is simple. Before the call, one process, which we term the parent, is
running. When f o rk () returns, there are two processes: the parent and the child.
Here is the key: The two processes both run the same program. The two processes can
distinguish themselves based on the return value from f o rk ( ) :
Negative
If there is an error, f o r k ( ) returns - 1 , and no new process is created. The original
. .
process contmues runl1lng.
Zero
In the child, f o rk ( ) returns o.
284
9. 1 Process Creation and Management 285
Positive
In the parent, f ork () returns the positive process identification number (PI D)
of the child.
The pid_ t is a signed integer type for holding PID values. It is m ost likely a plain
i nt, but it makes code more self-documenting and should be used instead of i nt o
In Unix parlance, besides being the name of a system call, the word "fo rk" is both a
verb and a noun. W e might say that "one process forks another," and that "after the
fork, two processes are running." (Think "fork in a road" and not "fork , knife
and spoon. ")
• The controlling terminal. This is the terminal device (physical console or terminal-
emulator window) that is allowed to send signals to a process (such as CTRL-Z
to stop running jobs). This is discussed later, in Section 9.2.1, "Job Control
Overview," page 312.
• The process signal mask and all current signal dispositions (not discussed yet; see
Chapter 10, "Signals," page 347).
• The real, effective, and saved set-user and set-group IDs and the supplemental
group set (not discussed yet; see Chapter 11, "Permissions and User and Group
ID Numbers," page 403).
Besides the fork () return value, the rwo processes differ in the following ways:
• Each one has a unique process ID and parent process ID (PID and PPID). These
are described in Section 9.1.2, "Identifying a Process: g e tpid () and getpp id () ,"
page 289.
• The child's PID will not equal that of any existing process group ID (see Sec-
tion 9.2, "Process Groups," page 312).
• The accumulated CPU times for the child process and its future children are ini-
tialized to zero . (This makes sense; after all, it is a brand-new process.)
• Any signals that were pending in the parent are cleared in the child, as are any
pending alarms or timers. (We haven't covered these topics yet; see Chapter 10,
"Signals," page 347, and see Section 14.3.3 , "Interval Timers: seti timer () and
geti timer ( ) ," page 546.)
• File locks held by the parent are not duplicated in the child (also not discussed
yet; see Section 14.2, "Locking Files," page 531 ).
Open fi les are a significant exceptio n to this rule. Open fi le descriptors are shared,
and an action by one process on a shared file descriptor affects the state of the fi le for
the other process as well. This is bes t understood after study o f Figure 9.l.
pro 42 pro 45
Descriptor tables , r r r r r r
0 r 1 r 2 r 0 r 1 r 2 r
per process: r r r r r r
Bookkeeping
I!l T:j
lr Bo okkeeping lr Bookkeeping lr Bookkeeping lr
File table: .------------t---- --------"i------ ------\-------------j
Offset ! Off set ! Of fset: ! Or fset !
j j
Fil e contents:
FIGURE 9.1
File descriptor sharing
The figure displays the kernel's internal data structures. The key data structure is the
file table. Each element refers to an open file. Besides other bookkeeping data, the file
table maintains the current positio n (read/wri te offset) in the file. This is adj usted either
automatically each time a file is read or written or directly with 1 seek () (see Section 4.5,
"Random Access: Moving Around within a File," page 102).
The file descriptor returned by open () or c r e at ( ) acts as an index into a per-process
array of pointers into the file table. This per-process array won't be any larger than the
val ue returned by getdtab l e si ze () (see Section 4.4.1, "Understanding File Descrip-
tors ," page 92).
Figure 9.1 shows two processes sharing standard input and standard output; for each,
both point to the same entries in the file table. Thus, when process 45 (the child) does
a r ead ( ), the shared offset is updated; the next time process 42 (the parent) does a
read ( ), it starts at the position where process 45 's read () finished.
T his can be seen easily at the shell level :
288 Chapter 9 • Process Management and Pipes
with two different struct stat structures. If the corresponding st_dev and st_ino
fields are equal, they're the same file.
We co mplete the discussion of file descriptor manipulation and the file descriptor
table later in the chapter.
pid_t getpid (v o id ) ;
pid_t getpp id (void ) ;
Line 15 retrieves the PID of the initial process , using getp i d ( ) . Lines 17-20 fork
the child, checking for an error return.
Lines 21-24 are executed by the child: Line 22 retrieves the PPID. Line 23 suspends
the process for two seconds (see Section 10.8.1 , "Alarm Clocks: s leep(), al arm () ,
and S I GALRM," page 382, for information about s leep () ), and then line 24 retrieves
the PPID again.
Lines 25-27 run in the parent. Line 26 delays the parent for one second, giving the
child enough time to make the first ge tpp id ( ) call. Line 27 then exits the parent.
Lines 31-34 print the values. Note that the parent variable, which was set before
the fork, still maintains its value in the child. After forking, the two processes have
identical but independent copies of their address spaces. Here's what happens when
the program runs:
9. 1 Process C reat ion and Management 291
Remember that the two programs execute in parallel. This is depicted graphically in
Figure 9.2.
6583 repa rented Continues sleeping Reparent child while it's asleep
FIGURE 9.2
Two processes running in parallel after forking
I
I NOTE The use of sleep () to have one process outlive another wo rks most
ofthe time . However, occasionally it fails , lead ing to hard-to-reproduce a nd
I
w hard-to-find bugs . The only way to guarantee correct behavior is explicit
f.: synchronizati on w ith wai t () or wai tpid ( ) , w hich are described further on
,. in the chapter (see Section 9 .1 .6.1, " Using POSIX Functions: wait () and
% wai tpid ( ) ," page 306).
E
Linux, like Unix, provides preemptive multitasking. This m eans that the kernel can
preempt a process (pause it) if it's time to let another process run. Processes that have
been running a lot (fo r example, co mpute-intensive processes) have their priority lowered
292 Chapter 9 • Process Management and Pipes
at the end of their time slice, to let other processes have a chance at the processor.
Similarly, processes that have been idle while waiting for I/O (such as an interactive
text editor) are given a higher priority so that they can respond to the I/O when it
happens. In short, the kernel makes sure that all processes, averaged over time, get their
"fair share" of the cpu. Raising and lowering priorities are part of this process.
Designing a good process scheduler for the kernel is an art; the nitty-gritty details
are beyond the scope of this book. However, a process can influence the kernel 's prior-
ity assignment algorithm by way of its nice value.
The nice value is an indication of "how nice" the process is willing to be toward
other processes. Thus , higher nice values indicate increasingly more patient processes;
that is, ones that are increasingly nice toward others, lowering their priority with respect
to that of other processes.
A negative nice value, on the other hand, indicates that a process wishes to be "less
nice" towards others. Such a process is more selfish, wanting more CPU time for itself.!
Fortunately, while users can increase their nice value (be more nice), only root can
decrease the nice value (be less nice) .
The nice value is only one factor in the equation used by the kernel to compute the
priority; the nice value is not the priority itself, which varies over time, based on the
process's behavior and the state of other processes in the system. To change the nice
value, use the n i c e () system call:
# incl u d e <uni s t d . h> XSI
i n t n i ce ( int i nc ) ;
The default nice value is o. The allowed range for nice values is -20 to 19 . This takes
some getting used to. The more negative the value, the higher the process's priority:
- 2 0 is the highest priority (least nice), and 1 9 is the lowest priority (most nice).
The inc argument is the increment by which to change the nice value. Use 'nice (0) ,
to retrieve the current value without changing it. If the result of ' c ur rent_ni ce_val ue
+ i nc ' would be ou tside the range - 20 to 1 9 , the system forces the result to be inside
the range.
The return value is the new nice value or -1 if there was an error. Since -1 is also a
valid nice val ue, when calling n i ce () you must explicitly set errno to zero first, and
then check it afterwards to see if there was a problem:
int niceval ;
int inc = / * whatever * / ;
e rrno = 0 ;
if (( niceva l = nice(inc )) < 0 && er r no ! = 0)
fprintf ( stderr , "nice( %d) failed : %s \n ", inc, strerro r ( errno)) ;
/ * other rec o very * /
This example can fai l if ine has a negative value and the process is not running as root.
A call to exec ( ) should not return. Ifit does, there was a problem. Most commonly,
either the requested program doesn't exist, or it exists but it isn't executable (ENOENT
and EACC ES for errno, respectively). Many more things can go wrong; see the
execve(2) manpage.
9.1 Process Crearion and Managemem 295
Assuming that the call succeeds, the current contents of the process's address space
are thrown away. (The kernel does arrange to save the argv and envp data in a safe
place first.) The kernel loads the executable code for the new program, along with any
global and static variables . Next, the kernel initializes the envitonment with that
passed to execve ( ) , and then it calls the new program's main () routine with the argv
array passed to execve (). It counts the number of arguments and passes that value to
main () in argc.
At that point, the new program is running. It doesn't know (and can't find our)
what program was running in the process before it. Note that the process ID does not
change. Many other attrib utes remain in place across the exec; we cover this in more
detail shortly.
In a loose analogy, exec () is to a process what life roles are to a person. At different
times during the day, a single person might function as parent, spouse, friend , student
or worker, store customer, and so on. Yet it is the same underlying perso n performing
the different roles . So too, the process-its PID, open files, current directory,
etc.-doesn't change, while the particular job it's doing-the program run with
exec ( ) - can.
TABLE 9.1
Alphabetical exec () family summary
The execlp () and execvp () functions are best avoided unless you know that the
PATH environment variable contains a reasonable list of directories.
The first argument is the path name of the program to run and the second is the new
name for the program (which most utilities ignore, other than for error messages) ; any
other arguments are passed on to the program being exec'd.
Lines 13-16 do error checking. Line 18 saves the path in pa th o Line 20 does the
exec; iflines 22- 23 run, it's because there was a problem. Here's what happens when
we run the program:
298 Chapter 9 • Process Management and Pipes
This next example is a bit bizarre: we have ch09 - run run itself, passing 'fo o' as the
program name. Since there aren't enough arguments for the second run, it prints the
usage message and exits:
$ ch09-run ./ch09-run foo
usage: f oo path argO [ arg ... J
While not very useful, chO 9 - run clearly shows that argv [01 need not have any rela-
tionship to the file that is actually run.
In System III (circa 1980), the cp, In, and mv commands were one executable file,
with three links by those names in Ibin. The program would examine argv [Oland
decide what it should do. This saved a modest amount of disk space, at the expense of
complicating the source code and forcing the program to choose a default action if in-
voked by an unrecognized name. (Some current commercial Unix systems continue
this practice!) Without stating an explicit reason, the GNU Coding Standards recom-
mends that a program not base its behavior upon its name. One reason we see is that
administrators often install the GNU version of a utiliry alongside the standard ones
on commercial Unix systems, using a g prefix: gmake, gawk, and so on. If such programs
expect only the standard names, they'll fail when run with a different name.
Also, today, disk space is cheap; if two almost identical programs can be built from
the same source code, it's better to do it that way, using #ifdef or what-have-you. For
example, grep and egrep share considerable code, but the GNU version builds two
separate executables.
• The umask setting; see Section 4.6, "Creating Files," page 106.
• The current working directory; see Section 8.4.1, "Changing Directory: chdir ( )
and fchdir () ," page 256.
• The root directory; see Section 8.6, "Changing the Root Directory: chroot ( ) ,"
page 276.
• The current nice value.
• The process ID and parent process ID.
• The process group ID; see Section 9.2, " Process Groups," page 312.
• The session ID and the controlling terminal; for both, see Section 9.2.1 , "Job
Control Overview, " page 312.
• The process signal mask and any pending signals, as well as any unexpired alarms
or timers (not discussed yet; see Chapter 10, "S ignals, " page 347).
• The real user ID and group IDs and the supplemental group se t. The effective
user and group IDs (and thus the saved set-user and set-group IDs) can be set by
the setuid and setgid bits on the file being exec'd. (No ne of this has been discussed
yet; see Chapter 11, "Permissions and User and Group ID Numbers," page 403).
• File locks remain in place (also not discussed yet; see Section 14.2, "Locking Files,"
page 531).
• Accumulated CPU times for the process and its children don't change.
After an exec, signal disposition changes; see Section 10.9, "Signals Across fork ()
and exec ( ) ," page 398 , for more information.
All open files and directories remain open and available after the exec. This is how
programs inherit standard input, output, and error: They're in place when the program
starts up.
Most of the time, when yo u fork and exec a separate program, you don't want it to
inherit anything but file descriptors 0, 1, and 2 . In this case, you can manually close
all other open files in the child, after the fork but before the exec. Alternatively, yo u
can mark a file descriptor to be automatically closed by the system upon an exec; this
latter option is discussed later in the chapter (see Section 9.4.3.1, "The Close-on-exec
Flag," page 329).
300 Chapter 9 • Process Managemem and Pipes
EXIT SUCCESS
The program exited with no problems. Zero can also be used to mean success.
EXIT_FAILURE
The program had some kind of problem.
In practice, using only these values is rather constraining. Instead, you should pick
a small set of return codes, document their meanings, and use them. (For example, 1
for command-line option and argument errors, 2 for I/O errors, 3 for bad data errors,
and so on.) For readability, it pays to use #defined constants or an enum for them.
Having too large a list of errors makes using them cumbersome; most of the time the
invoking program (or user) only cares about zero VS. nonzero.
When the binary success/failure distinction is adequate, the pedantic programmer
uses EXIT_S UCCESS and EXIT_FAILURE. Our own style is more idiomatic, using the
explicit constants 0 or 1 with return and exi t ( ) . This is so common that it is learned
early on and quickly becomes second natute. However, you should make your own
decision for your own projects.
9.1 Process Crearion and M anagemenr 301
I
;~\ NOTE Only the least-significant eight bits of the value are available to the
! parent process. Thus, you should use values in the range 0-255 . As we' ll see
shortly, 126 and 1 2 7 have a conventional meaning (above and beyond plain
_ "unsuccessful "), to which your programs should adhere.
%
hl
"!~ Since only the least-significant eight bits matter, you should never use a
, negative exit status. When the last eight bits are retrieved from small negative
jl~ numbers, they become large positive values! (For example, -1 becomes 255 ,
I
ffi and -5 becomes 251 .) We have seen C programming books that get this
I wrong-don 't be misled.
The 1999 C standard indicates that when main () returns by falling off the end, the
behavior is as if it had returned o. (This is also true for C++; however, the 1989 C
standard leaves this case purposely undefined.) In all cases, it's poor practice to rely on
this behavior; one day you may be ptogramming for a system with meager C runtime
support or an embedded system, or somewhere else where it will make a difference. (In
general, falling off the end of any non-void function is a bad idea; it can only lead to
buggy code.)
The value returned from main () is automatically passed back to the system, from
which the parent can recover it later. We describe how in Section 9.l.6.1, "Using
POSIX Functions: wa i t () and wa i tp i d ( ) ," page 306.
I NOTE On GNU/ Linux systems, the e99 compiler-driver command runs the
compiler with the appropriate options such that the return value when falling
"I:;;
The following program does no useful work, but it does demonstrate how
atex i t () works:
9. 1 Process Crea[ion and M anage mem 303
/ *
* The callbac k f unc tions here just answer roll call .
* In a real appl ica tion, they would do more .
*/
As the example demonstrates, functions registered with atexi t () run in the reverse
order in which they were registered: most recent one first. (This is also termed last-in
first-out, abbreviated LIFO .)
POSIX defines the _ exi t () function. Unlike exi t ( ) , which invokes callback
functions and does < s tdi o . h> cleanup, _exi t () is the "die immediately" function:
#include <unistd . h> POSIX
T he status is given to the system, just as for exi t ( ) , but the process terminates
immediately. The kernel still does the usual cleanup: All open files are closed, the
memory used by the address space is released, and any other resources the process was
using are also released.
304 Chapter 9 • Process Management and Pipes
/* p a rent con ti n u e s * /
The e rrno test and exit values follow conventions used by the POSIX shell. If a re-
quested program doesn't exist (ENoENT- no entry for it in a directory), then the exit
value is 127 . Otherwise, the file exists bur couldn't be exec'd for some other reason, so
the exit status is 1 2 6 . It's a good idea to follovv this convention in your own
programs too.
Briefly, to make good use of exit ( ) and atexi t () , you sh ould do the following:
• D efine a small set of exit status values that your program will use to communicate
information to its caller. Use #define d constants or an enum for them in
yo ur code.
• D ecide ifhaving callback functions for use wi th atexi t ( ) makes sense. Ifit does,
register them in main () at the appropriate point; for example, after parsing options,
and after initializing whatever data structures the callback functions are supposed
to clean up. Remember that the function s are called in LIFO (last-in first-our)
order.
• Use exi t () everywhere to exit from the program when something goes wrong,
and exiting is the correct action to take. Use the error codes that you defined.
9.1 Process Crearion and Managemenr 305
• An exception is main ( ), for which you can use return if you wish. Our own
style is generally to use exit () when there are problems and 'return 0' at the
end of main () if everything has gone well.
• Use _exi t () or _Exi t () in a child process if exec () fails.
2 We are not making this up. The terminology is indeed rather morbid, but such was the original Unix designers'
sense of humor.
306 Chapter 9 • Process M anagement and Pipes
wai t ( ) waits for any child process to die; the information as to how it died is returned
in *s t atus. (We discuss how to interpret *s tatu s shortly.) The return value is the
PID of the process that died or -1 if an error occurred.
If there is no child process, wai t () returns - 1 with errno set to ECH I LD (no child
process). Otherwise, it waits for the first child to die or for a signal to come in.
The wai tpid () function lets you wait for a specific child process to exit. It provides
considerable flexibility and is the preferred function to use. It too returns the PID of
the process that died or -1 if an error occurred. The arguments are as follows:
pi d_ t p i d
The value specifies which child to wait for , both by real p i d and by process group.
The pid value has the following meanings:
pid <-1 Wait for any child process with a process group ID equal to the
absolute value of pid.
pi d =-1 Wait for any child process. This is the way wa i t () works .
pid = 0 Wait for any child process with a process group ID equal to that
of the parent process's process group .
p i d> 0 Wait for the specific process with the PID equal to pid.
i n t *status
This is the same as for wai t ( ) . <sys /wa i t. h > defines various macros that inter-
pret the value in * s t a tus, which we describe soon .
int op t ions
This should be either 0 or the birwise OR of one or more of the following flags:
9.1 Process Crea[ion and Managemem 307
WNOHANG
If no child has exited, return immediately. T hat way yo u can check peri odi-
cally to see if any children have died. (Such periodic checking is known as
polling for an event.)
WUNTRACED
Return informatio n about a child process that has stopped but that h asn' t
exited yet. (For example, with job control.)
WCONTINUED
(XSI.) Return information about a child process that has continued if the
status of the child has not been reported since it changed. This tOo is for job
contro l. This flag is an XSI extension and is not available under GNU/Linux.
Multiple m acros work on the filled-in *status value to determine what happened.
T hey tend to come in pairs: one m acro to determine if so mething occurred, and if that
macro is true , one or m ore m acros that retrieve the detai ls. The macros are as follows:
WIFEXITED(status)
This macro is nonzero (true) if the process exited (as opposed to changing state).
WEXITSTATUS(status)
This macro gives the exit status; it equals the least-significant eight bits of the
value passed to exi t () or returned fro m main ( ) . You should use this macro only
if WIFE XI TED (status) IS true.
WIFSIGNALED(status)
This macro is nonzero if the process suffered death-by-signal.
WTERMSIG(status)
This macro provides the signal number that terminated the process. You should
use this macro only if WIFSIGNALED(status) is true.
WIFSTOPPED(status)
This macro is nonzero if the process was stopped.
WSTOPSIG(status)
This macro provides the signal number that stOpped the process. (Several signals
can stop a process.) You should use this macro only if WIFSTOPPED (s ta tus) is
308 Chapter 9 • Process Managemem and Pipes
true. Job control signals are discussed in Section 10.8.2, "Job Control Signals,"
page 383.
WIFCONT lNUED(sta tus)
(XSI.) This macro is nonzero if the process was continued. There is no correspond-
ing WCONTSIG () macro, since only one signal can cause a process to continue.
Note that this macro is an XSI extension. In particular, it is not available on
GNU/Linux. Therefore, if you wish to use it, bracket your code inside
'#ifdef WIFCONTINUED ... #endif' .
WCOREDUMP (status )
(Common.) This macro is nonzero if the process dumped core. A core dump is
the memory image of a running process created when the process terminates. It
is intended for use later for debugging. Unix systems name the file core , whereas
GNU/Linux systems use core .pid, where pid is the process ID of the process
that died. Certain signals terminate a process and produce a core dump
automatically.
Note that this macro is nonstandard. GNU/Linux, Solaris, and BSD systems
support it, but some other Unix systems do not. Thus, here too, if you wish to
use it, bracket your code inside '# ifdef WCOREDUMP ... #endif'.
Most programs don 't care why a child process died; they merely care that it died,
perhaps noting if it exited successfully or not. The GNU Coreutils in stall program
demonstrates such straightforward use of f ork ( ), exec lp ( ), and wai t ( ). The -s
option causes install to run the strip program on the binary executable being in-
stalled. (strip removes debugging and other information from an executable file. This
can save considerable space, relatively speaking. On modern systems with multi-gigabyte
disk drives, it's rarely necessary to strip executables upon installation.) Here is the
strip () function from install . c:
5 13 / * Strip the symbol table from the fi l e PATH.
5 14 We could dig the magic numbe r out of the file first to
515 determ ine whether to strip it, but the header files and
516 magic numbers vary so much from system to system that making
517 it portable would be very difficult. Not worth the ef fort. * /
518
9.1 Process C rearion and Managemenr 309
5 19 static void
520 strip ( const char *path)
521
522 int status;
523 pid_t pid = fork ();
524
525 switch (pid)
526
527 case -1 :
528 error (EXIT_FAILURE, errno, _ ( " fork system call failed"));
529 break;
530 case 0 : / * Child . * /
53 1 execlp ( "strip", "strip", pach, NULL ) ;
532 error ( EXIT_FAILURE, errno, _ ( "cannot run strip " ));
533 break;
534 default : / * Parent . * /
535 / * Parent process . * /
536 while (pid I = wait ( &status)) /* Wait for kid to finish . * /
537 / * Do nothing . * / ;
538 if ( status )
539 error ( EXIT_FAILURE, 0, _("strip failed" )) ;
540 break;
541
542
Line 523 calls f o r k ( ) . The swi tch statement then takes the correct action for error
return (lines 527-529) , child process (lines 530-533), and parent process (lines
534-539).
The idiom on lines 536-537 is common; it waits until the specific child of interest
exits. wai t ( ) 's return value is the PID of the reaped child. This is compared with that
of the forked child. s tatus is unused other than to see if it's nonzero (line 538), in
which case the child exited unsuccessfully. (The test, while correct, is coarse but simple.
Atestlike ' i f (WIFEXITED (s tatus ) && WEXITSTATUS (sta t us ) != o)' wouldbe
more pedantically correct.)
From the description and code presented so far, it may appear that parent programs
must choose a specific point to wait for any child processes to die, possibly polling in
a loop (as insta ll. c does), waiting for all children. In Section 10.8.3, " Parental Su-
pervision: Three Different Strategies," page 385, we'll see that this is not necessarily
the case. Rather, signals provide a range of mechanisms to use for managing parent
notification when a child process dies.
310 Chapter 9 • Process Management and Pipes
The s ta tus variable is the same as for wai t () and wai tpid ( ) . All the macros de-
scribed earlier (WIFEXITED ( ) , etc. ) can also be used with it.
The options value is also the same as for wai tpid ( ) : either 0 o r the bitwise OR
of one or both of WNOHANG and WUNTRACED .
wai t 3 ( ) behaves like wai t ( ) , retrieving information about the first available zombie
child, and wai t4 () is like wai tpid ( ) , retrieving information about a particular process.
Both return the PID of the reaped child, - 1 on error, or 0 if no process is available and
WNOHANG was used. The pid argument can take on the same values as the pid argument
for wai tpid ( ) .
The key difference is the struc t rusage pointer. If not NULL, the system fills it in
with information about the process. This strucrure is described in POSIX and in the
getrusage(2) manpage:
struc t rusage {
struc t timeval ru_utime; /* user time used * /
struct timeval ru_stime; /* system time u sed * /
long ru _maxrSSi /* maximum resident set size * /
long ru _ixr ss; / * integral shared memory size * /
long ru_idrss ; / * integral unshared data size * /
long ru _isrs si / * integral unshared stack size * /
long ru_minflt; / * page reclaims * /
long ru_majflt; / * page faults * /
long ru_nswap; / * swaps * /
long ru_inblock; /* block inpu t operations * /
long ru_ oublock; /* block output operations * /
long ru_msgsnd; /* messages sent */
long ru _ffisgrcvi /* messages received */
long ru_nsignals; /* signals received */
long ru _nVCSWi / * voluntary context switches * /
long r u_nivcswi / * involuntary context switches * /
} ;
9.1 Process Creation and Managemenr 311
Pure BSD systems (4.3 Reno and later) support all of the fields. Table 9.2 describes
the availabiliry of the various fields in the struct rusage for POSIX and Linux.
TABLE 9.2
Availability of struct rusage fields
ru_majflt ~2.4
Only the fields marked "POSIX" are defined by the standard. While Linux defines
the full structure, the 2.4 kernel maintains only the user-time and system-time fields.
The 2.6 kernel also maintains the fields related to context switching. 3
The fields of most interest are ru_utime and ru_stime, the user and system CPU
times, respectively. (User CPU time is time spent executing user-level code. System
CPU time is time spent in the kernel on behalf of the process.)
These two fields use a struct timeval, which maintains time values down to mi-
crosecond intervals. See Section 14.3.1 , "Microsecond Times: gettimeofday() ,"
page 544, for more information on this structure.
In 4.2 and 4.3 BSD, the status argument to wai t () and wai t3 () was a union
wait. It fit into an int and provided access to the same information as the modern
WIFEXITED () etc. macros do , but through the union' s members. Not all members
were valid in all situations. The members and their uses are described in Table 9.3.
POSIX doesn't standardize the union wait, and 4.4 BSD doesn't document it,
instead using the POSIX macros. GLIBC jumps through several hoops to make old
code using it continue to work. We describe it here primarily so that you'll recognize
it if you see it; new code should use the macros described in Section 9 .l.6.1 , "Using
POSIX Functions: wai t () and wai tpid ( ) ," page 306.
3 Do ubl e-check rhe getrusage(2) manpage if yo u r kernel is newer, because rhis behavior may have changed.
3 12 Chapter 9 • Process Management and Pipes
TA BLE 9.3
Th e 4.2 a nd 4 .3 BSD union wai t
process is designated the session leader; this is normally a shell that can do job control,
such as Bash, pdksh , z sh, or ksh9 3 .4 W e refer to such a shell as a job control sheLl.
Each job started by a job control shell, be it a single program or a pipeline, receives
a separate process group identifier. That way, the shell can manipulate the job as a single
entity, although it may have multiple processes.
The controlling terminal also has a process group identifier associated with it. When
a user types a special character such as CTRL-C for "interrupt" or CTRL-Z for "stop,"
the kernel sends the given signal to the processes in the terminal's process group.
The process gro up whose process group ID is the same as that of the controlling
terminal is allowed to read from and write to the terminal. This is called the foreground
process group. (It also receives the keyboard-generated signals.) Any other process groups
in the session are background process groups and cannot read from or write to the terminal;
they receive special signals that sto p them if they try.
Jobs move in and out of the foreground , not by a change to an attrib ute of the job,
but rather by a change to the controlling terminal's process group. It is the job control
shell that makes this change, and if the new process gtoup was stopped, the shell co n-
tinues it by sending a "continue" signal to all members of the process gro up.
In days of yore, users often used serial terminals connected to modems to dial in to
centralized minicomputer Unix systems. When the user closed the co nnection (hung
up the phone), the serial line detected the disco nnection and the kernel sent a "hangup"
signal to all processes connected to the terminal.
This concept remains: If a hang up occurs (serial hardware does still exist and is still
in use), the kernel sends the hangup signal to the foreground process group. If the session
leader exits, the same thing happens.
An orphaned process group is one where, for every process in the group, that process's
parent is also in the group or the parent is in a different session. (This can happen if a
job control shell exits with background jobs running.) Running processes in an orphaned
process gro up are allowed to run to completion. If there are any already stopped pro-
cesses in an orphaned process group when it becomes orphaned, the kernel sends those
4 Well, csh and tcsh can be included in thi s category roo, bur we prefer Bou rn e-style shell s.
314 Chapter 9 • Process Management and Pipes
processes a hangup signal and then a continue signal. This causes them to wake up so
that they can exit instead of remaining stopped forever.
The getpgrp ( ) function returns the current process's process group ID . ge tpgid ()
is an XSI extension. It returns the process group ID of the given process p i d . A pid of
o means "the current process's process group. " Thus 'getpg id (O)' is the same as
' g e tpg rp () ' . For general programming, getpg rp () should be used.
4.2 and 4.3 BSD also have a getpgrp ( ) function, but it acts like the POSIX
getpg id () function, requiring a pid argument. Since modern sys tems support POSIX,
you should use the POSIX version in new code. (If you think this is confusing, you 're
right. Multiple ways to do the same thing are a normal result of design-by-committee,
since the committee feels that it must please everyone.)
The setpgrp ( ) function is simple: It sets the process group ID to be the same as
the process ID. Doing so creates a new process group in the same session, and the calling
process becomes the process group leader.
The s etpg id () function is intended for job control use. It allows one process to set
the process group of another. A process may change only its own process group ID or
the process group ID of a child process, and then only if that child process has not yet
done an exec. Job control shells make this call after the fork, in both the parent and the
child. For one of them the call succeeds, and the process group ID is changed. (Other-
wise, there's no way to guarantee the ordering, such that the parent could change the
9.3 Basic Imerprocess Communica[ion: Pipes and FIFOs 315
child's process group 10 before the child execs. If the parent's call succeeds first, it can
move on to the next task, such as manipulating other jobs or the terminal.)
With setpg i d ( ) , pgid must be an existing process group that is part of the current
session, effectively joining pid to that process group . Otherwise, pgid must be equal
to pid, creating a new process group .
There are some special case values for both p i d and pgid:
pid = 0 In this case, setpgid () changes the ptOcess group of the calling process
to pgid. It's equivalent to 'setpgid (getpid ( ), pgid) '.
pgid =0 This sets the process group 10 for the given process to be the same as its
PID . Thus , 'setpgid (pid, 0)' is the same as 'setpgid (pid, pid) '.
This causes the process with PID p i d to become a process group leader.
In all cases, session leaders are special; their PIO, process group 10, and session 10
values are all identical, and the process group 10 of a session leader cannot be changed.
(Session IDs are set with setsid () and retrieved with getsid ( ) . These are specialized
calls: see the setsid(2) and getsid(2 ) manpages.)
9 .3 .1 Pipes
Pipes manifest themselves as regular file descriptOrs. Without going to special lengths ,
you can't tell if a file descriptor is a file or a pipe. This is a feature; programs that read
standard input and write standard output don't have to know or care that they may be
communicating with another process. Should you need to know, the canonical way to
check is to attempt 'lseek ( f d, OL , S EEK_ CUR )' on the file descriptOr; this call at-
tempts to seek zero bytes from the current position, that is, a do-nothing operation. 5
This operation fails for pipes and does no damage for other files.
The argument value is the address of a two-element integer array. pipe () returns 0
upon success and -1 if there was an error.
If the call was successful, the process now has two additional open file descriptors.
The value in filedes [0] is the read end of the pipe, and filed es [1] is the write end.
(A handy mnemonic device is that the read end uses index 0, analogous to standard
input being file descriptor 0, and the write end uses index 1, analogous to standard
output being file descriptor 1.)
As mentioned, data written into the write end are read from the read end. When
you're done with a pipe, you close both ends with a call to close ( ). The following
simple program, c h09-pipedemo . c , demonstrates pipes by creating one, writing data
to it, and then reading the data back from it:
/ * ch09-pipedemo.c --- demonstrat e I/O with a pipe. * /
2
3 #in c1ude <stdio . h>
4 #inc1ude <e rrno . h>
5 #inc1ude <unistd . h>
6
7 / * main --- create a pipe, wri te t o it, and read fr om it . * /
8
9 int main(int argc , char **argv)
10
11 stati c const cha r mesg[ ] = " Don ' t Panic! " ; /* a fam ous message * /
12 char buf [BUFSIZ];
13 ssiz e_ t rcount, wcount;
14 int pipefd[2] ;
15 size_t 1 ;
16
17 i f (p i pe (pipefd ) < 0 ) {
18 fprintf ( stderr , "% s: pipe failed : %s\n", argv [ O] ,
19 strer r o r (errno )) ;
20 exit(l) ;
21
22
23 p r in tf( "Read end = fd %d, wri te e nd fd %d\n",
24 pipefd[O] , pipefd[l]);
25
9.3 Basic Imerprocess Co mmunicatio n: Pipes and FIFOs 317
26 1 = strlen(mesg);
27 if ((wcoun t=writ e(pipefd[l) , mesg, 1)) !=l ) (
28 fprintf(stderr , "%s: write failed : %s\n", argv[O),
29 strerror(errno)) ;
30 exit (1) ;
31
32
33 if (( rcount = read (pipe fd[O] , buf , BUFSIZ)) '= wcount)
34 fprintf(stderr, "%s : read failed : %s\n", argv[O),
35 strerror(errno) ) ;
36 e xi t (1) ;
37
38
39 buf[rcount) = ' \0' ;
40
41 printf("Read <%s> from pipe\n", buf);
42 (void) close(pipefd[O));
43 (void) close(pipefd[l));
44
45 return 0 ;
46
Lines 11-15 declare local variables; of most interest is mesg , which is the text that
will traverse the pipe.
Lines 17-21 create the pipe, with error checking; lines 23-24 print the values of the
new file descripcors (just to prove that they won't be 0,1, or 2 ).
Line 26 gets the length of the message, to use with wri te ( ) . Lines 27-31 write the
message down the pipe, again with error checking.
Lines 33-37 read the contents of the pipe, again with error checking.
Line 39 supplies a terminating zero byte, so that the read data can be used as a regular
string. Line 41 prints the data, and lines 42-43 close both ends of the pipe. Here's what
happens when the program runs:
$ ch 0 9 -p ipedemo
Read end = fd 3 , write end = fd 4
Read <Don't Panic!> from pipe
This program doesn' t do anything useful, but it does demonstrate the basics. Note
that there are no calls to op e n () or c r eat () and that the program isn' t using its three
inherited file descriptors. Yet the wr i te () and read () succeed, proving that the file
descriptors are valid and that data that go into the pipe do come out of it.6 Of course,
6 We're sure you weren 'r wo rried. Mer all , you pro bably use pipelines fro m rhe sh ell dozens of rimes a day.
318 Chapter 9 • Process Management and Pipes
had the message been too big, our program wouldn't have worked. This is because pipes
have only so much room in them, a fact we discuss in the next section.
Like other file descriptors, those for a pipe are inherited by a child after a fork and
if not closed, are still available after an exec. We see shortly how to make use of this
fact and do something interesting with pipes.
Conversely, if the consumer closes the read end, a wr i t e () to the write end
fails-drastically. In particular, the kernel sends the producer a "broken pipe" signal,
whose default action is to terminate the process.
Our favorite analogy for pipes is that of a husband and wife washing and drying
dishes together. One spouse washes the dishes, placing the clean but wet plates into a
dish drainer by the sink. The other spouse takes the dishes from the drainer and dries
them. The dish washer is the producer, the dish drainer is the pipe, and the dish dryer
is the consumer?
If the drying spouse is faster than the washing one, the drainer becomes empty, and
the dryer has to wait until more dishes are available. Conversely, if the washing spouse
is faster, then the drainer becomes full , and the washer has to wait until it empties out
before putting more clean dishes into it. This is depicted in Figure 9.3.
FIGURE 9.3
Synchronization of pipe processes
9.3.2 FIFOs
With traditional pipes, the only way for two separate programs to have access to the
same pipe is through file descriptor inheritance. This means that the processes must be
the children of a common parent or one must be an ancestor of the other.
This can be a severe limitation. Many system services run as daemons, disconnected
long-running processes. There needs to be an easy way to send data to such processes
(and possibly receive data from them). Files are inappropriate for this; synchronization
is difficult or impossible, and pipes can' t be created to do the job, since there are no
common ancestors.
To solve this problem, System III invented the notion of a FIFO. A FIFO, 8 or named
pipe, is a file in the filesystem that acts like a pipe. In other words, one process opens
the FIFO for writing, while another opens it for reading. Data then written to the FIFO
are read by the reader. The data are buffered by the kernel, not stored on disk.
Consider a line printer spooler. The spooler daemon controls the physical printers,
creating print jobs that print one by one. To add a job to the queue, user-level line-
printer software has to communicate with the spooler daemon. One way to do this is
for the spooler to create a FIFO with a well-known filename. The user software can
8 FIFO is an acronym for "first in first our. " This is the way pipes work.
320 Chapter 9 • Process Management and Pipes
then open the FIFO, write a request to it, and close it. The spooler sits in a loop ,
reading requests from the FIFO and processing them .
The mk fif o ( ) fun ction creates FIFO files:
#include <sy s / types.h> POSIX
#include <sys / s tat . h >
The p a t hname argument is the name of the FIFO file to create, and mode is the
permissions to give it, analogous to the second argument to c reat ( ) or the third argu-
m ent to open() (see Section 4.6, "Creating Files," page 106). FIFO files are removed
like any other, with remove ( ) or un l ink () (see Section 5. 1.5.1 , "Removing Open
Files, " page 127).
The GNU/Li n ux mkfifo(3) manpage points out that the FIFO must be open both
for reading and writing at the same time, before I/O can be done: "Opening a FIFO
for reading normally blocks until some other process opens the same FIFO for writing,
and vice versa." Once a FIFO file is opened, it acts like a regular pipe; that is, it's just
another file descriptor.
The mkf ifo command brings this system call to the command level. This makes it
easy to show a FIFO file in action:
$ mkfifo afifo Create a FIFO file
$ ls -1 afifo Show type and permissions, note leading 'p'
prw- r--r- - 1 arnold devel o Oct 23 15 :4 9 afif o
$ cat < afifo &: Start a reader in the background
[1 J 22100
$ echo It was a Blustery Day > afifo Send data to FIFO
$ I t was a Bl u stery Day Shell prompts, cat prints data
Press ENTER to see job exit status
[l J+ Done cat <a fi f o cat exited
in t dup ( in t old fd ) ;
i n t dup2 (int old fd, i n t newfd) ;
Remember Figure 9.1, in which two processes shared pointers to the same file entry
in the kernel's file table? W ell, dup () and dup2 () create the same situation, within a
single process. See Figure 9.4.
PID 42
Descriptor tables ,
per process:
I I I
Boo kkeepi ng r Bookkeeping r Boo kke eping r
Fi le table: ~~ -- ~~~~ ~---~- ------- ---~ ------------1- ~
o ffset [ Offset [ Offset [
j
File contents:
FIGURE 9.4
File descriptor sharing after 'dup2 ( 1, 3)'
In this figure, the process executed 'dup2 (1, 3)' to make file descriptor 3 a copy
of standard outp ut, file descriptor 1. Exactly as described before, the two descriptors
share the file offset for the open file.
322 Chapter 9 • Process Management and Pipes
In Section 4.4.2, "Opening and Closing Files," page 93 , we mentioned that open ( )
(and c reat () ) always returns the lowest unused integer file descriptor value for the file
being opened. Almost all system calls that return new file descriptors follow this rule,
not just open () and creat () . (dup2 () is an exception since it provides a way to get
a particular new file descriptor, even if it's not the lowest unused one.)
Given the "return lowest unused number" rule combined with dup ( ), it's now easy
to move a pipe's fil e descriptors into place as standard input and output. Assuming that
the current process is a shell and that it needs to fork two children to set up a simple
two-stage pipeline, here are the steps:
1. Create the pipe with pipe ( ) . This must be done first so that the two children
can inherit the open file descriptors.
2. Fork what we'll call the "left-hand child." This is the one whose standard output
goes down the pipe. In this child, do the following:
a. Use 'close(pipefd[O])' since the read end of the pipe isn't needed in
the left-hand child.
b. Use' c los e (1 ) , to close the original standard output.
c. Use 'dup (pipefd [1] ), to copy the write end of the pipe to file descriptor 1.
d. Use 'close (pipefd [1] )' since we don't need two copies of the open
descriptor.
e. Exec the program to be run.
3. Fork what we'll call the "right-hand child." This is the one whose standard input
comes from the pipe. The steps in this child are the mirror image of those in
the left-hand child:
a. Use 'close (pipefd [1] )' since the write end of the pipe isn't needed in
the right-hand child.
b. Use 'c l o se (0 ) ' to close the original standard input.
c. Use 'dup (pipefd [ 0] )' to copy the read end of the pipe to file descriptor o.
d. Use 'close (pipefd [0] )' since we don't need two copies of the open
descriptor.
e. Exec the program to be run.
9.4 File Descriptor M anagement 323
4. In the parent, close both ends of the pIpe: 'close (p ipefd (0) ) ;
close(p ipefd[l) )' .
5. Finally, use wai t () in the parent to wait for both children to finish.
Note how important it is to close the unused copies of the pipe's file descriptors. As
we pointed out earlier, a file isn't closed until the last open file descriptor for it is closed.
This is true even though multiple processes share the file descriptors. Closing unused
file descriptors matters because the process reading from the pipe won 't get an end-of-
file indication until all the copies of the write end have been closed.
In our case, after the two children are forked, there are three processes, each of which
has copies of the two pipe fil e descriptors: the parent and the two children. The parent
closes both ends since it doesn't need the pipe. The left-hand child is writing down the
pipe, so it has to close the read end. The right-hand child is reading from the pipe, so
it has to close the write end. This leaves exac tly one copy of each file descriptor open.
When the left-hand child finishes, it exits. The system then closes all of its file de-
scriptors. When that happens , the right-hand child finally receives the end-of-file
notification, and it too can then finish up and exit.
The following program, ch09-pipeline. c, creates the equivalent of the following
shell pipeline:
$ echo hi there I sed s/hi/hello/g
hello there
Lines 57-68 are the code for the left-hand child. The procedure follows the steps
given above to close the unneeded end of the pipe, close the original standard output,
dup () the pipe's write end to 1, and then close the original write end. At that point,
line 66 calls exe cvp ( ) , and if it fails, line 67 calls _exi t ( ) . (Remember that line 67
is never executed if execvp () succeeds.)
Lines 72-83 do the similar steps for the right-hand child. Here's what happens when
lt runs:
$ ch09-pipeline Run the program
left child terminated, status : 0 Left child finishes before output (I)
hello there Output from right child
right child terminated, status : 0
$ chO 9 -pipeline Run the program again
hello there Output from right child and
right child terminated, status : 0 Right child finishes before left one
left child terminated, status : 0
326 Chapter 9 • Process Management and Pipes
Note that the order in which the children finish isn't deterministic. It depends on
the system load and many other factors that can influence process scheduling. You
should be careful to avoid making ordering assumptions when you write code that
creates multiple processes, particularly the code that calls one of the wai t () family
of functio ns.
The whole process is illustrated in Figure 9.5.
Figure 9.5 (a) depicts the situation after the parent has created the pipe (lines 22-25)
and the two children (lines 27-37).
Figure 9.5 (b) shows the situation after the parent has closed the pipe (lines 39-40)
and started to wait for the children (lines 42- 50). Each child has moved the pipe into
place as standard output (left child, lines 61-63) and standard input (lines 76-78).
Finally, Figure 9.5 (c) depicts the si tuation after the children have closed off the
original pipe (lines 64 and 79) and called execvp ( ) (lines 66 and 81).
9 On GNU/Linux systems, /dev / fd is a symbolic link to /proc/ sel fI fd, bur since / dev / f d is th e common
place, that 's what you should use in your code.
9.4 File Descripror Managemenr 32 7
/
fork( ) fork () Pipe is shared
among parent
I
ch0 9- pipeline
\
ch O9-pipeline
and both children
(b) close ( ) __ fd 3 fd 4
I 1 o •~
\
ch09-p ipeline
Ch ildren move pipe
to stdout (left-hand child)
and stdin (right-hand child),
close original pipe Ids
l C10 Se ()/ d UP() cl ose () /du p ()
/
wait( ) wait () Children ca ll exec ( ),
programs run
echo hi there
I 1
\
sed s / hi / he llo / g hello there
execvp( ) execvp ()
FIGURE 9 .S
Parent creating a pipeline
328 Chapter 9 • Process Managemenr and Pipes
No messy temporary files to remember to dean up. For example, the following command
shows that our home directory is a symbolic link to a different directory:
$ diff < (pwd) < (/bin/pwd)
lcl
< / horne / arnold / work / prenha ll / progex
The plain pwd is the one built in to the shell: It prints the current logical pathname
as managed by the shell with cd. The / bin / pwd program does a physical filesystem
walk ro print the pathname.
How does process substitution work? The shell creates the subsidiary commands 10
('pwd' and' / bin / pwd') . Each one's output is connected to a pipe, with the read end
open on a new file descriptor for the main process ('diff'). The shell then passes the
names o/files in /dev / f d to the main process as the command-line argument. We can
see this by turning on execution tracing in the shell:
$ set -x Turn on execution tracing
$ diff < (pwd) < (/bin/pwd) Run command
+ diff / dev /f d / 63 / dev /f d / 62 Sh ell trace: main program, note arguments
++ pwd Shell trace: subsidiary programs
++ / bin /pwd
lcl Output from diff
< /horne/arnold /work/pr enhall/ progex
r :~::
pwd
• f d 1 r fd 63
!
1
:':,<::/'
Pipe
Pipe
r
/bi n/pwd fd 1 r fd 62
!
FIGURE 9.6
Process substitution
In other words, it takes at least two arguments; based on the second argument, It
may take a third one .
The last form, in which the third argument is a pointer to a s tru ct fl ock, is for
doing file locking. File locking is a large top ic in it own right; we delay discussion until
Section 14.2, "Locking Files," page 53l.
int j;
The solution is the close-on-exec flag. This is an attribute of the file descriptor itself,
not the underlying open file. When this flag is set, the system automatically closes the
file when the process does an exec. By setting this flag as soon as you open a file, you
don't have to worry about any child processes accidentally inheriting it. (The shell au-
tomatically sets this flag for all file descriptors it opens numbered 3 and above.)
The c md argument has rwo values related to the close-on-exec flag:
F_GETFD
Retrieves the file descriptor flags. The return value is the setting of all the file de-
scriptor flags or - 1 on error.
F_SETFD
Sets the file descriptor flags to the value in arg (the third argument). The return
val ue is 0 on success or - 1 on error.
At the moment, only one "file descriptor flag" is defined: FD_C LOEXEC. This symbolic
constant is a POSIX invention, 11 and most code uses a straight 1 or 0 :
if (f c ntl( fd, F_SETFD, 1 ) < 0) ... / * set cl ose-on -ex ec , handle any er r o rs * /
H owever, the POSIX definitio n allows for future extensio n , and thus the correct
way to write such code is more along these lines:
in t fd ;
long fd_flags;
11 The POSIX standard pu rposely does not give it a value. However, for old code to continue to work, the only
value any implementation could sensibly use is 1.
9.4 File Descripwr Management 331
1M NOTE The close-on-exec flag is a property of the descriptor, not the underlying
.' file . Thu s, the new descriptor returned by dup () or dup2 ( ) (o r by fcntl ()
~: with F _DUPD, as we ' re about to see) does not inherit the close-on-exec flag
I setting of the original descriptor. If you want it set for the new fi Ie descriptor
I also, you must rememb er to do it yo urs elf. This behavior makes sense: If yo u've
I just called dup (), copying one end ofa pipe to 0 or 1, yo u don 't want the
~ system to close it for you as soon as the process does an exec!
W
You can simulate the behavior of dup ( ) , which returns the lowest free fil e descriptor,
by using 'fcntl (o l d_ fd, F _ DUPFD, 0 ) ' .
If you remember that file descriptors are just indexes into an internal table, under-
standing how this function works should be clear. The third argument merely provides
the index at which the kernel should start its search for an unused file descriptor.
Whether to use f cntl ( ) with F _ DU PFD or dup () or dup 2 ( ) in your own code is
largely a matter of taste. All three APIs are part of POSIX and widely supported. We
have a mild preference for dup () and dup 2 () since those are more specific in their ac-
tion, and thus are more self-documenting. But because all of them are pretty simple,
this reasoning may not convince you.
TABLE 9.4
o _ xx flags for open () , crea t () and fcntl ()
Besides setting the various flags initially with open ( ) , you can use fcn tl () to retrieve
the current settings, as well as to change them . This is d one with the F _GETFL and
F _ SETFL values for cmd, respectively. For example, you might use these commands to
change the setting of the non blocking flag, O_NONBLOCK, like so:
disk files . It can also apply to certain devices, such as terminals, and to network connec-
tions, both of which are beyond the scope of this volume.
The O_NONBLOCK Bag can be used with open () to specify nonblocking I/O, and it
can be set or cleared with fcntl () . For open () and read ( ), nonblocking I/O is
straightforward.
Opening a FIFO with O_NONBLOCK set or clear displays the following behavior:
As described for regular pipes, a read () of a FIFO that is no longer open for writing
returns end-of-file (a return value of 0) . The O_NONBLOCK Bag is irrelevant in this case.
Things get more interesting for an empty pipe or FIFO: one that is still open for writing
but that has no data in it:
read (fd. buf. count), and O_NONBLOCK clear
The read () blocks until more data come into the pipe or FIFO.
read (fd. buf. count ) , and O_NONB LOCK set
The read () returns -1 immediately, with errno set to EAGAIN.
Besides the modes themselves, the O_ACCMODE symbolic constant is a mask you can
use to retrieve the file access modes from the return value:
fd_flags = fcntl(fd, F_ GETFL);
POSIX requires that O_ RDONL Y , O_RDWR, and O_ WRONLY be bitwise distinct; thus,
code such as just shown is guaranteed to work and is an easy way to determine how an
arbitrary file descriptor was opened.
By using F _ S ETF L, you can change these modes as well, although permission
checking still applies. According to the GNU/Linux fcntl(2) manpage, the O_APPEND
flag cannot be cleared if it was used when the file was opened.
12 Well, we' re ignorin g rhe id ea rhar rwo spouses mighr wanr (0 ralk and enj oy each orhe r's co mpany.
9.4 File Descripwr Managemenc 335
in any case you should use the symbolic constant and not expect PIP E_BUF to be the
same value across different systems .
In all cases, for pipes and FIFOs, a wr i t e () appends data to the end of the pipe.
This derives from the fact that pipes don 't have file offsets: They aren't seekable.
Also in all cases, as mentioned, writes of up to P I PE_ BUF are atomic: The data are
not interleaved with the data from other writes. Data from a write of more than
PIPE_BUF bytes can be interleaved with the data from other writes on arbitrary bound-
aries. This last means that yo u cannot expect every PIP E_BUF sub chunk of a large
amount of data to be written atomically. The O_NONBLOC K setting does not affect
this rule.
As with re ad ( ) , when O_NONBLOCK is not set, wri t e () blocks until all the data
are wntten.
Things are most complicated with O_NONBLOCK set. For a pipe or FIFO, the behavior
is as follows:
space ~ nbytes space < n bytes
nbyt es ::; PIPE_BUF wr i te () succeeds wri te () returns - l/EAGAIN
space> 0 space = 0
nbytes > PIPE_ BUF writ e () writes what it can wr ite () rerurns -l /EAGA IN
For nonpipe and non-FIFO files to which O_NONBLOCK can be applied, the behavior
is as follows:
space> 0 wri t e () writes what it can.
space = 0 write () returns -l/EAGAIN.
Although there is a bewildering array of behavior changes based on pipe/nonpipe,
O_NONBLOCK set or clear, the space available in the pipe, and the size of the attempted
write, the rules are intended to make programming straightforward:
• When there's room, as much data will be written as can be, so that eventually all
the data can be written out.
In summary, if you intend to use nonblocking I/O, any code that uses wri te () has
to be able to handle a short write, where less than the requested amount is successfully
written. Robust code should be written this way anyway: Even for a regular file it's
possible that a disk could become full and that a wr i te () will only partially succeed.
Furthermore, you should be prepared to handle EAGAI N, understanding that in this
case write ( ) failing isn't necessarily a fatal error. The same is true of code that uses
nonblocking I/O for reading: recognize that EAGAIN isn't fatal here either. (It may pay,
tho ugh, to count such occurrences, giving up after too many.)
Nonblocking I/O d oes complicate your life, n o doubt about it. But for many appli-
cations, it's a necessity that lets you get your job done. Consider the print spooler again .
The spooler daemon can' t afford to sit in a blocking r ead () on the FIFO file to which
incoming jobs are submitted. It has to be able to monitor running jobs as well and
possibly periodically check the status of the printer devices (for example, to make sure
they have paper or aren ' t jammed).
TABLE 9.S
f c ntl ( ) summary
The file creation, status, and access flags are copied when a file descriptor is duplicated.
The close-on-exec flag is not.
9.5 Example: Two-Way Pipes in gawk 337
fd N
r
f fd 0 - - -......~ database engine
I r
- - -......~ fd 1 f fd M
Pipe Pipe
FIGURE 9.7
Korn shel l coprocess
In regular awk, pipes to or from subprocesses are one-way: There's no way to send
data to a program and read a response back from it-you have to use a temporary file.
GNU awk (gawk) borrows the' I &' notation from ksh to extend the awk language:
print "a command " 1& "database engine" Start coprocess, write to it
"database engine" 1& getline db_r esponse Read from coprocess
gawk also uses the ' I &' notation for TCP/IP sockets and BSD portals, which aren't
covered in this volume. The following code from io. c in the gawk 3.1.3 distribution
13 There is only one defaulr coprocess (accessible with 'read -p' and 'print -p') ar a rime. Shell scriprs can use
rhe exec command wirh a special redirecrio n norarion co move rh e co process's file descripcors co specific numbers.
Once rhis is done, ,Ulorh er co process can be srarred.
338 Chapter 9 • Process Management a nd Pipes
is the part of the t wo_way_open ( ) function that sets up a simple coprocess: It creates
two pipes, forks the child process , and does all the file descriptor manipulation. We
h ave omitted a number of irrelevant pieces of code (this function is bigger than it
sh o uld be):
1561 static int
1562 two_way_open(const char *str, struct redirec t *rp )
1563
The first step is to create the two pipes. p toc is "parent to child," and ctop is "child
to parent. " Bear in mind as yo u read the code that index 0 is the read end and that index
1 is the write end.
Lines 1836- 1837 create the first pipe, pt oc . Lines 1839-1845 create the second
one, closing the first one if this fails. This is important. Failure to close an open but
unused pipe leads to file descriptor leaks. Like memory, file descriptors are a finite re-
source, and once you run out of them, they're gone. 14 The same is true of open files:
Make sure that all your error-handling code always closes any open files or pipes that
you won't need when a failure happens.
save_errno saves the errno values as set by pipe ( ) , on the off chance that close ( )
might fail (line 1840). errno is then restored on line 1843.
14 W ell, you can close m em , obviously. Bur if you don'r know rhey're open, rh en rh ey' re losr jusr as effecriveiy as
memory rh rough a m emory leak.
9. 5 Example: Two-Way Pipes in gawk 339
Lines 1906-1912 fork the child, this time closing both pipes if fork() failed. Here
too, the original errno value is saved and restored for later use in producing a diagnostic.
1914 if (pid == 0) ( 1* child * 1
1915 if (c1ose(l) == -1)
1916 fatal(_('close of stdout in ch i ld failed (%5) '),
1917 strerror(errno));
1918 if (dup(ctop[l]) != 1)
1919 fatal(_('moving pipe to stdout in child failed (dup : %5) ' ) ,
strerror(e rrno));
1920 if (close (0) == -1)
1921 facal(_('close of stdin i n child failed (% 5 ) ' ) ,
1922 strerror(errno) ) ;
1923 if (dup(ptoc[O]) != 0)
1924 fatal( _ ('moving pipe to stdin in child failed (dup : %5) '),
strerror(errno)) ;
1925 if ( close(ptoc[O]) == -1 II close(ptoc[l]) == -1
1926 II close(ctop[O]) == - 1 II close (ctop[l]) == -1 )
1927 fatal(_('close of pipe failed (%s) '), strerror(errno)) ;
1928 1 * stderr does NOT get dup'ed onto child's stdout * 1
1929 execl('/bin/sh ', 'sh', '-c', str, NULL);
1930 _exit(errno == ENOENT ? 127 : 126);
1931
Lines 1914-1931 handle the child's code, with appropriate error checking and
messages at each step. Line 1915 closes standard output. Line 1918 copies the child-
to-parent pipe write end to 1. Line 1920 closes standard input, and line 1923 copies
the parent-to-child read end to o. If this all works, the child's standard input and output
are now in place, connected to the parent.
Lines 1925-1926 close all four original pipe file descriptors since they're no longer
needed. Line 1928 reminds us that standard error remains in place. This is the best
decision, since the user will see errors from the coprocess. An awk program that must
capture standard error can use the ' 2>&1' shell notation in the command to redirect
the coprocess's standard error or send it to a separate file.
Finally, lines 1929-1930 attempt to run execl ( ) on the shell and exit appropriately
if that fails.
340 Chapter 9 • Process Management and Pipes
The first step in the parent is to manage the input end, from the coprocess. The r p
pointer points to a struct red irect, which maintains a field to hold the child's PID ,
a FILE * for output, and an IOBUF * pointer named iop. The I OBUF is a gawk internal
data structure for doing input. It, in turn, keeps a copy of the underlying file descriptor.
Line 1935 saves the ptocess ID val ue. Line 1936 allocates a new I OBUF for the given
file descriptor and command string. The third argument here is NULL: It allows the use
of a preallocated IOBUF if necessary.
If the allocation fails , lines 1937-1942 clean up by closing the pipes and sending a
"kill" signal to the child process to cause it to terminate. (The kill () function is de-
scribed in Section 10.6.7, "Sending Signals: kill () and kill pg ()," page 376.)
1946 rp ->fp = fdopen (ptoc [1] , "w" ) ;
1947 if ( r p - >fp == NULL) (
1948 iop_clos e(rp->iop) ;
1949 r p->iop = NULL;
1950 (v oid) close(ctop[O]);
195 1 (v o i d) close(ctop[l]);
1952 (v o i d) close(ptoc[O]) ;
195 3 (void) close(ptoc[l]);
1954 (v oid) kill(pid, SIGKI LL ) ; /* overkill? (pardon pun) */
1955
1956 return FALSE;
1957 }
Lines 1946-1957 are analogous. They set up the parent's output to the child, saving
the file descriptor for the parent-to-child pipe write end in a FILE * by means of
fdopen ( ) . If this fails, lines 1947-1957 take the same action as before: closing all the
pipe descriptors and sending a signal to the child.
From this point on, the write end of the parent-to-child pipe, and the read end of
the child-to-parent pipe are held down in the larger structures: the F ILE * and IOBUF ,
9. 6 Suggesred Reading 341
respectively. They are closed automatically by the regular routmes that close these
structures. However, two tasks remain:
1960 os_close_on_exec( ctop[OJ, str , "pipe" , "from") ;
196 1 os_ close_on_exec(ptoc[lJ, str , "pipe ", "from " ) ;
1962
1963 (v oid) clo s e (pt oc[O] ) ;
1964 (void ) clo se ( ct op[l ]) ;
1966
1961 re turn TRUE;
1968
1911
Lines 1960- 1961 set the close-on-exec flag for the twO descriptors that will remain
open. os_c lose_on_exec ( ) is a simple wrapper routine that does the job on Unix
and POSIX-compatible systems, but does nothing on systems that don 't have a close-
on-exec flag. This buries the portability issue in a single place and avoids lots of messy
#ifdefs throughout the code here and elsewhere in i o . c .
Finally, lines 1963-1964 close the ends of the pipes that the parent doesn't need,
and line 1967 returns TRUE, for success.
9.7 Summary
• New processes are created with fork ( ) . After a fork, both processes run the same
code, the only difference being the return value: 0 in the child and a positive PID
number in the parent. The child process inherits copies of almost all the parent's
attrib utes, of which the open files are perhaps the m ost important.
• Inherited shared file descriptors make possible much of the higher-level Unix se-
mantics and elegant shell control structures. This is one of the most fundamental
parts of the original Unix design. Because of descriptor sharing, a file isn't really
closed until the last open file descriptor is closed. This particularly affects pipes,
but it also affects the release of disk blocks for unlinked but still open files.
• The getpid () and getpp id () calls return the current and parent process ID
numbers, respectively. A process whose parent dies is reparented to the special
ini t process, PID 1. Thus, it 's possible for the PPID to change, and applications
should be prepared for this.
• The nice () system call lets you adjust your process's priority. The nicer you are
to other processes, the lower YOut priority, and vice versa. Only the superuser can
be less nice to other processes. On modern systems, especially single-user ones,
there's no real reason to change the nice value.
• The exec () system calls starts a new program running in an existing process. Six
different versions of the call provide flexibility in the setup of argument and envi-
ronment lists , at the cost of initial confusion as to which one is best to use. Two
variants simulate the shell's path searching mechanism and fall back to the use of
the shell to interpret the file in case it isn' t a binary executable; these variants
should be used with care.
• The new program's value for argv [0 1 normally comes from the filename being
executed, but this is only convention. As with fork ( ), a significant but not
identical set of attributes is inherited across an exec. Other attributes are reset to
reasonable default values.
• The atexi t () function registers callback functions to run in LIFO order when
a program terminates. The exi t ( ) ,_exi t ( ) , and _Exi t () functions all terminate
the program, passing a~ exit status back to the parent. exi t () cleans up open
FILE * streams and runs functions registered with atexi t ( ) . The other two
functio ns exi t immediately and should be used only when an exec has failed in a
9. 7 Sum m ary 343
forked child. Returning fro m main () is like calling e xi t () with the given return
value. In C99 and C++ , falling off the end of main () is the same as 'exi t (0) ,
but is bad practice.
• wa it () and wa i tpid ( ) are the POSIX functions for recovering a child's exit
status. Various macros let you determine whether the child exi ted normally, and
if so, to determine its exit status, or whether the child suffered death-by-signal
and if so, which signal committed the crime. With specific options, wai tpi d ( )
also provides information about children that haven't died but that have
changed state.
• GNU/Linux and most U nix systems support the BSD wai t3 () and wai t4 ( )
functions. GNU/Linux also supports the obsolescent union wa i t . The BSD
functions provide a struc t rusa ge , allowing access to CPU time information,
which can be handy. If wai tpi d () will suffice though, it's the most portable
way to go .
• Process groups are part of the larger job control mechanism, which includes signals,
sessions, and manipulatio n of the terminal's state. ge tpgrp () returns the current
process's process group ID, and ge tpgid () returns the PGID of a specific process.
Similarly, setpgrp () sets the current process's PGID to its PID, making it a
process group leader; se tpgid () lets a parent process set the PGID of a child
that hasn't yet exec'd.
• Pipes and FIFOs provide a one-way communications channel between twO pro-
cesses . Pipes must be set up by a common ancestor, whereas a FIFO can be used
by any two processes. Pipes are created with pipe ( ) , and FIFO files are created
with mkfi f o ( ) . Pipes and FIFOs buffer their data, stopping the producer or
co nsumer as the pipe fills up or empties o ut.
• dup () and dup2 ( ) create copies of open file descriptors. In combination with
close ( ) , they enable pipe file descriptors to be put in place as standard input and
output for pipelines. For pipes to work correctly, all copies of unused ends of the
pipes must be closed before exec' ing the target program(s). / dey / f d can be used
to create nonlinear pipelines, as demonstrated by the Bash and Korn shells' process
substitution capability.
344 Chapter 9 • Process M anagemenr and Pipes
Exercises
1. Write a program that prints as much information as possible about the current
process: PID , PPID , open files, current directory, ni ce value, and so on. How
can you tell which files are open? If multiple file descriptors reference the same
file, so indicate. (Again, how can you tell?)
2. How do yo u think a texi t () stores the pointers to the callback functions?
Implement a texi t ( ), keeping the GNU "no arbitrary limits" principle in
mind. Sketch an outline (pseudocode) for exi t ( ) . What information
«stdi o. h > library internals) are you missing, the absence of which prevents
you from writing exi t ( ) ?
3. The xarg s program is designed to run a command and arguments multiple
times, when there would be too many arguments to pass directly on the com-
mand line. It does this by reading lines from standard input, treating each line
as a separate argument for the named command, and bundling arguments until
there are just enough to still be below the system maximum. For example:
$ grep ARG_MAX lusr/include/*.h lusr/include/*I*.h Command line
bash: Ibin/ gr ep: Argument list too long Shell's error message
$ find lusr/include -name '* ".h' I xargs grep ARG_ MAX findandxargsworks
l usr / include / sys / param . h:#define NCARGS ARG_MAX
9.8 Exercises 345
The constant ARG_MAX in < 1 i mi t s . h> represents the combined total memory
used by the environment and the command-line arguments. The POSIX
standard doesn ' t say whether this includes the pointer arrays or just the strings
themselves.
Write a simple version of xargs that works as described. Don' t forget the en-
vironment when calculating how much space you have. Be sure to manage your
memory carefully.
4. The layout of the status value filled in by wai t () and wai tp i d () isn ' t
defined by POSIX. Historically though, it's a 16-bit value that looks as shown
in Figure 9.8.
15 14 13 12 11 10 9 8 7 6 5 4 3 2 o
I I I I I r
Exit status or stopping signal f CD Terminating signal
[ r I r r
FIGURE 9.8
Layout of status value from wai t ()
8. (Hard.) How can you tell if your process ever called chroot ( ) ? Write a program
that checks and prints a message indicating yes or no. Can your program be
fooled? If so, how?
9. Does your system have a / proc directory? If so, what kind of per-process infor-
mation does it make available?
In this chapter
347
I T his chapter covers the ins and ours of signals, an important but complicated
part of the GNU/Linux API.
10.1 Introduction
A signal is an indication that some event has happened, for example, an attempt to
reference a memory address that isn't part of your program's address space, or when a
user presses CTRL-C to stop your program (called generating an interrupt).
Your program can tell only that a particular signal has happened at least once. Gen-
erally, you can't tell if the same signal has happened multiple times. You can distinguish
one signal from another, and control the way in which your program reacts to
different signals.
Signal handling mechanisms have evolved over time. As is the case with almost all
such mechanisms, both the original and the newer APIs are standardized and available.
However, of the fundamental APIs, signal handling displays possibly the broadest
change; there's a lot to get a handle on to be able to use the most capable APIs. As a
result, this is perhaps the most difficult chapter in the book. We'll do our best to make
a coherent presentation, but it'll help if you work your way through this chapter more
carefully than usual.
Unlike most of the chapters in this book, our presentation here is historical, covering
the APIs as they evolved, including some APIs that you should never use in new code. We
do this because it simplifies the presentation, making it straightforward to understand
why the POSIX sigaction ( ) API supports all the facilities that it does.
348
10. 3 Standard C Signals: s ignal () and raise ( ) 349
Core dump
The process is terminated, and the kernel creates a c o re fi le (in the process's current
directory) containing the image of the running program at the time the signal ar-
rived. The core dump can be used later with a debugger for examination of the
state of the program (see Chapter 15, "Debugging," page 567).
By default, GNU/Linux systems create files named co re . pid, where p i d is the
process ID of the killed process. (This can be changed; see sysctl(8 ). ) This naming
lets you store multiple core fi les in the same directory, at the expense of the disk
space involved. l Traditional Unix systems name the file co r e , and it's up to you
to save any c o re files for later reexamination if there's a chance that more will be
created in the same directory.
Stopped
The process is stopped. It may be continued later. (If you 've used shell job control
with CTRL-Z, fg , and bg, you understand stopping a process.)
1 At least one vendo r of GNU/Linux distributions disables th e creation of co r e files "out of the box. " To ree nable
them, put the line 'ulim i t -5 -c u n limited' into your -/ . prof i le fil e.
350 Chapter 10 • Signals
This declaration for signal () is almost impossible to read. Thus, the GNU/Linux
signal(2) manpage defines it this way:
typedef void (*sighandler_t) (int);
Now it's more intelligible. The rype si ghandler_t is a pointer to a function return-
ing void, which accepts a single integer argument. This integer is the number of the
arriving signal.
The signal () function accepts a signal number as its first parameter and a pointer
to a function (the new handler) as its second argument. If not a function pointer, the
second argument may be either S1G_DFL , which means "restore the default action," or
S 1G_1GN, which means "ignore the signal. "
signal () changes the action for signum and returns the previous action. (This allows
you to later restore the previous action if you so desire.) The return value may also be
S1 G_E RR, which indicates that something went wrong. (Some signals can't be caught
or ignored; supplying a signal handler for them, or an invalid signum, generates this
error return.) Table 10.1 lists the signals available under GNU/Linux, their numeric
values, each one's default action, the formal standard or modern operating system that
defines them, and each one's meaning.
Older versions of the Bourne shell ( / bin l sh) associated traps, which are shell-level
signal handlers, directly with signal numbers. Thus, the well-rounded Unix programmer
needed to know not only the signal names for use from C code but also the correspond-
ing signal numbers! POSIX requires the trap command to understand symbolic signal
names (without the 'S1G' prefix), so this is no longer necessary. However (mostly against
our better judgment), we have provided the numbers in the interest of completeness
and because you may one day have to deal with a pre-POSIX shell script or ancient C
code that uses signal numbers directly.
g NOTE For some of the newer signals, from 16 on up , the association between
signal number and signal name isn' t necessarily the same across platforms!
1
1.:.'.-.
Check your system header files and manpages . Table 10.1 is correct for
GNU/ Linux.
10.3 Standard C Signals: si gnal () and rai se ( ) 351
TABLE 10.1
GNU/ Linux signals
Some systems also define other signals, such as SIGE MT, SIGLOST, and SIG INF O. The
GNU/Linux signal(7) manpage provides a complete listing; if your program needs to
handle signals not supported by GNU/Linux, the way to do it is with an #ifdef:
#ifdef SIGLOST
... handle SIGLOST here ...
#endif
With the exception of S IGSTKFLT, the signals listed in Table 10.1 are widely available
and don't need to be bracketed with #i fdef .
SIGKILL and SIGSTO P cannot be caught or ignored (or blocked, as described later
in the chapter). They always perform the default action listed in Table 10.1.
You can use 'kill -1 ' to see a list of supported signals. From one of our
GNU/Linux system s:
$ kill -1
1) SIGHUP 2) SIGINT 3) SIGQUI T 4) SIG ILL
5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SI GFPE
9) SIGKILL 10) SIGUSRl 11 ) SIGSEGV 12) SI GUSR2
13) SIGP IPE 14) SIGALRM 15) SIGTERM 17 ) SIGCHLD
1 8) S IGCONT 19) SIGSTOP 20) SIGTSTP 21 ) SIGTTIN
22) SIGTTOU 23 ) S I GURG 24 ). SIGXCPU 25) SIGXFSZ
26) S IGVTALRM 27 ) SIG PROF 28 ) SIGWINCH 29) SI Gro
10.4 Signal Handlers in Ac[ion 353
The SIGRTXXX signals are real-time signals, an advanced topic that we don 't cover.
This function sends the signal s i g to the calling process. (This action has its uses;
we show an example shortly.)
Because raise () is defined by Standard C, it is the most portable way for a process
to send itself a signal. There are other ways, which we discuss further on in the chapter.
Once a signal has been handled, what happens the next time the same signal comes
in? Does the handler remain in place? Or is the signal's action reset to its default? The
answer, for historical reasons, is "it depends ." In particular, the C standard leaves it as
implementation defined.
In practice, V7 and traditional System V systems, such as Solaris, reset the signal's
action to the default.
Let's see a simple signal handler 1n action under Solaris. The following program,
chlO-c atchint. c , catches S I GINT . You normally generate this signal by typing
CTRL-C at the keyboard.
1 /* ch10-catchint . c --- catch a S I GI NT, at least once . * /
2
3 #in clude <signal.h>
4 #include <string .h>
5 #include <unis td . h>
6
7 /* h andler --- simple signal hand ler . */
8
9 void handler(int signum)
10 (
11 char buf [200J , *cp;
12 int offset;
13
14 / * Jump through hoop s t o avoid fprintf() . * /
15 strcpy (buf, "handl er: caught signal " ) ;
16 cp = buf + strl en (bu f ); / * cp p o ints at terminating ' \0 ' * /
17 if (signum> 100) /* unlikely * /
18 offset = 3;
19 else if (signum > 1 0)
20 offset 2;
21 el se
22 offset 1;
23 cp += offset ;
24
25 *cp- - = ' \0 '; / * terminate string * /
26 while (signum > 0) { / * work backwa r ds, filling in digits * /
27 *cp-- = ( signum % 1 0) + ' 0' ;
28 signum / = 10;
29
30 strcat(buf, " \n " );
31 (void) write(2, buf, strlen (buf ));
32
33
10.4 Signal Handlers in Acrion 355
Lines 9-32 define the signal handling function (cleverly named handle r ( ) ) . All
this func tion does is print the caught signal's number and return. It does a lot of man-
uallabor to generate the message, since fprint f ( ) is not "safe" for calling from within
a signal handler. (This is described shortly, in Section 10.4.6, "Additional Caveats, "
page 363.)
The main () function sets up the signal handler (line 38) and then goes into an infinite
loop (lines 40- 41). Here's what happens when it's run:
$ ssh solaris. example . com Log in to a handy Solaris system
Last login : Fri Sep 19 04 : 33 : 25 20 03 fr om 4.3 . 2 . 1 .
Sun Micr osystems Inc . SunOS 5 . 9 Generic May 2002
$ gee ehlO-eatehint.e Compile the program
$ a.out Run it
'Chandler : caught signal 2 Ty pe " C, handler is called
'C Try again, but this time ...
$ The program dies
Because V7 and other traditional systems reset the signal's action to the default, when
you wish to receive the signal again in the future, the handler fu n ction should immedi-
ately reinstall itself:
void handler ( int signum)
This eliminates the portability issues. If you know your program will tun only on POSIX
systems, you may wish to use bsd_ s i gna l () instead of signal () .
One caveat is that this function is also marked "obsolescent," meaning that it can be
withdrawn from a future standard. In practice, even if it's wi thdrawn , vendors will
likely continue to support it for a long time. (As we'll see, the POSIX sigac ti on ( )
API provides enough facilities to let you write a workalike version, should you need to.)
2 Changing the behavior was a bad idea, thoroughly criticized at the tim e, but it was too late. Changin g (h e semantics
of a defin ed interface always leads to trouble, as it did here. While especially true for operating system designers,
anyone designing a general-purpose library should keep (his lesson in mind as well.
10.4 Signal H andlers in An ion 357
For example, consider the sor t program. so r t may have created any number of
temporary files for use in intermediate stages of the so rting process. U pon receipt of a
SIG INT , s ort should remove the temporary files and then exit. H ere is a simplified
version of the signal handler from the GNU Coreutils sort . c:
/ * Hand le interrupts and hangup s. */ Simplified for presentation
static void
sighandl er (int sig)
{
signal (sig , SIG_IGN ) ; Ignore this signal from now on
cl eanup (); Clean up after ourselves
signa l (sig, SIG_DFL ) ; Restore default action
rai se (sig) ; Now resend the signal
Setting the action to SIG_ IGN ensures that any further SIGINT signals that come in
won' t affect the clean -up action in progress. Once cleanup () is done, rese tting the
action to S IG_ DF L allows the sys tem to dump co re if the signal that came in would do
so. Calling r ais e () regenerates the signal. T he regenerated signal then invokes the
default action, which most likely terminates the program. (We show the full so r t . c
signal handler later in this chapter. )
if (count == O)
/* end of fil e , clean up etc . * /
el se if (count -1)
/* fai lure * /
358 Chapter 10 • Signals
Suppose that the system has successfully read (and filled in) part of the buffer when
a SIGINT occurs. The read () system call has not yet returned from the kernel to the
program, but the kernel decides that it can deliver the signal. handl er () is called, runs,
and returns into the middle of the read ( ) . What does read () return?
In days of yore 017, earlier System V systems), read ( ) would return - 1 and set errno
to EINTR. There was no way to tell that data had been transferred. In this case, V7 and
System V act as if nothing happened: No data are transferred to or from the user's
buffer, and the file offset isn't changed.
4.2 BSD changed this. There were two cases:
Slow devices
A "slow device" is essentially a terminal or almost anything but a regular file. In
this case, read () could fail with EINTR only if no data were transferred when the
signal arrived. Otherwise, the system call would be restarted, and read () would
return normally.
Regular files
The system call would be restarted. In this case, read () would return normally;
the return value would be either as many bytes as were requested or the number
of byres acrually readable (s uch as when reading close to the end of the file) .
The BSD behavior is clearly valuable; you can always tell how much data you've read.
The POSIX behavior is similar, but not identical, to the original BSD behavior.
POSIX indicates that read ( ) 3 fails with EINTR only if a signal occurred before any
data were transferred. Although POSIX doesn't say anything about "slow devices," in
practice, this condition only occurs on such devices.
Otherwise, if a signal interrupts a partially successful rea d ( ), the return is the
number of bytes read so far. For this reason (as well as being able handle short files),
you should always check the return value from read () and never assume that it read
the full number of byres requested. (The POSIX sigact i on () API, described later,
allows you to get the behavior of BSD restartable system calls if you want it.)
3 Although we are describing r e a d ( ) , me rules apply to all system calls that can fail wim EINTR, such as th ose of
th e wai t () family.
10.4 Signal H andlers in Anion 359
Lines 57-67 handle the definitions, creating safe_r ead () and safe_wri te ( ) , as
appropriate (see saf e_wri te . c , below).
360 Chapter lO • Signals
Lines 77-84 are indicative of the kinds of complications found in the real world.
Here, one particular Unix variant can' t handle count values greater than I NT_ MAX, so
lines 83-84 perform two operations at once: reducing the count to below I NT_ MAX and
keeping the amount a multiple of 8192. The latter operation maintains the efficiency
of the I/O operations: Doing I/O in multiples of the fundamental disk block size is al-
ways more efficient than doing it in odd amounts. As the comment notes, the code
maintains the semantics of re ad () and wri te ( ) , where the returned count may be
less than the requested count.
Note that the c ount parameter can indeed be greater than INT_ MAX, since coun t is
a si ze_t, which is u n signed. I NT_MAX is a plain i n t , which on all modern systems
is signed.
Lines 86-90 are the actual loop, performing the operation repeatedly, as long as it
fails with EINTR. The I S_ EINTR () macro isn't shown, but it handles the case for systems
on which EINTR isn't defined. (There must be at least one out there or the code wouldn't
bother setting up the macro; it was probably done for a Unix or POSIX emulation on
top of a non-Unix system.)
Here is safe_ wri te. c :
1 1* An int e rfa ce to write that re t r i es a f ter i nterrupts .
2 Copyri ght (C ) 2002 Free So ft ware Foundation, Inc .
... lots of boilerplate stuff omitted ..
17
18 #def ine SAFE_WRITE
19 #include ·saf e- read . c·
The #define on line 18 defines SAFE_WRITE; this ties In to lines 57-60 III
safe- read.c.
/ * Evaluate EXPR ESSION , and repeat as long as it returns - 1 with 'e r rno'
set to EINTR . * /
The macro uses a Gee extension to the e language (as marked by the
__ extensi on __ keyword) which allows brace-enclosed statements inside parentheses
to return a value, thus acting like a simple expression.
ssize_ t result;
What happens though if two identical signals come in, right after the other? In par-
ticular, what if your system resets the signal's action to the default, and the second one
comes in after the signal handler is called but before it can reinstall itself?
Or, suppose you're using bsd_signa l ( ) , so the handler stays installed, but the
second signal is different from the first one? Usually, the first signal handler needs to
complete its job before the second one runs, and every signal handler shouldn' t have
to temporarily ignore all other possible signals!
Both of these are race conditions. One workaround for these problems is to make
signal handlers as simple as possible. You can do this by creating flag variables that
362 Chapter 10 • Signals
indicate that a signal occurred. The signal handler sets the variable to true and returns.
Then the main logic checks the Bag variable at strategic points:
/ * signal handler sets to true * /
bsd_signal(SIGINT, int_handler);
.. . program proceeds on ...
i f (sig_in t_flag ) {
/ * S I GINT occurred, handle it * /
(Note that this strategy reduces the window of vulnerability but does not eliminate it.)
Standard C introduces a special type-s ig_atomic_t-for use with such Bag vari-
ables. The idea behind the name is that assignments to variables of this type are atomic:
That is , they happen in one indivisible action. For example, on most machines, assign-
ment to an int value happens atomically, whereas a structure assignment is likely to
be done either by copying all the bytes with a (co mpiler-generated) loop, or by issuing
a "block move" instruction that can be interrupted. Since assignment to a sig_atomic_t
value is atomic, once started, it completes before another signal can come in and
. .
mterrupt It.
Having a special type is only part of the story. sig_ atomi c_t variables should also
be declared volatile:
v olatile sig_atomic_t sig_int_fl ag = 0; / * signal handl er sets to true * /
... rest of code as before ...
The volatile keyword tells the compiler that the variable can be changed externally,
behind the compiler's back, so to speak. This keeps the compiler from doing optimiza-
tions that might otherwise affect the code's correctness.
Structuring an application exclusively around sig_atomic_t variables is not reliable.
The correct way to deal with signals is shown later, in Section 10.7, "Signals for Inter-
process Communication," page 379.
10.4 Signal H andlers in Anion 363
The list in Table 10 .2 comes from Section 2.4 of the System Interfaces vo lume of the
2001 POSIX standard. Many of these function s are advanced APIs not otherwise covered
in this volume.
TABLE 10.2
Functions that can be called from a signal handler
is the behavior ofV7 and modern System V sys tems such as Solaris. The latter
is the BSD behavior also found on GNU/Linux. (The POSIX b sd_si gnal ( )
function may be used to force BSD behavior.)
• What happens when a system call is interrupted by a signal also varies along
the traditional vs. BSD line. Traditional systems return -1 with errno set to
EINTR. BSD systems restart the system call after the handler rerurns. The GLIBC
TEMP _FA ILURE_RETRY () macro can help you write code to handle system calls
that return -1 with errno set to EINTR.
POSIX requires that a system call that has partially completed return a success
value indicating how much succeeded. A system call that hasn 't started yet
is restarted.
• The s i gnal () mechanism provides fertile ground for growing race conditions.
The ISO C sig_atomic_t data type helps with this situation but d oesn't solve
it, and the mechanism as defined can' t be made safe from race conditions.
• A number of additional caveats apply, and in particular, only a subset of the
standard library functions can be safely called from within a signal handler.
Despite the problems, for simple programs, the signa l () interface is adequate, and
it is still widely used.
4 The AP ls required linking with a separare library, -lj o bs, in order to be u sed.
366 Chapter 10 • Signals
in t si ghold(int s ig )
Adds sig to the list of blocked processes (the process signal mask) .
int si grelse (in t sig )
Removes (releases) sig from the process signal mask.
int si gignore( int sig )
Ignores sig . This is a convenience function .
i nt sigpause(int si g )
Removes sig from the process signal mask, and then suspends the process until
a signal comes in (see Section 10. 7, "Signals for Interprocess Communication ,"
page 379).
sighandler_t s igset(int sig, s i ghand ler_t disp )
Is a replacement for signal ( ) . (We've used the GNU/Linux manpage notation
here to make the declaration easier to read. )
mask to what it was before the handler ran. (In the POSIX model, if a signal handler
changes the signal mask, that change is overridden by the restoration of the previous
mask when the handler returns.)
s ighold ( ) and sigrel se () may be used together to bracket so-called critical sections
of code: chunks of code that should not be interrupted by particular signals so th at no
data structures are corrupted by code from a signal handler.
I.'•.·
NOTE POSIX standardizes these APls, since a major goal of POSIX is to
• formalize existing practice , wherever possible. However, the si gact i on ( ) APls
described shortly let you do everything that these APls do, and more . You should
~III not use these APls in new programs. Instead, use siga c tion () . (We note that
1m there isn 't eve n asigset(2) GNU / Linu x manpage!)
:;;-:::
between any two calls to sigho ld ( ), a not-yet-blocked signal could come up. The
scenario is rife, once again, with race conditions .
The solution is to make it possible to work with groups of signals atomically, that
is, with one system call. You effect this by working with signal sets and the process
signal mask.
However, because a system can have more signals than can be held in a single int
or long and because heavy use of the bitwise operators is hard to read, several APIs
exist to m anipulate signal sets:
#include <signal.h> POSIX
i nt sigemptyset(sig se t _t *set ) ;
in t sigfillset(sigset_ t *se t) ;
in t s igaddset(sigset_t *set, in t signum) ;
int sigdelset(sigset_t *set, in t signum ) ;
int sigismember(const sigset_t * set , i n t signum);
You must always call one of s igemptyset () or s i gf i 11 set () before doing anything
else with a sigs e t_t variable. Both interfaces exist because sometimes you want to
start out with an empty set and then just work with one or two signals, and other times
you want to work with all signals , possibly taking away one or two.
i n t sigprocma s k(int how , const sigs et_t 's et , sigset_t ' oldset) ;
int sigpending(s i gs e t_t ' set) ;
int sigsuspend(cons t sigset_ t 's et) ;
int sigact i on ( int signum, const st r uct sigacti on *act, struct sigacti on *oldact ) ;
int s ignum
The signal of interes t, as with the other signal handling functions.
const st ruct sigaction *act
The new handler specification for signal signum.
st ru c t sigaction *oldact
The current handler specification. If not NULL, the system fills in *oldact before
installing *act. *act can be NULL, in which case *oldact is filled in, but n othing
else changes.
Thus, sigacti on () both sets the new handler and retrieves the old one, in one shot.
The struct sigacti on looks like this:
10.6 POSIX Signals 371
/ * NOTE : Order in struct may vary . There may be other fields too! * /
struct sigact i on {
Additional signals to block
int sa_flags ; Control behavior
void (*sa_handler) (int) ; May be union with sa_sigaction
void (*sa_sigaction) (int , siginfo_t * v o id * ) ; May be union with sa_handler
sigset_t sa_mask
A set of additional signals to block when the signal handler function runs. Thus,
when the handler is invoked, the total set of blocked signals is the union of those
in the process signal mask, those in act->sa_mask, and, if SA_NODEFER is clear,
signum.
int sa_flags
Flags that control the kernel 's handling of the signal. See the discussion further on.
void (*sa_handler) (int)
A pointer to a "traditional" handler function. It has the same signature (return
type and parameter list) as the handler functions for s igna l (), bsd_signal () ,
and sigset ( ) .
vo id (*sa_si gaction) (int, siginfo_t *, void *)
A pointer to a "new style" handler function. The function takes three arguments,
as described shortly.
TABLE 10.3
Flag values for sa_flags
Flag Meaning
SA_NOCLDSTOP This flag is only meaningful for SIGCHLD. When set, the parent does not
receive the signal when a child process is stopped by SIGSTOP, SIGTSTP,
SIGTTIN, or SIGTTOU. These signals are discussed later, in Section 10.8.2,
page 383.
SA_NOCLDWAIT This flag is only meaningful for S IGCHLD. Its behavior is complicated.
We delay explanation until later in the chapter; see Section 10.8.3,
page 385.
SA_NODEFER Normally, the given signal is blocked while the signal handler runs. When
one of these flags is set, the given signal is not blocked while the signal
handler runs. SA_NODEFER is the official POSIX name of the flag (which
you should use).
SA_NOMASK An alternative name for SA_NODEFER. ·
SA_SIGINFO The signal handler takes three arguments. As mentioned, with this flag
set, the sa_sigaction field should be used instead of sa_handler.
SA_ONSTACK This is an advanced feature . Signal handlers can be called, using user-
provided memory as an "alternative signal stack." Such memory is given
to the kernel for this use with sigaltstack () (see sigaltstack(2)). This
feature is not otherwise described in this volume.
SA_RESETHAND This flag provides the V7 behavior: The signal's action is reset to its default
when the handler is called. SA_RESETHAND is the official POSIX name
of the flag (which you should use).
SA_ONESHOT An alternative name for SA_RESETHAND.
SA_RESTART This flag provides BSD semantics: System calls that can fail with EINTR,
and that receive this signal, are restarted.
As far as we could derermine, rhe names SA_NOMASK and SA_ONESHOT are specific ro GNU/ Linux. If anyone
knows differenrly, please inform us!
The si_signo, sLcode , and si_value fields are available for all signals. The
other fields can be members of a uni on and thus should be used only for the signals
for which they' re defined. There may also be other fields in the siginf o_ t structure.
Almost all the fields are for advanced uses. The full details are in the POSIX standard
and in the sigaction(2) manpage. However, we can describe a straightforward use of the
s i code field.
For SIGBUS, SIGCHLD, S I GFPE, S I GILL , S I GP OLL, SIGS EGV, and SIGTRAP, the
si_code field can take on any of a set of predefined values specific to each signal, indi-
cating the cause of the signal. Frankly, the details are a bit overwhelming; everyday code
doesn't really need to deal with them (although we'll look at the values for S I GCHLD
later on). For all other signals, the s i_code member has one of the values in Table 10.4.
TA BLE 10.4
Signal origin values for si_code
In particular, the SCUSER value is useful; it allows a signal handler to tell if the signal
was sent by raise () or kill () (described later) . You can use this information to avoid
calling rai se () or ki ll () a second time.
The third argument to a three-argument signal handler, void *context, is an ad-
vanced feature, not otherwise discussed in this volume.
Finally, to see sigaction () in use, examine the full text of the signal handler for
sort . c :
2074 static void
2075 sighandler (int sig)
2076 {
2077 #ifndef SA_NOCLDSTOP On old style system ...
2078 signal ( sig, SIG_IGN ); - Use signal() to ignore sig
2079 #endif - Otherwise, sig automatical!y blocked
2080
2081 cleanup (); Run cleanup code
2082
2083 #ifdef SA_NOCLDSTOP On POSIX style system
2084 {
2085 struct sigaction sigact ;
2086
2087 sigact . sa_handler = SIG_DFL; - Set action to default
2088 sigemptyset (&sigact .sa_mask ) ; - No additional signals to block
2089 sigact.sa_flags = 0; - No special action to take
2090 sigaction (sig, &sigact, NULL ) ; - Put it in place
2091
2092 #else On old style system
2093 signal ( si g, SIG_DFL ) ; - Set action to default
2094 #endif
2095
2096 raise ( sig); Resend the signal
2097
2226
2221 uns i gned i ;
2228 fo r ( i = 0 ; i < ns igs; i++ ) For all signals.
2229
2230 in tsig si gs[i] ;
223 7 #ifdef SA_NOC LDSTOP
2232 s i ga c t i on (si g , NULL , &oldact ) ; - Retrieve old handler
2233 i f (olda ct . s a _han dler '= SIG_IGN ) - If not ignoring this signal
2234 s i g action (sig , &newact , NULL ) ; - Install our handler
2235 #else
2236 if ( signal (sig , SIG_IGN) ! = S I G_IGN )
2231 signal (s ig , s ighandler) ; - Same logic with old API
2238 #endif
2239
2240
We note that lines 2216-2219 and 2221 could be replaced with the single call:
sigfillset (& newact . sa_mask ) ;
We don 't know why the code is written the way it is.
Also of interest are lines 2233-2234 and 2236-2237, which show the correct way
to check whether a signal is being ignored and to install a handler only if it's not.
I NOTE The sigaction () API and the signal () API should not be used
!iiI
@
together for the same signal. Although POSI X goes to great lengths to make it
~,:.\,:;., PhOssdi?le to ~se sfji gnal () initially, redtrieve a s.tr.u,ct .slli gabc dt~don reCPredsentinllg
:;; t e Isposltlon rom signal ( ) ,an restore It, It S Stl a a I ea. 0 e WI
I be easier to read, write, and understand if you use one API or the other,
I exclusively.
Besides unblocking the pending signals so that they get delivered, you may choose
to ignore them. Setting the action for a pending signal to SIG_IGN causes the pending
signal to be discarded (even if it was blocked). Similarly, for those signals for which the
default action is to ignore the signal, setting the action to SIG_DFL causes such a
pending signal to also be discarded.
376 Chapter 10 • Signals
According to the POSIX standard, the behavior of sigi nter r upt () is equivalent
to the following code:
int siginterrupt(int sig, int f l ag )
int ret;
struct sigaction act;
The sig argument is either a signal name or o. In the latter case, no signal is sent,
but the kernel still performs error checking. In particular, this is the correct way to
verify that a given process or process group exists, as well as to verify that you have
10.6 POS IX Signals 377
perm ission to send signals to the process or p ro cess grou p. ki 11 () returns 0 o n success
an d - 1 on error; er r no then indicates the problem.
T he rules fo r the pi d value are a bit co mplicated:
pid > 0 pid is a ptocess number, and th e signal is sent to that process.
pid = 0 The signal is sent to every process in the sending process's process group .
pid = - 1 T he signal is se nt to every pro cess on the sys tem except for any special
sys tem processes. Permission checking still applies. On G NU/Linux sys-
tem s, o nly the in i t process (PID 1) is excluded , but other sys tem s may
have other special p rocesses.
p i d < -1 T h e signal is sent to the process group represented by the absolute value
of p id. Thus, yo u can send a signal to an entire process gro up , duplicating
ki 11pg ( )'s fu nctionali ty. T h is nonorthogo n ali ty provides historical
co mpatibility.
T he meanings of pid fo r ki 11 () are similar to those of wai t pid () (see Sec-
tio n 9. l.6 . 1, "Using POSIX Functions: wa i t ( ) and wai tpid()," page 306).
The Standard C function ra is e () is essentially equivalent to
int raise (int sig}
T he C standards committee chose the nam e rai se () because C also has to work in
no n-U nix enviro nments, and kill () was considered specific to U nix. It was also a
goo d opportunity to use a more descriptive name for the func tion .
k i11pg () se nds a signal to a process gro up. As long as the pgrp val ue is greater than
1, it's equivalent to 'ki ll (-pgrp , s ig)'. T he G NU/Li nux killpg(2) manpage states
that if pgrp is 0 , the signal is sent to the sending processes's process gro up. (This is the
same as kill ( ) .)
As yo u might imagine, you cannot send signals to arbi trary processes (unless you are
the superuser, r oot). For ordinary users, the real or effective U ID of the sendin g process
must match the real or saved set-user-ID of the receiving process . (The different UIDs
are described in Section 11.1.1 , "Real and Effective IDs," page 405.)
H owever, SI GCONT is a special case: As lon g as the receiving p rocess is a member of
the same session as the sender, the signal w ill go through. (Sessions were described
378 Chapter 10 • Signals
briefly in Section 9.2.1, "Job Control Overview," page 312.) This special rule allows a
job control shell to continue a stopped descendant process, even if that stopped process
is running with a different user ID.
Finally, ki ll () and ki llpg () can be used to send signals, not just to the current
process but to o ther processes as well (permissio ns permitting, of co urse).
O ne of the pri m ary mechanism s for interpro cess communicatio n (IPC) is the pipe,
which is described in Sectio n 9.3, "Basic Interprocess Com munication: Pipes and FI-
FOs, " page 315. It is possible to use signals fo r very simple IPC as welL) D oin g so is
rather clumsy; th e recipient can only tell th at a particular signal came in. While the
sigac t i on ( ) A PI does allow the recipient to learn the PID and owner of the process
that sent the sign al, such info rmation usually is n ' t terrib ly helpful.
I NOTE As the open ing qu o te indicates, using signa ls for IPC is a lmost al ways
~\~ a bad idea . W e recomm end avoidin g it if possibl e. But our goal is to teach yo u
i.m
.
" how to use t he Linu x/ Uni x facilit ies , incl uding t heir negat ive points , leaving it
~ to you to make an informed decision a bo ut what to use.
Signals as IPC m ay sometimes be the only choice for many programs . In particular,
pipes are not an option if two co mmunicating p rograms were not started by a commo n
parent, and FIFO files may no t be an optio n if one of the communicating programs
only wo rks with standard inp u t and output. (One instance in which signals are com-
monly used is w ith certain system daemon programs, such as x inetd, which accepts
several signals advising that it sh o uld reread its control file , d o a consistency check, and
so o n . See xinetd (8) on a GNU /Lin ux sys tem , and inetd( 8) o n a Un ix system. )
T he typical h igh-level structure of a signal-based application looks like this:
fo r (; ; ) {
Wait for signal
Process signal
in t pause (v o i d) ;
pause () suspends a process; it only returns after both a signal has been delivered
and the signal handler has returned. pause ( ) , by definition , is only useful with caught
signals-ignored signals are ignored when they come in, and signals with a default action
that terminates the process (with or without a core file) still do so.
The problem with the high-level application structure just described is the Proces s
signal part. When that code is running, you don't want to have to handle another
signal; yo u want to finish processing the current signal before going on to the next one.
One solution is to structure the signal handler to set a flag and check for that flag
within the main loop:
vo lat ile sig_at om i c _t signa l_wa iting 0; / * true i f und ealt - wit h signals * /
Determine which signal carne in <- --- A signal here could overwrite global data
s i gnal_wait i n g = 0;
Process the signal <--- - Same here, especially if multiple signals
10.7 Signals for Imerprocess Communicarion 381
The solution is to keep the signal of interest blocked at all times, except when waiting
for it to arrive. For example, suppose S IGINT is the signal of interest:
void handler ( int sig)
{
/ * sig is automatically blocked with sigaction () */
Set any global data about this signal
sigset_t set;
struct sigacti o n act ;
f or ( ;; ) {
sigsuspend (& set ) ; Wait for SICINT to arrive
The key to this working is that sigsuspend () temporarily replaces the process signal
mask with the one passed in as its argument. This allows SIGINT to arrive. Once it
does, it's handled; the signal handler returns and then s igsuspend () returns as well.
By the time sigsuspend () returns, the original process signal mask is back in place.
You can easily extend this paradigm to multiple signals by blocking all signals of in-
terest during ma in () and during the signal handlers, and unblocking them only in the
call to sigsuspend().
382 Chapter 10 • Signals
Given all this, you should not use pause () in new code. pa u s e () is standardized
by POSIX primarily to support old code. The same is true of the System V Release 3
sigpause () . Rather, if you need to structure your application to use signals for IPe,
use the s i gsus p end () and sigaction () APIs exclusively.
~I NOTE The exa mp le code ab ove presumes t hat the process signal mask starts
out empty. Pro du ction code s hould instead work with whatever signal mask is
I
J!1
in place when the program starts .
This need comes up frequently in shell scripting, for example, to wait umi! a partic-
ular user has logged in:
until who I grep ' Aarnold ' > / dev / null
do
s l eep 10
done
Two mechanisms, one lower level and one higher level, let a running process know
when a given number of seconds have passed.
After al a rm () returns, the progran1 keeps running. However, when seconds seconds
have elapsed, the kernel sends a S I GALRM to the process. The default action is to
10.8 Importam Special-Purpose Signals 383
terminate the process, but mos t likely, yo u w ill instead have installed a signal handler
for S IGALRM.
T he return value is either 0, or if a previous alarm had been set, the number of seco nds
remaining before it would have gone off. However, there is only one such alarm for a
process; the previous alarm is canceled and the new one is put in place.
The advantage here is that wi th your own handler in place, you can do anything yo u
wish when the signal comes in. The disadvantage is that you have to be prepared to
work in multiple co ntexts: that of the mainline program and that of the signal h andler.
°
The return value is if the process slept for the full amount of time. Otherwise, the
return value is the remaining time left to sleep. T his latter return value can occur if a
signal came in while the process was napping.
I
@
NOTE The sleep () function is often implemented with a combination of
,.IL1.;, signa l ( ) , alarm (), and pause () . This approach makes it dangerous to mix
j~ sleep () with your own calls to alarm () (or the seti timer () advanced
I function , described in Section 14.3 .3 , "I nterval Timers: seti time r () and
II getitimer () ," page 546 ). To learn about the nanosleep () function now,
see Section 14.3.4, "More Exact Pauses: n anos leep () ," page 550) .
SIGTSTP
This signal effects a "terminal stop." It is the signal the kernel sends to the process
when the user at the terminal (or window emulating a terminal) types a particular
key. Normally, this is CTRL-Z, just as CTRL-C normally sends a SI GI NT.
The default action for S IGTSTP is to stop (suspend) the process. However, you
can catch this signal, just like any other. It is a good idea to do so if your program
changes the state of the terminal. For example, consider the vi or Emacs screen
editors, which put the terminal into character-at-a-time mode. Upon receipt of
S IGTSTP, they should restore the terminal to its normalline-at-a-time mode, and
then suspend themselves .
SIGSTOP
This signal also stops a process, but i[ cannot be caught, blocked, or ignored. It
can be used manually (with the k ill command) as a last resort, or programmati-
cally. For example, the SIGTSTP handler just discussed, after restoring the terminal's
state, could then use 'raise (SIG STOP)' to stop the process.
SIGTTIN,SIGTTOU
These signals were defined earlier as "background read from tty" and "background
write to tty. " A tty is a terminal device. On job control systems, processes running
in the background are blocked from reading from or writing to the terminal. When
a process attempts either operation, the kernel sends it the appropriate signal. For
both of them, the default action is to stop the process. You may catch these signals
if you wish, but there is rarely a reason to do so.
SIGCONT
This signal continues a stopped process. It is ignored if the process is not stopped.
You can catch it if you wish, but again, for most programs, there's little reason to
do so . Continuing our example, the S IGCONT handler for a screen editor should
put the terminal back into character-at-a-time mode before returning.
When a process is stopped, any other signals sent to it become pending. The exception
to this is SIGKILL, which is always delivered to the process and which cannot be caught,
blocked, or ignored. Assuming that signals besides SIGKILL have been sent, upon receipt
of a SIGCONT, the pending signals are delivered and the process then continues execution
after they've been handled.
10.8 Imponam Special-Purpose Signals 385
6 Hisrorically, BSD systems used (he nam e SIGCHLD, and th is is what POS IX uses. System V had a simil ar signal
named SIGCLD . GN U/Linux #defines (he laner ro be the form er-see Table 10.1.
386 Chapter 10 • Signals
T he kids array tracks the process IDs of children processes. If an elem ent is
NOT_US ED, then it doesn't represent an unreaped child. (Lines 89-90, below, initialize
it.) nkids indicates how many values in kids should be checked.
10.8 Imponam Special-Purpose Signals 387
76 / * forma t_num - -- helper function since can·t use [sf] print f() */
77
78 const char *format_num(int num)
79
20 #de fin e NUMSIZ 30
27 sta tic cha r b uf[NUMSIZ] ;
22 in t i;
23
24 if (num <= 0) (
25 strcpy(bu f, "0") ;
26 return buf;
27
28
29 i = NUMSIZ - 1;
30 buf[i--] = '\0';
37
32 /* Generat e digits bac kwards into st ring. */
33 do
34 bu f [i--] (num % 10) + '0' ;
35 num /= 10;
36 whil e (num > 0) ;
37
38 return & buf[i+1] ;
39
Because signal handlers should not call any member of the printf () family, we
provide a simple "helper" function, forma t_num ( ) , to turn a decimal signal or PID
number into a string. This is primitive, bur it works .
47 /* ch ildhandler -- - catch SIGCHLD, reap all ava ilable chi ldren * /
42
43 void childhandler(int sig )
44 (
45 int s tatus, ret ;
46 int i ;
47 c har buf[1 00 ];
48 stati c const cha r ent ered[] = "Enter ed ch ildhandler\n" ;
49 stati c const char exited[] = "Ex ited childhandler \n";
50
57 wr ite ( l, entered , s trlen(entered) ) ;
52 for ( i = 0 ; i < nkids; i++) {
53 i f (kids[i] = = NOT_USED)
54 continue;
55
388 Chapter 10 • Signals
56 retry :
57 if «ret = wa i tpid (ki ds[i], & s ta tus, WNOHANG )) kids [i]) {
58 strcpy(buf, "\treaped process " ) ;
59 strcat(bu f , format_num(ret));
60 strcat( buf, " \n");
61 write(l, buf, strlen(buf));
62 kids[i] = NOT_USED;
63 else if ( ret == 0) {
64 strcpy (bu f, " \ tpid " ) ;
65 strcat(buf, format_num(kids[i]));
66 strcat (bu f , " not a v a i lable yet\n " ) ;
67 write(l, buf, strlen(bu f));
68 else if ( ret == -1 && er r no == EINTR)
69 write(l, " \ tretrying \ n", 1 0);
70 got o retry;
71 else (
72 strcpy(buf , " \twaitpid ( ) failed : " ) ;
73 st r cat (buf, strerror( errno)) ;
74 st r cat (buf, "\n" ) ;
75 wr ite (l, buf, strlen (bu f )) ;
76
77
78 write(l , e x ited, strlen(exi ted));
79
Lines 51 and 58 print "entered" and "exited" messages, so that we can dearly see
when the signal handler is invoked. Other messages start with a leading TAB character.
The main part of the signal handler is a large loop, lines 52-77. Lines 53-54 check
for NOT_USED and continue the loop if the current slot isn't in use.
Line 57 calls wai tp id () on the PID in the current element ofkids . We supply the
WNOHANG option, which causes wai tpid () to return immediately if the requested child
isn't available. This call is necessary since it's possible that not all of the children
have exited.
Based on the return value, the code takes the appropriate action . Lines 57-62 handle
the case in which the child is found, by printing a message and marking the appropriate
slot in kids as NOT_USED .
Lines 63-67 handle the case in which the requested child is not available. The return
value is 0 in this case, so we print a message and keep going.
10.8 Important Special-Purpose Signals 389
Lines 68-70 handle the case in which the system call was interrupted. In this case,
a ga t a back to the wai tpid () call is the cleanest way to handle things. (Since main ( )
causes all signals to be blocked when the signal handler runs [line 96], this interruption
shouldn't happen. But this example shows you how to deal with all the cases.)
Lines 71-76 handle any other error, printing an appropriate error message.
81 /* main --- set up child-related information and signals , create children * /
82
83 int main(int argc, char **argv)
84
85 struct sigaction sa;
86 sigset_t childset, emptyset ;
87 int i ;
88
89 for (i = 0 ; i < nkids ; i++)
90 kids[i] NOT_USED ;
91
92 sigemptyset(& emptyset);
93
94 sa . sa_flags = SA_NOCLDSTOP ;
95 sa . sa_handler = childhandler ;
96 sigfillset(& sa . sa_mask) ; / * block everything when handler runs * /
97 sigaction(SIGCHLD , & sa , NULL) ;
98
99 sigemptyset(& childset);
100 sigaddset(& childset, SIGCHLD);
101
102 sigprocmas k(SIG_SETMASK, & childset, NULL); /* block it in main code * /
103
104 for (nkids = 0 ; nkids < S; nkids++) {
105 if ((kids[nkids] = fork ()) == 0) {
106 sleep(3) ;
107 _exit (0) ;
108
109
110
111 sleep(S) ; / * give the kids a chance to terminate * /
112
11 3 printf('waiting for signal \ n' ) ;
114 sigsuspend(& emptyset);
115
116 return 0 ;
117
390 Chapter 10 • Signals
Lines 89-90 initialize kids. Line 92 initializes emptyset . Lines 94-97 set up and
install the signal handler for SI GC HLD. Note the use of SA_NOC LDSTOP on line 94, while
line 96 blocks all signals when the handler is running.
Lines 99-100 create a signal set representing just SIGCHLD, and line 102 installs it
as the process signal mask for the program.
Lines 104- 109 create five child processes, each of which sleeps for three seconds.
Along the way, it updates the kids array and nkids variable.
Line 111 then gives the children a chance to terminate by sleeping longer than they
did. (This doesn't guarantee that the children will terminate, but the chances are
pretty good. )
Finally, lines 113- 114 print a message and then pause, replacing the process signal
mask that blocks S IGCHLD with an empty one. This allows the S I GCH LD signal to come
through, in turn causing the signal handler to run. Here's what happens:
$ chlO-reapl Run the program
waiting for si gnal
En ter ed childhandl e r
reaped pr o c ess 23937
reaped process 23938
reaped process 23939
reaped pr o c ess 23940
r eap e d proc ess 23 94 1
Exited childhandler
This is identical to the previous version, except we have a new variable , kids left,
indicating how many unreaped children there are. Lines 15 and 64 Hag the new code.
83 / * main --- set up child-related information and s i gnals, create children * /
84
85 int main(int argc , char ** argv)
86
... unchanged code omitted.
100
10 1 s i gemptyset(& childset) ;
102 sigaddset(& childs et , SIGCHLD ) ;
103
104 / * sigprocmask(SIG_SETMASK, & childset, NULL ) ; / * block it in main code * /
105
106 for (nkids = 0 ; nkids < 5; nkids++) {
107 if {(kids [nkids] = fork()) == 0) (
108 sleep (3);
109 _exit(O ) ;
110
111 kidsleft++; / * < < < Added * /
112
113
114 /* sleep(5); / * give the kids a chance to terminate * /
11 5
392 Chapter 10 • Signals
Here too, the code is almost identical. Lines 104 and 11 4 are commented out from
the earlier version, and lines Ill, 116, and 119 were added. Surprisingly, when run,
the behavior varies by kernel version!
$ uname -a Display system version
Linux exarnple1 2 . 4 . 20-8 #1 Thu Mar 13 17 : 54:28 EST 2 003 i686 i686 i386 GNU/ L inux
$ chlO-reap2 Run the program
waiting fo r s ignals
Entered c hi l d handler Reap one child
reaped process 2702
pid 2703 not available yet
pid 2704 not available yet
pid 270 5 not available yet
pid 2706 not avai lable y et
Exited childhandl e r
waiting for signals
Entered childhandler And the next
reaped process 2703
pid 270 4 not available yet
pid 2705 not available y et
pid 2706 n ot available y et
Exited childhandler
waiting for signals
Entered childhandler A nd so on
reaped process 2704
pid 2705 not available yet
pid 2706 n ot available y et
Exit e d childhandler
waiting for signals
Ente r ed childhandler
reaped process 2705
pid 2706 n ot availabl e y et
Ex ited childhan dl e r
wa iting for signa l s
Entered childhandler
reaped process 2706
Exited childhandler
In this example, exactly one SIGCHLD is delivered per child process! While this is lovely,
and completely reproducible on this system, it's also unusual. On both an earlier and
a later kernel and on Solaris, the program receives one signal for more than one child:
10.8 Imponanr Special-Purpose Signals 393
I
, and nkids and kidsl e ft variables to become corrupted: The main code adds
@
in a new process, but the signal handler takes one away.
This piece of code is an excelle nt example of a critical section ; it must run
I uninterrupted. The correct way to manage this code is to bracket it with calls
i that first block, and then unblock, SIGCHLD .
TABLE 10.5
XSI si code values for SIGCHLD
Value Meaning
CLD_CONT l NUED A stopped child has been continued.
CLD_DUMPED C hild terminated abnormally and dumped core.
CLD_EXITED C hild exited normal ly.
CLD_ KI LLED C hild was killed by a signal.
CLD_STO PPED The child process was stopped.
A child being traced has stopped. (This condition occurs if a program is
being rraced--either from a debugger or for real-time monito ring. In any
case, you're not likely to see it in run-of-the- mill situations.)
Lines 3- 8 include standard header files , line 10 declares manage ( ) , which deals with
the child's status changes, and the fo rma t_num () function is unchanged from before.
37 / * childhandler --- catch SIGCHL D, r eap j ust one c h ild * /
38
39 void childhandler(int sig, siginfo_ t 'si, void ' context )
40
41 int status, ret;
42 int i ;
43 c har buf [ 100] ;
44 static const char entered[] = "Entered ch i ldhandler\n" ;
45 stat i c cons t char exited [] = "Exited childha ndler \n" ;
46
47 writ e (l, entered, str len(ent ered ));
48 retry :
49 if (( r et = waitpid(s i->si-p i d , & status , WNOHANG}) si- >si-pid} {
50 s trcpy (buf, " \ t reaped proc e ss ");
51 strcat (buf, format _num( si -> si-pid }};
52 strca t (buf, "\n" ) ;
53 write (l, buf, s trlen(buf}};
54 manage (si) ; /* deal wi th what h appened to it * /
55 el s e if (ret> 0) {
56 strcpy (buf, " \ tr eaped u nexpec ted pid " ) ;
57 strcat(buf, format_num(ret} ) ;
58 strcat( but, " \n " } ;
59 write( l , buf, strlen(buf}};
60 goto retry ; / * why not? */
61 else if ( re t == D) {
62 strcpy (bu f, " \ tp i d ") ;
63 strcat(buf, format_num(si->si-pid}};
64 strcat (but, " changed status\n") ;
65 write( l , buf, strlen(buf} } ;
66 manage ( s i ) ; /* deal with what happened t o it * /
10.8 Importanr Special-Purpose Signa ls 395
The signal handler is similar to those shown earlier. Note the argument list (line 39) ,
and that there is no loop.
Lines 49-54 handle process termlnatlon, including calling manage () to pnnt
the status.
Lines 55-60 handle the case of an unexpected child dying. This case shouldn ' t hap-
pen, since this signal handler is passed information specific to a particular child process .
Lines 61-66 are what interest us: The return value is 0 for status changes. manage ( )
deals with the details (line 66).
Lines 67-69 handle interrupts, and lines 70-75 deal with errors.
80 1* child - -- what to do in the child * 1
81
82 void child(void)
83 {
84 raise(SIGCONT) ; 1* should be ignored * 1
85 raise (SIGSTOP) ; 1* go to sleep, parent wakes us back up *1
86 printf("\t---> child restarted <--- \ n" ) ;
87 exit (42 ) ; 1* normal exit, let parent get value * 1
88
The chi ld () function handles the child's behavior, taking actions of the so rt to
cause the parent to be notified. ? Line 84 sends SIGCONT, which might cause the parent
to get a CLD_CONTINUED event. Line 85 sends a SIGSTOP, which stops the process (the
signal is uncatchable) and causes a CLD_STOP PED event for the parent. Once the parent
restarts the child, the child prints a message to show it's active again and then exits with
a distinguished exit status.
90 /* main --- set up child-related inf ormat i on and signal s, c reate child * /
91
92 int main( i nt argc, char **argv )
93
94 pid_t kid;
95 struct si gaction sa;
96 sigset_t childset, emptyset;
97
98 sigemptyset (& emptyset);
99
100 sa. sa_flags = SA_SIGINFO ;
101 sa.sa_sigaction = childhandler;
102 sigfillset (& sa . sa_mas k ) ; /* block everything when handler runs * /
103 sigaction(SIGCHLD, & sa, NULL);
104
105 sigemptyset(& childset ) ;
106 sigaddset(& childset, SIGCHLD ) ;
107
108 sigprocmask(SIG _ SET~ffiSK, & childset, NULL); /* block it in main code * /
109
110 if ((kid = fork()) == 0)
111 child() ;
112
113 /* parent execut es here */
114 for (;;) (
115 printf("wait ing for signals\n " ) ;
116 sigsuspend(& e mptyset ) ;
117
118
119 return 0;
120 }
The main () program sets everything up . Lines 100-103 pur the handler in place.
Line 100 sets the SA_SIGINFO flag so that the three-argument handler is used. Lines
105-108 block SIGCHLD .
Line 110 creates the child process. Lines 113-117 contmue m the parent, usmg
sigsuspend () to wait for signals to come in.
123 / * manage --- deal with different thing s that could happen to child * /
124
125 void manage(siginro_t *si )
126
127 char buf [100 J ;
128
129 switch (si->si_code)
130 case CLD_STOPPED:
13 1 write (l, "\t child stopped, restarting\n " , 27);
132 kill (si->s i-pid , SIGCONT);
133 break;
134
10.8 Imponanr Special-Purpose Signals 397
Through the manage () function, the parent deals with the status change in the child.
manage () is called when the status changes and when the child has exited.
Lines 130-133 handle the case in which the child stopped; the parent restarts the
child by sending SIGC ONT .
Lines 135-137 print a notification that the child continued. This event doesn ' t
happen on GNU/Linux systems, and the POSIX standard uses wishy-washy language
about it, merely saying that this event can occur, not that it wiLl.
Lines 139-145 handle the case in which the child exits, printing the exit status. For
this program, the parent is done too, so the code exits, although in a larger program,
that's not the right action to take.
The other cases are more specialized. In the event of CLD_KILLED, the status value
filled in by wai tpid () would be useful in determining more details.
Here is what happens when it runs:
398 Chapter 10 • Signals
• Signals that are blocked before the exec () remain blocked after it. In other words,
the new program inherits the process's existing process signal mask.
• Any pending signals (those that have arrived but that were blocked) are cleared.
The new program won't get them .
• The time remaining for an alarm ( ) remains in place. (In other words, if a process
sets an alarm and then calls exec () directly, the new image will eventually get
10.10 Summary 399
the SIGALRM. If it does a fork () first, the parent keeps the alarm setting, wh ile
the child, which does the exec ( ) , does not.)
g
n NOTE Many, if not most, programs assume that signal actions are initialized
I to their defaults and that no signals are blocked . Thus, particularly if you didn 't
I write the program being run wi th exec ( ) , it's a good idea to unb lock all signals
~ before doing the exec ( ) .
®.
10.10 Summary
" Our story so far, Episode III."
-Arnold Robbins-
• Signal h andling interfaces have evo lved from simple but prone-to-race conditio ns
to complicated but reliable. Unfortunately, the multiplicity of interfaces makes
them harder to learn than many other Linux/Unix APIs.
• Each signal has an action associated with it. The action is one of the foll owing:
ignore the signal; perform the system default action; or call a user-provided handler.
The system default action, in rum, is o ne of the following: ignore the signal; kill
the process; kill the process and dump core; stop the process; or continue the
process if stopped.
• signa l () and rai se () are standardized by ISO C. signa l () manages actions
for particular signals; raise () sends a signal to the current process. Whether
signal handlers stay installed upon invocation, or are reset to their default values
is up to the implementation. signa l () and r aise () are the simplest interfaces,
and they suffice for many applications.
• POSIX defines the bsd_signa l () function, which is like signal () but guarantees
that the handler stays installed.
• What happens after a signal handler returns varies according to the type of system.
Traditional systems (V7, Solaris, and likely o thers) reset signal dispositions to their
default. On those systems, interrupted system calls return -1 , setting errno to
EINTR. BSD systems leave the handler installed and only rerum -1 with errno
set to EINTR when no data were transferred; otherwise, they restart the system call.
400 Chapter 10 • Signals
• GNU/Linux follows POSIX, which is similar but not identical to BSD. If no data
were transferred, the system call returns -l/EINTR. Otherwise, it returns a count
of the amount of data transferred. The BSD "always restart" behavior is available
in the sigaction () interface but is not the default.
• Signal handlers used with signal () are prone to race conditions. Variables of
type volatile sig_atomic_t should be used exclusively inside signal handlers.
(For expositional purposes, we did not follow this rule in some of our examples.)
Similarly, only the functions in Table 10.2 are safe to call from within a
signal handler.
• The System V Release 3 signal API (lifted from 4 .0 BSD) was an initial attempt
at reliable signals. Don 't use it in new code.
• The PO SIX API has multiple components:
• the process signal mask, which lists the currently blocked signals,
• the sigset_t type to represent signal masks, and the sigfi11 set ( ),
sigemptyset ( ), sigadds et ( ), sigdels et ( ), and sigisrnember () functions
for working with it,
• the si gprocrnask () function to set and retrieve the process signal mask,
• the sigpending () function to retrieve the set of pending signals,
• the s igaction () API and st ruc t sigac t i on in all their glory.
These facilities together use signal blocking and the process signal mask to provide
reliable signals. Furthermore, through various flags, it's possible to get restartable
system calls and a more capable signal handler that receives more information
about the reason for a particular signal (the s i ginfo_t structure) .
• ki 11 () and ki llpg ( ) are the POSIX mechanisms for sending signals. These
differ from rais e () in two ways: (1) one process may send a signal to another
process or an entire process group (permissions permitting, of course), and
(2) sending signal 0 does not send anything but does do the checking. Thus, these
functions provide a way to verify the existence of a particular process or process
group, and the ability to send it (them) a signal.
• Signals can be used as an IPe mechanism, although such use is a poor way to
structure your application and is prone to race conditions. If someone holds a gun
10.11 Exercises 401
to your head to make you work that way, use careful signal blocking and the
sigaction () interface to do it correctly.
• SIGALRM and the alarm () system call provide a low-level mechanism for notifi-
cation after a certain number of seconds have passed. pause () suspends a process
until any signal comes in. sleep () uses these to put a process to sleep for a given
amount of time: sleep () and alarm () should not be used together. pause ( )
itself opens up race conditions; signal blocking and s i gsuspend () should be
used instead.
• Job control signals implement job control for shells . Most of the time you should
leave them set to their default, but it's helpful to understand that occasionally it
makes sense to catch them.
• Catching SIGCHLD lets a parent know what its children processes are doing. Using
'signal (SIGCHLD, SIG_IGN)' (or sigaction() with SA_NOCLDWAIT) ignores
children altogether. Using sigaction ( ) with SA_NOCLDSTOP provides notification
only about termination. In the latter case, whether or not SIGCHLD is blocked,
signal handlers for S I GCHLD should be prepared to reap multiple children at once.
Finally, using sigaction ( ) without SA_ NOCLDSTOP with a three-argument signal
handler gives you the reason for receipt for the signal. (Whew!)
• After a fork ( ), signal disposition in the child remains the same, except that
pending signals and alarms are cleared. After an exec ( ) , it's a little more compli-
cated-essentially everything that can be left alone is; anything else is reset to
its defaults.
Exercises
403
l inux, following Unix, is a multiuser system. Unlike most operating systems for
personal computers,l in which there is only one user and whoever is physically
in front of the computer has complete control, Linux and Unix separate files and
processes by the owners and groups to which they belong. In this chapter, we examine
permission checking and look at the APIs for retrieving and setting the owner and
group identifiers.
1 MacOS X and Windows XP are both multiuser systems, bur this is a rath er recent development.
404
11.1 Checking Permissions 405
Real user ID
The UID of the user that forked the process.
Effective user ID
The UID used for most permission checking. Most of the time, the effective and
real UIDs are the same. The effective UID can be different from the real one at
startup if the setuid bit of the executable program's file is set and the file is owned
by someone other than the user running the program. (More details soon .)
Saved set-user ID
The original effective UID at program startup (after the exec). This plays a role
in permission checking when a process needs to swap its real and effective UIDs
back and forth. This concept came from System V.
Real group ID
The GID of the user that created the process, analogous to the real UID.
Effective group ID
The GID used for permission checking, analogous to the effective UID .
Saved set-group ID
The original effective GID at program startup, analogous to the saved set-user
rD.
Supplemental group set
4.2 BSD introduced the idea of a group set. Besides the real and effective GIDs,
each process has some set of additional groups to which it simultaneously belongs.
Thus, when permission checking is done for a file's group permissions, not only
does the kernel check the effective GID, but it also checks all of the GIDs in the
group set.
2 Although th e U nited States does n 't have official identity cards, many co untries do.
406 Chapter 11 • Permissions and User and Group 10 Numbers
Any process can retrieve all of these values. A regular (non-superuser) process can
switch its real and effective user and group IDs back and forth. A r oot process (one
with an effective UID of 0) can also set the values h owever it needs to (although this
can be a one-way operati on).
The s character where an x character usually appears indicates the presence of the setu-
id/setgid bits.
As mentioned In Section 8.2.1, "Using Mount Options," page 239, the nos ui d
option to mount for a filesystem prevents the kernel from honoring both the setuid and
setgid bits. This is a security feature; for example, a user with a home GNU/Linux system
might handcraft a floppy with a copy of the shell executable made setuid to r oot. But
if the GNU/Linux sys tem in the office or the lab will o nly mount floppy fil esystem s
with the n osu i d option , then running this shell won ' t provide root access .4
The canonical (and probably overused) motivating example of a setuid program is
a game program. Suppose you've written a really cool game, and you wish to allow
users on the system to play it. The game keeps a score file , listing the highest scores .
If you're not the system administrator, you can' t create a separate group of just those
users who are allowed to play the game and thus write to the score file. But if yo u make
the file world-writable so that anyone can play the game, then anyone can also cheat
and put any name at the top .
3 Denni s Ritchie, the invemor of C and a cocreator of Unix, received a patem for th e setuid bit: Protection o/D ata
File Contents, US Patem number 4,135,240. See h ttp:/ / www. d elphion . com/ detail s ?pn=US041352 40__
and al so http : // '.'.'I'.'W . u s pto. gOY. AT&T assigned the patent to the public, allowing anyo ne to use
its technology.
4 Security for GNU/ Linux and U nix systems is a deep topic in and of itself. T his is JUSt an example; see Section 11 .9,
"Sugges ted Reading, " page 423.
1l.2 Re[rieving User and Group IDs 407
However, by making the game program setuid to yourself, users running the game
have your UID as their effective UID. The game program can then open and update
the file as needed, but arbitrary users can't come along and edit it. (You also open
yourself up to most of the dangers of setuid programming; for example, if the game
program has a hole that can be exploited to produce a shell running as you, all your
fi les are available for deletion or change. This is a justifiably scary thought.)
The same logic applies to setgid programs, although in practice setgid programs are
much less used than setuid ones. (This is roo bad; many things that are done with setuid
roo t programs could easily be done with setgid programs or programs that are setuid
to a regular user, instead. 5)
You may have noticed that there are no calls to get the saved set-user 10 or saved
set-group 10 values. These are just the original values of the effective UID and effective
GID. Thus, you can use code like this at program startup to obtain the six values:
uid_t r uid , euid , saved_uid;
gid_t rgid , egid , s aved_ gid;
ruid g etuid ( ) ;
euid saved uid g e teuid () ;
rgid getg id () ;
egid saved_gid g etegid();
1089 #else
1090 /*
1091 * If called with 0 for both args, return value is
1092 * total number of groups .
1093 */
1094 ngroups = getgroups(O, NULL):
1095 #endif
1096 if (ngroups == -1)
1097 fatal (_("could not find groups : Is"), strerror(er rno)) :
1098 else if (ngroups == 0)
1099 return:
1100
1101 / * fill in groups * /
1102 emalloc(groupset, GETGROUPS_T * ngroups * sizeof (GETGROUPS_T) ,
" ini t_groupset " ) :
1103
1104 ngroups = getgroups(ngroups , groupset):
1105 if (ngroups == -1)
11 06 fatal(_("could not find groups : Is") , strerror(errno )) :
1107 #endif
1108
The ng r oups and groupset variables are global; their declaration isn't shown. The
GETGROUPS _T macro (line 1102) is the type to use for the second argument; it's gid_ t
on a POSIX system, i n t otherwise.
Lines 1085 and 1107 bracket the entire function body; on ancient systems that don' t
have group sets at all, the function has an empty body.
Lines 1086-1088 handle non-POSIX systems; GETGROUPS_NOT_STANDARD is defined
by the configuration mechanism before the program is compiled. In this case, the code
uses NGROUPS_ MAX, as described earlier. (As late as 2004 , such systems still exist and
are in use; thankfully though, they are diminishing in number.)
Lines 1089-1094 are for POSIX systems, using a s i z e parameter ofzero to retrieve
the number of groups.
Lines 1096-1099 do error checking. If the return value was 0, there aren ' t any sup-
plemental groups, so ini t _ groupset () merely returns early.
Finally, line 1102 uses malloe () (through an error-checking wrapper macro, see
Section 3.2.1.8 , "Example: Reading Arbitrarily Long Lines," page 67) to allocate an
array that's large enough. Line 1104 then fills in the array.
410 Chapter 11 • Permissions and User and Group 10 Numbers
The path argumem is the pathname of the file to check the real UID and GID
against. amode is the bitwise OR of one or more of the following values:
R_OK The real UID/GID can read the file.
W_OK The real UID/GID can write the file.
X OK The real UID/GID can execute the file, or if a directory, search through the
directory.
F _ OK Check whether the file exists.
Each component in the pathname is checked, and on some implementations, when
checking for root, acce ss () might act as if X_OK is true, even if no execute bits are
set in the file 's permissions. (Strange but true: In this case, forewarned is forearmed.)
Linux doesn't have this problem.
If pa th is a symbolic link, acces s ( ) checks the file that the symbolic link points to.
The return value is 0 if the operation is permitted to the real UID and GID or -1
otherwise. Thus, if access () returns - 1, a setuid program can deny access to a file
that the effective UID/GID would othetwise be able to work with:
if ( access ( " / some / specia l/ file", R_OK IW_OK ) < 0) {
fprintf ( stderr, "So rry : / some / special / file: %s \ n", strerr o r ( errno)) ;
exit (1) ;
At least with the 2.4 series of Linux kernels, when the X_OK test is applied to a
filesystem mounted with the noexec option (see Section 8.2.1, "Using Mount Options,"
page 239), the test succeeds if the file's permissions indicate execute permission. This
is true even though an attempt to execute the file will fail. Caveat emptor.
1l. 3 Checking As [he Real User: acc ess ( ) 411
NOTE
W
.". While using access () before open ing a file is proper practice, a race
l.condition exists : The fil e being opened could be swapped out in between the
m check with acc ess ( ) and the call to open (). Careful programming is required,
suc h as checking owner and permission wit h s tat () and fs tat () before and
.ji
For example, the pathchk program checks pathnames for validiry. The GNU version
uses ac ces s () to check that the directory componenrs of given pathnames are valid.
From the Coreutits pa thchk. c :
244 / * Return 1 if PATH is a u sable leading d irec tory, ° if not,
245 2 if it does n ' t exist . * /
246
241 static int
248 dir_ok (const char *path)
249
250 struc t stat scacs;
251
252 if ( stat (path, &sta ts)) No nzero return = fa ilure
253 return 2 ;
254
255 if ( ! S_ISDIR (s tats . st_mode ))
256 {
251 err o r (0 , 0, _ ( " '% s' is not a dire ctory" ) , pa th ) ;
258 return 0 ;
259
260
26 1 / * Use access to test for search permission because
262 testing pe rmissi on bit s of st_mode can lose with new
263 access control mechan isms . Of cour se , access lo ses if you' re
264 running setuid. * /
265 if (ac cess (path , X_OK) ! = 0)
266 {
261 if (errno == EACCES)
268 error (0,0, _( "di rectory '% s' is not searchable), path) ;
269 else
210 error (0 , errno , "%s", path ) ;
21 1 return 0 ;
212
213
214 return 1;
215 }
The code is straightforward. Lines 252-253 check whether the file exists. If stat ()
fails, then the file doesn't exist. Lines 255-259 verify that the file is indeed a directory.
The commenr on lines 261-264 explains the use of a c c e ss ( ) . Checking the s t _ffiode
bits isn ' t enough: The file could be on a filesys tem that was mounted read-only, on a
412 Chapter 11 • Permissions an d User and Group ID N um bers
remote filesystem, or on a non-Lin ux or non-U nix filesystem, or the file co uld have fil e
attributes that prevent access . T hus, only the kernel can really tell if the access would
work. Lines 265-272 do the check, with the error message being determined by the
value of e rrno (lines 267-270).
The arguments and return value have the same meaning as for ac cess () . When
the effective and real UIDs are equal and the effective and real G IDs are equal,
e uidacc ess () calls a c ce ss () to do the test. T his has the advantage that the kernel
can test for read-only filesystems or other conditions that are not reRected in the file 's
ownership and permissions.
Otherwise, euida cc e s s () checks the file's owner and group values against those of
the effective UID and GID and gro up set, using the appropriate permission bits. This
test is based on the file's s t a t () information .
If you're writing a portable program but prefer to use this interface, it's easy enough
to extract the source file from the G LIBC archive and adapt it fo r general use.
parent directory. Furthermore, new files also inherited the group 10 of the parent di-
rectory and not the effective GID of the creating process.
The idea behind having multiple groups and directories that work this way is to fa-
cili tate group cooperation. Each organizational project using a system would have a
separate group assigned to it. The top-level directory for each project would be in that
project's group, and files for the project would all have group read and write (and if
necessary, execute) permission. In addition, new files automatically get the group of
the parent directory. By being simultaneously in multiple groups (the gro up set), a user
could move among projects at will with a simple cd command, and all files and direc-
tories would maintain their correct gro up.
What happens on modern systems? Well, this is another of the few cases where it's
possible to have our cake and eat it too. SunOS 4.0 invented a mechanism that was
included in System V Release 4; it is used today by at least Solaris and GNU/Linux.
These systems give meaning to the setgid bit on the parent directory of the new fi le or
directory, as follows:
Setgid bit on parent directory clear
New files and directories receive the creating process's effective GID.
Setgid bit on parent directory set
New files and directories receive the parent directory's GID. New directories also
inherit the setgid bit being on.
(Until SunOS 4.0, the setgid bit on a directory had no defined meaning.) The fol-
lowing session shows the setgid bit in action:
$ cd /tmp Move to / tmp
$ Is -ld . Check its permissions
drwxrwxrwt 8 root root 4096 Oct 16 17 : 40 .
$ id Check out current groups
uid=2076 (arnold ) gid=42 (deve l ) group s= 19(flop py ) , 42(deve l) , 2076 (arnold )
$ mkdir d1 ; Is -ld d1 Make a new directory
drwxr - x r- x 2 arnold devel 4096 Oct 16 1 7: 40 d1 Effective group ID inherited
$ chgrp arnold d1 Change the group
$ chmod g+s d1 Add setgid bit
$ Is -ld d1 Verify change
drwxr-sr-x 2 arnold arnold 4096 Oct 16 17 : 40 d 1
$ cd d1 Change into it
$ echo this should have group arnold on it > £1 Create a new file
$ 1s -1 f1 Check permissions
- rw-r--r-- 1 arno ld arno ld 36 Oct 16 17 : 41 f1 Inherited from parent
414 Chapter 11 • Permissions and User and Group ID Numbers
The sticky bit originated in the PDP-I I versions of Unix and was applied to regular
executable files. 6 This bit was applied to programs that were expected to be heavily
used, such as the shell and the editor. When a program had this bit set, the kernel would
keep a copy of the program's executable code on the swap device, from which it co uld
be quickly loaded into memory for reuse. (Loading from the filesystem took longer:
T he image on the swap device was stored in contiguo us disk blocks, whereas the image
in the filesystem might be spread all over the disk.) The executable images "stuck" to
the swap device, hence the name.
Thus, even if the program was not currently in use, it was expected that it would be
in use again sho rtly when another user went to run it, so it would be loaded quickly.
6 Images come [Q mind of happy yourhfu l programs, rhei r faces and hands covered in chocolare.
11.6 Swing Real and Effeccive IDs 415
Modern sys tems have considerably faster disk and memory hardware than the
PDP-11s of yore. They also use a technique called demand paging to load into memory
only those parts of an executable program that are being executed. T hus, today, the
sticky bit on a regular executable file serves no putpose, and indeed it has no effect.
However, in Section 1.1.2, "Di rectories and Filenames, " page 6, we mentioned that
the sticky bit on an otherwise writable directory prevents file removal from that direc-
tory, or file renaming within it, by anyone except the file 's owner, or r oo t. Here is an
example:
$ Is -ld /tmp Show / tmp's permissions
drwxrwxrwt 19 root root 4096 Oct 20 14 : 04 Itmp
$ cd /tmp Change there
$ echo this is my file > arnolds-file Create a file
$ Is -1 arnolds-file Show its permiss ions
-rw-r--r-- 1 arnold devel 1 6 Oc t 20 14 : 14 arnolds-file
$ su - miriam Change to another user
Password :
$ cd /tmp Change to / tmp
$ rm arnolds-file Attempt to remove file
rm : remove write-protected regular file 'a r nolds-file'? y rm is cautious
rm : cannot remove 'arnolds - file' : Operation not permitted Kernel disallows removal
The primary purpose of this feature is exactly for directories such as / t mp , where
multiple users wish to place their files. On the one hand, the directory needs to be
world-writable so that anyone can create files in it. On the other hand, once it's world-
writable, any user can remove any other user's files! The directory sticky bit solves this
problem nicely. Use 'chmod +t ' to add the sticky bit to a fi le or directory:
$ mkdir mytmp Create directory
$ chmod a+wxt mytmp Add all-write, sticky bits
$ Is -ld mytmp Verify result
drwx rwxrwt 2 arnold devel 4 096 Oct 20 14 : 23 mytmp
Finally, note that the directory's owner can also remove files, even if they don' t belong
to him.
The s ize parameter indicates how many items there are in the list array. The return
value is 0 if all went well, -1 with errno set otherwise.
Unlike the functions for manipulating the real and effective UID and GID values,
this function may only be called by a process running as r oot . This is one example of
what POSIX terms a privileged operation; as such it's not formally standardized
by POSIX.
setgroups () is used by any program that does a login to a system, such as
I bin !login for console logins or I bin / sshd for remote logins with ssh.
introducing different APIs. Delving into the historic details is only good for producing
headaches, so we don ' t bother. Instead, we look at what POSIX provides and how each
API works. Furthermore, our discussion focuses on the real and effective UID values;
the GID values work analogously, so we don't bother to repeat the details for those
sys tem calls. The functions are as follows:
#include <sys / type s . h> POSIX
#inc lude <unistd .h>
There are three sets of functions . The first two were created by POSIX:
The next set of functions offers the original Unix API for changing the real and ef-
fective UID and GID. U nder the POSIX model, these function s are what a setuid- root
program should use to make a permanent change of real and effective UID:
However, for r oo t, this function sets all three of the real , effective, and saved set-
user IDs to the given value. Furthermore, the change is permanent; the IDs cannot
be changed back. (This makes sense: Once the saved set-user ID is changed, there
isn' t a different ID to change back to.)
in t setgid(gid_t gid)
This function does for the effective group ID what setuid ( ) does for the effective
user ID. The same distinction between regular users and root applies.
Finally, POSIX provides two functions from 4.2 BSD for historical compatibility.
It is best not to use these in new code. However, since yo u are likely to see older code
which does use these [unctions, we describe them here.
The saved set-user ID didn't exist in the BSD model, so the idea behind se treuid ( )
and setregid () was to make it simple to swap the real and effective IDs:
setreuid (geteui d(), getu i d ()) ; /' s wap rea l and effe ctive * /
11.6 Se[[ing Real and Effec[ive IDs 419
However, given POSIX's adoption of the saved set-user 10 model and the seteuid ( )
and s e t e gid () functions , the BSD functions should not be used in new code. Even
the 4.4 BSD documentation marks these functions as obsolete, recommending
seteuid () Isetui d ( ) and setegid ( ) Isetgid () instead.
ini t PIO 1
exec ( )
1
o pen ( ) I dup ( )
set groups () I setgi d ( ) I setuid ( )
e x ec ()
FIGURE 11.1
From init to g etty to login to shell
The code for l ogin is too complicated to be shown here, since it deals with a number
of tasks that aren' t relevant to the current discussion. But we can outline the steps that
happen at login time, as follows:
420 Chapter 11 • Permissions and U ser and Group 10 Numbers
1. ini t is the primordial process. It has PID 1 . All other processes are descended
from it. The kernel handcrafts process 1 at boot time and runs in i t in it. It
runs with both the real and effective UID set to zero, that is, as roo t.
2. ini treads / etc / ini t tab, which, among other things, tells ini t on which
hardware devices it should start a get ty process. For each such device (such
as the console, serial terminals, or virtual consoles on a GNU/Linux system) ,
ini t forks a new process. This new process then uses exec () to run get ty
("get tty, " that is, a terminal). On many GNU/Lin ux systems, this command
is named mi nge tty. The program opens the device, resets its state, and prints
the ' logi n : ' prompt.
3. Upon reading a login name, getty execs login . The login program looks
up the username in the password file , prompts for a password, and verifies the
password. If they match, the login process continues.
4. login changes to the user's home directory, sets up the initial environment,
and then sets up the initial set of open files. It closes all file descriptors, opens
the terminal , and uses dup () to copy the terminal's file descriptor to 0, 1, and
2 . This is where the already opened standard input, o utput, and error file de-
scriptors come from.
5. log in then uses setgr oups () to set the supplemental group set, setgid ( )
to set the real, effective, and saved set-group IDs to those of the user, and
finally setuid () to set all three of the real, effective, and saved se t-user IDs to
those of the logging-in user. Note that the call to setuid () must come last so
that the other two calls succeed.
6. Finally, login execs the user's login shell. Bourne-style shells then read
/ e tc / p rofile and $ HOME / .pro fi le, if those files exist. Finally, the shell
pnnts a prompt.
Note how one process changes its nature from system process to user process. Each
child of ini t starts out as a copy of ini t. By using e x ec ( ), the same process does
different jobs. By calling setu id ( ) to change from roo t to a regular user, the process
finally goes directly to work for the user. When you exit the shell (by CTRL-0 or exi t),
the process simply dies. i ni t then restarts the cycle, spawning a fresh get ty, which
prints a fresh 'log in :' prompt.
11.7 Working with All Three IDs: get res uid () and setre su id () (Linux) 421
m
1NOTE Open files remain ope n and usable , even after a process has changed
I
, anyorall of its UIDs or GIDs . Thus, setuid programs should open any necessary
Table 11 .1 summarizes the six standard functions for manipulating UID and
GID values.
TABLE 11 .1
API summary for setting real and effective 105
The setr esu id () and setresgid () functions are particularly valuable because
the semantics are clearly defined. A programmer knows exactly what the effect of the
call will be.
Furthermore, the calls are "all or nothing" operations: They either succeed completely,
making the desired change, or fail completely, leaving the current situation as it was.
This improves reliability since, again, it's possible to be sure of exactly what happened.
These are just a few of the many tactics for traversing a danger zone notable for
pitfalls, booby-traps, and landmines. See the next section for pointers ro o ther sources
of information.
1. Practical UNIX & Internet Security, 3rd edition, by Simson Garfinkel, Gene
Spafford, and Alan Schwartz, O'Reilly & Associates, Sebastopol, CA, USA,
2003 . ISBN: 0-596-00323-4.
This is the standard book on Unix security.
2. Building Secure Software: How to A void Security Problems the Right Way, by
John Viega and Gary McGraw. Addison-Wesley, Reading, Massachusetts,
USA, 2001. ISBN: 0-201-72152-X.
This is a good book on writing secure software and it includes how to deal with
setuid issues. It assumes you are familiar with the basic Linux/Unix APIs; by
the time you finish reading our book, you should be ready to read it.
3. "Setuid Demystified," by Hao Chen, David Wagner, and Drew Dean.
Proceedings of the 11th USENIX Security Sy mposium, August 5-9, 2002.
http: // www . cs . berkeley. edu / -da w/ papers / setuid-us enix 0 2 . pdf .
Garfinkel, Spafford, and Schwartz recommend reading this paper "before you
even think about writing code that tries to save and restore privileges." We
most heartily agree with them.
11.10 Summary
• The use of user and group ID values (UIDs and GIDs) to identify files and pro-
cesses is what makes Linux and Unix into multiuser systems. Processes carry both
real and effective UID and GID values, as well as a supplemental group set. It is
generally the effective UID that determines how one process might affect another,
and the effective UID , GID, and group set that are checked against a file 's permis-
sions. Users with an effective UID of zero, known as r oot or the superuser, are
allowed to do what they like; the system doesn't apply permission checks to such
a user.
• The saved set-user ID and saved set-group ID concepts came from System V and
have been adopted by POSIX with full support in GNU/Lin ux. Having these
separate ID values makes it possible to easily and correctly swap real and effective
UIDs (and GIDs) as necessary.
11.10 Summary 425
• Setuid and setgid programs create processes in which the effective and real IDs
differ. The programs are marked as such with additional bits in the file permissions.
The setuid and setgid bits must be added to a file after it is created.
• getuid ( ) and geteu id () retrieve the real and effective UIO values, respectively,
and getgid () and getegid () retrieve the real and effective GID val ues, respec-
tively. getgroups () retrieves the supplemental group set and in a POSIX envi-
ronment, can query the sys tem as to how many members the group set contains.
• The a ccess () function does file permission checking as the real user, makin g it
possible for setuid programs to check the real user's permissions . Note that, often,
examining the information as retrieved by sta t () may not provide the full picture,
given that the file may reside on a nonnative or network filesystem.
• The GLIBC euidacc ess () function is similar to ac cess ( ) but does the checking
on the base of the effective UIO and GID values.
• The setgid and sticky bits, when applied to directories, introduce extra semantics .
When a directOlY has its setgid bit on , new files in that directory inherit the direc-
tory's group. New directories do also, and they automatically inherit the setting
of the setgid bit. Without the setgid bit, new files and directo ries receive the effec-
tive GID of the creating process. The sticky bit on otherwise writable directories
restricts file removal to the file's owner, the directory's owner, and to root .
• The gro up set is changed with setgroups ( ) . This function isn't standardized by
POSIX, but it exists on all modern Unix systems. Only root may use it.
• Changing UIOs and GIDs is considerably involved. The semantics of various
system calls have changed over the years. New applications that will change only
their effective UIO/GI D should use seteui d () and seteg id ( ) . Non-roo t ap-
plications can also set their effective IDs with setu id () and se tgid () . The
setreu id () and set regi d () calls from BSD were intended for swapping the
UID and GID values; their use in new programs is discouraged.
• Applications running as roo t can permanently change the real, effective, and
saved ID values with setu id () and setgid () . One example of this is login,
which has to change from a system program running as root to a nonprivileged
login shell running as a regular user.
426 Chapter 11 • Permissions and User and Group ID Numbers
• The Linux setresu i d () and setre sgid () functi ons should be used when
they' re available, since they provide the cleanest and most reliable behavior.
• Writing setuid-root applications is not a task for a novice. If you need to do such
a thing, read up on security issues first ; the sources cited previously are excellent.
Exercises
1. Write a simple version of the id command. Its action is to print the user and
group IDs, with the group names, to standard output. When the effective and
real IDs are different, both are printed. For example:
$ id
uid=2076 (arnold) gid=42 (devel) group s =19 (floppy) ,42 (devel ) ,2 076(arno ld )
With user, that user's information is displayed ; otherwise, id prints the invok-
ing user's information. The options are as follows:
-G Print all the group values as numeric values only, no names.
-n Print the name only, no numeric values . Applies to user and group
values.
-g Print just the effective GID.
-u Print just the effective UID.
2. Write a simple program, named surne , that is seruid to yo urself. It should
prompt for a password (see getpass(3)) , which for the purposes of this exercise,
can be hardwired into the program's source code. If the person running the
program correctly enters the password, sume sho uld exec a shell. Get another
user to help yo u test it.
3. How do you feel about making s ume available to your friends? To your fellow
students or coworkers? To every user on your system?
In this chapter
427
C hapter 6, "General Library Interfaces - Part 1," page 165, presented the first
set of general-purpose library APIs. In a sense, those APIs support working
with the fundamental objects that Linux and Unix systems manage: the time of
day, users and groups for files , and sorting and searching.
This chapter is more eclectic; the APls covered here are not particularly related to
each other. However, all are useful for day-to-day Linux/Unix programming. Our
presentation moves from simpler, more general APls to more complicated and more
specialized ones.
/ * postconditi on : i si ze * /
return - 1 ;
1 In his 1981 ACM Turing Award lecture, however, Dr. H oare states that Alan Turing himself promoted this idea.
428
12. 1 Asserrion Statements: assert ( ) 429
This example states the conditions using comments. But wouldn't it be better to be
able to test the conditions by usi ng code? This is the job of the assert () macro:
#includ e <assert . h> ISOC
When the scalar expression is false , the assert () macro prints a diagnostic
message and exits the program (with the abort () function; see Section 12.4, "Com-
mitting Suicide: abort() ," page 445). c h12-assert. c provides the lsearch()
function again, this time with assertions and a main () function:
1 / * ch12-assert . c --- demonstrate assertions */
2
3 #include <stdio . h>
4 #include <assert . h>
5
6 / * lsearch --- return index in array of value, or -1 if n o t found * /
1
8 int lsearch ( int *array, size t size, int value)
9
10 size_t i;
11
12 assert (array != NULL ) ;
13 assert (size> 0) ;
14 f o r ( i = 0 ; i < siz e ; i++ )
15 if (array ( i j == va l ue )
16 return i;
11
18 assert (i == s ize ) ;
19
20 return -1;
21
22
23 / * main --- test out asserti o ns * /
24
25 int main (void )
26 {
21 #define NELEMS 4
28 static int array (NELEMSj ( 1, 17, 42 , 91 ) ;
29 int index;
30
31 index = lsearch (array, NELEMS, 21);
32 assert ( index == -1 ) ;
33
34 index = lsearch (array, NELEMS, 17 ) ;
35 assert ( index == 1 ) ;
36
430 Chapter 12 • General Library Interfaces - Part 2
2 As mentioned in Section 10. 2, "Signal Actions," page 348, some GNU/Linux di striburions disable creation of
core fi les. To reenabl e them, put the lin e 'ulimit - s -c unlimi ted' into your - / . profile fil e.
12.1 Asserrion Statements: asse r t ( ) 431
This case raises an important point about assertions. Frequently, programmers mis-
takenly use assertions instead ofruntime error checking. In our case, the test for ' array
! = NULL' should be a runtime check:
if ( a rr ay== NULL )
return -1 ;
The test for 'si ze> 0' (line 13) is less problematic; if s iz e is 0 or less than 0 , the
loop never executes and l searc h () (correctly) returns -1. (In truth, this assertion isn't
needed because the code correctly handles the case in which 'siz e < = 0 '.)
The logic behind turning off assertions is that the extra checking can slow program
performance and that therefore they should be disabled for the production version of
a program. CA.R. Hoare 3 made this observation, however:
Heisenberg's famous Uncertainty Principle from physics indicates that the more
precisely you can determine a particle's velocity, the less precisely you can determine
its position, and vice versa. In layman's terms, it states that the mere act of observing
the particle affects it.
3 Hints On Programming Language Design, c.A. R. Hoare. Stanford University Computer Science Technical Report
CS-73-403 (ftp : II repo r ts . stanford . edu / pub / cstr I reports l cs l t r 173 / 403 / CS -TR - 7 3- 403 . pdf ),
December, 1973 .
432 Chapter 12 • Gen eral Library Interfaces - Parr 2
The side-effect here is that the p pointer is incremented as part of the test. When
ND E BUG is defined, the expression argument disappears from the source code; it's never
executed. This can lead to an unexpected failure. However, as soon as assertions are
reenabled in preparation for debugging, things start working again! Such problems are
painful to track down.
However, memset () can be used on any kind of memory, not just dynamic memory.
The return value is the first argument: buf .
12.2 Low-Level Memory: The memXXX () Functio ns 433
Now, what's the issue with overlapping memory? Consider Figure 12.1.
vs.
memmove( & data[3], dat a , sizeof(data[O] ) * 4) ;
o 1 2 3 4 5 6 7 Index
Source ~I
Destination
FIGURE 12.1
Overlapping copies
The goal is to copy the four instances of s tru c t xyz in da ta [0] through da t a [3]
inco data [3 ] through da ta [6] . da ta [3] is the problem here; a byte-by-byte copy
moving forward in memory from data [0] will clobber d a ta [3] before it can be safely
copied into d ata (6] ! (It's also possible to come up with a scenario where a backwards
copy through memory destroys overlapping data.)
434 Chapter 12 • General Library Inrerfaces - Pan 2
The memcpy () function was the original System V API for copying blocks of mem-
ory; its behavior for overlapping blocks of memory wasn't particularly defined one way
or the other. For the 1989 C standard, the committee felt that this lack of defined be-
havior was a problem; thus they invented memmove ( ) . For historical compatibility,
memcpy () was left alone, with th e behavior for overlapping memory specifically stated
as undefined, and memmove () was invented to provide a routine that would correctly
deal with problem cases.
Which one should you use in your own code? For a library function that has no
knowledge of the memory areas being passed into it, you should use memmove ( ) . That
way, you're guaranteed that there won't be any problems with overlapping areas.
For application-level code that "knows" that two areas don't overlap, it's safe to
use memcpy ( ) .
For both memcpy () and memmove () (as for strcpy ()) , the destination buffer is the
first argument and the source is the second one. To remember this, note that the order
is the same as for an assignment statement:
dest = src;
(Many systems have manpages that don't help , providing the proto type as 'voi d
*memcpy(void *bufl, void *buf2 , size_t n)'andrelyingontheproseto explain
which is which. Fortunately, the GNU/Linux manpage uses better names.)
Another advantage to mememp () is that it's faster than the typical C implementation:
/ * memcmp --- e xamp le C implementation, NOT f or real use * /
int memcmp( co nst void *bu fl , canst void *buf2 , size_t count )
while (count- - ! = 0) {
diff = *cpl++ - *cp2++ ;
if (diff ,= 0)
return diff;
return 0 ;
The speed can be due to special " block memory compare" instructions that many archi-
tectures suppOrt or to comparisons in units larger than byres. (This latter ope ration is
tricky and is best left to the libraty's author.)
For these reasons, yo u should aLways use your library's version of mememp () instead
of rolling yo ur own . C hances are excellent that the library auth or knows the machine
better than yo u do .
The outer loop (lines 261-278) reads data blocks from the input file. The inner loop
(lines 272-276) uses mernchr () to find and count newline characters. The complicated
expression ' (buf + bytes_read ) - p' resolves to the number of bytes left between
the current value of p and the end of the buffer.
The comment on lines 259-260 needs so me explanation. Briefly, modern systems
can use characters that occupy more than one byte in memory and on disk. (This is
discussed in a little more detail in Section 13.4, "Can You Spell That for Me, Please? ",
page 521.) Thus, we has to use different code if it's distinguishing characters from bytes:
This code deals with the co unting-bytes case.
Amazingly, there are jive different functio ns for creati ng temp orary files. Three of
them wo rk by creating strings representing (s upposedly) unique filenames. As we'll see,
these should generally be avoided. The other two wo rk by creating and opening the
temporary file; these functions are preferred.
The functions all provide different variations of the same theme: They fill in or create
a buffer with the path of a unique temporary filename. The file is unique in that the
created name doesn't exist as of the time the function s create the name and return it.
The functions work as follows:
I
... use tfile ...
On modern systems, such code will likely fail; string constants nowadays
find themselves in read-only seg ments of memory.
Using these functions is quite straightforward. The file ch12 -mkt e mp . c demonstrates
mkt emp ( ) ; changes to use the other functions are not difficult:
1 / * ch12-mktemp . c --- demonst rate naive use of mktemp () .
2 Err or checki ng omitted for brevi ty * /
3
4 # include <stdi o . h>
5 # include <f cntl.h> / * for open flag s */
6 #in clude <limits.h> / * for PATH_MAX * /
7
8 int main( void )
9
10 stat ic char template[l "/tmp/myfileXXXXXX" ;
11 cha r fname[PATH_MAX 1;
12 static char mesg[l =
13 "He re's lookin' at y ou , kid! \ n": / * beats "hello, worl d" * /
14 int f d;
15
16 strcpy(fname, template):
17 mktemp ( fnam e) ;
18
19 / * RACE CONDITION WI NDOW OP ENS * /
20
21 print f (" Filename is %s\n", fname ) :
22
23 /* RACE CONDITION WINDOW LASTS TO HERE */
24
25 fd = open(fname, O_CREATlo_ RDWRlo_TRUNC, 0600);
26 write (fd, me s g, str l en (mes g )) ;
27 close (fd) :
28
29 /* unlink( fname ) ; * /
30
31 r eturn 0 :
32
12.3 Temporary Files 439
The templ a te variable (line 10) defines the filename template; the 'xxxxxx' will be
replaced with a unique value. Line 16 copies the template into fname , which isn' t
const : It can be modified. Line 18 calls mktemp () to generate the filename, and line
21 prints it so we can see what it is. (We explain the comments on lines 19 and
23 shortly. )
Line 25 opens the file , creating it if necessary. Line 26 writes the message in mesg,
and line 27 closes the file. In a program in which the file should be removed when we're
done with it, line 29 would not be commented out. (Sometimes, a temporary file should
not be unlinked; for example, if the file will be renamed once it's completely written. )
We've commented it our so that we can run this program and look at the file afterwards.
Here's what happens when the program runs:
$ ch12-mktemp Run the program
File name is / tmp / myfileQES4WA Filename printed
S cat /tmp/rnyfileQES4WA
Here' s looki n' at you, kid' Contents are what we expect
$ Is -1 /tmp/rnyfileQES4WA So are owner and permissions
-rw------ - 1 arnold devel 2 8 Sep 18 09 : 27 /tmp/myfileQES4WA
$ rrn /tmp/myfileQES4WA Remove it
$ ch12-mktemp Is same filename reused?
Filename is / tmp / myfileic7xCy No. That's good
S cat /tmp/rnyfileic7xCy Check contents again
Here' s lookin' at y ou , kid'
$ Is -1 /trnp/rnyfileic7xCy Check owner and permissions again
-rw------ - 1 arnold devel 28 Sep 18 09 : 28 /tmp /myfileic7 x Cy
The professor's program uses mktemp () to create temporary files , and the student,
having in the past watched the grading program create and remove temp orary files, has
figured out the algorithm that mkternp () uses. (The CUBe version doesn't have this
problem, but not all systems use GLIBC!) Figure 12.2 illustrates the race condition
and how the student takes advantage of it.
2 3 4
f- Time_ .. .. ..
Grader: Imktemp ()
gives name
lOS stops
program
I Opens file
writes data
FIGURE 12.2
Race condition with mkternp ()
1. The grading program uses rnkt ernp () to generate a filename. Upon return
from mkt e mp ( ) , the race condition window is now open (line 19 in
ch1 2-mktemp . c).
2. The kernel stops the grader so that other programs on the system can run. This
happens before the call to open ( ) .
While the grader is stopped, the student creates the file with the same name
mkternp () returned to the grader program. (Remember, the algorithm was easy
to figure out.) The student creates the file with an extra link to it, so that when
the grading program unlinks the file , it will still be available for perusal.
3. The grader program now opens the file and writes data to it. The student cre-
ated the file with -rw-rw-rw- permissions, so this isn't a problem.
4. When the grader program is finished, it unlinks the temporary file. However,
the student still has a copy. For example, there may be a profit opportunity to
sell classmates their grades in advance.
Our example is simplistic; besides just stealing the grade data, a clever (if immoral)
student might be able to change the data in place. If the professor doesn ' t double-check
his program's results, no one would be the wiser.
12.3 Temporary Files 441
I~ any ofthis .
>
NOTE We do not recommend doin g a ny of this! If you are a student, don 't try
First and fore most, it is un ethical. Seco nd , it's likely to get you kicked
L out of school. Third , your professors are probably not so naive as to have used
\~ mktemp () to code their programs. Th e examp le is for illustration only!
~
Fo r the reasons given, and others, all three functions described in this section should
never be used. T hey exist in POSIX and in G LIBC o nly to support o ld programs that
were written before the dangers of these routines were understood. To this end,
GNU/ Linux systems generate a warning at link time:
$ cc ch12 -mktemp. C -0 ch12 -mktemp Compile the program
/ tmp/cclXCvD 9 . o( . tex t+Ox35) : In fun ction ' mai n ' :
: the use of 'mk t emp' is dangerous , bette r use . mkstemp ,
The second functi on is for use with the file-d escriptor-based sys tem calls:
#i nclude <stdlib . h> XSI
tmp f ile () returns a FILE * value representing a unique, open temporary file. The
file is opened in "w+b" mode. The w+ means "open for reading and writing, truncate
the file first," and the b means binary mode, not text mode. (There's no difference on
a GNU/Linux or Unix system, but there is o n other system s.) The file is automatically
deleted when the file pointer is closed; there is no way to get to the file's name to save
its contents. The program in c h12-tmpf i le . c demonstrates tmpf i le ():
442 Chapter 12 • G eneral Library Interfaces - Part 2
int main(void)
prin tf ( "Got back <%s> \ n", buf ) ; / * Prin t ret rieved data * /
The returned F ILE * value is no different from any other FILE * returned by
fope n () . When run , the res ults are what 's expected:
$ ch12-tmpfile
Got ba c k <Here 's looki n ' at you, kid! >
We saw earlier that the CLIBe authors recommend the use of mkstemp ( ) fun ction:
$ cc ch12-mktemp.c -0 ch12-mktemp Compile the program
/ tmp/cclXCvD9 . o( . text+Ox35 ) : In function ' main ' :
: t h e use o f ' mktemp' is dangerous, b e tter use 'mkstemp'
#include <stdio.h>
#include <fcntl . h> /* for open flags * /
#include <limits . h> / * for PATH_MAX * /
int main(void)
return 0 ;
$ df
Filesys tem 1K-blocks Us ed Avail able Use % Mount e d on
Ide v/hda2 61 98 436 51360 20 74 7 5 44 88%
I dev /hda5 61431 520 27720248 30 59 0648 48 % Id
non e 256616 0 256 6 1 6 0% Id ev / s hm
The tmpfs filesystem type provides a RAM disk: a portion of memory used as if it
were a disk. Furthermore, the tmpf s filesystem uses the Linux kernel's virtual memory
mechanisms to allow it to grow beyond a fixed size limit. If you have lots of RAM in
your system, this approach can provide a noticeable speedup. To test performance we
started with the / u s r / s hare / di ct / 1 inux. wo rds file, which is a sorted list of correctly
spelled words, one per line. We then randomized this file so that it was no longer sorted
and created a larger file containing 500 copies of the random version of the file:
$ ls -1 Itmp/randwords.big Show size
-rw-r --r - - 1 a rno ld devel 20 4 65250 0 Sep 18 16 : 02 I tmp / ra ndwords . b ig
$ we -1 Itmp/randwords.big How many words?
22713 5 00 I tmp / randwo rds . big Over 22 million!
We then sorted the file , first using the default / tmp directory, and then with TMPDIR
set to / dey / shm:)
$ time sort /tmp/randwords.big > Idev/nu11 Use real files
Interestingly, using the RAM disk was only marginally faster than using regular files.
(On some further tests, it was actually slower!) We conjecture that the kernel's buffer
cache (see Section 4.6.2, "Creating Files with creat () ," page 109) comes into the
picture, quite effectively speeding up file I10.6
5 This use of I dev / shm is really an abuse of it; it's intended for use in implementir.g shared memory, nor for use
as a RAM disk. Nevertheless, it's helpful for illustrating our point.
6 Our system has 512 megabytes of RAM , which to old fogies like the author seems like a lot. However, RAM prices
have fall en, and systems with one or more gigabytes of RAM are nor uncommon , at least for software developers.
12.4 Commiuing Suicide: abort ( ) 445
sprintf (tfile , "% 5/%5 ", tmpdir, templat e) ; Create final template
fd = mkstemp(tfil e) ; Create and open fi le
.. use tempfile via fd ..
close ( fd ) ; Clean up
unlink (t file ) ;
free(tfile) ;
Depending on your application's needs, you may wish to unlink the file immediately
after opening it instead of doing so as part of the cleanup.
void abort(void);
7 Swap space cons isrs of one or m o re dedicared chu n ks of d isk, used to ho ld rhe pans of execuring processes rhar
are nor currenrly in memory.
446 Chapter 12 • General Library Interfaces - Part 2
The abort () function sends a SIGABRT signal to the process itself. This happens
even if SIGABRT is blocked or ignored. The normal action for SIGABRT, which is to
produce a core dump, then takes place.
An example of abart () in action is the assert () macro described at the beginning
of this chapter. When assert () finds that its expression is false, it prints an error
message and then calls abort () to dump core.
According to the C standard, it is implementation defined whether or not abort ( )
does any cleanup actions. Under GNU/Linux it does: All <stdio . h> FILE * streams
are closed before the program exits. Note, however, that nothing is done for open files
that use the file descriptor-based system calls. (Nothing needs to be done if all that are
open are files or pipes. Although we don't discuss it, file descriptors are also used for
network connections, and not closing them cleanly is poor practice.)
The goto statement is co nstrained by the C language to jump to a label within the
current function. Many languages in the Algol family, such as Pascal, allow a gata to
"jump out" of a nested function into an earlier calling function. However in C, there
is no way, within the syntax of the language itself, to jump to a location in a different
function , even a calling one. Such a jump is termed a nonlocal goto.
Why is a non local goto useful? Consider an interactive program that reads commands
and processes them. Suppose the user starts a long-running task, gets frustrated or
changes his mind about doing the task, and then presses CTRL-C to generate a SIGINT
signal. When the signal handler runs, it can jump back to the start of the main
12.5 Nonlocal GO[Qs 447
Internally, ed sets up a return point before the command loop, and the signal handler
then does a nonlocal goto back to the return point.
The jmp_ buf type is typedef' d in <setjrnp . h> . setjrnp ( ) saves the current "envi-
ronment" in env. env is typically a global or file-level static variable so that it can
be used from a called function. This environment includes whatever information is
necessary for jumping to the location at which setjmp () is called. The contents of a
jmp_ buf are by nature machine dependent; thus , jmp_buf is an opaque type: something
you use without knowing what's inside it.
setjmp () returns 0 when it is called to save the current environment in a jmp_buf .
It returns nonzero when a nonlocal jump is made using the environment:
jmp_buf command_ loop ; At global level
... then in main () ...
if (setjmp(command_loop) 0) State saved OK, proceed on
l on gj mp () makes the jump. The first parameter is a j mp_bu f that must have been
initialized by setjmp ( ) . The second is an integer nonzero val ue that set jmp () returns
in the original environment. This is so that code such as that just shown can distinguish
between setting the environment and arriving by way of a nonlocal jump.
The C standard states that even if long jmp ( ) is called with a second argument of
0, setjmp () still returns nonzero. In such a case, it instead returns 1.
The ability to pass an integer value and have that come back from the return of
s etjmp ( ) is useful ; it lets user-level code distinguish the reason for the jump. For in-
stance, gawk uses this capability to handle the break and c ont inue sta tements inside
loops. (The awk language is deliberately similar to C in its syntax for loops, with whi le,
do-wh ile, and f or loops, and break and conti nue.) The use of setjmp () looks like
this (from eval . c in the gawk 3.1.3 distribution):
501 c ase Node_K_whil e:
508 PUSH_BINDING ( l oop _t ag_stac k , loop_ tag , l oop_ tag_v a lid ) ;
509
5 10 s tab le_tre e = tre e ;
511 whi le ( eva l _ c ondition( stable_ tree->l n ode))
512 INC REMENT (st able_tr ee -> e x ec_ cou n t ) ;
5 13 switch ( se tjmp (l oop _ tag ) ) {
514 case 0 : / * normal non-j u mp * /
515 (vo i d ) i nte rpr et ( s tab le_tr ee-> rno d e) ;
5 16 br eak;
5 11 ca s e TAG_ CONTINUE : / * continu e st ateme nt * /
518 b reak;
519 case TAG_ BREAK : / * brea k sta t ement * /
520 RESTORE_BIND ING ( loop_tag_ stack, loop_ tag, loop_tag_vali d ) ;
52 1 r et urn 1 ;
522 d e fault :
523 can t _ happ e n() ;
524
525
526 RESTORE_BINDI NG (loop_tag_ s ta c k, lo op _ t a g, loop_ta g_va lid ) ;
521 brea k ;
This code fragment represents a wh i le loop. Line 508 manages nested loops by
means of a stack of saved jmp_bu f variables. Lines 511-524 run the wh il e loop (using
a C whi 1 e loop!). Line 511 tests the loop's condi tion. If it's true, line 513 d oes a s wi t c h
°
on the s et j mp ( ) return value. If it's (lines 514-516), then line 515 runs the state-
ment's body. However, when s e tjmp () returns either TAG_BREAK or TAG_ CONTINUE ,
12.5 Nonlocal GO[Qs 449
the swi t ch statement handles them appropriately (lines 517-518 and 519-521 ,
respectively) .
An aWk-level break statement passes TAG_BREAK to longjrnp ( ) , and the awk-Ievel
cont inue passes TAG_ CONTINUE . Again, from eval. c , with some irrelevant details
omitted:
657 case Node_K_break :
658 INCREMENT(tree->exec_count) ;
You can think of setjrnp () as placing the label, and longjrnp () as the goto,
with the extra advantage of being able to tell where the code "came from" (by the
return value).
The main difference is the savesigs argument to sig setjrnp (). If nonzero, then
the current set of blocked signals is saved in env, along with the rest of the environment
that would be saved by setjrnp ( ) . A siglongj rnp () with an env where savesi gs
was true restores the saved process signal mask.
I NOTE POSIX is also clear that if savesigs is zero (false ), it's undefined whether
I
I
th~ process ~ignal mask i.s saved an~ r:stored , ju~t like setjrnp () /longj rnp ( ) .
t This In turn Implies that If you're gOing to use 'slgsetjrnp (env, 0)' you may
as well not bother: The whole point is to have control over saving and restoring
the process signal mask!
Third, if you wish to change a local variable in the function that calls setjrnp ( ),
after the call, and you want that variable to maintain its most recently assigned value
after a long jrnp (), you must declare the variable to be volatile . Otherwise, any
non-volatile local variables changed after setjrnp () was initially called have indeter-
minate values. (Note that the jrnp_buf variable itself need not be declared vola til e.)
For example:
12.5 Nonlocal Gotos 451
In this example, only j (line 2 1) is guaranteed to maintain its value fo r the second
call to p r intf () . The value of i (line 20), according to the 1999 C standard, is inde-
terminate. It may be 6, it may be 5 , or it may even be something else!
Fo urth, as described in Sectio n 12. 5.2, "Handling Signal M asks: sigse tjmp () and
sig l ongj mp ( ) ," p age 449, the 1999 C standard makes no statement about the effect,
if any, of set jmp () and long jmp () on the state of the program 's signals. If that's im-
portant, you have to use s i g s etjmp () and siglongj mp () instead.
Fifth, these ro utines provide amazing potential for memo ry leaks! Consider a program
in which main () calls se tj mp () and then calls several nes ted functions, each of which
allocates dynamic memory with ma lloe ( ) . If the most deeply nested function does a
longjmp ( ) back into mai n ( ) , the pointers to the dynamic memory are lost. Consider
eh12 - memlea k . c :
452 Chapter 12 • General Library Interfaces - Part 2
This program sets up an infinite loop, using s etjmp () and long j mp ( ) . Line 20
uses sbrk () (see Section 3.2.3, "System Calls: brk () and sbr k ( ) ," page 75) to find
the current start of the heap, and then line 22 calls setjmp ( ) . Line 25 gets the current
start of the heap; this location changes each time through since the code is entered re-
peatedly by l ongjmp ( ) . Lines 27-28 compute how much memory has been allocated
and print the amount. Here's what happens when it runs:
$ ch12 - memleak Run the program
setjmp called
memsize 0
memsize 6372
mems iz e 6372
mem s i ze 6372
memsize 10468
me msize 10 46 8
memsize 1 4564
memsize 14564
mem size 18660
memsize 18660
The program leaks memory like a sieve. It runs until interrupted from the keyboard
or until it runs out of memory (at which point it produces a massive core dump).
Functions f1 () and f2 () each allocate memory, and f 2 () does the longjmp ( )
back to main () (line 51). Once that happens, the local pointers (lines 41 and 49) to
the allocated memory are gone! Such memory leaks can be difficult to track down because
they are often for small amounts of memory, and as such, they can go unnoticed liter-
ally for years. 8
This code is clearly pathological, but it's intended to illustrate our point: se t jmp ()
and l ongjmp () can lead to hard-to-find memory leaks. Suppose that f1 () called
fr e e () correctly. It would then be far from obvious that the memory would never be
freed. In a larger, more realistic program, in which l ongjmp () might be called only
by an if, such a leak becomes even harder to find.
In the presence of set jmp () and longjmp ( ), dynamic memory must thus be
managed by global variables, and you must have code that detects entry with long jmp ( )
(by checking the setjmp () return value). Such code should then clean up any dynam-
ically allocated memory that's no longer needed.
Sixth, longjmp ( ) and s ig longjmp () should not be used from any functions regis-
tered with atexit ( ) (see Section 9.1.5.3, "Exiting Functions," page 302).
Seventh, setj mp () and lon gj mp ( ) can be costly operations on machines with lots
of registers.
Given all of these issues, you should take a hard look at your program's design. If
you don't need to use s et jmp () and longjmp ( ), then you're probably better off not
doing so . However, if their use is the best way to structure your program, then go ahead
and use them, but do so carefully.
I
we can do . See Section 12.9, "Suggested Reading," page 480, for other sources
of more detailed information.
Computers, by design, are deterministic. The same calculation, with the same inputs,
should produce the same outputs, every time. Thus, they are not good at generating
truly random numbers, that is , sequences of numbers in which each number in the se-
quence is completely independent of the number (or numbers) that came before it.
Instead, the kinds of numbers usually dealt with at the programmatic level are called
pseudorandom numbers. That is, within any given sequence, the numbers appear to be
independent of each other, but the sequence as a whole is repeatable. (This repeatability
can be an asset; it provides determinism for the program as a whole.)
Many methods of producing pseudorandom number sequences work by performing
the same calculation each time on a starting, or seed, value. The stored seed value is
12.6 Pseudorandom Numbers 455
then updated for use next time. APIs provide a way to specify a new seed. Each initial
seed produces the same sequence of pseudorandom numbers, although different seeds
(should) produce different sequences.
27
28 / * 6 */
29
30 };
31
32 / * main - -- print N different die faces * /
33
34 int main(int argc, char **argv }
35
36 int nfaces;
37 int i, j, k;
38
39 if (argc != 2)
40 fprintf (stderr, "usage : %s number-die-faces\n " , argv[O]);
41 exit ( l } ;
42
43
44 nfaces = atoi(argv[ l] } ;
45
46 if (nfaces <= O) {
47 fprintf (stde rr, "usage : %s number -die- faces \n", argv[O]);
48 fprintf(stde rr, " \tUse a positive number! \ n" } ;
49 exit(l} ;
50
51
52 for (i = 1; i <= nfaces; i++) {
53 j = rand(} % 6; / * f orce to range 0 <= j <= 5 * /
54 printf ( "+- ------ +\n" } ;
55 for ( k = 0; k < 3; k++ )
56 printf(" I% s l\ n", die_faces [(j * 3 } + k] } ;
57 printf ( "+ -------+ \ n \ n" } ;
58
59
60 return 0 ;
61
This program uses simple ASCII graphics to print out the semblance of a die face.
You call it with the number of die faces to print. This is computed on line 44 with
at o i (). (In general , atoi () should be avoided for production code since it does no
error or overflow checking nor does it do any input validation.)
The key line is line 53, which converts the rand () return val ue into a number be-
tween zero and five, using the remainder operator, %. The val ue 'j * 3' acts a starting
index into the die_face s array for the three strings that make up each die's face. Lines
54 and 57 print out surrounding top and bottom lines, and the loop on lines 55 and
56 prints the face itself. When run, it produces output like the following:
12.6 Pseudorandom Numbers 457
I
I * * I
I I
+-------+
+-------+
I * * I
I I
I * * I
+-------+
The rand () interface dates back to V7 and the PDP-II. In particular, on many
systems the result is only a I6-bit number, which severely limits the range of numbers
that can be returned. Furthermore, the algorithm it used is considered "weak" by
modern standards. (The GLIBC version of rand () doesn't have these problems, but
portable code needs to be written with the awareness that rand () isn't the best API
to use.)
ch12 -rand. c uses a simple technique to obtain a value within a certain range: the
% operator. This technique uses the low bits of the returned value (just as in decimal
division, where the remainder of dividing by IO or 100 uses the lowest one or two
decimal digits). It turns our that the historical rand () generator did a better job of
ptoducing random values in the middle and higher-order bits than in the lower bits.
Thus, if yo u must use rand ( ) , try to avoid the lower bits. The GNU/Linux rand(3)
manpage cites Numerical Recipes in C,9 which recommends this technique:
j = l+(int) ( 10 . 0 *rand ()/( RAND_MAX+1.0)) ; 1* for a number between 1 and 1 0 * 1
long randorn(void ) ;
void srandorn (unsigned int seed) ;
char *initstate (unsigned int seed, char *st ate, size_t n ) ;
char *setstate (char *state ) ;
9 NumericaLRecipes in C: The Art of Scientific Computing, 2nd ed ition, by Wi lliam H . Press, Brian P. Flannery,
Sa ul A. Teukolsky, and William T. Verrerling. Cambridge Un iversity Press, USA, 1993. ISB : 0-52 1-43108-5.
458 Chapter 12 • General Library Interfaces - Part 2
The first two functions correspond closely to rand () and srand () and can be used
similarly. However, instead of a single seed value that produces the sequence of pseudo-
random numbers, these functions use a seed value along wi th a state array: an array of
bytes that holds state information for calculating the pseudorandom numbers. The last
two functions let you manage the state array.
long random(void);
Returns a number between 0 and 2 31 - 1. (Although the GNU/Linux random(3)
man page says between 0 and RAND_MAX, this is only true for GLIBC systems where
RAND_MAX equals 2 31 - 1. On other systems, RAND_MAX might be smaller. POSIX
is explicit that the range is 0 to 2 31 - 1.)
vo i d srandam (unsigned int seed ) ;
Sets the seed. If srandam () is never called, the default seed is 1.
char *initstate(unsigned int seed, char *state, size_t n);
Initializes the state array with information for use in generating random numbers.
seed is the seed value to use, as for srandom ( ) , and n is the number of bytes in
the state array.
n should be one of the values 8, 32, 64, 128, or 256 . Larger values produce better
sequences of random numbers. Values less than 8 cause random () to use a simple
random number generator similar to that of rand () . Values larger than 8 that are
not equal to a value in the list are rounded down to the nearest appropriate value.
char *setstate(char *state);
Sets the internal state to the s ta te array, which must have been initialized by
ini tstate ( ) . This lets you switch back and forth between different states at will,
providing multiple random number generators.
If initstate () and setstate () are never called, random ( ) uses an internal state
array of size 128.
The state array is opaque; you initialize it with initstate () and pass it to the
random () function with sets tate ( ) , but you don ' t otherwise need to look inside it.
If you use initsta te() and sets tate(), you don't have to also call srandom(),
12.6 Pseudorandom Numbers 459
since the seed is included in the state information. ch12 - random . c uses these routines
instead of rand ( ) . It also uses a common technique, which is to seed the random
number generaror with the time of day, added to the PID.
1 /* chI2-random . c --- generate die rolls, using random() . */
2
3 #include <stdio . h>
4 #include <stdlib . h>
5 #include <sys/types . h>
6 #include <unistd . h>
1
8 char *die_faces[] /* ASCII graphics rule' */
... as before.
32 };
33
34 /* main --- print N different die faces */
35
36 int main(int argc, char **argv)
31
38 int nfaces;
39 int i, j, k ;
40 char state[256] ;
41 time_t now;
42
.. . check args, compute nfaces, as before.
55
56 (void) time(& now); /* seed with time of day and PID */
51 (void) initstate( (unsigned int) (now + getpid()) , state, sizeof state);
58 (void) setstate(state);
59
60 for (i = 1 ; i <= nfaces; i++) (
61 j = random() % 6 ; /* force to range 0 <= j <= 5 */
62 printf ("+----- --+ \n") ;
63 for (k = 0 ; k < 3 ; k++)
64 printf("I%sl\n " , die_faces[(j * 3) + k]) ;
65 printf ("+----- --+ \n\n " ) ;
66
61
68 return 0 ;
69
Including the PID as part of the seed value guarantees that you'll get different results,
even when two programs are started within the same second.
Because it produces a higher-quality sequence of random numbers , r a ndom () IS
preferred over ra nd ( ) , and GNU/Linux and all modern Unix systems support it.
460 Chapter 12 • General Library Imerfaces - Part 2
Ide v/ random
[Bytes read from this file are] within the estimated number of bits of noise in the
entropy pool. I dev I random should be suitable for uses that need high quality
randomness such as one-time pad or key generation. When the entropy po ol is
empty, reads to I dev / random will block until additional environmental noise
is gathered.
I dev / ur andom
[This device will] return as many bytes as are requested. As a result, if there is not
sufficient entropy in the entropy pool, the returned values are theoretically vulner-
able to a cryptographic attack on the algorithms used by the driver. Knowledge
of how to do this is not available in the current non-classified literature, but it is
theoretically possible that such an attack may exist. If this is a concern in your
application, use I dev / randorn instead.
For most applications, reading from Idev / urandom should be good enough. If
you're going to be writing high-quality ctyptographic algorithms, you should read up
on cryptography and randomness first; don't rely on the cursory presentation here!
Here's our die rolling program, once more, using I dev lurandorn:
1 /* ch12-devrandom.c - - - generate die rolls, u s ing / dev / urandom . * /
2
3 #include <stdi o . h>
4 #include <fcntl . h>
5 #include <s tdlib.h>
6
7 char *di e _faces [] / * ASCII graph ics rule! */
... as before ...
31 } ;
32
33 /* myrandom -- - return data from I d ev /u random as unsigned l ong * /
34
12. 7 Meracharacrer Expansions 461
Lines 35-47 provide a functio n-call interface to Idev lurandom, reading an unsi gned
l ong's worth of data each time. The cos t is one file descriptor that remains open
throughout the program's life.
int fnma tch (const char *pa ttern, const char *string, int flags ) ;
This function matches string against pat te rn, which is a regular shell wildcard
pattern. The flags value (described shortly) modifies the function's behavior. The re-
turn value is 0 if string matches pattern, FNM_NOMATCH ifit doesn't, and a nonzero
value if an error occurred. Unfortunately, POSIX doesn't define any specific errors;
thus , yo u can only tell that something went wrong, but not what.
The f lags variable is the bitwise-OR of one or more of the flags listed in Table 12.1 .
TABLE 12.1
Flag values for frona t ch ( )
frona tch () works with strings from any source; strings to be matched need not be
actual filenames. In practice though, you would use fnmatch () from code that reads
a directory with readdir () (see Section 5.3.1, "Basic Directory Reading," page 133):
12.7 Meracharacrer Expansions 463
struct dirent dp ;
DIR *dir;
c har pattern[lOO] ;
... fill pattern, open directory, check for errors ...
while (( dp = readdir(dir)) != NULL )
if ( fnmatch(pattern, dir->d_name, FNM_PERI OD) 0)
/ * filename matches pattern */
else
continue ; / * doesn't match */
GNU 15 uses fnmatch() to implement its --ignore option. You can provide
multiple patterns to ignore (with multiple options), 15 tests each filename against all
the patterns. It does this with the file_interesting () function in ls. c :
2269 / * Return n o nzer o i f the file in ' next' should be listed . * /
2210
2211 static in t
2212 file_interesting (c onst struct dirent *next)
2213
2214 register struct ignore-pattern *ignore;
2215
2216 for ( ign o re = ignore-patterns; igno re ; ignore = ignore->next )
2211 if ( fnmatch ( ignore->pattern , next - >d_name , FNM_PERIOD ) == 0)
2218 re t urn 0 ;
2219
2280 if ( really_all_files
2281 II next->d_name[O] ! = '.'
2282 II (all_files
2283 && next->d_name[l] '= ' \0 '
2284 && (next ->d_name[l] != II next->d_name[2] ! = '\0')))
2285 return 1 ;
2286
2281 return 0 ;
2288 }
The loop on lines 2276-2278 tests the filename against the list of patterns for files
to ignore. If any of the patterns matches, the file is not interesting and file_interest-
ing () returns false (that is, 0).
The all_files variable corresponds to the -A option, which shows files whose
names begin with a period but that aren't'.' and' .. '. The really_all_files variable
corresponds to the -a option, which implies -A, and also shows' .' and' .. '. Given this
information, the condition on lines 2280-2284 can be represented with the following
pseudocode:
464 Chapter 12 • General Library Interfaces - Parr 2
III NOTE fnrna tch () can be an expensive function if it's used in a locale that
uses a multibyte character set. We discuss multibyte character sets in
Section 13.4, "Can You Spell That for Me, Please ?", page 521 .
The glob () function does directory scanning and wildcard matching, returning a
list of all path names that match the pattern. Wildcards can be included at multiple
points in the pathame, not just for the last component (for example, '/usr / * / * . s o') .
The arguments are as follows:
The glob_t structure holds the list of pathnames that glob () produces:
typedef struct ( POSIX
size_t gl-pachc ; Cou nt of paths matched so far
char **gl-pathv; List of matched pathnames
size_t gl_offs ; Slots to reserve in gl---pathv
glob_ t ;
size_t glJ)athc
The number of paths that were matched.
char **glJ)athv
An array of matched pathnames . glJ)a thy [gl-pa the 1 is always NULL .
size_t gl_offs
" Reserved slots" in glJ)a thy. The idea is to reserve slots at the.front of g lJ)a thv
for the application to fill in later, such as with a command name and options. The
list can then be passed directly to exeev () or exeevp () (see Section 9.1.4,
"S tarring New Programs: The exec () Family, " page 293). Reserved slots are set
to NULL . For all this to work, GLOB_DOOFFS must be set in flags.
TAB LE 12.2
Flags for glob ( )
Flag na me Meaning
GLOB_APPEND Append current call's results to those of a previous call.
GLOB_DOOFFS Reserve gl_offs spots at the front of glJlathv.
GLOB_MARK Append a I character to the end of each path name that is a directory.
GLOB_NOCHECK If the pattern doesn 't match any filename, return it unchanged.
GLOB_NOESCAPE Treat backslash as a literal character. This makes it impossible to escape
wildcard metacharacters.
GLOB_ NOSORT Don't sort the results; the default is to sort them.
/* GLIBC components: * /
int gl_ flags; Copy of flags, additional CLlBC flags
void ( *gl_closedir ) ( DIR * ) ; Private version of c1osedir()
struct dirent * ( *g l_r e addir ) (DIR * ) ; Private version of readdir()
DIR * ( *gl_ opendir) (const char * ) ; Private version of opendir()
int ( *gl_lsta t) (const c har * struct sta t * ) ; Private version of Istat()
int ( *gl _ stat ) (con st char * struct stat * ) ; Private version of stat()
glob_t;
int gl_flags
Copy of flag s. Also includes GLOB_MAGCHAR if patt ern included any
metacharacters.
vo id (*gl_closedir ) (DIR *)
Pointer (0 alternative version of closedir ( ) .
struc t dirent * (*gl_readdir) (DIR *)
Pointer to alternative version of readdir ( ) .
DIR * (*gl_opendir) (const char * )
Pointer to alternative version of opendir ( ) .
int (*gl_lstat) (canst char *, struct stat * )
Pointer (0 alternative version of 1 s ta t ( ) .
in t (*gl_stat) (canst char *, struct stat *)
Pointer (0 alternative version of s ta t ( ) .
The pointers (0 private versions of the standard functions are mainly for use in im-
plementing GLIBC; it is highly unlikely that you will ever need to use them. Because
GUBC provides the gl_flags field and additional flag values , the manpage and Info
manual document the rest of the CUBC glob_t structure. Table 12.3 lists the addi-
tional flags .
The GLOB_ONLYDIR flag functions as a hint to the implementation that the caller is
only interested in directories. Its primary use is by other functions within GLIBC, and
a caller still has to be prepared to handle nondirectory files. You should not use it in
your programs.
glob () can be called more than once: The first call should not have the GLOB_ APPEND
flag set, and all subsequent calls must have it set. You cannot change gl_ offs between
12.7 Metacharacter Expansions 467
TABLE 12 .3
Additional GLlBC flags for glob ()
calls, and if yo u m odify any values in gl-pathv or gl-pathc, yo u must restore them
before making a subsequent call to glob ( ) .
The ability to call glob () multiple times allows yo u to build up the results in a single
lise. This is quite useful; it approaches the power of the shell's wildcard expansion facil-
ity, but at the C programming level.
glob () returns 0 if there were no problems or one of the values in Table 12.4 if
there were.
TABLE 12.4
glob () return values
Constant Meaning
Scanning Stopped early because GLOB_ERR was set o r because
( *errfunc) () returned nonzero.
glob free () releases all the memory that glob () dynamically allocated. The follow-
ing program, ch12 -glob. c , demonstrates glob ( ) :
468 Chapter 12 • General Library Interfaces - Part 2
Line 7 defines myname, which points to the program's name; this variable is for error
messages from glo b er r ( ) , defined on lines 11- 15.
Lin es 33-45 are the heart of the program. They loop over the patterns given on the
co mmand line, calling glob () on each one to append its results to the list. Most of
the loo p is error handling (lines 36- 44) . Lines 47-48 print the resulting list, and lines
50-51 clean up and return.
Lines 39-41 aren 't pretty; a separate function that converts the integer constant to
a stri ng should be used; we've done it this way primarily to save space. Code like this
is tolerable in a small program, but a larger program should use a functio n.
If yo u think abo ut all the wo rk going on under the hood (opening and reading direc-
tories, matching patterns, dynamic allocation to grow the list, sorting the list) , yo u can
start to ap preciate how much glob () does for yo u! Here are some results:
$ ch12-g1ob '/usr/li b / x*.so ' ' .. I .. I* .texi'
lusr/lib/ xchat-au tob5 . so
lusr/lib/xchat-autogb . so
· . 1 . . /OO-preface.t exi
· . 1 . . /Ol-intro . texi
· . I . . I02-cmdline. texi
· . 1 . . /03 -memory. texi
Note that we have to quote the arguments to keep the shell fro m doing the expansion!
These functions work similarly to glob () and globf r ee (), bur on a wordexp_t
structure:
typedef struct {
s i z e_t we_wordc; Count of words matched
char **we_wo r d v; List of expanded words
s iz e_t we_o ffs ; Slots to reserve in we_wordy
wordexp _t ;
TABLE 12.5
Flags for wordexp ( )
Constant Meaning
WRDE_ APPEND Append current call's results to those of a previous call.
WRDE_DOOFF S Reserve we_ o ffs spots at the front of we_wo r dv.
WRDE_NOCMD Don 't allow command substitution.
WRDE_ REUSE Reuse the storage already pointed to by we_wordv.
WRDE_ SHOWERR Don't be silent about errors during expansion.
WRDE_UNDEF Cause undefined shell variables to produce an error.
The return value is 0 if everything went well or one of the values in Table 12.6 if no t.
12.8 Regu lar Expressions 471
TABLE 12.6
wordexp () error return values
We leave it to you as an exercise (see later) to modifY ch12 -gl ob. c to use wor dexp ( )
and wordfree ( ) . Here's our version in action:
$ ch12-wordexp 'ec ho $HOME' Shell variable expansion
echo
I home/arnold
$ ch12 -wordexp 'echo $HOME/ * .gz' Variables and wildcards
echo
I home / arnold/48000 . wav . gz
I home/arn old/ipmas q- HOWTO . tar . g z
I home / arnold/ r c . fi r ewall-ex amples . tar . gz
$ ch12-wordexp 'echo -arnold' Tilde expansion
echo
I home/arn old
S ch12-wordexp 'echo -arnold/.p*' Tilde and wildcards
echo
Ihome/arnold/ . post i t n ote s
I h ome/ar n old/ . procmail r c
Ihome/arnold/ . profile
$ ch12-wordexp "echo '-arnold/ . p *' " Quoting works
ec h o
-a r nold/ . p *
you take a detour to some of the books or URLs named in Section 12.9, "Suggested
Reading," page 480.
POSIX defines two flavors of regular expressions: basic and extended. Programs such
as grep, sed, and the ed line editor use basic regular expressions. Programs such as
egrep and awk use extended regular expressions . The following functions give you the
ability to use either flavor in your programs:
#include <sys /types . h > POSIX
#include <regex.h>
To do regular expression matching, you must first compile a string version of the
regular expression. Compilation converts the regular expression into an internal form.
The compiled form is then executed against a string to see whether it matches the orig-
inal regular expression. The functions are as follows:
The <regex. h> header file defines a number of flags. Some are for use with
regcomp ( ) ; others are for use with regexec ( ) . However, they all start with the prefix
'REG_' . Table 12.7 lists the flags for regular expression compilation with regcomp () .
TABLE 12.7
Flags for regcomp ( )
Constant Meaning
REG_EXTENDED Use extended regular expressions. The default is basic regular expressions.
REG_leASE Matches with regexe c () ignore case.
REG_NEWLINE Operators that can match any character don't match newline.
REG_NO SUB Subpattern start and end information isn't needed (see text).
The flags for regular expression matching with regexec () are given in Table 12.8.
TABLE 12 .8
Flags for regexec ( )
Constant Meaning
REG_NOTBOL Don't allow the A (beginning of line) operator to match.
REG_NOTEOL Don't allow the $ (end of line) operator to match.
The REG_NEWLINE, REG_NOTBOL, and REG_NOT EOL flags interact with each other.
It's a little complicated, so we take it one step at a time.
• When REG_NEWLINE is not included in cflags, the newline character acts like
an ordinary character. The ' . ' (match any character) metacharacter can match it,
as can complemented character lists (' [ " .. . 1') . Also, $ does not match immedi-
ately before an embedded newline, and " does not match immediately after one.
• When REG_NOTBOL is set in e flags, the " operator does not match the beginning
of the string. This is useful when the string parameter is the address of a character
in the middle of the text being matched.
• Similarly, when REG_NOTEOL is set in eflags, the $ operator does not match the
end of the string.
• When REG_NEWLINE is included in cflags , then:
474 Chapter 12 • General Library Interfaces - Part 2
When you're doing line-at-a-time I/O, such as by grep, you can leave REG_NEWLINE
out of cfl ags. If you have multiple lines in a buffer and want to treat each one as a
separate string, with and $ matching within them, then you should include
A
REG_NEWLINE.
The regex_ t structure is mostly opaque. It has one member that user-level code
can examine; the rest is for internal use by the regular expression routines :
typedef struct {
... internal stuff here ...
size_t re_nsub;
... internal stuff here ...
regex_t;
Both the re_l1sub field and the regmatch_t structure are for subexpression matching.
Consider an extended regular expression such as:
[ [ : space : II + ( [ [ : digit: II +) [ [ : space : II + ( [ [ : alpha: I I ) +
The two parenthesized subexpressions can each match one or more characters. Further-
more, the text matching each subexpression can start and end at arbitrary positions
within the string.
regcomp () sets the re_nsub field to the number of parenthesized subexpressions
in the regular expression. regexec () fills in the pmatch array of regmatch_ t structures
with the start and ending byte offsets of the text that match ed the corresponding
subexpressions. Together, these data allow you to do text substitution-deletion of
matched text or replacement of matched text with other text, just as in your favorite
text editor.
12.8 Regular Expressions 475
pma tch [0] describes the portion of s t r i ng that matched the entire regular expres-
sion. pma tch [1] through pma tch [preg-> r e_n s u b] describe the portions that matched
each parenthesized subexpression. (Thus, subexpressions are numbered from 1.) Unused
elements in the pma t ch array have their rm_so and rm_eo elements set to -l.
regexec () fills in no more than nmatc h - 1 elements of pmatch; you should thus
ensure that there are at least as many elements (plus 1) as in preg - >re_nsub.
Finally, the R E G_NOSUB Bag for regcomp ( ) indicates that starting and ending infor-
mation isn't necessary. You should use this Bag when you don ' t need the information;
it can potentially improve the performance of r egexec ( ) , making a significant
difference.
In other words, if all you need to know is "did it match?" then include RE G_N OSUB.
However, if you also need to know "where is the matching text? " then omit it.
Finally, both regcomp () and r egexec () return 0 if they were successful or a specific
error code if not. The error codes are listed in Table 12.9.
TABLE 12.9
Error codes for regcomp () and regexec ( )
Constant Meaning
REG_BADBR The contents of '\ { ... \ }' are invalid.
REG_BADPAT The regular expression is invalid.
REG_ BADRPT A ?, +, or * is not preceded by valid regular expression.
Braces ('\ { ... \ }') are not balanced correctly.
Square brackets (' [ ... 1') are not balanced correctly.
REG_ECOLLATE The pattern used an invalid collating element.
REG_ECTY PE The pattern used an invalid character class.
REG_EESCAPE The pattern has a trailing \ character.
REG_EPAREN Grouping parentheses (' ( ... ) , or '\ ( ... \) ') are not balanced correctly.
REG_ERANGE The endpoint in a range expression is invalid.
REG_ES PAC E The function ran out of memory.
REG_ESUBREG The digit in '\di g i t' is invalid.
REG_ NOMATCH r egexec () did not match the string to the pattern.
476 Chapter 12 • General Library Interfaces - Part 2
Lines 10-15 declare the program's global variables. The first set (lines 10-13) are
for options and error messages. Line 15 declares pa t t ern, which holds the compiled
pattern. Lines 17-19 declare the program's other functions.
21 1* main --- proc ess options, open fi l es * /
22
23 in t main(int a r gc, char **argv)
24
25 i nt c;
26 int i ;
27 FILE *fp;
28
29 myna me = ar gv[O];
12.8 Regular Expressions 477
Line 29 sets myname, and lines 30-45 parse the options, Lines 47-51 compile the
regular expression, placing the results into pa t tern. campi le-pa t tern () increments
erro rs if there was a problem. (Coupling the functions by means of a global variable
like this is generally considered bad form. It's OK for a small program such as this one,
but such coupling can become a problem in larger programs.) If there was no problem,
line 51 increments op tind so that the remaining arguments are the files to be processed.
53 if (optind == argc) /* no files, default to stdin * /
54 process ( "standard input ", stdin) ;
55 else (
56 / * loop over files * /
57 for (i = optind; i < argc ; i++) {
58 if (st rcmp (argv[ i], "-" ) == 0)
59 process("standa rd input " , stdin ) ;
60 else i f ((fp = fopen(argv[il. "r")) != NULL) {
61 process(argv[i], fp);
62 fclose(fp);
63 else {
64 fprintf(stderr, " %s : %s : could not open : %s\n ",
65 argv[O], argv[i], strerr or(errno)) ;
66 erro rs+ +;
67
68
69
70
71 reg free (& pattern);
72 return errors ! = 0 ;
73
478 Chapter 12 • General Library Interfaces - Pan 2
Lines 53-69 process the files , searching for lines that match the pattern. Lines 53-54
handle the case in which no files are provided: The program reads standard input.
Otherwise, lines 57-68 loop over the files. Line 58 handles the special casing of'-' to
mean standard input, lines 60-62 handle regular files, and lines 63-67 handle problems.
75 /* compile-pattern --- compil e the pattern * /
76
77 v oid compile-pattern(const char *pat)
78 (
79 int flags = REG_NOSUB ; / * don't need where- matched info */
80 int ret;
81 #define MSGBUFSIZE 512 /* arbitrary * /
82 char error [MSGBUFSIZE] ;
83
84 if ( ignore_case )
85 flags 1= REG_leASE;
86 if ( extended )
87 flags 1= REG_EXTENDED;
88
89 ret = regcomp(& pattern, pat, fla gs) ;
90 i f (ret != 0) (
91 (void) regerror(ret, & pattern, error , sizeof error);
92 fprintf (stderr, " %s: pattern '%s' : %s\n ", myname, pat, error);
93 errors++;
94
95
Lines 97-120 define process ( ) , which reads the file and does the regular expression
match. The outer loop (lines 106-119) reads input lines. We use getline() (see
Section 3.2.l.9, "CLIBe Only: Reading Entire Lines: getline () and getdelim () ,"
page 73) to avoid line-length problems. Line 107 calls r egex ec ( ) . A nonzero return
indicates either failure to match or some other error. Thus, lines 109-115 check for
REG_ NOMATCH and print an error only if some other problem occurred-failure to match
isn' t an error.
If the return value was 0 , the line matched the pattern and thus line 117 prints the
filename and matching line.
122 /* usage --- print usage message and exit * /
123
124 void usage (void)
125 {
126 fprintf (stderr, "usage : %s [-il [-El pattern [ files .. . 1 \n", myname);
127 exit(l);
128
The us age () function prints a usage message and exits. It's called when invalid op-
tions are provided or if no pattern is provided (lines 38-40 and 44-45).
That's it! A modest, yet useful version of grep, in under 130 lines of code.
480 Chapter 12 • General Library Interfaces - Part 2
Regular expressions are an important part of Unix. For learning how to chop,
slice, and dice text using regular expressions, we recommend this book.
7. The online manual for GNU grep also explains regular expressions. On a
GNU/Linux system, you can use 'info gr ep' to look at the local copy. Or
use a web browser to read the GNU Project's online documentation for grep. 12
12.10 Summary
• Assertions provide a way to make statements about the expected state of a program.
They are a useful design and debugging tool and should generally be left in pro-
duction code. Be careful, however, not to confuse assertions with runtime checks
for possible failure conditions.
• The me mXXX () functions provide analogues to the better-known st rXXX ()
functions. Their greatest value is that they can work on binary data; zero bytes are
no different from other bytes. Of particular note is memcpy ( ) vs. memmove () and
the handling of overlapping copies.
• T emporary files are useful in many applications. The tmpf i 1 e () and mks temp ( )
APls are the preferred way to create temporary files while avoiding race conditions
and their security implications. Many ptograms use the TMPDI R environment
variable to specifY the location for their temporary files, with a meaningful default
(usually / tmp) if that variable isn' t defined. This is a good convention, one you
should adopt for your own programs.
• The abort () function sends a SIGABRT to the calling process. The effect is to
kill the process and create a core dump, presumably for debugging.
• setjmp () and longjmp () provide a nonlocal goto. This is a powerful facility
that must be used with care. s igsetjmp () and sig long jmp () save and restore
the process signal mask when a program does a nonlocal jump. The problems with
nonlocal gotos sometimes outweigh their benefits; thus, use these routines only if
there isn' t a better way to structure your application.
• Random numbers are useful in a variety of app lications. Most software uses
pseudorandom numbers-sequences of numbers that appear random but that can
be reproduced by starting with the same seed each time. rand () and srand ( )
are the original API, standardized by the C language. On many systems, rand ()
uses a subpar algorithm. random () and srandom () use a better algorithm, are
included in the POSIX standard, and are preferred over rand () and srand ( ) .
Use the / dev / random and / dev l urandorn special files (a) if they' re available and
(b) if you need high-quality random numbers.
• Three APIs provide increasingly powerful facilities for metacharacter expansion
(wildcarding) .
• fnrnatch () is the simplest, returning true/false as a given string does or doesn 't
match a shell wildcard pattern.
• glob ( ) works its way through the filesystem , returning a list of pathnames that
match a given wildcard. When the standard glob () functionality is all that's
needed, it should be used. While the GLIBC version of glob () has some ex-
tensions, portable programs needing the extra power should use wo rdexp ( )
instead. (Programs that will only run on GNU/Linux systems should feel free
to use the full power of the GLIBC glob ( ) .)
• wordexp () not only does what glob () does , but it also does full shell word
expansion, including tilde expansion , shell variable expansion, and command
substitution.
• The regcornp () and regexe c () functions give you access to POSIX basic and
extended regular expressions. By using one or the other, you can make your pro-
gram behave identically to the standard utilities, making it much easier for pro-
grammers familiar with GNU/Linux and Unix to use your program.
Exercises
1. Use read () and merncrnp () to write a simple version of the cmp program that
compares two files. Your version need not support any options.
2. Use the <stdi o . h> getc ( ) macro and direct comparison of each read character
to write another version of cmp that compares two files. Compare the perfor-
mance of this version against the one you wrote for the previous exercise.
12. 11 Exercises 483
3. (Medium.) Consider the <stdio. h> fgets () and GLIBC getl ine () func-
tions. Would memc cpy () be useful for implementing them? Sketch a possible
implementation of fget s () using it.
4. (Hard. ) Find the source to the GLIBC version of memcmp ( ) . This should be
on one of the source code CD-ROMs in your GNU/Linux distribution , or
yo u can find it by a Web search. Examine the code, and explain it.
5. Test your memory. How does tmpf ile () arrange for the file to be deleted
when the file pointer is closed?
6. Using mkst emp () and fdopen () and any other functions or sys tem calls you
think necessary, write yo ur own version of tmpfile () . Test it too.
7. Describe the advantages and disadvantages of usi ng unlink ( ) on the filename
created by mks temp () immediately after mks temp () returns.
8. Write yo ur own version of mkstemp ( ) , using mkt emp () and open ( ). How
can you make the same guarantees about uniqueness that mks temp () does?
9. Programs using mkstemp () should arrange to clean up the file when they exit.
(Assume that the file is not immediately unlinked after opening, for whatever
reason. ) This includes the case in which a terminating signal could arrive. So,
as part of a signal catcher, the file should be removed. How do you do this?
10. (Hard.) Even with the first-cut signal-handling cleanup, there's still a race
condition. There's a small window between the time mks t emp () creates the
temporary file and the time its name is returned and recorded (for use by the
signal handling function) in a variable. If an uncaught signal is delivered in
that window, the program dies and leaves behind the temporary file. How do
you close that window? (Thanks to Jim Meyering.)
11. Try compiling and running ch12-s etjmp. c on as many different systems
with as many different compilers as you have access to. Try compiling with
and without different levels of optimizations. What variations in behavior, if
any, did you see?
12. Look at the file /usr / src /libc / gen / sleep. c in the V7 Unix source distri-
bution. It implements the sl eep () function described in Section 10.8.1 ,
"Alarm Clocks: sleep () , alarm(), and SIGALRM," page 382. Print it, and
annotate it in the style of our examples to explain how it works.
484 Chapter 12 • General Library Interfaces - Part 2
It should read lines of text from the named files or from standard input if
no files are given. It should search each line for a match of pa t tern. If it finds
one, it should replace it with repla c ement.
With - g, it should replace not just the first match but all matches on the line.
In this chapter
485
E arly computing systems generally used English for their output (prompts, error
messages) and input (responses to queries, such as "yes" and "no"). This was
true of Unix systems, even into the mid-1980s. In the late 1980s, beginning with
the first ISO standard for C and continuing with the POSIX standards of the 1990s
and the cutrent POSIX standard, facilities were developed to make it possible for
programs to work in multiple languages, without a requirement to maintain multiple
versions of the same program. This chapter describes how modern programs should
d eal with multiple-language issues.
13.1 Introduction
The central concept is the locale, the place in which a program is run. Locales encap-
sulate information about the following: the local character set; how to display date and
time information; how to fo rmat and display monetary amounts; and how to format
and display numeric val ues (with or without a thousands separator, what character to
use as the decimal point, and so on).
Internationalization is the process of writing (or modifying) a program so that it can
function in multiple locales. Localization is the process of tailoring an internationalized
program for a specific locale. These terms are often abbreviated i18n and lJ On, respec-
tively. (The numeric values indicate how many characters appear in the middle of the
word, and these abbreviations bear a minor visual resemblance to the full terms. They're
also considerably easier to type.) Another term that appears frequently is native language
support, abbreviated NLS; NLS refers to the programmatic support for doing i 18n
and lIOn.
Additionally, some people use the term globalization (abbreviated glOn) to mean the
process of preparing all possible localizations for an internationalized program. In other
words, making it ready for global use.
NLS facilities exist at two levels. The first level is the C library. It provides information
abo ut the locale; routines to handle much of the low-level detail work for formatting
dateltime, numeric and monetary values; and routines for locale-correct regular expres-
sion matching and character classification and comparison. It is the library facilities
that appear in the C and POSIX standards.
At the application level, GNU get t ext provides commands and a libraty for local-
izing a program: that is, making all output messages available in one or more n atural
486
13.2 Locales and the C Library 487
1 An earli er des ign, known as catgets ( ) , exists. Although this des ign is standardized by POSIX, it is much
hard er ro use, and we don 't recommend it.
488 Chapter 13 • Inrernationalization and Localization
TABLE 13.1
ISO C locale category constants defined in <l ocale . h>
Category Meaning
This category includes all possible locale information. This consists of
the rest of the items in this table.
The category for string collation (discussed below) and regular expression
ranges.
LC CTYPE The category for classifYing characters (upper case, lower case, etc.). This
affects regular expression matching and the isxxx() functions in
<ctype . h>.
The category for locale-specific messages. This category comes into play
with GNU get tex t, discussed later in the chapter.
The category for formatting monetary information, such as the local and
international symbols for the local currency (for example, $ vs. USD for
U.S. dollars), how to format negative values, and so on.
LC_NUMERIC The category for formatting numeric values.
LC TIME The category for formatting dates and times.
These categories are the ones defined by the various standards. Some systems may
support additional categories, such LC_TELEPHONE or LC_ADDRESS. However, these
are not standardized; any program that needs ro use them but that still needs to be
portable should use # i fde f to enclose the relevant sections.
By default, C programs and the C library act as if they are in the "C" or "pos IX"
locale, to provide compatibility with historical systems and behavior. However, by
calling setlocale () (as described below), a program can enable locale awareness.
Once a program does this, the user can, by setting environment variables, enable and
disable the degree of locale functionality that the program will have.
The environment variables have the same names as the locale categories listed in
Table 13.l. Thus , the command-
-specifies that numbers should be printed according to the " en_DK" (English In
Denmark) locale, but that date and time values should be printed according to the
regular" C" locale. (This example merely illustrates that you can specify different locales
for different categories; it's not necessarily something that you should do.)
13.2 Locales and [he C Library 489
The environment variable LC_ALL overrides all other LC _xxx variables. If LC_ALL
isn 't set, then the library looks for the specific variables (LC_CTYPE, LC_MONE TARY , and
so on). Finally, if none of those is set, the library looks for the variable LANG . H ere is a
small demonstration, using gawk :
$ unset LC_ ALL LANG Remove default variables
$ export LC_ NUMERIC=en_ DK LC_ TIME=C European numbers, default date, time
$ gawk 'BEGIN { print 1 . 234 ; print strftime() }' Print a number, current date, time
1 , 23 4
Wed Jul 09 09 : 32 : 18 PDT 2003
$ export LC_ NUMERIC=it _ IT LC_ TIME=it_ IT Italian numbers, date, time
$ gawk ' BEGIN { print 1.234 ; print strftime() }' Print a number, current date, time
1,23 4
mer lug 09 09 : 32 : 4 0 PDT 2003
$ export LC_ ALL=C Set overriding variable
$ gawk 'BEGIN { print 1.234 ; print strftime() }' Print a number, current date, time
l . 234
Wed Jul 09 09 : 33 : 00 PDT 2 003
(For awk, the POSIX standard states that numeric constants in the source code always
use ' . ' as the decimal point, whereas numeric outp ut follows the rules of the locale.)
Almost all GNU versions of the standard Unix utilities are locale-aware. T hus , par-
ticularly on GNU/Linux sys tems, se tting these variab les gives yo u co ntrol over the sys-
tern's behavio r. 2 •
The cat egory argument is one of the locale categories described in Section 13.2.1,
"Locale Categories and Environment Variables," page 487. The locale argument is
a string naming the locale to use for that category. When locale is the empty string
(" ,,), setloc al e () inspects the appropriate environment variables.
Ifl ocal e is NULL, the locale info rmation is n ot changed. Instead , the function returns
a string representing the current locale for the given category.
2 Long-time C and Unix programmers may prefer to use the "C" locale, even if th ey are native English speakers;
the Engl ish locales prod uce different res ults fro m what grizzled, batrle-scarred U nix veterans expecL
490 Chapter 13 • Internationalization and Localization
Because each category can be set individually, the application's author decides how
locale-aware the program will be. For example, if ma in () only does this-
setl ocal e(LC_TIME, ""); /* Be locale-aware for time, but that's it. * /
-then, no matter what other L C_xxx variables are set in th e environment, only the
time and date fun cti ons obey the locale. All others act as if the program is still in the
"C" locale. Similarly, the call:
setlocale(LC_TIME, "i t_I T"); /* For th e time, we'r e always in Italy . */
overrides the L C_ TIME environment variable (as well as LC_ALL) , forcing the program
to be Italian for time/date computations. (Altho ugh Italy may be a great place to be,
programs are better off using " " so that they work correctly everywhere; this example
is here just to explain how setl ocale () works.)
You can call setlocale () individually for each category, but the simplest thing to
do is set everything in one fell swoop:
/ * When in Rome, do as the Romans do, for *everything*. :- ) * /
setlocale(LC_ALL , "" );
set l ocale () 's return value is the current setting of the locale. This is either a string
value passed in from an earlier call or an opaque value representing the locale in use at
startup. This same value can then later be passed back to set locale ( ) . For later use,
the return value should be copied into local storage since it is a pointer to internal data:
cha r *ini tial_lo cal e ;
Here, we've saved a copy by using the POSIX strdup () function (see Section 3.2.2,
"String Copying: strdup () ," page 74).
This comparison is based on the numeric values of characters in the machine's character
set. Because of this, s tr cmp ( ) ,s result never varies.
However, in a locale-aware world, simple numeric comparison isn't enough. Each
locale defines the collating sequence for characters within it, in other words, the relative
order of characters within the locale. For example, in simple 7 -bit ASCII, the two
characters A and a have the decimal numeric values 65 and 97, respectively. Thus, In
the fragmen t
int i = strc mp( "A", "a " );
i has a negative value. However, In the" en_US. UTF- 8 " locale, A comes after a , not
before it. Thus, using s trcmp () for applications that need to be locale-aware is a bad
idea; we might say it returns a locale-ignorant answer.
The s trc oll () (string collate) function exists to compare strings in a locale-aware
fashio n:
#i nc lude <string . h > ISOC
Its return value is the same negativelzero/positive as st rcmp () . The following pro-
gram, ch13- compare. c, interactively demonstrates the difference:
1 / * ch13 -compare .c - - - demonstrat e strcmp () vs . strcoll() */
2
3 #i nclude <std io . h>
4 #include <local e. h>
5 #i nclude <string . h>
6
7 in t main (void)
8 (
9 #de fi ne STRBUFS IZE 1 02 4
10 char locale[ STRBUFSIZE], c urloc[STRBUFSI ZE];
11 char left [STRBUF SIZE ] , r ight[STRBUFSIZ E ];
12 char buf[BUFSI Z] ;
13 i nt count ;
14
15 se tlocale(LC_ALL, .... ) ; / * s et to e nv locale */
16 strcpy(curlo c, set local e (LC_ALL, NULL)) ; /* save it * /
17
18 pr intf ("- -> .. ) ; fflush( s tdout);
492 Chapter 13 • Internarionalizarion and Localizarion
The program reads input lines, which consist of two words to compare and, option-
ally, a locale to use for the comparison. If the locale is given, that becomes the locale
for subsequent entries. It starts out with whatever locale is set in the environment.
The cu rloc array saves the current locale for printing results; lef t and right are
the left- and right-hand words to compare (lines 10-11). The main part of the program
is a loop (lines 19-36) that reads lines and does the work. Lines 20-23 split up the input
line. local e is initialized to the empty string, in case a third value isn' t provided.
Lines 25-28 set the new locale if there is one. Lines 30-33 print the comparison re-
sults, and line 35 prompts for more input. Here's a demonstration:
$ ch13-compare Run the program
-- > ABC abc Enter two words
c: strcmp( "ABC " , "abc" ) is -1 Program started in "C" locale
c: strcoll("ABC", "abc" ) i s - 1 Identical results in "C" locale
--> ABC abc en_ US . UTF-8 Same words, "en_ US . UTF- 8" locale
en_U S .UTF -8: str c mp( "ABC", " abc") i s -1
en_US .UTF-8 : strcol l(" ABC " , "abc " ) is 6 Different value, still positive
This program clearly demonstrates the difference between str emp ( ) and stre oll () .
Since stremp () works in accordance with the numeric character values, it always returns
the same result. st reoll () understands collation issues, and its result varies according
to the locale. We see that in both en_US locales, the uppercase letters come after the
lowercase ones.
w
o NOTE Locale-specific stri ng collation is also an issue in regular-expression
iI The long-term most portabl e solution is to use POSI X character classes, such
as ( [ [ : lower: 11 ' and ([ [ : punet : ll'. If you find yourself needing to use
range expressions on systems that are locale-aware and on older systems that
ti are not, but without having to change your program, th e sol ution is to use
I brute force and list each character individual ly within the brackets. It isn 't pretty,
M.·.
·
but it wo rks.
W
The idea is that s trxf rm () transforms the first n characters of sre, placing them
into de s t. The return value is the number of characters necessary to hold the trans-
formed characters. If this is more than n, then the contents of des tare « indeterminate. "
The POSIX standard explicitly allows n to be zero and des t to be NULL . In this case,
s trxfrm () returns the size of the array needed to hold the transformed version of sre
(not including the final' \0 ' character) . Presumably, this value would then be used
with malloe () fo r creating the de st array or for checking the size against a predefined
494 Chapter 13 • Interna[ionaiiza[ion and Locaiiza[ion
array bound. (When doing this, obviously, src must have a terminating zero byte.)
This fragment illustrates how to use strxfrm():
#define STRBUFSIZE . ..
char Sl[STRBUFS IZE], s2[STRBUFSIZ E]; Original strings
char sI x [STRBUFSIZE], s2x[S TRBUFS IZE ]; Transformed copies
siz e_t len1, len 2;
in t cmp;
if ( strxfrm (slx , sl, len1 ) >= STRBUFSIZE II strxfrm ( s2x, s2, len2 ) >= STRBUFSIZE )
/* too big, recover * /
Similarly to the ctime () function , this functi on returns a pointer to internal static
data. You sho uld m ake a copy of the returned data si nce subsequent calls co uld return
different values if the locale has been changed. Here is the struet lconv (condensed
slightly) , direct from GLIBC's <loca le. h>:
13 .2 Locales and [he C Library 495
struct lconv (
f * Nume r ic (non-monetary ) in f ormati on . * f
char *decimal-point ; f* Decimal p o i nt charac ter . * f
char * thousa nds_sep; f * Thous a n ds s eparator . * f
f * Each eleme nt is the nu mber o f di git s in each g r oup ;
el ements with higher indices are fa rther left .
An element wit h value CHAR MAX means that no furt her grouping is done .
l L'1 element with value 0 means that the previ ous eleme nt is used
f o r all groups f arther le ft. *f
cha r *grouping ;
f * Monetary i nformation . * f
f * Fi r st three chars are a c urr ency symbo l from ISO 4217 .
Fourth char is the sepa r ato r. Fifth char is '\0' . * f
cha r *int_curr_s ymbol;
c har *currency_symbol ; f * Local curr ency symbol . * f
char *mon_deci mal -point ; f * Deci mal point c h aracter . * f
c har *mon_thousands _sep ; f* Tho u sands separator . * f
c har *mon_group ing; f * Like 'g r o up ing' elemen t (above) . *f
char *positive_sign; f * Sign fo r p ositive v al ues . * f
cha r *negative_sign; f * Sign for n egative v a lues . * f
c har i nt_frac_d ig its; f * Int'l fr act ional dig its. *f
char fr ac _ di gits; f * Loca l fracti onal di gits. * f
f * 1 if currency_symbol precedes a pos itive v alue , 0 if suc ceeds . */
char p_cs-precedes;
/ * 1 iff a space separates c ur rency_symbol f rom a pos iti ve value . */
char p_sep_by_spac e ;
/ * 1 if currency_symbol precedes a nega tive value, 0 if succeeds . */
c har n _cs-pre cedes;
/ * 1 i ff a space sepa rate s curre n cy _s ymbol fr om a n egative value . */
cha r n _sep_by_space;
/ * po s itive and negative sign positions :
o Parenthes es s urround th e quantity a n d currency_symbol .
1 The sign stri ng precede s t he quantity a n d curren c y_s ymbol .
2 The sign string follo ws the quant ity and curren c y_symbol .
3 The s ign string i mmediately precedes the currency_symbo l .
4 The sign str ing immediately follo ws th e currency_symbol . * f
c har p_sign-po sn;
cha r n_ sign-po sn;
f * 1 if int_curr_symbol p recedes a posit ive value, 0 i f s ucceeds . */
c har in t-p_cs-precedes ;
/ * 1 iff a space s e p arate s int_cur r_symbol fr om a p os i tive val ue. */
c har in t-p_sep_ by_ space ;
/ * 1 i f int_curr_symbo l precedes a negative v a lue, 0 if suc c eeds. */
char int_n_c s -precede s;
/ * 1 if f a space sepa rat e s int_curr_symbol from a negative val u e. *f
c h ar in t_n_sep _ by_space;
496 Chapter 13 • Internationalization and Localization
The comments make it fairly clear what's going on. Let's look at the first several
fields in the struct lconv:
decimal-po int
The decimal point character to use. In the United States and other English-
speaking countries, it's a period, but many countries use a comma.
thousands_sep
The character to separate each 3 digits in a value.
group ing
An array of single-byte integer values. Each element indicates how many digits to
group. As the comment says, CHAR_MAX means no further grouping should be
done, and 0 means reuse the last element. (We show some sample code later in
the chapter.)
in t _ curr_symbo l
This is the international symbol for the local currency. For example, 'USD' for U.S.
dollars.
currency_symbol
This is the local symbol for the local currency. For example, $ for U.S. dollars.
mon_decirnal-point,rnon_thousands_ sep,mon_grouping
These correspond to the earlier fields, providing the same information, bur for
monetary amounts.
Most of the rest of the values are not useful for day-to-day programming. The fol-
lowing program, ch13 -lconv . c, prints some of these values, to give you a feel for what
kind of information is available:
13.2 Locales and (he C Library 497
int main(void)
struct lconv 1;
int ii
When run with different locales, not surprisingly we get different results:
$ LC_ ALL=en_ US ch13-1conv Results for the United States
decimal-point = [ . ]
thousands_sep = [,]
grouping[O] = [3]
grouping[l] = [3]
int_curr_symbol = [USD ]
currency_symbol = [$]
mon_decimal-point [.]
mon_thousands_sep [,]
positive_sign []
negative_sign = [-]
Note how the value for int_curr_symbo l in the " en_US" locale includes a trailing
space character that acts to separate the symbol from the following monetary value.
This routine is much like s trftime () (see Section 6.1.3.2, "Complex Time Format-
ting: strftime ( ) ," page 171), using format to copy literal characters and formatted
numeric values into s, placing no more than max characters into it. The following
simple program, ch13 -strfmon . c , demonstrates how strfmon () works:
/* ch13-strfmon.c --- demonstra te strfmon() */
3 We're as happy as you are, since we don 't have ro provide example code that uses thi s, er, full-fearured struct.
13.2 Locales and (he C Library 499
As you can see, strfmon () is like str ftime () , copying regular characters unchanged
into the destination buffer and formatting arguments according to its own formatting
specifications. There are only three:
%n Print the national (that is, local) form of the currency value.
%i Print the international form of the currency value.
%% Print a literal %character.
The values to be formatted must be of type doubl e. We see the difference between
%n and %i in the "en_ US" locale: %n uses a $ character, whereas %i uses USD, which
stands for "u.s.
Dollars. "
Flexibility-and thus a certain amount of complexity-comes along with many of
the APls that were developed for POSIX, and str fmon () is no exception. As with
print f ( ) , several optional items that can appear between the % and the i or n provide
increased control. The full forms are as follows:
%[fla gs] [field width] [#left-pre c ] [ . right-pre c ] i
%[fla gs] [field width] [#left-pre c] [. right-prec)n
%% No flag, field width, etc., allowed
TABLE 13.2
Flags for strfmon ()
Flag Meaning
=c Use the character c for the numeri c fill character, for use with the left precision.
The default fill character is a space. A common alternative fill character is o.
Disable the use of the grouping character (for example, a comma in the United
States) .
Enclose negative amounts in parentheses. Mutually exclusive with the + flag.
+ Handle positive/negative values normally. Use the locale's positive and negative
signs. Mutually exclusive with the ( flag.
Do not include the currency sym bol. This flag is useful if yo u wish to use
s trfmon () to get more flexible formatting of regular numbers than what
sprintf () provides.
Left-justify the result. The default is right justification. This flag has no effect
without a field width.
500 Chapter 13 • Internationalization and Localization
The field width is a decimal digit string, providing a minimum width. The default
is to use as many characters as necessary based on the rest of the specification. Values
smaller than the field width are padded with spaces on the left (or on the right, if the
, -' flag was given).
The left precision consists of a # character and a decimal digit string. It indicates the
minimum number of digits to appear to the left of the decimal point character;4 if the
converted value is smaller than this, the result is padded with the numeric fill character.
The default is a space, but the = flag can be used to change it. Grouping characters are
not included in the count.
Finally, the right precision consists of a ' . ' character and a decimal digit string. This
indicates how many digits to round the value to before it is formatted. The default is
provided by the fr ac_dig i ts and int_ fra c_digi ts fields in the struct lc onv.
If this value is 0, no decimal point character is printed.
strfmon () returns the number of characters placed into the buffer, not including
the terminating zero byte. If there's not enough room, it returns -1 and sets errno
to E2BI G.
Besides strfmon (), POSIX (but not ISO C) provides a special flag-the single-quote
character, '-for the pr intf () formats %i, %d, %u, %f, %F, %g, and %G . In locales that
supply a thousands separator, this flag adds the locale's thousands separator. The follow-
ing simple program, ch13 - qu otefl ag. c, demonstrates the o utput:
/ * ch13 -quotef 1ag . c --- demonstrate prin tf's quote flag * /
# include <stdio.h>
# include <loc ale.h>
Here's what happens for two different locales: one that does not supply a thousands
separator and one that does:
4 The technical term used in the standards is radix point, si nce numbers in different bases may have fracti onal parts
as well. However, for monetary values, it seems pretry safe to use th e term "decimal point. "
13.2 Locales and [he C Library 501
As of this writing, only GNU/Linux and Solaris support the ' Bag. Double-check
your system 's printf(3) m anpage.
(The line numbers are relative to the start of the fragment.) Some parts of the code
that aren't relevant to the discussion have been omitted to make it easier to focus on
the parts that are important.
The variable lac, used in lines 13- 17, is a struct lconv. It's initialized in main () .
Of interest to us here are loc . thousands_sep, which is the thousands-separator
S02 Chapter 13 • Internationalization and Localization
character, and loc . grouping, which is an array describing how many digits between
separators. A zero element means "use the value in the previous element for all subse-
quent digits," and a value of CHAR_ MAX means "srop inserting thousands separators ."
With that introduction, let's look at the code. Line 7 sets uval, which is an unsigned
version of the value to be formatted. ii and j j keep track of the position in
loc . grouping and the number of digits in the current group that have been converted,
respectively.5 quote_flag is true when a ' character has been seen in a conversion
specification.
The do -while loop generates digit characters in reverse, filling in a buffer from the
back end toward the front end. Each digit is generated on line 11. Line 25 then divides
by 10, shifting the value right by one decimal digit.
Lines 12-24 are what interest us. The work is done only on a system that supports
locales, as indicated by the presence of the <loca l e . h> header file. The symbolic
constant HAVE_LOCALE_H will be true on such a system. 6
When the condition on line 13 is true, it's time to add in a thousands-separator
character. This condition can be read in English as "if grouping is requested, and the
current position in loc . grouping indicates an amount for grouping, and the current
count of digits equals the grouping amount. " If this condition is true, line 14 adds the
thousands separator character. The comment notes an assumption that is probably true
but that might come back to haunt the maintainer at some later time. (The 'xxx' is a
traditional way of marking dangerous or doubtful code. It's easy ro search for and very
noticeable to readers of the code.)
Once the current position in loc . grouping has been used, lines 15-22 look ahead
at the value in the next position. If it's 0, then the current position's value should con-
tinue ro be used. We specify this by resetting j j to 0 (line 16). On the other hand, if
the next position is CHAR_MAX, no more grouping should be done, and line 18 turns it
off entirely by setting quote_flag to false. Otherwise, the next value is a grouping
value, so line 20 resets j j to 0, and line 21 increments i i.
5 We probably should have chosen more descriptive names than just i i and j j . Since the code that uses th em is
short, our lack of imagination is not a significant problem.
6 This is set by the Autoconf and Automake machinery. Autoconf and Automake are powerful software suites that
make it possible to support a wide range of Un ix systems in a sys tematic fash ion.
13.2 Locales and [he C Library 503
This is low-level, detailed code. H owever, once you understand how the information
in the struct lconv is presented , the code is straightforward to read (and it was
straigh tforward to write) .
When the program is run , we see th at indeed the strftime () results vary while the
ctime () results do n ot:
$ LC_ ALL=en_ US ch13-times Time in the United States
It is now Friday, July 11, 2003, 10 : 35 AM
ctime() says: Fri Jul 11 10 : 35 : 55 200 3
The reaso n for the lack of variation is that ctirne () (and asctirne ( ), upon which
ctirne () is based) are legacy interfaces; they exist to support old code. strft irne ( ),
being a newer interface (developed initially for C89), is free to be locale-aware.
The <nl_types. h > header file defines the nl_i tern type. (This is most likely an
int or an enum.) The i t ern parameter is one of the symbolic constants defined in
<langinfo. h>. The return value is a string that can be used as needed, either directly
or as a format string for strftirne ( ) .
The available information comes from several locale categories. Table 13.3 lists the
item constants , the corresponding locale category, and the item's meaning.
An era is a particular time in history. As it relates to dates and times, it makes the
most sense in countries ruled by emperors or dynasties?
POSIX era specifications can describe eras before A. D. 1. In such a case, the start date
has a higher absolute numeric value than the end date. For example, Alexander the
Great ruled from 336 B.C. to 323 B.C.
The value returned by 'nl_lang info (ERA)', if not NULL, consists of one or more
era specifications. Each specification is separated from the next by a ; character. Com-
ponents of each era specification are separated from each other by a : character. The
components are described in Table 13.4.
7 Although Americans often refer to the eras of particular presidents, these are not a formal part of the narional
calendar in rhe same sense as in pre-World War II Japan or pre-Commu nist China.
13.2 Locales and the C Library 50S
TABLE 13.3
Item values for nl_langinfo ( )
TABLE 13.4
Era specification components
Component Meaning
Direction A + or ' - ' character. A + indicates that the era runs from a numerically lower
year to a numerically higher one, and a '- ' indicates the opposite.
Offset The year closest to the start date of the era.
Start date The date when the era began, in the form 'YYYYI mm l dd'. These are the year,
month, and day, respectively. Years before A. D. 1 use a negative value for yyyy.
End date The date when the era ended, in the same form. Two additional special forms
are allowed: -* means the "beginning of time," and +* means the "end
of time."
Era name The name of the era, corresponding to st rftime () 's %EC conversion
specification .
Era format The format of the year within the era, corresponding to str f t ime () 's %EY
conversion specification.
The ALT_DI GITS value also needs some explanation. Some locales provide for "alter-
native digits." (Consider Arabic, which uses the decimal numbering system but different
glyphs for the digits 0- 9 . Or consider a hypothetical "Ancient Rome" locale using roman
numerals.) These come up, for example, in st rf t ime ( ) 's various %O c conversion
specifications. The return value for 'nl_lang i n f o (ALT_DIGITS )' is a semicolon-
separated list of character strings for the alternative digits. The first should be used for
0 , the next for 1, and so On. POSIX states that up to 100 alternative symbols may be
provided. The point is to avoid restricting locales to the use of the ASCII digit characters
when a locale has its Own numbering system.
Finally, 'nl_l anginf o ( CRNCYSTR ) ' returns the local currency symbol. The first
character of the return value, if it's a '-', +, or ' . " indicates how the symbol should
be used:
The symbol should appear before the value.
+ The symbol should appear after the value.
The symbol should replace the radix character (decimal point).
13.3 Dynamic Translation of Program Messages 507
Each component should call this function with a string naming the text domain as
part of the initial startup activity in main ( ) . The return value is the current text domain.
If the domainname argument is NULL, then the current domain is returned; otherwise,
it is set to the new value and that value is then returned. A return value of NULL indicates
an error of some sort.
If the text domain is not set with textdomain ( ) , the default domain is "messages" .
508 Chapter 13 • Internationalization and Localization
The default text domain is whatever was set with textdomain () (" messages" if
textdomain () was never called). The default category is LC_ ME SSAGES. Assume that
main () makes the following call:
tex tdomain ( "ki llerapp" ) ;
int main(void)
Although the message is a simple suing, we don 't use it directly as the prin tf ( ) control
suing, since in general, translations can contain % characters.
Shortly, in Section 13.3.4, "Making gettext () Easy to Use," page 510, we'll see
how to make g et t ext () easier to use in large-scale, real-world programs.
This is reasonable for English, but uanslation becomes difficult. First of all, many
languages don ' t use as simple a plural form as English (adding an s suffix for most
words). Second, many languages , particularly in Eastern Europe, have multiple plural
forms, each indicating how many objects the form designates. Thus, even code like this
isn't enough:
if (nwords == 1)
printf( " one word misspelled\n") ;
else
printf("%d words misspelled\n " , nwords ) ;
The solution is a parallel set of routines specifically for formatting plural values:
#include <libintl . h> CLiBe
Besides the original msg i d argument, these function s accept additional arguments:
const char *ms gid-p l ura l
T he default string to use for plural values. Examples shortly.
unsigned l ong in t n
The number of items there are.
Each locale's message catalog specifies how to translate plurals. 8 The ngettext ()
function (and its variants) examines n and, based on the specification in the message
catalog, returns the appropriate translation of msgid. If the catalog does not have a
translation for ms g i d, or in the " c " locale, nget text ( ) returns ms gid if 'n == 1';
otherwise, it returns msg id-plur a l. Thus, our misspelled words example looks like this:
printf ( "% s \ n ", ngettext ( "%d wor d mi sspe lled", "%d words mi sspel l e d", nwords ),
n wo rds ) ;
Note that nwo r ds must be passed to ngettex t ( ) to select a format string, and then
to printf () for formatting. In addition, be careful not to use a macro or expression
whose value changes each time, like 'n++'! Such a thing could happen if you're doing
global editing to add calls to nget text ( ) and you don ' t pay attention.
8 The d etails are given in the GNU ge t te x t d ocumenrario n . Here, we' re focusing o n rh e developer's n eed s, nor
the translato r's.
13.3 Dynam ic T ransia(ion of Program Messages 511
v o id copyright (v o id )
{
int i;
Here, we'd like to be able to print the translations of the copyright strings if they're
available. However, how is the xgettext extractor supposed to find these strings? We
can't enclose them in calls to ge t text () because that won't work at compile time:
1 * BAD CODE : wo n't c ompile * 1
static char * c o pyr i ghts [] = {
gettext ( "C o pyright 200 4, Jane Pr ogrammer " ) ,
get text ( "Permissi on is g ranted . .. ' ) ,
LOTS of Iega lese here
NULL
};
9 T hi s macro is usuall y auromatically d efined by rhe c o nf igure program, eirher in a special header or o n rh e
compiler com m a nd lin e. c o nfigure is ge nerared wi rh AU(Qconf and Auromake.
512 Chapter 13 • Internationalization and Localization
The comment is self-explanatory. With this macro, we can now proceed to the second
step . We rewrite the code as follows:
#define ENABL E_NLS 1
#include "gettex t . h"
Note that we made two changes. First, copyrights is now one long string, built
up by using the Standard C string constant concatenation feature. This single string is
then enclosed in the call to get text_noop ( ) . We need a single string so that the
legalese can be translated as a single entity.
The second change is to print the translation directly, as one string in copyri ght ( ).
By now, you may be thinking, "Gee, having to type 'get text ( . . . ) ' each time is
pretty painful. " Well, you're right. Not only is it extra work to type, it makes program
source code harder to read as well. Thus, once you are using the gettext . h header
file , the GNU g e t text manual recommends the introduction of two more macros,
named _ ( ) and N_ ( ) , as follows :
#de fi ne ENABLE_NLS 1
#i n clude "gettext .h "
#define _(m s gid) gettex t(msg i d)
#define N_(msgid) msgid
This approach reduces the burden of using get text () to just three extra characters
per translatable string constant and only four extra characters for stati c strings:
13.3 Dynamic T ransla[ion of Program Messages 513
int main (v o id )
setl o cale (LC_ALL, "o J ; / * gettext . h gets <loca l e . h> for us too * /
printf ("% s \ n", _ ( "hell o , world")) ;
copyright ( ) ;
exit (0) ;
These macros are unobtrusive, and in practice, all GNU programs that use GNU
get text use this convention. If you intend to use GNU get text, you too should
follow this convention.
if ( ... ) {
animal_color = _( "brown " ) ;
animal = _( "cat" );
else if ( .. . ) {
else (
Here, the format string, an i mal_color and animal are all properly enclosed in
calls to get text ( ) . However, the statement will still be incorrect when translated,
since the order ofthe arguments cannot be changed at runtim e.
To get around this, the POSIX (but not ISO C) version of the p r intf () family allows
you to provide a positional specifier within a format specifier. This takes the form of a
decimal number followed by a $ character immediately after the initial % character. For
example:
printf ("%2$5 , %l$s\n", "world", "hell o") ;
The positional specifier indicates which argument in the argument list to use; counts
begin at 1 and don ' t include the format string itself. This example prints the famous
'hello, world' message in the correct order.
GLIBC and Solaris implement this capability. As it's part of POSIX, if your Unix
vendor's printf () doesn 't have it, it should be appearing soon.
Any of the regular pri n tf () flags, a field width, and a precision may fo llow the
positional specifier. The tules for using positional specifiers are these:
• The positional specifier form may not be mixed with the nonpositional form. In
other words, either evety format specifier includes a positional specifier or none
of them do. Of course, %% can always be used.
13.3 Dynamic T ranslarion of Program Messages 515
• If the N' th argument is used in the format string, all the arguments up to N must
also be used by the string. Thus, the following is invalid:
printf("%3$s %l$s\n", "he llo", "cruel", "world");
This facility isn' t intended for direct use by application programmers, but rather by
translators. For example, a French translation for the previous format string, "The %s
%s looks at you enquiringly . \ n " , might be:
" Le %2$s %l$s te regarde d'un aire interrogateur . \ n"
(Even this translation isn' t perfect: the article "Le" is gender specific. Preparing a program
for translation is a hard job!)
It can be useful to place translations in a directory other than the standard one, par-
ticularly for program testing. Especially on larger systems, a regular developer probably
does not have the permissions necessary to install files in system directories . The
bindt extdoma i n () function gives get tex t () an alternative place to look for
translations:
#include <libintl . h> CLiBe
Useful directories include' . ' for the current directory and / tmp . It might also be
handy to get the directory from an environment variable, like so:
1. Adopt the g e tt ext. h header file into your application, and add definitions
for the _ () and N_ () macros to a header file that is included by all your C
source files. Don't forget to define the ENABLE_ NLS symbolic constant.
2. Call s e tlocale ( ) as appropriate. It is easiest to call 's e tlocale (LC_ A L L,
" " ) " but occasionally an application may need to be more picky about which
locale categories it enables.
3. Pick a text domain for the application, and set it with textdomain ( ) .
4. If testing, bind the text domain to a particular directory with bindtextdo -
ma i n() .
5. Use strfmon (), strf time (), and the ' flag for pr i ntf () as appropriate. If
other locale information is needed, use nl _ langinfo ( ) , particularly in con-
junction with strftime ( ) .
6. Mark all strings that should be translated with calls to _ () or N_ (), as appro-
pnate.
A few should not be so marked though. For example, if you use getopt_long ( )
(see Section 2.1.2, "GNU Long Options," page 27), you probably don't want
the long option names to be marked for translation. Also, simple format strings
like " %d %d \ n " don't need to be translated, nor do debugging messages.
7. When appropriate, use nge ttext () (or its variants) for dealing with va.lues
that can be either 1 or greater than l.
13.3 Dynamic T ranslarion of P rogram Messages 5 17
8. Make life easier for yo ur translators by using multiple strings rep resenting
complete sentences ins tead of do ing word substituti ons with %8 and ? : . For
example:
if (an error occurred) { f* RIGHT *f
f* Use mul tiple strings to make translati o n ea s ier . *f
if ( input _ type == INPUT_ FILE )
fprintf(stderr, _ ( "%s : cannot r e ad file : %s\n" ) ,
a r gv[O], strerror(errno)) ;
else
fpr intf (stderr , _ ( "%s : cannot read pipe : %s\n " ) ,
argv[O], st rer ror(errno)) ;
As just shown, it's a go od idea to include a co mment stating that there are
multiple messages on purpose-to m ake it easier to translate the messages.
in t main (v o i d )
struct tm tm;
time_ t then ;
pri n t f ( "%s " , _ ( " Ent er a Date / time as YYYY / MM /OO HH : MM:SS "));
scanf( "%d/%d/%d %d : %d : %d ",
& tm . tm-ye a r , & tm . tm_ mon , & t m. tm_mday,
& tm . tm_ho ur, & t m. tm_ min, & tm . t m_se c) ;
We have purposely used "get text. h" and not < get text. h>. If our application
ships with a private copy of the g e t text library, then "g et text. h" will find it,
avoiding the system's copy. On the other hand, if there is only a system copy, it will
be found if there is no local copy. The situation is admittedly complicated by th e fact
that Solaris systems also have a g e t tex t library which is not as featureful as the
GNU version.
Moving on to creating translations, the first step is to extract the translatable strings.
T his is done with the x get text program:
$ xgettext --keyword= _ --keyword=N_ \
> --default-domain=echodate ch13-echodate.c
The - - k e ywo r d options tell x get text to look for the _ () and N_ () macros . It
already knows to extract strings from gettext () and its variants, as well as from
get tex t _ n oop ( ) .
The output from xget tex t is called a portable object file. The default filename
is messages .po , corresponding to the default text domain of "messages ". The
-- defau l t - domain option indicates the text domain, for use in naming the output
file. In this case, the file is named echodate . po . Here are its contents:
13.3 Dynamic Transla(ion of Program Messages 519
This original file is reused for each translation. It is thus a template for translations,
and by convention it should be renamed to reflect this fact, with a . pot (portable object
template) suffix:
$ mv echodate.po echodate.pot
Given that we aren 't fluent in many languages, we have chosen to translate the
messages into pig Latin. Thus, the next step is to produce a translation. We do this by
copying the template file and adding translations to the new copy:
$ cp echodate.pot piglat.po
$ vi piglat.po Add translations, use your favorite editor
The filename convention is language . po where l angua ge is the two- or three-
character international standard abbreviation for the language. Occasionally the form
language_coun try . po is used: for example, p t _BR. po for Portugese in Brazil. As
pig Latin isn' t a real language, we've called the file piglat .po . Here are the contents,
after the translations have been added:
520 Chapter 13 • Internationalization and Localization
#: chI3-echodate.c : 19
msgid "Enter a Da tel time as YYYY 111J.! / DD HH : MM: SS
msgstr "Enteray A Ateday/imetay asay YYYY/MM/DD HH:MJ.! : SS
#: ch13-ec hodate. c : 32
#, c- format
msgid "Got: %s"
msgstr "Otgay : %s"
While it would be possible to do a linear search directly in the portable object file ,
such a search would be slow. For example, gawk has approximately 350 separate mes-
sages, and the GNU Coreutils have over 670. Linear searching a file with hundreds of
messages would be noticeably slow. Therefore, GNU gett ext uses a binary format
for fast message lookup. msgfmt does the compilation, producing a message object file:
$ msgfmt piglat.po -0 piglat.mo
As program maintenance is done, the strings used by a program change: new strings
are added, others are deleted or changed. At the very least, a string's location in the
source file may move around. Thus, translation . p o files will likely get out of date. The
msgmerge program merges an old translation file with a new . pot file. The result can
then be updated. This example does a merge and then recompiles:
$ msgmerge piglat.po echodate . pot -0 piglat . new . po Merge ~/es
$ mv piglat . new. po piglat .po Rename the result
$ vi piglat. po Bring translations up to date
$ msgfmt piglat .po -0 piglat .mo Recreate .mo ~/e
Compiled . mo files are placed in the file basel locale / category/ textdomain. mo.
On GNU/Linux systems, base is' / usr lsha re / locale. locale is the language, such
as' es', 'fr', and so on. category is a locale category; for m essages , it is LC_MESSAGES.
13.4 Can You Spell Thar for Me, Please? 521
textdomain is the text domain of the program: in our case, echodate . As a real
example, the GNU Coreutils Spanish translation is in /us r /s hare /local e / es /
LC_MESSAGES/coreutils . mo .
The bindtextdoma i n () function changes the base part of the location. In
ch13- e chodate.c, we change it to ' . '. Thus, it's necessary to make the appropriate
directories, and place the pig Latin translation there:
$ mkdir -p en_ US/LC_ MESSAGES Have to use a real locale
$ cp piglat .mo en_ US/LC_ MESSAGES/echodate .mo Put the fie in the right place
A real locale must be used; 10 thus, we "pretend" by using" e n_ US ". With the trans-
lation in place, we set LC_ ALL appropriately, cross our fingers, and run the program:
$ LC_ ALL=en_ US ch13-echodate Run the program
Enteray A Ateday / imetay asay YYYY / MM/DD HH : MM : SS : 2003/07/14 21:19:26
Otgay : Mon Jul 14 21 : 19 : 26 2003
The latest version of GNU get text can be found in the GNU get text distribution
directory. 11
This section has necessarily only skimmed the surface of the localization process.
GNU gettext provides many tools for working with translations, and in particular
for making it easy to keep translations up to date as program source code evolves.
The manual process for updating translations is workable bur tedious. This task is
easily automated with make ; in particular GNU get text integrates well with Autoconf
and Automake to provide this functionaliry, removing considerable development burden
from the programmer.
We recommend reading the GNU get t ex t documentation to learn more about
both of these issues in particular and about GNU get tex t in general.
lOWe spenc a fru strating 30 o r 45 minutes attemptin g to use a piglat!LC_MESSAGES directory and se tting
'LC_ALL=piglat', all to no effect, uncil we fi gured this our.
used on everything else. Today, except on mainframes, ASCII is the basis for all other
character sets currently in use.
The original seven-bit ASCII character set suffices for American English and most
punctuation and special characters (such as $, but there is no character for the "cent"
symbol). However, there are many languages and many countries with different char-
acter set needs. ASCII doesn't handle the accented versions of the roman characters
used in Europe, and many Asian languages have thousands of characters. New technolo-
gies have evolved to solve these deficiencies.
The i 18n literature abounds with references to three fundamental terms. Once we
define them and their relationship to each other, we can present a general description
of the corresponding C APIs.
Character set
A definition of the meaning assigned to different integer values; for example, that
A is 65 . Any character set that uses more than eight bits per character is termed a
multibyte character set.
Character set encoding
ASCII uses a single byte to represent characters. Thus, the integer value is stored
as itself, directly in disk files . More recent character sets, most notably different
versions of Unicode,12 use 16-bit or even 32-bit integer values for representing
characters. For most of the defined characters, one, two , or even three of the
higher bytes in the integer are zero, making direct storage of their values in disk
files expensive. The encoding describes a mechanism for converting 16- or 32-bit
values into one to six bytes for storage on disk, such that overall there is a significant
space savings.
Language
The rules for a given language dictate character set usage. In particular, the rules
affect the ordering of characters. For example, in French, e, e, and e should all
come between d and f, no matter what numerical values are assigned to those
characters. Different languages can (and do) assign different orderings to the
same glyphs.
Various technologies have evolved over time for supporting multibyte character sets.
Computing practice is slowly converging on Unicode and its encoding, but Standard
C and POSIX support both past and present techniques. This section provides a con-
ceptual overview of the various facilities. We have not had to use them ourselves, so we
prefer to merely introduce them and provide pointers to more information.
normal, unshifted state, and another for the shifted state. Correctly encoded strings are
supposed to start and end in the same shift state.
A significant advantage to Unicode is that its encodings are self-correcting; the en-
condings don 't u se shift states, so a loss of data in the middle does not corrupt the
subsequent encoded data.
The initial versions of the mulribyte-to-wide-character and wide-character-to-
mulribyre functions maintained a private copy of the state of the translation (for example,
the shift state, and anything else that might be necessary). This design limits the func-
tions' use to one kind of translation throughout the life of the program. Examples are
mblen ( ) (multibyte-character length), mbtowe () (multi byte to wide character), and
wetomb ( ) (wide character to multibyte), mbs towes () (multi byte string to wide-char-
acter string), and westombs () (wide-character string to mulribyte string).
The newer versions of these routines are termed restartable. This means that the user-
level code maintains the state of the translation in a separate object, of rype mbs ta te_ t .
The corresponding examples are mbrlen (), mbrtowe (), and wert omb () , mbsrtowes ()
and wesrt ombs ( ) . (Note the r, for "restartable, " in their names .)
13.4.3 Languages
Language issues are controlled by the locale. We've already seen setl oeale ( ) earlier
in the chapter. PO SIX provides an elaborate mechanism for defining the rules by which
a locale works; see the CNU/Linux locale(5) manpage for some of the details and the
POSIX standard itself for the full story.
The truth is, yo u really don' t want to know the details. Nor should you, as an appli-
cation developer, need to worry about them; it is up to the library implementors to
make things work. All you need to do is understand the concepts and make your code
use the appropriate functions, such as streoll () (see Section 13.2.3, "String Collation:
streoll () and strxfrm() ," page 490) .
Current CUBC systems provide excellent locale support, including a mulribyre-
aware suite of regular expression matching routines. For example, the POSIX extended
regular expression [[ : alpha : 1 1 [ [ : alnum: 1 1 + matches a letter followed by one or
more letters or digits (an alphabetic character followed by one or more alphanumeric
13.4 Can You Spell That for Me, Please? 525
ones). The definition of which characters matches these classes depends on the locale.
For example, this regular expression would match the two characters 'ee ', whereas the
traditional Unix, ASCII-oriented regular expression [a- z A-Z] [a - A-ZzO - 9] + most
likely would not. The POSIX character classes are listed in Table 13.5.
TA BLE 13.5
POSIX regu lar exp ression character classes
13.4.4 Conclusion
You may never have to deal with different character sets and encodings. On the
other hand, the world is rapidly becoming a "global village," and software authors and
vendors can't afford to be parochial. It pays, therefore, to be aware of internationalization
issues and character set issues and the way in which they affect your system's behavior.
Already, at least one vendor of GNU/Linux distributions sets the default locale to be
e n_US. UTF- 8 for systems in the United States.
526 Chapter 13 • Internationalization and Localization
13.6 Summary
• Program internationalization and localization fall under the general heading of
native language support. i18n, lIOn , and NLS are popular acronyms. The central
concept is the locale, which customizes the character set, date, time, and monetary
and numeric information for the current language and country.
.. Locale awareness must be enabled with setlocale ( ). Different locale categories
provide access to the different kinds of locale information. Locale-unaware pro-
grams act as if they were in the " c " locale, which prod uces results typical of Unix
systems before NLS: 7-bit ASCII, English names for months and days, and so on .
The" POS I X " locale is equivalent to the" C" one.
• Locale-aware string comparisons are done with s trcoll () or with the combination
of s trx f rm () and s tr cmp ( ) . Library facilities provide access to locale information
(l oca l econv () and nl_ langinf o ( ) ) as well as locale-specific information for-
matting (strfmon (), st r ft i me ( ) , and pr i n tf () ).
• The flip side of retrieving locale-related information is producing messages in the
local language. The System V catgets () design, while standardized by POSIX,
13.7 Exercises 527
is difficult to use and not recommended. 13 Instead, GNU get text implements
and extends the original Solaris design.
• With get text ( ), the original English message string acts as a key into a binary
translation file from which to retrieve the string's translation. Each application
specifies a unique text domain so that get text () can find the correct translation
file (known as a "message catalog"). The text domain is set with textdomain ().
For testing, or as otherwise needed, the location for message catalogs can be
changed with bindtextdomain ().
• Along with get text ( ) , variants provide access to translations in different text
domains or different locale categories. Additionally, the ngettext () function
and its variants enable correct plural translations withour overburdening the devel-
oper. The positional specifier within printf () format specifiers enables translation
of format strings where arguments need to be printed in a different order from
the one in which they're provided.
• In practice, GNU programs use the get text. h header file and _ () and N_ ( )
macros for marking translatable strings in their source files. This practice keeps
program source code readable and maintaina ble while still providing the benefits
of iI8n and lIOn.
• GNU get text provides numerous tools for the creation and management of
translation databases (portable object files) and their binary equivalents (message
object files).
• Finally, it pays to be aware of character set and encoding issues. Software vendors
can no longer afford to assume that their users are willing to work in only one
language.
Exercises
1. Does your system support locales? If so, what is the default locale?
2. Look at the loeale(l) manpage if you have it. How many locales are there if
you count them with 'locale -a I wc -l'?
529
T his chapter describes several extended APIs . The APIs here are similar in nature
to those described earlier in the book or provide additional facilities. Some of
them could not be discussed easily until after the prerequisite topics were covered.
The presentation order here parallels the order of the chapters in the first half of
the book. The topics are not otherwise related to each other. We cover the following
topics: dynamically allocating aligned memory; file locking; a number of calls that
work with subsecond time values; and a more advanced suite of functions for storing
and retrieving arbitrary data values. Unless stated otherwise, all the APIs in this
chapter are included in the POSIX standard.
p o si x_ mema lign () is a newer function; it's part of yet another optional extension,
the "Advisory Information" (ADV) extension. The function works differently from
most other allocation Linux APIs. It does not return -1 when there's a problem.
Rather, the return value is 0 on success or an er r n o value on failure. The arguments
are as follows:
vo i d * *memptr
A pointer to a void * variable. The pointed-to variable will have the address of
the allocated storage placed into it. The allocated storage can be released with
free () .
siz e _ t al i g nmen t
The required alignment. It must be a multiple of sizeo f (vo i d *) and a power
of2.
530
14.2 Locking Files 531
size t size
The number of bytes to allocate.
TABLE 14.1
File locking functions
the lock either blocks until the lock becomes available or will have its operation
fail. (Under GNU/Linux, at least, this includes root !)
Advisory locking is adequate for cooperating programs that share a private file, when
no other application is expected to use the file. Mandatory locking is advisab le in situ-
ations in which avoiding conflicting file use is critical, such as in commercial
database systems.
POSIX standardizes only adviso lY locking. Mandatory locking is available on
GNU/Linux, as well as on a number of commercial Unix systems , but the details vary.
We cover the GNU/Linux details later in this section.
st r uct flock {
};
The l_s t a rt field is the starting byte offset for the lock l _ l en is the length of the
byte range, that is, the total number of bytes to lock l _whence specifies the point in
the file that l _ start is relative to; the values are the same as for the whence argument
to lseek ( ) (see Section 4.5 , "Random Access: Moving Around within a File,"
page 102) , hence the name for the field. The structure is thus self-contained: The
l _ start offset and l_whence value are not related to the current file offset for reading
and writing. Some example code might look like this:
struct employee { /* whatever * / }; / * Describe an employee */
struct flock lock; / * Lock structure * /
Using SEEK_CUR or SE EK_END , you can lock ranges relative to the current position
in the file, or relative to the end of the file , respectively. For these two cases, l_s t ar t
may be negative, as long as the absolute starting position is not less than zero . Thus, to
lock the last record in a file:
/* Loc k last struct employ ee * /
lock . l_whence = SE EK_END; / * Relative to EOF * /
lock . l_start = -1 * s izeof(struct emp loy ee); / * Start of last structure * /
lock . l_len = sizeof ( s t r uct e mployee) ; / * Lock on e record * /
Setting l_len to 0 is a special case. It means lock the file from the starting position
indicated by l _ star t and l _whence through the end of the file. This includes any
positions past the end of the file, as well. (In other words, if the file grows while the
lock is held, the lock is extended so that it continues to cover the entire file.) Thus,
locking the entire file is a degenerate case of locking a single record:
lock . l_whenc e = SEEK_S ET ; / * Ab s olute position * /
lock . l_s tart = 0 ; / * St a rt of file * /
lock . l _ len = 0 ; / * Thr ough end of file * /
14.2 Locking Files 535
POSIX 1003.1-2001 allows l_len to be negative. (And ifit is, the interval
described by the lock covers bytes l_start + l_len up to and including
l_start - 1.) However, for currenr kernels the Linux system call returns
EINVAL in this situation.
(We note that the man page refers to the 2.4.x series of kernels ; it may pay to check the
currenr manpage if your system is newer.)
Now that we know how to describe where in the file to lock, we can describe the type
of the lock with l_type. The possible values are as follows:
F RDLCK A read lock. The file must have been opened for reading to apply a read
lock.
F _WRLCK A write lock. The file must have been opened for writing to apply a write
lock.
F _UNLCK Release a previously held lock.
Thus , the complete specification of a lock involves setting a total of four fields in the
struct flock structure: three to specifY the byte range and the fourth to describe the
desired lock type.
The F _UNLCK value for l_type releases locks. In general, it's easiest to release exactly
the same locks that you acquired earlier, but it is possible to "split" a lock by releasing
a range of bytes in the middle of a larger, previously locked range. For example:
struct employee { / * whatever */ }; / * Describe an employee * /
struct flock lock; /* Lock structure */
The F _SETLKW command also attempts to acquire the specified lock. It differs from
F _S ETLK in that it will wait until the lock becomes available.
Once you've chosen the appropriate value for the cmd argument, pass it as the second
argument to f cn tl ( ) , with a pointer to a filled-in struc t fl oc k as the third argument:
st r uct flock lock ;
int fd;
... open file, fill in struct flock ..
if (fcntl(fd, F_SETLK, & lo ck ) < 0) (
/ * Could not acqui r e loc k, a tt empt t o rec ove r * /
1 The GNU/Linux j ent/(3 ) man page points out that this may nor be enough information; the process could be
residing on another machine! There are other issues with locks held across a network; in general , using locks on
filesystems mounted from remote computers is nor a good idea.
14.2 Locking Files 537
The lockf () function 2 provides an alternative way to acquire a lock at the current
file position:
#include <sys/file . h> XSI
The file descriptor, fd, must have been opened for writing. len specifies the number
of bytes to lock: from the current position (call it pos) to pas + len bytes if len is
posltlve, or from pas - len to pos - 1 if l en is negative. The commands are
as follows:
FLOCK Sets an exclusive lock on the range. The call blocks until the lock becomes
available.
F_TLOCK Tries the lock. This is like F _LOC K, but if the lock isn' t available, F _T LOCK
returns an error.
F ULOCK Unlocks the indicated section. This can cause lock splitting, as described
earlier.
Sees if the lock is available. If it is, returns 0 and acquires the lock. Oth-
erwise, it returns -1 and sets e r r n o to EACC E S .
The return value is 0 on success and -1 on error, with e r rno set appropriately.
Possible error returns include:
EAGAIN The file is locked, for F _TLOCK or F _T E ST .
Code using l ock f () is a bit simpler. For brevity, we've omitted the error checking:
off_t curpos, len;
If you don 't explicitly release a lock, the operating system will do it for you in two
cases . The first is when the process exits (either by main () returning or by the exi t ( )
function, which was covered in Section 9.1.5.1, "Defining Process Exit Status ,"
page 300). The other case is when you call close () on the file descriptor: more on
this in the next section.
• A close () of any file descriptor open on the file removes aii of the process's locks
on a file , even if other file descriptors remain open on it.
That clos e () works this way is unfortunate, but because this is how fcnt l ()
locking was originally implemented, POSIX standardizes it. M aking this behavior the
standard avoids breaking existing Unix code.
The file descriptor fd represents the open file. These are the operations:
L OCK_SH Creates a shared lock. There can be multiple shared locks.
Creates an exclusive lock. There can be only one such lock.
Removes the previous lock.
When bitwise-OR'd with L OCK_ SH or LOCK_EX avoids blocking if the
lock isn't available.
By defa ult, the lock requests will block (not rerurn) if a competing lock exists. Once
the competing lock is removed and the requested lock is obtained, the call returns .
(This implies that, by default, there is potential for deadlock.) To attempt to obtain a
lock without blocking, perform a bitwise OR of LOCK_NB with one of the other values
for operat i o n.
The salient points about fl oc k () are as follows:
• fl oc k () locking is also advisory locking; a program that does no locking can
come in and blast, with no errors , a file locked with floc k ( ) .
• The whole file is locked. There is no mechanism for locking or unlocking just a
part of the file.
4 Ir is fo rrun are rh ar floc k () is a differenr name fro m lock f ( ) , since the semanrics are different. Ir is also terribly
co nfusing. Keep yo ur manual handy.
540 Chapter 14 • Extended Interfaces
• How the file was opened has no effect on the type of lock that may be placed.
(Compare this to fc ntl ( ) , whereby the file must have been opened for reading
for a read lock, or opened for writing for a write lock.)
• Multiple file descriptors open on the same file share the lock. Any one of them
can be used to remove the lock. Unlike fc n tl ( ), when there is no explicit unlock,
the lock is not removed until all open file descriptors for the file have been closed.
• Only one fl ock () lock can be held by a process on a file; calling floc k ( ) succes-
sively with rwo different lock types changes the lock to the new type.
• On GNU/Linux systems , fl oc k () locks are completely independent of f cntl ( )
locks. Many commercial Unix systems implement fl oc k ( ) as a "wrapper" on
top of fcnt l ( ), but the semantics are not the same.
We don 't recommend using fl oc k () in new programs , because the semantics are
not as flexible and because the call is not standardized by POSIX. Support for it in
GNU/Linux is primarily for compatibility with sofrware written for older BSD
Unix systems.
I NOTE The GNU/ Linux flock (2) manpage warns t hat flock () locks do not
work for remotely mounted files . fcntl () locks do , provided you have a recent
, enough version ofLinux and an NFS server that supports locking.
The group execute bit should be left turned off. The s shows that the setgid bit is
turned on but that execute permission isn' t; an s would be used ifboth were on.
14.2 Locking Files 541
The combination of setgid on and group execute off is generally meaningless. For
this reason, it was chosen by the System V developers to mean "enforce mandatory
locking. " And indeed, adding this bit is enough to cause a commercial Unix system,
such as Solaris, to enforce file locks.
On GNU/Linux systems, the story is a little different. The setgid bit must be applied
to a file for mandatory locking, but that alone is not enough. The filesystem containing
the file must also be mounted with the mand option to the mount command.
We have already covered filesystems, disk partitions, mounting, and the mount
command, mostly in Section 8.1, "Mounting and U nmounting Filesystems, " page 228.
We can demonstrate mandatory locking with a small program and a test filesystem on
a floppy disk. First, here's the program:
/* ch14-lockall . c --- Demonstrate mandatory locking . */
2
3 #include <stdio . h> /* for fprintf(), stderr, BUFSIZ */
4 #include <errno . h> /* declare errno */
5 #include <fcntl . h> /* for flags for open() * /
6 #include <string . h> /* declare strerror() * /
1 #include <unistd . h> / * for ssize_t * /
8 #include <sys /types . h>
9 #include <sys/stat . h> / * for mode_t * /
10
11 int
12 main(int argc, char **argv )
13
14 int fd;
15 int i, j ;
16 mode_t rw_mode ;
11 static char message[] "hello, world\n";
18 struct flock lock;
19
20 if (argc ! = 2) {
21 fprintf(stderr, "usage : %s file\n", argv[O]) ;
22 exit(l);
23
24
25 rw_mode = S_IRUSR I S_IWUSR I S_IRGRP I S_IROTH; / * 0644 */
26 fd = open(argv[l] , O_RDWRlo_TRUNClo_CREATlo_EXCL, rw_mode);
21 i f (fd < 0) {
28 fprintf (stder r, "%s : %s : cannot open for read/write : %s\n",
29 argv[O], argv[l] , strerror(errno)) ;
30 (vo id ) close ( fd ) ;
31 return 1 ;
32
33
542 Chapter 14 • Excended Imerfaces
The program sets the permissions and creates the file named on the command line
(lines 25 and 26) . It then writes some data into the file (line 34). Line 4 1 adds the setgid
bit to the permissions, and line 43 changes them. (The fchrnod () system call was dis-
cussed in Section 5.5.2, "Changing Permissions: chmod () and fchmod () ," page 156.)
Lines 51-55 set up the st r uct fl ock to lock the whole file , and then the lock is
actually requested on line 57. Once we have the lock, the program goes to sleep, using
the pau se () system call (see Section 10.7, "Signals for Interprocess Communication,"
page 379). When done, the program closes the file descriptor and returns. Here is an
annotated transcript demonstrating the use of mandatory file locking:
14.3 More Precise T imes 543
[1J+ Stopped su
$ ch14-10cka11 /mnt/f10ppy/x & Background program
[2J 23311 holds lock
$ Is -1 / mnt/f10ppy/x Look at file
- rw -r- Sr-- 1 a r nold dev el 13 Ap r 6 14 : 23 / mnt / floppy / x
$ echo something > /mnt/floppy/x Try to modifY file
bas h2 : / mnt / floppy / x: Resource tempo rari l y u navai l ab le Error returned
$ kill %2 Kill program holding lock
$ Press ENTER
[2J- Te r minated ch14-lockall /mn t/floppy/x Program died
$ echo something > /mnt/f10ppy/x Retry modification, works
$ fg Return to root shell
su
# umount /mnt/f10ppy Unmount floppy
# exit Done with root shell
$
As long as c h14-1 o ckall is running, it holds the lock. Since it's a m andatory lock,
the shell's I/O redirection fails . Once c h14 - lockall exits, the lock is released, and the
1/0 redirection succeeds . As mentioned earlier, under GNU/Linux, not even r oo t can
override a mandatory file lock.
As an aside, Hoppy disks make excellent test beds for learning how to use tools that
manipulate filesystems . If you do something that destroys the data on a Hoppy, it's not
likely to be catastrophic, whereas experimenting with live partitions on regular hard
disks is much riskier.
The tv_ sec value represents seconds since the Epoch; tv_usee is the number of
microseconds within the second.
The GNU/Linux gettimeofday(2) manpage also documents the following macros:
#define timerisset(tvp) ((tvp)->tv_sec II (tvp)->tv_usec )
These macros work on struc t t imeva l * values; that is, pointers to structures,
and their use should be obvious both from their names and the code. The ti me remp ( )
macro is particularly interesting: The third argument is a comparison operator to indicate
5 The gettimeofday(2) man page docum enrs a co rrespo nding set timeofday ( ) fun ction, fo r use by [he superuser
(root) to set m e tim e of day f::>r the whole sys tem.
14. 3 More Precise T imes
the kind of comparison. For example, consider the determination of whether one
struet timeval is less than another:
struct timeval tl , t2;
This says "if tl . tv_sec is less than t2 . tv_sec , OR if they are equal and tl. tv_usee
is less than t2 . tv_usee , then .... "
The tvp argument should point to an array of two struet timeva l structures; the
values are used for the access and modification times, respectively. If tvp is NULL, then
the system uses the current time of day.
POSIX marks this as a "legacy" function, meaning that it's standardized only to
support old code and should not be used for new applications. The primary reason
seems to be that there is no defined interface for retrieving file access and modification
times that includes the microseconds value; the stru e t stat contains only time_t
values , not st r uet timeval values.
However, as mentioned in Section 5.4.3 , "Linux Only: Specifying Higher-Precision
File Times," page 143 , Linux 2.6 (and later) does provide access to nanosecond
resolution timestamps with the stat () call. Some other systems (such as Solaris) do
546 Chapter 14 • Extended Interfaces
as wel1. 6 Thus, utimes () is more useful than it first appears, and despite its official
"legacy" status, there's no reason not to use it in your programs.
TABLE 14.2
Interval timers
The use of the first timer, ITIMER_REAL, is straightforward. The timer runs down
in real time, sending SIGALRM after the given amount of time has passed. (Because
SIGALRM is sent, you cannot mix calls to seti timer () with calls to alarm ( ), and
mixing them with calls to sleep () is also dangerous; see Section 10.8.1 , "Alarm Clocks:
sleep ( ) , alarm ( ) , and SIGALRM," page 382.)
6 Unfortun ately, there seems ro be no current standard for the names of the members in the struct sta t ,
making it an unportable operation.
14.3 More Precise Times 547
blocked doing I/O, such as to a disk or, more importantly, to a terminal , the timer
is suspended.
The third timer, ITI MER_PROF , is more specialized. It runs down whenever the
process is running, even if the operating system is doing something on behalf of the
process (such as I/O). According to the POSIX standard, it is "designed to be used by
interpreters in statistically profiling the execution of interpreted programs ." By setting
both ITIMER_V IRTUAL and ITIMER_PROF to identical intervals and computing the
difference between the times when the two timers go off, an interpreter can tell how
much time it's spending in system calls on behalf of the executing interpreted program?
(As stated, this is quite specialized.) The two system calls are:
#include <sys / time . h> XSI
The which argument is one of the symbolic constants listed earlier naming a timer.
getitimer() fills in the struct itime r val pointed to by value with the given
timer's current settings. se t i t ime r ( ) sets the given timer with the value in value . If
oval ue is provided, the function fills it in with the timer's current value. Use an
oval ue of NU L L if you don' t care about the current value. Both functions return 0 on
success or -1 on error.
A struc t i timerva1 consists of two st r uct timeval members:
struct itimerval {
struct timeval it_interval ; /* nex t va l ue * /
st r uct timeval it_v alue; / * current v a lue * /
};
Application programs should not expect timers to be exact to the microsecond. The
getitimer(2) man page provides this explanation:
Timers will never expire before the requested time, instead expiring some
short, constant time afterwards , dependent on the system timer resolution
(currently lOms). Upon expiration, a signal will be generated and the timer
reset. If the timer expires while the process is active (always true for
I TIMER_V I RT ) the signal will be delivered immediately when generated.
7 D oing profilin g co rrecd y is nonrrivial; if you 're rhinkin g ab our wriring an inrerprerer, ir pays to do your
research firsr.
548 Chapter 14 • Extended Interfaces
Lines 10-18 are the signal handler for S I GA LRM ; the assert () call makes sure that
the signal handler was set up properly. The body of the handler prints a message and
exits, but it co uld do anyth ing appropriate for a larger-scale program.
In the ma i n () program, lines 27- 28 clear o ut the two s truc t t i meval members
of the s truct i time r val structure, t val. Then line 30 sets the timeout to 10 seconds.
Having tval . i t _i nte r val set to 0 means there is no repeated alarm ; it only goes off
once. Line 32 sets the signal h andler, and line 34 prints the prompt.
Line 36 sets the timer, and lines 37- 42 print appropriate messages based on the user's
action. A real program would do its work at this point. What's important to note IS
line 38, which cancels the timer because valid data was entered.
I point
NOTE There is a deliberate race co ndition between lines 37 and 38. Th e w hole
I,w
I is that if th e user doesn 't e nter a line w ith in the ti m er's ex p iratio n period ,
t he signal w ill be deli vered and t he signal handl er will print the " yo u los e"
I message .
POSIX leaves it undefined as to how the interval timers interact with the sleep ( )
function, if at all. GLIBC does not use alarm () to implement sleep ( ), so on
GNU/Linux systems, sleep () does not interact with the interval timer. However, for
portable programs, you cannot make this assumption.
This function is part of the optional "Timers" (TMR) extension to POSIX. The nvo
arguments are the requested sleep time and the amo unt of time remaining should the
sleep return early (if rem is not NULL). Both of these are struet timespee values:
struct timespec {
time_t tv_sec; / * s e conds * /
long tv_nsec ; / * n a n o s e c on ds * /
};
The t v_nse e value must be in the range 0-999 ,999,999. As with sleep ( ), the
amount of time slept can be more than the requested amount of time, depending on
when and how the kernel schedules processes for execution.
Unlike sleep ( ), nanosleep () has no interactions with any signals, making it
generally safer and easier to use.
The return value is 0 if the process slept for the full time. Otherwise, it is -1, with
errno indicating the error. In particular, if errno is EI NTR, then nanosl eep () was
interrupted by a signal. In this case, if rem is not NULL, the s true t t i mespee it points
to is filled in with the remaining sleep time. This facilitates calling nanosleep () again
. .
to contmue nappmg.
Although it looks a little strange, it's perfectly OK to use the same structure for both
parameters:
14.4 Advanced Searching wirh Binary Trees 551
The struct timeval and st ruct timespec are similar to each other, differing
o nly in the units of the seco nd component. The GLIBC <sys /time . h > header file
defines two useful macros for converting between them:
#include <sys/t i me . h> CLiBe
#end if
I NOTE It is indeed confusing that some system call s use mi crosecond resolution
I and others use nanosecond resolution. This reason is histori cal: The
I mi crosecond calls were developed on syste ms whose hardware clocks did not
~ have any higher resolution , whereas the nanosecond calls were develo ped more
~:.~.: rece ntly, for systems with mu ch higher resolutio n clocks. C'est la vie. About all
m yo u ca n do is to keep your manua l hand y.
@
modern systems have large memories, consider the constraints of programmers writing
software for embedded systems, such as microwave ovens or cell phones. On the other
end of the spectrum, consider the problems of programmers dealing with very large
amounts of inputs, such as weather simulations.)
The comp uter science field has invented numerous dyna mic data structures, structures
that grow and shrink in size on demand, that are more flexible than simple arrays, even
arrays created and resized dynamically with malloe () and realloe ( ) . Arrays also re-
quire re-sorting should new elements be added or removed.
One such structure is the binary search tree, which we'll just call a "binary tree" for
short. A binary tree maintains items in sorted order, inserting them in the proper place
in the tree as they come in. Lookup in a binary tree is also fast , similar in time to binary
search on an array. Unlike arrays, binary trees do not have to be re-sorted from scratch
every time you add an item.
Binary trees have one disadvantage. In the case in which the input data is already
sorted, the lookup time of binary trees reduces to that of linear searching. The techni-
calities of this have to do with how binary trees are managed internally, described
shortly.
Some more formal data-structure terminology is now unavoidable. Figure 14.1 shows
a binary tree. In computer science, trees are drawn starting at the top and growing
downwards. The further down the tree you go, the higher depth you have. Each object
within the tree is termed a node. At the top of the tree is the root node, with depth o.
At the bottom are the leafnodes, with varying depth. In between the root and the leaves
are zero or more internal nodes. Leaf nodes are distinguished by the fact that they have
no subtrees hanging off them, whereas internal nodes have at least o ne subtree. Nodes
with subtrees are sometimes referred to as parent nodes, with the subnodes being
called children.
Plain binary trees are distinguished by the fact that nodes have no more than two
children. (Trees with more than two nodes are useful but aren't relevant here.) The
children are referred to as the left and right children, respectively.
Binary search trees are further distinguished by the fact that the values stored in a
left subchild are always less than the value stored in the node itself, and the values stored
in the right subchild are always greater than the value in the node itself. This implies
that there are no duplicate values within the tree. This fact also explains why trees don't
14.4 Advanced Searching wirh Bi nary Trees 553
Depth 1 3 9
/\ / ~\ Internal and
leaf nodes
Depth 2 2 4 7 10
Depth 3
/ /\
6 } Leaf nodes
FIGURE 14.1
A binary tree
handle presorted data well: Depending on the sort order, each new data item ends up
stored either to the left or to the right of the one before it, forming a simple linear list.
The operations on a binary tree are as follows:
Insertion
Adding a new item to the tree.
Lookup
Finding an item in the tree.
Removal
Removing an item from the tree.
Traversal
Doing something with every item that has been stored in the tree. Tree traversals
are also referred to as tree walks. There are multiple ways to "visit" the items stored
in a tree. The function s discussed here only implement one such way. We have
more to say about this, later.
554 Chapter 14 • Exrended Imerfaces
void tdestroy (v oid *root, v oid (*free_ n ode) (void *nodep)); GLlBC
These functions were first defined for System V and are now formally standardized
by POSIX. They follow the pattern of the others we saw in Section 6.2, "Sorting and
Searchin g Functions, " page 18 1: using void * pointers for pointing at arbitrary data
types, and user-provided comparison functions to determine ordering. As for qsort ( )
and bsearch (), the comparison function must return a negative/zero/positive value
when the key is compared with a value in a tree node.
val = tsearch(key, & root, my_c ompare) ; Insert first item in tree
... fill key2 with a different value. DON'T modifY root ...
val = tsearc h(key2, & r oot, my_compare ); Insert subsequent item in tree
As shown, the r oo t variable should be set to NULL only the first time and then left
alone after that. On each subsequent call, tsearch () uses it to manage the tree.
When the key being so ught is foun d, both tse arch ( ) and tfind () return pointers
to the node containing it. They differ when the key is not found: t find () returns
14.4 Advanced Searching wirh Binary Trees 555
NULL, and tsearch () inserts the new value into the tree and returns a pointer to it.
The poi nters returned by tsearch () and tfind () are to th e internal tree nodes . They
can be used as the value of ro o t in subsequent calls in order to wo rk on subtrees. As
we wi ll see shortly, the key value can be a pointer to an arbitrary structure; it's not re-
stricted to a character string as the previo us example might imply.
T h ese routines stOre only pointers to the d ata used for keys. T hus, it is up to you to
manage the stOrage holding the data values, usually with malloc ( ) .
I NOTE Since the tree fun ctions kee p pointers, be extra careful not to use
~ reall oc () for va lu es that have been used as keys! realloc () co uld move
I the data aro und , returning a new pointer, but th e tree routines wo uld still be
m maintaining dangling pointers into the old data .
h
};
How can a pointer to a node double as a pointer to a pointer to the data? Well,
consider how a binary tree's node would be implemented. Each node maintains at least
a pointer to the user's data item and pointers to potential left and right subchildren .
So , it has to look approximately like this:
struct bi nary_tree {
void *user_data ; Pointer to user's data
struct binary_tree * l eft; Left subchild or NULL
s truc t binary_ tree *right; Right subchild or NULL
... possibly other fields here ...
node;
C and c++ guarantee that fields within a struct are laid out in increasing address
order. Thus, it's true that '& node .l eft < & node. righ t' . Furthermore, the address
of the s truct is also the address of its first field (in other words, ignoring type issues,
,& node == & node.u ser_dat a ') .
Conceptually, then, here's what ' e = *( (st ru ct employe e **) vp);' means:
vp lastname
left firstname
right
startdate
FIGURE 14.2
Tree nodes and their pointers
You might consider defining a macro to simplify the use of the returned pointer:
#define tree_data(ptr, type) (*(type **) (ptr))
The first parameter is the root of the tree (not a pointer to the roOt). The second is
a pointer to a callback function, which is called with three arguments: a pointer to the
tree node being visited, an enumerated type indicating how the given node is being
visited, and an integer indicating the depth of the current node (the root is at depth 0,
as explained earlier).
The use here of a callback function is the same as for n ft w () (see Section 8.4.3.2,
"The nftw () Callback Function," page 263). There, the callback function is called for
each object in the filesystem. Here, the callback function is called for each object stored
in the tree.
There are several ways to traverse, or "walk," a binary tree:
The GLIBC twalk () function uses the second of these: the node first, then the left
child, then the right child. Each time a node is encountered, the node is said to be vis-
ited.8 In the course of visiting anode's child, the function must visit the node itself.
Thus the values of type VI S I T indicate at what stage this node is being encountered:
p re order Before visiting any children.
post o rder After visiting the first child but before visiting the second child.
e n do r der After visi ting both children.
leaf This node is a leaf node, without children.
,I·
I NOTE The terminology used here does not exactly match that used in formal
data-structures texts. There , the terms used are in order, preorder, and postorder,
; referring respectively to the three ways listed earlier for traversing a tree. Thus,
, twa lk() uses a preordertraversal , but uses the pre o r d er, etc., symbolic
'I:constants to indicate at what stage a node is being visited . This can
I be confusing.
8 Images come to mind of little binary data structures sitting down willi each other over tea and cookies. O r at
least that happens if you 've been spendin g toO much time in front of your computer .. .
14.4 Adva nced Searchingwi[h Binary Trees 559
Lines 7-1 2 define the struct employee, and lines 14-38 define
emp_ n a me_id_ compare() .
Lines 40-56 define pr i nt_emp (), the callback function that prints a struct
employee, along with the depth in the tree of the current node. Note the magic cast
on line 44 to retrieve the pointer to the stored data.
560 Chapter 14 • Extended Interfaces
The goal of printing the tree is to print the contained elements in sorted order. Re-
member that twalk () visits intermediate nodes three times and that the left child is
less than the node itself, while the right child is greater than the node. Thus, the swi tch
statement prints the node's information only if which is leaf, for a leaf node, or
postorder, indicating that the left child has been visited, but not yet the right child.
The data used is the list of presidents, also from Section 6.2, "Sorting and Searching
Functions, " page 181. To refresh your memory, the fields are last name, first name,
employee number, and start time as a seconds-since-the-Epoch timestamp:
$ cat presdata.txt
Bush George 43 98001360 0
Clint on Wi l liam 42 7275528 00
Bush Geo rge 41 6013224 00
Reagan Ronald 4 0 3488616 00
Carter James 39 2226 3 120 0
The data are sorted based on last name, then first name, and then seniority. When
run,9 the program produces this output:
Depth : o. Employee :
Bush, George 43 Sat Jan 20 13 : 00 : 00 2001
Depth : 2 . Employee:
Carte r, J ames 39 Thu Jan 20 13: 00 : 00 1977
Depth : l. Employee :
Clin ton, v-]illiam 42 Wed Jan 20 13 : 00 : 00 1993
Depth: 2 . Employee :
Reagan, Ronald 40 Tue Jan 20 13 : 00 : 00 1981
14.4.6 Tree Node Removal and Tree Deletion: tde let e () and
tdestr oy ( )
Finally, you can remove items from a tree and, on GLIBC systems, delete the entire
tree itself:
void *tdelete(const v oid *key, void **rootp,
int (*compa re ) (co nst void * const void * )) ;
The arguments to tdelete () are the same as for tsearch () : the key, the address
of the tree's root, and the comparison function. If the given item is found in the tree,
it is removed and tdelete () returns a pointer to the parent of the given node. Other-
wise, it returns NULL. T his behavior has to be managed carefully in your code if you
need the original item being deleted, for example, to free its storage:
struc t employee *e, key; Variable declarations
void *vp, *rooti
... fill in key for item to remove from tree.
vp = tfind (& key, root, emp_name_id_c ompare); Find item to remove
if (vp ! = NULL ) {
e = * (( struct employee ** ) vp); Convert pointer
free(e) ; Free storage
(void) tdelete(& key, & root, emp_name_id_compare); Now remove it from tree
Although not specified in the man pages or in the POSIX standard, under
GNU/Linux, if you delete the item stored in the root node, the returned value is that
of the new root node. For portable code, you should not necessarily rely on this behavior.
562 Chapter 14 • Extended Interfaces
14.5 Summary
• Occasionally, it's necessary to allocate memory aligned at a certain boundary.
posix_memalign () does this. Its return value is different from that of most of
the functions covered in this book: Caveat emptor. memalign () also allocates
aligned memory, but not all systems support releasing that memory with free ( ) .
• File locking with fcntl () provides record locks, down to the level of the ability
to lock single bytes within a file. Read locks prevent writing of the locked area,
and a write lock prevents other processes from reading and writing the locked
area. Locking is advisory by default, and POSIX standardizes only advisory locking.
Most modern Unix systems support mandatory locking, using the setgid permission
bit on the file and possibly additional filesystem mount options.
• On GNU/Linux, the lockf () function acts as a wrapper around POSIX locking
with fcntl (); the BSD flock ( ) function's locks are (on GNU/Linux) completely
independent of fcntl () locks . BSD flock () locks are whole-file locks only and
do not work on remote filesystems. For these reasons, flock () locks are
not recommended.
• get t imeo fday () retrieves the time of day as a (seconds, microseconds) pair in a
struct timeval. These values are used by utimes () to update a file 's accessed
and modification times . The geti timer () and seti timer () system calls use
pairs of struct timevals in a struct itimerval to create interval
timers-alarm clocks that "go off' at a set time and continue to go off at a set in-
terval thereafter. Three different timers provide control over the states in which
the timer continues to run down.
• The nanosleep () function uses a struct timespec, which specifies time in
seconds and nanoseconds, to pause a process for a given amount of time. It has
the happy trait of not interacting at all with the signal mechanism.
14.6 Exercises 563
• T he tree API is an additional set of data storage and search functions that maintains
data in binary trees, the effect of which is to keep data so rted. The tree API is very
flexible, allowi ng use of multiple trees and arbitrary data.
Exercises
It should behave like the standard strftime () function, except that it allows
%q to mean " the current number of microseconds."
6. Using the s trftimes () functi on you just wrote, write an enhanced version
of date that accepts a format string beginning with a leading + and formats
the current date and time. (See date(l) .)
7. The handling of the timeout in ch14-timers . c is rather primitive. Rewrite
the program to use setjmp () after printing the prompt and longjmp () fro m
within the signal handler. D oes this improve the structure or clariry of
the program?
8. We noted that ch14-timers . c contains a deliberate race condition. Suppose
the user enters a response within the right time period, but ch14-timers is
suspended before the alarm can be canceled. What call can you make to cut
down the size of the problem window?
9. Draw the tree as shown by the output of ch14-tsearch in Section 14.4.5,
"Tree Traversal: twalk ( ) ," page 557.
564 Chapter 14 • Extended Interfaces
Next, write two programs. Each should read the new list and store each word
read into a tree and an array, respectively. The second program should use
qsort () to sort the array and bs ear ch () to search it.
Retrieve the word 'gravy' from the tree or array. Time the two programs to
see which one runs faster. You may need to put the word retrieval inside a loop
that runs multiple times (say 1,000) , to get running times that are long enough
to show a difference.
Use the output of p s to see how much memory each program uses.
11. Rerun the two programs , using the original sorted dictionary file , and see how,
if at all, the timing results change.
d P
tii 11 w
}::
iN
'i;
!:! I W
~ ,.: ~
In i;!~
565
In this chapter
567
T here are many practices, starting with program logic and data design, through
code breakdown and organization , and finally implementation, that can help
minimize errors and problems. We encourage you to study these; find good books
on software design and software engineering, and put their advice into practice! Any
program over a few hundred lines in size should be carefully thought out and de-
signed, instead of just hacked on until it appears to work.
H owever, since programmers are human, programming errors are unavoidable.
Debugging is the process of tracking down and removing errors in programs. Even
well-designed, well-implemented programs occasionally don't work; when some-
thing's going wrong and you can't figure out why, it's a good idea to point a debugger
at the code, and watch it fail.
This chapter covers a range of topics, starting off with basic debugging advice and
techniques (compiling for debugging and elementary use ofGDB, the GNU debug-
ger) , moving on to a range of techniques for use during program development and
debugging that make debugging easier, and then looking at a number of tools that
help the debugging process. It then closes with a brief introduction to software
testing, and a wonderful set of "debugging rules ," extracted from a book that we
highly recommend.
Most of our advice is based on our long-term experience as a volunteer for the GNU
project, maintaining gawk (GNU aWk) . Most, if not all , the specific examples we
present come from that program.
Througho ut the chapter, specific recommendations are marked Recommendation.
568
15.2 Compilation for Debugging 569
which you first have to isolate the problem and then fix it. Once you're sure that
memory problems aren't the issue, you can proceed to using a debugger.
Because the debugger is a more general too l, we cover it first. We discuss a number
of memory-debugging tools later in the chapter.
and fix it. Rarely, compiling a program without -0 can cause it to stop failing. 1 Typi-
cally, the problem persists when compiled without -0, meaning there is indeed a logic
bug of some kind, waiting to be discovered.
I Compiler optimizations are a notorious scapegoat for logic bugs. In the past, finger-pointing at the compiler was
more justified. In our experience, using modern systems and compilers, it is very unusual (0 find a case in which
co mpil er optimization introduces bugs into working code.
2 We're speaking of the original BSO dbx. We have used GOB excl usively for well over a decade.
3 d dd comes with many GNU/Linux systems. The source code is available from the GNU Project's FTP sire for
d d d (ftp: / / ftp.gnu. o r g /gn u/ d dd/ ).
15.3 GOB Basics 571
operating system and dumped core. Under GNU/Linux, such files (by default) are
named core . pid,7 where pid is the process ID number of the running program that
died. The pid extension means you can have multiple core dumps in the same directory,
which is helpful, but also good for consuming disk space!
If you forget to name the files on the command line, you can use' f i 1 e execu tab] e'
to tell GOB the name of the executable file, and 'core-file core-file - name' to
tell GDB the name of the core file .
With a core dump, GDB indicates where the program died. The following program,
ch15-abort . c, creates a few nested function calls and then purposely dies by abo rt ( )
to create a core dump :
1* ch15-abort.c --- produce a core dump *1
void recurse (v o id )
static int i;
if ( ++i == 3)
abort () ;
e l se
recurs e () ;
recurse () ;
There is absolutely no warranty for GDB . Type "show warranty" for details .
This GDB was configured as "i686-pc-linux-gnu" .
Core was generated by 'ch1S-abort' .
Program terminated with signal 6, Aborted .
Reading symbols from /lib/i686/libc . so . 6 ... done .
Loaded symbols for /lib/i686/libc . so . 6
Reading symbols from /lib/ld-linux . so . 2 ... done .
Loaded symbols for /l ib /ld-linux . so.2
#0 Ox42028cc1 in kill () from /l ib /i686/l ibc . so . 6
(gdb) where Print stack trace
#0 Ox42028cc1 in kill () from /lib/i686/libc . so . 6
#1 Ox42028ac8 in raise () from / lib/i686/libc . so . 6
#2 Ox4202a019 in abort () from /lib/i686/libc . so . 6
#3 Ox08048342 in recurse () at ch1S-abort . c : 13 < - - - We need to examine here
#4 Ox08048347 in recurse () at ch1S-abort . c : 1S
#S Ox08048347 in recurse () at ch1S-abort . c : 1S
#6 Ox080483Sf in main (argc=l , argv=Oxbffff8f4) at ch1S-abort . c : 20
#7 Ox4201S8d4 in _libc_start_main () from /lib/ i686/libc . so. 6
The whe re command prints a stack trace, that is, a list of all the functions called,
most recent first. Note that there are three invocations of the recurse () function.
The command bt, for "back trace, " is an alias for where ; it's easier to type.
Each function invocation in the stack is referred to as a frame. This term comes from
the compiler field, in which each function's parameters, local variables, and return ad-
dress, grouped on the stack, are referred to as a stack fame. The GDB frame command
lets you examine a particular frame. In this case, we want frame 3 . This is the most recent
invocatio n of recurse ( ) , which called abort ( ) :
(gdb) frame 3 Move to fram e 3
#3 Ox 08048342 in recurse () at ch1S-abort . c : 13
13 abort( ) ; GOB prints source location in frame
(gdb) list Show several lines of source code
8 void recurse (void)
9
10 static int i;
11
12 if (++i == 3)
13 abort() ;
14 else
lS recurse() ;
16
17
(gdb) Pressing ENTER repeats the last command
18 int main(int argc , char **argv)
19
20 recurse() ;
21
(gdb) quit Leave the debugger (for now)
574 Chapter 15 • Debugging
As demonstrated, pressing ENTER repeats the last command, in this case, list , to
show source code lines. This is an easy way to step through the source code.
GDB uses the re adline library for command-line editing, so you can use Emacs
or vi commands (as you prefer) for recalling and editing previous lines. The Bash shell
uses the same library, so if you're familiar with command-line editing at the shell prompt,
GDB's works the same way. This feature saves considerable typing.
1500 v oid
1501 do-pri n t ( regist er NODE * tree)
1502 (
1503 regi s t e r NODE **t ;
1504 struc t r e direct *rp NULL ;
1505 regi s t er FILE *fp;
1506 int nurnnode s , i i
1507 NODE *s ave;
1508 NOD E *tva l ;
Once the breakpoint is reached, you proceed through the program by single-stepping
it. This means that GDB allows the program to execute one so urce code statement at
a time. GDB prints the line it's about to execute and then prints its prompt. To run
the statement, use the nex t command:
(gdb) next Run current statement ( 150 4, above)
1510 fp = redire cc_ to_fp ( tree - >rnod e , & rp ) ; GOB prints next statement
(gdb ) Hit ENTER to run it, and go to next
1511 if (fp == NULL )
(gdb ) ENTER again
15 19 sav e = tree = tr ee-> l n ode ;
(g db ) And again
15 20 f or (n u mnode s = 0 ; t r ee ! = NULL ; tr e e = t r e e->rnode )
I
~
NOTE It's easy to forget which command you're using and keep pressing
ENTER to run each subsequent statement. If you ' re using s tep, you can
'" accidentally enter a library function , such as strlen () or printf (), which
1
.• you really don't want
.•.
11
to bother with. In such a case, you can use the command
~ finish, which causes the program to run until the current function returns .
*
You can print memory contents by using the print command. GDB understands
C expression syntax, which makes it easy and natural to examine structures pointed to
by pointers:
576 Chapter 15 • Debugging
Finally, the cont (continue) command lets you continue the program's execution.
It will run until the next breakpoint or until it exits normally if it doesn 't hit any
breakpoints. This example picks up where the previous one left off:
1520 for (numnodes = 0; tree != NULL; tree = tree->rnode )
(gdb ) cont Continue
Continuing .
hello, world
};
GOB can do much more than we've shown here. Although the GDB manual is large,
it is worthwhile to read it in its entirety at least once, to familiarize yourself with its
commands and capabilities. After that, it's probably sufficient to look at the NEWS fi le
in each new GOB distribution to see what's new or changed.
It's also worth printing the GDB reference card w hich comes in the file
gdb / doc / refcard . tex wi thi n the GOB source distribution. You can create a printable
PostScript version of the reference card, after extracting the source and running
configure, by using these commands:
$ cd gdb / doc Change to doc subdirectory
$ make refcard.ps Format the re ference card
The reference card is meant to be printed dual-sided, on 8.5 x 11 inch ("letter") paper,
in landscape format. It provides a six-column summary of the most useful GDB com-
mands. We recommend printing it and having it by your keyboard as you work
with GOB.
#i f de f DEBUG
fprintf (stderr, "myvar %d\n ", myvar);
fflush (stderr ) ;
#endif / * DEBUG * /
Adding -DDEBUG to the compiler command line causes the call to fprintf () to
execute when the program runs.
Recommendation: Send debug messages to stderr so that they aren' t lost down a
pipeline and so that they can be captured with an I/O redirection. Be sure to use
fflush () so that messages are forced to the output as soon as possible.
I NOTE The symbol DEBUG, while obvious, is also highly overused . It's a better
I idea to use a symbol specific to your program , such as MYAPPDEBUG. You can
I. even use different symbols for debugging code in different parts of your program ,
I such as file I/ O , data verification, memory management, and so on.
Scattering lots of # i f def statements throughout your code quickly becomes painful.
And too many #ifdefs obscure the main program logic. There's got to be a better way,
and indeed, a technique that's often used is to conditionally define special macros
for printing:
/ * TECHNIQUE 1 --- commonly used but not recommended, s e e text * /
/ * In applicati on header fi l e : * /
#ifdef MYAPPDEBUG
#define DPRINT O( msg ) fprintf(stderr, msg )
#define DPRINTl (msg, vl ) fprintf(stderr, msg, vl )
#define DPRINT2 (msg, vl, v2 ) fprintf(stderr, msg, vl, v2 )
#define DPRINT3 (msg, vl, v2, v3 ) fprintf(stderr, msg, vl, v 2 , v 3)
#else / * ! MYAPPDEBUG * /
#define DPRINT O( msg )
#define DPRINTl (msg, vl )
#define DPRINT2 (msg, vl, v2 )
#define DPRINT3 (msg, vl, v2, v3 )
#endif / * I MYAPPDEBUG * /
There are multiple macros, one for each different number of arguments, up to
whatever limit you wish to provide. When MYAPPDEBUG is defined, the calls to the
DPRINTx() macros expand into calls to fprintf () . When MYAPPDEBUG isn't defined,
15.4 Programming for Debugging 579
then those same calls expand to nothing. (This is essentially how assert () works; we
described asse rt () in Section 12. 1, "Assertion Statements: assert () ," page 428.)
T his technique works; we h ave used it o urselves and seen it recommended in text-
books . H owever, it can be refined a bit further, reducing the number of macros down
ro one:
/* TECHNIQUE 2 --- most portable; recommended * /
/* In applicat ion header file : */
#ifdef MYAPPDEBUG
#define DPRINT(s tuff ) fprintf stuff
#else
#define DPRINT(stuff)
#endif
Note how the macro is invoked, with two sets of parentheses! By making the entire
argument list for fprintf () into a single argument, you no longer need to have an
arbitrary number of debugging macros.
If you are using a compiler that conforms to the 1999 C standard, you have an addi-
tional choice, which produces the cleanest-looking debugging code:
/ * TECHNIQUE 3 - -- cleanest, but C99 o nly * /
/ * In applic ation header file: * /
#ifdef MYAPPDEBUG
#define DPRINT (me sg , ... )
#else
#define DPRINT(mesg, ... )
#endif
The 1999 C standard provides variadic macros; that is , macros that can accept a
variable number of arguments . (This is similar to variadic functions, like p ri ntf ().)
In the macro definition, the three periods, ' ... " indicate that there will be zero or more
arguments. In the macro body, the special identifier __VA_ARGS __ is replaced with the
provided arguments, however many there are.
The advantage ro this mechanism is that only one set of parentheses is necessary
when the debugging macro is invoked, making the code read much more naturally.
580 Chapter 15 • Debuggin g
It also preserves the ability to have just one macro name, instead of multiple names that
vary according to the number of arguments. The disadvantage is that C99 compilers
are not yet widely available, reducing the portability of this construct. (However, this
situation will improve with time. )
Recommendation : Current versions of GCC do support C99 variadic macros. Thus,
if you know that you will never be using anything bur GCC (or some other C99 com-
piler) to compile your program, you can use the C99 mechanism. However, as of this
writing, C99 compilers are still not commonplace. So, if your code has to be compiled
by different compilers, you should use the double-parentheses-style macro.
At first glance, this looks fin e. The condition 'RS_ is_ null' is clear and easy to un-
derstand, and abstracts the details inherent in the test. The problem comes when you
try to print the value in GDB:
(gdb) print RS_ is_ nu ll
No symbol "RS_is_null" in current context .
In such a case, you have to track down the definition of the macro and print the
expanded value.
Recommendation: Use variables to represent important conditions in your program,
with explicit code to change the variable values when the conditions change.
Here is an abbreviated example, from i o . c in the gawk distribution:
8 Bjarn e StfO ustrup , th e creator of C++ , wo rked hard ro make the use of the C preprocessor completely unnecessary
in C ++. In our opinion, he didn 't quite succeed: #include is still needed, bur regular macros aren't. For C, th e
preprocessor remains a valuable rool, but it sh ould be used judiciously.
15 .4 Programming for Debugging 581
void set_RS ( )
{
if (RS->stlen == 0)
RS_is_null = TRUE ;
matchrec = rsnullscan ;
Once RS_ is_ null is set and maintained, it can be tested by code and printed from
within a debugger.
p
iI
J! NOTE Beginning with GCC 3.1 and version 5 ofGDB, if you compile your
program with the options -gdwarf -2 and -g3, you can use macros from within
GDB. The GOB manual states that the GOB developers hope to eventually find
I a more compact representation for macros, and that the -g 3 option will be
t~ subsumed into -g.
@
Ii However, only the combination ofGCC, GOB, and the special options allows
@ you to use macros this way: If you 're not using GCC (or if you're using an older
g.lb.~ version), you still have the problem. We stand by our recommendation to avoid
~ such macros if you can.
The problem with macros extends to code fragments as well. If a macro defines
multiple statements, you can ' t set a breakpoint inside the middle of the macro. This is
also true ofC99 and c++ inli n e functions: If the compiler substitutes the body of an
inl i ne function into the generated code, it is again difficult or impossible to set a
breakpoint inside it. This ties in with our advice to compile with - g alone; in this case,
compilers usually don' t do function inlining.
Along similar lines, it's common to have a variable that represents a particular state.
It's easy, and encouraged by many C programming books, to #de fi ne symbolic con-
stants for these states. For example:
582 Chapter 15 • Debugging
state NOSTATE;
state I NLEADER;
if (sta te != INTERM )
At the source code level, this looks great. But again, there is a problem when you
look at the code from within GDB :
(gdb ) print state
$1 = 2
Here too, you're forced to go back and look at the header file to figure our what the
2 means. So, what's the alternative?
Recommendation: Rewrite the original code, using explicit temporary variables that
store return values or conditional results so that you can examine them in a debugger.
The original code should be maintained in a comment so that you (or some later pro-
grammer) can tell what's going on.
Here's a concrete example: the function do_i nput () from gawk's file i o . c :
1 / * do_input --- the main input processing loop * /
2
3 void
4 do_input ( )
5 (
6 IOBUF *iop;
7 extern int exiting;
8 int rval1, rva12, rva13 ;
9
10 (void ) setjmp (filebuf) ; / * for 'nextf ile' */
11
12 while (( iop = nextfile(FALSE)) != NULL) (
13 /*
14 * This was :
15 if ( inrec ( iop ) == 0)
16 while (in terpret (expr ession_value) && inrec(iop) 0)
17 continue ;
18 * Now expand it out for ease of debugging .
19 */
20 rval1 = inrec(iop);
21 i f (rvall == 0) (
22 for ( ;; ) (
23 rva12 = rva13 = -1; / * for debugging * /
24 rva12 = interpret ( expressi on_value ) ;
25 if (rva12 != 0)
26 rva13 = inrec(iop);
27 if ( rva12 == 0 II rva13 != 0)
28 break;
29
30
31 if (exiting )
32 break;
33
34
(The line numbers are relative to the start of the routine, not the file.) This function
IS the heart of g aWk 'S main processing loop. The outer loop (lines 12 and 33) steps
through the command-line data files. The comment on lines 13-19 shows the original
code, which reads each record from the current file and processes it.
584 Chapter 15 • Debugging
A 0 return value from i nrec () indicates an OK status, while a nonzero return value
from in terpre t () indicates an OK status. When we tried to step through this loop,
verifYing the record reading process, it became necessary to perform each step
individually.
Lines 20-30 are the rewritten code, which calls each function separately, storing the
return values in local variables so that they can be printed from the debugger. Note
how line 23 forces these variables to have known , invalid values each time around the
loop: Otherwise, they would retain their values from previous loop iterations . Line 27
is the exit test; because the code has changed to an infinite loop (compare line 22 to
line 16) , the test for breaking out of the loop is the opposite of the original test.
As an aside, we admit to having had to study the rewrite carefully when we made it,
to make sure it did exactly the same as the original code; it did. It occurs to us now that
perhaps this version of the loop might be closer to the original:
/* possible replacement for li n es 22 - 29 * /
do
rva12 = rva13 = -1 ; / * for debugging * /
rva12 = interpret (expression_value ) ;
if (rva12 != O)
rva13 = inrec ( iop ) ;
while (rva12 != 0 && rva13 == 0);
The truth is, both versions are harder to read than the original and thus potentially
in error. However, since the current code works, we decided to leave well enough alone.
Finally, we note that not all expert programmers would agree with our advice here.
When each component of a condition is a function call, you can set a breakpoint on
each one, use step to step into each function , and then use finish to complete the
function. GDB will tell you the function 's return value, and from that point you can
use cant or step to continue. We like our approach because the results are kept in
variables, which can be checked (and rechecked) after the function calls , and even a
few statements later.
(We discussed the use of bit flags and the bit manipulation operators in the sidebar in
Section 8.3.1, "POSIX Style: statvfs () and fstatvfs ( ) ," page 244.)
For example, gawk's central data structure is called a NODE . It has a large number of
fields, the last of which is a set of flag values. From the file awk . h:
typedef struct exp_node {
Lots of stuff omitted
unsigned short flags;
# define MALLOC 1 1* can be free'd * 1
# define TEMP 2 1* should be free'd *1
# define PERM 4 1* can't be free'd *1
# define STRING 8 1* assigned as string *1
# define STRCUR 16 1* string value is current * 1
# define NUMCUR 32 1* numeric value is current * 1
# define NUMBER 64 1* assigned as number *1
# define MAYBE_NUM 128 1* user input : if NUMERIC then
* a NUMBER *1
# define ARRAYMAXED 256 1* array is at max size * 1
# define FUNC 512 1* this parameter is really a
* function name; see awkgram . y * 1
# define FIELD 1024 1* this is a field * 1
# define INTLSTR 2048 1* use localized version * 1
} NODE;
The reason to use flag values is that they provide considerable savings in data space.
If the NOD E structure used a separate char field for each flag, that would use 12 bytes
instead of the 2 used by the unsigned short . The current size of a NODE (on an Intel
x86) is 32 bytes. Adding 10 more bytes would bump that to 42 bytes. Since gawk can
allocate potentially hundreds of thousands (or even millions) Of NODES,9 keeping the
size down is important.
What does this have to do with debugging? Didn' t we just recommend using enumS
for symbolic constants? Well, in the case ofOR'd values enums are no help, since they're
no longer individually recognizable!
Recommendation: Provide a function to convert flags to a string. If yo u have mul-
tiple independent flags, set up a general-purpose routine.
9 Seriously! People often run megabytes of data through gawk. Remember, no arbitrary Limits!
586 Chapter 15 • Debugging
.1: NOTE What's unusual about these debugging functions is that application code
· never calls them. They exist only so that they can be called from a debugger. Such
•. functions should always be compiled in, without even a surrounding #ifdef,
• so that you can use them without having to take special steps . The (usually
I minimal) extra code size is justified by the developer's time savings.
First we'll show you how we did this initially. Here is (an abbreviated version of)
flags 2 s t r () from an earlier version of g a wk (3.0 .6):
/ * flags2str --- make a flags value readable * /
2
3 char *
4 flags 2str (flagval)
5 int flagval;
6
7 static char buffer [BUFSIZ] ;
8 char *sp;
9
10 sp buffer;
11
12 if (fl agva l & MALLOC) (
13 strcpy(sp, "MALLOC");
14 sp += strlen (sp);
15
16 if (f lagval & TEMP ) {
17 if (sp != buffer )
18 *sp++=' I' ;
19 strcpy(sp , "TEMP " ) ;
20 sp += strlen (sp ) ;
21
22 if ( flagva l & PERM) {
23 if (sp ! = buffer)
24 *sp++='i';
25 strcpy (sp, "PERM");
26 sp += strlen(sp);
27
. much more of the same, omitted for brevity ...
82
83 return buffer;
84
(The line numbers are relative to the start of the function.) The result is a string,
something like" MALL OC I PERM INUMBER " . Each flag is tested separately, and if present,
each one's action is the same: test if not at the beginning of the buffer so we can add
15.4 Programming for Debugging 587
the ' I ' character, copy the string into place, and update the pointer. Similar function s
existed for formatting and displaying the other kinds of Hags in the program.
The code is bo th repetitive and error prone, and for gawk 3. 1 we were able to simplify
and generalize it. Here's how gawk now does it. Starting with this definition in awk. h :
/* for debugging purposes */
s truc t flagtab {
int val; Integer flag value
const char *name ; String name
} ;
This structure can be used to represent any set of Hags with their corresponding string
values. Each different group of Hags has a corresponding function that returns a printable
represen tation of the Hags that are currently set. From eval . c :
/ * flag s 2str - -- mak e a flags value readabl e */
const char *
flags2str ( in c flagval)
{
static const struct flagtab values[]
MAL LOC , " MALLOC " },
TEMP, "TEMP " },
PERM, " PERM " },
STRING, "STRING" },
STRCUR , " STRCUR " },
NUMCUR, "NUMCUR " },
NUMB ER , " NUMBER" },
MAYBE_NUM, "MAYBE_NUM" },
ARRAYMAXED, "ARRAYMAXED" },
FUNC, " FUNC" } ,
FIELD, " FIELD" } ,
INTLSTR, " INT LSTR " },
0, NULL},
};
(Line numbers are relative to the start of the function , not the file.) As with the pre-
vious version, the idea here is to fill in a static buffer with a string value such as
"MALLOC I PERM I STRING IMA YBE_NUM " and return the address of that buffer. We discuss
the reasons for using a static buffer shortly; first let's examine the code.
The sp pointer tracks the position of the next empty spot in the buffer, while
space_left tracks how much room is left; this keeps us from overflowing the buffer.
The bulk of the function is a loop (line 12) through the array of flag values . When
a flag is found (line 13), the code computes how much space is needed for the string
(line 18) and tests to see if that much room is left (lines 19-20) .
15.4 Programming for Debugging 589
The test 'sp ! = buffer' fails on the first flag value found, returning o. On subse-
quent flags, the test has a value of 1. This tells us if we need the' I ' separator character
between values. By adding the result (l or 0) to the length of the string, we get the
correct value for space_needed. The same test , for the same reason, is used on line
22 to control lines 23 and 24, which insert the ' I ' character.
Finally, lines 26-29 copy in the string value, adjust the amount of space left, and
update the sp pointer. Line 33 returns the address of the buffer, which contains the
printable representation of the string.
Now, what about that static buffer? Normally, good programming practice dis-
co urages the use of functions that return the address of static buffers: It's easy to have
multiple calls to such a function overwrite the buffer each time, forcing the caller to
copy the returned data.
Furthermore, a static buffer is by definition a buffer of fixed size. What happened
to the GNU "no arbitrary limits" principle?
The answer to both of these questions is to remember that this is a debugging function.
Normal code never calls genflags2 str ( ) ; it's only called by a human using a debugger.
No caller holds a pointer to the buffer; as a developer doing debugging, we don ' t care
that the buffer gets overwritten each time we call the function .
In practice, the fixed size isn' t an iss ue either; we know that BUFSIZ is big enough
to represent all the flags that we use. Nevertheless, being experienced and knowing that
things can change, genflags2st r () has code to protect itself from overrunning the
buffer. (The space_left variable and the code on lines 18-20.)
As an aside, the use ofBUFSIZ is arguable. That constant should be used exclusively
for I/O buffers, but it is often used for general string buffers as well. Such code would
be better off defining explicit constants, such as FLAGVALS IZE, and using
's izeof (buffer)' on line II.
The C union is a relatively esoteric facility. It allows you to save memory by storing
different items within the same physical space; how the program treats it depends on
how it's accessed:
/ * ch15-union .c brief demo of union usage . * /
union i_f (
int i;
float f ;
u;
Here is what happens when the program is run on an Intel x86 GNU/Linux system:
$ ch1 5-u nion
12 . 340000 also looks like Ox414570a4
The program prints the bit pattern that represents a Boating-point number as a hexadec-
imal integer. The storage for the two fields occupies the same memory; the difference
is in how the memory is treated: u . f acts like a Boating-point number, whereas the
same bits in u. i act like an integer.
Unions are particularly useful in compilers and interpreters, which often create a tree
structure representing the structure of a source code file (called a parse tree). This
models the way programming languages are formally described: if statements, while
statements, assignment statements, and so on are all instances of the more genenc
"statement" type. Thus, a compiler might have something like this:
struct if_stmt { ... }; Structure for IF statement
struct while_stmt { ... }; Structure for WHILE statement
struct for_stmt { . . . } ; Structure for FOR statement
... structures for other statement types ..
/ * This contains the type and unions of the i nd i vidua l kinds of statements . * /
struct statement (
TYPE type;
union stmt
struct if_stmt if_st;
s truct while_stmt while_st ;
struct for_ stmt for_st ;
u;
) ;
Along with the union, it is conventional to use macros to make the components of
the union look like they were fields in a st r uct . For example:
#define if_s u. if st Socanuse s - >if_s instead of s - >u . if_s t
#define while_s u.while_s t And so on ...
At the level just presented, this seems reasonable and looks manageable. The real
world, however, is a more complicated place, and practical compilers and interpreters
often have several levels of nested s truc ts and unions. This includes gawk, in which
the definition of the NODE , its flag values, and macros for accessing un i on components
takes over 120 lines!l O Here is enough of that definition to give you a feel for what's
happening:
typedef struct exp_node
union (
struct
uni on
struct exp_node *lp t r ;
char *param_name ;
long 11;
1;
uni on (
) r ;
union (
) x;
char *na mei
s hort number;
unsigned lo n g re f lags ;
nodep ;
10 W e inh erited this design. In general it works, but it does have its problems. T he point of thi s section is to pass
on th e experience we've acquired working with unions.
15.4 Programming for Debugging 593
struct {
AWKNUM fl tnum;
char *sp;
size_t slen ;
long sref;
int idx ;
val;
struct {
struct exp_node *next;
char *namei
size_t length ;
struct exp_node *value;
long ref ;
hash;
#define hnext sub . hash . next
#define hname sub . hash . name
#define hlength sub . hash . length
#define hvalue sub . hash . value
} sub;
NODETYPE type ;
unsigned short flags;
} NODE ;
The NODE has a uni on inside a s truct inside a un i on inside a st r uct ! (Ouch.) On
top of that, multiple macro "fields" map to the same struc t /un i on components, de-
pending on what is actually stored in the NODE ! (Ouch, again. )
The benefit of this complexity is that the C code is relatively clear. Something like
'NF_ node - >var_ v a lue - >slen' is straightforward to read.
594 Chapter 15 • Debugging
There is, of course, a price to pay for the flexibility that unions provide. When your
debugger is deep down in the guts of your code, you can' t use the nice macros that
appear in the source. You must use the real expansion. 1 1 (And for that, you have to find
the definition in the header file.)
For example, compare 'NF _node - >var_ v a lue - >slen' to what it expands to:
'NF_node - >s ub.nodep . l . l ptr- >sub . val. sl en'! You must type the latter into GDB
to look at your data value. Look again at this excerpt from the earlier GDB debugging
sessIOn:
(gdb) print *tree Print NODE
$1 = {sub = {nodep = {l = {lptr = Ox8 095598, param_name = Ox8095598 "xU\t\b",
11 134829464}, r = {rptr = OxO, pptr = 0, preg = OxO, hd OxO,
av = OxO, r_ent = O}, x = {ex tra = OxO, xl = 0, param_list = OxO},
name = OxO, number = 1, reflags = O}, val = {
fltnum = 6.6614606209589101e-316, sp ~ OxO, slen = 0 , sref = 1,
idx = a}, hash = {next = Ox8095598, name = OxO, length = 0 , value = OxO,
ref = I}}, type = Node_K-print, flags = I}
That's a lot of goop. However, GDB does make this a little easier to handle. You
can use expressions like ' ($1) . sub . val . s len' to step through the tree and list data
structures.
There are other reasons to avoid unions. First of all, unions are unchecked. Nothing
bur programmer attention ensures that when you access one part of a union, you are
accessing the same part that was last stored. We saw this in ch1 5- un i on . c, which ac-
cessed both of the union's "identities" simultaneously.
A second reason , related to the first , is to be careful of overlays in complicated nested
stru ct /union combinations . For example, an earlier version of gawk 12 had this code:
/* n->lnode overlays the array size, don't unref it if array */
if (n->type != Node_var_array && n->type != Node_array_ref)
unref(n->lnode) ;
11 Again,Gee 3. 1 or newer and GDB 5 can let you use macros direcrly, bur onl y if you're using th em rogeth er,
with specific option s. This was described earlier, in Secti on 15.4.1.2, "Avoid Expression Macros If Possible,"
page 580.
12 This part of the code has since been revised, and th e example lines are no longer there.
15.4 Programming for Debugging 595
Originally, there was no i f, just a call ro unref () , which frees the NODE pointed ro
by n->lnode . However, it was possible ro crash g a wk at this point. You can imagine
how long it rook, in a debugger, ro track down the fact that what was being treated as
a pointer was in reality an array size!
As an aside, unions are considerably less useful in C++. Inheritance and object-ori-
ented features make data structure management a different ball game, one that is con-
siderably safer.
Recommendation: Avoid uni ons if possible. If not, design and code them carefully!
int c;
case 'D':
parse_debug (optarg ) ;
break;
The pars e _ d e bug () function reads through the argument string. For example, it
could be a comma- or space-separated string of subsystems, like" file, memo r y , ip c ".
For each valid subsystem name, the function would set a bit in a debugging variable:
extern int debugging;
The constant DEFBLKSIZE is the "default block size"; that is, the value from the
struct stat, or BUFSIZ . For terminals (line 23) or for files that aren't regular files
(lseek () fails , line 27), the return value is also BUFSIZ. For regular files that are small,
the file size is used. In all other cases, DEFBLKSIZE is returned. Knowing the "optimal"
buffer size is particularly useful on filesystems in which the block size is larger
than BUFSIZ.
We had a problem whereby one of our test cases worked perfectly on our development
GNU/Linux system and every other Unix system we had access to. However, this test
would fail consistently on certain other systems.
15.4 Programming for Debugging 599
For a long time, we could not get direct access to a failin g system in order to run
GOB . Eventually, however, we did manage to reproduce the p ro blem ; it turned out to
be rel ated to the size of the buffer gawk was us ing for reading d ata files: On the failin g
sys tems, the buffer size was larger than fo r o ur development sys tem .
We wanted a way to be able to reproduce the problem on our development machine:
The failing sys tem was nine time zo nes away, and running GOB interactively across
the Atlantic Ocean is painful. We reproduced the problem by having
optimal_bufsi ze () look at a special environment variable, AWKBUFSI ZE. When the
value is " exact ", o ptimal_bufsize() always returns the size of the file, whatever
that may be. If the value of AWKBUFSIZ E is some integer number, the function returns
that number. Otherwise, the fun ction falls back to the previo us algorithm. This allows
us to run tests without having to constantly recompile gawk . For example,
$ AWKBUFSIZE=42 make check
This runs the gawk tes t suite, using a buffer size of 42 bytes. (The test suite passes.)
Here is the modified version of o ptima l_bufsize () :
1 / * optimal_buf size --- determine optimal buffer size * /
2
3 /*
4 * Enhance this for debugg ing purposes, as follow s:
5
6 * Al way s stat the file, stat buffer is used by higher-level code .
7
8 * if (AWKBUF SIZE == "exact")
9 return the file size
10 * else if (AWKBUFSIZE == a number)
11 always return that number
12 * el se
13 if the size is < defaul t blocksiz e
14 return the si ze
15 else
16 return default blocksize
17 end if
18 * endif
19
20 * Hair comes in an eff o rt to only deal with AWKBUFSIZE
21 * once , the first time this routine is called, ins tead of
22 * e very time . Perf ormance , dontyaknow .
23 */
24
25 size_t
26 optimal_bufsi ze ( f d, stb)
27 int fd ;
600 Chapter 15 • Debugging
The comment on lines 3-23 explains the algorithm. Since searching the environment
can be expensive and it only needs to be done once, the function uses several sta tic
variables to collect the appropriate information the first time.
Lines 42-54 execute the first time the function is called, and only the first time. Line
43 enforces this condition by setting firs t to false. Lines 45-54 handle the environment
variable, looking for either" exact " or a number. In the latter case, it converts the
string value to decimal, saving it in env_va l. (We probably should have used strt oul ()
here; it didn't occur to us at the time.)
Line 55 executes every time but the first. If a numeric value was given, the condition
will be true and that value is returned (line 56). Otherwise, it falls through to the rest
of the function.
Lines 60-70 define DEFBLK SIZE; this part has not changed. Finally, lines 72- 76 re-
turn the file size if appropriate. If not (line 78), DEFBLKS IZE is returned.
We did fix the problem,1 3 but in the meantime, we left the new version of
optirnal_bufsiz e () in place, so that we could be sure the problem hasn't reoccurred.
The marginal increase in code size and complexity is more than offset by the increased
flexibility we now have for testing. Furthermore, since this is production code, it's easy
to have a user in the field use this feature for testing, to determine if a similar problem
has occurred. (So far, we haven' t had to ask for a test, but it's nice to know that we
could handle it if we had to.)
• Always log information to a specific file. This is simplest: The program always
writes logging information. You can then look at the file at your convenience.
The disadvantage is that at some point the log file will consume all available disk
space. Therefore, you should have multiple log files, with yo ur program switching
to a new one periodically.
Brian Kernighan recommends naming the log files by day of the week:
myapp. log. sun, myapp. log . mon, and so on. The advantage here is that you
don't have to manually move old files out of the way; you get a week's worth of
log files for free.
• Write to a log file only if it already exists. When your program starts up, if the log
file exists, it writes information to the log. Otherwise, it doesn't. To enable logging,
first create an empty log file.
• Use a fixed-format for messages, one that can be easily parsed by scripting languages
such as awk or Perl, for summary and report generation.
• Alternatively, generate some form ofXML, which is self-describing, and possibly
convertible to other formats. (We're not big fans ofXML, but you shouldn't let
that stop you.)
• Use sysl og () to do logging; the final disposition of logging messages can be
controlled by the system administrator. (sysl og ( ) is a fairly advanced interface;
see the syslog(3) manpage.)
Choosing how to log information is, of course, the easy part. The hard part is
choosing what to log. As with all parts of program development, it pays to think before
you code. Log information about critical variables. Check their values to make sure
they're in range or are otherwise what you expect. Log exceptional conditions; if
something occurs that shouldn't, log it, and if possible, keep going.
The key is to log only the information you need to track down problems, no more
and no less.
To make the program start producing logging information, we came up with the
idea of special debugging fil es. When a file of a certain name existed in a certain direc-
tory, the program would produce informational messages to a log file that we could
then download and analyze. Such code looks like this:
struct sta t sbuf;
e xcern inc do_logging; / * initialized to zer o * /
if (do_ logging) {
logging code h ere : open fil e , write info , close file, etc .
}
The call to s ta t ( ) happened for each job the program processed. Thus, we could
dynamically enable and disable logging without having to stop and restart the
application!
As with debugging options and variables, there are any number of variations on this
theme: different files that enab le logging of information about different subsystems,
debugging directives added into the debugging file itself, and so on. As with all features ,
you sho uld plan a design for what yo u will need and then implement it cleanly instead
of hacking out some quick and dirty code at 3:00 A .M . (a not uncommon possibility in
startup companies, unfortunately).
~
g NOTE All that g litters is not gold. Special d e bugging file s are but one example
~ of tec hniques known as back doors-one or more ways for d evelopers to do
@
ill undocumented things with a program, usually for nefarious purposes. In our
II instance, the back door was entire ly benign . But an unscrupulous developer
' could just as easily arrange to generate and download a hidden copy ofa
•
" customer list, personnel file , or other sensiti ve data. For this reason alone, you
I should think extra hard about whether this technique is usable in your
% application.
R
This is a big problem when you're working in a debugger. If you set a breakpoint in
the failing routine, yo u have to type the continue command and press ENTER hun-
dreds or thousands of times to get your program into the state where it's about to fail.
This is tedious and error prone, to say the least! It may even be so difficult to do that
you'll want to give up before starting.
The solution is to add special debugging "hook" functions that your program can
call when it is close to the state you're interested in.
For example, suppose that you know that the check_ sa lary () function is the one
that fails, but only when it's been called 1,427 times. (We kid you not; we've seen some
rather strange things in our time.)
To catch check_salary () before it fails , create a special dummy function that does
nothing but return , and then arrange for chec k_ salary () to call it just before the
1,427th time that it itself is called:
/ * debug_dummy --- debugging h oo k funct i on * /
v o i d debug_dummy (v oid) { return; }
if (++count == 1426)
debug_dummy ( ) ;
Now, from within GDB, set a breakpoint in debu9_durruny ( ), and then run the
program normally:
(gdb ) break debug_ du=y Set breakpoint for dummy fun ction
Breakpoint 1 at Ox 80558 85 : file whizprog .c, line 3137 .
(gdb ) run Start program running
Once the breakpoint for debu9_durruny () is reached, you can set a second breakpoint
for check_salary () and then continue execution:
(gdb ) run Start program running
Starting program : /home / arn old/ whizprog
When the seco nd breakpoint is reached, the program is about to fail and yo u can
single-step through it, doing whatever is necessary to track down the problem.
Instead of using a fixed constant ('++count = = 1426'), yo u m ay wish to have a
global variable that can be set by the debugger to whatever value you need. This avoids
the need to recompile the program.
For gawk, we have gone a step further and brought the debugging h ook facility in to
the language, so the hook function can be called from the awk ptogram. When compiled
for debugging, a special do-nothing function named s topme ( ) is available. This function
in turn calls a C function of the sam e name. This allows us to put calls to stopme ( )
into a failing awk program right before things go wrong. For example, if gawk is pro-
ducing bad results for an awk program on the 1,200th input record, we can add a line
like this to the awk program:
NR == 1198 ( stopme()} # Stop for debugging when Number of Rec ords == 1198
T he dbug package requires you to use a certain discipline when writing your code.
In particular, yo u have to use its macros when doing a functi on return or calli ng
setjmp () and longjmp ( ). You have to add a single macro call as the first executable
statement of each function and call a few extra macros from main ( ) . Finally, you have
to add a debugging command-line option: By convention this is -#, which is rarely, if
ever, used as a real option. In return for the extra wo rk, you get al l the benefits just
outlined. Let's look at the example in the manual:
1 #include <stdio .h>
2 #include "dbug . h"
3
4 int
5 main (argc , argv )
6 int argc;
7 cha r *argv[J;
8 (
9 regi ster int result, ix ;
10 extern i nt factorial () , atoi () ;
11
12 DBUG_ENTER ("main");
13 DBUG_PROCESS (a rgv[ OJ) ;
14 DBUG_PUSH_ENV ( " DBUG" ) ;
15 for ( ix = 1; ix < argc && argv[ixJ [OJ '-' ; ix++ ) {
16 switch (argv[ixJ [ lJ ) {
17 case '#' :
18 DBUG_PU SH (&(argv[i x J [2J ) );
19 break ;
20
21
608 Chapter 15 • Debugging
This program illustrates most of the salient points. The DBUG_ENTER () macro
(line 12) must be called after any variable declarations and before any other code. (This is
because it declares some private variables of its own. 15 )
The DBUG_ PROC E SS () macro (line 13) sets the name of the program, primarily for
use In output messages from the library. This macro should be called only once,
from ma in ( ) .
The DB UG_PUSH_ENV () macro (line 14) causes the library to look at the named en-
vironment variable (DBUG in this case) for control strings. (The dbug control strings
are discussed shortly.) The library is capable of saving its current state and using a new
one, creating a stack of saved states. Thus, this macro pushes the state obtained from
the given environment variable onto the stack of saved states. As used in this example,
the macro creates the initial state. If there is no such environment variable, nothing
happens. (As an aside, D BUG is rather generic; perhaps something like GAWK_ DBUG [for
gawk] would be better.)
The DBUG_PUS H () macro (line 18) passes in the control string value obtained from
the - # command-line option. (New code should use get opt () or getopt_l ong ()
instead of manual argument parsing.) This is normally how debugging is enabled, but
using an environment variable as well provides additional flexibility.
The DBUG_PRINT () macro (line 23) is what produces output. The second argument
uses the technique we described earlier (see Section 15.4.1.1 , "Use Debugging Macros,"
page 577) of enclosing the entire printf () argument list in parentheses, making it a
single argument as far as the C preprocessor is concerned. Note that a terminating
newline character is not provided in the format string; the dbug library provides the
newline for you.
15 C 99, which allows vari able declarations mixed with execurable code, makes this less of a problem, bur remember
that thi s package was designed for K&R C.
15.5 Debugging Tools 609
When printing, by default, the dbug library outputs all DBUG_PRINT () statements.
The first argument is a string that can be used to limit the output just to DBUG_PRI NT ( )
macros using that string.
Finally, the DBUG_RE TURN () macro (lin e 28) is used instead of a regular ret ur n
statement to return a value. There is a corres ponding DBUG_ VO ID_RETURN m acro for
use in v oid functions.
The rest of the program is completed with the fact orial () function:
1 # include <std i o .h>
2 # include "dbu g . h"
3
4 int fact o rial (va lu e )
5 register int v a lu e;
6
7 DBUG_ENTER ( " fa cto r ial" ) ;
8 DBUG_PRINT ( " find", ( "find %d facto rial " , v a lue )) ;
9 i f (value > 1) {
10 value *= fac tor i al (value - 1) ;
11
12 DBUG_PRI NT ( "result", ( " result is %d ", val ue)) ;
13 DBUG_R ETURN (valu e) ;
14
Once the program is compiled and linked with the dbug lib rary, it can be run nor-
mally. By default, the program produces no debugging output. With debugging enabled,
though, di ffe rent kinds of output are available:
$ factorial 1 2 3 Regular run, no debugging
1
2
6
$ f a ctorial - #t 1 2 3 Show function call trace, note nesting
I >factorial
I <factorial
1 Regular output is on stdout
I >fact o rial
I I >factorial
I I <factor ia l Debugging output is on stderr
I <factorial
2
I >fact o ria l
I I >fact o ria l
I I I >fact o ri al
I I I <fact o r ial
I I <fact o ri al
I <factorial
6
610 Chapter 15 • Debugging
<? fun c?
$ factorial -#d 1 2 Show debugging messages from OBUG_ PRINT()
?func? : args : a rgv[2] = 1
factorial : find : find 1 fa c t o r ial
factorial : result : result is 1
1
?func? : args : argv[3] 2
facto r ial: find : find 2 fac t orial
f acto r ial : find : fi nd 1 facto ri al
factorial : re s ult : r esult i s 1
f a ctorial : r e su lt : r e s ul t i s 2
2
The - # option controls the d bug library. It is "special" in the sense that DBUG_PUSH ( )
will accept the entire string, ignoring the leading ' -# ' characters, although you could
use a different option if you wish, passing DBUG_PU SH () just the option argument
string (this is o p t arg if you use getop t () ).
The control suing consists of a set of options and arguments. Each group of options
and arguments is separated from the others by a colon character. Each option is a single
letter, and the arguments to that option are separated from it by commas. For example:
$ myprog -#d,mem,ipc:f,check_ salary,check_ start _ date -f infile -0 outfile
The d option enables DBUG_ PR INT ( ) output, but only if the first argument string
is one of " mem" or " ipc ". (With no arguments, all DBUG_PRINT ( ) messages are
printed.) Similarly, the f option limits the function call trace to just the named functions:
check_salary () and check_ s t a r t _ d a te ().
The following list of options and arguments is reproduced from the dbug library
manual. Square brackets enclose optional arguments. We include here only the ones
we find useful; see the documentation for the full list.
d[ , k eywor d s ]
Enable output from macros with specified keywords . A null list of keywords im-
plies that all keywords are selected.
F
Mark each debugger output line with the name of the soutce file containing the
macro causing the output.
15.5 Debugging Tools 611
i
IdentifY the process emitting each line of debug or trace output with the process
ID for that process.
L
Mark each debugger output line with the source-file line number of the macro
causing the ourput.
0[. file]
Redirect the debugger outpur stream to the specified file. The default output
stream is stderr . A null argument list causes output to be redirected to stdout .
t[ , N]
Enable function control Bow tracing. The maximum nesting depth is specified by
N, and defaults to 200.
To round out the discussion, here are the rest of the macros defined by the dbug
library.
DBUG_EXECUTE(string, code)
This macro is similar to DBUG_PRINT ( ) : The first argument is a string selected
with the d option, and the second is code to execute:
DBUG_EXECUTE ( "abo rt", ab ort ( ) ) ;
DBUG_FILE
This is a value of type FILE *, for use with the <stdi o . h> routines. It allows
yo u to do your own ourput to the debugging file stream.
DBUG_LONGJMP(jmp_buf env, int val)
This macro wraps a call to longjmp ( ) , taking the same arguments, so that the
dbug library will know when you've made a nonlocal jump.
DBUG_POP ()
This macro pops one level of saved debugging state, as created by DBUG_PUSH ( ) .
It is rather esoteric; yo u probably won't use it.
DBUG_SETJMP(jmp_buf env)
This macro wraps a call to setjmp ( ), taking the same argument. It allows the
dbug library to handle nonlocal jumps.
612 Chapter 15 • Debugging
In a different incarnation, at the first startup company we worked for , 16 we used the
dbug library in our product. It was invaluable during development, and by omitting
the -DDBUG on the final build, we were able to build a production version, with no
other source code changes.
To get the most benefit out of the dbug library, you must use it consistently,
throughout your program. This is easier if you use it from the beginning of a project,
but as an experiment, we found that with the aid of a simple a w k script, we could in-
corporate the library into a 30,000 line program with a few hours work. If you can afford
the overhead, it's best to leave it in the production build of your program so that you
can debug with it without first having to recompile.
We find that the dbug library is a nice complement to external debuggers such as
GDB ; it provides an organized and consistent way to apply instrumentation to C code.
It also rather nicely combines many of the techniques that we outlined separately, ear-
lier in the chapter. The dynamic function call trace feature is particularly useful, and
it proves invaluable for help in learning about a program's behavior if you're unfamiliar
with it.
This fact is borne out by the large number of tools that are available for debugging
dynamic memory. There is a fair amount of overlap in what these tools provide. For
example:
• Memory leak detection: memory that is allocated and then becomes unreachable.
• Unfreed memory detection: memory that is allocated but never freed. Never-freed
memory isn' t always a bug, but detecting such occurrences allows you to verify
that they're indeed OK.
• Detection of bad frees: memory that is freed twice, or pointers passed to free ( )
that didn't come from mall o c ( ) .
16 Although we should have learned our lesson after the first on e, we went to a second one. Since then we've figured
it our and generally avoid startup companies. Your mil eage may vary, of course.
15.5 Debugging Tools 613
• Detection of use of already freed memory: memory that is freed is being used
through a dangling pointer.
• Memory overrun detection: access ing or sroring into m em ory outside the bounds
of what was allocated.
• Warning about the use of uninitialized memory. (Many compilers can warn
about this.)
• Dynamic function tracing: When a bad memory access occurs, you get a traceback
from where the memory is used to where it was allocated.
• Tool co ntrol through the use of environment variables.
• Log files for raw debugging information that can be pos tprocessed to prod uce
useful reports.
Some rools merely log these events. Others arrange for the application program ro
die a horrible death (through SIGS EGV) so that the offending code can be pinpointed
from within a debugger. Additionally, most are designed to work well with GOB.
Some tools require so urce code modificatio n, such as calling special fun ctions, or
using a special header file , extra #de fi nes, and a static library. Others work by using
special Linux/Unix shared library mechanisms ro transparently install themselves as
replacements for the standard library versions of malloe () and fre e ( ) .
In this section we look at three dynamic m emory debuggers, and then we provide
pointers to several others.
runs.) When munt ra ee () is called, the library closes the file and does not log any further
allocations or frees.
The use of separate functions makes it possible to do memory tracing for specific
parts of the program; it's not necessary to trace everything. (We find it most useful to
enable logging at the start of the program and be done, but this design provides flexibil-
iry, which is nice to have.)
Once the application program exits, you use the mt ra ee program to analyze the log
file. (The log file is ASCII, but the information isn't directly usable.) For example, gawk
turns on tracing if TIDYMEM is defined:
$ export TIDYMEM=l MALLOC_ TRACE=mtrace.out Export environment variables
$ ./gawk 'BEGIN {print "hello, world"}' Run the program
hello , world
$ mtrace ./gawk mtrace.out Generate report
The output is a list of locations at which gawk allocates memory that is never freed.
Note that permanently hanging onto dynamic memory is fine if it's done on purpose.
All the cases shown here are allocations of that sort.
High Address
Program Stack
STACK SEGMENT
Malloc'd memory
Malloc'd memory
Heap
Data
Low Address
Executable code
(shared)
TEXT SEGMENT
FIGURE 15.1
Linux/ Unix process address space, including special areas
debuggers work by using these system calls to add a new piece of address space for every
allocation. The advantage of this scheme is that the operating system and the computer's
memory-protection hardware cooperate to make access to memory outside these discon-
tiguous segments invalid, generating a SIGSEGV signal. The scheme is depicted in
Figure 15.1.
T he first debugging package to implement this sch eme was Electric Fence. Electric
Fence is a drop-in replacement for malloc () et al. It works on m any Unix sys tems
616 Chapter 15 • Debugging
and GNU/Linux; it is available from its author's FTP archive. 17 Many GNU/Linux
distributions supply it, although you may have to choose it explicitly when you install
your system.
Once a program is linked with Electric Fence, any access that is out of bounds gen-
erates a S IGSEGV . Electric Fence also catches attempts to use memory that has already
been freed. Here is a simple program that illustrates both problems:
1 /* ch15-badmeml.c --- d o bad thing s wi th memo ry * /
2
3 #include <s tdio.h>
4 #include <stdlib.h>
5
6 int main ( int argc , char **argv )
7
8 char *p ;
9 int i ;
10
11 p = malloc ( 3 0) ;
12
13 strcpy (p , "not 30 by tes " ) ;
14 pr intf ( "p <%s>\ n", p);
15
16 i f (a r gc == 2 ) {
17 if (strcmp (argv[l), "-b" ) == 0)
18 p[42) = 'a'; / * touch outside the bounds * /
19 else if (st r cmp (argv[lJ, "-f") == 0)
20 fr ee (p) ; /* f r ee memory and then u se i t */
21 p [0) = ' b' ;
22
23
24
25 /* fr ee (p) ; */
26
27 return 0 ;
28
This program does simple command-line option checking to decide how to misbe-
have: - b touches m emory out of bounds, and - f attempts to use freed memory. (Lines
18 and 21 are the dangerous ones, respectively.) Note that with no options, the pointer
is never freed (line 25); Electric Fence doesn't catch this case.
One way to use Electric Fence, a way that is guaranteed to work actoss Unix and
GNU/Linux systems, is to statically link your program with it. The program should
then be run from the debugger. (The Electric Fence documentation is explicit that
17 ft p: // ft p . perens.com/pub/Elect ri cFence
l5 .5 Debugging Tools 617
Electric Fence should not be linked with a production binary.) The followi ng session
demo nstrates this procedure and shows what happens fo r both command-line options:
$ cc -g ch15-badmeml.c -lefence -0 c h15-badmeml Comp ile; link statically
$ gdb ch15-badmeml Run it from the debugger
GNU gdb 5.3
El e ctric Fence 2 . 2 . 0 Copyr ight (C) 198 7 -1 999 Bruce Pe r e ns <bruce@perens . com>
p = <not 30 byte s>
Prog r am r eceived si gnal SIGSEGV , Segmenta tion fa ult . SIGSEG V: GOB prints where
[Sw itching to Thr ead 8192 (LWP 28021)]
Ox08048Sb6 i n main (argc=2 , argv=Oxbffff8 a4) a t chlS-badmeml . c : 18
18 p[ 42] = 'a '; / * touch out side the bounds * /
(gdb) run - f Now try the -f option
The pr ogram being debugg e d has been s tart ed alre ady.
Start it from the beginn ing? (y or n ) y Yes, really
On systems that support shared libraries and the LD_P RE LOAD environment variable
(including GNU/Linux), you don't need to explicitly link in the e fence library. Instead,
the ef shell script arranges to run the program with the proper setup.
Although we haven't described the mechanisms in detail, GNU/Linux (and o ther
Unix systems) support shared libraries, special versions of the library routines that are
kept in a single file on disk instead of copied into every single executable program's bi-
nary file. Shared libraries save som e space on disk and can save system memory, since
all programs using a shared library use the same in-memory copy of the library. The
cost is that program startup is slower because the program and the shared library have
to be hooked together before the program can start running. (This is usually transparent
to yo u, the user.)
618 Chapter 15 • Debugging
The LD_PRELOAD environment variable causes the system's program loader (which
brings executable files into memory) to link in a special library before the standard li-
braries. The ef script uses this feature to link in Electric Fence's version of the malloc ( )
suite. Thus, relinking isn't even n ecessary. This example demonstrates ef:
$ cc -g ch15-badmeml.c -0 ch15 - badmeml Compile normally
$ ef ch15-badmeml -b Run using ef, dumps core
Electric Fence 2 . 2 . 0 Copyright (C) 198 7-1999 Bruce Perens <bruce@perens . com>
p = <not 30 bytes>
/us r /bin/ef: line 20 : 28007 Segmentation fault (co re dumped )
( export LD_PRELOAD=libefence.s o . O. O; exe c $*
$ Is -1 core· Linux gives us separate core files
-rw------- 1 arnold devel 217088 Aug 28 15 : 40 core.28 00 5
-rw --- --- - 1 arn old devel 212992 Aug 28 15:40 core . 28007
GNU/Linux creates core files that include the process ID number in the file name.
In this instance this behavior is useful because we can debug each core file separately:
$ gdb chlS-badmeml core .28005 From the ·b option
GNU g db 5 . 3
The efence(3) m anpage describes several environment variables that can be set to
tailor Electric Fence's behavior. The following three are the most notable.
EF_PROTECT BELOW
Setting this variable to 1 causes Electric Fence to look for underruns instead of
overruns. An overrun, accessing memory beyond the allocated area, was demon-
15.5 Debuggin g Tools 619
The 'debug ' part of this variable is a set of OR'd bit flags which is nearly impossible
for most people to manage directly. Therefore, the documentation describes a rwo-stage
process for making things easier to use.
The first step is to define a shell function named dmall oc that calls the dmalloc
driver program:
$ dmalloc () {
> eval ' command dmalloc -b $* ' The 'command' command bypasses shell functions
> }
Once that's done, you can pass options to the function to set the log file (-1), specifY
the number of iterations after which dmalloe should verifY its internal data structures
(- i), and specifY a debugging level or other tag ('low') :
$ dmalloc -1 dm-log -i 100 low
Like Electric Fence, the dmall oe library can be statically linked into the application
or dynamically linked with LD_PRELOAD , The following example demonstrates the
latter:
$ LD_ PRELOAD=libdmalloc.so ch15-badmeml -b Run with checking on
p = <n o t 30 byte s> Normal output shown
* NOTE Do not use 'export LD_PRELOAD=li bdma lloc . so'! If you do, every
1 program you run , such as ls, w ill run with mallo e () checking turned on . Your
'" system will become unusable, quickly. If you do this by accident, you can use
. 'unset LD_PRELOAD ' to restore normal behavior.
"
The output includes many statistics, which we 're not interested in at the m oment.
The line that is interesting is the one indicating memory that wasn't freed, with a return
address indicating the fun ctio n that allocated the memOlY (' ra =Ox8 048 41 2') . The
dmal l oc documentation explains how to get the source code location for this address,
using GOB:
$ gdb ch15-badmernl Start GOB
GNU gdb 5 . 3
T his is painful, but workable if you have no other choice. However, if you include
the "dma 11 oc . h " header file in yo ur program (after all other # incl ude statements) ,
you can get source code information directly in the report:
(The ch15 -badmem2 . c file is the same as c h15-badmeml. c, except that it includes
"dma11oc. h", so we haven't bothered to show it.)
Individual debugging features are enabled or disabled by the use of tokens- specially
recognized identifiers-and the -p option to add a token (feature) or -m option to re-
move one. There are predefined combinations, 'low', 'me d', and 'high' . You can see
what these combinations are with 'dma11 oc -LV' :
622 Chapter 15 • Debugging
The full set of tokens, along with a brief explanation and each token's corresponding
numeric value, is available from 'drnall oc -DV':
$ dmalloc - DV
Debug Tokens:
none (nil) -- no functionality (0)
log-stats (1st) -- log general statistics (Oxl)
log-non-free (lnf) - - log non-freed pointers (Ox2 )
log-known (lkn) log only known non-freed (Ox4)
log-trans (ltr) -- log memory transactions (Ox8)
log-admin (lad) -- log administrative info (Ox20)
log-blocks (lbl) - - log blocks when heap-map (Ox40)
log-bad-space (lbs) -- dump space from bad pnt (OxIOO)
log-nonfree-space (Ins) -- dump space from non-freed pointers (Ox200)
log-elapsed-t i me (let) -- log elapsed-time for allocated pointer (Ox40000)
log-current-time (lct) -- log current-time for allocated pointer (Ox80000)
check-fence (cfe) -- check fence-post errors (Ox400)
check-heap (che) -- check heap adm structs (Ox800 )
check-lists (cli) check free lists (OxlOOO)
check-blank (cbl) -- check mem overwritten by alloc-blank, free-blank (Ox2000)
check-funcs (cfu) -- check functions (Ox4000 )
force-linear (fli) -- force heap space to be linear (OxlOOOO)
catch-signals (csi) -- shutdown program on SIGHUP, SIGINT, SIGTERM (Ox20000)
realloc-copy (rco) -- copy all re-allocations (OxlOOOOO )
free-blank (fbI) -- overwrite freed memory space with BLANK_CHAR (Ox200000)
error-abort (eab) -- abort immediately on error (Ox400000 )
alloc-blank (abl) -.- overwrite newly alloced memory with BLANK_CHAR (Ox800000)
heap-check-map (hcm) -- log heap - map on heap-check (OxlOOOOOO )
print-messages (pme) -- write messages to stderr (Ox2000000)
catch-null (cnu) -- abort if no memory available (Ox4000000 )
never-reuse (nre) -- never re-use freed memory (Ox8000000)
allow-free-null (afn ) -- allow the frees of NULL pointers (Ox20000000 )
error-dump (edu) -- dump core on error and then continue (Ox40000000 )
By now you should have a feel for how to use drnallo c and its flexibility. drnall oc
is overkill for our simple demonstration program, but it is invaluable fo r a larger scale,
real-world application.
15.5 Debugging Tools 623
• The addrcheck [skin] is identical to memcheck except for the single detail
that it does not do any uninitialized-value checks. All of the other
checks-primarily the fine-grained address checking-are still done. The
downside of this is that you don't catch the uninitialized-value errors that
memcheck can find.
But the upside is significant: Programs run about twice as fast as they do
on memcheck, and a lot less memory is used. It still finds reads/writes of
freed memory, memory off the end of blocks and in other invalid places,
bugs which you really want to find before release!
• helgrind is a debugging skin designed to find data races in multithreaded
programs.
Although the Valgrind manual might lead you to expect that there are separate
commands named memcheck, addrc he ck, and so on, this isn ' t the case. Instead, a
driver shell program named v a lgrind runs the debugging core, with the appropriate
"skin" as specified by the - - s kin= option. The default skin is memche ck; thus, running
a plain valgrind is the same as 'valg rind -- skin=memcheck' . (This provides com-
patibility with earlier versions of Val grind that only did m emory checking, and it also
makes the most sense, si nce the memche ck skin provides the most information. )
Valgrind provides a number of options. We refer yo u to its documentation for the
full detai ls. The op tions are split into groups ; of those tha t ap ply to the core (that is,
work for all skins), these are likely to be m ost useful:
- -help
List the options.
-- l ogfile=fil e
Log m essages to f i l e. pid.
-- num - callers =number
Show num callers in stack traces. The default is 4.
-- s kin = skin
Use the skin named skin. Default is memchec k.
-- trac e- ch ildren=no! ye s
Also run the trace o n child processes . The default is no.
-v, --v erbose
Be more verbose. This includes listing the libraries that are loaded, as well as the
co unts of all the different kinds of errors.
Of the o ptions for the memche c k skin , these are the ones we think are most useful:
- -leak-chec k=no!yes
Find memory leaks once the program is finished. The default is 'no ' .
626 Chapter 15 • Debugging
--show-reachable=nolyes
Show reachable blocks when the program is finished. If -- show- reaehable =yes
is used, Valgrind looks for dynamically allocated memory that still has a pointer
pointing to it. Such memory is not a memo ry leak, but it may be useful to know
about anyway. The default is 'no' .
Let's take a look at Valgrind in action. Remember ehlS - badmem . e ? (See Sec-
tion 15.5.2.2, "Electric Fence," page 61 4.) The -b option writes into memory that is
beyond the area allocated with mall oe () . Here's what Valgrind reports:
$ val grind ch15-badmeml -b
1 == 8716= = Memcheck, a.k.a. Valgrind, a memory error detector for x86-linux .
2 ==8716== Copyright (C ) 2002-2003 , and GNU GPL'd, by Julian Seward .
3 == 8716== Using valgrind-20030725, a program supervision framework for x86-linux.
4 == 8716== Copyright (C ) 2000-2003, and GNU GPL'd , by J ulian seward .
5 ==8716=~ Estimated CPU clock rate is 2400 MHz
(Line numbers in the output were added to aid in the discussion.) Line 8 is the output
from the program; the others are all from Valgrind, on standard error. The error report
is on lines 9-1 7. It indicates how many bytes were incorrectly written (line 9) , where
this happened (line 10), and a stack trace. Lines 13-17 describe where the memory was
allocated from. Lines 19-23 provide a summary.
The - f option to chl 5 - badmeml frees the allocated memory and then writes into
it through a dangling pointer. Here is what Valgrind reports for this case:
15.5 Debugging Too ls 627
$ valgrind ch15-badmeml - f
==8719 == Memchec k, a. k.a. Valg rind, a memory err or det ector f or x86-linux .
This time the re port indicates that the write was to free d memo ry and that the call
to free () is on line 20 of ch 15-badmeml. c .
When called with no options, ch15-ba dmeml. c allocates memory and uses it but
does not release it. The --leak-check =yes option reports this case:
$ valgrind --leak-check=yes ch15-badmeml
1 ==8720== Memcheck, a.k . a . Valgrind , a memory erro r detec to r for x8 6-linux .
8 p = <not 30 bytes>
9 == 8720= =
10 == 8720 == ERROR SUMMARY : 0 error s from 0 contexts ( s uppressed : 0 fr om 0)
11 ==8720== malloc /free : in use at e xit : 30 bytes in 1 blocks .
12 ==87 20= = malloc/ free : 1 all ocs , 0 frees, 30 bytes all ocated.
16 == 8720= =
17 == 8720== 30 byt es in 1 blocks are d efini tely lo st in loss reco rd 1 o f 1
18 ==872 0 == at Ox4 002 5488: mall oc (vg_r eplace_ma lloc . c : 153)
19 ==8720== by Ox80484 11 : ma in (c h15 -badmem1 . c : 11)
20 ==8720== by Ox420158 D3 : __ libc_start_main (in /l ib/i 686/libc-2 . 2 . 93.so)
21 ==8720 == by Ox80483 68 : (within / home/arnold /progex/c ode /ch15/ch1 S - badmem1)
22 ==8720==
23 ==87 20= = LEAK SUMMARY :
24 == 8720 == defin itely lost : 30 byt es in 1 blocks .
25 == 8720== possibly lo st: 0 byt es in 0 blocks .
26 ==87 20 == still reac hable: 0 byt es in 0 blocks .
27 ==8720== suppre ssed : 0 bytes in 0 blocks .
28 ==87 20 == Reachabl e bloc ks (those to which a pointer was found) are not shown .
29 ==8720== To see them, rerun with: - - show-re a chab le=ye s
Lines 17-29 provide the leak report; the leaked memory was allocated on line 11 of
ch15 - b admeml . c .
Besides giving reports on misuses of dynamic memory, Valgrind can diagnose uses
of uninitialized memory. Consider the following program, ch15-badmem3 . c:
628 Chapter 15 • Debugging
a_va r = 1107341000
==29650==
==2965 0== ERROR SUMMARY: 25 e rr ors from 7 c ontexts (suppr essed : 0 f r om 0)
==29650== malloc / free: in use at exit: 0 bytes in 0 bloc ks.
==29650== malloc / free: 0 allo c s , 0 frees, 0 bytes allo ca ted.
==29650== For a d e tai led lea k a nalys is, rerun with : --leak- check=yes
==2965 0== For counts of detec ted errors , rerun with : - v
U nfo rtunately, although Valgrind can detect the use of uninitialized memory, all
the way d own to the bit level, it cannot do array b o unds checking for local and global
variables . (Valgrind can d o bounds checking for dyn amic memory since it handles such
memo ry itself and therefore knows the stan and en d of each regio n .)
In concl usion, Valgrind is a powerful memory debugging tool. It h as been used o n
large-scale, multithreaded producti o n p rograms such as KDE 3, O pen Office, and th e
Konquerer web browser. It rivals several commercial offerings, and a variant version
has even been used (together with the WINE Emulator 2o) to debug programs written
fo r M icrosoft Windows , using V isual c ++! You can get Valgrind fro m its web site. 2 1
eemalloe
A mall oe () replacement lib rary that does not need special compilation and that
can be used w ith C++. See http: // www . inf . ethz . eh / persona llb iere /
p r o jects /ccmalloe .
Mark Moraes's malloc
An early but full-featured mall oe () replacem ent library that provides profiling,
tracing, and debugging features. You can ge t it from ft p : / / ft p . es. to r on -
to . edu / pub /moraes/mallo e- l . 18 . t a r . gz .
mpatrol
A highly configurable memory debuggin g and testmg package. See
h ttp: // www.cbmamiga . demon . eo . uk / mpat r ol .
memwatch
A package that requires the use of a special header file and compile-time options.
See http: //www .linkdata.se / sourcecode . html.
njamd
Not Just Another Malloc Debugger. This library doesn't require special linking
of the application; instead, it uses LD_PRELOAD to replace standard routines. See
http : //sour cefo rge.net / projects /n jamd.
yamd
Similar to Electric Fence, but with many more options. See
http : // www3 . hme. edu /-neldredge /yamd.
Almost all of these packages use environment variables to tune their behavior. Based
on the Linux Journal articles, Table 15.1 summarizes the features of the different
packages.
TABLE 15.·1
Memory tool features summary
If a program containing this fragment is never invoked with the wrong number of ar-
guments, the fprintf ( ) , which is missing the initial FILE * argument, is never called.
The V7 lin t program was designed to solve such problems. It made two passes over
all the files in a program, first collecting information about function arguments and
then comparing function calls to the gathered information. Special "lint library" files
provided information about the standard library functions so that they could be checked
as well. lint also checked other questionable constructs .
With protorypes in Standard C, the need for lint is decreased, but not eliminated,
since C89 still allows old-style function declarations:
exc ern int some_func () ; Argument list unknown
Additionally, many other aspects of a program can be checked statically, that is, by
analysis of the source code text.
The splint program (Secure Programming Lint 24 ), is a modern lint replacement.
It provides too many options and facilities to list here, but is worth investigating.
One thing to be aware of is that lint-like programs can produce a flo od of warning
messages. Many of the reported warnings are really harmless. In such cases, the tools
allow you to provide special comments that indicate "yes, I know about this, it's not a
problem." splint works best when yo u provide lots of such annotati ons in yo ur code.
spl int is a powerful but complicated tool; spending so me time learning how to use
it and then using it frequen tly will help you keep your code clean.
Testing sho uld be automated as much as possible. This is particularly easy to do for
non-CUI programs written in the style of the Linux/Unix (Ools: programs that read
standard inpu t or named files, and write to standard Output and standard error. At the
very least, testing can be done with simple shell scripts. More involved testing is usually
done with a separate test subdirectory and the make program.
Software testing is a whole subfield in itself, and we don 't expect to do it justice here;
rather our point is to make yo u aware that testing is an integral part of development
and often the m otivating fac(Or for using your debugging skills! Here is a very brief
summary list:
by David]. Agans (ISBN: 0-8144-7 168-4). The book has a web site25 that summarizes
the rules and provides a downloadable poster for you to print and place on your
office wall.
To round off our discussion, we present the following material. It was adapted by
David Agans, by permission, from Debugging, Copyright © 2002 David J. Agans,
published by AMACOM,26 a division of American Management Association, New
York, New York. We thank him.
1. Understand the system. When all else fails , read the manual. You have to
know what the troubled system and all of its parts are supposed to do, if you
want to figure out why they don't. So read any and all documentation you can
get your hands (or browser) on.
Knowing where functional blocks and data paths are, and how they interact,
gives you a roadmap for failure isolation. Of course, you also have to know
your domain (language, operating system, application) and your tools (compiler,
source code debugger).
2. Make it fail. In order to see the bug, you have to be able to make the failure
occur consistently. Document your procedures and start from a known state,
so that you can always make it fail again. Look at the bug on the system that
fails , don't try to simulate the ptoblem on another system. Don't trust statistics
on intermittent problems; they will hide the bug more than they will expose
it. Rather, try to make it consistent by varying inputs, and initial conditions,
and timing.
Ifit's still intermittent, you have to make it look like it's not. Capture in a log
every bit of information you can, during every run; then when you have some
bad runs and some good runs, compare them to each other. If you've captured
enough data you'll be able to home in on the problem as if you could make it
fail every time. Being able to make it fail every time also means you'll be able
to tell when you've fixed it.
3. Quit thinking and look. There are more ways for something to fail than you
can possibly imagine. So don 't imagine what could be happening, look at
it-put instrumentation on the system so you can actually see the failure
mechanism. Use whatever instrumentation you can-debuggers, printf ( ) s,
asser t ( ) s, logic analyzers , and even LEDs and beepers. Look at it deeply
enough until the bug is obvious to the eye, not just to the brain.
If you do guess, use the guess only to focus the search-don't try to fix it until
you can see it. If yo u have to add instrumentation code, do it, but be sure to
start with the same code base as the failing system, and make sure it still fails
with your added code running. Often, adding the debugger makes it stop failing
(that's why they call it a debugger).
4. Divide and conquer. Everybody knows this one. You do a successive approx-
imation-start at one end, jump halfway, see which way the error is from there,
and jump half again in that direction. Binary search, you're there in a few
jumps. The hard part is knowing whether you're past the bug or not. One
helpful trick is to put known, simple data into the system, so that trashed data
is easier to spot. Also, start at the bad end and work back toward the good:
there are too many good paths to explore if you start at the good end. Fix the
bugs you know about right away, since sometimes two bugs interact (tho ugh
you'd swear they can' t) , and successive approximation doesn ' t work with two
target values.
5. Change one thing at a time. If you 're trying toimprove a stream-handling
module and you simultaneously upgrade to the next version of the operating
system, it doesn't matter whether you see improvement, degradation, or no
change-you will have no idea what effect your individual changes had. The
interaction of multiple changes can be unpredictable and confusing. Don't do
it. Change one thing at a time, so you can bet that any difference you see as a
result came from that change.
If you make a change and it seems to have no effect, back it out immediately.
It may have had some effects that you didn't see, and those may show up in
combination with other changes. This goes for changes in testing as well as
in coding.
6. Keep an audit trail. Much of the effectiveness of the above rules depends on
keeping good records. In all aspects of testing and debugging, write down what
you did, when you did it, how you did it, and what happened as a result. Do
636 Chapter 15 • Debugging
make it fail again. Then put the fix back in and see that it doesn't fail. This
step assures you that it was really yo ur fix that solved the problem.
More information about the book Debugging and a free downloadable debugging
rules poster can be found at h ttp : // W.NW . d e buggi ng r ules . com.
15.9 Summary
• Debugging is an important part of software development. Good design and devel-
opment practices should be used to minimize the introduction of bugs, but debug-
ging will always be with us.
• Programs should be compiled without optimization and with debugging symbols
included to make debugging under a debugger more straightforward. On many
systems, compiling with optimization and compiling with debugging symbols are
mutually exclusive. This is not true ofGCC, which is why the GNU/Linux devel-
oper needs to be aware of the issue.
• The GNU debugger GDB is standard on GNU/Linux systems and can be used
on just about any commercial Unix system as well. (Graphical debuggers based
on GDB are also available and easily portable.) Breakpoints, watchpoints, and
single-stepping with next, step, and cont provide basic control over a program
as it's running. GDB also lets you examine data and call functions within
the debuggee.
• There are many things you can do when writing your program to make it easier
when you inevitably have to debug it. We covered the following topics:
• Debugging m acros for printing state.
• Avoiding expression macros.
• Reordering code to make single-stepping easier.
• Writing helper functions for use from a debugger.
• Avoiding unions .
• Having runtime debugging code in the production version of a program and
having different ways to enable that code's output.
15.10 Exercises 639
Exercises
5. Take one of your programs and modify it to use the dbu g library. Compile it
first without -DDBUG , ro make sure it compiles and works OK. (Do you have
a regression test suite for it? Did your program pass all the tests?)
Once you're sure that adding the dbug library has not broken your program,
recompile it with -DDBUG. Does your program still pass all its tests? What is
the performance difference with the library enabled and disabled?
Run your test suite with the - # t option to see the function-call trace. Do you
think this will help you in the future when you have to do debugging? Why
or why not?
6. Run one of your programs that uses dynamic memory with Electric Fence or
one of the other dynamic memory testers. Describe the problems, if any, that
you found.
7. Rerun the same program, using Valgrind with leak checking enabled. Describe
the problems, if any, that you found .
8. Design a set of tests for the mv program. (Read mv(l): make sure you cover all
its options.)
9. Search on the Internet for software testing resources. What interesting things
did you find ?
In this chapter
641
F or the first half of this book, we tied together everything that had been present-
ed, rather neatly, by looking at the V7 ls . c. However, as much as we would
like to have it, there is no single program, small enough to present here, for tying
together the concepts and APIs presented starting with Chapter 8, "Filesystems and
Directory Walks," page 227.
642
l6.1 Projecc Description 643
• How will you handle putting commands in the background? What about
waiting for a command in the background to finish?
• Decide whether you will have shell variables.
• What kind of wildcarding or other expansions will you support? How do
they interact with quoting? With shell variables?
• You should plan for at least an if and a while statement. Design a syntax.
We will call these block statements.
• Decide whether or not you wish to allow I/O redirection for a block state-
ment. If yes, what will the syntax look like?
• Decide how, if at all, your shell language should handle signals .
• Design a testing and debugging framework before you start to code.
2. If you ' re going to use il8n facilities, do so from the ourset. Retrofitting them
in is painful.
3. For the real work, start simply. The initial version should read one line at a
time and break it into words to use as separate arguments. Don't do any
quoting, I/O redirection , or anything else. Don't even try to create a new process
to run the entered program. How are you going to test what you have so far?
4. Add quoting so that individual "words" can contain whitespace. Does the
quoting code implement your design?
5. Make yo ur built-in commands work. (See Section 4.6, "Creating Files, "
page 106, and Section 8.4.1, "Changing Directory: chdir () and fchdir ( ) ,"
page 256, for at least two necessary built-in commands.) How are you going
to test them?
6. Initially, use a fixed search path, such as " I bin: lu sr I bin: l u s r I local Ibin" .
Add process creation with fork () and execution with exec () (see Chapter 9,
"Process Management and Pipes, " page 283). Starting out, the shell should
wait for each new program to finish.
7 . Add backgrounding and, as a separate command, waiting for process completion
(see C hapter 9, "Process Management and Pipes," page 283).
8. Add a user-settable search path (see Section 2.4, "The Environment," page 40).
644 Chapter 16 • A Projecr Thar Ties Everyrhing T ogerher
9. Add I/O redirection for files (see Section 9.4, "File Descriptor Management,"
page 320) .
10. Add shell variables. Test their interaction with quoting.
11 . Add wildcard and any other expansions (see Section 12.7, "Metacharacter Ex-
pansions," page 461). Test their interaction with shell variables. Test their in-
teraction with quoting.
12. Add pipelines (see Section 9.3, "Basic Interprocess Communication: Pipes and
FIFOs," page 315). At this point, real complexity starts to settle in . You may
need to take a hard look at how you're managing data that represents commands
to be run.
You could stop here with a legitimate feeling of accomplishment if you get a
working shell that can do everything mentioned so far.
13. If you're up for a further challenge, add if andlor whil e statements.
14. Add signal handling (see C hapter 10, "Signals," page 347).
15 . If you'd like to use your shell for real work, explore the GNU Readline lib rary
(type 'info readl ine' on a GNU/Linux system or see the source for the Bash
shell). This library lets you add either Emacs-style or vi-style command-line
editing to interactive programs.
Keep two things constantly in mind: always be able to test what you're doing; and
"no arbitrary limits!"
Once it's done, do a post-mortem analysis of the project. How would you do it dif-
ferently the second time?
Good luck!
647
Teach Yourself
Programming
in Ten Years
" Experience , n: Something you don 't get until just after you
need it. "
- Olivier-
This chapter is wntten by and Copyright © 2001 by Peter Norvig.
Reprinted by permission. The original article, including hyperlinks, is at
ht tp: // www.norvig . com /2 1-days . html. We have included it because we believe
that it conveys an important message. The above quote is one of our long-time favorites,
and as it applies to the point of this appendix, we've included it too .
649
650 Appendix A • Teach Yourself Programming in Ten Years
and got back 248 hits. The first 78 were computer books (number 79 was Learn Bengali
in 30 days). I replaced "days" with "houts" and got remarkably similar results: 253 more
books, with 77 computer books followed by Teach Yourself Grammar and Style in 24
H ours at number 78. Out of the top 200 total, 96% were computer books.
The conclusion is that either people are in a big rush to learn about computers , or
that computers are somehow fabulously easier to learn than anything else. There are
no books on how to learn Beethoven, or Quantum Physics, or even D og Groo ming in
a few days.
Let's analyze what a title like Learn Pascal in Three Days co uld mean:
• Learn: In 3 days yo u won't have time to write several significant programs, and
learn from your successes and fail utes with them. You won't have time to work
with an experienced programmer and understand what it is like to live in that
environment. In short, you won't have time to learn much. So they can only be
talking about a superficial familiarity, not a deep understanding. As Alexander
Pope said, a little learning is a dangerous thing.
• Pascal: In 3 days you might be able to learn the syntax of Pascal (if you already
knew a similar language) , but you couldn't learn much about how to use the
syntax. In short, if you were, say, a Basic programmer, you could learn to write
programs in the style of Basic using Pascal syntax, but you couldn 't learn what
Pascal is actually good (and bad) for. So what's the point? Alan Pedis once said:
"A language that doesn 't affect the way you think about programming, is not
worth knowing. " One possible point is that you have to learn a tiny bit of Pascal
(or more likely, something like Visual Basic or JavaScript) because you need to
interface with an existing tool to accomplish a specific task. But then you're not
learning how to program; you're learning to accomplish that task.
• in Three Days: Unfortunately, this is not enough, as the next section shows.
appear to be no real shoncuts: even Mozart, who was a musical prodigy at age 4, took
13 more years before he began to produce world-class music. In another genre, the
Bearles seemed to burst onto the scene, appearing on the Ed Sullivan show in 1964.
But they had been playing since 1957, and while they had mass appeal early on, their
first grea t critical success, Sgt. Peppers, was released in 1967. Samuel Johnson thought
it took longer than ten years: "Excellence in any department can be attai ned only by
the labo r of a lifetime; it is not to be purchased at a lesser price." And Chaucer com-
plained "the lyf so shon, the craft so long to Ierne."
Here's my recipe for programming success:
• Get interested in programming, and do some because it is fun . Make sure that it
keeps being enough fun so that you will be willing to put in ten years.
• Talk to other programmers; read other programs. This is more important than
any book or training course.
• Program. The best kind oflearning is learning by doing. To put it more technically,
"the maximal level of performance fo r individuals in a given domain is not attained
automatically as a function of extended experience, but the level of performance
can be increased even by highly experienced individuals as a result of deliberate
efforts to improve" (p. 366) and "the most effective learning requires a well-defined
task with an appropriate difficulty level for the particular individual, informative
feedback, and opportunities for repetition and corrections of errors. " (p. 20- 21)
The book Cognition in Practice: Mind, Mathematics, and Culture in Everyday Life
is an interesting reference for this viewpoint.
• If you want, put in four years at a college (or more at a graduate school). This will
give you access to some jobs that require credentials, and it will give you a deeper
understanding of the field, but if you don't enjoy schooL you can (with some
dedication) get similar experience on the job. In any case, book learning alone
won't be enough. "Computer science education cannot make anybody an expen
programmer any more than studying brushes and pigment can make somebody
an expert painter" says Eric Raymond, author of The New Hacker's Dictionary.
One of the best programmers I ever hired had only a High School degree; he's
produced a lot of great sofrware, has his own news group, and through stock op-
tions is no doubt much richer than I'll ever be.
652 Appendix A • Teach Yourself Programming in Ten Years
• Learn at least a half dozen programming languages. Include one language that
supports class abstractions (like Java or C++), one that supports functional abstrac-
tion (like Lisp or ML), one that supports syntactic abstraction (like Lisp), one that
supports declarative specifications (like Prolog or C++ templates), one that supports
coroutines (like Icon or Scheme) , and one that supports parallelism (like Sisal).
• Remember that there is a "computer" in "computer science. " Know how long it
takes your computer to execute an instruction, fetch a word from memory (with
and without a cache miss) , read consecutive words from disk, and seek to a new
location on disk. (Answers below.)
• Get involved in a language standardization effort. It could be the ANSI C ++
committee, or it could be deciding if your local coding style will have 2 or 4 space
indentation levels. Either way, you learn about what other people like in a language,
how deeply they feel so, and perhaps even a little about why they feel so.
• Have the good sense to get off the language standardization effort as quickly as
possible.
With all that in mind, its questionable how far you can get just by book learning.
Before my first child was born, I read all the How To books, and still felt like a clueless
novice. 30 months later, when my second child was due, did I go back to the books for
a refresher? No. Instead, I relied on my personal experience, which turned out to be
far more useful and reassuring to me than the thousands of pages written by experts.
Fred Brooks, in his essay No Silver Bullets identified a three-part plan for finding
great software designers:
1. Systematically identify top designers as early as possible.
Answers 653
This assumes that some people already have the qualities necessary for being a great
designer; the job is to properly coax them alo ng. Alan Perlis put it more succinctly:
"Everyone can be taught to sculpt: Michelangelo would have had to be taught how not
to. So it is with the great programmers."
So go ahead and buy that Java book; you'll probably get some use out of it. But you
won't change your life, or yo ur real overall expertise as a programmer in 24 hours , days,
or even months.
References
Bloom, Benjamin (ed.) Developing Talent in Young People, Ballantine, 1985.
Brooks, Fred, No Silver Bullets, IEEE Computer, vol. 20, no. 4, 1987, p. 10-19.
Hayes, John R. , Complete Problem Solver, Lawrence Erlbaum, 1989.
Lave, Jean, Cognition in Practice: Mind, Mathematics, and Culture in Everyday Life,
Cambridge University Press, 1988.
Answers
T iming for various operations on a typical 1 GHz PC in summer 2001:
execute single instruction 1 nsec = (1/1 ,000,000,000) sec
fetch word from Ll cache memory 2 nsec
fetch word from main memory 10 nsec
fetch word from consecutive disk location 200 nsec
fetch word from new disk location (seek) 8,000,OOOnsec = 8msec
654 Appendix A • Teach Yourself Programm ing in Ten Years
Footnotes
This pagel also available in Japanese translation 2 thanks to Yasushi Murakawa and
in Spanish translation 3 thanks to Carlos Rueda.
T. Capey points out that the Complete Problem Solver page on Amazon now has the
Teach Yourself Bengali in 21 days and Teach Yourself Grammar and Style books under
the "Customers who shopped for this item also shopped for these items" section. I guess
that a large portion of the people who look at that book are coming from this page.
I This appendix is quoted verbatim from th e web page cited at its beginning.
2 http : // wwwl . neweb.ne . jp/wa/yamdas/column/technique / 21-daysj.html
3 http : // loro .s f . net/notes/21-dias . html
Caldera Ancient
UNIX License
655
656 Appendix B • Caldera Ancient UNIX License
Ci~
CALDERA.
240 West Ce nt er Street
Orern, Utah 84057
801-765-4999 Fax 801-765-4481
32-bit 32V UN IX
16 bit UNIX Versions 1,2,3, 4, 5, 6, 7
Caldera International , Inc. makes no guarantees or commitments that any source code is available fro m Caldera
International, Inc .
The following copyright noti ce applies to the so urce code files for which this li cense is gra nted.
Copyright(C) Caldera International Inc. 2001-2002. All right s rese rved.
Redistribu tion and use in source and binary forms , with or without modification, are permitted provided that the
following conditions are met:
Redistributions of source code and documentati on must retain the above copyright notice, this list of co nditions and the
following di sclaimer. Redi stribution s in binary form must reproduce the above copyri ght notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the distribution.
All adverti sing materials mentioning features or use of this software must display the following acknowl edgement:
This product includes software deve loped or owned by Caldera International. Inc.
Neither the name of Caldera International, Inc. nor the names of ot her contributors may be used to endorse or promote
products derived from thi s software without speci fic prior written permission.
USE OF THE SOFTWARE PROVIDED FOR UNDE R THIS LI CENSE BY CALDERA INTERNATIONAL, INC.
AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRA NT IES, INCLUDING , BUT NOT
LIMIT ED TO, THE IMPLI ED WARRANTI ES OF MERCHANTAB ILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLA IMED. IN NO EVENT SHALL CALDERA INTERNATIONAL. INC. BE LIAB LE FOR
ANY DIR ECT, INDIRECT INCIDENTAL, SPECIAL, EXEM PLARY , OR CONSEQUENTIAL DAMAG ES
(INCLUD ING , BUT NOT LIMITED TO, PROCU REMENT OF SUBSTITUTE GOO DS OR SERVI CES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUS ED AND ON ANY THEORY OF
LIABILITY , WHETHER IN CONTRACT, STRICT LIABILITY , OR TORT (IN CLUDING NEG LIGENCE OR
OTH ERWIS E) ARISING IN ANY WAY OUT OF THE USE OF TH IS SOFTWARE, EVEN IF ADV IS ED OF THE
POSSIBILITY OF SUC H DAM AGE.
• UN IX is a registered tradema rk of The Open Group in the US and other cou ntries.
GNU
General Public
License
Preamble
T he licenses for most software are designed to take away yo ur freedom to share and
change it. By contrast, the GNU General Public License is intended to guarantee your
freedom to share and change free software-to make sure the software is free for all its
users. T his General Public License applies to most of the Free Software Foundation's
software and to any other p rogram whose authors commit to using it. (Some other Free
657
658 Appendix C • GNU General Public License
Software Foundation software is covered by the GNU Library General Public License
instead.) You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General
Public Licenses are designed to make sure that you have the freedom to distribute copies
of free software (and charge for this service if you wish), that you receive source code
or can get it if you want it, that you can change the software or use pieces of it in new
free programs; and that yo u know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny you
these rights or to ask you to surrender the rights. These restrictions translate to certain
responsibilities for you if you distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether gratis or for a fee ,
you must give the recipients all the rights that you have. You must make sure that they,
toO, receive or can get the source code. And you must show them these terms so they
know their rights.
We protect your rights with two steps: (1) copyright the software, and (2) offer you
this license which gives you legal permission to copy, distribute an d/or modify the
software.
Also, for each author's protection and ours, we want to make certain that everyone
understands that there is no warranty for this free software. If the software is modified
by someone else and passed on, we want its recipients to know that what they have is
not the original, so that any problems introduced by others will not reflect on the
original authors' reputations.
Finally, any free program is threatened constantly by software patents. We wish to
avoid the danger that redistributors of a free program will individually obtain patent
licenses, in effect making the program proprietary. To prevent this, we have made it
clear that any patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and modification follow.
or work, and a "work based on the Program" means either the Program or any
derivative work under copyright law: that is to say, a work containing the
Program or a portion of it, either verbatim or with modifications and/or
translated into another language. (Hereinafter, translation is included without
limitation in the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not covered
by this License; they are outside its scope. The act of running the Program is
not restricted, and the output from the Program is covered only if its contents
constitute a work based on the Program (independent of having been made by
running the Program). Whether that is true depends on what the Program
does.
1. You may copy and distribute verbatim copies of the Program's source code as
you receive it, in any medium, provided that you conspicuously and appropri-
ately publish on each copy an appropriate copyright notice and disclaimer of
warranty; keep intact all the notices that refer to this License and to the absence
of any warranty; and give any other recipients of the Program a copy of this
License along with the Program.
You may charge a fee for the physical act of transferring a copy, and you may
at your option offer warranty protection in exchange for a fee .
2. You may modifY your copy or copies of the Program or any portion of it, thus
forming a work based on the Program, and copy and distribute such modifica-
tions or work under the terms of Section 1 above, provided that you also meet
all of these conditions:
a. You must cause the modified files to carry prominent notices stating that
you changed the files and the date of any change.
b. You must cause any work that you distribute or publish, that in whole or
in part contains or is derived from the Program or any part thereof, to be
licensed as a whole at no charge to all third parties under the terms of this
License.
c. If the modified program normally reads commands interactively when run,
you must cause it, when started running for such interactive use in the most
ordinary way, to print or display an announcement including an appropriate
copyright notice and a notice that there is no warranty (or else, saying that
660 Appendix C • GNU General Public License
you provide a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this License.
(Exception: if the Program itself is interactive but does not normally print
such an announcement, your work based on the Program is not required
to print an announcement.)
granted herein. You are not responsible for enforcing compliance by third
parties to this License.
7. If, as a consequence of a court judgment or allegation of patent infringement
or for any other reason (not limited to patent issues), conditions are imposed
on you (whether by court order, agreement or otherwise) that contradict the
conditions of this License, they do not excuse you from the conditions of this
License. If you cannot distribute so as to satisfY simultaneously your obligations
under this License and any other pertinent obligations, then as a consequence
you may not distribute the Program at all. For example, if a patent license
would not permit royalty-free redistribution of the Program by all those who
receive copies directly or indirectly through you, then the only way you could
satisfy both it and this License would be to refrain entirely from distribution
of the Program.
If any portion of this section is held invalid or unenforceable under any partic-
ular circumstance, the balance of the section is intended to apply and the section
as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any patents or
other property right claims or to contest validity of any such claims; this section
has the sole purpose of protecting the integrity of the free software distribution
system, which is implemented by public license practices. Many people have
made generous contributions to the wide range of software distributed through
that system in reliance on consistent application of that system; it is up to the
author/donor to decide if he or she is willing to distribute software through
any other system and a licensee cannot impose that choice.
This section is intended to make thoroughly clear what is believed to be a
consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in certain countries
either by patents or by copyrighted interfaces, the original copyright holder
who places the Program under this License may add an explicit geographical
distribution limitation excluding those countries, so that distribution is permit-
ted only in or among countries not thus excluded. In such case, this License
incorporates the limitation as if written in the body of this License.
NO WARRANTY 663
9. The Free Software Foundation may publish revised and/ or new versions of the
General Public License from time to time. Such new versions will be similar
in spirit to the present version, but may differ in detail to address new problems
or concerns.
Each version is given a distinguishing version number. If the Program specifies
a version number of this License which applies to it and "any later version",
you have the option of following the terms and conditions either of that version
or of any later version published by the Free Software Foundation. If the Pro-
gram does not specify a version number of this License, you may choose any
version ever published by the Free Software Foundation.
10. If yo u wish to incorporate parts of the Program into other free programs whose
distribution conditions are different, write to the author to ask for permission.
For software which is copyrighted by the Free Software Foundation, write to
the Free Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status of all
derivatives of our free software and of promoting the sharing and reuse of
software generally.
NOWARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE
IS NO WARRANTY FOR THE PROGRAM , TO THE EXTENT PERMIT-
TED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED
IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING , BUT NOT
LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK
AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS
WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU
ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR
AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR
664 Appendix C • GNU General Public License
You should have receive d a copy of the GNU General Public Lic ense
along with this program; if not, wri te to the Free Software
Foundation, Inc . , 59 Temple Place, Sui te 330, Bo s ton, MA 02111, USA.
Example Use 665
The hypothe tical commands 'show w' and 'sh ow c ' should show the appropriate
parts of the General Public License. Of co urse, the commands yo u use may be called
something o ther than 'show w' and 's how c '; they could even be mouse-clicks or menu
items-whatever suits your program.
You should also get your employer (if you work as a programmer) or your school, if
any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample;
alter the names :
Yoyody n e, Inc . , he r eby discla ims a l l copy ri g ht
inte rest in the pr ogram 'Gnomovisi on '
(wh ich makes passe s at compilers) written
by James Hacker .
T his General Public License does not permit inco rpora ting your program into pro-
prietary programs . If yo ur program is a subrourine library, yo u m ay co nsider it more
useful to permit linking pro prietary applications with the library. If this is what yo u
want to do , use the GNU Lesser General Public License instead of this License.
Example Use
This section is not part of the GPL. Here we show the copyright comment from the
GNU env program:
/ * env - run a program in a modified environment
Copyright (C) 1986, 1991-2002 Free Software Found ation, Inc .
This pro gram is free s o f t ware ; you can redist ribu te it and/o r modify
it unde r the terms o f the GNU Gen e ral Public Licens e as p u b lished by
the Free So f tware Foun d a tion ; either version 2, or (at your op tion)
any lat e r versi on .
This prog ram is dist ributed in the hope that it will be use f ul ,
666 Appendix C • GNU General Public License
You shou ld h ave re c e ived a copy of the GNU Genera l Publ ic Li cense
along wi t h t his program; if not, wr ite to the Free Software Foundation,
Inc . , 59 Temple plac e - Suite 330, Boston, MA 02111-1307, USA . * /
667
668 I ndex
directories (continued)
moving, 128 E
parenr, 125 EBCDIC encoding, 521
read ing, 132-139 echo program, 24, 29, 33
re movi ng, 128, 130 ed ed itor, 4 16, 447, 472
sy mbolic links to, 128 ef script, 617- 618
sysrem roor, 229- 231,276-277 e fen ce (Elecrric Fence) library, 614--619, 630- 631,
fo r remporary fil es, 443, 481 639
walking, 260-276, 278 manpage of, 618-619
directory enrries, 120-122,125,128, 133- 138, 162, efs filesystem, 233
208 egrep program, 472
file rypes in, 138 ELF (Extensible Linking Format), 8, 294
lengrh of, 246 Emacs ed itor, 16, 18,472,574,644
read ing, 221 emp_name_id_ compare () , 183, 558- 559
sorring, 188-191 ,2 13 empl oyee muct, 183- 187, 192-195 , 535 , 556,
directory permission s, see permissions, direcrory 558
dirent srruct, 133- 138, 162, 188,204,466 ENABL E_NLS constant, 511, 513, 516
d i rfd (),257 encodings, 487, 522, 527
discardin g dara, 9 multibyte, 523-524
d ispositions, see signal acrions, default sel f-correcring, 524
dmall oc library, 619-622 , 629-630, 639 endmntent (), 241
do_input (), 583 e ndpwent (), 197- 198
do_statfs (), 255 e nr ropy pool, 460
do_statvfs () , 248 e nv program, 42 , 44-49
Drepper, U lrich, xxxi, 379 environ variable, 43--44, 48-49, 294
DST (dayligh t-saving time), 170,178-180 e nvironmenr va riabl es, 11, 40-42
du program, 260 adding, 42, 44
GNU vers ion of, 264 , 269- 276, 278 for deb ugging, 597- 601,613,6 18- 6 19
dup() , 321- 326, 343-344, 364,420 w irh empry va lu es, 41
dup2 (), 321- 326, 331 , 343-344,364 expansion of, 470, 482
DVDs, 234, 239 for locales, 488--490
dynamic data srrucrures, 552 ra ndom order of, 43
dynamic memory, 18,52,56- 80 removing, 42, 44, 48
access in g afrer sh rinking, 63 e nvironmenrs , 11 ,40--49,285
accessingourside the bounds, 61,568,613,6 16, clearing, 42, 44
623,631 E poc~ 157, 166, 203, 543
aligned , 530-531 , 562 e ras, 504-506
caicularing size of, 58 , 65 Er ickson, Cal, 629
changing size of, 62-65 , 76, 614-619 errno variable, 58 , 86, 94,97,99, 11 5,123,127,
debugging, 612-63 1, 639 129- 130,133,153, 161 ,167,202,257-258,
freed, 60, 80, 472, 612, 616, 623 293-294,302,304,306,334, 338-339,
inirially allocarin g, 58-60,408-409 357-3 58,360,365 , 399,412,422,464, 530,
leaks of, 61 , 63, 80, 188,437,451-453, 612,623, 537,550
627 examinar ion of, 90
releasing, 60- 62, 80 man page of, 90
tracing, 61 3- 614 valu es for, 87-90
unfreed, 612, 63 1 error messages, 16, 18,72,90- 91,99,115,445-446
uninirialized use of, 613, 623, 627- 629, 639 diagnostic idenrifiers for , 90-91
zero-filling, 62 , 65, 432 handlin g, 32
672 Index
signal (), 349- 3 53, 364-365 , 375, 383, 399-400 sort program, 357
BSD vers ion of, 356 man page of, 181
GNU/Linu x vers ion of, 356 so rring, 18 1- 19 1, 204,445
ma npage of, 350, 352 by modificario n rime, 208
signals, 305 , 343, 348, 363 of po inrers, 187
avai lable under G NU/ Linux, 350- 35 2 stable, 184
blocking, 365, 367-368, 371, 378, 38 1,398 , So urhern Sro rm Software, xxv ii
400-401 spagherri code, 446
ca rching, 349 SPARC sys rem, 234-2 35
dearh of ch ild, 401 speed, 18
ignoring, 348, 350 , 356- 357, 375, 380, 398-399 Spencer, HenlY, xxxi, 21 , 132
interrupr, 9, 30 5, 3 13, 354, 365, 376 s plin t (Sec ure Programm in g Li nr) program, 63 1,
jo b co ntrol, 9, 30 5, 307, 313 , 383- 385,401 639
pend ing, 370, 375 , 384,3 98,400-40 1 spr intf () , 501
real-rime, 353 s r and ( ),455 , 48 2
se nd ing, 376- 378, 399-400, 404 srandom ( ), 457-458,482
supporred , lisr of, 352 ssiz e_ t type, 73, 98
using for IPC, 379,400 st_ ct ime field , 143
sigpause (), 364, 366, 382 st_mode fiel d, 142- 145, 150
si gpending () , 364, 369- 370 , 37 5,378,400 st_s i z e field, 142, 152, 154 , 163
s i gprocmask () , 364, 369, 378,400 srack, 53-55, 77 , 623
sigqu e u e () , 364, 373 stack frames, 573
sigrel se (), 366-367 srack segments, 53- 55
s i gset (),364, 366, 367 srack rraces, 573
s i gse t _ t type, 368-369, 378, 400 Srallman, Richard M., 22 , 66
s i gse tjmp (), 449-450, 45 1, 48 1 Srandard C , 21
s igsu spend ( ), 364, 369- 370, 378,38 1-382,396, 1990 ISO , xx i, 12- 14, 19-21
401 1999 ISO, xx i, 14, 19- 2 1
s i gve c () , 367 cons t irems in , 55
simplicity, 4, 9, 12, 18, 2 1 exiring funcrions in, 302- 305
single-sreppi ng, 575 ,638 GNU programs ill , 15
s iz e program , 55, 80 ma in (), 30 1
s iz e _ t type, 57 re alloc ( ) , 63
s iz eof operaror, 58, 105, 589 remove ( ), 127- 128
s l eep (), 290- 291 , 364 , 383,401, 550 signal funcrions in, 349- 353
5MB fi lesys rem, 234 t ime_t type, 166
socke t (), 364 va riad ic macros in, 579
socketpa i r() ,364 wide cha racrers in , 523
sockers, 88- 89, 14 0 see also C language, Srandard C
mask for, 146 srandard error, xvii, 11 , 21, 92- 93, 115, 14 1, 202
sofr li nks, see symboli c links sending debugging messages ro, 578
Solaris, 278 srandard inpur, xvii, 11, 21 , 27, 92-93, 98 , 115, 14 1,
co re dumps in, 308 202, 3 15,337,476, 478
d irec[O ries in , 4 13 shared by two processes, 287
fi lesys rem in, 235 , 238 srandard ourpur, xvii, 11, 2 1,27 ,92-93, 11 5, 141,
ge t text , 486 150,202, 3 15,337
mounrin g in , 229 shared by two processes, 287
numeric valu es fo rmarring in, 50 1 srandards, xx
sig nals in, 354-355, 365 , 392 , 399 stat srrucr, 101 , 141- 144,157- 158,1 63,166,21 0,
sorring fu ncrions, 188 218, 224, 226, 229, 260 ,278, 288,545 , 597
684 Index
w
w, in permissions, 5
wait (), 29 1, 306-310,343, 358, 364,385-386
wait3(), 310- 3 11 ,343
wait4( ), 310- 3 11 ,343
waitpid () , 291, 306-310,343, 364,388,397
Rags fo r, 307
warm fuzzy, 149
watchpoims, 576,638
Watso n, Gray, 619
we program, 435-436
RS INC.
The Most werful Sabers
In The Kn U niverse ™
"This is an excellent introduction to linux programming. The topics are well chosen and lucidly presented.
I learned things myself, especially about internationalization, and I've been at this for quite a while."
-CHET RAMEY, COAUTHOR ANO MAINTAINER OF THE BASH SHELL
"This is a good introduction to linux programming. Arnold 's technique of showing how experienced
programmers use the linux programming interfaces is a nice touch, much more useful than the canned
programming examples found in most books."
- ULRICH DREPPER, PROJECT LEAD, GNU C LIBRARY
"A gentle yet thorough introduction to the art of UNIX system programming, Linux Programming by Example
uses code from a wide range of familiar programs to illustrate each concept it teaches. Readers will enjoy
an interesting mix of in-depth API descriptions and portability guidelines, and will come away well prepared
to begin reading and writing systems applications. Heartily recommended."
- JIM MEYERING, COAUTHOR AND MAINTAINER OF THE GNU CORE UTILITY PROGRAMS
Just learn in g to program? Switching from Windows®? Already developing with Linux but interested in exploring th e
syste m ca ll interfa ce furth er? No matter whi ch, qui ckly and di rectly, this book will help you master the fun damenta ls
needed to build serious Linux software.
~ Companion Web sites, authors.phptr.com/rohhins and www.linux-hy-example.com. include all code examples.
About the Author
ARNOLD ROBBINS is a professional programmer and instructor, and author of UNIX in a Nutshell, Learning the Korn
Shell, an d Effective awk Programming. A long-time GNUProject volunteer, he currently maintains gawk. He has
worked with C, C++, UNIX, and GNU/Linux sin ce 1980.