亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

The Linux Programming Interface 筆記之malloc和free的實現

2019-11-14 09:46:36
字體:
來源:轉載
供稿:網友
        Although malloc()andfree() PRovide an interface for allocating memory that ismuch easier to use than brk() and sbrk(), it is still possible to make various programmingerrors when using them. Understanding how malloc() and free()are implemented

provides us with insights into the causes of these errors and how we can avoid them.

       The implementation of malloc()is straightforward. It first scans the list of memoryblocks previously released by free() in order to find one whose size is larger thanor equal to its requirements. (Different strategies may be employed for this scan,depending on the implementation; for example, first-fit or best-fit.) If the block isexactly the right size, then it is returned to the caller. If it is larger, then it is split, sothat a block of the correct size is returned to the caller and a smaller free block is

left on the free list.

       If no block on the free list is large enough, then malloc() callssbrk() to allocatemore memory. To reduce the number of calls to sbrk(), rather than allocatingexactly the number of bytes required, malloc() increases the program break inlarger units (some multiple of the virtual memory page size), putting the excessmemory onto the free list.

       Looking at the implementation of free(), things start to become more interesting.When free() places a block of memory onto the free list, how does it know whatsize that block is? This is done via a trick. When malloc() allocates the block, itallocates extra bytes to hold an integer containing the size of the block. This integer islocated at the beginning of the block; the address actually returned to the callerpoints to the location just past this length value, as shown in Figure 7-1.

        When a block is placed on the (doubly linked) free list,free()uses the bytes of theblock itself in order to add the block to the list, as shown in Figure 7-2.

        As blocks are deallocated and reallocated over time, the blocks of the free list willbecome intermingled with blocks of allocated, in-use memory, as shown in Figure 7-3.

        Now consider the fact that C allows us to create pointers to any location in theheap, and modify the locations they point to, including the length,previous free block,and next free block pointers maintained by free() and malloc(). Add this to the precedingdescription, and we have a fairly combustible mix when it comes to creatingobscure programming bugs. For example, if, via a misdirected pointer, we accidentallyincrease one of the length values preceding an allocated block of memory, andsubsequently deallocate that block, then free()will record the wrong size block ofmemory on the free list. Subsequently, malloc() may reallocate this block, leading toa scenario where the program has pointers to two blocks of allocated memory thatit understands to be distinct, but which actually overlap. Numerous other picturesof what could go wrong can be drawn.         To avoid these types of errors, we should observe the following rules:> After we allocate a block of memory, we should be careful not to touch anybytes outside the range of that block. This could occur, for example, as a resultof faulty pointer arithmetic or off-by-one errors in loops updating the contents ofa block.> It is an error to free the same piece of allocated memory more than once. Withglibc on linux, we often get a segmentation violation (SIGSEGV signal). This isgood, because it alerts us that we’ve made a programming error. However,more generally, freeing the same memory twice leads to unpredictable behavior.> We should never call free() with a pointer value that wasn’t obtained by a call toone of the functions in the malloc package.> If we are writing a long-running program (e.g., a shell or a network daemonprocess) that repeatedly allocates memory for various purposes, then weshould ensure that we deallocate any memory after we have finished using it.Failure to do so means that the heap will steadily grow until we reach the limitsof available virtual memory, at which point further attempts to allocate memory fail. Such a condition is known as amemory leak.

Tools and libraries for malloc debugging

        Failure to observe the rules listed above can lead to the creation of bugs that areobscure and difficult to reproduce. The task of finding such bugs can be easedconsiderably by using the malloc debugging tools provided by glibc or one of a numberof malloc debugging libraries that are designed for this purpose.

        Among the malloc debugging tools provided by glibc are the following:

> The mtrace() and muntrace() functions allow a program to turn tracing of memoryallocation calls on and off. These functions are used in conjunction withthe MALLOC_TRACE environment variable, which should be defined to contain thename of a file to which tracing information should be written. When mtrace() iscalled, it checks to see whether this file is defined and can be opened for writing; if so,then all calls to functions in the malloc package are traced andrecorded in the file. Since the resulting file is not easily human-readable, ascript—also called mtrace—is provided to analyze the file and produce a readablesummary. For security reasons, calls to mtrace()are ignored by set-user-ID andset-group-ID programs.

> The mcheck() and mprobe() functions allow a program to perform consistencychecks on blocks of allocated memory; for example, catching errors such asattempting to write to a location past the end of a block of allocated memory.These functions provide functionality that somewhat overlaps with the mallocdebugging libraries described below. Programs that employ these functionsmust be linked with the mcheck library using the cc -lmcheck option.

> The MALLOC_CHECK_ environment variable (note the trailing underscore) serves asimilar purpose to mcheck() and mprobe(). (One notable difference between thetwo techniques is that using MALLOC_CHECK_ doesn’t require modification andrecompilation of the program.) By setting this variable to different integer values,we can control how a program responds to memory allocation errors. Possiblesettings are: 0, meaning ignore errors; 1, meaning print diagnostic errors onstderr; and 2, meaning call abort() to terminate the program. Not all memoryallocation and deallocation errors are detected via the use of MALLOC_CHECK_; itfinds just the common ones. However, this technique is fast, easy to use, andhas low run-time overhead compared with the use of malloc debugging libraries.For security reasons, the setting of MALLOC_CHECK_ is ignored by set-user-ID andset-group-ID programs.

        Further information about all of the above features can be found in the glibc manual.

        A malloc debugging library offers the same API as the standard malloc package,but does extra work to catch memory allocation bugs. In order to use such alibrary, we link our application against that library instead of the malloc package inthe standard C library. Because these libraries typically Operate at the cost of slowerrun-time operation, increased memory consumption, or both, we should use themonly for debugging purposes, and then return to linking with the standard mallocpackage for the production version of an application. Among such libraries areElectric Fence (http://www.perens.com/FreeSoftware/),dmalloc(http://dmalloc.com/),Valgrind (http://valgrind.org/), andInsure++(http://www.parasoft.com/).

        Both Valgrind and Insure++ are capable of detecting many other kinds of bugsaside from those associated with heap allocation. See their respective web sitesfor details.

Controlling and monitoring the malloc package

        The glibc manual describes a range of nonstandard functions that can be used tomonitor and control the allocation of memory by functions in the malloc package,including the following:

> The mallopt() function modifies various parameters that control the algorithmused by malloc(). For example, one such parameter specifies the minimumamount of releasable space that must exist at the end of the free list beforesbrk() is used to shrink the heap. Another parameter specifies an upper limitfor the size of blocks that will be allocated from the heap; blocks larger thanthis are allocated using the mmap() system call (refer to Section 49.7).

> The mallinfo() function returns a structure containing various statistics aboutthe memory allocated by malloc().

        Many UNIX implementations provide versions of mallopt() and mallinfo().However, the interfaces offered by these functions vary across implementations, so theyare not portable.


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
日韩精品一二三四区| 国产精品91在线观看| 日本欧美爱爱爱| 懂色aⅴ精品一区二区三区蜜月| 国产精品视频专区| 亚洲免费电影在线观看| 81精品国产乱码久久久久久| 国产精品日日做人人爱| 亚洲国产精品人人爽夜夜爽| 国产精品日韩av| 成人精品在线视频| 国产精品色婷婷视频| 中文字幕亚洲一区二区三区五十路| 久久精品国亚洲| 国产精品成人国产乱一区| 777国产偷窥盗摄精品视频| 亚洲国产成人精品久久| 国产a∨精品一区二区三区不卡| 91av在线播放| 91在线视频九色| 国产日本欧美一区二区三区在线| 日韩免费在线视频| 亚洲自拍偷拍色片视频| 97香蕉久久超级碰碰高清版| 亚洲精品一区二三区不卡| 国产精品视频久久| 欧美日韩高清在线观看| 久久亚洲精品小早川怜子66| 亚洲大尺度美女在线| 国内精品小视频在线观看| 亚洲国产成人91精品| 欧美性在线视频| 久久色在线播放| 久久精品视频在线播放| 欧美日韩中文字幕在线| 欧美激情久久久久久| 欧美性xxxx在线播放| 91在线精品播放| 欧美精品18videosex性欧美| 福利一区视频在线观看| 日韩一区视频在线| 欧美资源在线观看| 国语自产在线不卡| 国产情人节一区| 日韩小视频网址| 国产精品久久久久国产a级| 亚洲综合在线中文字幕| 国产精品日韩欧美大师| 国产成人自拍视频在线观看| 国产精品电影观看| 久久影院模特热| 久久久成人精品视频| 国产精品狠色婷| 日韩av免费观影| 91成人性视频| 日韩精品视频在线免费观看| 久久久久久久影院| 亚洲美女av电影| 日韩国产高清视频在线| 中日韩美女免费视频网址在线观看| 亚洲一区二区三区在线视频| 欧美成人sm免费视频| 日韩成人在线视频| 国产成人鲁鲁免费视频a| 亚洲一区二区三区乱码aⅴ蜜桃女| 日韩在线国产精品| 成人免费视频xnxx.com| 青青久久av北条麻妃黑人| 日韩免费电影在线观看| 日韩av大片在线| 日韩欧亚中文在线| 性欧美xxxx交| 欧美网站在线观看| 国产精品久久久久7777婷婷| 国产欧美亚洲精品| 国产伦精品免费视频| 精品国产精品三级精品av网址| 亚洲福利在线播放| 欧美激情精品久久久久久久变态| 亚洲一区二区三区xxx视频| 91精品视频免费观看| 国产一区玩具在线观看| 国产91精品久久久久久| 欧美另类交人妖| 亚洲精品美女在线观看| 91精品国产色综合久久不卡98口| 国产精品18久久久久久首页狼| 91国产视频在线播放| 国模私拍视频一区| 国产精品电影在线观看| 国产精品欧美日韩一区二区| 成人h片在线播放免费网站| 4438全国成人免费| 91成人天堂久久成人| 日韩一区二区三区在线播放| 国产亚洲xxx| 91高潮精品免费porn| 成人网欧美在线视频| 欧美国产日产韩国视频| 久久手机精品视频| 国产脚交av在线一区二区| 狠狠躁夜夜躁久久躁别揉| 国产精品毛片a∨一区二区三区|国| 日韩中文有码在线视频| 亚洲永久在线观看| 久久久国产精品视频| 日韩国产精品一区| 欧美日韩免费在线| 亚洲天堂免费在线| 欧美成年人视频网站| 久久久在线免费观看| 欧美在线观看网站| 欧美老少做受xxxx高潮| 亚洲欧美激情在线视频| 91久久精品视频| 欧美香蕉大胸在线视频观看| 亚洲免费影视第一页| 亚洲自拍偷拍视频| 91久久久久久国产精品| 国产偷亚洲偷欧美偷精品| 欧美国产视频一区二区| 亚洲va欧美va国产综合久久| 成人综合国产精品| 亚洲精品电影网站| 亚洲美女黄色片| www.欧美精品一二三区| x99av成人免费| 国产视频在线一区二区| 久久精品国产亚洲精品2020| 成人黄色在线观看| 91老司机在线| 国产精品尤物福利片在线观看| 国产成人亚洲精品| 亚洲天天在线日亚洲洲精| 91精品国产91久久久久久久久| 久热99视频在线观看| 亚洲精品美女久久| 亚洲精品小视频| 日本高清不卡在线| 欧美性受xxxx黑人猛交| 亚洲成人中文字幕| 久久亚洲国产精品成人av秋霞| 日韩一二三在线视频播| 国产极品精品在线观看| 亚洲一区二区少妇| 国产91av在线| 国产成人精品电影| 日韩国产高清视频在线| 午夜精品久久17c| 亚洲天堂男人天堂女人天堂| 欧美精品一区三区| 欧美成人在线免费视频| 亚洲视频在线免费看| 国产成人精品视频在线观看| 久久99热这里只有精品国产| 国产精品视频免费在线| 尤物tv国产一区| 亚洲美女视频网| 久久精品一偷一偷国产| 国产精品激情自拍| 亚洲精品国产suv| 久久成人18免费网站| 亚洲国产欧美在线成人app| 色老头一区二区三区在线观看|