Skip to content

Commit 88d774a

Browse files
committed
use the new hlabel command to properly create links in PDFs
fixes #44
1 parent 98ea2b5 commit 88d774a

14 files changed

+165
-147
lines changed

.github/workflows/compile.yml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- name: Install pre-requisites for spell check
2727
working-directory: master
2828
run: ./dev/install-spellcheck.sh
29+
- name: Check labels
30+
working-directory: master
31+
run: ./dev/check-label.sh
2932
- name: Run spellcheck
3033
working-directory: master
3134
run: make spellcheck

common.tex

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
\renewcommand{\slidelabel}{}
7070
\setlength{\textwidth}{0.9\textwidth}
7171

72+
% This command has to be used throught the sources instead of \label
73+
% for hyperref to be able to create valid links.
74+
\newcommand{\hlabel}{\phantomsection\label}
75+
7276
\newcommand{\sltitle}[1]{{\centering\textbf{\Large #1}
7377
\vskip 2em plus 0pt minus 2em\par}} % Slide title
7478

dev/check-label.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
if grep '\\label{.*}' *.tex >/tmp/label-err.out; then
4+
echo "Some of the *.tex files contain the \\label command."
5+
echo "This is unwanted as this leads to invalid links in PDFs."
6+
echo "Use \\hlabel instead."
7+
echo ""
8+
cat /tmp/label-err.out
9+
exit 1
10+
fi

file-api.tex

+17-17
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
\end{center}
5555
\end{slide}
5656

57-
\label{OPENFILETABLES}
57+
\hlabel{OPENFILETABLES}
5858

5959
\begin{itemize}
6060
\item This is a simplified view of the kernel tables that deal with files. It
@@ -113,7 +113,7 @@
113113
\end{itemize}
114114
\end{slide}
115115

116-
\label{OPEN}
116+
\hlabel{OPEN}
117117

118118
\begin{itemize}
119119
\item The first available file descriptor is always used.
@@ -145,7 +145,7 @@
145145
reading.
146146
\item \texttt{O\_NOCTTY} \dots{} when opening a terminal by a process without a
147147
controlling terminal, the terminal being opened does not become one.
148-
\item \label{O_NONBLOCK} \texttt{O\_NONBLOCK} \dots{} if reading or writing
148+
\item \hlabel{O_NONBLOCK} \texttt{O\_NONBLOCK} \dots{} if reading or writing
149149
cannot be satisfied right away, calls \texttt{read}/\texttt{write} will fail
150150
instead of getting blocked and waiting for the completion. \texttt{errno} is
151151
set to \texttt{EAGAIN} in such a case.
@@ -187,8 +187,8 @@
187187
\end{itemize}
188188
\end{slide}
189189

190-
\label{MKFIFO}
191-
\label{CREAT}
190+
\hlabel{MKFIFO}
191+
\hlabel{CREAT}
192192

193193
\begin{itemize}
194194
\item The \texttt{open} call allows opening of a regular file, device, or named
@@ -230,7 +230,7 @@
230230
\end{itemize}
231231
\end{slide}
232232

233-
\label{READCALL}
233+
\hlabel{READCALL}
234234

235235
\begin{itemize}
236236
\setlength{\itemsep}{0.8\itemsep}
@@ -306,7 +306,7 @@
306306
and it is a long living process, a daemon perhaps, depending on the system
307307
configuration you may hit memory starvation as the system memory will be filled
308308
with an ever growing file descriptor table.
309-
\item \label{SIMPLE_CAT} A very simple \texttt{cat(1)} program:
309+
\item \hlabel{SIMPLE_CAT} A very simple \texttt{cat(1)} program:
310310
\example{read/cat.c}
311311
\end{itemize}
312312

@@ -386,7 +386,7 @@
386386
\end{itemize}
387387
\end{slide}
388388

389-
\label{NAMEDPIPE}
389+
\hlabel{NAMEDPIPE}
390390

391391
\begin{itemize}
392392
\item A named pipe is created using the system call \texttt{mkfifo}, see page
@@ -491,7 +491,7 @@
491491
\end{slide}
492492

493493
\begin{itemize}
494-
\item \label{LSEEK} The first byte is at position 0. If it makes sense, you may
494+
\item \hlabel{LSEEK} The first byte is at position 0. If it makes sense, you may
495495
use a negative number for setting the \emph{offset}. Example:
496496
\example{read/lseek.c}.
497497
\item It is legal to move beyond the end of the file. If data is written there,
@@ -505,7 +505,7 @@
505505
\item You can obviously use the return value of \texttt{lseek} not only for
506506
subsequent calls to \texttt{read} and \texttt{write} but also for another call
507507
to \texttt{lseek}.
508-
\item \label{BIG_FILE} Beware of files with holes as it may lead to problems
508+
\item \hlabel{BIG_FILE} Beware of files with holes as it may lead to problems
509509
with backing up the data. Example: \example{read/big-file.c} demonstrates that
510510
moving a sparse file may end up in an actual storage data occupation increase.
511511
It greatly depends on the system you run, what archiving utility is used, and
@@ -568,7 +568,7 @@
568568
\end{itemize}
569569
\end{slide}
570570

571-
\label{DUP_CALL}
571+
\hlabel{DUP_CALL}
572572

573573
\begin{itemize}
574574
\item We already know that the first available file descriptor is used when
@@ -610,7 +610,7 @@
610610
\begin{itemize}
611611
\item Note the flag \texttt{O\_APPEND} used to implement a redirection
612612
\texttt{>>}.
613-
\item \label{REDIRECT} Another example of \texttt{dup} use will be provided when
613+
\item \hlabel{REDIRECT} Another example of \texttt{dup} use will be provided when
614614
we start working with pipes. The first redirection example from the slide
615615
(without \texttt{stderr}) is in \example{read/redirect.c}. In that example, the
616616
\texttt{execl} call replaces the current process image with the
@@ -682,7 +682,7 @@
682682
\end{itemize}
683683
\end{slide}
684684

685-
\label{FCNTL}
685+
\hlabel{FCNTL}
686686

687687
\begin{itemize}
688688
\item Example: close standard error output on program execution (exec call):\\
@@ -790,7 +790,7 @@
790790
last modification of the inode.
791791
\item The UNIX norm does not specify the ordering of the \texttt{struct stat}
792792
members, nor does it prohibit adding new ones.
793-
\item \label{STAT} Example: \example{stat/stat.c}
793+
\item \hlabel{STAT} Example: \example{stat/stat.c}
794794
\item You can call \texttt{fstat} on file descriptors 0, 1, and 2 as well. Unless
795795
redirected before, you will get information on the underlying terminal device
796796
(e.g. \texttt{/dev/ttys011} on macOS). Example: \example{stat/stat012.c}.
@@ -897,7 +897,7 @@
897897
\emph{path2} to file \emph{path1}. Hard links cannot span filesystems (use
898898
\funnm{symlink} for that).
899899
\end{itemize}
900-
\label{UNLINK} \texttt{ int \funnm{unlink}(const char *\emph{path});}
900+
\hlabel{UNLINK} \texttt{ int \funnm{unlink}(const char *\emph{path});}
901901
\begin{itemize}
902902
\item deletes a name (i.e. a directory entry) and after deleting the last link to
903903
the file and after closing the file by all processes, deletes the file data.
@@ -1028,7 +1028,7 @@
10281028
mountpoint; this member contains the i-node number of the directory where the
10291029
filesystem is mounted and not the root of the mounted filesystem as one might
10301030
expect.
1031-
\item \label{D_TYPE} Some system have a \texttt{struct dirent} member
1031+
\item \hlabel{D_TYPE} Some system have a \texttt{struct dirent} member
10321032
\texttt{d\_type}. It can have values of \texttt{DT\_REG}, \texttt{DT\_DIR},
10331033
\texttt{DT\_FIFO} etc., see the man page for \texttt{dirent}. It was a BSD
10341034
specific thing and subsequently copied by other systems, including Linux.
@@ -1038,7 +1038,7 @@
10381038
to remove all entries before you can delete a directory. You can use
10391039
\texttt{system("rm -r xxx")} etc. but be careful to sanitize the environment and
10401040
the directory name to avoid any security implications.
1041-
\item \label{REMOVE} The specification also defines \texttt{remove} which
1041+
\item \hlabel{REMOVE} The specification also defines \texttt{remove} which
10421042
behaves like \texttt{unlink} for files and as \texttt{rmdir} for directories.
10431043
\end{itemize}
10441044

files.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
\end{itemize}
3131
\end{slide}
3232

33-
\label{DEVFS}
33+
\hlabel{DEVFS}
3434

3535
\begin{itemize}
3636
\item Devices, files in \texttt{/proc}, terminals, memory etc. are of one type
@@ -433,7 +433,7 @@
433433

434434
%%%%%
435435

436-
\label{VFS}
436+
\hlabel{VFS}
437437
\pdfbookmark[1]{Virtual File System}{VFS}
438438

439439
\begin{slide}

intro.tex

+18-18
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
\end{itemize}
170170
\end{slide}
171171

172-
\label{UNIXSTANDARDS}
172+
\hlabel{UNIXSTANDARDS}
173173

174174
\begin{itemize}
175175
\item The very basic information is that the area of UNIX standards is very
@@ -244,7 +244,7 @@
244244
\end{itemize}
245245
\end{slide}
246246

247-
\label{POSIX}
247+
\hlabel{POSIX}
248248

249249
\begin{itemize}
250250
\item The first document is \emph{IEEE Std POSIX1003.1-1988}, formerly simply
@@ -346,7 +346,7 @@
346346
\end{enumerate}
347347
\end{slide}
348348

349-
\label{REF_PROGRAMMING}
349+
\hlabel{REF_PROGRAMMING}
350350

351351
\begin{enumerate}
352352
\item One of the best book on programming in Unix environment. Does not cover
@@ -362,7 +362,7 @@
362362
recommended.
363363
\item UNIX specifications.
364364
\item Detailed descriptions of system calls and functions.
365-
\item \label{POSIX4} A book that did not fit the slide and covers topics outside
365+
\item \hlabel{POSIX4} A book that did not fit the slide and covers topics outside
366366
of the scope of this class: Gall\-meis\-ter, B. R.: \emsl{POSIX.4 Programmers
367367
Guide: Programming for the Real World}, O'Reilly; \nth{1} edition, 1995. A great
368368
book on real-time POSIX extensions with a beautiful cover. See also pages
@@ -410,7 +410,7 @@
410410
%%%%%
411411

412412
\pdfbookmark[1]{The C Programming Language}{C}
413-
\label{C_LANGUAGE}
413+
\hlabel{C_LANGUAGE}
414414

415415
\begin{slide}
416416
\sltitle{The C Programming Language}
@@ -499,7 +499,7 @@
499499
\end{itemize}
500500
\end{slide}
501501

502-
\label{BYTE_ORDERING}
502+
\hlabel{BYTE_ORDERING}
503503

504504
\begin{itemize}
505505
\item Be careful when using tools like \texttt{hexdump} that by default print
@@ -551,7 +551,7 @@
551551
\end{itemize}
552552
\end{slide}
553553

554-
\label{NEWLINECHAR}
554+
\hlabel{NEWLINECHAR}
555555

556556
\begin{itemize}
557557
\item \emsl{LF}, \emph{line feed}, sometimes also referred to as \emph{new
@@ -1092,7 +1092,7 @@
10921092
\end{minipage}
10931093
\end{slide}
10941094

1095-
\label{MAKE}.
1095+
\hlabel{MAKE}.
10961096

10971097
\begin{itemize}
10981098
\item You could compile and link the program via one invocation of a compiler,
@@ -1268,7 +1268,7 @@
12681268
\end{itemize}
12691269
\end{slide}
12701270

1271-
\label{RUNTIMELINKER}
1271+
\hlabel{RUNTIMELINKER}
12721272

12731273
\begin{itemize}
12741274
\item An ELF object format is explained on page \pageref{ELF}.
@@ -1365,7 +1365,7 @@
13651365
\item You can also edit ELF objects via \texttt{elfedit(1)} on Solaris. You can
13661366
change \texttt{RUNPATH}, for example.
13671367
\end{itemize}
1368-
\item \label{EVIL_LDLIBPATH} In general, you should not use
1368+
\item \hlabel{EVIL_LDLIBPATH} In general, you should not use
13691369
\texttt{LD\_LIBRARY\_PATH} for anything else than debugging during the
13701370
development or when moving libraries between directories. You can find lots of
13711371
articles on ``why is \texttt{LD\_LIBRARY\_PATH} evil?'' etc. For example,
@@ -1413,7 +1413,7 @@
14131413
\end{itemize}
14141414
\end{slide}
14151415

1416-
\label{API_ABI}
1416+
\hlabel{API_ABI}
14171417

14181418
\begin{itemize}
14191419
\item In short -- an API is source code based while an ABI is binary based.
@@ -1482,7 +1482,7 @@
14821482
-1077941135
14831483
\end{verbatim}
14841484

1485-
\item \label{ABI_MAIN} Example: \example{lib-abi/abi-main.c} (see the block
1485+
\item \hlabel{ABI_MAIN} Example: \example{lib-abi/abi-main.c} (see the block
14861486
comment in the file on how to use other files located in the same directory).
14871487
\item To change an ABI safely, you need library versioning -- if the library
14881488
ABI change is not backward compatible, a bumped up version needs to prevent
@@ -1867,7 +1867,7 @@
18671867
different from an empty string.
18681868
\item To go through all the command line arguments, you can either use
18691869
\emph{argc} or test for \texttt{NULL} in \texttt{argv[i]}.
1870-
\item \label{SHELL_ARGV0} \texttt{argv[0]} is sometimes a source of additional
1870+
\item \hlabel{SHELL_ARGV0} \texttt{argv[0]} is sometimes a source of additional
18711871
information. For example, commands \texttt{cp}, \texttt{mv}, and \texttt{ln} may
18721872
be linked to the same executable (Solaris). The value of \texttt{argv[0]} then
18731873
tells the process what function it is supposed to perform. Another example -- if
@@ -1912,7 +1912,7 @@
19121912
prog && echo "success" || echo "failure"
19131913
\end{verbatim}
19141914
Example: \example{main/return-256.c}.
1915-
\item \label{RETURN255} Never use \texttt{return (-1)} in \texttt{main} nor
1915+
\item \hlabel{RETURN255} Never use \texttt{return (-1)} in \texttt{main} nor
19161916
\texttt{exit(-1)}. Based on the information in the previous paragraph,
19171917
from \texttt{-1} you will get \texttt{255} as the return value you get in the
19181918
shell in \texttt{\$?}. It just creates confusion.
@@ -1927,7 +1927,7 @@
19271927
\emsl{without} printing a new line), and calls functions registered via
19281928
\texttt{atexit()}, and possibly other actions based on a specific system.
19291929
Example: \example{exit/exit.c} and \example{exit/atexit-abort.c}
1930-
\item \label{MAIN_C} Example on printing out command line arguments:
1930+
\item \hlabel{MAIN_C} Example on printing out command line arguments:
19311931
\example{main/print-argv.c}
19321932
\item If a process is killed by a signal, you can get the signal number from its
19331933
return value as presented by the shell. See page
@@ -2175,7 +2175,7 @@
21752175
processing.
21762176
\item When a undefined option is used, \texttt{getopt} will print an error;
21772177
this can be suppressed by setting the \texttt{opterr} variable to 0.
2178-
\item \label{GETOPT} Example: shell script \example{getopt/getopts.sh}
2178+
\item \hlabel{GETOPT} Example: shell script \example{getopt/getopts.sh}
21792179
rewritten to C language using the \texttt{getopt} function:
21802180
\example{getopt/getopt.c}
21812181
\end{itemize}
@@ -2499,7 +2499,7 @@
24992499
\item Many \texttt{libc} functions and functions from other libraries set
25002500
\texttt{errno} on failure as well. You always need to consult the relevant
25012501
documentation.
2502-
\item \label{ERRNO} It is common nowadays that \texttt{errno} is in reality
2502+
\item \hlabel{ERRNO} It is common nowadays that \texttt{errno} is in reality
25032503
defined in \texttt{libc} as a dereferenced pointer to an integer returned by a
25042504
function (returned pointer is specific to a userland thread) and the value is
25052505
set right after the instruction for the system call. For example, on the i386
@@ -2557,7 +2557,7 @@
25572557
%%%%%
25582558

25592559
\begin{itemize}
2560-
\label{ERR}
2560+
\hlabel{ERR}
25612561
\item The \funnm{errx}() function behaves as \funnm{err}() but does not use
25622562
\texttt{errno} to print that extra error message. Similarly, \funnm{warnx}().
25632563
\item These functions are very handy especially for smaller programs as they are

0 commit comments

Comments
 (0)