I added some new functionality in a inline C block. Varnish compile and launches just fine, but when I access the page varnish crashes and I get back a 500.

Here is the error from /var/log/messages:

Child (30553) Panic message: Assert error in http_IsHdr(), cache_http.c line 175:#012  Condition(l == strlen(hdr + 1)) not true.#012thread = (cache-worker)#012ident = Linux,2.6.35.14-95.38.amzn1.x86_64,x86_64,-smalloc,-hcritbit,epoll#012Backtrace:#012  0x425058: varnishd() [0x425058]#012  0x4214e8: varnishd() [0x4214e8]#012  0x421627: varnishd(http_Unset+0x47) [0x421627]#012  0x42f29b: varnishd(VRT_SetHdr+0x10b) [0x42f29b]#012  0x7fa03b5e62f3: ./vcl.1P9zoqAU.so(+0x22f3) [0x7fa03b5e62f3]#012  0x429cc6: varnishd(VCL_deliver_method+0x46) [0x429cc6]#012  0x4135af: varnishd() [0x4135af]#012  0x41438d: varnishd(CNT_Session+0x2dd) [0x41438d]#012  0x426808: varnishd() [0x426808]#012  0x426bdb: varnishd() [0x426bdb]#012sp = 0x7fa0431ca008 {#012  fd = 11, id = 11, xid = 1067829618,#012  client = 66.193.169.10 11237,#012  step = STP_DELIVER,#012  handling = deliver,#012  err_code = 403, err_reason = (null),#012  restarts = 0, esis = 0#012  ws = 0x7fa0431ca080 { #012    id = "sess",#012    {s,f,r,e} = {0x7fa0431cacd8,+520,(nil),+65536},#012  },#012  http[req] = {#012    ws = 0x7fa0431ca080[sess]#012      "GET",#012      "/",#012      "HTTP/1.1",#012      "Host: ec2-50-16-47-55.compute-1.amazonaws.com:8080",#012      "Connection: keep-alive",#012      "Cache-Control: max-age=0",#012      "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.63 Safari/535.7",#012      "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",#012      "Accept-Encoding: gzip,deflate,sdch",#012      "Accept-Language: en-US,en;q=0.8",#012      "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3",#012      "X-Forwarded-For: 66.193.169.10",#012  },#012  worker = 0x7fa03539ebd0 {#012    ws = 0x7fa03539ed50 { #012      id = "wrk",#012      {s,f,r,e} = {0x7fa03538cb70,+4368,(nil),+65536},#012    },#012    },#012    vcl = {#012      srcname = {#012        "input",#012        "Default",#012      },#012    },#012  obj = 0x7fa04300a600 {#012    xid = 1067829

Kuddos to anyone who might help me make sense of this. Here is a link to my current default.vcl file: https://gist.github.com/1487597

[UPDATE] Answer:

Turns out that my octal conversion for my new header was wrong.

My new header X-Miles-From-Denver: is 20 characters in length, so the correct conversion is \024.

Line Corrected:

VRT_SetHdr(sp, HDR_RESP, "\024X-Miles-From-Denver:", dist, vrt_magic_string_end);

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.